@momentum-design/components 0.37.1 → 0.37.3
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.
- package/dist/browser/index.js +94 -104
- package/dist/browser/index.js.map +3 -3
- package/dist/components/avatar/avatar.component.js +1 -1
- package/dist/components/textarea/textarea.component.d.ts +0 -29
- package/dist/components/textarea/textarea.component.js +0 -63
- package/dist/components/textarea/textarea.constants.d.ts +0 -5
- package/dist/components/textarea/textarea.constants.js +0 -7
- package/dist/components/textarea/textarea.styles.js +4 -1
- package/dist/custom-elements.json +1260 -1340
- package/dist/react/index.d.ts +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/textarea/index.d.ts +0 -2
- package/dist/react/textarea/index.js +0 -2
- package/package.json +1 -1
package/dist/react/index.d.ts
CHANGED
@@ -6,8 +6,8 @@ export { default as Bullet } from './bullet';
|
|
6
6
|
export { default as Button } from './button';
|
7
7
|
export { default as Buttonsimple } from './buttonsimple';
|
8
8
|
export { default as Checkbox } from './checkbox';
|
9
|
-
export { default as Chip } from './chip';
|
10
9
|
export { default as Coachmark } from './coachmark';
|
10
|
+
export { default as Chip } from './chip';
|
11
11
|
export { default as Divider } from './divider';
|
12
12
|
export { default as FilterChip } from './filterchip';
|
13
13
|
export { default as FormfieldGroup } from './formfieldgroup';
|
package/dist/react/index.js
CHANGED
@@ -6,8 +6,8 @@ export { default as Bullet } from './bullet';
|
|
6
6
|
export { default as Button } from './button';
|
7
7
|
export { default as Buttonsimple } from './buttonsimple';
|
8
8
|
export { default as Checkbox } from './checkbox';
|
9
|
-
export { default as Chip } from './chip';
|
10
9
|
export { default as Coachmark } from './coachmark';
|
10
|
+
export { default as Chip } from './chip';
|
11
11
|
export { default as Divider } from './divider';
|
12
12
|
export { default as FilterChip } from './filterchip';
|
13
13
|
export { default as FormfieldGroup } from './formfieldgroup';
|
@@ -7,8 +7,6 @@ import Component from '../../components/textarea';
|
|
7
7
|
* - Textarea: It is the multi-line text input field.
|
8
8
|
* - helper-text: It is the text that provides additional information about the textarea field.
|
9
9
|
* - max-character-limit: It is the text that shows the character count of the textarea field.
|
10
|
-
* - clear-button: A boolean value when marked to true represents a button that can
|
11
|
-
* clear the text value within the textarea field.
|
12
10
|
* - Error, Warning, Success, Priority Help Text type: It is the text that provides additional information
|
13
11
|
* about the textarea field based on the validation state.
|
14
12
|
* - limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.
|
@@ -10,8 +10,6 @@ import { TAG_NAME } from '../../components/textarea/textarea.constants';
|
|
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.
|
13
|
-
* - clear-button: A boolean value when marked to true represents a button that can
|
14
|
-
* clear the text value within the textarea field.
|
15
13
|
* - Error, Warning, Success, Priority Help Text type: It is the text that provides additional information
|
16
14
|
* about the textarea field based on the validation state.
|
17
15
|
* - limitexceeded: It is the event that is dispatched when the character limit exceeds or restored.
|
package/package.json
CHANGED