@gem-sdk/core 1.14.0-dev.289 → 1.14.0-dev.296
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 +6 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -899,10 +899,16 @@ type GridArrange<T> = SharedControlType<T> & {
|
|
|
899
899
|
|
|
900
900
|
type SettingID = 'shape' | 'width' | 'height' | 'gap' | 'padding';
|
|
901
901
|
type OptionKeyword = 'default' | 'auto' | 'full' | 'equal' | 'small' | 'medium' | 'large';
|
|
902
|
+
type PaddingOptions = 'small' | 'medium' | 'large' | 'custom';
|
|
903
|
+
type PaddingConfig = Partial<Record<PaddingOptions, {
|
|
904
|
+
vertical: string;
|
|
905
|
+
horizontal: string;
|
|
906
|
+
}>>;
|
|
902
907
|
type SettingConfig = {
|
|
903
908
|
sizeConfig?: Partial<Record<'small' | 'medium' | 'large', string>>;
|
|
904
909
|
hiddenOptions?: OptionKeyword[];
|
|
905
910
|
hiddenAllOptions?: boolean;
|
|
911
|
+
paddingConfig?: PaddingConfig;
|
|
906
912
|
};
|
|
907
913
|
type SizeSetting$1<T> = SharedControlType<T> & {
|
|
908
914
|
type: 'size-setting';
|