@momentum-design/components 0.70.2 → 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.
@@ -8,8 +8,8 @@ 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';
@@ -8,8 +8,8 @@ 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';
@@ -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
@@ -10,6 +10,7 @@ declare const ROLE: {
10
10
  readonly MENUITEM: "menuitem";
11
11
  readonly MENUITEMCHECKBOX: "menuitemcheckbox";
12
12
  readonly MENUITEMRADIO: "menuitemradio";
13
+ readonly RADIO: "radio";
13
14
  readonly RADIOGROUP: "radiogroup";
14
15
  readonly TOOLTIP: "tooltip";
15
16
  };
@@ -10,6 +10,7 @@ const ROLE = {
10
10
  MENUITEM: 'menuitem',
11
11
  MENUITEMCHECKBOX: 'menuitemcheckbox',
12
12
  MENUITEMRADIO: 'menuitemradio',
13
+ RADIO: 'radio',
13
14
  RADIOGROUP: 'radiogroup',
14
15
  TOOLTIP: 'tooltip',
15
16
  };
package/package.json CHANGED
@@ -39,5 +39,5 @@
39
39
  "lit": "^3.2.0",
40
40
  "uuid": "^11.0.5"
41
41
  },
42
- "version": "0.70.2"
42
+ "version": "0.70.4"
43
43
  }