@gem-sdk/core 1.14.0-dev.303 → 1.14.0-dev.304
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
|
@@ -78,7 +78,7 @@ type ImageShape$1 = {
|
|
|
78
78
|
height?: string;
|
|
79
79
|
};
|
|
80
80
|
type SizeSettingGlobal = {
|
|
81
|
-
shape?: 'square' | 'vertical' | 'horizontal' | 'custom';
|
|
81
|
+
shape?: 'square' | 'vertical' | 'horizontal' | 'custom' | 'original';
|
|
82
82
|
shapeValue?: string;
|
|
83
83
|
padding?: {
|
|
84
84
|
type?: 'small' | 'medium' | 'large' | 'custom';
|
|
@@ -899,7 +899,7 @@ type GridArrange<T> = SharedControlType<T> & {
|
|
|
899
899
|
};
|
|
900
900
|
|
|
901
901
|
type SettingID = 'shape' | 'width' | 'height' | 'gap' | 'padding';
|
|
902
|
-
type OptionKeyword = 'default' | 'auto' | 'full' | 'equal' | 'small' | 'medium' | 'large';
|
|
902
|
+
type OptionKeyword = 'default' | 'auto' | 'full' | 'equal' | 'small' | 'medium' | 'large' | 'original';
|
|
903
903
|
type PaddingOptions = 'small' | 'medium' | 'large' | 'custom';
|
|
904
904
|
type PaddingConfig = Partial<Record<PaddingOptions, {
|
|
905
905
|
vertical: string;
|
|
@@ -907,7 +907,7 @@ type PaddingConfig = Partial<Record<PaddingOptions, {
|
|
|
907
907
|
}>>;
|
|
908
908
|
type SettingConfig = {
|
|
909
909
|
sizeConfig?: Partial<Record<'small' | 'medium' | 'large', string>>;
|
|
910
|
-
|
|
910
|
+
displayOptions?: OptionKeyword[];
|
|
911
911
|
hiddenAllOptions?: boolean;
|
|
912
912
|
paddingConfig?: PaddingConfig;
|
|
913
913
|
};
|