@momentum-design/components 0.120.34 → 0.120.35

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.
@@ -1,6 +1,7 @@
1
1
  import { CSSResult, PropertyValueMap, PropertyValues } from 'lit';
2
2
  import { AssociatedFormControl } from '../../utils/mixins/FormInternalsMixin';
3
3
  import FormfieldWrapper from '../formfieldwrapper/formfieldwrapper.component';
4
+ import type { CheckboxValidationType } from './checkbox.types';
4
5
  declare const Checkbox_base: import("../../utils/mixins/index.types").Constructor<import("../../models").Component & import("../../utils/mixins/AutoFocusOnMountMixin").AutoFocusOnMountMixinInterface> & import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/FormInternalsMixin").FormInternalsMixinInterface> & import("../../utils/mixins/index.types").Constructor<import("../../utils/mixins/DataAriaLabelMixin").DataAriaLabelMixinInterface> & typeof FormfieldWrapper;
5
6
  /**
6
7
  * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.
@@ -74,7 +75,11 @@ declare class Checkbox extends Checkbox_base implements AssociatedFormControl {
74
75
  * @default false
75
76
  */
76
77
  autofocus: boolean;
77
- connectedCallback(): void;
78
+ /**
79
+ * The type of help text/validation. It can be 'default' or 'error'.
80
+ * @default 'default'
81
+ */
82
+ helpTextType: CheckboxValidationType;
78
83
  protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
79
84
  /**
80
85
  * Updates the form value to reflect the current state of the checkbox.
@@ -17,6 +17,7 @@ import { FormInternalsMixin } from '../../utils/mixins/FormInternalsMixin';
17
17
  import FormfieldWrapper from '../formfieldwrapper/formfieldwrapper.component';
18
18
  import { DEFAULTS as FORMFIELD_DEFAULTS } from '../formfieldwrapper/formfieldwrapper.constants';
19
19
  import styles from './checkbox.styles';
20
+ import { CHECKBOX_VALIDATION } from './checkbox.constants';
20
21
  /**
21
22
  * Checkboxes allow users to select multiple options from a list or turn an item/feature on or off.
22
23
  * These are often used in forms, settings, and selections in lists.
@@ -91,17 +92,17 @@ class Checkbox extends AutoFocusOnMountMixin(FormInternalsMixin(DataAriaLabelMix
91
92
  * @default false
92
93
  */
93
94
  this.autofocus = false;
95
+ /**
96
+ * The type of help text/validation. It can be 'default' or 'error'.
97
+ * @default 'default'
98
+ */
99
+ this.helpTextType = CHECKBOX_VALIDATION.DEFAULT;
94
100
  this.renderLabelAndHelperText = () => {
95
101
  if (!this.label)
96
102
  return nothing;
97
103
  return html `<div part="text-container">${this.renderLabel()} ${this.renderHelperText()}</div>`;
98
104
  };
99
105
  }
100
- connectedCallback() {
101
- super.connectedCallback();
102
- // Checkbox does not contain helpTextType property.
103
- this.helpTextType = undefined;
104
- }
105
106
  firstUpdated(_changedProperties) {
106
107
  // set the element to auto focus if autoFocusOnMount is set to true
107
108
  // before running the super method, so that the AutoFocusOnMountMixin can use it
@@ -247,4 +248,8 @@ __decorate([
247
248
  property({ type: Boolean, reflect: true }),
248
249
  __metadata("design:type", Object)
249
250
  ], Checkbox.prototype, "autofocus", void 0);
251
+ __decorate([
252
+ property({ type: String, reflect: true, attribute: 'help-text-type' }),
253
+ __metadata("design:type", String)
254
+ ], Checkbox.prototype, "helpTextType", void 0);
250
255
  export default Checkbox;
@@ -4,4 +4,8 @@ declare const ICON_NAME: {
4
4
  readonly CHECKED: Extract<IconNames, "check-bold">;
5
5
  readonly INDETERMINATE: Extract<IconNames, "minus-bold">;
6
6
  };
7
- export { TAG_NAME, ICON_NAME };
7
+ declare const CHECKBOX_VALIDATION: {
8
+ readonly ERROR: "error";
9
+ readonly DEFAULT: "default";
10
+ };
11
+ export { TAG_NAME, ICON_NAME, CHECKBOX_VALIDATION };
@@ -1,7 +1,12 @@
1
1
  import utils from '../../utils/tag-name';
2
+ import { VALIDATION } from '../formfieldwrapper/formfieldwrapper.constants';
2
3
  const TAG_NAME = utils.constructTagName('checkbox');
3
4
  const ICON_NAME = {
4
5
  CHECKED: 'check-bold',
5
6
  INDETERMINATE: 'minus-bold',
6
7
  };
7
- export { TAG_NAME, ICON_NAME };
8
+ const CHECKBOX_VALIDATION = {
9
+ ERROR: VALIDATION.ERROR,
10
+ DEFAULT: VALIDATION.DEFAULT,
11
+ };
12
+ export { TAG_NAME, ICON_NAME, CHECKBOX_VALIDATION };
@@ -62,6 +62,10 @@ const styles = [
62
62
  --mdc-checkbox-background-color: var(--mds-color-theme-control-active-pressed);
63
63
  }
64
64
 
65
+ :host([help-text-type='error'])::part(static-checkbox) {
66
+ --mdc-checkbox-border-color: var(--mds-color-theme-outline-cancel-normal);
67
+ }
68
+
65
69
  :host([readonly]),
66
70
  :host([disabled]),
67
71
  :host([soft-disabled]) {
@@ -1,7 +1,9 @@
1
- import type { OverrideEventTarget, TypedCustomEvent } from "../../utils/types";
2
- import type Checkbox from "./checkbox.component";
1
+ import type { OverrideEventTarget, TypedCustomEvent, ValueOf } from '../../utils/types';
2
+ import type Checkbox from './checkbox.component';
3
+ import { CHECKBOX_VALIDATION } from './checkbox.constants';
4
+ type CheckboxValidationType = ValueOf<typeof CHECKBOX_VALIDATION>;
3
5
  interface Events {
4
6
  onChangeEvent: TypedCustomEvent<Checkbox>;
5
7
  onFocusEvent: OverrideEventTarget<FocusEvent, Checkbox>;
6
8
  }
7
- export type { Events };
9
+ export type { Events, CheckboxValidationType };
@@ -477,6 +477,157 @@
477
477
  }
478
478
  ]
479
479
  },
480
+ {
481
+ "kind": "javascript-module",
482
+ "path": "components/accordiongroup/accordiongroup.component.js",
483
+ "declarations": [
484
+ {
485
+ "kind": "class",
486
+ "description": "An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\nEach heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\nAccordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n\n- Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n\nThere are three types of variants:\n- Stacked - Each accordion will have a gap of 1.5rem (24px).\n- Borderless - Each accordion will not have any border and the group will also not have any border.\n- Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n\nThere are two types of sizes:\n- Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n- Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n\nThe variant and size will be applied to all accordions inside this accordion group.\nTo show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n\nIf you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n\nIf the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.",
487
+ "name": "AccordionGroup",
488
+ "cssProperties": [
489
+ {
490
+ "description": "The border color of the entire accordiongroup",
491
+ "name": "--mdc-accordiongroup-border-color"
492
+ }
493
+ ],
494
+ "slots": [
495
+ {
496
+ "description": "The default slot can contain the `accordion` or `accordionbutton` components.",
497
+ "name": "default"
498
+ }
499
+ ],
500
+ "members": [
501
+ {
502
+ "kind": "field",
503
+ "name": "size",
504
+ "type": {
505
+ "text": "Size"
506
+ },
507
+ "description": "The size of the accordion item.",
508
+ "default": "'small'",
509
+ "attribute": "size",
510
+ "reflects": true
511
+ },
512
+ {
513
+ "kind": "field",
514
+ "name": "variant",
515
+ "type": {
516
+ "text": "Variant"
517
+ },
518
+ "description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
519
+ "default": "'stacked'",
520
+ "attribute": "variant",
521
+ "reflects": true
522
+ },
523
+ {
524
+ "kind": "field",
525
+ "name": "allowMultiple",
526
+ "type": {
527
+ "text": "boolean"
528
+ },
529
+ "default": "false",
530
+ "description": "If true, multiple accordion items can be visible at the same time.",
531
+ "attribute": "allow-multiple",
532
+ "reflects": true
533
+ },
534
+ {
535
+ "kind": "method",
536
+ "name": "handleAccordionExpanded",
537
+ "privacy": "private",
538
+ "return": {
539
+ "type": {
540
+ "text": "void"
541
+ }
542
+ },
543
+ "parameters": [
544
+ {
545
+ "name": "event",
546
+ "type": {
547
+ "text": "Event"
548
+ },
549
+ "description": "The event object from the 'shown' event."
550
+ }
551
+ ],
552
+ "description": "Handles the 'shown' event for accordion items.\nIf `allowMultiple` is false, ensures that only one accordion item\nremains expanded by collapsing all other expanded items when a new item is expanded."
553
+ },
554
+ {
555
+ "kind": "method",
556
+ "name": "setChildrenAccordionAttributes",
557
+ "privacy": "private",
558
+ "return": {
559
+ "type": {
560
+ "text": "void"
561
+ }
562
+ },
563
+ "parameters": [
564
+ {
565
+ "name": "attributeName",
566
+ "type": {
567
+ "text": "string"
568
+ },
569
+ "description": "The name of the attribute to set."
570
+ },
571
+ {
572
+ "name": "attributeValue",
573
+ "type": {
574
+ "text": "string"
575
+ },
576
+ "description": "The value to set the attribute to."
577
+ }
578
+ ],
579
+ "description": "Sets the given attribute on all child accordion or accordionbutton components."
580
+ }
581
+ ],
582
+ "attributes": [
583
+ {
584
+ "name": "size",
585
+ "type": {
586
+ "text": "Size"
587
+ },
588
+ "description": "The size of the accordion item.",
589
+ "default": "'small'",
590
+ "fieldName": "size"
591
+ },
592
+ {
593
+ "name": "variant",
594
+ "type": {
595
+ "text": "Variant"
596
+ },
597
+ "description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
598
+ "default": "'stacked'",
599
+ "fieldName": "variant"
600
+ },
601
+ {
602
+ "name": "allow-multiple",
603
+ "type": {
604
+ "text": "boolean"
605
+ },
606
+ "default": "false",
607
+ "description": "If true, multiple accordion items can be visible at the same time.",
608
+ "fieldName": "allowMultiple"
609
+ }
610
+ ],
611
+ "superclass": {
612
+ "name": "Component",
613
+ "module": "/src/models"
614
+ },
615
+ "tagName": "mdc-accordiongroup",
616
+ "jsDoc": "/**\n * An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\n * Each heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\n * Accordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n *\n * - Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n *\n * There are three types of variants:\n * - Stacked - Each accordion will have a gap of 1.5rem (24px).\n * - Borderless - Each accordion will not have any border and the group will also not have any border.\n * - Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n *\n * There are two types of sizes:\n * - Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n * - Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n *\n * The variant and size will be applied to all accordions inside this accordion group.\n * To show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n *\n * If you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n *\n * If the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.\n *\n * @tagname mdc-accordiongroup\n *\n * @slot default - The default slot can contain the `accordion` or `accordionbutton` components.\n *\n * @cssproperty --mdc-accordiongroup-border-color - The border color of the entire accordiongroup\n */",
617
+ "customElement": true
618
+ }
619
+ ],
620
+ "exports": [
621
+ {
622
+ "kind": "js",
623
+ "name": "default",
624
+ "declaration": {
625
+ "name": "AccordionGroup",
626
+ "module": "components/accordiongroup/accordiongroup.component.js"
627
+ }
628
+ }
629
+ ]
630
+ },
480
631
  {
481
632
  "kind": "javascript-module",
482
633
  "path": "components/accordionbutton/accordionbutton.component.js",
@@ -817,157 +968,6 @@
817
968
  }
818
969
  ]
819
970
  },
820
- {
821
- "kind": "javascript-module",
822
- "path": "components/accordiongroup/accordiongroup.component.js",
823
- "declarations": [
824
- {
825
- "kind": "class",
826
- "description": "An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\nEach heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\nAccordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n\n- Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n\nThere are three types of variants:\n- Stacked - Each accordion will have a gap of 1.5rem (24px).\n- Borderless - Each accordion will not have any border and the group will also not have any border.\n- Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n\nThere are two types of sizes:\n- Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n- Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n\nThe variant and size will be applied to all accordions inside this accordion group.\nTo show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n\nIf you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n\nIf the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.",
827
- "name": "AccordionGroup",
828
- "cssProperties": [
829
- {
830
- "description": "The border color of the entire accordiongroup",
831
- "name": "--mdc-accordiongroup-border-color"
832
- }
833
- ],
834
- "slots": [
835
- {
836
- "description": "The default slot can contain the `accordion` or `accordionbutton` components.",
837
- "name": "default"
838
- }
839
- ],
840
- "members": [
841
- {
842
- "kind": "field",
843
- "name": "size",
844
- "type": {
845
- "text": "Size"
846
- },
847
- "description": "The size of the accordion item.",
848
- "default": "'small'",
849
- "attribute": "size",
850
- "reflects": true
851
- },
852
- {
853
- "kind": "field",
854
- "name": "variant",
855
- "type": {
856
- "text": "Variant"
857
- },
858
- "description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
859
- "default": "'stacked'",
860
- "attribute": "variant",
861
- "reflects": true
862
- },
863
- {
864
- "kind": "field",
865
- "name": "allowMultiple",
866
- "type": {
867
- "text": "boolean"
868
- },
869
- "default": "false",
870
- "description": "If true, multiple accordion items can be visible at the same time.",
871
- "attribute": "allow-multiple",
872
- "reflects": true
873
- },
874
- {
875
- "kind": "method",
876
- "name": "handleAccordionExpanded",
877
- "privacy": "private",
878
- "return": {
879
- "type": {
880
- "text": "void"
881
- }
882
- },
883
- "parameters": [
884
- {
885
- "name": "event",
886
- "type": {
887
- "text": "Event"
888
- },
889
- "description": "The event object from the 'shown' event."
890
- }
891
- ],
892
- "description": "Handles the 'shown' event for accordion items.\nIf `allowMultiple` is false, ensures that only one accordion item\nremains expanded by collapsing all other expanded items when a new item is expanded."
893
- },
894
- {
895
- "kind": "method",
896
- "name": "setChildrenAccordionAttributes",
897
- "privacy": "private",
898
- "return": {
899
- "type": {
900
- "text": "void"
901
- }
902
- },
903
- "parameters": [
904
- {
905
- "name": "attributeName",
906
- "type": {
907
- "text": "string"
908
- },
909
- "description": "The name of the attribute to set."
910
- },
911
- {
912
- "name": "attributeValue",
913
- "type": {
914
- "text": "string"
915
- },
916
- "description": "The value to set the attribute to."
917
- }
918
- ],
919
- "description": "Sets the given attribute on all child accordion or accordionbutton components."
920
- }
921
- ],
922
- "attributes": [
923
- {
924
- "name": "size",
925
- "type": {
926
- "text": "Size"
927
- },
928
- "description": "The size of the accordion item.",
929
- "default": "'small'",
930
- "fieldName": "size"
931
- },
932
- {
933
- "name": "variant",
934
- "type": {
935
- "text": "Variant"
936
- },
937
- "description": "The variant of the accordion item. Based on the variant, the styling of the accordion gets changed.",
938
- "default": "'stacked'",
939
- "fieldName": "variant"
940
- },
941
- {
942
- "name": "allow-multiple",
943
- "type": {
944
- "text": "boolean"
945
- },
946
- "default": "false",
947
- "description": "If true, multiple accordion items can be visible at the same time.",
948
- "fieldName": "allowMultiple"
949
- }
950
- ],
951
- "superclass": {
952
- "name": "Component",
953
- "module": "/src/models"
954
- },
955
- "tagName": "mdc-accordiongroup",
956
- "jsDoc": "/**\n * An accordion group is a vertically stacked set of interactive headings that each contain a header and body content.\n * Each heading of the accordion acts as a control that enable users to expand or hide their associated body sections of content.\n * Accordions are commonly used to reduce the need to scroll when presenting multiple sections of content on a single page.\n *\n * - Default Slot: The accordion group component only accepts, `accordion` and `accordionbutton` components as the children, rest are ignored.\n *\n * There are three types of variants:\n * - Stacked - Each accordion will have a gap of 1.5rem (24px).\n * - Borderless - Each accordion will not have any border and the group will also not have any border.\n * - Contained - Each accordion will have no gap in between them and the border of the entire accordiongroup will be continuous.\n *\n * There are two types of sizes:\n * - Small: Small size has a padding of 1rem (16px) for both heading and body sections.\n * - Large: Large size has a padding of 1.5rem (24px) for both heading and body sections.\n *\n * The variant and size will be applied to all accordions inside this accordion group.\n * To show/expand more than one accordion at any given time, then set `allow-multiple` to `true`. By default, it's `false`.\n *\n * If you don't need any controls on your accordion heading, then it's advised to use `accordionbutton` component.\n *\n * If the first accordion of the accordion group is expanded by default, then the screen reader might loose focus when toggling the visibilty of the first accordion.\n *\n * @tagname mdc-accordiongroup\n *\n * @slot default - The default slot can contain the `accordion` or `accordionbutton` components.\n *\n * @cssproperty --mdc-accordiongroup-border-color - The border color of the entire accordiongroup\n */",
957
- "customElement": true
958
- }
959
- ],
960
- "exports": [
961
- {
962
- "kind": "js",
963
- "name": "default",
964
- "declaration": {
965
- "name": "AccordionGroup",
966
- "module": "components/accordiongroup/accordiongroup.component.js"
967
- }
968
- }
969
- ]
970
- },
971
971
  {
972
972
  "kind": "javascript-module",
973
973
  "path": "components/alertchip/alertchip.component.js",
@@ -10284,6 +10284,21 @@
10284
10284
  "attribute": "autofocus",
10285
10285
  "reflects": true
10286
10286
  },
10287
+ {
10288
+ "kind": "field",
10289
+ "name": "helpTextType",
10290
+ "type": {
10291
+ "text": "ValidationType"
10292
+ },
10293
+ "description": "The type of help text/validation. It can be 'default' or 'error'.",
10294
+ "attribute": "help-text-type",
10295
+ "reflects": true,
10296
+ "default": "'default'",
10297
+ "inheritedFrom": {
10298
+ "name": "FormfieldWrapper",
10299
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
10300
+ }
10301
+ },
10287
10302
  {
10288
10303
  "kind": "method",
10289
10304
  "name": "setFormValue",
@@ -10525,20 +10540,6 @@
10525
10540
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
10526
10541
  }
10527
10542
  },
10528
- {
10529
- "kind": "field",
10530
- "name": "helpTextType",
10531
- "type": {
10532
- "text": "ValidationType"
10533
- },
10534
- "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
10535
- "attribute": "help-text-type",
10536
- "reflects": true,
10537
- "inheritedFrom": {
10538
- "name": "FormfieldWrapper",
10539
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
10540
- }
10541
- },
10542
10543
  {
10543
10544
  "kind": "field",
10544
10545
  "name": "helpText",
@@ -10760,6 +10761,19 @@
10760
10761
  "description": "Automatically focus on the element when the page loads.\n[MDN Reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus)",
10761
10762
  "fieldName": "autofocus"
10762
10763
  },
10764
+ {
10765
+ "name": "help-text-type",
10766
+ "type": {
10767
+ "text": "ValidationType"
10768
+ },
10769
+ "description": "The type of help text/validation. It can be 'default' or 'error'.",
10770
+ "fieldName": "helpTextType",
10771
+ "default": "'default'",
10772
+ "inheritedFrom": {
10773
+ "name": "FormfieldWrapper",
10774
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
10775
+ }
10776
+ },
10763
10777
  {
10764
10778
  "name": "auto-focus-on-mount",
10765
10779
  "type": {
@@ -10862,18 +10876,6 @@
10862
10876
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
10863
10877
  }
10864
10878
  },
10865
- {
10866
- "name": "help-text-type",
10867
- "type": {
10868
- "text": "ValidationType"
10869
- },
10870
- "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
10871
- "fieldName": "helpTextType",
10872
- "inheritedFrom": {
10873
- "name": "FormfieldWrapper",
10874
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
10875
- }
10876
- },
10877
10879
  {
10878
10880
  "name": "help-text",
10879
10881
  "type": {
@@ -1,6 +1,6 @@
1
1
  export { default as Accordion } from './accordion';
2
- export { default as AccordionButton } from './accordionbutton';
3
2
  export { default as AccordionGroup } from './accordiongroup';
3
+ export { default as AccordionButton } from './accordionbutton';
4
4
  export { default as AlertChip } from './alertchip';
5
5
  export { default as Animation } from './animation';
6
6
  export { default as AnnouncementDialog } from './announcementdialog';
@@ -1,6 +1,6 @@
1
1
  export { default as Accordion } from './accordion';
2
- export { default as AccordionButton } from './accordionbutton';
3
2
  export { default as AccordionGroup } from './accordiongroup';
3
+ export { default as AccordionButton } from './accordionbutton';
4
4
  export { default as AlertChip } from './alertchip';
5
5
  export { default as Animation } from './animation';
6
6
  export { default as AnnouncementDialog } from './announcementdialog';
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.34",
4
+ "version": "0.120.35",
5
5
  "engines": {
6
6
  "node": ">=20.0.0",
7
7
  "npm": ">=8.0.0"