@momentum-design/components 0.70.2 → 0.70.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 +84 -79
- package/dist/browser/index.js.map +2 -2
- package/dist/components/select/select.component.d.ts +3 -0
- package/dist/components/select/select.component.js +9 -0
- package/dist/components/select/select.styles.js +4 -0
- package/dist/custom-elements.json +1004 -1004
- package/dist/react/index.d.ts +3 -3
- package/dist/react/index.js +3 -3
- package/package.json +1 -1
package/dist/react/index.d.ts
CHANGED
@@ -2,14 +2,14 @@ export { default as AlertChip } from './alertchip';
|
|
2
2
|
export { default as Appheader } from './appheader';
|
3
3
|
export { default as Avatar } from './avatar';
|
4
4
|
export { default as AvatarButton } from './avatarbutton';
|
5
|
-
export { default as Badge } from './badge';
|
6
5
|
export { default as Brandvisual } from './brandvisual';
|
6
|
+
export { default as Badge } from './badge';
|
7
7
|
export { default as Bullet } from './bullet';
|
8
8
|
export { default as Button } from './button';
|
9
9
|
export { default as ButtonLink } from './buttonlink';
|
10
10
|
export { default as Buttonsimple } from './buttonsimple';
|
11
|
-
export { default as CardButton } from './cardbutton';
|
12
11
|
export { default as Card } from './card';
|
12
|
+
export { default as CardButton } from './cardbutton';
|
13
13
|
export { default as CardCheckbox } from './cardcheckbox';
|
14
14
|
export { default as CardRadio } from './cardradio';
|
15
15
|
export { default as Checkbox } from './checkbox';
|
@@ -24,8 +24,8 @@ export { default as Icon } from './icon';
|
|
24
24
|
export { default as IconProvider } from './iconprovider';
|
25
25
|
export { default as Input } from './input';
|
26
26
|
export { default as InputChip } from './inputchip';
|
27
|
-
export { default as Link } from './link';
|
28
27
|
export { default as Linksimple } from './linksimple';
|
28
|
+
export { default as Link } from './link';
|
29
29
|
export { default as List } from './list';
|
30
30
|
export { default as ListItem } from './listitem';
|
31
31
|
export { default as Marker } from './marker';
|
package/dist/react/index.js
CHANGED
@@ -2,14 +2,14 @@ export { default as AlertChip } from './alertchip';
|
|
2
2
|
export { default as Appheader } from './appheader';
|
3
3
|
export { default as Avatar } from './avatar';
|
4
4
|
export { default as AvatarButton } from './avatarbutton';
|
5
|
-
export { default as Badge } from './badge';
|
6
5
|
export { default as Brandvisual } from './brandvisual';
|
6
|
+
export { default as Badge } from './badge';
|
7
7
|
export { default as Bullet } from './bullet';
|
8
8
|
export { default as Button } from './button';
|
9
9
|
export { default as ButtonLink } from './buttonlink';
|
10
10
|
export { default as Buttonsimple } from './buttonsimple';
|
11
|
-
export { default as CardButton } from './cardbutton';
|
12
11
|
export { default as Card } from './card';
|
12
|
+
export { default as CardButton } from './cardbutton';
|
13
13
|
export { default as CardCheckbox } from './cardcheckbox';
|
14
14
|
export { default as CardRadio } from './cardradio';
|
15
15
|
export { default as Checkbox } from './checkbox';
|
@@ -24,8 +24,8 @@ export { default as Icon } from './icon';
|
|
24
24
|
export { default as IconProvider } from './iconprovider';
|
25
25
|
export { default as Input } from './input';
|
26
26
|
export { default as InputChip } from './inputchip';
|
27
|
-
export { default as Link } from './link';
|
28
27
|
export { default as Linksimple } from './linksimple';
|
28
|
+
export { default as Link } from './link';
|
29
29
|
export { default as List } from './list';
|
30
30
|
export { default as ListItem } from './listitem';
|
31
31
|
export { default as Marker } from './marker';
|
package/package.json
CHANGED