@gem-sdk/core 2.5.3-staging.0 → 2.5.3-staging.4
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
CHANGED
|
@@ -8430,11 +8430,14 @@ type ChildIconType<T> = SharedControlType<T> & {
|
|
|
8430
8430
|
type DropdownInput<T> = SharedControlType<T> & {
|
|
8431
8431
|
type: 'dropdown:input' | 'accordion:dropdown:input';
|
|
8432
8432
|
hideUnit?: boolean;
|
|
8433
|
+
useOnlyUnitInit?: boolean;
|
|
8433
8434
|
inputType?: 'text' | 'number';
|
|
8435
|
+
isReturnNumber?: boolean;
|
|
8436
|
+
isIndexValue?: boolean;
|
|
8434
8437
|
units?: string[];
|
|
8435
8438
|
displayOptions?: {
|
|
8436
8439
|
label: string;
|
|
8437
|
-
value?: string;
|
|
8440
|
+
value?: string | number;
|
|
8438
8441
|
reversed?: boolean;
|
|
8439
8442
|
showValue?: boolean;
|
|
8440
8443
|
}[];
|
|
@@ -36617,9 +36620,10 @@ type ThemePageQueryResponse = {
|
|
|
36617
36620
|
}>>>;
|
|
36618
36621
|
}>;
|
|
36619
36622
|
}>;
|
|
36623
|
+
themeSections?: Maybe<Array<Maybe<Pick<ThemeSection, 'id' | 'name' | 'component'>>>>;
|
|
36620
36624
|
}>;
|
|
36621
36625
|
};
|
|
36622
|
-
declare const ThemePageDocument = "\n query ThemePage($themePageId: ID!, $first: Int, $where: ThemeStyleWhereInput) {\n themePage(id: $themePageId) {\n id\n name\n handle\n isMobile\n sectionPosition\n pageSections {\n cid\n component\n id\n deletedAt\n }\n theme {\n id\n themeStyles(first: $first, where: $where) {\n edges {\n node {\n data\n id\n name\n }\n }\n }\n }\n }\n}\n ";
|
|
36626
|
+
declare const ThemePageDocument = "\n query ThemePage($themePageId: ID!, $first: Int, $where: ThemeStyleWhereInput) {\n themePage(id: $themePageId) {\n id\n name\n handle\n isMobile\n sectionPosition\n pageSections {\n cid\n component\n id\n deletedAt\n }\n theme {\n id\n themeStyles(first: $first, where: $where) {\n edges {\n node {\n data\n id\n name\n }\n }\n }\n }\n themeSections {\n id\n name\n component\n }\n }\n}\n ";
|
|
36623
36627
|
|
|
36624
36628
|
type SaleFunnelDiscountsQueryVariables = Exact<{
|
|
36625
36629
|
where?: InputMaybe<SaleFunnelDiscountWhereInput>;
|