@momentum-design/components 0.85.10 → 0.86.0
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 +23 -23
- package/dist/browser/index.js.map +3 -3
- package/dist/components/menuitemcheckbox/menuitemcheckbox.component.d.ts +1 -1
- package/dist/components/menuitemcheckbox/menuitemcheckbox.component.js +21 -21
- package/dist/components/menuitemradio/index.d.ts +1 -0
- package/dist/components/menuitemradio/index.js +1 -0
- package/dist/components/menuitemradio/menuitemradio.component.d.ts +3 -1
- package/dist/components/menuitemradio/menuitemradio.component.js +16 -14
- package/dist/components/menusection/menusection.component.js +1 -1
- package/dist/custom-elements.json +235 -235
- package/dist/react/index.d.ts +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/menuitemradio/index.d.ts +2 -0
- package/dist/react/menuitemradio/index.js +2 -0
- package/package.json +1 -1
package/dist/react/index.d.ts
CHANGED
@@ -32,9 +32,9 @@ export { default as List } from './list';
|
|
32
32
|
export { default as ListItem } from './listitem';
|
33
33
|
export { default as Marker } from './marker';
|
34
34
|
export { default as MenuBar } from './menubar';
|
35
|
-
export { default as MenuItem } from './menuitem';
|
36
35
|
export { default as MenuItemCheckbox } from './menuitemcheckbox';
|
37
36
|
export { default as MenuItemRadio } from './menuitemradio';
|
37
|
+
export { default as MenuItem } from './menuitem';
|
38
38
|
export { default as MenuPopover } from './menupopover';
|
39
39
|
export { default as MenuSection } from './menusection';
|
40
40
|
export { default as NavItem } from './navitem';
|
package/dist/react/index.js
CHANGED
@@ -32,9 +32,9 @@ export { default as List } from './list';
|
|
32
32
|
export { default as ListItem } from './listitem';
|
33
33
|
export { default as Marker } from './marker';
|
34
34
|
export { default as MenuBar } from './menubar';
|
35
|
-
export { default as MenuItem } from './menuitem';
|
36
35
|
export { default as MenuItemCheckbox } from './menuitemcheckbox';
|
37
36
|
export { default as MenuItemRadio } from './menuitemradio';
|
37
|
+
export { default as MenuItem } from './menuitem';
|
38
38
|
export { default as MenuPopover } from './menupopover';
|
39
39
|
export { default as MenuSection } from './menusection';
|
40
40
|
export { default as NavItem } from './navitem';
|
@@ -26,8 +26,10 @@ import Component from '../../components/menuitemradio';
|
|
26
26
|
* For example, you can use a custom icon or a different visual element to indicate the state of the menu item.
|
27
27
|
* Make sure the new indicator is accessible.
|
28
28
|
*
|
29
|
+
* @dependency mdc-icon
|
29
30
|
* @dependency mdc-staticradio
|
30
31
|
* @dependency mdc-text
|
32
|
+
* @dependency mdc-tooltip
|
31
33
|
*
|
32
34
|
* @tagname mdc-menuitemradio
|
33
35
|
*
|
@@ -28,8 +28,10 @@ import { TAG_NAME } from '../../components/menuitemradio/menuitemradio.constants
|
|
28
28
|
* For example, you can use a custom icon or a different visual element to indicate the state of the menu item.
|
29
29
|
* Make sure the new indicator is accessible.
|
30
30
|
*
|
31
|
+
* @dependency mdc-icon
|
31
32
|
* @dependency mdc-staticradio
|
32
33
|
* @dependency mdc-text
|
34
|
+
* @dependency mdc-tooltip
|
33
35
|
*
|
34
36
|
* @tagname mdc-menuitemradio
|
35
37
|
*
|
package/package.json
CHANGED