indicator-ui 0.0.182 → 0.0.184
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.
|
@@ -15,7 +15,7 @@ export type CascadeSelectorPropsType = {
|
|
|
15
15
|
* Учтите, что переменные сравниваются без глубокого сравнения, то есть словари, массивы будут сравниваться по значению указателя.
|
|
16
16
|
* */
|
|
17
17
|
value?: any | any[];
|
|
18
|
-
onChange?: (value
|
|
18
|
+
onChange?: (value: any[]) => void;
|
|
19
19
|
options?: CascadeSelectorOptionsType;
|
|
20
20
|
multiple?: boolean;
|
|
21
21
|
defaultAllHidden?: boolean;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SwitcherFieldPropsType } from '../../SwitcherField';
|
|
2
|
+
import { FlexFieldPropsType } from '../../FlexField';
|
|
2
3
|
import { RadioFieldPropsType } from '../../RadioField';
|
|
3
4
|
import { SelectFieldPropsType } from '../../SelectField';
|
|
4
5
|
import { TextareaFieldPropsType } from '../../TextareaField';
|
|
@@ -22,6 +23,6 @@ export type InputFieldPropsType = (({
|
|
|
22
23
|
type: 'datetime-range';
|
|
23
24
|
} & DateTimeRangeFieldPropsType) | ({
|
|
24
25
|
type?: Exclude<HTMLInputElement['type'] | string, InputFieldTypes> | undefined;
|
|
25
|
-
} & Record<string, any>)) & Omit<InputFieldWrapperPropsType, 'children'> & {
|
|
26
|
+
} & FlexFieldPropsType & Record<string, any>)) & Omit<InputFieldWrapperPropsType, 'children'> & {
|
|
26
27
|
offWrapper?: boolean;
|
|
27
28
|
};
|