@momentum-design/components 0.70.3 → 0.70.4
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 +137 -120
- package/dist/browser/index.js.map +4 -4
- package/dist/components/card/card.constants.js +1 -1
- package/dist/components/card/card.styles.js +12 -3
- package/dist/components/cardcheckbox/cardcheckbox.component.js +4 -2
- package/dist/components/cardcheckbox/cardcheckbox.styles.js +5 -1
- package/dist/components/cardradio/cardradio.component.d.ts +2 -0
- package/dist/components/cardradio/cardradio.component.js +26 -2
- package/dist/components/cardradio/cardradio.styles.js +5 -1
- package/dist/custom-elements.json +601 -519
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +2 -2
- package/dist/utils/mixins/CardComponentMixin.js +8 -8
- package/dist/utils/roles.d.ts +1 -0
- package/dist/utils/roles.js +1 -0
- package/package.json +1 -1
package/dist/react/index.d.ts
CHANGED
@@ -2,8 +2,8 @@ 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 Brandvisual } from './brandvisual';
|
6
5
|
export { default as Badge } from './badge';
|
6
|
+
export { default as Brandvisual } from './brandvisual';
|
7
7
|
export { default as Bullet } from './bullet';
|
8
8
|
export { default as Button } from './button';
|
9
9
|
export { default as ButtonLink } from './buttonlink';
|
@@ -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 Linksimple } from './linksimple';
|
28
27
|
export { default as Link } from './link';
|
28
|
+
export { default as Linksimple } from './linksimple';
|
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,8 +2,8 @@ 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 Brandvisual } from './brandvisual';
|
6
5
|
export { default as Badge } from './badge';
|
6
|
+
export { default as Brandvisual } from './brandvisual';
|
7
7
|
export { default as Bullet } from './bullet';
|
8
8
|
export { default as Button } from './button';
|
9
9
|
export { default as ButtonLink } from './buttonlink';
|
@@ -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 Linksimple } from './linksimple';
|
28
27
|
export { default as Link } from './link';
|
28
|
+
export { default as Linksimple } from './linksimple';
|
29
29
|
export { default as List } from './list';
|
30
30
|
export { default as ListItem } from './listitem';
|
31
31
|
export { default as Marker } from './marker';
|
@@ -96,23 +96,23 @@ export const CardComponentMixin = (superClass) => {
|
|
96
96
|
}
|
97
97
|
}
|
98
98
|
__decorate([
|
99
|
-
property({ type: String, attribute: 'card-title' }),
|
99
|
+
property({ type: String, attribute: 'card-title', reflect: true }),
|
100
100
|
__metadata("design:type", Object)
|
101
101
|
], InnerMixinClass.prototype, "cardTitle", void 0);
|
102
102
|
__decorate([
|
103
|
-
property({ type: String }),
|
103
|
+
property({ type: String, reflect: true }),
|
104
104
|
__metadata("design:type", Object)
|
105
105
|
], InnerMixinClass.prototype, "subtitle", void 0);
|
106
106
|
__decorate([
|
107
|
-
property({ type: String, attribute: 'image-src' }),
|
107
|
+
property({ type: String, attribute: 'image-src', reflect: true }),
|
108
108
|
__metadata("design:type", Object)
|
109
109
|
], InnerMixinClass.prototype, "imageSrc", void 0);
|
110
110
|
__decorate([
|
111
|
-
property({ type: String, attribute: 'image-alt' }),
|
111
|
+
property({ type: String, attribute: 'image-alt', reflect: true }),
|
112
112
|
__metadata("design:type", Object)
|
113
113
|
], InnerMixinClass.prototype, "imageAlt", void 0);
|
114
114
|
__decorate([
|
115
|
-
property({ type: String }),
|
115
|
+
property({ type: String, reflect: true }),
|
116
116
|
__metadata("design:type", String)
|
117
117
|
], InnerMixinClass.prototype, "variant", void 0);
|
118
118
|
__decorate([
|
@@ -120,15 +120,15 @@ export const CardComponentMixin = (superClass) => {
|
|
120
120
|
__metadata("design:type", String)
|
121
121
|
], InnerMixinClass.prototype, "orientation", void 0);
|
122
122
|
__decorate([
|
123
|
-
property({ type: String, attribute: 'title-tag-name' }),
|
123
|
+
property({ type: String, attribute: 'title-tag-name', reflect: true }),
|
124
124
|
__metadata("design:type", String)
|
125
125
|
], InnerMixinClass.prototype, "titleTagName", void 0);
|
126
126
|
__decorate([
|
127
|
-
property({ type: String, attribute: 'subtitle-tag-name' }),
|
127
|
+
property({ type: String, attribute: 'subtitle-tag-name', reflect: true }),
|
128
128
|
__metadata("design:type", String)
|
129
129
|
], InnerMixinClass.prototype, "subtitleTagName", void 0);
|
130
130
|
__decorate([
|
131
|
-
property({ type: String, attribute: 'icon-name' }),
|
131
|
+
property({ type: String, attribute: 'icon-name', reflect: true }),
|
132
132
|
__metadata("design:type", String)
|
133
133
|
], InnerMixinClass.prototype, "iconName", void 0);
|
134
134
|
// Cast return type to your mixin's interface intersected with the superClass type
|
package/dist/utils/roles.d.ts
CHANGED
package/dist/utils/roles.js
CHANGED
package/package.json
CHANGED