@gem-sdk/core 1.14.0-dev.462 → 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 +5 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -495,6 +495,7 @@ type Option$1<T> = {
|
|
|
495
495
|
hideOnPage?: string[];
|
|
496
496
|
flowTag?: string[];
|
|
497
497
|
condition?: 'and' | 'or';
|
|
498
|
+
icon?: string;
|
|
498
499
|
};
|
|
499
500
|
type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
500
501
|
id: K;
|
|
@@ -938,6 +939,8 @@ type ShapeOptionKeyword = 'original' | 'square' | 'vertical' | 'horizontal' | 'c
|
|
|
938
939
|
type HeightOptionKeyword = 'fit-content' | 'fit-screen';
|
|
939
940
|
type OptionKeyword = 'default' | 'auto' | 'full' | 'equal' | 'small' | 'medium' | 'large' | HeightOptionKeyword | ShapeOptionKeyword;
|
|
940
941
|
type PaddingOptions = 'small' | 'medium' | 'large' | 'custom';
|
|
942
|
+
type ShapeOptions = 'square' | 'vertical' | 'horizontal' | 'custom' | 'original';
|
|
943
|
+
type ShapeConfig = Partial<Record<ShapeOptions, string>>;
|
|
941
944
|
type PaddingConfig = Partial<Record<PaddingOptions, {
|
|
942
945
|
vertical: string;
|
|
943
946
|
horizontal: string;
|
|
@@ -946,6 +949,8 @@ type SettingConfig = {
|
|
|
946
949
|
sizeConfig?: Partial<Record<'small' | 'medium' | 'large', string>>;
|
|
947
950
|
displayOptions?: OptionKeyword[];
|
|
948
951
|
paddingConfig?: PaddingConfig;
|
|
952
|
+
shapeConfig?: ShapeConfig;
|
|
953
|
+
shapeTitleConfig?: ShapeConfig;
|
|
949
954
|
name?: string;
|
|
950
955
|
units?: string[];
|
|
951
956
|
};
|