@gem-sdk/core 1.37.4 → 1.37.5
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 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1227,6 +1227,7 @@ type ComponentSetting<P extends BaseProps> = {
|
|
|
1227
1227
|
};
|
|
1228
1228
|
ui?: ControlUI[];
|
|
1229
1229
|
presets?: ComponentPreset[];
|
|
1230
|
+
locales?: Record<string, any>;
|
|
1230
1231
|
};
|
|
1231
1232
|
type ControlUI = {
|
|
1232
1233
|
layout?: 'vertical' | 'horizontal';
|
|
@@ -7369,7 +7370,8 @@ declare namespace shop {
|
|
|
7369
7370
|
}
|
|
7370
7371
|
|
|
7371
7372
|
type PageContext = {
|
|
7372
|
-
numberOfProductOfProductList
|
|
7373
|
+
numberOfProductOfProductList?: number;
|
|
7374
|
+
isPreviewing?: boolean;
|
|
7373
7375
|
};
|
|
7374
7376
|
type DeepPartial<T> = {
|
|
7375
7377
|
[P in keyof T]?: DeepPartial<T[P]>;
|