@gem-sdk/core 2.0.0-dev.282 → 2.0.0-dev.292
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 +2 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -7434,7 +7434,7 @@ type BaseProps<Setting = unknown, Style = unknown, Advanced = AdvancedType> = {
|
|
|
7434
7434
|
uidTranslate?: string;
|
|
7435
7435
|
uidInteraction?: string;
|
|
7436
7436
|
};
|
|
7437
|
-
customAttrs?:
|
|
7437
|
+
customAttrs?: Record<string, string | undefined>;
|
|
7438
7438
|
styles?: Style;
|
|
7439
7439
|
setting?: Setting;
|
|
7440
7440
|
advanced?: Advanced;
|
|
@@ -7822,6 +7822,7 @@ type InputUnitControlType<T> = SharedControlType<T> & {
|
|
|
7822
7822
|
readonly?: boolean;
|
|
7823
7823
|
useOnlyUnitInit?: boolean;
|
|
7824
7824
|
showDefaultUnit?: boolean;
|
|
7825
|
+
disableDecimal?: boolean;
|
|
7825
7826
|
isNumber?: boolean;
|
|
7826
7827
|
fallbackValue?: string | number;
|
|
7827
7828
|
};
|