indicator-ui 0.0.151 → 0.0.153
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.
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { DictDeepActionKeyWayType } from "../../../../types";
|
|
2
|
-
export
|
|
3
|
-
[key: string]: any;
|
|
4
|
-
}, value: any, options: {
|
|
2
|
+
export type SetDeepValueOptionsType = {
|
|
5
3
|
keysWay: DictDeepActionKeyWayType;
|
|
6
|
-
}): {
|
|
7
|
-
[key: string]: any;
|
|
8
4
|
};
|
|
5
|
+
export default function setDeepValue<T extends Record<string, any>>(dict: T, value: any, options: SetDeepValueOptionsType): T;
|
|
@@ -20,5 +20,6 @@ declare const FlexField: React.ForwardRefExoticComponent<import("../..").FieldsB
|
|
|
20
20
|
dropdownState?: boolean | string;
|
|
21
21
|
buttonState?: "gray" | "red" | string;
|
|
22
22
|
onButtonClick?: () => void;
|
|
23
|
+
additionStyles?: string | string[];
|
|
23
24
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
24
25
|
export default FlexField;
|