@momentum-design/components 0.107.0 → 0.107.1
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 +101 -101
- package/dist/browser/index.js.map +2 -2
- package/dist/components/menupopover/menupopover.component.js +0 -2
- package/dist/components/popover/popover.component.d.ts +12 -9
- package/dist/components/popover/popover.component.js +12 -23
- package/dist/components/popover/popover.constants.d.ts +0 -1
- package/dist/components/popover/popover.constants.js +0 -1
- package/dist/components/popover/popover.utils.d.ts +0 -4
- package/dist/components/popover/popover.utils.js +4 -18
- package/dist/custom-elements.json +562 -694
- package/dist/react/index.d.ts +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/popover/index.d.ts +4 -0
- package/dist/react/popover/index.js +4 -0
- package/package.json +1 -1
package/dist/react/index.d.ts
CHANGED
@@ -60,10 +60,10 @@ export { default as Select } from './select';
|
|
60
60
|
export { default as Selectlistbox } from './selectlistbox';
|
61
61
|
export { default as SideNavigation } from './sidenavigation';
|
62
62
|
export { default as Skeleton } from './skeleton';
|
63
|
-
export { default as Slider } from './slider';
|
64
63
|
export { default as Spinner } from './spinner';
|
65
64
|
export { default as StaticCheckbox } from './staticcheckbox';
|
66
65
|
export { default as StaticChip } from './staticchip';
|
66
|
+
export { default as Slider } from './slider';
|
67
67
|
export { default as StaticRadio } from './staticradio';
|
68
68
|
export { default as StaticToggle } from './statictoggle';
|
69
69
|
export { default as Stepper } from './stepper';
|
package/dist/react/index.js
CHANGED
@@ -60,10 +60,10 @@ export { default as Select } from './select';
|
|
60
60
|
export { default as Selectlistbox } from './selectlistbox';
|
61
61
|
export { default as SideNavigation } from './sidenavigation';
|
62
62
|
export { default as Skeleton } from './skeleton';
|
63
|
-
export { default as Slider } from './slider';
|
64
63
|
export { default as Spinner } from './spinner';
|
65
64
|
export { default as StaticCheckbox } from './staticcheckbox';
|
66
65
|
export { default as StaticChip } from './staticchip';
|
66
|
+
export { default as Slider } from './slider';
|
67
67
|
export { default as StaticRadio } from './staticradio';
|
68
68
|
export { default as StaticToggle } from './statictoggle';
|
69
69
|
export { default as Stepper } from './stepper';
|
@@ -6,6 +6,10 @@ import Component from '../../components/popover';
|
|
6
6
|
* The popover automatically positions itself based on available space and
|
7
7
|
* supports dynamic height adjustments with scrollable content when needed。
|
8
8
|
*
|
9
|
+
* Note:
|
10
|
+
* - A component (button) can trigger more than one popover, but only one of them should change the
|
11
|
+
* aria-expanded and aria-haspopup, the rest of the popovers must have `disable-aria-expanded` attribute.
|
12
|
+
*
|
9
13
|
* @dependency mdc-button
|
10
14
|
*
|
11
15
|
* @tagname mdc-popover
|
@@ -8,6 +8,10 @@ import { TAG_NAME } from '../../components/popover/popover.constants';
|
|
8
8
|
* The popover automatically positions itself based on available space and
|
9
9
|
* supports dynamic height adjustments with scrollable content when needed。
|
10
10
|
*
|
11
|
+
* Note:
|
12
|
+
* - A component (button) can trigger more than one popover, but only one of them should change the
|
13
|
+
* aria-expanded and aria-haspopup, the rest of the popovers must have `disable-aria-expanded` attribute.
|
14
|
+
*
|
11
15
|
* @dependency mdc-button
|
12
16
|
*
|
13
17
|
* @tagname mdc-popover
|