react-magma-dom 4.4.0 → 4.4.1-next.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/Input/Input.stories.d.ts +16 -0
- package/dist/components/InputBase/index.d.ts +4 -0
- package/dist/components/TreeView/useTreeItem.d.ts +2 -0
- package/dist/esm/index.js +20 -16
- package/dist/esm/index.js.map +1 -1
- package/dist/properties.json +107 -100
- package/dist/react-magma-dom.cjs.development.js +20 -16
- 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
|
@@ -35,6 +35,7 @@ export declare const IconPositions: {
|
|
|
35
35
|
iconAriaLabel?: string;
|
|
36
36
|
iconRef?: React.Ref<HTMLButtonElement>;
|
|
37
37
|
inputStyle?: React.CSSProperties;
|
|
38
|
+
inputWrapperStyle?: React.CSSProperties;
|
|
38
39
|
isClearable?: boolean;
|
|
39
40
|
onClear?: () => void;
|
|
40
41
|
isPredictive?: boolean;
|
|
@@ -364,6 +365,7 @@ export declare const WithChildren: {
|
|
|
364
365
|
iconAriaLabel?: string;
|
|
365
366
|
iconRef?: React.Ref<HTMLButtonElement>;
|
|
366
367
|
inputStyle?: React.CSSProperties;
|
|
368
|
+
inputWrapperStyle?: React.CSSProperties;
|
|
367
369
|
isClearable?: boolean;
|
|
368
370
|
onClear?: () => void;
|
|
369
371
|
isPredictive?: boolean;
|
|
@@ -691,6 +693,7 @@ export declare const WithTwoIcons: {
|
|
|
691
693
|
iconAriaLabel?: string;
|
|
692
694
|
iconRef?: React.Ref<HTMLButtonElement>;
|
|
693
695
|
inputStyle?: React.CSSProperties;
|
|
696
|
+
inputWrapperStyle?: React.CSSProperties;
|
|
694
697
|
isClearable?: boolean;
|
|
695
698
|
onClear?: () => void;
|
|
696
699
|
isPredictive?: boolean;
|
|
@@ -991,3 +994,16 @@ export declare const WithTwoIcons: {
|
|
|
991
994
|
};
|
|
992
995
|
};
|
|
993
996
|
};
|
|
997
|
+
export declare const NumberInput: {
|
|
998
|
+
(args: any): JSX.Element;
|
|
999
|
+
args: {
|
|
1000
|
+
disabled: boolean;
|
|
1001
|
+
helperMessage: string;
|
|
1002
|
+
isClearable: boolean;
|
|
1003
|
+
};
|
|
1004
|
+
parameters: {
|
|
1005
|
+
controls: {
|
|
1006
|
+
exclude: string[];
|
|
1007
|
+
};
|
|
1008
|
+
};
|
|
1009
|
+
};
|
|
@@ -64,6 +64,10 @@ export interface InputBaseProps extends React.InputHTMLAttributes<HTMLInputEleme
|
|
|
64
64
|
* Style properties for the input element
|
|
65
65
|
*/
|
|
66
66
|
inputStyle?: React.CSSProperties;
|
|
67
|
+
/**
|
|
68
|
+
* Style properties for input wrapper element
|
|
69
|
+
*/
|
|
70
|
+
inputWrapperStyle?: React.CSSProperties;
|
|
67
71
|
/**
|
|
68
72
|
* Total number of characters in an input.
|
|
69
73
|
*/
|