@gem-sdk/core 1.12.0-next.41 → 1.12.0-next.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -420,9 +420,8 @@ type RangeControlType<T> = SharedControlType<T> & {
|
|
|
420
420
|
readonly?: boolean;
|
|
421
421
|
units?: string[];
|
|
422
422
|
disableOnChange?: boolean;
|
|
423
|
-
ignoreUnit?: boolean;
|
|
424
|
-
hideUnit?: boolean;
|
|
425
423
|
useOnlyUnitInit?: boolean;
|
|
424
|
+
hideUnit?: boolean;
|
|
426
425
|
};
|
|
427
426
|
|
|
428
427
|
type Option$2<T> = {
|
|
@@ -923,7 +922,8 @@ type ControlUI = {
|
|
|
923
922
|
state?: StateType;
|
|
924
923
|
};
|
|
925
924
|
options?: {
|
|
926
|
-
styleControl?:
|
|
925
|
+
styleControl?: React.CSSProperties;
|
|
926
|
+
styleLabel?: React.CSSProperties;
|
|
927
927
|
labelPosition?: 'start' | 'end';
|
|
928
928
|
justifyContent?: 'start' | 'end' | 'between' | 'around';
|
|
929
929
|
label?: 'medium' | 'large';
|