@gem-sdk/core 1.23.0-staging.432 → 1.23.0-staging.435
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
|
@@ -7758,6 +7758,7 @@ type ComponentSetting<P extends BaseProps> = {
|
|
|
7758
7758
|
};
|
|
7759
7759
|
ui?: ControlUI[];
|
|
7760
7760
|
presets?: ComponentPreset[];
|
|
7761
|
+
locales?: Record<string, any>;
|
|
7761
7762
|
};
|
|
7762
7763
|
type ControlUI = {
|
|
7763
7764
|
layout?: 'vertical' | 'horizontal';
|
|
@@ -7824,8 +7825,9 @@ type ComponentPreset = {
|
|
|
7824
7825
|
};
|
|
7825
7826
|
|
|
7826
7827
|
type PageContext = {
|
|
7827
|
-
numberOfProductOfProductList
|
|
7828
|
+
numberOfProductOfProductList?: number;
|
|
7828
7829
|
pageType?: string;
|
|
7830
|
+
isPreviewing?: boolean;
|
|
7829
7831
|
};
|
|
7830
7832
|
type DeepPartial<T> = {
|
|
7831
7833
|
[P in keyof T]?: DeepPartial<T[P]>;
|