@salutejs/plasma-new-hope 0.337.1-canary.2272.18221260151.0 → 0.337.1-canary.2274.18270441026.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/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/examples/components/Combobox/Combobox.js +15 -0
- package/emotion/cjs/mixins/applyDisabled.js +47 -0
- package/emotion/cjs/mixins/index.js +1 -0
- 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/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/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/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/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
|
@@ -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 LeftHelper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
301
301
|
//# sourceMappingURL=SingleDate.styles.d.ts.map
|
package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ export declare const SelectPerPageSelect: import("@linaria/react").StyledMeta &
|
|
|
57
57
|
listHeight?: import("react").CSSProperties["height"];
|
|
58
58
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
59
59
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
60
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
60
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../TextField/TextField.types").LabelProps & import("../../../TextField/TextField.types").RequiredProps & {
|
|
61
61
|
hintText: string;
|
|
62
62
|
hintTrigger?: "hover" | "click";
|
|
63
63
|
hintView?: string;
|
|
@@ -116,7 +116,7 @@ export declare const SelectPerPageSelect: import("@linaria/react").StyledMeta &
|
|
|
116
116
|
listHeight?: import("react").CSSProperties["height"];
|
|
117
117
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
118
118
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
119
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
119
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../TextField/TextField.types").LabelProps & import("../../../TextField/TextField.types").RequiredProps & {
|
|
120
120
|
hintTrigger?: never;
|
|
121
121
|
hintText?: never;
|
|
122
122
|
hintView?: never;
|
|
@@ -174,7 +174,7 @@ export declare const SelectPerPageSelect: import("@linaria/react").StyledMeta &
|
|
|
174
174
|
listHeight?: import("react").CSSProperties["height"];
|
|
175
175
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
176
176
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
177
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
177
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../TextField/TextField.types").LabelProps & import("../../../TextField/TextField.types").RequiredProps & {
|
|
178
178
|
hintTrigger?: never;
|
|
179
179
|
hintText?: never;
|
|
180
180
|
hintView?: never;
|
|
@@ -233,7 +233,7 @@ export declare const SelectPerPageSelect: import("@linaria/react").StyledMeta &
|
|
|
233
233
|
listHeight?: import("react").CSSProperties["height"];
|
|
234
234
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
235
235
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
236
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
236
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../TextField/TextField.types").LabelProps & {
|
|
237
237
|
target: "button-like";
|
|
238
238
|
view?: "default" | "accent" | "secondary" | "clear" | "positive" | "warning" | "negative" | "dark" | "black" | "white";
|
|
239
239
|
contentLeft?: never;
|
|
@@ -279,7 +279,7 @@ export declare const SelectPerPageSelect: import("@linaria/react").StyledMeta &
|
|
|
279
279
|
listHeight?: import("react").CSSProperties["height"];
|
|
280
280
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
281
281
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
282
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
282
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../TextField/TextField.types").LabelProps & {
|
|
283
283
|
target: "button-like";
|
|
284
284
|
view?: "default" | "accent" | "secondary" | "clear" | "positive" | "warning" | "negative" | "dark" | "black" | "white";
|
|
285
285
|
contentLeft?: never;
|
|
@@ -326,6 +326,6 @@ export declare const SelectPerPageSelect: import("@linaria/react").StyledMeta &
|
|
|
326
326
|
listHeight?: import("react").CSSProperties["height"];
|
|
327
327
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
|
328
328
|
listOverflow?: import("react").CSSProperties["overflow"];
|
|
329
|
-
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "
|
|
329
|
+
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>))>;
|
|
330
330
|
export declare const SelectPerPageTypography: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
331
331
|
//# sourceMappingURL=PaginationSelectPerPage.styles.d.ts.map
|
|
@@ -3,11 +3,11 @@ import type { InputHTMLAttributes } from '../../types';
|
|
|
3
3
|
import type { Filter, RootProps } from '../../engines/types';
|
|
4
4
|
import { BaseboxProps } from '../Checkbox/Checkbox.types';
|
|
5
5
|
type RadioboxProps = Filter<InputHTMLAttributes<HTMLInputElement>, 'size'> & Omit<BaseboxProps, 'indeterminate' | 'appearance'>;
|
|
6
|
-
export declare const radioboxRoot: (Root: RootProps<HTMLInputElement, RadioboxProps>) => React.ForwardRefExoticComponent<Filter<InputHTMLAttributes<HTMLInputElement>, "size"> & Omit<BaseboxProps, "
|
|
6
|
+
export declare const radioboxRoot: (Root: RootProps<HTMLInputElement, RadioboxProps>) => React.ForwardRefExoticComponent<Filter<InputHTMLAttributes<HTMLInputElement>, "size"> & Omit<BaseboxProps, "indeterminate" | "appearance"> & React.RefAttributes<HTMLInputElement>>;
|
|
7
7
|
export declare const radioboxConfig: {
|
|
8
8
|
name: string;
|
|
9
9
|
tag: string;
|
|
10
|
-
layout: (Root: RootProps<HTMLInputElement, RadioboxProps>) => React.ForwardRefExoticComponent<Filter<InputHTMLAttributes<HTMLInputElement>, "size"> & Omit<BaseboxProps, "
|
|
10
|
+
layout: (Root: RootProps<HTMLInputElement, RadioboxProps>) => React.ForwardRefExoticComponent<Filter<InputHTMLAttributes<HTMLInputElement>, "size"> & Omit<BaseboxProps, "indeterminate" | "appearance"> & React.RefAttributes<HTMLInputElement>>;
|
|
11
11
|
base: import("@linaria/core").LinariaClassName;
|
|
12
12
|
variations: {
|
|
13
13
|
size: {
|
|
@@ -34,7 +34,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
34
34
|
chipType?: never;
|
|
35
35
|
chipView?: never;
|
|
36
36
|
chipValidator?: never;
|
|
37
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
37
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
38
38
|
size?: string;
|
|
39
39
|
view?: string;
|
|
40
40
|
readOnly?: boolean;
|
|
@@ -72,7 +72,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
72
72
|
chipValidator?: (value: string) => {
|
|
73
73
|
view?: string;
|
|
74
74
|
};
|
|
75
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
75
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
76
76
|
size?: string;
|
|
77
77
|
view?: string;
|
|
78
78
|
readOnly?: boolean;
|
|
@@ -108,7 +108,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
108
108
|
chipType?: never;
|
|
109
109
|
chipView?: never;
|
|
110
110
|
chipValidator?: never;
|
|
111
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
111
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
112
112
|
size?: string;
|
|
113
113
|
view?: string;
|
|
114
114
|
readOnly?: boolean;
|
|
@@ -146,7 +146,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
146
146
|
chipValidator?: (value: string) => {
|
|
147
147
|
view?: string;
|
|
148
148
|
};
|
|
149
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
149
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
150
150
|
size?: string;
|
|
151
151
|
view?: string;
|
|
152
152
|
readOnly?: boolean;
|
|
@@ -182,7 +182,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
182
182
|
chipType?: never;
|
|
183
183
|
chipView?: never;
|
|
184
184
|
chipValidator?: never;
|
|
185
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
185
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
186
186
|
size?: string;
|
|
187
187
|
view?: string;
|
|
188
188
|
readOnly?: boolean;
|
|
@@ -220,7 +220,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
220
220
|
chipValidator?: (value: string) => {
|
|
221
221
|
view?: string;
|
|
222
222
|
};
|
|
223
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
223
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
224
224
|
size?: string;
|
|
225
225
|
view?: string;
|
|
226
226
|
readOnly?: boolean;
|
|
@@ -256,7 +256,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
256
256
|
chipType?: never;
|
|
257
257
|
chipView?: never;
|
|
258
258
|
chipValidator?: never;
|
|
259
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
259
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>) | ({
|
|
260
260
|
size?: string;
|
|
261
261
|
view?: string;
|
|
262
262
|
readOnly?: boolean;
|
|
@@ -294,7 +294,7 @@ export declare const StyledInput: import("@linaria/react").StyledMeta & import("
|
|
|
294
294
|
chipValidator?: (value: string) => {
|
|
295
295
|
view?: string;
|
|
296
296
|
};
|
|
297
|
-
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "
|
|
297
|
+
} & Omit<import("../..").InputHTMLAttributes<HTMLInputElement>, "required" | "size"> & import("react").RefAttributes<HTMLInputElement>))>;
|
|
298
298
|
export declare const base: import("@linaria/core").LinariaClassName;
|
|
299
299
|
export declare const StyledLabel: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLLabelElement> & import("react").LabelHTMLAttributes<HTMLLabelElement> & Record<never, unknown>>;
|
|
300
300
|
export declare const StyledIndicatorWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
|
@@ -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
|