Skip to content

Commit

Permalink
4.5.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
enact-bot committed Dec 14, 2022
2 parents e36c6ca + a7bc379 commit 325317e
Show file tree
Hide file tree
Showing 110 changed files with 4,342 additions and 9,731 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dist: focal
language: node_js
node_js:
- lts/*
- node
- "18"
sudo: false
before_install:
- sudo apt-get update
Expand Down
6 changes: 3 additions & 3 deletions BodyText/BodyText.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const MarqueeBodyText = MarqueeDecorator(UiBodyText);
* A simple text block component.
*
* This component is most often not used directly but may be composed within another component as it
* is within [BodyText]{@link moonstone/BodyText.BodyText}.
* is within {@link moonstone/BodyText.BodyText|BodyText}.
*
* @class BodyTextBase
* @memberof moonstone/BodyText
Expand All @@ -44,7 +44,7 @@ const BodyTextBase = kind({
* Centers the contents.
*
* Applies the `centered` CSS class which can be customized by
* [theming]{@link /docs/developer-guide/theming/}.
* {@link /docs/developer-guide/theming/|theming}.
*
* @type {Boolean}
* @public
Expand Down Expand Up @@ -125,7 +125,7 @@ const BodyTextBase = kind({
});

/**
* Applies Moonstone specific behaviors to [BodyText]{@link moonstone/BodyText.BodyTextBase}.
* Applies Moonstone specific behaviors to {@link moonstone/BodyText.BodyTextBase|BodyText}.
*
* @hoc
* @memberof moonstone/BodyText
Expand Down
4 changes: 2 additions & 2 deletions Button/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Icon = Skinnable(IconBase);
* A button component.
*
* This component is most often not used directly but may be composed within another component as it
* is within [Button]{@link moonstone/Button.Button}.
* is within {@link moonstone/Button.Button|Button}.
*
* @class ButtonBase
* @memberof moonstone/Button
Expand Down Expand Up @@ -155,7 +155,7 @@ const ButtonBase = kind({


/**
* Applies Moonstone specific behaviors to [Button]{@link moonstone/Button.ButtonBase} components.
* Applies Moonstone specific behaviors to {@link moonstone/Button.ButtonBase|Button} components.
*
* @hoc
* @memberof moonstone/Button
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

The following is a curated list of changes in the Enact moonstone module, newest changes on the top.

## [4.5.2] - 2022-12-14

No significant changes.

## [4.5.1] - 2022-10-14

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Checkbox/Checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import css from './Checkbox.module.less';
* A checkbox component, ready to use in Moonstone applications.
*
* `Checkbox` may be used independently to represent a toggleable state but is more commonly used as
* part of [CheckboxItem]{@link moonstone/CheckboxItem}.
* part of {@link moonstone/CheckboxItem|CheckboxItem}.
*
* Usage:
* ```
Expand Down
2 changes: 1 addition & 1 deletion CheckboxItem/CheckboxItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import componentCss from './CheckboxItem.module.less';
* An item with a checkbox component, ready to use in Moonstone applications.
*
* `CheckboxItem` may be used to allow the user to select a single option or used as part of a
* [Group]{@link ui/Group} when multiple [selections]{@link ui/Group.Group.select} are possible.
* {@link ui/Group|Group} when multiple {@link ui/Group.Group.select|selections} are possible.
*
* Usage:
* ```
Expand Down
4 changes: 2 additions & 2 deletions ContextualPopupDecorator/ContextualPopup.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ const ContextualPopupRoot = Skinnable(

/**
* A popup component used by
* [ContextualPopupDecorator]{@link moonstone/ContextualPopupDecorator.ContextualPopupDecorator} to
* {@link moonstone/ContextualPopupDecorator.ContextualPopupDecorator|ContextualPopupDecorator} to
* wrap its
* [popupComponent]{@link moonstone/ContextualPopupDecorator.ContextualPopupDecorator.popupComponent}.
* {@link moonstone/ContextualPopupDecorator.ContextualPopupDecorator.popupComponent|popupComponent}.
*
* `ContextualPopup` is usually not used directly but is made available for unique application use
* cases.
Expand Down
12 changes: 6 additions & 6 deletions ContextualPopupDecorator/ContextualPopupDecorator.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Decorator = hoc(defaultConfig, (config, Wrapped) => {
static propTypes = /** @lends moonstone/ContextualPopupDecorator.ContextualPopupDecorator.prototype */ {
/**
* The component rendered within the
* [ContextualPopup]{@link moonstone/ContextualPopupDecorator.ContextualPopup}.
* {@link moonstone/ContextualPopupDecorator.ContextualPopup|ContextualPopup}.
*
* @type {Component}
* @required
Expand Down Expand Up @@ -149,7 +149,7 @@ const Decorator = hoc(defaultConfig, (config, Wrapped) => {

/**
* CSS class name to pass to the
* [ContextualPopup]{@link moonstone/ContextualPopupDecorator.ContextualPopup}.
* {@link moonstone/ContextualPopupDecorator.ContextualPopup|ContextualPopup}.
*
* This is commonly used to set width and height of the popup.
*
Expand Down Expand Up @@ -187,8 +187,8 @@ const Decorator = hoc(defaultConfig, (config, Wrapped) => {
rtl: PropTypes.bool,

/**
* Registers the ContextualPopupDecorator component with an [ApiDecorator]
* {@link core/internal/ApiDecorator.ApiDecorator}.
* Registers the ContextualPopupDecorator component with an
* {@link core/internal/ApiDecorator.ApiDecorator|ApiDecorator}.
*
* @type {Function}
* @private
Expand All @@ -208,7 +208,7 @@ const Decorator = hoc(defaultConfig, (config, Wrapped) => {
* The current skin for this component.
*
* When `noSkin` is set on the config object, `skin` will only be applied to the
* [ContextualPopup]{@link moonstone/ContextualPopupDecorator.ContextualPopup} and not
* {@link moonstone/ContextualPopupDecorator.ContextualPopup|ContextualPopup} and not
* to the popup's activator component.
*
* @see {@link moonstone/Skinnable.Skinnable.skin}
Expand Down Expand Up @@ -640,7 +640,7 @@ const Decorator = hoc(defaultConfig, (config, Wrapped) => {

/**
* Adds support for positioning a
* [ContextualPopup]{@link moonstone/ContextualPopupDecorator.ContextualPopup} relative to the
* {@link moonstone/ContextualPopupDecorator.ContextualPopup|ContextualPopup} relative to the
* wrapped component.
*
* `ContextualPopupDecorator` may be used to show additional settings or actions rendered within a
Expand Down
2 changes: 1 addition & 1 deletion DatePicker/DatePicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const dateTimeConfig = {
*
* `DatePicker` may be used to select the year, month, and day. It uses a standard `Date` object for
* its `value` which can be shared as the `value` for a
* [TimePicker]{@link moonstone/TimePicker.TimePicker} to select both a date and time.
* {@link moonstone/TimePicker.TimePicker|TimePicker} to select both a date and time.
*
* By default, `DatePicker` maintains the state of its `value` property. Supply the
* `defaultValue` property to control its initial value. If you wish to directly control updates
Expand Down
2 changes: 1 addition & 1 deletion DatePicker/DatePickerBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import internalCss from '../internal/DateComponentPicker/DateComponentPicker.mod
* A date selection component.
*
* This component is most often not used directly but may be composed within another component as it
* is within [DatePicker]{@link moonstone/DatePicker.DatePicker}.
* is within {@link moonstone/DatePicker.DatePicker|DatePicker}.
*
* @class DatePickerBase
* @memberof moonstone/DatePicker
Expand Down
10 changes: 5 additions & 5 deletions DayPicker/DayPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import Skinnable from '../Skinnable';
* A day of the week selection component.
*
* This component is most often not used directly but may be composed within another component as it
* is within [DayPicker]{@link moonstone/DayPicker.DayPicker}.
* is within {@link moonstone/DayPicker.DayPicker|DayPicker}.
*
* @class DayPickerBase
* @memberof moonstone/DayPicker
Expand Down Expand Up @@ -131,10 +131,10 @@ const DayPickerDecorator = compose(
* An expandable day of the week selection component, ready to use in Moonstone applications.
*
* `DayPicker` may be used to select one or more days of the week. Upon selection, it will display
* the short names of each day selected or customizable strings when selecting [every
* day]{@link moonstone/DayPicker.DayPicker.everyDayText}), [every
* weekday]{@link moonstone/DayPicker.DayPicker.everyWeekdayText}, and [every weekend
* day]{@link moonstone/DayPicker.DayPicker.everyWeekendText}.
* the short names of each day selected or customizable strings when selecting
* {@link moonstone/DayPicker.DayPicker.everyDayText|every day},
* {@link moonstone/DayPicker.DayPicker.everyWeekdayText|every weekday}, and
* {@link moonstone/DayPicker.DayPicker.everyWeekendText|every weekend day}.
*
* By default, `DayPicker` maintains the state of its `selected` property. Supply the
* `defaultSelected` property to control its initial value. If you wish to directly control updates
Expand Down
2 changes: 1 addition & 1 deletion DaySelector/DaySelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import componentCss from './DaySelector.module.less';
* A Moonstone styled inline day of the week selection component.
*
* This component is most often not used directly but may be composed within another component as it
* is within [DaySelector]{@link moonstone/DaySelector.DaySelector}.
* is within {@link moonstone/DaySelector.DaySelector|DaySelector}.
*
* @class DaySelectorBase
* @memberof moonstone/DaySelector
Expand Down
2 changes: 1 addition & 1 deletion DaySelector/DaySelectorCheckbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import css from './DaySelectorCheckbox.module.less';
/**
* A component that represents the selected state of a day within a
* {@link moonstone/DaySelector.DaySelector}. It has built-in spotlight support and is intended for
* use in a specialized [Item]{@link moonstone/Item} that does not visually respond to focus, so
* use in a specialized {@link moonstone/Item|Item} that does not visually respond to focus, so
* this can show focus instead.
*
* @class DaySelectorCheckbox
Expand Down
2 changes: 1 addition & 1 deletion DaySelector/DaySelectorDecorator.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function getLocaleState (dayNameLength, locale) {

/**
* Applies Moonstone specific behaviors to
* [DaySelector]{@link moonstone/DaySelector.DaySelectorBase}.
* {@link moonstone/DaySelector.DaySelectorBase|DaySelector}.
*
* @hoc
* @memberof moonstone/DaySelector
Expand Down
2 changes: 1 addition & 1 deletion DaySelector/DaySelectorItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import DaySelectorCheckbox from './DaySelectorCheckbox';
import css from './DaySelectorItem.module.less';

/**
* An extension of [Item]{@link moonstone/Item.Item} that can be toggled between two states via its
* An extension of {@link moonstone/Item.Item|Item} that can be toggled between two states via its
* `selected` prop.
*
* By default, `DaySelectorItem` maintains the state of its `selected` property. Supply the
Expand Down
4 changes: 2 additions & 2 deletions Dialog/Dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const MarqueeH2 = MarqueeDecorator('h2');
* A modal dialog component.
*
* This component is most often not used directly but may be composed within another component as it
* is within [Dialog]{@link moonstone/Dialog.Dialog}.
* is within {@link moonstone/Dialog.Dialog|Dialog}.
*
* @class DialogBase
* @memberof moonstone/Dialog
Expand Down Expand Up @@ -217,7 +217,7 @@ const DialogBase = kind({
*
* `Dialog` may be used to interrupt a workflow to receive feedback from the user. The dialong
* consists of a title, a subtitle, a message, and an area for additional
* [buttons]{@link moonstone/Dialog.Dialog.buttons}.
* {@link moonstone/Dialog.Dialog.buttons|buttons}.
*
* Usage:
* ```
Expand Down
2 changes: 1 addition & 1 deletion Dropdown/Dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ const DropdownBase = kind({

/**
* Applies Moonstone specific behaviors and functionality to
* [DropdownBase]{@link moonstone/Dropdown.DropdownBase}.
* {@link moonstone/Dropdown.DropdownBase|DropdownBase}.
*
* @hoc
* @memberof moonstone/Dropdown
Expand Down
14 changes: 7 additions & 7 deletions EditableIntegerPicker/EditableIntegerPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const EditableIntegerPickerBase = kind({
* The maximum value selectable by the picker (inclusive).
*
* The range between `min` and `max` should be evenly divisible by
* [step]{@link moonstone/EditableIntegerPicker.EditableIntegerPickerBase.step}.
* {@link moonstone/EditableIntegerPicker.EditableIntegerPickerBase.step|step}.
*
* @type {Number}
* @required
Expand All @@ -65,7 +65,7 @@ const EditableIntegerPickerBase = kind({
* The minimum value selectable by the picker (inclusive).
*
* The range between `min` and `max` should be evenly divisible by
* [step]{@link moonstone/EditableIntegerPicker.EditableIntegerPickerBase.step}.
* {@link moonstone/EditableIntegerPicker.EditableIntegerPickerBase.step|step}.
*
* @type {Number}
* @required
Expand All @@ -87,7 +87,7 @@ const EditableIntegerPickerBase = kind({
/**
* The icon for the decrementer.
*
* All strings supported by [Icon]{@link moonstone/Icon.Icon} are supported. Without a
* All strings supported by {@link moonstone/Icon.Icon|Icon} are supported. Without a
* custom icon, the default is used.
*
* @type {String}
Expand All @@ -96,7 +96,7 @@ const EditableIntegerPickerBase = kind({
decrementIcon: PropTypes.string,

/**
* Disables the picker and prevents [events]{@link /docs/developer-guide/glossary/#event}
* Disables the picker and prevents {@link /docs/developer-guide/glossary/#event|events}
* from firing.
*
* @type {Boolean}
Expand All @@ -115,7 +115,7 @@ const EditableIntegerPickerBase = kind({
/**
* The icon for the incrementer.
*
* All strings supported by [Icon]{@link moonstone/Icon.Icon} are supported. Without a
* All strings supported by {@link moonstone/Icon.Icon|Icon} are supported. Without a
* custom icon, the default is used.
*
* @type {String}
Expand Down Expand Up @@ -163,8 +163,8 @@ const EditableIntegerPickerBase = kind({
* Pads the display value with zeros.
*
* The number of zeros used is the number of digits of the value of
* [min]{@link moonstone/EditableIntegerPicker.EditableIntegerPickerBase.min} or
* [max]{@link moonstone/EditableIntegerPicker.EditableIntegerPickerBase.max}, whichever is
* {@link moonstone/EditableIntegerPicker.EditableIntegerPickerBase.min|min} or
* {@link moonstone/EditableIntegerPicker.EditableIntegerPickerBase.max|max}, whichever is
* greater.
*
* @type {Boolean}
Expand Down
2 changes: 1 addition & 1 deletion EditableIntegerPicker/EditableIntegerPickerDecorator.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const EditableIntegerPickerDecorator = hoc((config, Wrapped) => {

/**
* Disables EditableIntegerPicker and does not generate `onChange`
* [events]{@link /docs/developer-guide/glossary/#event}.
* {@link /docs/developer-guide/glossary/#event|events}.
*
* @type {Boolean}
* @public
Expand Down
4 changes: 2 additions & 2 deletions ExpandableInput/ExpandableInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const handleUpDown = handle(
);

/**
* A stateless component that expands to render a {@link moonstone/Input.Input}.
* A stateless component that expands to render a {@link moonstone/Input.Input|Input}.
*
* @class ExpandableInputBase
* @memberof moonstone/ExpandableInput
Expand Down Expand Up @@ -325,7 +325,7 @@ class ExpandableInputBase extends Component {
}

/**
* A stateful component that expands to render a {@link moonstone/Input.Input}.
* A stateful component that expands to render a {@link moonstone/Input.Input|Input}.
*
* By default, `ExpandableInput` maintains the state of its `value` property. Supply the
* `defaultValue` property to control its initial value. If you wish to directly control updates
Expand Down
6 changes: 3 additions & 3 deletions ExpandableItem/ExpandableItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function wouldDirectionLeaveContainer (dir, srcNode) {
}

/**
* A stateless component that renders a {@link moonstone/LabeledItem.LabeledItem} that can be
* A stateless component that renders a {@link moonstone/LabeledItem.LabeledItem|LabeledItem} that can be
* expanded to show additional contents.
*
* @class ExpandableItemBase
Expand Down Expand Up @@ -158,7 +158,7 @@ const ExpandableItemBase = kind({
label: PropTypes.node,

/**
* Prevents the user from moving [Spotlight] {@link /docs/developer-guide/glossary/#spotlight} past the bottom
* Prevents the user from moving {@link /docs/developer-guide/glossary/#spotlight|Spotlight} past the bottom
* of the expandable (when open) using 5-way controls.
*
* @type {Boolean}
Expand Down Expand Up @@ -433,7 +433,7 @@ const ExpandableItemBase = kind({
});

/**
* A component that renders a {@link moonstone/LabeledItem.LabeledItem} that can be expanded to
* A component that renders a {@link moonstone/LabeledItem.LabeledItem|LabeledItem} that can be expanded to
* show additional contents.
*
* `ExpandableItem` maintains its open/closed state by default. The initial state can be supplied
Expand Down
6 changes: 3 additions & 3 deletions ExpandableList/ExpandableList.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const PureGroup = Pure(
);

/**
* A stateless component that renders a {@link moonstone/LabeledItem.LabeledItem} that can be
* A stateless component that renders a {@link moonstone/LabeledItem.LabeledItem|LabeledItem} that can be
* expanded to show a selectable list of items.
*
* @class ExpandableListBase
Expand Down Expand Up @@ -155,7 +155,7 @@ const ExpandableListBase = kind({
noAutoClose: PropTypes.bool,

/**
* Allows the user to move [Spotlight] {@link /docs/developer-guide/glossary/#spotlight} past the bottom of the expandable
* Allows the user to move {@link /docs/developer-guide/glossary/#spotlight|Spotlight} past the bottom of the expandable
* (when open) using 5-way controls.
*
* @type {Boolean}
Expand Down Expand Up @@ -375,7 +375,7 @@ const ExpandableListBase = kind({
});

/**
* A component that renders a {@link moonstone/LabeledItem.LabeledItem} that can be expanded to
* A component that renders a {@link moonstone/LabeledItem.LabeledItem|LabeledItem} that can be expanded to
* show a selectable list of items.
*
* By default, `ExpandableList` maintains the state of its `selected` property. Supply the
Expand Down
Loading

0 comments on commit 325317e

Please sign in to comment.