react-magma-dom 3.3.0 → 3.5.0
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/components/CharacterCounter/CharacterCounter.d.ts +12 -0
- package/dist/components/CharacterCounter/CharacterCounter.stories.d.ts +16 -0
- package/dist/components/FormFieldContainer/FormFieldContainer.d.ts +12 -0
- package/dist/components/Grid/Grid.d.ts +12 -0
- package/dist/components/Input/Input.stories.d.ts +321 -0
- package/dist/components/Input/InputMessage.d.ts +1 -1
- package/dist/components/InputBase/index.d.ts +13 -0
- package/dist/components/Pagination/Pagination.d.ts +17 -1
- package/dist/components/Pagination/Pagination.stories.d.ts +3 -1
- package/dist/components/Pagination/SimplePagination.d.ts +2 -0
- package/dist/components/Select/shared.d.ts +1 -0
- package/dist/components/Table/Table.stories.d.ts +9 -0
- package/dist/components/Table/TablePagination.d.ts +5 -0
- package/dist/components/Textarea/Textarea.stories.d.ts +3 -1
- package/dist/components/Textarea/index.d.ts +1 -1
- package/dist/components/Toast/Toast.stories.d.ts +0 -9
- package/dist/esm/index.js +520 -403
- package/dist/esm/index.js.map +1 -1
- package/dist/i18n/interface.d.ts +7 -0
- package/dist/index.d.ts +1 -1
- package/dist/properties.json +270 -93
- package/dist/react-magma-dom.cjs.development.js +508 -211
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -9,13 +9,14 @@ export declare const OnClear: {
|
|
|
9
9
|
args: {
|
|
10
10
|
containerStyle?: React.CSSProperties;
|
|
11
11
|
isInverse?: boolean;
|
|
12
|
-
|
|
12
|
+
maxCount?: number;
|
|
13
13
|
testId?: string;
|
|
14
14
|
textareaStyle?: React.CSSProperties;
|
|
15
15
|
value?: string | number | readonly string[];
|
|
16
16
|
iconPosition?: import("../InputBase").InputIconPosition;
|
|
17
17
|
actionable?: boolean;
|
|
18
18
|
errorMessage?: React.ReactNode;
|
|
19
|
+
hasCharacterCounter?: boolean;
|
|
19
20
|
helperMessage?: React.ReactNode;
|
|
20
21
|
inputLength?: number;
|
|
21
22
|
isLabelVisuallyHidden?: boolean;
|
|
@@ -23,6 +24,7 @@ export declare const OnClear: {
|
|
|
23
24
|
labelStyle?: React.CSSProperties;
|
|
24
25
|
labelText?: React.ReactNode;
|
|
25
26
|
labelWidth?: number;
|
|
27
|
+
maxLength?: number;
|
|
26
28
|
messageStyle?: React.CSSProperties;
|
|
27
29
|
autoComplete?: string;
|
|
28
30
|
autoFocus?: boolean;
|
|
@@ -10,7 +10,7 @@ export interface TextareaProps extends Omit<FormFieldContainerBaseProps, 'inputS
|
|
|
10
10
|
/**
|
|
11
11
|
* A number value which gives Character Counter the maximum length of allowable characters in an Textarea.
|
|
12
12
|
*/
|
|
13
|
-
|
|
13
|
+
maxCount?: number;
|
|
14
14
|
/**
|
|
15
15
|
* @internal
|
|
16
16
|
*/
|
|
@@ -20,12 +20,3 @@ export declare const TwoLine: {
|
|
|
20
20
|
isInverse: boolean;
|
|
21
21
|
};
|
|
22
22
|
};
|
|
23
|
-
export declare const MultiLine: {
|
|
24
|
-
(args: any): JSX.Element;
|
|
25
|
-
args: {
|
|
26
|
-
variant: AlertVariant;
|
|
27
|
-
toastDuration: number;
|
|
28
|
-
disableAutoDismiss: boolean;
|
|
29
|
-
isInverse: boolean;
|
|
30
|
-
};
|
|
31
|
-
};
|