@momentum-design/components 0.121.5 → 0.121.7

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.
@@ -13,11 +13,13 @@ const styles = [
13
13
  :host,
14
14
  :host::part(input-container),
15
15
  :host::part(input-section),
16
- :host::part(input-text) {
16
+ :host::part(input-text),
17
+ ::slotted(input) {
17
18
  width: 100%;
18
19
  }
19
20
 
20
- :host::part(input-text) {
21
+ :host::part(input-text),
22
+ ::slotted(input) {
21
23
  font-family: inherit;
22
24
  }
23
25
 
@@ -55,14 +57,16 @@ const styles = [
55
57
  gap: 0.25rem;
56
58
  }
57
59
 
58
- :host::part(input-text) {
60
+ :host::part(input-text),
61
+ ::slotted(input) {
59
62
  border: none;
60
63
  color: var(--mdc-input-text-color);
61
64
  background-color: inherit;
62
65
  outline: none;
63
66
  }
64
67
 
65
- :host::part(input-text)::selection {
68
+ :host::part(input-text)::selection,
69
+ ::slotted(input)::selection {
66
70
  background-color: var(--mdc-input-selection-background-color);
67
71
  color: var(--mdc-input-selection-text-color);
68
72
  }
@@ -136,11 +136,11 @@ class Password extends Input {
136
136
  }
137
137
  Password.styles = [...Input.styles];
138
138
  __decorate([
139
- property({ type: String, attribute: 'show-button-aria-label' }),
139
+ property({ type: String, attribute: 'show-button-aria-label', reflect: true }),
140
140
  __metadata("design:type", Object)
141
141
  ], Password.prototype, "showButtonAriaLabel", void 0);
142
142
  __decorate([
143
- property({ type: String, attribute: 'hide-button-aria-label' }),
143
+ property({ type: String, attribute: 'hide-button-aria-label', reflect: true }),
144
144
  __metadata("design:type", Object)
145
145
  ], Password.prototype, "hideButtonAriaLabel", void 0);
146
146
  __decorate([
@@ -317,12 +317,12 @@ declare class Popover extends Popover_base {
317
317
  */
318
318
  disableAriaExpanded: boolean;
319
319
  /**
320
- * If a tooltip is connected to the same trigger element,
321
- * this property will keep the connected tooltip closed if this popover is open.
322
- * This is useful when you want to show a popover with a tooltip
323
- * but you don't want the tooltip to be shown at the same time.
320
+ * Controls the visibility of a connected tooltip when this popover is open.
321
+ * - If set to `true`, the tooltip remains open alongside the popover.
322
+ * - If set to `false`, the tooltip will be closed when the popover opens.
323
+ * Useful for scenarios where both a popover and a tooltip are linked to the same trigger element.
324
324
  */
325
- keepConnectedTooltipClosed: boolean;
325
+ keepConnectedTooltipOpen: boolean;
326
326
  arrowElement: HTMLElement | null;
327
327
  /** @internal */
328
328
  private hoverTimer;
@@ -331,12 +331,12 @@ class Popover extends BackdropMixin(PreventScrollMixin(FocusTrapMixin(Component)
331
331
  */
332
332
  this.disableAriaExpanded = DEFAULTS.DISABLE_ARIA_EXPANDED;
333
333
  /**
334
- * If a tooltip is connected to the same trigger element,
335
- * this property will keep the connected tooltip closed if this popover is open.
336
- * This is useful when you want to show a popover with a tooltip
337
- * but you don't want the tooltip to be shown at the same time.
334
+ * Controls the visibility of a connected tooltip when this popover is open.
335
+ * - If set to `true`, the tooltip remains open alongside the popover.
336
+ * - If set to `false`, the tooltip will be closed when the popover opens.
337
+ * Useful for scenarios where both a popover and a tooltip are linked to the same trigger element.
338
338
  */
339
- this.keepConnectedTooltipClosed = DEFAULTS.KEEP_CONNECTED_TOOLTIP_CLOSED;
339
+ this.keepConnectedTooltipOpen = DEFAULTS.KEEP_CONNECTED_TOOLTIP_OPEN;
340
340
  this.arrowElement = null;
341
341
  /** @internal */
342
342
  this.hoverTimer = null;
@@ -688,7 +688,7 @@ class Popover extends BackdropMixin(PreventScrollMixin(FocusTrapMixin(Component)
688
688
  (_b = this.floatingUICleanupFunction) === null || _b === void 0 ? void 0 : _b.call(this);
689
689
  // clean timer if there is one set:
690
690
  this.cancelCloseDelay();
691
- if (this.keepConnectedTooltipClosed) {
691
+ if (!this.keepConnectedTooltipOpen) {
692
692
  if (this.connectedTooltip) {
693
693
  this.connectedTooltip.shouldSuppressOpening = false;
694
694
  }
@@ -778,7 +778,7 @@ class Popover extends BackdropMixin(PreventScrollMixin(FocusTrapMixin(Component)
778
778
  if (popoverStack.peek() !== this) {
779
779
  popoverStack.push(this);
780
780
  }
781
- if (this.keepConnectedTooltipClosed) {
781
+ if (!this.keepConnectedTooltipOpen) {
782
782
  // If this popover gets visible and keepConnectedTooltipsClosed is true,
783
783
  // we need to close the connected tooltip.
784
784
  if (this.connectedTooltip) {
@@ -844,7 +844,7 @@ class Popover extends BackdropMixin(PreventScrollMixin(FocusTrapMixin(Component)
844
844
  if (this.focusBackToTrigger) {
845
845
  triggerElement === null || triggerElement === void 0 ? void 0 : triggerElement.focus();
846
846
  }
847
- if (this.keepConnectedTooltipClosed) {
847
+ if (!this.keepConnectedTooltipOpen) {
848
848
  if (this.connectedTooltip) {
849
849
  this.connectedTooltip.shouldSuppressOpening = false;
850
850
  }
@@ -880,13 +880,20 @@ class Popover extends BackdropMixin(PreventScrollMixin(FocusTrapMixin(Component)
880
880
  return placement;
881
881
  }
882
882
  switch (placement) {
883
- case POPOVER_PLACEMENT.LEFT: return POPOVER_PLACEMENT.RIGHT;
884
- case POPOVER_PLACEMENT.LEFT_START: return POPOVER_PLACEMENT.RIGHT_START;
885
- case POPOVER_PLACEMENT.LEFT_END: return POPOVER_PLACEMENT.RIGHT_END;
886
- case POPOVER_PLACEMENT.RIGHT: return POPOVER_PLACEMENT.LEFT;
887
- case POPOVER_PLACEMENT.RIGHT_START: return POPOVER_PLACEMENT.LEFT_START;
888
- case POPOVER_PLACEMENT.RIGHT_END: return POPOVER_PLACEMENT.LEFT_END;
889
- default: return placement;
883
+ case POPOVER_PLACEMENT.LEFT:
884
+ return POPOVER_PLACEMENT.RIGHT;
885
+ case POPOVER_PLACEMENT.LEFT_START:
886
+ return POPOVER_PLACEMENT.RIGHT_START;
887
+ case POPOVER_PLACEMENT.LEFT_END:
888
+ return POPOVER_PLACEMENT.RIGHT_END;
889
+ case POPOVER_PLACEMENT.RIGHT:
890
+ return POPOVER_PLACEMENT.LEFT;
891
+ case POPOVER_PLACEMENT.RIGHT_START:
892
+ return POPOVER_PLACEMENT.LEFT_START;
893
+ case POPOVER_PLACEMENT.RIGHT_END:
894
+ return POPOVER_PLACEMENT.LEFT_END;
895
+ default:
896
+ return placement;
890
897
  }
891
898
  }
892
899
  render() {
@@ -1047,7 +1054,7 @@ __decorate([
1047
1054
  __metadata("design:type", Boolean)
1048
1055
  ], Popover.prototype, "disableAriaExpanded", void 0);
1049
1056
  __decorate([
1050
- property({ type: Boolean, reflect: true, attribute: 'keep-connected-tooltip-closed' }),
1057
+ property({ type: Boolean, reflect: true, attribute: 'keep-connected-tooltip-open' }),
1051
1058
  __metadata("design:type", Boolean)
1052
- ], Popover.prototype, "keepConnectedTooltipClosed", void 0);
1059
+ ], Popover.prototype, "keepConnectedTooltipOpen", void 0);
1053
1060
  export default Popover;
@@ -54,7 +54,7 @@ declare const DEFAULTS: {
54
54
  readonly Z_INDEX: 1000;
55
55
  readonly DISABLE_ARIA_EXPANDED: false;
56
56
  readonly PROPAGATE_EVENT_ON_ESCAPE: false;
57
- readonly KEEP_CONNECTED_TOOLTIP_CLOSED: true;
57
+ readonly KEEP_CONNECTED_TOOLTIP_OPEN: false;
58
58
  readonly IS_BACKDROP_INVISIBLE: true;
59
59
  };
60
60
  export { TAG_NAME, POPOVER_PLACEMENT, COLOR, STRATEGY, TRIGGER, DEFAULTS };
@@ -56,7 +56,7 @@ const DEFAULTS = {
56
56
  Z_INDEX: 1000,
57
57
  DISABLE_ARIA_EXPANDED: false,
58
58
  PROPAGATE_EVENT_ON_ESCAPE: false,
59
- KEEP_CONNECTED_TOOLTIP_CLOSED: true,
59
+ KEEP_CONNECTED_TOOLTIP_OPEN: false,
60
60
  IS_BACKDROP_INVISIBLE: true,
61
61
  };
62
62
  export { TAG_NAME, POPOVER_PLACEMENT, COLOR, STRATEGY, TRIGGER, DEFAULTS };
@@ -3,11 +3,16 @@ import type Textarea from './textarea.component';
3
3
  import { AUTO_COMPLETE, WRAP } from './textarea.constants';
4
4
  type WrapType = ValueOf<typeof WRAP>;
5
5
  type AutoCompleteType = ValueOf<typeof AUTO_COMPLETE>;
6
+ type TextareaInputEvent = OverrideEventTarget<InputEvent, Textarea>;
7
+ type TextareaChangeEvent = TypedCustomEvent<Textarea>;
8
+ type TextareaFocusEvent = OverrideEventTarget<FocusEvent, Textarea>;
9
+ type TextareaBlurEvent = OverrideEventTarget<FocusEvent, Textarea>;
10
+ type TextareaLimitExceededEvent = TypedCustomEvent<Textarea>;
6
11
  interface Events {
7
- onInputEvent: OverrideEventTarget<InputEvent, Textarea>;
8
- onChangeEvent: TypedCustomEvent<Textarea>;
9
- onFocusEvent: OverrideEventTarget<FocusEvent, Textarea>;
10
- onBlurEvent: OverrideEventTarget<FocusEvent, Textarea>;
11
- onLimitExceededEvent: TypedCustomEvent<Textarea>;
12
+ onInputEvent: TextareaInputEvent;
13
+ onChangeEvent: TextareaChangeEvent;
14
+ onFocusEvent: TextareaFocusEvent;
15
+ onBlurEvent: TextareaBlurEvent;
16
+ onLimitExceededEvent: TextareaLimitExceededEvent;
12
17
  }
13
- export type { WrapType, AutoCompleteType, Events };
18
+ export type { WrapType, AutoCompleteType, Events, TextareaInputEvent, TextareaChangeEvent, TextareaFocusEvent, TextareaBlurEvent, TextareaLimitExceededEvent, };
@@ -12822,12 +12822,12 @@
12822
12822
  },
12823
12823
  {
12824
12824
  "kind": "field",
12825
- "name": "keepConnectedTooltipClosed",
12825
+ "name": "keepConnectedTooltipOpen",
12826
12826
  "type": {
12827
12827
  "text": "boolean"
12828
12828
  },
12829
- "description": "If a tooltip is connected to the same trigger element,\nthis property will keep the connected tooltip closed if this popover is open.\nThis is useful when you want to show a popover with a tooltip\nbut you don't want the tooltip to be shown at the same time.",
12830
- "attribute": "keep-connected-tooltip-closed",
12829
+ "description": "Controls the visibility of a connected tooltip when this popover is open.\n- If set to `true`, the tooltip remains open alongside the popover.\n- If set to `false`, the tooltip will be closed when the popover opens.\nUseful for scenarios where both a popover and a tooltip are linked to the same trigger element.",
12830
+ "attribute": "keep-connected-tooltip-open",
12831
12831
  "reflects": true,
12832
12832
  "inheritedFrom": {
12833
12833
  "name": "Popover",
@@ -13594,12 +13594,12 @@
13594
13594
  }
13595
13595
  },
13596
13596
  {
13597
- "name": "keep-connected-tooltip-closed",
13597
+ "name": "keep-connected-tooltip-open",
13598
13598
  "type": {
13599
13599
  "text": "boolean"
13600
13600
  },
13601
- "description": "If a tooltip is connected to the same trigger element,\nthis property will keep the connected tooltip closed if this popover is open.\nThis is useful when you want to show a popover with a tooltip\nbut you don't want the tooltip to be shown at the same time.",
13602
- "fieldName": "keepConnectedTooltipClosed",
13601
+ "description": "Controls the visibility of a connected tooltip when this popover is open.\n- If set to `true`, the tooltip remains open alongside the popover.\n- If set to `false`, the tooltip will be closed when the popover opens.\nUseful for scenarios where both a popover and a tooltip are linked to the same trigger element.",
13602
+ "fieldName": "keepConnectedTooltipOpen",
13603
13603
  "inheritedFrom": {
13604
13604
  "name": "Popover",
13605
13605
  "module": "src/components/popover/popover.component.ts"
@@ -27974,12 +27974,12 @@
27974
27974
  },
27975
27975
  {
27976
27976
  "kind": "field",
27977
- "name": "keepConnectedTooltipClosed",
27977
+ "name": "keepConnectedTooltipOpen",
27978
27978
  "type": {
27979
27979
  "text": "boolean"
27980
27980
  },
27981
- "description": "If a tooltip is connected to the same trigger element,\nthis property will keep the connected tooltip closed if this popover is open.\nThis is useful when you want to show a popover with a tooltip\nbut you don't want the tooltip to be shown at the same time.",
27982
- "attribute": "keep-connected-tooltip-closed",
27981
+ "description": "Controls the visibility of a connected tooltip when this popover is open.\n- If set to `true`, the tooltip remains open alongside the popover.\n- If set to `false`, the tooltip will be closed when the popover opens.\nUseful for scenarios where both a popover and a tooltip are linked to the same trigger element.",
27982
+ "attribute": "keep-connected-tooltip-open",
27983
27983
  "reflects": true,
27984
27984
  "inheritedFrom": {
27985
27985
  "name": "Popover",
@@ -28704,12 +28704,12 @@
28704
28704
  }
28705
28705
  },
28706
28706
  {
28707
- "name": "keep-connected-tooltip-closed",
28707
+ "name": "keep-connected-tooltip-open",
28708
28708
  "type": {
28709
28709
  "text": "boolean"
28710
28710
  },
28711
- "description": "If a tooltip is connected to the same trigger element,\nthis property will keep the connected tooltip closed if this popover is open.\nThis is useful when you want to show a popover with a tooltip\nbut you don't want the tooltip to be shown at the same time.",
28712
- "fieldName": "keepConnectedTooltipClosed",
28711
+ "description": "Controls the visibility of a connected tooltip when this popover is open.\n- If set to `true`, the tooltip remains open alongside the popover.\n- If set to `false`, the tooltip will be closed when the popover opens.\nUseful for scenarios where both a popover and a tooltip are linked to the same trigger element.",
28712
+ "fieldName": "keepConnectedTooltipOpen",
28713
28713
  "inheritedFrom": {
28714
28714
  "name": "Popover",
28715
28715
  "module": "src/components/popover/popover.component.ts"
@@ -31633,7 +31633,8 @@
31633
31633
  },
31634
31634
  "default": "''",
31635
31635
  "description": "Aria label for the show password icon button.",
31636
- "attribute": "show-button-aria-label"
31636
+ "attribute": "show-button-aria-label",
31637
+ "reflects": true
31637
31638
  },
31638
31639
  {
31639
31640
  "kind": "field",
@@ -31643,7 +31644,8 @@
31643
31644
  },
31644
31645
  "default": "''",
31645
31646
  "description": "Aria label for the hide password icon button.",
31646
- "attribute": "hide-button-aria-label"
31647
+ "attribute": "hide-button-aria-label",
31648
+ "reflects": true
31647
31649
  },
31648
31650
  {
31649
31651
  "kind": "field",
@@ -33307,12 +33309,12 @@
33307
33309
  },
33308
33310
  {
33309
33311
  "kind": "field",
33310
- "name": "keepConnectedTooltipClosed",
33312
+ "name": "keepConnectedTooltipOpen",
33311
33313
  "type": {
33312
33314
  "text": "boolean"
33313
33315
  },
33314
- "description": "If a tooltip is connected to the same trigger element,\nthis property will keep the connected tooltip closed if this popover is open.\nThis is useful when you want to show a popover with a tooltip\nbut you don't want the tooltip to be shown at the same time.",
33315
- "attribute": "keep-connected-tooltip-closed",
33316
+ "description": "Controls the visibility of a connected tooltip when this popover is open.\n- If set to `true`, the tooltip remains open alongside the popover.\n- If set to `false`, the tooltip will be closed when the popover opens.\nUseful for scenarios where both a popover and a tooltip are linked to the same trigger element.",
33317
+ "attribute": "keep-connected-tooltip-open",
33316
33318
  "reflects": true
33317
33319
  },
33318
33320
  {
@@ -34336,12 +34338,12 @@
34336
34338
  "fieldName": "disableAriaExpanded"
34337
34339
  },
34338
34340
  {
34339
- "name": "keep-connected-tooltip-closed",
34341
+ "name": "keep-connected-tooltip-open",
34340
34342
  "type": {
34341
34343
  "text": "boolean"
34342
34344
  },
34343
- "description": "If a tooltip is connected to the same trigger element,\nthis property will keep the connected tooltip closed if this popover is open.\nThis is useful when you want to show a popover with a tooltip\nbut you don't want the tooltip to be shown at the same time.",
34344
- "fieldName": "keepConnectedTooltipClosed"
34345
+ "description": "Controls the visibility of a connected tooltip when this popover is open.\n- If set to `true`, the tooltip remains open alongside the popover.\n- If set to `false`, the tooltip will be closed when the popover opens.\nUseful for scenarios where both a popover and a tooltip are linked to the same trigger element.",
34346
+ "fieldName": "keepConnectedTooltipOpen"
34345
34347
  },
34346
34348
  {
34347
34349
  "name": "should-focus-trap-wrap",
@@ -47987,12 +47989,12 @@
47987
47989
  },
47988
47990
  {
47989
47991
  "kind": "field",
47990
- "name": "keepConnectedTooltipClosed",
47992
+ "name": "keepConnectedTooltipOpen",
47991
47993
  "type": {
47992
47994
  "text": "boolean"
47993
47995
  },
47994
- "description": "If a tooltip is connected to the same trigger element,\nthis property will keep the connected tooltip closed if this popover is open.\nThis is useful when you want to show a popover with a tooltip\nbut you don't want the tooltip to be shown at the same time.",
47995
- "attribute": "keep-connected-tooltip-closed",
47996
+ "description": "Controls the visibility of a connected tooltip when this popover is open.\n- If set to `true`, the tooltip remains open alongside the popover.\n- If set to `false`, the tooltip will be closed when the popover opens.\nUseful for scenarios where both a popover and a tooltip are linked to the same trigger element.",
47997
+ "attribute": "keep-connected-tooltip-open",
47996
47998
  "reflects": true,
47997
47999
  "inheritedFrom": {
47998
48000
  "name": "Popover",
@@ -48767,12 +48769,12 @@
48767
48769
  }
48768
48770
  },
48769
48771
  {
48770
- "name": "keep-connected-tooltip-closed",
48772
+ "name": "keep-connected-tooltip-open",
48771
48773
  "type": {
48772
48774
  "text": "boolean"
48773
48775
  },
48774
- "description": "If a tooltip is connected to the same trigger element,\nthis property will keep the connected tooltip closed if this popover is open.\nThis is useful when you want to show a popover with a tooltip\nbut you don't want the tooltip to be shown at the same time.",
48775
- "fieldName": "keepConnectedTooltipClosed",
48776
+ "description": "Controls the visibility of a connected tooltip when this popover is open.\n- If set to `true`, the tooltip remains open alongside the popover.\n- If set to `false`, the tooltip will be closed when the popover opens.\nUseful for scenarios where both a popover and a tooltip are linked to the same trigger element.",
48777
+ "fieldName": "keepConnectedTooltipOpen",
48776
48778
  "inheritedFrom": {
48777
48779
  "name": "Popover",
48778
48780
  "module": "src/components/popover/popover.component.ts"
@@ -50058,12 +50060,12 @@
50058
50060
  },
50059
50061
  {
50060
50062
  "kind": "field",
50061
- "name": "keepConnectedTooltipClosed",
50063
+ "name": "keepConnectedTooltipOpen",
50062
50064
  "type": {
50063
50065
  "text": "boolean"
50064
50066
  },
50065
- "description": "If a tooltip is connected to the same trigger element,\nthis property will keep the connected tooltip closed if this popover is open.\nThis is useful when you want to show a popover with a tooltip\nbut you don't want the tooltip to be shown at the same time.",
50066
- "attribute": "keep-connected-tooltip-closed",
50067
+ "description": "Controls the visibility of a connected tooltip when this popover is open.\n- If set to `true`, the tooltip remains open alongside the popover.\n- If set to `false`, the tooltip will be closed when the popover opens.\nUseful for scenarios where both a popover and a tooltip are linked to the same trigger element.",
50068
+ "attribute": "keep-connected-tooltip-open",
50067
50069
  "reflects": true,
50068
50070
  "inheritedFrom": {
50069
50071
  "name": "Popover",
@@ -50839,12 +50841,12 @@
50839
50841
  }
50840
50842
  },
50841
50843
  {
50842
- "name": "keep-connected-tooltip-closed",
50844
+ "name": "keep-connected-tooltip-open",
50843
50845
  "type": {
50844
50846
  "text": "boolean"
50845
50847
  },
50846
- "description": "If a tooltip is connected to the same trigger element,\nthis property will keep the connected tooltip closed if this popover is open.\nThis is useful when you want to show a popover with a tooltip\nbut you don't want the tooltip to be shown at the same time.",
50847
- "fieldName": "keepConnectedTooltipClosed",
50848
+ "description": "Controls the visibility of a connected tooltip when this popover is open.\n- If set to `true`, the tooltip remains open alongside the popover.\n- If set to `false`, the tooltip will be closed when the popover opens.\nUseful for scenarios where both a popover and a tooltip are linked to the same trigger element.",
50849
+ "fieldName": "keepConnectedTooltipOpen",
50848
50850
  "inheritedFrom": {
50849
50851
  "name": "Popover",
50850
50852
  "module": "src/components/popover/popover.component.ts"
package/dist/index.d.ts CHANGED
@@ -96,9 +96,10 @@ import type { MenuSectionChangeEvent } from './components/menusection/menusectio
96
96
  import type { SliderChangeEvent } from './components/slider/slider.types';
97
97
  import type { InputInputEvent, InputChangeEvent, InputFocusEvent, InputBlurEvent, InputClearEvent } from './components/input/input.types';
98
98
  import type { VirtualizedListScrollEvent } from './components/virtualizedlist/virtualizedlist.types';
99
+ import type { TextareaInputEvent, TextareaChangeEvent, TextareaFocusEvent, TextareaBlurEvent, TextareaLimitExceededEvent } from './components/textarea/textarea.types';
99
100
  import { BUTTON_COLORS, BUTTON_VARIANTS, ICON_BUTTON_SIZES, PILL_BUTTON_SIZES } from './components/button/button.constants';
100
101
  import { SKELETON_VARIANTS } from './components/skeleton/skeleton.constants';
101
102
  import { inMemoryCache, webAPIAssetsCache } from './utils/assets-cache';
102
103
  export { Accordion, AccordionButton, AccordionGroup, AlertChip, Animation, AnnouncementDialog, Appheader, Avatar, AvatarButton, Badge, Brandvisual, Bullet, Button, ButtonGroup, ButtonLink, Card, CardButton, CardCheckbox, CardRadio, Checkbox, Chip, Coachmark, ControlTypeProvider, Dialog, Divider, FilterChip, FormfieldGroup, Icon, IconProvider, Illustration, IllustrationProvider, Input, InputChip, Link, LinkButton, Linksimple, List, Listheader, ListItem, Marker, MenuBar, MenuItem, MenuItemCheckbox, MenuItemRadio, MenuPopover, MenuSection, NavMenuItem, OptGroup, Option, Password, Popover, Presence, Progressbar, Progressspinner, Radio, RadioGroup, ScreenreaderAnnouncer, Searchfield, Select, SelectListbox, SideNavigation, Skeleton, Spinner, StaticChip, StaticCheckbox, StaticRadio, StaticToggle, Stepper, StepperConnector, StepperItem, Tab, TabList, Text, Textarea, ThemeProvider, Toast, Toggle, Typewriter, ToggleTip, Tooltip, VirtualizedList, Combobox, Slider, ListBox, Banner, };
103
- export type { BadgeType, ButtonColor, ButtonVariant, IconButtonSize, MenuPopoverActionEvent, MenuPopoverChangeEvent, MenuSectionChangeEvent, PillButtonSize, PopoverPlacement, SkeletonVariant, SelectChangeEvent, SelectInputEvent, SpinnerSize, SpinnerVariant, SliderChangeEvent, TextType, TypewriterType, InputInputEvent, InputChangeEvent, InputFocusEvent, InputBlurEvent, InputClearEvent, VirtualizedListScrollEvent, };
104
+ export type { BadgeType, ButtonColor, ButtonVariant, IconButtonSize, MenuPopoverActionEvent, MenuPopoverChangeEvent, MenuSectionChangeEvent, PillButtonSize, PopoverPlacement, SkeletonVariant, SelectChangeEvent, SelectInputEvent, SpinnerSize, SpinnerVariant, SliderChangeEvent, TextType, TypewriterType, InputInputEvent, InputChangeEvent, InputFocusEvent, InputBlurEvent, InputClearEvent, VirtualizedListScrollEvent, TextareaInputEvent, TextareaChangeEvent, TextareaFocusEvent, TextareaBlurEvent, TextareaLimitExceededEvent, };
104
105
  export { BUTTON_COLORS, BUTTON_VARIANTS, ICON_BUTTON_SIZES, inMemoryCache, PILL_BUTTON_SIZES, SKELETON_VARIANTS, webAPIAssetsCache, };
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.121.5",
4
+ "version": "0.121.7",
5
5
  "engines": {
6
6
  "node": ">=20.0.0",
7
7
  "npm": ">=8.0.0"