@gem-sdk/core 1.14.0-dev.475 → 1.14.0-dev.477
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 +1 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -937,7 +937,7 @@ type GridArrange<T> = SharedControlType<T> & {
|
|
|
937
937
|
type SettingID = 'shape' | 'width' | 'height' | 'gap' | 'padding';
|
|
938
938
|
type ShapeOptionKeyword = 'original' | 'square' | 'vertical' | 'horizontal' | 'custom';
|
|
939
939
|
type HeightOptionKeyword = 'fit-content' | 'fit-screen';
|
|
940
|
-
type OptionKeyword = 'default' | 'auto' | 'full' | 'equal' | 'small' | 'medium' | 'large' | HeightOptionKeyword | ShapeOptionKeyword;
|
|
940
|
+
type OptionKeyword = 'default' | 'auto' | 'full' | 'equal' | 'small' | 'medium' | 'large' | HeightOptionKeyword | ShapeOptionKeyword | string;
|
|
941
941
|
type PaddingOptions = 'small' | 'medium' | 'large' | 'custom';
|
|
942
942
|
type ShapeOptions = 'square' | 'vertical' | 'horizontal' | 'custom' | 'original';
|
|
943
943
|
type ShapeConfig = Partial<Record<ShapeOptions, string>>;
|