@momentum-design/components 0.127.1 → 0.127.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +8 -8
- package/dist/browser/index.js.map +2 -2
- package/dist/components/menusection/menusection.component.d.ts +1 -1
- package/dist/components/menusection/menusection.component.js +1 -1
- package/dist/components/select/select.component.js +8 -8
- package/dist/custom-elements.json +525 -525
- package/dist/react/index.d.ts +3 -3
- package/dist/react/index.js +3 -3
- package/dist/react/menusection/index.d.ts +1 -1
- package/dist/react/menusection/index.js +1 -1
- package/package.json +1 -1
package/dist/react/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { default as Accordion } from './accordion';
|
|
2
|
-
export { default as AccordionGroup } from './accordiongroup';
|
|
3
2
|
export { default as AccordionButton } from './accordionbutton';
|
|
3
|
+
export { default as AccordionGroup } from './accordiongroup';
|
|
4
4
|
export { default as AlertChip } from './alertchip';
|
|
5
5
|
export { default as Animation } from './animation';
|
|
6
6
|
export { default as AnnouncementDialog } from './announcementdialog';
|
|
7
7
|
export { default as Appheader } from './appheader';
|
|
8
|
-
export { default as Avatar } from './avatar';
|
|
9
8
|
export { default as AvatarButton } from './avatarbutton';
|
|
9
|
+
export { default as Avatar } from './avatar';
|
|
10
10
|
export { default as Badge } from './badge';
|
|
11
11
|
export { default as Banner } from './banner';
|
|
12
12
|
export { default as Brandvisual } from './brandvisual';
|
|
@@ -79,8 +79,8 @@ export { default as StepperItem } from './stepperitem';
|
|
|
79
79
|
export { default as Tab } from './tab';
|
|
80
80
|
export { default as TabList } from './tablist';
|
|
81
81
|
export { default as Text } from './text';
|
|
82
|
-
export { default as ThemeProvider } from './themeprovider';
|
|
83
82
|
export { default as Textarea } from './textarea';
|
|
83
|
+
export { default as ThemeProvider } from './themeprovider';
|
|
84
84
|
export { default as Toast } from './toast';
|
|
85
85
|
export { default as Toggle } from './toggle';
|
|
86
86
|
export { default as ToggleTip } from './toggletip';
|
package/dist/react/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { default as Accordion } from './accordion';
|
|
2
|
-
export { default as AccordionGroup } from './accordiongroup';
|
|
3
2
|
export { default as AccordionButton } from './accordionbutton';
|
|
3
|
+
export { default as AccordionGroup } from './accordiongroup';
|
|
4
4
|
export { default as AlertChip } from './alertchip';
|
|
5
5
|
export { default as Animation } from './animation';
|
|
6
6
|
export { default as AnnouncementDialog } from './announcementdialog';
|
|
7
7
|
export { default as Appheader } from './appheader';
|
|
8
|
-
export { default as Avatar } from './avatar';
|
|
9
8
|
export { default as AvatarButton } from './avatarbutton';
|
|
9
|
+
export { default as Avatar } from './avatar';
|
|
10
10
|
export { default as Badge } from './badge';
|
|
11
11
|
export { default as Banner } from './banner';
|
|
12
12
|
export { default as Brandvisual } from './brandvisual';
|
|
@@ -79,8 +79,8 @@ export { default as StepperItem } from './stepperitem';
|
|
|
79
79
|
export { default as Tab } from './tab';
|
|
80
80
|
export { default as TabList } from './tablist';
|
|
81
81
|
export { default as Text } from './text';
|
|
82
|
-
export { default as ThemeProvider } from './themeprovider';
|
|
83
82
|
export { default as Textarea } from './textarea';
|
|
83
|
+
export { default as ThemeProvider } from './themeprovider';
|
|
84
84
|
export { default as Toast } from './toast';
|
|
85
85
|
export { default as Toggle } from './toggle';
|
|
86
86
|
export { default as ToggleTip } from './toggletip';
|
|
@@ -4,7 +4,7 @@ import type { Events } from '../../components/menusection/menusection.types';
|
|
|
4
4
|
/**
|
|
5
5
|
* `mdc-menusection` is a container element used to group a set of menu items.
|
|
6
6
|
*
|
|
7
|
-
* This component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components.
|
|
7
|
+
* This component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components. MenuSection can not be nested.
|
|
8
8
|
*
|
|
9
9
|
* - If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:
|
|
10
10
|
* only one radio item can be selected at a time.
|
|
@@ -5,7 +5,7 @@ import { TAG_NAME } from '../../components/menusection/menusection.constants';
|
|
|
5
5
|
/**
|
|
6
6
|
* `mdc-menusection` is a container element used to group a set of menu items.
|
|
7
7
|
*
|
|
8
|
-
* This component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components.
|
|
8
|
+
* This component supports a mix of `menuitem`, `menuitemcheckbox`, and `menuitemradio` components. MenuSection can not be nested.
|
|
9
9
|
*
|
|
10
10
|
* - If multiple `menuitemradio` components are slotted into the section, the group enforces a single-selection rule:
|
|
11
11
|
* only one radio item can be selected at a time.
|