@salutejs/plasma-new-hope 0.337.1-canary.2272.18221260151.0 → 0.337.1-canary.2276.18273012590.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/cjs/_virtual/_rollupPluginBabelHelpers.js +8 -0
- package/cjs/_virtual/_rollupPluginBabelHelpers.js.map +1 -1
- package/cjs/components/Modal/Modal.css +2 -2
- package/cjs/components/Modal/Modal.js +5 -4
- package/cjs/components/Modal/Modal.js.map +1 -1
- package/cjs/index.js +2 -0
- package/cjs/index.js.map +1 -1
- package/cjs/mixins/applyDisabled.js +22 -0
- package/cjs/mixins/applyDisabled.js.map +1 -0
- package/emotion/cjs/components/Modal/Modal.js +7 -6
- package/emotion/cjs/mixins/applyDisabled.js +47 -0
- package/emotion/cjs/mixins/index.js +1 -0
- package/emotion/es/components/Modal/Modal.js +6 -5
- package/emotion/es/mixins/applyDisabled.js +39 -0
- package/emotion/es/mixins/index.js +1 -0
- package/es/_virtual/_rollupPluginBabelHelpers.js +8 -1
- package/es/_virtual/_rollupPluginBabelHelpers.js.map +1 -1
- package/es/components/Modal/Modal.css +2 -2
- package/es/components/Modal/Modal.js +5 -4
- package/es/components/Modal/Modal.js.map +1 -1
- package/es/index.js +1 -0
- package/es/index.js.map +1 -1
- package/es/mixins/applyDisabled.js +18 -0
- package/es/mixins/applyDisabled.js.map +1 -0
- package/package.json +2 -2
- package/styled-components/cjs/components/Modal/Modal.js +7 -6
- package/styled-components/cjs/examples/components/Combobox/Combobox.js +15 -0
- package/styled-components/cjs/mixins/applyDisabled.js +23 -0
- package/styled-components/cjs/mixins/index.js +1 -0
- package/styled-components/es/components/Modal/Modal.js +6 -5
- package/styled-components/es/examples/components/Combobox/Combobox.js +0 -7
- package/styled-components/es/mixins/applyDisabled.js +15 -0
- package/styled-components/es/mixins/index.js +1 -0
- package/types/components/Accordion/ui/AccordionItem/AccordionItem.d.ts +1 -1
- package/types/components/Autocomplete/ui/TextField/TextField.styles.d.ts +8 -8
- package/types/components/Combobox/ComboboxNew/ui/SelectNative/SelectNative.d.ts +1 -1
- package/types/components/Combobox/ComboboxNew/ui/Target/Target.styles.d.ts +8 -8
- package/types/components/DatePicker/RangeDate/RangeDate.d.ts +6 -6
- package/types/components/DatePicker/SingleDate/SingleDate.styles.d.ts +8 -8
- package/types/components/Modal/Modal.d.ts.map +1 -1
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.d.ts +6 -6
- package/types/components/Radiobox/Radiobox.d.ts +2 -2
- package/types/components/Range/Range.styles.d.ts +8 -8
- package/types/components/Select/ui/Target/Target.d.ts +1 -1
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.styles.d.ts +8 -8
- package/types/components/Select/utils/getView.d.ts +1 -1
- package/types/components/Slider/components/Double/Double.styles.d.ts +8 -8
- package/types/components/Table/ui/HeadCell/ui/Filter/Filter.styles.d.ts +6 -6
- package/types/components/TimePicker/TimePicker.styles.d.ts +8 -8
- package/types/examples/components/Autocomplete/Autocomplete.d.ts +8 -8
- package/types/examples/components/Combobox/Legacy/Combobox.d.ts +2 -2
- package/types/examples/components/DatePicker/DatePicker.d.ts +3 -3
- package/types/examples/components/Mask/Mask.d.ts +8 -8
- package/types/examples/components/NumberFormat/NumberFormat.d.ts +8 -8
- package/types/examples/components/NumberInput/NumberInput.d.ts +2 -2
- package/types/examples/components/Radiobox/Radiobox.d.ts +2 -2
- package/types/examples/components/Select/Select.d.ts +6 -6
- package/types/examples/components/TextArea/TextArea.d.ts +8 -8
- package/types/examples/components/TextField/TextField.d.ts +8 -8
- package/types/examples/components/Tokens/Colors/Colors.styles.d.ts +1 -1
- package/types/examples/components/Tokens/Typography/Typography.styles.d.ts +1 -1
- package/types/mixins/applyDisabled.d.ts +14 -0
- package/types/mixins/applyDisabled.d.ts.map +1 -0
- package/types/mixins/index.d.ts +1 -0
- package/types/mixins/index.d.ts.map +1 -1
- package/types/types/InputHTMLAttributes.d.ts +3 -9
- package/types/types/InputHTMLAttributes.d.ts.map +1 -1
- package/types/types/TextareaHTMLAttributes.d.ts +3 -9
- package/types/types/TextareaHTMLAttributes.d.ts.map +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { MutableRefObject } from 'react';
|
|
3
|
-
export declare const Target: React.ForwardRefExoticComponent<Pick<import("../..").MergedSelectProps, "
|
|
3
|
+
export declare const Target: React.ForwardRefExoticComponent<Pick<import("../..").MergedSelectProps, "label" | "view" | "placeholder" | "disabled" | "readOnly" | "size" | "contentLeft" | "labelPlacement" | "helperText" | "chipView" | "chipType" | "keepPlaceholder" | "multiselect" | "renderValue" | "isTargetAmount"> & {
|
|
4
4
|
value: import("../../Select.types").DefaultValueType;
|
|
5
5
|
opened: boolean;
|
|
6
6
|
valueToItemMap: import("../../hooks/usePathMaps").ValueToItemMapType;
|
|
@@ -37,7 +37,7 @@ export declare const StyledTextField: import("@linaria/react").StyledComponent<{
|
|
|
37
37
|
chipType?: never;
|
|
38
38
|
chipView?: never;
|
|
39
39
|
chipValidator?: never;
|
|
40
|
-
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
40
|
+
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
41
41
|
size?: string;
|
|
42
42
|
view?: string;
|
|
43
43
|
readOnly?: boolean;
|
|
@@ -75,7 +75,7 @@ export declare const StyledTextField: import("@linaria/react").StyledComponent<{
|
|
|
75
75
|
chipValidator?: (value: string) => {
|
|
76
76
|
view?: string;
|
|
77
77
|
};
|
|
78
|
-
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
78
|
+
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
79
79
|
size?: string;
|
|
80
80
|
view?: string;
|
|
81
81
|
readOnly?: boolean;
|
|
@@ -111,7 +111,7 @@ export declare const StyledTextField: import("@linaria/react").StyledComponent<{
|
|
|
111
111
|
chipType?: never;
|
|
112
112
|
chipView?: never;
|
|
113
113
|
chipValidator?: never;
|
|
114
|
-
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
114
|
+
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
115
115
|
size?: string;
|
|
116
116
|
view?: string;
|
|
117
117
|
readOnly?: boolean;
|
|
@@ -149,7 +149,7 @@ export declare const StyledTextField: import("@linaria/react").StyledComponent<{
|
|
|
149
149
|
chipValidator?: (value: string) => {
|
|
150
150
|
view?: string;
|
|
151
151
|
};
|
|
152
|
-
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
152
|
+
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
153
153
|
size?: string;
|
|
154
154
|
view?: string;
|
|
155
155
|
readOnly?: boolean;
|
|
@@ -185,7 +185,7 @@ export declare const StyledTextField: import("@linaria/react").StyledComponent<{
|
|
|
185
185
|
chipType?: never;
|
|
186
186
|
chipView?: never;
|
|
187
187
|
chipValidator?: never;
|
|
188
|
-
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
188
|
+
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
189
189
|
size?: string;
|
|
190
190
|
view?: string;
|
|
191
191
|
readOnly?: boolean;
|
|
@@ -223,7 +223,7 @@ export declare const StyledTextField: import("@linaria/react").StyledComponent<{
|
|
|
223
223
|
chipValidator?: (value: string) => {
|
|
224
224
|
view?: string;
|
|
225
225
|
};
|
|
226
|
-
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
226
|
+
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
227
227
|
size?: string;
|
|
228
228
|
view?: string;
|
|
229
229
|
readOnly?: boolean;
|
|
@@ -259,7 +259,7 @@ export declare const StyledTextField: import("@linaria/react").StyledComponent<{
|
|
|
259
259
|
chipType?: never;
|
|
260
260
|
chipView?: never;
|
|
261
261
|
chipValidator?: never;
|
|
262
|
-
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
262
|
+
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
263
263
|
size?: string;
|
|
264
264
|
view?: string;
|
|
265
265
|
readOnly?: boolean;
|
|
@@ -297,7 +297,7 @@ export declare const StyledTextField: import("@linaria/react").StyledComponent<{
|
|
|
297
297
|
chipValidator?: (value: string) => {
|
|
298
298
|
view?: string;
|
|
299
299
|
};
|
|
300
|
-
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
300
|
+
} & Omit<import("../../../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>)))>;
|
|
301
301
|
export declare const IconArrowWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
302
302
|
disabled?: boolean;
|
|
303
303
|
readOnly?: boolean;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { MergedSelectProps } from '../Select.types';
|
|
2
|
-
export declare const getView: (status: MergedSelectProps["status"], view: MergedSelectProps["view"]) => "
|
|
2
|
+
export declare const getView: (status: MergedSelectProps["status"], view: MergedSelectProps["view"]) => "default" | "black" | "white" | "dark" | "clear" | "accent" | "secondary" | "warning" | "positive" | "negative" | undefined;
|
|
3
3
|
//# sourceMappingURL=getView.d.ts.map
|
|
@@ -38,7 +38,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
38
38
|
chipType?: never;
|
|
39
39
|
chipView?: never;
|
|
40
40
|
chipValidator?: never;
|
|
41
|
-
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
41
|
+
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
42
42
|
size?: string;
|
|
43
43
|
view?: string;
|
|
44
44
|
readOnly?: boolean;
|
|
@@ -76,7 +76,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
76
76
|
chipValidator?: (value: string) => {
|
|
77
77
|
view?: string;
|
|
78
78
|
};
|
|
79
|
-
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
79
|
+
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
80
80
|
size?: string;
|
|
81
81
|
view?: string;
|
|
82
82
|
readOnly?: boolean;
|
|
@@ -112,7 +112,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
112
112
|
chipType?: never;
|
|
113
113
|
chipView?: never;
|
|
114
114
|
chipValidator?: never;
|
|
115
|
-
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
115
|
+
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
116
116
|
size?: string;
|
|
117
117
|
view?: string;
|
|
118
118
|
readOnly?: boolean;
|
|
@@ -150,7 +150,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
150
150
|
chipValidator?: (value: string) => {
|
|
151
151
|
view?: string;
|
|
152
152
|
};
|
|
153
|
-
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
153
|
+
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
154
154
|
size?: string;
|
|
155
155
|
view?: string;
|
|
156
156
|
readOnly?: boolean;
|
|
@@ -186,7 +186,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
186
186
|
chipType?: never;
|
|
187
187
|
chipView?: never;
|
|
188
188
|
chipValidator?: never;
|
|
189
|
-
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
189
|
+
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
190
190
|
size?: string;
|
|
191
191
|
view?: string;
|
|
192
192
|
readOnly?: boolean;
|
|
@@ -224,7 +224,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
224
224
|
chipValidator?: (value: string) => {
|
|
225
225
|
view?: string;
|
|
226
226
|
};
|
|
227
|
-
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
227
|
+
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
228
228
|
size?: string;
|
|
229
229
|
view?: string;
|
|
230
230
|
readOnly?: boolean;
|
|
@@ -260,7 +260,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
260
260
|
chipType?: never;
|
|
261
261
|
chipView?: never;
|
|
262
262
|
chipValidator?: never;
|
|
263
|
-
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
263
|
+
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
264
264
|
size?: string;
|
|
265
265
|
view?: string;
|
|
266
266
|
readOnly?: boolean;
|
|
@@ -298,7 +298,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
298
298
|
chipValidator?: (value: string) => {
|
|
299
299
|
view?: string;
|
|
300
300
|
};
|
|
301
|
-
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
301
|
+
} & Omit<import("../../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>))>;
|
|
302
302
|
export declare const DoubleWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
303
303
|
export declare const SliderWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
304
304
|
//# sourceMappingURL=Double.styles.d.ts.map
|
|
@@ -56,7 +56,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
|
56
56
|
listHeight?: import("react").CSSProperties["height"];
|
|
57
57
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
58
58
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
59
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
59
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../../../TextField/TextField.types").LabelProps & import("../../../../../TextField/TextField.types").RequiredProps & {
|
|
60
60
|
hintText: string;
|
|
61
61
|
hintTrigger?: "hover" | "click";
|
|
62
62
|
hintView?: string;
|
|
@@ -115,7 +115,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
|
115
115
|
listHeight?: import("react").CSSProperties["height"];
|
|
116
116
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
117
117
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
118
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
118
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../../../TextField/TextField.types").LabelProps & import("../../../../../TextField/TextField.types").RequiredProps & {
|
|
119
119
|
hintTrigger?: never;
|
|
120
120
|
hintText?: never;
|
|
121
121
|
hintView?: never;
|
|
@@ -173,7 +173,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
|
173
173
|
listHeight?: import("react").CSSProperties["height"];
|
|
174
174
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
175
175
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
176
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
176
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../../../TextField/TextField.types").LabelProps & import("../../../../../TextField/TextField.types").RequiredProps & {
|
|
177
177
|
hintTrigger?: never;
|
|
178
178
|
hintText?: never;
|
|
179
179
|
hintView?: never;
|
|
@@ -232,7 +232,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
|
232
232
|
listHeight?: import("react").CSSProperties["height"];
|
|
233
233
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
234
234
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
235
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
235
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../../../TextField/TextField.types").LabelProps & {
|
|
236
236
|
target: "button-like";
|
|
237
237
|
view?: "default" | "accent" | "secondary" | "clear" | "positive" | "warning" | "negative" | "dark" | "black" | "white";
|
|
238
238
|
contentLeft?: never;
|
|
@@ -278,7 +278,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
|
278
278
|
listHeight?: import("react").CSSProperties["height"];
|
|
279
279
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
280
280
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
281
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
281
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../../../TextField/TextField.types").LabelProps & {
|
|
282
282
|
target: "button-like";
|
|
283
283
|
view?: "default" | "accent" | "secondary" | "clear" | "positive" | "warning" | "negative" | "dark" | "black" | "white";
|
|
284
284
|
contentLeft?: never;
|
|
@@ -325,7 +325,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
|
325
325
|
listHeight?: import("react").CSSProperties["height"];
|
|
326
326
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
327
327
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
328
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
328
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>)>;
|
|
329
329
|
export declare const IconFilterWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
330
330
|
export declare const StyledIndicator: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("../../../../../../engines/types").PropsType<import("../../../../../../engines/types").Variants> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
331
331
|
size: string;
|
|
@@ -35,7 +35,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
35
35
|
chipType?: never;
|
|
36
36
|
chipView?: never;
|
|
37
37
|
chipValidator?: never;
|
|
38
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
38
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
39
39
|
size?: string;
|
|
40
40
|
view?: string;
|
|
41
41
|
readOnly?: boolean;
|
|
@@ -73,7 +73,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
73
73
|
chipValidator?: (value: string) => {
|
|
74
74
|
view?: string;
|
|
75
75
|
};
|
|
76
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
76
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
77
77
|
size?: string;
|
|
78
78
|
view?: string;
|
|
79
79
|
readOnly?: boolean;
|
|
@@ -109,7 +109,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
109
109
|
chipType?: never;
|
|
110
110
|
chipView?: never;
|
|
111
111
|
chipValidator?: never;
|
|
112
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
112
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
113
113
|
size?: string;
|
|
114
114
|
view?: string;
|
|
115
115
|
readOnly?: boolean;
|
|
@@ -147,7 +147,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
147
147
|
chipValidator?: (value: string) => {
|
|
148
148
|
view?: string;
|
|
149
149
|
};
|
|
150
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
150
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
151
151
|
size?: string;
|
|
152
152
|
view?: string;
|
|
153
153
|
readOnly?: boolean;
|
|
@@ -183,7 +183,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
183
183
|
chipType?: never;
|
|
184
184
|
chipView?: never;
|
|
185
185
|
chipValidator?: never;
|
|
186
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
186
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
187
187
|
size?: string;
|
|
188
188
|
view?: string;
|
|
189
189
|
readOnly?: boolean;
|
|
@@ -221,7 +221,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
221
221
|
chipValidator?: (value: string) => {
|
|
222
222
|
view?: string;
|
|
223
223
|
};
|
|
224
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
224
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
225
225
|
size?: string;
|
|
226
226
|
view?: string;
|
|
227
227
|
readOnly?: boolean;
|
|
@@ -257,7 +257,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
257
257
|
chipType?: never;
|
|
258
258
|
chipView?: never;
|
|
259
259
|
chipValidator?: never;
|
|
260
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
260
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
261
261
|
size?: string;
|
|
262
262
|
view?: string;
|
|
263
263
|
readOnly?: boolean;
|
|
@@ -295,7 +295,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
295
295
|
chipValidator?: (value: string) => {
|
|
296
296
|
view?: string;
|
|
297
297
|
};
|
|
298
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
298
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>))>;
|
|
299
299
|
export declare const base: import("@linaria/core").LinariaClassName;
|
|
300
300
|
export declare const StyledTimePicker: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
301
301
|
width?: string | number;
|
|
@@ -83,7 +83,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("../
|
|
|
83
83
|
chipType?: never;
|
|
84
84
|
chipView?: never;
|
|
85
85
|
chipValidator?: never;
|
|
86
|
-
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
|
86
|
+
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "value" | "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
87
87
|
labelPlacement?: string;
|
|
88
88
|
readOnly?: boolean;
|
|
89
89
|
disabled?: boolean;
|
|
@@ -140,7 +140,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("../
|
|
|
140
140
|
chipValidator?: (value: string) => {
|
|
141
141
|
view?: string;
|
|
142
142
|
};
|
|
143
|
-
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
|
143
|
+
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "value" | "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
144
144
|
labelPlacement?: string;
|
|
145
145
|
readOnly?: boolean;
|
|
146
146
|
disabled?: boolean;
|
|
@@ -195,7 +195,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("../
|
|
|
195
195
|
chipType?: never;
|
|
196
196
|
chipView?: never;
|
|
197
197
|
chipValidator?: never;
|
|
198
|
-
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
|
198
|
+
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "value" | "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
199
199
|
labelPlacement?: string;
|
|
200
200
|
readOnly?: boolean;
|
|
201
201
|
disabled?: boolean;
|
|
@@ -252,7 +252,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("../
|
|
|
252
252
|
chipValidator?: (value: string) => {
|
|
253
253
|
view?: string;
|
|
254
254
|
};
|
|
255
|
-
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
|
255
|
+
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "value" | "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
256
256
|
labelPlacement?: string;
|
|
257
257
|
readOnly?: boolean;
|
|
258
258
|
disabled?: boolean;
|
|
@@ -307,7 +307,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("../
|
|
|
307
307
|
chipType?: never;
|
|
308
308
|
chipView?: never;
|
|
309
309
|
chipValidator?: never;
|
|
310
|
-
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
|
310
|
+
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "value" | "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
311
311
|
labelPlacement?: string;
|
|
312
312
|
readOnly?: boolean;
|
|
313
313
|
disabled?: boolean;
|
|
@@ -364,7 +364,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("../
|
|
|
364
364
|
chipValidator?: (value: string) => {
|
|
365
365
|
view?: string;
|
|
366
366
|
};
|
|
367
|
-
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
|
367
|
+
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "value" | "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
368
368
|
labelPlacement?: string;
|
|
369
369
|
readOnly?: boolean;
|
|
370
370
|
disabled?: boolean;
|
|
@@ -419,7 +419,7 @@ export declare const Autocomplete: import("react").FunctionComponent<import("../
|
|
|
419
419
|
chipType?: never;
|
|
420
420
|
chipView?: never;
|
|
421
421
|
chipValidator?: never;
|
|
422
|
-
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
|
422
|
+
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "value" | "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
423
423
|
labelPlacement?: string;
|
|
424
424
|
readOnly?: boolean;
|
|
425
425
|
disabled?: boolean;
|
|
@@ -476,5 +476,5 @@ export declare const Autocomplete: import("react").FunctionComponent<import("../
|
|
|
476
476
|
chipValidator?: (value: string) => {
|
|
477
477
|
view?: string;
|
|
478
478
|
};
|
|
479
|
-
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
|
479
|
+
}, "labelPlacement" | "chipView" | "chipType" | "chips" | "enumerationType" | "chipValidator" | "onChangeChips"> & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "value" | "required" | "size"> & import("react").RefAttributes<HTMLInputElement>))>;
|
|
480
480
|
//# sourceMappingURL=Autocomplete.d.ts.map
|
|
@@ -8,11 +8,11 @@ export declare const Combobox: import("react").FunctionComponent<import("../../.
|
|
|
8
8
|
view: {
|
|
9
9
|
default: import("@linaria/core").LinariaClassName;
|
|
10
10
|
};
|
|
11
|
-
}> & ((Omit<import("@salutejs/plasma-core").InputHTMLAttributes<HTMLInputElement>, "
|
|
11
|
+
}> & ((Omit<import("@salutejs/plasma-core").InputHTMLAttributes<HTMLInputElement>, "target" | "type" | "onChange" | "value" | "checked" | "maxLength" | "minLength" | "size"> & import("../../../../components/Combobox/ComboboxOld/Combobox.types").CustomComboboxProps & {
|
|
12
12
|
valueType?: "single";
|
|
13
13
|
value?: import("../../../../components/Combobox/ComboboxOld/Combobox.types").ComboboxPrimitiveValue;
|
|
14
14
|
onChangeValue?: (value?: import("../../../../components/Combobox/ComboboxOld/Combobox.types").ComboboxPrimitiveValue) => void;
|
|
15
|
-
} & import("react").RefAttributes<HTMLInputElement>) | (Omit<import("@salutejs/plasma-core").InputHTMLAttributes<HTMLInputElement>, "
|
|
15
|
+
} & import("react").RefAttributes<HTMLInputElement>) | (Omit<import("@salutejs/plasma-core").InputHTMLAttributes<HTMLInputElement>, "target" | "type" | "onChange" | "value" | "checked" | "maxLength" | "minLength" | "size"> & import("../../../../components/Combobox/ComboboxOld/Combobox.types").CustomComboboxProps & {
|
|
16
16
|
valueType: "multiple";
|
|
17
17
|
value?: Array<import("../../../../components/Combobox/ComboboxOld/Combobox.types").ComboboxPrimitiveValue>;
|
|
18
18
|
onChangeValue?: (value?: Array<import("../../../../components/Combobox/ComboboxOld/Combobox.types").ComboboxPrimitiveValue>) => void;
|
|
@@ -78,13 +78,13 @@ export declare const DatePickerRange: import("react").FunctionComponent<import("
|
|
|
78
78
|
};
|
|
79
79
|
}) => void;
|
|
80
80
|
} & {
|
|
81
|
-
size?: string | undefined;
|
|
82
|
-
disabled?: boolean | undefined;
|
|
83
81
|
label?: string | undefined;
|
|
84
82
|
view?: string | undefined;
|
|
83
|
+
disabled?: boolean | undefined;
|
|
84
|
+
autoComplete?: string | undefined;
|
|
85
85
|
readOnly?: boolean | undefined;
|
|
86
86
|
required?: boolean | undefined;
|
|
87
|
-
|
|
87
|
+
size?: string | undefined;
|
|
88
88
|
contentLeft?: import("react").ReactNode;
|
|
89
89
|
contentRight?: import("react").ReactNode;
|
|
90
90
|
leftHelper?: string | undefined;
|
|
@@ -76,7 +76,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
|
76
76
|
chipType?: never;
|
|
77
77
|
chipView?: never;
|
|
78
78
|
chipValidator?: never;
|
|
79
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
79
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & import("../../../components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("../../../engines/types").PropsType<{
|
|
80
80
|
view: {
|
|
81
81
|
default: import("@linaria/core").LinariaClassName;
|
|
82
82
|
positive: import("@linaria/core").LinariaClassName;
|
|
@@ -156,7 +156,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
|
156
156
|
chipValidator?: (value: string) => {
|
|
157
157
|
view?: string;
|
|
158
158
|
};
|
|
159
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
159
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & import("../../../components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("../../../engines/types").PropsType<{
|
|
160
160
|
view: {
|
|
161
161
|
default: import("@linaria/core").LinariaClassName;
|
|
162
162
|
positive: import("@linaria/core").LinariaClassName;
|
|
@@ -234,7 +234,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
|
234
234
|
chipType?: never;
|
|
235
235
|
chipView?: never;
|
|
236
236
|
chipValidator?: never;
|
|
237
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
237
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & import("../../../components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("../../../engines/types").PropsType<{
|
|
238
238
|
view: {
|
|
239
239
|
default: import("@linaria/core").LinariaClassName;
|
|
240
240
|
positive: import("@linaria/core").LinariaClassName;
|
|
@@ -314,7 +314,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
|
314
314
|
chipValidator?: (value: string) => {
|
|
315
315
|
view?: string;
|
|
316
316
|
};
|
|
317
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
317
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & import("../../../components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("../../../engines/types").PropsType<{
|
|
318
318
|
view: {
|
|
319
319
|
default: import("@linaria/core").LinariaClassName;
|
|
320
320
|
positive: import("@linaria/core").LinariaClassName;
|
|
@@ -392,7 +392,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
|
392
392
|
chipType?: never;
|
|
393
393
|
chipView?: never;
|
|
394
394
|
chipValidator?: never;
|
|
395
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
395
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & import("../../../components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("../../../engines/types").PropsType<{
|
|
396
396
|
view: {
|
|
397
397
|
default: import("@linaria/core").LinariaClassName;
|
|
398
398
|
positive: import("@linaria/core").LinariaClassName;
|
|
@@ -472,7 +472,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
|
472
472
|
chipValidator?: (value: string) => {
|
|
473
473
|
view?: string;
|
|
474
474
|
};
|
|
475
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
475
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & import("../../../components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("../../../engines/types").PropsType<{
|
|
476
476
|
view: {
|
|
477
477
|
default: import("@linaria/core").LinariaClassName;
|
|
478
478
|
positive: import("@linaria/core").LinariaClassName;
|
|
@@ -550,7 +550,7 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
|
550
550
|
chipType?: never;
|
|
551
551
|
chipView?: never;
|
|
552
552
|
chipValidator?: never;
|
|
553
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
553
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & import("../../../components/Mask/Mask.types").MaskProps, "ref"> | Omit<import("../../../engines/types").PropsType<{
|
|
554
554
|
view: {
|
|
555
555
|
default: import("@linaria/core").LinariaClassName;
|
|
556
556
|
positive: import("@linaria/core").LinariaClassName;
|
|
@@ -630,5 +630,5 @@ export declare const Mask: import("react").ForwardRefExoticComponent<(Omit<impor
|
|
|
630
630
|
chipValidator?: (value: string) => {
|
|
631
631
|
view?: string;
|
|
632
632
|
};
|
|
633
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
633
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & import("../../../components/Mask/Mask.types").MaskProps, "ref">) & import("react").RefAttributes<HTMLInputElement>>;
|
|
634
634
|
//# sourceMappingURL=Mask.d.ts.map
|
|
@@ -76,7 +76,7 @@ export declare const NumberFormat: import("react").ForwardRefExoticComponent<(Om
|
|
|
76
76
|
chipType?: never;
|
|
77
77
|
chipView?: never;
|
|
78
78
|
chipValidator?: never;
|
|
79
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
79
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & {
|
|
80
80
|
thousandSeparator?: boolean | string;
|
|
81
81
|
decimalSeparator?: string;
|
|
82
82
|
thousandsGroupStyle?: "thousand" | "lakh" | "wan" | "none";
|
|
@@ -166,7 +166,7 @@ export declare const NumberFormat: import("react").ForwardRefExoticComponent<(Om
|
|
|
166
166
|
chipValidator?: (value: string) => {
|
|
167
167
|
view?: string;
|
|
168
168
|
};
|
|
169
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
169
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & {
|
|
170
170
|
thousandSeparator?: boolean | string;
|
|
171
171
|
decimalSeparator?: string;
|
|
172
172
|
thousandsGroupStyle?: "thousand" | "lakh" | "wan" | "none";
|
|
@@ -254,7 +254,7 @@ export declare const NumberFormat: import("react").ForwardRefExoticComponent<(Om
|
|
|
254
254
|
chipType?: never;
|
|
255
255
|
chipView?: never;
|
|
256
256
|
chipValidator?: never;
|
|
257
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
257
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & {
|
|
258
258
|
thousandSeparator?: boolean | string;
|
|
259
259
|
decimalSeparator?: string;
|
|
260
260
|
thousandsGroupStyle?: "thousand" | "lakh" | "wan" | "none";
|
|
@@ -344,7 +344,7 @@ export declare const NumberFormat: import("react").ForwardRefExoticComponent<(Om
|
|
|
344
344
|
chipValidator?: (value: string) => {
|
|
345
345
|
view?: string;
|
|
346
346
|
};
|
|
347
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
347
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & {
|
|
348
348
|
thousandSeparator?: boolean | string;
|
|
349
349
|
decimalSeparator?: string;
|
|
350
350
|
thousandsGroupStyle?: "thousand" | "lakh" | "wan" | "none";
|
|
@@ -432,7 +432,7 @@ export declare const NumberFormat: import("react").ForwardRefExoticComponent<(Om
|
|
|
432
432
|
chipType?: never;
|
|
433
433
|
chipView?: never;
|
|
434
434
|
chipValidator?: never;
|
|
435
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
435
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & {
|
|
436
436
|
thousandSeparator?: boolean | string;
|
|
437
437
|
decimalSeparator?: string;
|
|
438
438
|
thousandsGroupStyle?: "thousand" | "lakh" | "wan" | "none";
|
|
@@ -522,7 +522,7 @@ export declare const NumberFormat: import("react").ForwardRefExoticComponent<(Om
|
|
|
522
522
|
chipValidator?: (value: string) => {
|
|
523
523
|
view?: string;
|
|
524
524
|
};
|
|
525
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
525
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & {
|
|
526
526
|
thousandSeparator?: boolean | string;
|
|
527
527
|
decimalSeparator?: string;
|
|
528
528
|
thousandsGroupStyle?: "thousand" | "lakh" | "wan" | "none";
|
|
@@ -610,7 +610,7 @@ export declare const NumberFormat: import("react").ForwardRefExoticComponent<(Om
|
|
|
610
610
|
chipType?: never;
|
|
611
611
|
chipView?: never;
|
|
612
612
|
chipValidator?: never;
|
|
613
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
613
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & {
|
|
614
614
|
thousandSeparator?: boolean | string;
|
|
615
615
|
decimalSeparator?: string;
|
|
616
616
|
thousandsGroupStyle?: "thousand" | "lakh" | "wan" | "none";
|
|
@@ -700,7 +700,7 @@ export declare const NumberFormat: import("react").ForwardRefExoticComponent<(Om
|
|
|
700
700
|
chipValidator?: (value: string) => {
|
|
701
701
|
view?: string;
|
|
702
702
|
};
|
|
703
|
-
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
703
|
+
} & Omit<import("../../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement> & {
|
|
704
704
|
thousandSeparator?: boolean | string;
|
|
705
705
|
decimalSeparator?: string;
|
|
706
706
|
thousandsGroupStyle?: "thousand" | "lakh" | "wan" | "none";
|
|
@@ -53,7 +53,7 @@ export declare const NumberInput: import("react").FunctionComponent<import("../.
|
|
|
53
53
|
} & {
|
|
54
54
|
segmentation?: "clear";
|
|
55
55
|
inputBackgroundType?: never;
|
|
56
|
-
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
|
56
|
+
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
57
57
|
value?: string | number;
|
|
58
58
|
min?: number;
|
|
59
59
|
max?: number;
|
|
@@ -79,5 +79,5 @@ export declare const NumberInput: import("react").FunctionComponent<import("../.
|
|
|
79
79
|
} & {
|
|
80
80
|
segmentation?: string;
|
|
81
81
|
inputBackgroundType?: string;
|
|
82
|
-
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "
|
|
82
|
+
} & Omit<import("react").InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "size"> & import("react").RefAttributes<HTMLInputElement>))>;
|
|
83
83
|
//# sourceMappingURL=NumberInput.d.ts.map
|
|
@@ -21,7 +21,7 @@ export declare const RadioboxDefault: import("react").FunctionComponent<import("
|
|
|
21
21
|
focused: {
|
|
22
22
|
true: import("@linaria/core").LinariaClassName;
|
|
23
23
|
};
|
|
24
|
-
}> & import("../../../engines/types").Filter<import("../../..").InputHTMLAttributes<HTMLInputElement>, "size"> & Omit<import("../../..").BaseboxProps, "
|
|
24
|
+
}> & import("../../../engines/types").Filter<import("../../..").InputHTMLAttributes<HTMLInputElement>, "size"> & Omit<import("../../..").BaseboxProps, "indeterminate" | "appearance"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
25
25
|
export declare const RadioboxOutline: import("react").FunctionComponent<import("../../../engines/types").PropsType<{
|
|
26
26
|
size: {
|
|
27
27
|
s: import("@linaria/core").LinariaClassName;
|
|
@@ -44,7 +44,7 @@ export declare const RadioboxOutline: import("react").FunctionComponent<import("
|
|
|
44
44
|
focused: {
|
|
45
45
|
true: import("@linaria/core").LinariaClassName;
|
|
46
46
|
};
|
|
47
|
-
}> & import("../../../engines/types").Filter<import("../../..").InputHTMLAttributes<HTMLInputElement>, "size"> & Omit<import("../../..").BaseboxProps, "
|
|
47
|
+
}> & import("../../../engines/types").Filter<import("../../..").InputHTMLAttributes<HTMLInputElement>, "size"> & Omit<import("../../..").BaseboxProps, "indeterminate" | "appearance"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
48
48
|
type CheckboxProps = (ComponentProps<typeof RadioboxDefault> & {
|
|
49
49
|
appearance: 'outline';
|
|
50
50
|
}) | (ComponentProps<typeof RadioboxOutline> & {
|