@gem-sdk/core 1.14.0-dev.463 → 1.14.0-dev.467
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 +4 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -939,6 +939,8 @@ type ShapeOptionKeyword = 'original' | 'square' | 'vertical' | 'horizontal' | 'c
|
|
|
939
939
|
type HeightOptionKeyword = 'fit-content' | 'fit-screen';
|
|
940
940
|
type OptionKeyword = 'default' | 'auto' | 'full' | 'equal' | 'small' | 'medium' | 'large' | HeightOptionKeyword | ShapeOptionKeyword;
|
|
941
941
|
type PaddingOptions = 'small' | 'medium' | 'large' | 'custom';
|
|
942
|
+
type ShapeOptions = 'square' | 'vertical' | 'horizontal' | 'custom' | 'original';
|
|
943
|
+
type ShapeConfig = Partial<Record<ShapeOptions, string>>;
|
|
942
944
|
type PaddingConfig = Partial<Record<PaddingOptions, {
|
|
943
945
|
vertical: string;
|
|
944
946
|
horizontal: string;
|
|
@@ -947,6 +949,8 @@ type SettingConfig = {
|
|
|
947
949
|
sizeConfig?: Partial<Record<'small' | 'medium' | 'large', string>>;
|
|
948
950
|
displayOptions?: OptionKeyword[];
|
|
949
951
|
paddingConfig?: PaddingConfig;
|
|
952
|
+
shapeConfig?: ShapeConfig;
|
|
953
|
+
shapeTitleConfig?: ShapeConfig;
|
|
950
954
|
name?: string;
|
|
951
955
|
units?: string[];
|
|
952
956
|
};
|