@momentum-design/components 0.76.0 → 0.76.2

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.
Files changed (28) hide show
  1. package/dist/browser/index.js +140 -128
  2. package/dist/browser/index.js.map +2 -2
  3. package/dist/components/checkbox/checkbox.component.d.ts +1 -1
  4. package/dist/components/checkbox/checkbox.component.js +3 -3
  5. package/dist/components/formfieldwrapper/formfieldwrapper.component.d.ts +4 -5
  6. package/dist/components/formfieldwrapper/formfieldwrapper.component.js +11 -15
  7. package/dist/components/formfieldwrapper/formfieldwrapper.styles.js +4 -0
  8. package/dist/components/input/input.component.js +2 -2
  9. package/dist/components/listitem/listitem.component.d.ts +27 -0
  10. package/dist/components/listitem/listitem.component.js +40 -2
  11. package/dist/components/menuitem/menuitem.component.js +8 -2
  12. package/dist/components/progressspinner/progressspinner.component.js +1 -1
  13. package/dist/components/radio/radio.component.js +3 -3
  14. package/dist/components/radio/radio.styles.js +1 -1
  15. package/dist/components/radiogroup/radiogroup.component.js +2 -2
  16. package/dist/components/searchfield/searchfield.component.js +1 -1
  17. package/dist/components/select/select.component.d.ts +5 -2
  18. package/dist/components/select/select.component.js +7 -4
  19. package/dist/components/textarea/textarea.component.d.ts +1 -1
  20. package/dist/components/textarea/textarea.component.js +3 -3
  21. package/dist/components/toggle/toggle.component.d.ts +3 -1
  22. package/dist/components/toggle/toggle.component.js +5 -3
  23. package/dist/custom-elements.json +807 -703
  24. package/dist/react/index.d.ts +2 -2
  25. package/dist/react/index.js +2 -2
  26. package/dist/react/textarea/index.d.ts +1 -1
  27. package/dist/react/textarea/index.js +1 -1
  28. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
- export { default as Appheader } from './appheader';
2
- export { default as Animation } from './animation';
3
1
  export { default as AlertChip } from './alertchip';
2
+ export { default as Animation } from './animation';
3
+ export { default as Appheader } from './appheader';
4
4
  export { default as Avatar } from './avatar';
5
5
  export { default as AvatarButton } from './avatarbutton';
6
6
  export { default as Badge } from './badge';
@@ -1,6 +1,6 @@
1
- export { default as Appheader } from './appheader';
2
- export { default as Animation } from './animation';
3
1
  export { default as AlertChip } from './alertchip';
2
+ export { default as Animation } from './animation';
3
+ export { default as Appheader } from './appheader';
4
4
  export { default as Avatar } from './avatar';
5
5
  export { default as AvatarButton } from './avatarbutton';
6
6
  export { default as Badge } from './badge';
@@ -4,7 +4,7 @@ import Component from '../../components/textarea';
4
4
  * mdc-textarea component, which is used to get the multi-line text input from the user.
5
5
  * It contains:
6
6
  * - label: It is the title of the textarea field.
7
- * - required-label: A string depicting that the textarea field is required.
7
+ * - required: A boolean attribute depicting that the textarea field is required.
8
8
  * - Textarea: It is the multi-line text input field.
9
9
  * - helper-text: It is the text that provides additional information about the textarea field.
10
10
  * - max-character-limit: It is the text that shows the character count of the textarea field.
@@ -6,7 +6,7 @@ import { TAG_NAME } from '../../components/textarea/textarea.constants';
6
6
  * mdc-textarea component, which is used to get the multi-line text input from the user.
7
7
  * It contains:
8
8
  * - label: It is the title of the textarea field.
9
- * - required-label: A string depicting that the textarea field is required.
9
+ * - required: A boolean attribute depicting that the textarea field is required.
10
10
  * - Textarea: It is the multi-line text input field.
11
11
  * - helper-text: It is the text that provides additional information about the textarea field.
12
12
  * - max-character-limit: It is the text that shows the character count of the textarea field.
package/package.json CHANGED
@@ -41,5 +41,5 @@
41
41
  "lottie-web": "^5.12.2",
42
42
  "uuid": "^11.0.5"
43
43
  },
44
- "version": "0.76.0"
44
+ "version": "0.76.2"
45
45
  }