@gem-sdk/core 1.23.0-staging.195 → 1.23.0-staging.197
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 +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -940,6 +940,8 @@ type ShapeOptionKeyword = 'original' | 'square' | 'vertical' | 'horizontal' | 'c
|
|
|
940
940
|
type HeightOptionKeyword = 'fit-content' | 'fit-screen';
|
|
941
941
|
type OptionKeyword = 'default' | 'auto' | 'full' | 'equal' | 'small' | 'medium' | 'large' | HeightOptionKeyword | ShapeOptionKeyword;
|
|
942
942
|
type PaddingOptions = 'small' | 'medium' | 'large' | 'custom';
|
|
943
|
+
type ShapeOptions = 'square' | 'vertical' | 'horizontal' | 'custom' | 'original';
|
|
944
|
+
type ShapeConfig = Partial<Record<ShapeOptions, string>>;
|
|
943
945
|
type PaddingConfig = Partial<Record<PaddingOptions, {
|
|
944
946
|
vertical: string;
|
|
945
947
|
horizontal: string;
|
|
@@ -948,6 +950,8 @@ type SettingConfig = {
|
|
|
948
950
|
sizeConfig?: Partial<Record<'small' | 'medium' | 'large', string>>;
|
|
949
951
|
displayOptions?: OptionKeyword[];
|
|
950
952
|
paddingConfig?: PaddingConfig;
|
|
953
|
+
shapeConfig?: ShapeConfig;
|
|
954
|
+
shapeTitleConfig?: ShapeConfig;
|
|
951
955
|
name?: string;
|
|
952
956
|
units?: string[];
|
|
953
957
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/core",
|
|
3
|
-
"version": "1.23.0-staging.
|
|
3
|
+
"version": "1.23.0-staging.197",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@gem-sdk/adapter-shopify": "1.23.0-staging.26",
|
|
28
|
-
"@gem-sdk/styles": "1.23.0-staging.
|
|
28
|
+
"@gem-sdk/styles": "1.23.0-staging.196"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"react-error-boundary": "4.0.10",
|