@momentum-design/components 0.120.6 → 0.120.8

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.
@@ -38,11 +38,6 @@ declare const Badge_base: import("../../utils/mixins/index.types").Constructor<i
38
38
  *
39
39
  * @csspart badge-dot - The dot notification badge.
40
40
  * @csspart badge-icon - The icon badge.
41
- * @csspart badge-icon__error - The error icon badge.
42
- * @csspart badge-icon__primary - The primary icon badge.
43
- * @csspart badge-icon__secondary - The secondary icon badge.
44
- * @csspart badge-icon__success - The success icon badge.
45
- * @csspart badge-icon__warning - The warning icon badge.
46
41
  * @csspart badge-overlay - The overlay badge.
47
42
  * @csspart badge-text - The text badge.
48
43
  */
@@ -93,7 +88,6 @@ declare class Badge extends Badge_base {
93
88
  /**
94
89
  * Method to generate the badge icon.
95
90
  * @param iconName - the name of the icon from the icon set
96
- * @param backgroundPartPostfix - postfix for the part to style the badge icon.
97
91
  * @returns the template result of the icon.
98
92
  */
99
93
  private getBadgeIcon;
@@ -14,7 +14,7 @@ import { Component } from '../../models';
14
14
  import { IconNameMixin } from '../../utils/mixins/IconNameMixin';
15
15
  import { ROLE } from '../../utils/roles';
16
16
  import { TYPE as FONT_TYPE, VALID_TEXT_TAGS } from '../text/text.constants';
17
- import { DEFAULTS, ICON_NAMES_LIST, ICON_STATE, ICON_VARIANT, TYPE as BADGE_TYPE } from './badge.constants';
17
+ import { DEFAULTS, ICON_NAMES_LIST, ICON_VARIANT, TYPE as BADGE_TYPE } from './badge.constants';
18
18
  import styles from './badge.styles';
19
19
  /**
20
20
  * The `mdc-badge` component is a versatile UI element used to
@@ -52,11 +52,6 @@ import styles from './badge.styles';
52
52
  *
53
53
  * @csspart badge-dot - The dot notification badge.
54
54
  * @csspart badge-icon - The icon badge.
55
- * @csspart badge-icon__error - The error icon badge.
56
- * @csspart badge-icon__primary - The primary icon badge.
57
- * @csspart badge-icon__secondary - The secondary icon badge.
58
- * @csspart badge-icon__success - The success icon badge.
59
- * @csspart badge-icon__warning - The warning icon badge.
60
55
  * @csspart badge-overlay - The overlay badge.
61
56
  * @csspart badge-text - The text badge.
62
57
  */
@@ -113,13 +108,12 @@ class Badge extends IconNameMixin(Component) {
113
108
  /**
114
109
  * Method to generate the badge icon.
115
110
  * @param iconName - the name of the icon from the icon set
116
- * @param backgroundPartPostfix - postfix for the part to style the badge icon.
117
111
  * @returns the template result of the icon.
118
112
  */
119
- getBadgeIcon(iconName, backgroundPartPostfix) {
113
+ getBadgeIcon(iconName) {
120
114
  return html `
121
115
  <mdc-icon
122
- part="badge-icon ${this.overlay ? 'badge-overlay' : ''} badge-icon__${backgroundPartPostfix}"
116
+ part="badge-icon ${this.overlay ? 'badge-overlay' : ''}"
123
117
  name="${ifDefined(iconName)}"
124
118
  size="${DEFAULTS.ICON_SIZE}"
125
119
  ></mdc-icon>
@@ -171,18 +165,18 @@ class Badge extends IconNameMixin(Component) {
171
165
  if (this.variant && !Object.values(ICON_VARIANT).includes(this.variant)) {
172
166
  this.variant = DEFAULTS.VARIANT;
173
167
  }
174
- const { iconName, type, variant } = this;
168
+ const { iconName, type } = this;
175
169
  switch (type) {
176
170
  case BADGE_TYPE.ICON:
177
- return this.getBadgeIcon(iconName || '', variant);
171
+ return this.getBadgeIcon(iconName || '');
178
172
  case BADGE_TYPE.COUNTER:
179
173
  return this.getBadgeCounterText();
180
174
  case BADGE_TYPE.SUCCESS:
181
- return this.getBadgeIcon(ICON_NAMES_LIST.SUCCESS_ICON_NAME, ICON_STATE.SUCCESS);
175
+ return this.getBadgeIcon(ICON_NAMES_LIST.SUCCESS_ICON_NAME);
182
176
  case BADGE_TYPE.WARNING:
183
- return this.getBadgeIcon(ICON_NAMES_LIST.WARNING_ICON_NAME, ICON_STATE.WARNING);
177
+ return this.getBadgeIcon(ICON_NAMES_LIST.WARNING_ICON_NAME);
184
178
  case BADGE_TYPE.ERROR:
185
- return this.getBadgeIcon(ICON_NAMES_LIST.ERROR_ICON_NAME, ICON_STATE.ERROR);
179
+ return this.getBadgeIcon(ICON_NAMES_LIST.ERROR_ICON_NAME);
186
180
  case BADGE_TYPE.DOT:
187
181
  default:
188
182
  this.type = BADGE_TYPE.DOT;
@@ -1,3 +1,4 @@
1
+ import type { IconNames } from '../icon/icon.types';
1
2
  declare const TAG_NAME: "mdc-badge";
2
3
  declare const TYPE: {
3
4
  readonly DOT: "dot";
@@ -8,26 +9,14 @@ declare const TYPE: {
8
9
  readonly ERROR: "error";
9
10
  };
10
11
  declare const ICON_NAMES_LIST: {
11
- readonly SUCCESS_ICON_NAME: "check-circle-badge-filled";
12
- readonly WARNING_ICON_NAME: "warning-badge-filled";
13
- readonly ERROR_ICON_NAME: "error-legacy-badge-filled";
12
+ readonly SUCCESS_ICON_NAME: Extract<IconNames, "check-circle-badge-filled">;
13
+ readonly WARNING_ICON_NAME: Extract<IconNames, "warning-badge-filled">;
14
+ readonly ERROR_ICON_NAME: Extract<IconNames, "error-legacy-badge-filled">;
14
15
  };
15
16
  declare const ICON_VARIANT: {
16
17
  readonly PRIMARY: "primary";
17
18
  readonly SECONDARY: "secondary";
18
19
  };
19
- declare const ICON_STATE: {
20
- readonly SUCCESS: "success";
21
- readonly WARNING: "warning";
22
- readonly ERROR: "error";
23
- };
24
- declare const BACKGROUND_STYLES: {
25
- readonly SUCCESS: "success";
26
- readonly WARNING: "warning";
27
- readonly ERROR: "error";
28
- readonly PRIMARY: "primary";
29
- readonly SECONDARY: "secondary";
30
- };
31
20
  declare const DEFAULTS: {
32
21
  readonly TYPE: "dot";
33
22
  readonly MAX_COUNTER: 99;
@@ -35,4 +24,4 @@ declare const DEFAULTS: {
35
24
  readonly VARIANT: "primary";
36
25
  readonly ICON_SIZE: 1;
37
26
  };
38
- export { TAG_NAME, DEFAULTS, TYPE, ICON_STATE, ICON_VARIANT, ICON_NAMES_LIST, BACKGROUND_STYLES };
27
+ export { TAG_NAME, DEFAULTS, TYPE, ICON_VARIANT, ICON_NAMES_LIST };
@@ -17,15 +17,6 @@ const ICON_VARIANT = {
17
17
  PRIMARY: 'primary',
18
18
  SECONDARY: 'secondary',
19
19
  };
20
- const ICON_STATE = {
21
- SUCCESS: 'success',
22
- WARNING: 'warning',
23
- ERROR: 'error',
24
- };
25
- const BACKGROUND_STYLES = {
26
- ...ICON_VARIANT,
27
- ...ICON_STATE,
28
- };
29
20
  const DEFAULTS = {
30
21
  TYPE: TYPE.DOT,
31
22
  MAX_COUNTER: 99,
@@ -33,4 +24,4 @@ const DEFAULTS = {
33
24
  VARIANT: ICON_VARIANT.PRIMARY,
34
25
  ICON_SIZE: 1,
35
26
  };
36
- export { TAG_NAME, DEFAULTS, TYPE, ICON_STATE, ICON_VARIANT, ICON_NAMES_LIST, BACKGROUND_STYLES };
27
+ export { TAG_NAME, DEFAULTS, TYPE, ICON_VARIANT, ICON_NAMES_LIST };
@@ -44,26 +44,26 @@ const styles = [
44
44
  padding: 2px;
45
45
  border-radius: 50%;
46
46
  }
47
- :host::part(badge-icon__primary) {
47
+ :host([type='icon'][variant='primary'])::part(badge-icon) {
48
48
  background-color: var(--mdc-badge-primary-background-color);
49
49
  color: var(--mdc-badge-primary-foreground-color);
50
50
  }
51
- :host::part(badge-icon__success) {
51
+ :host([type='icon'][variant='secondary'])::part(badge-icon) {
52
+ background-color: var(--mdc-badge-secondary-background-color);
53
+ color: var(--mdc-badge-secondary-foreground-color);
54
+ }
55
+ :host([type='success'])::part(badge-icon) {
52
56
  background-color: var(--mdc-badge-success-background-color);
53
57
  color: var(--mdc-badge-success-foreground-color);
54
58
  }
55
- :host::part(badge-icon__warning) {
59
+ :host([type='warning'])::part(badge-icon) {
56
60
  background-color: var(--mdc-badge-warning-background-color);
57
61
  color: var(--mdc-badge-warning-foreground-color);
58
62
  }
59
- :host::part(badge-icon__error) {
63
+ :host([type='error'])::part(badge-icon) {
60
64
  background-color: var(--mdc-badge-error-background-color);
61
65
  color: var(--mdc-badge-error-foreground-color);
62
66
  }
63
- :host::part(badge-icon__secondary) {
64
- background-color: var(--mdc-badge-secondary-background-color);
65
- color: var(--mdc-badge-secondary-foreground-color);
66
- }
67
67
 
68
68
  /* High Contrast Mode */
69
69
  @media (forced-colors: active) {
@@ -4273,26 +4273,6 @@
4273
4273
  "description": "The icon badge.",
4274
4274
  "name": "badge-icon"
4275
4275
  },
4276
- {
4277
- "description": "The error icon badge.",
4278
- "name": "badge-icon__error"
4279
- },
4280
- {
4281
- "description": "The primary icon badge.",
4282
- "name": "badge-icon__primary"
4283
- },
4284
- {
4285
- "description": "The secondary icon badge.",
4286
- "name": "badge-icon__secondary"
4287
- },
4288
- {
4289
- "description": "The success icon badge.",
4290
- "name": "badge-icon__success"
4291
- },
4292
- {
4293
- "description": "The warning icon badge.",
4294
- "name": "badge-icon__warning"
4295
- },
4296
4276
  {
4297
4277
  "description": "The overlay badge.",
4298
4278
  "name": "badge-overlay"
@@ -4408,13 +4388,6 @@
4408
4388
  "text": "string"
4409
4389
  },
4410
4390
  "description": "the name of the icon from the icon set"
4411
- },
4412
- {
4413
- "name": "backgroundPartPostfix",
4414
- "type": {
4415
- "text": "string"
4416
- },
4417
- "description": "postfix for the part to style the badge icon."
4418
4391
  }
4419
4392
  ],
4420
4393
  "description": "Method to generate the badge icon."
@@ -4554,7 +4527,7 @@
4554
4527
  "module": "/src/models"
4555
4528
  },
4556
4529
  "tagName": "mdc-badge",
4557
- "jsDoc": "/**\n * The `mdc-badge` component is a versatile UI element used to\n * display dot, icons, counters, success, warning and error type badge.\n *\n * Supported badge types:\n * - `dot`: Displays a dot notification badge with a blue color.\n * - `icon`: Displays a badge with a specified icon using the `icon-name` attribute.\n * - `counter`: Displays a badge with a counter value. If the counter exceeds the `max-counter`,\n * it shows `maxCounter+`. The maximum value of the counter is 999 and anything above that will be set to `999+`.\n * - `success`: Displays a success badge with a check circle icon and green color.\n * - `warning`: Displays a warning badge with a warning icon and yellow color.\n * - `error`: Displays a error badge with a error legacy icon and red color.\n *\n * For `icon`, `success`, `warning` and `error` types, the `mdc-icon` component is used to render the icon.\n *\n * For the `counter` type, the `mdc-text` component is used to render the counter value.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @tagname mdc-badge\n *\n * @cssproperty --mdc-badge-primary-foreground-color - The foreground color of the primary badge.\n * @cssproperty --mdc-badge-primary-background-color - The background color of the primary badge.\n * @cssproperty --mdc-badge-secondary-foreground-color - The foreground color of the secondary badge.\n * @cssproperty --mdc-badge-secondary-background-color - The background color of the secondary badge.\n * @cssproperty --mdc-badge-success-foreground-color - The foreground color of the success badge.\n * @cssproperty --mdc-badge-success-background-color - The background color of the success badge.\n * @cssproperty --mdc-badge-warning-foreground-color - The foreground color of the warning badge.\n * @cssproperty --mdc-badge-warning-background-color - The background color of the warning badge.\n * @cssproperty --mdc-badge-error-foreground-color - The foreground color of the error badge.\n * @cssproperty --mdc-badge-error-background-color - The background color of the error badge.\n * @cssproperty --mdc-badge-overlay-background-color - The background color of the badge overlay.\n *\n * @csspart badge-dot - The dot notification badge.\n * @csspart badge-icon - The icon badge.\n * @csspart badge-icon__error - The error icon badge.\n * @csspart badge-icon__primary - The primary icon badge.\n * @csspart badge-icon__secondary - The secondary icon badge.\n * @csspart badge-icon__success - The success icon badge.\n * @csspart badge-icon__warning - The warning icon badge.\n * @csspart badge-overlay - The overlay badge.\n * @csspart badge-text - The text badge.\n */",
4530
+ "jsDoc": "/**\n * The `mdc-badge` component is a versatile UI element used to\n * display dot, icons, counters, success, warning and error type badge.\n *\n * Supported badge types:\n * - `dot`: Displays a dot notification badge with a blue color.\n * - `icon`: Displays a badge with a specified icon using the `icon-name` attribute.\n * - `counter`: Displays a badge with a counter value. If the counter exceeds the `max-counter`,\n * it shows `maxCounter+`. The maximum value of the counter is 999 and anything above that will be set to `999+`.\n * - `success`: Displays a success badge with a check circle icon and green color.\n * - `warning`: Displays a warning badge with a warning icon and yellow color.\n * - `error`: Displays a error badge with a error legacy icon and red color.\n *\n * For `icon`, `success`, `warning` and `error` types, the `mdc-icon` component is used to render the icon.\n *\n * For the `counter` type, the `mdc-text` component is used to render the counter value.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @tagname mdc-badge\n *\n * @cssproperty --mdc-badge-primary-foreground-color - The foreground color of the primary badge.\n * @cssproperty --mdc-badge-primary-background-color - The background color of the primary badge.\n * @cssproperty --mdc-badge-secondary-foreground-color - The foreground color of the secondary badge.\n * @cssproperty --mdc-badge-secondary-background-color - The background color of the secondary badge.\n * @cssproperty --mdc-badge-success-foreground-color - The foreground color of the success badge.\n * @cssproperty --mdc-badge-success-background-color - The background color of the success badge.\n * @cssproperty --mdc-badge-warning-foreground-color - The foreground color of the warning badge.\n * @cssproperty --mdc-badge-warning-background-color - The background color of the warning badge.\n * @cssproperty --mdc-badge-error-foreground-color - The foreground color of the error badge.\n * @cssproperty --mdc-badge-error-background-color - The background color of the error badge.\n * @cssproperty --mdc-badge-overlay-background-color - The background color of the badge overlay.\n *\n * @csspart badge-dot - The dot notification badge.\n * @csspart badge-icon - The icon badge.\n * @csspart badge-overlay - The overlay badge.\n * @csspart badge-text - The text badge.\n */",
4558
4531
  "customElement": true
4559
4532
  }
4560
4533
  ],
@@ -41049,6 +41022,94 @@
41049
41022
  }
41050
41023
  ]
41051
41024
  },
41025
+ {
41026
+ "kind": "javascript-module",
41027
+ "path": "components/stepperconnector/stepperconnector.component.js",
41028
+ "declarations": [
41029
+ {
41030
+ "kind": "class",
41031
+ "description": "StepperConnector component visually represents the connection between two stepper items.\nIndicates whether the connection is complete or incomplete, and supports vertical or horizontal orientation.\nThey are used between 2 `mdc-stepperitem` components to visually connect them and wrapped in a `mdc-stepper` component.",
41032
+ "name": "StepperConnector",
41033
+ "cssProperties": [
41034
+ {
41035
+ "description": "Background color for the complete connector",
41036
+ "name": "--mdc-stepperconnector-complete-background"
41037
+ },
41038
+ {
41039
+ "description": "Background color for the incomplete connector",
41040
+ "name": "--mdc-stepperconnector-incomplete-background"
41041
+ }
41042
+ ],
41043
+ "cssParts": [
41044
+ {
41045
+ "description": "The main connector line between steps",
41046
+ "name": "connector"
41047
+ }
41048
+ ],
41049
+ "members": [
41050
+ {
41051
+ "kind": "field",
41052
+ "name": "status",
41053
+ "type": {
41054
+ "text": "StatusType"
41055
+ },
41056
+ "description": "The status of the connector (complete or incomplete)",
41057
+ "default": "\"incomplete\"",
41058
+ "attribute": "status",
41059
+ "reflects": true
41060
+ },
41061
+ {
41062
+ "kind": "field",
41063
+ "name": "orientation",
41064
+ "type": {
41065
+ "text": "OrientationType"
41066
+ },
41067
+ "description": "The orientation of the connector (vertical or horizontal)",
41068
+ "default": "\"horizontal\"",
41069
+ "attribute": "orientation",
41070
+ "reflects": true
41071
+ }
41072
+ ],
41073
+ "attributes": [
41074
+ {
41075
+ "name": "status",
41076
+ "type": {
41077
+ "text": "StatusType"
41078
+ },
41079
+ "description": "The status of the connector (complete or incomplete)",
41080
+ "default": "\"incomplete\"",
41081
+ "fieldName": "status"
41082
+ },
41083
+ {
41084
+ "name": "orientation",
41085
+ "type": {
41086
+ "text": "OrientationType"
41087
+ },
41088
+ "description": "The orientation of the connector (vertical or horizontal)",
41089
+ "default": "\"horizontal\"",
41090
+ "fieldName": "orientation"
41091
+ }
41092
+ ],
41093
+ "superclass": {
41094
+ "name": "Component",
41095
+ "module": "/src/models"
41096
+ },
41097
+ "tagName": "mdc-stepperconnector",
41098
+ "jsDoc": "/**\n * StepperConnector component visually represents the connection between two stepper items.\n * Indicates whether the connection is complete or incomplete, and supports vertical or horizontal orientation.\n * They are used between 2 `mdc-stepperitem` components to visually connect them and wrapped in a `mdc-stepper` component.\n *\n * @tagname mdc-stepperconnector\n *\n * @csspart connector - The main connector line between steps\n *\n * @cssproperty --mdc-stepperconnector-complete-background - Background color for the complete connector\n * @cssproperty --mdc-stepperconnector-incomplete-background - Background color for the incomplete connector\n */",
41099
+ "customElement": true
41100
+ }
41101
+ ],
41102
+ "exports": [
41103
+ {
41104
+ "kind": "js",
41105
+ "name": "default",
41106
+ "declaration": {
41107
+ "name": "StepperConnector",
41108
+ "module": "components/stepperconnector/stepperconnector.component.js"
41109
+ }
41110
+ }
41111
+ ]
41112
+ },
41052
41113
  {
41053
41114
  "kind": "javascript-module",
41054
41115
  "path": "components/stepper/stepper.component.js",
@@ -41146,94 +41207,6 @@
41146
41207
  }
41147
41208
  ]
41148
41209
  },
41149
- {
41150
- "kind": "javascript-module",
41151
- "path": "components/stepperconnector/stepperconnector.component.js",
41152
- "declarations": [
41153
- {
41154
- "kind": "class",
41155
- "description": "StepperConnector component visually represents the connection between two stepper items.\nIndicates whether the connection is complete or incomplete, and supports vertical or horizontal orientation.\nThey are used between 2 `mdc-stepperitem` components to visually connect them and wrapped in a `mdc-stepper` component.",
41156
- "name": "StepperConnector",
41157
- "cssProperties": [
41158
- {
41159
- "description": "Background color for the complete connector",
41160
- "name": "--mdc-stepperconnector-complete-background"
41161
- },
41162
- {
41163
- "description": "Background color for the incomplete connector",
41164
- "name": "--mdc-stepperconnector-incomplete-background"
41165
- }
41166
- ],
41167
- "cssParts": [
41168
- {
41169
- "description": "The main connector line between steps",
41170
- "name": "connector"
41171
- }
41172
- ],
41173
- "members": [
41174
- {
41175
- "kind": "field",
41176
- "name": "status",
41177
- "type": {
41178
- "text": "StatusType"
41179
- },
41180
- "description": "The status of the connector (complete or incomplete)",
41181
- "default": "\"incomplete\"",
41182
- "attribute": "status",
41183
- "reflects": true
41184
- },
41185
- {
41186
- "kind": "field",
41187
- "name": "orientation",
41188
- "type": {
41189
- "text": "OrientationType"
41190
- },
41191
- "description": "The orientation of the connector (vertical or horizontal)",
41192
- "default": "\"horizontal\"",
41193
- "attribute": "orientation",
41194
- "reflects": true
41195
- }
41196
- ],
41197
- "attributes": [
41198
- {
41199
- "name": "status",
41200
- "type": {
41201
- "text": "StatusType"
41202
- },
41203
- "description": "The status of the connector (complete or incomplete)",
41204
- "default": "\"incomplete\"",
41205
- "fieldName": "status"
41206
- },
41207
- {
41208
- "name": "orientation",
41209
- "type": {
41210
- "text": "OrientationType"
41211
- },
41212
- "description": "The orientation of the connector (vertical or horizontal)",
41213
- "default": "\"horizontal\"",
41214
- "fieldName": "orientation"
41215
- }
41216
- ],
41217
- "superclass": {
41218
- "name": "Component",
41219
- "module": "/src/models"
41220
- },
41221
- "tagName": "mdc-stepperconnector",
41222
- "jsDoc": "/**\n * StepperConnector component visually represents the connection between two stepper items.\n * Indicates whether the connection is complete or incomplete, and supports vertical or horizontal orientation.\n * They are used between 2 `mdc-stepperitem` components to visually connect them and wrapped in a `mdc-stepper` component.\n *\n * @tagname mdc-stepperconnector\n *\n * @csspart connector - The main connector line between steps\n *\n * @cssproperty --mdc-stepperconnector-complete-background - Background color for the complete connector\n * @cssproperty --mdc-stepperconnector-incomplete-background - Background color for the incomplete connector\n */",
41223
- "customElement": true
41224
- }
41225
- ],
41226
- "exports": [
41227
- {
41228
- "kind": "js",
41229
- "name": "default",
41230
- "declaration": {
41231
- "name": "StepperConnector",
41232
- "module": "components/stepperconnector/stepperconnector.component.js"
41233
- }
41234
- }
41235
- ]
41236
- },
41237
41210
  {
41238
41211
  "kind": "javascript-module",
41239
41212
  "path": "components/stepperitem/stepperitem.component.js",
@@ -35,11 +35,6 @@ import Component from '../../components/badge';
35
35
  *
36
36
  * @csspart badge-dot - The dot notification badge.
37
37
  * @csspart badge-icon - The icon badge.
38
- * @csspart badge-icon__error - The error icon badge.
39
- * @csspart badge-icon__primary - The primary icon badge.
40
- * @csspart badge-icon__secondary - The secondary icon badge.
41
- * @csspart badge-icon__success - The success icon badge.
42
- * @csspart badge-icon__warning - The warning icon badge.
43
38
  * @csspart badge-overlay - The overlay badge.
44
39
  * @csspart badge-text - The text badge.
45
40
  */
@@ -38,11 +38,6 @@ import { TAG_NAME } from '../../components/badge/badge.constants';
38
38
  *
39
39
  * @csspart badge-dot - The dot notification badge.
40
40
  * @csspart badge-icon - The icon badge.
41
- * @csspart badge-icon__error - The error icon badge.
42
- * @csspart badge-icon__primary - The primary icon badge.
43
- * @csspart badge-icon__secondary - The secondary icon badge.
44
- * @csspart badge-icon__success - The success icon badge.
45
- * @csspart badge-icon__warning - The warning icon badge.
46
41
  * @csspart badge-overlay - The overlay badge.
47
42
  * @csspart badge-text - The text badge.
48
43
  */
@@ -70,8 +70,8 @@ export { default as StaticCheckbox } from './staticcheckbox';
70
70
  export { default as StaticChip } from './staticchip';
71
71
  export { default as StaticRadio } from './staticradio';
72
72
  export { default as StaticToggle } from './statictoggle';
73
- export { default as Stepper } from './stepper';
74
73
  export { default as StepperConnector } from './stepperconnector';
74
+ export { default as Stepper } from './stepper';
75
75
  export { default as StepperItem } from './stepperitem';
76
76
  export { default as Tab } from './tab';
77
77
  export { default as TabList } from './tablist';
@@ -70,8 +70,8 @@ export { default as StaticCheckbox } from './staticcheckbox';
70
70
  export { default as StaticChip } from './staticchip';
71
71
  export { default as StaticRadio } from './staticradio';
72
72
  export { default as StaticToggle } from './statictoggle';
73
- export { default as Stepper } from './stepper';
74
73
  export { default as StepperConnector } from './stepperconnector';
74
+ export { default as Stepper } from './stepper';
75
75
  export { default as StepperItem } from './stepperitem';
76
76
  export { default as Tab } from './tab';
77
77
  export { default as TabList } from './tablist';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@momentum-design/components",
3
3
  "packageManager": "yarn@3.2.4",
4
- "version": "0.120.6",
4
+ "version": "0.120.8",
5
5
  "engines": {
6
6
  "node": ">=20.0.0",
7
7
  "npm": ">=8.0.0"