@gem-sdk/core 1.58.0-dev.13 → 1.58.0-dev.134
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/cjs/components/AddOn.js +1 -0
- package/dist/cjs/components/ComponentAnimation.js +1 -0
- package/dist/cjs/components/ComponentToolbarPreview.js +33 -19
- package/dist/cjs/components/ComponentWrapper.js +1 -0
- package/dist/cjs/components/ComponentWrapperPreview.js +1 -0
- package/dist/cjs/components/Empty.js +1 -0
- package/dist/cjs/components/InteractionSuffix.js +2 -1
- package/dist/cjs/components/Render.js +1 -0
- package/dist/cjs/components/Render.liquid.js +14 -5
- package/dist/cjs/components/RenderBlock.js +1 -0
- package/dist/cjs/components/RenderCustomCode.js +1 -0
- package/dist/cjs/components/RenderPreview.js +1 -0
- package/dist/cjs/components/RenderSection.js +1 -0
- package/dist/cjs/components/ai-generator/AIContentGenerator.js +2 -1
- package/dist/cjs/components/ai-generator/AIGenContentLoading.js +1 -0
- package/dist/cjs/components/ai-generator/components/PickProduct.js +1 -0
- package/dist/cjs/components/ai-generator/components/ToneAndVoice.js +1 -0
- package/dist/cjs/components/ai-generator/icons/AIIcon.js +1 -0
- package/dist/cjs/components/ai-generator/icons/CloseIcon.js +1 -0
- package/dist/cjs/components/ai-generator/icons/DropdownIcon.js +1 -0
- package/dist/cjs/components/ai-generator/icons/SearchIcon.js +1 -0
- package/dist/cjs/components/ai-generator/icons/ShowMoreIcon.js +1 -0
- package/dist/cjs/components/ai-generator/icons/UpgradeIcon.js +1 -0
- package/dist/cjs/components/ai-generator/icons/WarningIcon.js +1 -0
- package/dist/cjs/components/resize/Resize.js +1 -0
- package/dist/cjs/components/resize/Spacing.js +1 -0
- package/dist/cjs/components/theme-section/CreateThemeSection.js +2 -1
- package/dist/cjs/components/theme-section/ThemeSectionStatus.js +1 -0
- package/dist/cjs/components/theme-section/ThemeSectionTooltip.js +1 -0
- package/dist/cjs/components/toolbar/Tooltip.js +1 -0
- package/dist/cjs/contexts/AddonContext.js +1 -0
- package/dist/cjs/contexts/ArticleContext.js +1 -0
- package/dist/cjs/contexts/ArticleListContext.js +1 -0
- package/dist/cjs/contexts/BuilderComponent.js +1 -0
- package/dist/cjs/contexts/BuilderContext.js +1 -0
- package/dist/cjs/contexts/BuilderPreviewContext.js +1 -0
- package/dist/cjs/contexts/CartLineContext.js +1 -0
- package/dist/cjs/contexts/CollectionContext.js +1 -0
- package/dist/cjs/contexts/ModalContext.js +1 -0
- package/dist/cjs/contexts/PageContext.js +1 -0
- package/dist/cjs/contexts/ProductContext.js +17 -1
- package/dist/cjs/contexts/ProductListContext.js +1 -0
- package/dist/cjs/contexts/SectionContext.js +1 -0
- package/dist/cjs/contexts/ShopContext.js +1 -0
- package/dist/cjs/graphql/fragments/preview-theme-page.generated.js +35 -0
- package/dist/cjs/graphql/fragments/published-theme-page.generated.js +4 -28
- package/dist/cjs/graphql/queries/articles.generated.js +1 -0
- package/dist/cjs/graphql/queries/preview-page.generated.js +9 -13
- package/dist/cjs/graphql/queries/shop-shopify.generated.js +11 -0
- package/dist/cjs/helpers/align.js +18 -0
- package/dist/cjs/helpers/backgroundImage.js +184 -0
- package/dist/cjs/helpers/compose-advance-style.js +57 -3
- package/dist/cjs/helpers/filter-toolbar-preview.js +1 -0
- package/dist/cjs/helpers/interaction/index.js +2 -1
- package/dist/cjs/helpers/is-empty-children.js +1 -0
- package/dist/cjs/helpers/layout.js +17 -0
- package/dist/cjs/helpers/prefetch-queries.js +5 -3
- package/dist/cjs/helpers/radius.js +3 -1
- package/dist/cjs/helpers/shadow.js +25 -0
- package/dist/cjs/helpers/size.js +30 -2
- package/dist/cjs/helpers/third-party/appConfig.js +70 -0
- package/dist/cjs/helpers/third-party/appSetting.js +345 -2
- package/dist/cjs/helpers/third-party/constant.js +11 -1
- package/dist/cjs/helpers/third-party/getAppBlockConfig.js +17 -1
- package/dist/cjs/helpers/typography.js +10 -1
- package/dist/cjs/hooks/animation/useAnimationActions.js +1 -0
- package/dist/cjs/hooks/animation/useAnimationConfig.js +1 -0
- package/dist/cjs/hooks/animation/useAnimationPreview.js +1 -0
- package/dist/cjs/hooks/animation/useAnimationTarget.js +1 -0
- package/dist/cjs/hooks/animation/useApplyAnimation.js +1 -0
- package/dist/cjs/hooks/articles/useArticlesQuery.js +1 -0
- package/dist/cjs/hooks/cart/use-add-to-cart.js +1 -0
- package/dist/cjs/hooks/cart/use-cart-data.js +1 -0
- package/dist/cjs/hooks/cart/use-cart-discount-codes-update.js +1 -0
- package/dist/cjs/hooks/cart/use-cart-note-update.js +1 -0
- package/dist/cjs/hooks/cart/use-create-cart.js +1 -0
- package/dist/cjs/hooks/cart/use-remove-cart-item.js +1 -0
- package/dist/cjs/hooks/cart/use-update-cart-item.js +1 -0
- package/dist/cjs/hooks/shop/use-collection-query.js +1 -0
- package/dist/cjs/hooks/shop/use-collections-query.js +1 -0
- package/dist/cjs/hooks/shop/use-product-query.js +1 -0
- package/dist/cjs/hooks/shop/use-products-query.js +1 -0
- package/dist/cjs/hooks/shop/useShopifyLink.js +47 -0
- package/dist/cjs/hooks/shop.js +10 -0
- package/dist/cjs/hooks/use-current-device.js +1 -0
- package/dist/cjs/hooks/use-lazy-video.js +1 -0
- package/dist/cjs/hooks/useAnimations.js +1 -0
- package/dist/cjs/hooks/useCartId.js +1 -0
- package/dist/cjs/hooks/useCartLine.js +1 -0
- package/dist/cjs/hooks/useCartUI.js +1 -0
- package/dist/cjs/hooks/useCollection.js +1 -0
- package/dist/cjs/hooks/useFetchHandle.js +1 -0
- package/dist/cjs/hooks/useFormatMoney.js +1 -0
- package/dist/cjs/hooks/useInitialSwatchesOptions.js +1 -0
- package/dist/cjs/hooks/useInteraction.js +1 -0
- package/dist/cjs/hooks/useIsomorphicLayoutEffect.js +1 -0
- package/dist/cjs/hooks/useLoadScript.js +1 -0
- package/dist/cjs/hooks/useMoney.js +1 -0
- package/dist/cjs/hooks/usePrevious.js +1 -0
- package/dist/cjs/hooks/useProduct.js +28 -1
- package/dist/cjs/hooks/useProductList.js +1 -0
- package/dist/cjs/hooks/useSuspenseFetch.js +1 -0
- package/dist/cjs/hooks/useSwatchesOptions.js +1 -0
- package/dist/cjs/hooks/useToolbarPostPurchase.js +1 -0
- package/dist/cjs/index.js +28 -10
- package/dist/esm/components/AddOn.js +1 -0
- package/dist/esm/components/ComponentAnimation.js +1 -0
- package/dist/esm/components/ComponentToolbarPreview.js +33 -19
- package/dist/esm/components/ComponentWrapper.js +1 -0
- package/dist/esm/components/ComponentWrapperPreview.js +1 -0
- package/dist/esm/components/Empty.js +1 -0
- package/dist/esm/components/InteractionSuffix.js +2 -1
- package/dist/esm/components/Render.js +1 -0
- package/dist/esm/components/Render.liquid.js +14 -5
- package/dist/esm/components/RenderBlock.js +1 -0
- package/dist/esm/components/RenderCustomCode.js +1 -0
- package/dist/esm/components/RenderPreview.js +1 -0
- package/dist/esm/components/RenderSection.js +1 -0
- package/dist/esm/components/ai-generator/AIContentGenerator.js +2 -1
- package/dist/esm/components/ai-generator/AIGenContentLoading.js +1 -0
- package/dist/esm/components/ai-generator/components/PickProduct.js +1 -0
- package/dist/esm/components/ai-generator/components/ToneAndVoice.js +1 -0
- package/dist/esm/components/ai-generator/icons/AIIcon.js +1 -0
- package/dist/esm/components/ai-generator/icons/CloseIcon.js +1 -0
- package/dist/esm/components/ai-generator/icons/DropdownIcon.js +1 -0
- package/dist/esm/components/ai-generator/icons/SearchIcon.js +1 -0
- package/dist/esm/components/ai-generator/icons/ShowMoreIcon.js +1 -0
- package/dist/esm/components/ai-generator/icons/UpgradeIcon.js +1 -0
- package/dist/esm/components/ai-generator/icons/WarningIcon.js +1 -0
- package/dist/esm/components/resize/Resize.js +1 -0
- package/dist/esm/components/resize/Spacing.js +1 -0
- package/dist/esm/components/theme-section/CreateThemeSection.js +2 -1
- package/dist/esm/components/theme-section/ThemeSectionStatus.js +1 -0
- package/dist/esm/components/theme-section/ThemeSectionTooltip.js +1 -0
- package/dist/esm/components/toolbar/Tooltip.js +1 -0
- package/dist/esm/contexts/AddonContext.js +1 -0
- package/dist/esm/contexts/ArticleContext.js +1 -0
- package/dist/esm/contexts/ArticleListContext.js +1 -0
- package/dist/esm/contexts/BuilderComponent.js +1 -0
- package/dist/esm/contexts/BuilderContext.js +1 -0
- package/dist/esm/contexts/BuilderPreviewContext.js +1 -0
- package/dist/esm/contexts/CartLineContext.js +1 -0
- package/dist/esm/contexts/CollectionContext.js +1 -0
- package/dist/esm/contexts/ModalContext.js +1 -0
- package/dist/esm/contexts/PageContext.js +1 -0
- package/dist/esm/contexts/ProductContext.js +17 -1
- package/dist/esm/contexts/ProductListContext.js +1 -0
- package/dist/esm/contexts/SectionContext.js +1 -0
- package/dist/esm/contexts/ShopContext.js +1 -0
- package/dist/esm/graphql/fragments/preview-theme-page.generated.js +33 -0
- package/dist/esm/graphql/fragments/published-theme-page.generated.js +5 -28
- package/dist/esm/graphql/queries/articles.generated.js +1 -0
- package/dist/esm/graphql/queries/preview-page.generated.js +8 -12
- package/dist/esm/graphql/queries/shop-shopify.generated.js +9 -0
- package/dist/esm/helpers/align.js +18 -1
- package/dist/esm/helpers/backgroundImage.js +179 -0
- package/dist/esm/helpers/compose-advance-style.js +57 -3
- package/dist/esm/helpers/filter-toolbar-preview.js +1 -0
- package/dist/esm/helpers/interaction/index.js +2 -1
- package/dist/esm/helpers/is-empty-children.js +1 -0
- package/dist/esm/helpers/layout.js +17 -1
- package/dist/esm/helpers/prefetch-queries.js +5 -3
- package/dist/esm/helpers/radius.js +3 -1
- package/dist/esm/helpers/shadow.js +25 -1
- package/dist/esm/helpers/size.js +29 -3
- package/dist/esm/helpers/third-party/appConfig.js +61 -1
- package/dist/esm/helpers/third-party/appSetting.js +345 -2
- package/dist/esm/helpers/third-party/constant.js +12 -2
- package/dist/esm/helpers/third-party/getAppBlockConfig.js +17 -1
- package/dist/esm/helpers/typography.js +10 -2
- package/dist/esm/hooks/animation/useAnimationActions.js +1 -0
- package/dist/esm/hooks/animation/useAnimationConfig.js +1 -0
- package/dist/esm/hooks/animation/useAnimationPreview.js +1 -0
- package/dist/esm/hooks/animation/useAnimationTarget.js +1 -0
- package/dist/esm/hooks/animation/useApplyAnimation.js +1 -0
- package/dist/esm/hooks/articles/useArticlesQuery.js +1 -0
- package/dist/esm/hooks/cart/use-add-to-cart.js +1 -0
- package/dist/esm/hooks/cart/use-cart-data.js +1 -0
- package/dist/esm/hooks/cart/use-cart-discount-codes-update.js +1 -0
- package/dist/esm/hooks/cart/use-cart-note-update.js +1 -0
- package/dist/esm/hooks/cart/use-create-cart.js +1 -0
- package/dist/esm/hooks/cart/use-remove-cart-item.js +1 -0
- package/dist/esm/hooks/cart/use-update-cart-item.js +1 -0
- package/dist/esm/hooks/shop/use-collection-query.js +1 -0
- package/dist/esm/hooks/shop/use-collections-query.js +1 -0
- package/dist/esm/hooks/shop/use-product-query.js +1 -0
- package/dist/esm/hooks/shop/use-products-query.js +1 -0
- package/dist/esm/hooks/shop/useShopifyLink.js +45 -0
- package/dist/esm/hooks/shop.js +10 -1
- package/dist/esm/hooks/use-current-device.js +1 -0
- package/dist/esm/hooks/use-lazy-video.js +1 -0
- package/dist/esm/hooks/useAnimations.js +1 -0
- package/dist/esm/hooks/useCartId.js +1 -0
- package/dist/esm/hooks/useCartLine.js +1 -0
- package/dist/esm/hooks/useCartUI.js +1 -0
- package/dist/esm/hooks/useCollection.js +1 -0
- package/dist/esm/hooks/useFetchHandle.js +1 -0
- package/dist/esm/hooks/useFormatMoney.js +1 -0
- package/dist/esm/hooks/useInitialSwatchesOptions.js +1 -0
- package/dist/esm/hooks/useInteraction.js +1 -0
- package/dist/esm/hooks/useIsomorphicLayoutEffect.js +1 -0
- package/dist/esm/hooks/useLoadScript.js +1 -0
- package/dist/esm/hooks/useMoney.js +1 -0
- package/dist/esm/hooks/usePrevious.js +1 -0
- package/dist/esm/hooks/useProduct.js +27 -2
- package/dist/esm/hooks/useProductList.js +1 -0
- package/dist/esm/hooks/useSuspenseFetch.js +1 -0
- package/dist/esm/hooks/useSwatchesOptions.js +1 -0
- package/dist/esm/hooks/useToolbarPostPurchase.js +1 -0
- package/dist/esm/index.js +14 -11
- package/dist/types/index.d.ts +826 -263
- package/package.json +4 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -3,10 +3,10 @@ import { Cart as Cart$2, addToCartOperation, getCartOperation, cartDiscountCodes
|
|
|
3
3
|
import { SWRConfig, SWRConfiguration, MutatorOptions } from 'swr';
|
|
4
4
|
import { ShortHandProperty } from '@gem-sdk/styles';
|
|
5
5
|
import * as csstype from 'csstype';
|
|
6
|
+
import * as swr__internal from 'swr/_internal';
|
|
6
7
|
import * as swr_mutation from 'swr/mutation';
|
|
7
8
|
import { SWRMutationConfiguration } from 'swr/mutation';
|
|
8
9
|
import * as _gem_sdk_adapter_common_dist_types_types_cart from '@gem-sdk/adapter-common/dist/types/types/cart';
|
|
9
|
-
import * as swr__internal from 'swr/_internal';
|
|
10
10
|
import { useLayoutEffect } from 'react';
|
|
11
11
|
export { useId } from 'react';
|
|
12
12
|
|
|
@@ -2321,6 +2321,7 @@ type EntitledPriceRuleWhereInput$1 = {
|
|
|
2321
2321
|
};
|
|
2322
2322
|
type Entity = {
|
|
2323
2323
|
findMetafieldByID: Metafield$1;
|
|
2324
|
+
findMetafieldDefinitionByID: MetafieldDefinition;
|
|
2324
2325
|
findProductByID: Product$1;
|
|
2325
2326
|
findPublishedCustomSectionByID: PublishedCustomSection$1;
|
|
2326
2327
|
findPublishedPageInteractionByID: PublishedPageInteraction$1;
|
|
@@ -2338,6 +2339,9 @@ type Entity = {
|
|
|
2338
2339
|
type EntityFindMetafieldByIdArgs = {
|
|
2339
2340
|
id: Scalars$2['ID'];
|
|
2340
2341
|
};
|
|
2342
|
+
type EntityFindMetafieldDefinitionByIdArgs = {
|
|
2343
|
+
id: Scalars$2['ID'];
|
|
2344
|
+
};
|
|
2341
2345
|
type EntityFindProductByIdArgs = {
|
|
2342
2346
|
id: Scalars$2['ID'];
|
|
2343
2347
|
};
|
|
@@ -2655,7 +2659,185 @@ type Metafield$1 = {
|
|
|
2655
2659
|
shopID: Scalars$2['ID'];
|
|
2656
2660
|
value: Scalars$2['String'];
|
|
2657
2661
|
};
|
|
2662
|
+
type MetafieldConnection = {
|
|
2663
|
+
edges: Array<MetafieldEdge>;
|
|
2664
|
+
pageInfo?: Maybe$1<PageInfo$1>;
|
|
2665
|
+
totalCount?: Maybe$1<Scalars$2['Int']>;
|
|
2666
|
+
};
|
|
2667
|
+
type MetafieldDefinition = {
|
|
2668
|
+
baseID: Scalars$2['String'];
|
|
2669
|
+
description?: Maybe$1<Scalars$2['String']>;
|
|
2670
|
+
id: Scalars$2['ID'];
|
|
2671
|
+
key: Scalars$2['String'];
|
|
2672
|
+
name: Scalars$2['String'];
|
|
2673
|
+
namespace: Scalars$2['String'];
|
|
2674
|
+
ownerType: MetafieldDefinitionOwnerType;
|
|
2675
|
+
shopID: Scalars$2['ID'];
|
|
2676
|
+
type: Scalars$2['String'];
|
|
2677
|
+
};
|
|
2678
|
+
type MetafieldDefinitionConnection = {
|
|
2679
|
+
edges: Array<MetafieldDefinitionEdge>;
|
|
2680
|
+
pageInfo?: Maybe$1<PageInfo$1>;
|
|
2681
|
+
totalCount?: Maybe$1<Scalars$2['Int']>;
|
|
2682
|
+
};
|
|
2683
|
+
type MetafieldDefinitionEdge = {
|
|
2684
|
+
cursor?: Maybe$1<Scalars$2['Cursor']>;
|
|
2685
|
+
node?: Maybe$1<MetafieldDefinition>;
|
|
2686
|
+
};
|
|
2687
|
+
type MetafieldDefinitionOrder = {
|
|
2688
|
+
direction: OrderDirection$1;
|
|
2689
|
+
field?: InputMaybe$1<MetafieldDefinitionOrderField>;
|
|
2690
|
+
};
|
|
2691
|
+
type MetafieldDefinitionOrderField = 'CREATED_AT' | 'UPDATED_AT';
|
|
2692
|
+
type MetafieldDefinitionOwnerType = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'MEDIA_IMAGE' | 'PAGE' | 'PRODUCT' | 'PRODUCTVARIANT';
|
|
2693
|
+
/**
|
|
2694
|
+
* MetafieldDefinitionWhereInput is used for filtering MetafieldDefinition objects.
|
|
2695
|
+
* Input was generated by ent.
|
|
2696
|
+
*/
|
|
2697
|
+
type MetafieldDefinitionWhereInput = {
|
|
2698
|
+
and?: InputMaybe$1<Array<MetafieldDefinitionWhereInput>>;
|
|
2699
|
+
/** base_id field predicates */
|
|
2700
|
+
baseID?: InputMaybe$1<Scalars$2['String']>;
|
|
2701
|
+
baseIDContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2702
|
+
baseIDContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2703
|
+
baseIDEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2704
|
+
baseIDGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2705
|
+
baseIDGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2706
|
+
baseIDHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2707
|
+
baseIDHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2708
|
+
baseIDIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2709
|
+
baseIDLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2710
|
+
baseIDLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2711
|
+
baseIDNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2712
|
+
baseIDNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2713
|
+
/** created_at field predicates */
|
|
2714
|
+
createdAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
2715
|
+
createdAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2716
|
+
createdAtGTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2717
|
+
createdAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2718
|
+
createdAtLT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2719
|
+
createdAtLTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2720
|
+
createdAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
2721
|
+
createdAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2722
|
+
/** deleted_at field predicates */
|
|
2723
|
+
deletedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
2724
|
+
deletedAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2725
|
+
deletedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2726
|
+
deletedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2727
|
+
deletedAtIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
2728
|
+
deletedAtLT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2729
|
+
deletedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2730
|
+
deletedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
2731
|
+
deletedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2732
|
+
deletedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
2733
|
+
/** description field predicates */
|
|
2734
|
+
description?: InputMaybe$1<Scalars$2['String']>;
|
|
2735
|
+
descriptionContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2736
|
+
descriptionContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2737
|
+
descriptionEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2738
|
+
descriptionGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2739
|
+
descriptionGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2740
|
+
descriptionHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2741
|
+
descriptionHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2742
|
+
descriptionIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2743
|
+
descriptionIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
2744
|
+
descriptionLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2745
|
+
descriptionLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2746
|
+
descriptionNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2747
|
+
descriptionNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2748
|
+
descriptionNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
2749
|
+
/** id field predicates */
|
|
2750
|
+
id?: InputMaybe$1<Scalars$2['ID']>;
|
|
2751
|
+
idGT?: InputMaybe$1<Scalars$2['ID']>;
|
|
2752
|
+
idGTE?: InputMaybe$1<Scalars$2['ID']>;
|
|
2753
|
+
idIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
2754
|
+
idLT?: InputMaybe$1<Scalars$2['ID']>;
|
|
2755
|
+
idLTE?: InputMaybe$1<Scalars$2['ID']>;
|
|
2756
|
+
idNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
2757
|
+
idNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
2758
|
+
/** key field predicates */
|
|
2759
|
+
key?: InputMaybe$1<Scalars$2['String']>;
|
|
2760
|
+
keyContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2761
|
+
keyContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2762
|
+
keyEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2763
|
+
keyGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2764
|
+
keyGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2765
|
+
keyHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2766
|
+
keyHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2767
|
+
keyIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2768
|
+
keyLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2769
|
+
keyLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2770
|
+
keyNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2771
|
+
keyNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2772
|
+
/** name field predicates */
|
|
2773
|
+
name?: InputMaybe$1<Scalars$2['String']>;
|
|
2774
|
+
nameContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2775
|
+
nameContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2776
|
+
nameEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2777
|
+
nameGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2778
|
+
nameGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2779
|
+
nameHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2780
|
+
nameHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2781
|
+
nameIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2782
|
+
nameLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2783
|
+
nameLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2784
|
+
nameNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2785
|
+
nameNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2786
|
+
/** namespace field predicates */
|
|
2787
|
+
namespace?: InputMaybe$1<Scalars$2['String']>;
|
|
2788
|
+
namespaceContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2789
|
+
namespaceContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2790
|
+
namespaceEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2791
|
+
namespaceGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2792
|
+
namespaceGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2793
|
+
namespaceHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2794
|
+
namespaceHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2795
|
+
namespaceIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2796
|
+
namespaceLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2797
|
+
namespaceLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2798
|
+
namespaceNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2799
|
+
namespaceNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2800
|
+
not?: InputMaybe$1<MetafieldDefinitionWhereInput>;
|
|
2801
|
+
or?: InputMaybe$1<Array<MetafieldDefinitionWhereInput>>;
|
|
2802
|
+
/** owner_type field predicates */
|
|
2803
|
+
ownerType?: InputMaybe$1<MetafieldDefinitionOwnerType>;
|
|
2804
|
+
ownerTypeIn?: InputMaybe$1<Array<MetafieldDefinitionOwnerType>>;
|
|
2805
|
+
ownerTypeNEQ?: InputMaybe$1<MetafieldDefinitionOwnerType>;
|
|
2806
|
+
ownerTypeNotIn?: InputMaybe$1<Array<MetafieldDefinitionOwnerType>>;
|
|
2807
|
+
/** type field predicates */
|
|
2808
|
+
type?: InputMaybe$1<Scalars$2['String']>;
|
|
2809
|
+
typeContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2810
|
+
typeContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2811
|
+
typeEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2812
|
+
typeGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2813
|
+
typeGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2814
|
+
typeHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2815
|
+
typeHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2816
|
+
typeIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2817
|
+
typeLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2818
|
+
typeLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2819
|
+
typeNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2820
|
+
typeNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2821
|
+
/** updated_at field predicates */
|
|
2822
|
+
updatedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
2823
|
+
updatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2824
|
+
updatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2825
|
+
updatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2826
|
+
updatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2827
|
+
updatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2828
|
+
updatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
2829
|
+
updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2830
|
+
};
|
|
2831
|
+
type MetafieldEdge = {
|
|
2832
|
+
cursor?: Maybe$1<Scalars$2['Cursor']>;
|
|
2833
|
+
node?: Maybe$1<Metafield$1>;
|
|
2834
|
+
};
|
|
2658
2835
|
type MetafieldObjectType$1 = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'DISCOUNT' | 'PAGE' | 'PRODUCT' | 'PRODUCT_VARIANT' | 'SHOP';
|
|
2836
|
+
type MetafieldOrder = {
|
|
2837
|
+
direction: OrderDirection$1;
|
|
2838
|
+
field?: InputMaybe$1<MetafieldOrderField>;
|
|
2839
|
+
};
|
|
2840
|
+
type MetafieldOrderField = 'CREATED_AT' | 'UPDATED_AT';
|
|
2659
2841
|
/**
|
|
2660
2842
|
* MetafieldWhereInput is used for filtering Metafield objects.
|
|
2661
2843
|
* Input was generated by ent.
|
|
@@ -3089,9 +3271,74 @@ type PrerequisitePriceRuleWhereInput$1 = {
|
|
|
3089
3271
|
variantIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
3090
3272
|
};
|
|
3091
3273
|
type PreviewCustomSectionType$1 = 'FOOTER' | 'HEADER';
|
|
3274
|
+
type PreviewPageInteraction = {
|
|
3275
|
+
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
3276
|
+
deletedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3277
|
+
id: Scalars$2['ID'];
|
|
3278
|
+
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3279
|
+
value: Array<Scalars$2['Map']>;
|
|
3280
|
+
};
|
|
3281
|
+
type PreviewPageSection = {
|
|
3282
|
+
cid?: Maybe$1<Scalars$2['String']>;
|
|
3283
|
+
component?: Maybe$1<Scalars$2['String']>;
|
|
3284
|
+
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
3285
|
+
deletedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3286
|
+
display?: Maybe$1<Scalars$2['Boolean']>;
|
|
3287
|
+
id: Scalars$2['ID'];
|
|
3288
|
+
isGlobal?: Maybe$1<Scalars$2['Boolean']>;
|
|
3289
|
+
isMobile?: Maybe$1<Scalars$2['Boolean']>;
|
|
3290
|
+
metafields?: Maybe$1<Array<Maybe$1<PreviewPageSectionMeta>>>;
|
|
3291
|
+
name: Scalars$2['String'];
|
|
3292
|
+
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3293
|
+
};
|
|
3294
|
+
type PreviewPageSectionMeta = {
|
|
3295
|
+
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
3296
|
+
id: Scalars$2['ID'];
|
|
3297
|
+
key?: Maybe$1<Scalars$2['String']>;
|
|
3298
|
+
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3299
|
+
value?: Maybe$1<Scalars$2['String']>;
|
|
3300
|
+
};
|
|
3301
|
+
type PreviewThemePage = {
|
|
3302
|
+
analytic?: Maybe$1<Analytic$1>;
|
|
3303
|
+
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
3304
|
+
customCode?: Maybe$1<CustomCode$1>;
|
|
3305
|
+
customFonts?: Maybe$1<Array<Maybe$1<CustomFont$1>>>;
|
|
3306
|
+
dataSEO?: Maybe$1<Array<Maybe$1<DataSeo$1>>>;
|
|
3307
|
+
default: Scalars$2['Boolean'];
|
|
3308
|
+
description?: Maybe$1<Scalars$2['String']>;
|
|
3309
|
+
handle?: Maybe$1<Scalars$2['String']>;
|
|
3310
|
+
id: Scalars$2['ID'];
|
|
3311
|
+
interaction?: Maybe$1<PreviewPageInteraction>;
|
|
3312
|
+
isGlobal?: Maybe$1<Scalars$2['Boolean']>;
|
|
3313
|
+
isMobile?: Maybe$1<Scalars$2['Boolean']>;
|
|
3314
|
+
isSample?: Maybe$1<Scalars$2['Boolean']>;
|
|
3315
|
+
name: Scalars$2['String'];
|
|
3316
|
+
pageSections?: Maybe$1<Array<Maybe$1<PreviewPageSection>>>;
|
|
3317
|
+
sectionPosition?: Maybe$1<Array<Scalars$2['String']>>;
|
|
3318
|
+
splitPercentage?: Maybe$1<Scalars$2['Float']>;
|
|
3319
|
+
status?: Maybe$1<PreviewThemePageStatus$1>;
|
|
3320
|
+
themePageOnlineStoreData?: Maybe$1<Array<Maybe$1<PreviewThemePageOnlineStoreData>>>;
|
|
3321
|
+
themeStyle?: Maybe$1<PreviewThemeStyle>;
|
|
3322
|
+
type: PreviewThemePageType$1;
|
|
3323
|
+
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3324
|
+
};
|
|
3325
|
+
type PreviewThemePageOnlineStoreData = {
|
|
3326
|
+
id: Scalars$2['ID'];
|
|
3327
|
+
onlineStoreObjectBaseIDs?: Maybe$1<Array<Scalars$2['String']>>;
|
|
3328
|
+
type: PreviewThemePageOnlineStoreDataType$1;
|
|
3329
|
+
};
|
|
3092
3330
|
type PreviewThemePageOnlineStoreDataType$1 = 'ARTICLES' | 'BLOGS' | 'COLLECTIONS' | 'PRODUCTS';
|
|
3093
3331
|
type PreviewThemePageStatus$1 = 'DRAFT' | 'PUBLISHED';
|
|
3094
3332
|
type PreviewThemePageType$1 = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'PRODUCT' | 'STATIC';
|
|
3333
|
+
type PreviewThemeStyle = {
|
|
3334
|
+
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
3335
|
+
data: Scalars$2['String'];
|
|
3336
|
+
default?: Maybe$1<Scalars$2['Boolean']>;
|
|
3337
|
+
id: Scalars$2['ID'];
|
|
3338
|
+
isGlobal: Scalars$2['Boolean'];
|
|
3339
|
+
name: Scalars$2['String'];
|
|
3340
|
+
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3341
|
+
};
|
|
3095
3342
|
type PriceRulePlatform$1 = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
3096
3343
|
/**
|
|
3097
3344
|
* PriceRuleWhereInput is used for filtering PriceRule objects.
|
|
@@ -5006,6 +5253,13 @@ type PublishedPageSectionWhereInput$1 = {
|
|
|
5006
5253
|
nameNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
5007
5254
|
not?: InputMaybe$1<PublishedPageSectionWhereInput$1>;
|
|
5008
5255
|
or?: InputMaybe$1<Array<PublishedPageSectionWhereInput$1>>;
|
|
5256
|
+
/** published_theme_page_id field predicates */
|
|
5257
|
+
publishedThemePageID?: InputMaybe$1<Scalars$2['ID']>;
|
|
5258
|
+
publishedThemePageIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
5259
|
+
publishedThemePageIDIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5260
|
+
publishedThemePageIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
5261
|
+
publishedThemePageIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
5262
|
+
publishedThemePageIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5009
5263
|
/** updated_at field predicates */
|
|
5010
5264
|
updatedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
5011
5265
|
updatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
@@ -5437,9 +5691,6 @@ type PublishedThemePage$1 = {
|
|
|
5437
5691
|
themePageOnlineStoreData?: Maybe$1<Array<Maybe$1<PublishedThemePageOnlineStoreData$1>>>;
|
|
5438
5692
|
type: PublishedThemePageType$1;
|
|
5439
5693
|
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
5440
|
-
publishedAt?: Maybe$1<Scalars$2['Time']>;
|
|
5441
|
-
isPlatformDefault?: boolean;
|
|
5442
|
-
platformOriginalTemplateContent?: string;
|
|
5443
5694
|
};
|
|
5444
5695
|
type PublishedThemePageCustomSection$1 = {
|
|
5445
5696
|
id: Scalars$2['ID'];
|
|
@@ -6006,9 +6257,13 @@ type Query$1 = {
|
|
|
6006
6257
|
collections?: Maybe$1<CollectionConnection$1>;
|
|
6007
6258
|
media?: Maybe$1<Media$1>;
|
|
6008
6259
|
medias?: Maybe$1<MediaConnection$1>;
|
|
6260
|
+
metafieldDefinitions?: Maybe$1<MetafieldDefinitionConnection>;
|
|
6261
|
+
metafields?: Maybe$1<MetafieldConnection>;
|
|
6009
6262
|
page?: Maybe$1<Page$1>;
|
|
6010
6263
|
pages?: Maybe$1<PageConnection$1>;
|
|
6264
|
+
/** @deprecated Use previewThemePage instead */
|
|
6011
6265
|
previewPage?: Maybe$1<PublishedThemePage$1>;
|
|
6266
|
+
previewThemePage?: Maybe$1<PreviewThemePage>;
|
|
6012
6267
|
product?: Maybe$1<Product$1>;
|
|
6013
6268
|
productOptionName: Array<Scalars$2['String']>;
|
|
6014
6269
|
productOptionValueLabel: Array<Scalars$2['String']>;
|
|
@@ -6076,6 +6331,22 @@ type QueryMediasArgs$1 = {
|
|
|
6076
6331
|
orderBy?: InputMaybe$1<MediaOrder$1>;
|
|
6077
6332
|
where?: InputMaybe$1<MediaWhereInput$1>;
|
|
6078
6333
|
};
|
|
6334
|
+
type QueryMetafieldDefinitionsArgs = {
|
|
6335
|
+
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6336
|
+
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6337
|
+
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
6338
|
+
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
6339
|
+
orderBy?: InputMaybe$1<MetafieldDefinitionOrder>;
|
|
6340
|
+
where?: InputMaybe$1<MetafieldDefinitionWhereInput>;
|
|
6341
|
+
};
|
|
6342
|
+
type QueryMetafieldsArgs = {
|
|
6343
|
+
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6344
|
+
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6345
|
+
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
6346
|
+
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
6347
|
+
orderBy?: InputMaybe$1<MetafieldOrder>;
|
|
6348
|
+
where?: InputMaybe$1<MetafieldWhereInput$1>;
|
|
6349
|
+
};
|
|
6079
6350
|
type QueryPageArgs$1 = {
|
|
6080
6351
|
handle?: InputMaybe$1<Scalars$2['String']>;
|
|
6081
6352
|
id?: InputMaybe$1<Scalars$2['ID']>;
|
|
@@ -6092,6 +6363,10 @@ type QueryPreviewPageArgs$1 = {
|
|
|
6092
6363
|
handleURL?: InputMaybe$1<Scalars$2['String']>;
|
|
6093
6364
|
pageType: PublishedThemePageType$1;
|
|
6094
6365
|
};
|
|
6366
|
+
type QueryPreviewThemePageArgs = {
|
|
6367
|
+
handleURL?: InputMaybe$1<Scalars$2['String']>;
|
|
6368
|
+
pageType: PreviewThemePageType$1;
|
|
6369
|
+
};
|
|
6095
6370
|
type QueryProductArgs$1 = {
|
|
6096
6371
|
handle?: InputMaybe$1<Scalars$2['String']>;
|
|
6097
6372
|
id?: InputMaybe$1<Scalars$2['ID']>;
|
|
@@ -6483,13 +6758,14 @@ type VariantProductOptionWhereInput$1 = {
|
|
|
6483
6758
|
variantIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
6484
6759
|
variantIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
6485
6760
|
};
|
|
6486
|
-
type _Entity = Metafield$1 | Product$1 | PublishedCustomSection$1 | PublishedPageInteraction$1 | PublishedPageSection$1 | PublishedPageSectionMeta$1 | PublishedShopMeta$1 | PublishedThemePage$1 | PublishedThemePageCustomSection$1 | PublishedThemePageMeta$1 | PublishedThemePageOnlineStoreData$1 | PublishedThemeSection$1 | PublishedThemeStyle$1 | Tag$1;
|
|
6761
|
+
type _Entity = Metafield$1 | MetafieldDefinition | Product$1 | PublishedCustomSection$1 | PublishedPageInteraction$1 | PublishedPageSection$1 | PublishedPageSectionMeta$1 | PublishedShopMeta$1 | PublishedThemePage$1 | PublishedThemePageCustomSection$1 | PublishedThemePageMeta$1 | PublishedThemePageOnlineStoreData$1 | PublishedThemeSection$1 | PublishedThemeStyle$1 | Tag$1;
|
|
6487
6762
|
type _Service = {
|
|
6488
6763
|
sdl?: Maybe$1<Scalars$2['String']>;
|
|
6489
6764
|
};
|
|
6490
6765
|
|
|
6491
6766
|
type shop_Entity = Entity;
|
|
6492
6767
|
type shop_EntityFindMetafieldByIdArgs = EntityFindMetafieldByIdArgs;
|
|
6768
|
+
type shop_EntityFindMetafieldDefinitionByIdArgs = EntityFindMetafieldDefinitionByIdArgs;
|
|
6493
6769
|
type shop_EntityFindProductByIdArgs = EntityFindProductByIdArgs;
|
|
6494
6770
|
type shop_EntityFindPublishedCustomSectionByIdArgs = EntityFindPublishedCustomSectionByIdArgs;
|
|
6495
6771
|
type shop_EntityFindPublishedPageInteractionByIdArgs = EntityFindPublishedPageInteractionByIdArgs;
|
|
@@ -6503,6 +6779,26 @@ type shop_EntityFindPublishedThemePageOnlineStoreDataByIdArgs = EntityFindPublis
|
|
|
6503
6779
|
type shop_EntityFindPublishedThemeSectionByIdArgs = EntityFindPublishedThemeSectionByIdArgs;
|
|
6504
6780
|
type shop_EntityFindPublishedThemeStyleByIdArgs = EntityFindPublishedThemeStyleByIdArgs;
|
|
6505
6781
|
type shop_EntityFindTagByIdArgs = EntityFindTagByIdArgs;
|
|
6782
|
+
type shop_MetafieldConnection = MetafieldConnection;
|
|
6783
|
+
type shop_MetafieldDefinition = MetafieldDefinition;
|
|
6784
|
+
type shop_MetafieldDefinitionConnection = MetafieldDefinitionConnection;
|
|
6785
|
+
type shop_MetafieldDefinitionEdge = MetafieldDefinitionEdge;
|
|
6786
|
+
type shop_MetafieldDefinitionOrder = MetafieldDefinitionOrder;
|
|
6787
|
+
type shop_MetafieldDefinitionOrderField = MetafieldDefinitionOrderField;
|
|
6788
|
+
type shop_MetafieldDefinitionOwnerType = MetafieldDefinitionOwnerType;
|
|
6789
|
+
type shop_MetafieldDefinitionWhereInput = MetafieldDefinitionWhereInput;
|
|
6790
|
+
type shop_MetafieldEdge = MetafieldEdge;
|
|
6791
|
+
type shop_MetafieldOrder = MetafieldOrder;
|
|
6792
|
+
type shop_MetafieldOrderField = MetafieldOrderField;
|
|
6793
|
+
type shop_PreviewPageInteraction = PreviewPageInteraction;
|
|
6794
|
+
type shop_PreviewPageSection = PreviewPageSection;
|
|
6795
|
+
type shop_PreviewPageSectionMeta = PreviewPageSectionMeta;
|
|
6796
|
+
type shop_PreviewThemePage = PreviewThemePage;
|
|
6797
|
+
type shop_PreviewThemePageOnlineStoreData = PreviewThemePageOnlineStoreData;
|
|
6798
|
+
type shop_PreviewThemeStyle = PreviewThemeStyle;
|
|
6799
|
+
type shop_QueryMetafieldDefinitionsArgs = QueryMetafieldDefinitionsArgs;
|
|
6800
|
+
type shop_QueryMetafieldsArgs = QueryMetafieldsArgs;
|
|
6801
|
+
type shop_QueryPreviewThemePageArgs = QueryPreviewThemePageArgs;
|
|
6506
6802
|
type shop_QueryPublishedShopMetasArgs = QueryPublishedShopMetasArgs;
|
|
6507
6803
|
type shop_Query_EntitiesArgs = Query_EntitiesArgs;
|
|
6508
6804
|
type shop__Entity = _Entity;
|
|
@@ -6574,6 +6870,7 @@ declare namespace shop {
|
|
|
6574
6870
|
EntitledPriceRuleWhereInput$1 as EntitledPriceRuleWhereInput,
|
|
6575
6871
|
shop_Entity as Entity,
|
|
6576
6872
|
shop_EntityFindMetafieldByIdArgs as EntityFindMetafieldByIdArgs,
|
|
6873
|
+
shop_EntityFindMetafieldDefinitionByIdArgs as EntityFindMetafieldDefinitionByIdArgs,
|
|
6577
6874
|
shop_EntityFindProductByIdArgs as EntityFindProductByIdArgs,
|
|
6578
6875
|
shop_EntityFindPublishedCustomSectionByIdArgs as EntityFindPublishedCustomSectionByIdArgs,
|
|
6579
6876
|
shop_EntityFindPublishedPageInteractionByIdArgs as EntityFindPublishedPageInteractionByIdArgs,
|
|
@@ -6599,7 +6896,18 @@ declare namespace shop {
|
|
|
6599
6896
|
MediaOrderField$1 as MediaOrderField,
|
|
6600
6897
|
MediaWhereInput$1 as MediaWhereInput,
|
|
6601
6898
|
Metafield$1 as Metafield,
|
|
6899
|
+
shop_MetafieldConnection as MetafieldConnection,
|
|
6900
|
+
shop_MetafieldDefinition as MetafieldDefinition,
|
|
6901
|
+
shop_MetafieldDefinitionConnection as MetafieldDefinitionConnection,
|
|
6902
|
+
shop_MetafieldDefinitionEdge as MetafieldDefinitionEdge,
|
|
6903
|
+
shop_MetafieldDefinitionOrder as MetafieldDefinitionOrder,
|
|
6904
|
+
shop_MetafieldDefinitionOrderField as MetafieldDefinitionOrderField,
|
|
6905
|
+
shop_MetafieldDefinitionOwnerType as MetafieldDefinitionOwnerType,
|
|
6906
|
+
shop_MetafieldDefinitionWhereInput as MetafieldDefinitionWhereInput,
|
|
6907
|
+
shop_MetafieldEdge as MetafieldEdge,
|
|
6602
6908
|
MetafieldObjectType$1 as MetafieldObjectType,
|
|
6909
|
+
shop_MetafieldOrder as MetafieldOrder,
|
|
6910
|
+
shop_MetafieldOrderField as MetafieldOrderField,
|
|
6603
6911
|
MetafieldWhereInput$1 as MetafieldWhereInput,
|
|
6604
6912
|
Mutation$1 as Mutation,
|
|
6605
6913
|
MutationCartCreateArgs$1 as MutationCartCreateArgs,
|
|
@@ -6621,9 +6929,15 @@ declare namespace shop {
|
|
|
6621
6929
|
PageWhereInput$1 as PageWhereInput,
|
|
6622
6930
|
PrerequisitePriceRuleWhereInput$1 as PrerequisitePriceRuleWhereInput,
|
|
6623
6931
|
PreviewCustomSectionType$1 as PreviewCustomSectionType,
|
|
6932
|
+
shop_PreviewPageInteraction as PreviewPageInteraction,
|
|
6933
|
+
shop_PreviewPageSection as PreviewPageSection,
|
|
6934
|
+
shop_PreviewPageSectionMeta as PreviewPageSectionMeta,
|
|
6935
|
+
shop_PreviewThemePage as PreviewThemePage,
|
|
6936
|
+
shop_PreviewThemePageOnlineStoreData as PreviewThemePageOnlineStoreData,
|
|
6624
6937
|
PreviewThemePageOnlineStoreDataType$1 as PreviewThemePageOnlineStoreDataType,
|
|
6625
6938
|
PreviewThemePageStatus$1 as PreviewThemePageStatus,
|
|
6626
6939
|
PreviewThemePageType$1 as PreviewThemePageType,
|
|
6940
|
+
shop_PreviewThemeStyle as PreviewThemeStyle,
|
|
6627
6941
|
PriceRulePlatform$1 as PriceRulePlatform,
|
|
6628
6942
|
PriceRuleWhereInput$1 as PriceRuleWhereInput,
|
|
6629
6943
|
Product$1 as Product,
|
|
@@ -6707,9 +7021,12 @@ declare namespace shop {
|
|
|
6707
7021
|
QueryCollectionsArgs$1 as QueryCollectionsArgs,
|
|
6708
7022
|
QueryMediaArgs$1 as QueryMediaArgs,
|
|
6709
7023
|
QueryMediasArgs$1 as QueryMediasArgs,
|
|
7024
|
+
shop_QueryMetafieldDefinitionsArgs as QueryMetafieldDefinitionsArgs,
|
|
7025
|
+
shop_QueryMetafieldsArgs as QueryMetafieldsArgs,
|
|
6710
7026
|
QueryPageArgs$1 as QueryPageArgs,
|
|
6711
7027
|
QueryPagesArgs$1 as QueryPagesArgs,
|
|
6712
7028
|
QueryPreviewPageArgs$1 as QueryPreviewPageArgs,
|
|
7029
|
+
shop_QueryPreviewThemePageArgs as QueryPreviewThemePageArgs,
|
|
6713
7030
|
QueryProductArgs$1 as QueryProductArgs,
|
|
6714
7031
|
QueryProductOptionNameArgs$1 as QueryProductOptionNameArgs,
|
|
6715
7032
|
QueryProductOptionValueLabelArgs$1 as QueryProductOptionValueLabelArgs,
|
|
@@ -6905,6 +7222,7 @@ type ResponsiveStateProp<T> = ObjectDevices<StateProp<T>>;
|
|
|
6905
7222
|
type AlignItemProp = 'left' | 'center' | 'right';
|
|
6906
7223
|
type JudgeMeReviewsWidgetType = 'single_product_preview_badge' | 'review_widget' | 'reviews_carousel' | 'reviews_text' | 'section_for_medals' | 'ugc_media_grid' | 'verified_reviews_count_badge';
|
|
6907
7224
|
type LooxReviewsWidgetType = 'reviews_widget' | 'rating_widget' | 'carousel_widget';
|
|
7225
|
+
type LooxReviewsWidgetTypeV2 = 'loox-card-carousel-section' | 'loox-gallery-carousel-section' | 'loox-referrals-section' | 'loox-dynamic-section' | 'loox-snippets-widget' | 'loox-rating' | 'loox-testimonial-carousel-section' | 'loox-trust-badge' | 'loox-video-slider';
|
|
6908
7226
|
type RyviuWidgetType = 'reviews' | 'badge' | 'badgeCollection' | 'carousel' | 'masonry';
|
|
6909
7227
|
type RivyoWidgetType = 'reviews' | 'badge' | 'testimonials' | 'allReviewsPage';
|
|
6910
7228
|
type VitalsWidgetType = 'addToWishlist' | 'goToWishlist' | 'paymentLogos' | 'recentlyViewed' | 'shoppableInstagramFeed' | 'trustSealsAndBadges' | 'productReviews' | 'productBundles' | 'volumeDiscounts' | 'stockScarcity' | 'sizeChart' | 'upsellBuilderBogo' | 'bundleCountdownBox' | 'reviewsUnderTitle' | 'productReviewsCarousel' | 'shippingBox' | 'currencyConverter' | 'relatedProducts' | 'backInStock';
|
|
@@ -6928,6 +7246,7 @@ type ObjectLayoutValue = {
|
|
|
6928
7246
|
};
|
|
6929
7247
|
type ProductReviewsWidgetType = 'reviews' | 'badge';
|
|
6930
7248
|
type TrustooWidgetType = 'starRatingInList' | 'starRating' | 'reviews';
|
|
7249
|
+
type TrustooWidgetTypeV2 = 'barrage-carousel' | 'review-widget' | 'photo-carousel' | 'star-rating-widget' | 'text-carousel' | 'card-carousel';
|
|
6931
7250
|
type WiserWidgetType = 'related' | 'recommended' | 'alsobought' | 'recentview' | 'newarrivals' | 'featured' | 'topselling' | 'trending' | 'recent_related';
|
|
6932
7251
|
type WiserV2WidgetType = 'evm-also-bought-products' | 'evm-related-product' | 'evm-featured-collections-product' | 'evm-recommended-products' | 'evm-most-popular-products' | 'evm-new-arrivals-product' | 'recently-viewed' | 'evm-recent_purchased_recomm-product' | 'evm-recent_purchased-product' | 'trending-products' | 'evm-related-viewed-browsing';
|
|
6933
7252
|
type InstantJudgeMeReviewsWidgetType = 'single_product_preview_badge' | 'review_widget' | 'reviews_carousel' | 'floating_reviews_tab' | 'all_reviews_widget' | 'verified_reviews_count_badge' | 'medals' | 'media_grid' | 'all_reviews_text';
|
|
@@ -6962,7 +7281,7 @@ type HyperlinkInfo = {
|
|
|
6962
7281
|
link?: string;
|
|
6963
7282
|
modal?: CommonModalApp;
|
|
6964
7283
|
};
|
|
6965
|
-
type Mapped$
|
|
7284
|
+
type Mapped$9<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
6966
7285
|
id: K;
|
|
6967
7286
|
label?: string;
|
|
6968
7287
|
info?: string;
|
|
@@ -6973,6 +7292,7 @@ type Mapped$7<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
6973
7292
|
mobileOnly?: boolean;
|
|
6974
7293
|
};
|
|
6975
7294
|
hide?: boolean;
|
|
7295
|
+
dynamicSource?: true;
|
|
6976
7296
|
ignoreReRender?: boolean;
|
|
6977
7297
|
allowBackgroundImageAndVideo?: boolean;
|
|
6978
7298
|
hideOnState?: {
|
|
@@ -6997,6 +7317,7 @@ type Mapped$7<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
6997
7317
|
compoDefaultValue?: ResponsiveConfig<U>;
|
|
6998
7318
|
emptyOnClear?: boolean;
|
|
6999
7319
|
showVideo?: boolean;
|
|
7320
|
+
disableGetDefault?: boolean;
|
|
7000
7321
|
} : {
|
|
7001
7322
|
id: K;
|
|
7002
7323
|
label?: string;
|
|
@@ -7034,19 +7355,20 @@ type Mapped$7<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7034
7355
|
showVideo?: boolean;
|
|
7035
7356
|
default?: T;
|
|
7036
7357
|
compoDefaultValue?: T;
|
|
7358
|
+
disableGetDefault?: boolean;
|
|
7037
7359
|
};
|
|
7038
7360
|
type SharedControlType<T> = {
|
|
7039
|
-
[K in keyof T]-?: Mapped$
|
|
7361
|
+
[K in keyof T]-?: Mapped$9<K, T[K]>;
|
|
7040
7362
|
}[keyof T];
|
|
7041
7363
|
|
|
7042
|
-
type Option$
|
|
7364
|
+
type Option$7 = {
|
|
7043
7365
|
value: number | string;
|
|
7044
7366
|
label?: string | number;
|
|
7045
7367
|
type?: string;
|
|
7046
7368
|
icon?: string;
|
|
7047
7369
|
isTextIcon?: boolean;
|
|
7048
7370
|
};
|
|
7049
|
-
type Mapped$
|
|
7371
|
+
type Mapped$8<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
7050
7372
|
id: K;
|
|
7051
7373
|
label: string;
|
|
7052
7374
|
info?: string;
|
|
@@ -7064,7 +7386,7 @@ type Mapped$6<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7064
7386
|
};
|
|
7065
7387
|
placeholder?: string;
|
|
7066
7388
|
type: 'layout-custom-segment';
|
|
7067
|
-
options: Option$
|
|
7389
|
+
options: Option$7[];
|
|
7068
7390
|
devices?: ResponsiveConfig<U>;
|
|
7069
7391
|
iconViewBox?: string;
|
|
7070
7392
|
enableItemBackground?: boolean;
|
|
@@ -7089,14 +7411,14 @@ type Mapped$6<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7089
7411
|
};
|
|
7090
7412
|
placeholder?: string;
|
|
7091
7413
|
type: 'layout-custom-segment';
|
|
7092
|
-
options?: Option$
|
|
7414
|
+
options?: Option$7[];
|
|
7093
7415
|
iconViewBox?: string;
|
|
7094
7416
|
enableItemBackground?: boolean;
|
|
7095
7417
|
enableTooltip?: boolean;
|
|
7096
7418
|
default?: T;
|
|
7097
7419
|
};
|
|
7098
7420
|
type LayoutCustomSegmentControlType<T> = {
|
|
7099
|
-
[K in keyof T]-?: Mapped$
|
|
7421
|
+
[K in keyof T]-?: Mapped$8<K, T[K]>;
|
|
7100
7422
|
}[keyof T];
|
|
7101
7423
|
|
|
7102
7424
|
type AngleControlType<T> = SharedControlType<T> & {
|
|
@@ -7108,12 +7430,12 @@ type AngleControlType<T> = SharedControlType<T> & {
|
|
|
7108
7430
|
readonly?: boolean;
|
|
7109
7431
|
};
|
|
7110
7432
|
|
|
7111
|
-
type Option$
|
|
7433
|
+
type Option$6<T> = {
|
|
7112
7434
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
7113
7435
|
text: string | number;
|
|
7114
7436
|
desc?: any;
|
|
7115
7437
|
};
|
|
7116
|
-
type Mapped$
|
|
7438
|
+
type Mapped$7<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
7117
7439
|
id: K;
|
|
7118
7440
|
label: string;
|
|
7119
7441
|
hideOnMode?: {
|
|
@@ -7129,7 +7451,7 @@ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7129
7451
|
active?: boolean;
|
|
7130
7452
|
};
|
|
7131
7453
|
type: 'checkbox';
|
|
7132
|
-
options: Option$
|
|
7454
|
+
options: Option$6<T>[];
|
|
7133
7455
|
devices?: ResponsiveConfig<U>;
|
|
7134
7456
|
} : {
|
|
7135
7457
|
id: K;
|
|
@@ -7147,11 +7469,11 @@ type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7147
7469
|
active?: boolean;
|
|
7148
7470
|
};
|
|
7149
7471
|
type: 'checkbox';
|
|
7150
|
-
options: Option$
|
|
7472
|
+
options: Option$6<T>[];
|
|
7151
7473
|
default?: T;
|
|
7152
7474
|
};
|
|
7153
7475
|
type CheckboxControlType<T> = {
|
|
7154
|
-
[K in keyof T]-?: Mapped$
|
|
7476
|
+
[K in keyof T]-?: Mapped$7<K, T[K]>;
|
|
7155
7477
|
}[keyof T];
|
|
7156
7478
|
|
|
7157
7479
|
type ChildrensControlType = {
|
|
@@ -7240,6 +7562,7 @@ type InputNumberControlType<T> = SharedControlType<T> & {
|
|
|
7240
7562
|
min?: number;
|
|
7241
7563
|
max?: number;
|
|
7242
7564
|
readonly?: boolean;
|
|
7565
|
+
includeUnit?: 'px' | '%';
|
|
7243
7566
|
};
|
|
7244
7567
|
|
|
7245
7568
|
type SizeUnit$2 = 's' | '%' | 'cm' | 'mm' | 'Q' | 'in' | 'pc' | 'pt' | 'px' | 'em' | 'cap' | 'ex' | 'ch' | 'ic' | 'rem' | 'lh' | 'rlh' | 'vw' | 'vh' | 'vi' | 'vb' | 'vmin' | 'vmax' | 'ms' | 'min' | 'days';
|
|
@@ -7296,14 +7619,14 @@ type RangeControlType<T> = SharedControlType<T> & {
|
|
|
7296
7619
|
maxRelated?: string;
|
|
7297
7620
|
}>;
|
|
7298
7621
|
|
|
7299
|
-
type Option$
|
|
7622
|
+
type Option$5<T> = {
|
|
7300
7623
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
7301
7624
|
label?: string | number;
|
|
7302
7625
|
type?: string;
|
|
7303
7626
|
icon?: string;
|
|
7304
7627
|
tooltip?: string;
|
|
7305
7628
|
};
|
|
7306
|
-
type Mapped$
|
|
7629
|
+
type Mapped$6<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
7307
7630
|
id: K;
|
|
7308
7631
|
label?: string;
|
|
7309
7632
|
info?: string;
|
|
@@ -7321,7 +7644,7 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7321
7644
|
};
|
|
7322
7645
|
placeholder?: string;
|
|
7323
7646
|
type: 'segment' | 'accordion:segment';
|
|
7324
|
-
options: Option$
|
|
7647
|
+
options: Option$5<T>[];
|
|
7325
7648
|
iconCustom?: boolean;
|
|
7326
7649
|
devices?: ResponsiveConfig<U>;
|
|
7327
7650
|
} : {
|
|
@@ -7342,12 +7665,12 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7342
7665
|
};
|
|
7343
7666
|
placeholder?: string;
|
|
7344
7667
|
type: 'segment' | 'accordion:segment';
|
|
7345
|
-
options: Option$
|
|
7668
|
+
options: Option$5<T>[];
|
|
7346
7669
|
iconCustom?: boolean;
|
|
7347
7670
|
default?: T;
|
|
7348
7671
|
};
|
|
7349
7672
|
type SegmentControlType<T> = {
|
|
7350
|
-
[K in keyof T]-?: Mapped$
|
|
7673
|
+
[K in keyof T]-?: Mapped$6<K, T[K]>;
|
|
7351
7674
|
}[keyof T];
|
|
7352
7675
|
|
|
7353
7676
|
type OpenLinkControlType<T> = SharedControlType<T> & {
|
|
@@ -7358,7 +7681,7 @@ type OpenLinkControlType<T> = SharedControlType<T> & {
|
|
|
7358
7681
|
linkType?: 'openApp' | 'install';
|
|
7359
7682
|
};
|
|
7360
7683
|
|
|
7361
|
-
type Option$
|
|
7684
|
+
type Option$4<T> = {
|
|
7362
7685
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
7363
7686
|
label: string | number;
|
|
7364
7687
|
hideOnPage?: string[];
|
|
@@ -7371,7 +7694,7 @@ type Option$2<T> = {
|
|
|
7371
7694
|
note?: string;
|
|
7372
7695
|
maxOption?: number;
|
|
7373
7696
|
};
|
|
7374
|
-
type Mapped$
|
|
7697
|
+
type Mapped$5<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
7375
7698
|
id: K;
|
|
7376
7699
|
label?: string;
|
|
7377
7700
|
info?: string;
|
|
@@ -7390,7 +7713,7 @@ type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7390
7713
|
};
|
|
7391
7714
|
placeholder?: string;
|
|
7392
7715
|
type: 'select';
|
|
7393
|
-
options: Option$
|
|
7716
|
+
options: Option$4<T>[];
|
|
7394
7717
|
devices?: ResponsiveConfig<U>;
|
|
7395
7718
|
} : {
|
|
7396
7719
|
id: K;
|
|
@@ -7410,12 +7733,12 @@ type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7410
7733
|
};
|
|
7411
7734
|
placeholder?: string;
|
|
7412
7735
|
type: 'select';
|
|
7413
|
-
options: Option$
|
|
7736
|
+
options: Option$4<T>[];
|
|
7414
7737
|
default?: T;
|
|
7415
7738
|
isFullWidth?: boolean;
|
|
7416
7739
|
};
|
|
7417
7740
|
type SelectControlType<T> = {
|
|
7418
|
-
[K in keyof T]-?: Mapped$
|
|
7741
|
+
[K in keyof T]-?: Mapped$5<K, T[K]>;
|
|
7419
7742
|
}[keyof T];
|
|
7420
7743
|
|
|
7421
7744
|
type TextareaControlType<T> = SharedControlType<T> & {
|
|
@@ -7465,9 +7788,150 @@ type TypographyControlType<T> = SharedControlType<T> & {
|
|
|
7465
7788
|
popup?: boolean;
|
|
7466
7789
|
};
|
|
7467
7790
|
|
|
7791
|
+
type SettingStateType = 'normal' | 'hover' | 'focus' | 'active' | 'price' | 'compareAtPrice';
|
|
7792
|
+
type LangKey = 'en' | 'vi';
|
|
7793
|
+
type LabelWithLang = {
|
|
7794
|
+
[P in keyof Record<LangKey, ''>]?: string;
|
|
7795
|
+
};
|
|
7796
|
+
type SettingMediaType = 'image' | 'youtubeVideoID';
|
|
7797
|
+
type SettingUIHelpType = {
|
|
7798
|
+
content: string;
|
|
7799
|
+
button?: {
|
|
7800
|
+
label: string;
|
|
7801
|
+
link: string;
|
|
7802
|
+
};
|
|
7803
|
+
media?: {
|
|
7804
|
+
value: string;
|
|
7805
|
+
type: SettingMediaType;
|
|
7806
|
+
};
|
|
7807
|
+
};
|
|
7808
|
+
type LinkWithSetting = {
|
|
7809
|
+
name: string;
|
|
7810
|
+
state?: string;
|
|
7811
|
+
field?: string;
|
|
7812
|
+
getLinkValue?: boolean;
|
|
7813
|
+
};
|
|
7814
|
+
type ControlConfig = ControlProp<any> & {
|
|
7815
|
+
linkWithSetting?: LinkWithSetting;
|
|
7816
|
+
};
|
|
7817
|
+
type Plan = 'trial' | 'build' | 'starter' | 'optimize' | 'advanced' | 'trial2022' | 'enterprise' | 'development' | 'professional';
|
|
7818
|
+
type LabelVariant = 'primary' | 'secondary' | 'bold';
|
|
7819
|
+
type SettingUIControl = {
|
|
7820
|
+
id?: string;
|
|
7821
|
+
controlConfig?: ControlConfig;
|
|
7822
|
+
type?: 'control' | 'combo' | 'tab' | 'toggleGroup';
|
|
7823
|
+
layout?: 'vertical' | 'horizontal';
|
|
7824
|
+
toggleGroupId?: string;
|
|
7825
|
+
label?: LabelWithLang;
|
|
7826
|
+
conditionDisplay?: string;
|
|
7827
|
+
conditionEnable?: string;
|
|
7828
|
+
options?: {
|
|
7829
|
+
fullWidth?: boolean;
|
|
7830
|
+
onlyShowInTags?: string[];
|
|
7831
|
+
target?: 'tab';
|
|
7832
|
+
disableMessage?: string;
|
|
7833
|
+
nearestSupportedPlan?: Plan;
|
|
7834
|
+
lockedOnPlans?: Plan[];
|
|
7835
|
+
labelVariant?: LabelVariant;
|
|
7836
|
+
labelInsideControl?: boolean;
|
|
7837
|
+
hideLabel?: boolean;
|
|
7838
|
+
updateFields?: {
|
|
7839
|
+
field: string;
|
|
7840
|
+
settingId: string;
|
|
7841
|
+
state?: SettingStateType;
|
|
7842
|
+
}[];
|
|
7843
|
+
};
|
|
7844
|
+
setting?: {
|
|
7845
|
+
id: string;
|
|
7846
|
+
state?: SettingStateType;
|
|
7847
|
+
};
|
|
7848
|
+
searchKeyword?: string;
|
|
7849
|
+
controlChangeTrigger?: ControlTrigger;
|
|
7850
|
+
tabs?: SettingUITab[];
|
|
7851
|
+
info?: LabelWithLang;
|
|
7852
|
+
compoDefaultValue?: any | Record<NameDevices$1, any>;
|
|
7853
|
+
} & SettingUICompo;
|
|
7854
|
+
type ControlTriggerAction$1 = {
|
|
7855
|
+
controlId: string;
|
|
7856
|
+
newValue?: any;
|
|
7857
|
+
valueFromField?: string;
|
|
7858
|
+
controlType: string;
|
|
7859
|
+
groupType: string;
|
|
7860
|
+
valueIfNull?: any;
|
|
7861
|
+
removeDevice?: boolean;
|
|
7862
|
+
state?: SettingStateType;
|
|
7863
|
+
};
|
|
7864
|
+
type ControlTriggerSetting = {
|
|
7865
|
+
source?: string[];
|
|
7866
|
+
condition?: string;
|
|
7867
|
+
action: ControlTriggerAction$1;
|
|
7868
|
+
};
|
|
7869
|
+
type ControlTrigger = {
|
|
7870
|
+
settings?: ControlTriggerSetting[];
|
|
7871
|
+
options?: {
|
|
7872
|
+
noRecordHistory?: boolean;
|
|
7873
|
+
};
|
|
7874
|
+
};
|
|
7875
|
+
type SettingUICompo = {
|
|
7876
|
+
controls?: SettingUIControl[];
|
|
7877
|
+
iconName?: string;
|
|
7878
|
+
getValueFromSettingID?: string;
|
|
7879
|
+
defaultValueWhenClear?: any;
|
|
7880
|
+
fixedValue?: string;
|
|
7881
|
+
placeholder?: string;
|
|
7882
|
+
help?: SettingUIHelpType;
|
|
7883
|
+
popoverLabel?: LabelWithLang;
|
|
7884
|
+
comboType?: 'color' | 'image';
|
|
7885
|
+
isHideClear?: boolean;
|
|
7886
|
+
};
|
|
7887
|
+
type SettingUIMoreSetting = {
|
|
7888
|
+
label?: LabelWithLang;
|
|
7889
|
+
labelAction?: LabelWithLang;
|
|
7890
|
+
controls?: SettingUIControl[];
|
|
7891
|
+
help?: SettingUIHelpType;
|
|
7892
|
+
type?: SettingUIMoreSettingType;
|
|
7893
|
+
};
|
|
7894
|
+
type SettingUIMoreSettingType = 'button' | 'collapse' | 'icon';
|
|
7895
|
+
type SettingUITab = {
|
|
7896
|
+
label?: LabelWithLang;
|
|
7897
|
+
controls?: SettingUIControl[];
|
|
7898
|
+
hide?: boolean;
|
|
7899
|
+
conditionDisplay?: string;
|
|
7900
|
+
};
|
|
7901
|
+
type SettingUIToggleGroup = {
|
|
7902
|
+
label?: LabelWithLang;
|
|
7903
|
+
id?: string;
|
|
7904
|
+
controls?: SettingUIControl[];
|
|
7905
|
+
};
|
|
7906
|
+
type SettingUIToggleSettings = {
|
|
7907
|
+
controls?: SettingUIControl[];
|
|
7908
|
+
isActiveDefault?: boolean;
|
|
7909
|
+
} & SettingUIControl & SettingUIToggleGroup;
|
|
7910
|
+
type SettingUIGroup = {
|
|
7911
|
+
label?: LabelWithLang;
|
|
7912
|
+
message?: string;
|
|
7913
|
+
disableToggle?: boolean;
|
|
7914
|
+
conditionDisplay?: string;
|
|
7915
|
+
conditionEnable?: string;
|
|
7916
|
+
controls?: SettingUIControl[];
|
|
7917
|
+
moreSettings?: SettingUIMoreSetting;
|
|
7918
|
+
toggleSettings?: SettingUIToggleSettings[];
|
|
7919
|
+
states?: SettingUITab[];
|
|
7920
|
+
help?: SettingUIHelpType;
|
|
7921
|
+
options?: {
|
|
7922
|
+
disableMessage?: string;
|
|
7923
|
+
};
|
|
7924
|
+
};
|
|
7925
|
+
|
|
7468
7926
|
type PickLinkControlType<T> = SharedControlType<T> & {
|
|
7469
7927
|
type: 'pick-link';
|
|
7470
7928
|
pickLinkLabel?: string;
|
|
7929
|
+
isHiddenInsertLink?: boolean;
|
|
7930
|
+
isHiddenOpenLinkSelect?: boolean;
|
|
7931
|
+
hiddenOptions?: {
|
|
7932
|
+
[key: string]: boolean;
|
|
7933
|
+
};
|
|
7934
|
+
customLabel?: LabelWithLang;
|
|
7471
7935
|
};
|
|
7472
7936
|
|
|
7473
7937
|
type BehaviorStateControlType<T> = {
|
|
@@ -7541,6 +8005,12 @@ type SelectVariantControlType = {
|
|
|
7541
8005
|
hide?: boolean;
|
|
7542
8006
|
};
|
|
7543
8007
|
|
|
8008
|
+
type VariantListingControlType = {
|
|
8009
|
+
id: string;
|
|
8010
|
+
type: 'variant:listing';
|
|
8011
|
+
label?: string;
|
|
8012
|
+
};
|
|
8013
|
+
|
|
7544
8014
|
type BackgroundControlType<T> = SharedControlType<T> & {
|
|
7545
8015
|
type: 'background';
|
|
7546
8016
|
value?: Background;
|
|
@@ -7635,14 +8105,15 @@ type CustomCodeEditor = {
|
|
|
7635
8105
|
id: string;
|
|
7636
8106
|
};
|
|
7637
8107
|
|
|
7638
|
-
type Option$
|
|
8108
|
+
type Option$3<T> = {
|
|
7639
8109
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
7640
8110
|
label?: string | number;
|
|
7641
8111
|
type?: string;
|
|
7642
8112
|
icon?: string;
|
|
8113
|
+
iconName?: string;
|
|
7643
8114
|
isTextIcon?: boolean;
|
|
7644
8115
|
};
|
|
7645
|
-
type Mapped$
|
|
8116
|
+
type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
7646
8117
|
id: K;
|
|
7647
8118
|
label: string;
|
|
7648
8119
|
info?: string;
|
|
@@ -7660,7 +8131,11 @@ type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7660
8131
|
};
|
|
7661
8132
|
placeholder?: string;
|
|
7662
8133
|
type: 'layout-segment';
|
|
7663
|
-
options: Option$
|
|
8134
|
+
options: Option$3<T>[];
|
|
8135
|
+
groups?: {
|
|
8136
|
+
label: string;
|
|
8137
|
+
options: Option$3<T>[];
|
|
8138
|
+
}[];
|
|
7664
8139
|
devices?: ResponsiveConfig<U>;
|
|
7665
8140
|
iconViewBox?: string;
|
|
7666
8141
|
enableItemBackground?: boolean;
|
|
@@ -7687,14 +8162,18 @@ type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7687
8162
|
type: 'layout-segment';
|
|
7688
8163
|
itemPerRow?: number;
|
|
7689
8164
|
itemSpacing?: 'large' | 'small';
|
|
7690
|
-
options?: Option$
|
|
8165
|
+
options?: Option$3<T>[];
|
|
8166
|
+
groups?: {
|
|
8167
|
+
label: string;
|
|
8168
|
+
options: Option$3<T>[];
|
|
8169
|
+
}[];
|
|
7691
8170
|
iconViewBox?: string;
|
|
7692
8171
|
enableItemBackground?: boolean;
|
|
7693
8172
|
enableTooltip?: boolean;
|
|
7694
8173
|
default?: T;
|
|
7695
8174
|
};
|
|
7696
8175
|
type LayoutSegmentControlType<T> = {
|
|
7697
|
-
[K in keyof T]-?: Mapped$
|
|
8176
|
+
[K in keyof T]-?: Mapped$4<K, T[K]>;
|
|
7698
8177
|
}[keyof T];
|
|
7699
8178
|
|
|
7700
8179
|
type InputSpacing<T> = SharedControlType<T> & {
|
|
@@ -7786,6 +8265,8 @@ type TypographyV2ControlType<T> = SharedControlType<T> & {
|
|
|
7786
8265
|
color?: boolean;
|
|
7787
8266
|
transform?: boolean;
|
|
7788
8267
|
fontWeight?: boolean;
|
|
8268
|
+
textShadow?: boolean;
|
|
8269
|
+
textAlign?: boolean;
|
|
7789
8270
|
};
|
|
7790
8271
|
disableCollapse?: boolean;
|
|
7791
8272
|
};
|
|
@@ -7815,7 +8296,7 @@ type Actions = {
|
|
|
7815
8296
|
actionHandle?: string;
|
|
7816
8297
|
link?: string;
|
|
7817
8298
|
};
|
|
7818
|
-
type Mapped$
|
|
8299
|
+
type Mapped$3<K, T> = {
|
|
7819
8300
|
id: K;
|
|
7820
8301
|
label: string;
|
|
7821
8302
|
info?: string;
|
|
@@ -7824,7 +8305,7 @@ type Mapped$1<K, T> = {
|
|
|
7824
8305
|
default?: T;
|
|
7825
8306
|
};
|
|
7826
8307
|
type StepsGuide<T> = {
|
|
7827
|
-
[K in keyof T]-?: Mapped$
|
|
8308
|
+
[K in keyof T]-?: Mapped$3<K, T[K]>;
|
|
7828
8309
|
}[keyof T];
|
|
7829
8310
|
|
|
7830
8311
|
type ImageShape<T> = SharedControlType<T> & {
|
|
@@ -7934,14 +8415,14 @@ type SneakPeakRange<T> = SharedControlType<T> & {
|
|
|
7934
8415
|
sneakPeakType?: string;
|
|
7935
8416
|
};
|
|
7936
8417
|
|
|
7937
|
-
type Option<T> = {
|
|
8418
|
+
type Option$2<T> = {
|
|
7938
8419
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
7939
8420
|
label?: string | number;
|
|
7940
8421
|
type?: string;
|
|
7941
8422
|
icon?: string;
|
|
7942
8423
|
isTextIcon?: boolean;
|
|
7943
8424
|
};
|
|
7944
|
-
type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
8425
|
+
type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
7945
8426
|
id: K;
|
|
7946
8427
|
label: string;
|
|
7947
8428
|
info?: string;
|
|
@@ -7959,7 +8440,7 @@ type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7959
8440
|
};
|
|
7960
8441
|
placeholder?: string;
|
|
7961
8442
|
type: 'sneak-peak-type';
|
|
7962
|
-
options: Option<T>[];
|
|
8443
|
+
options: Option$2<T>[];
|
|
7963
8444
|
devices?: ResponsiveConfig<U>;
|
|
7964
8445
|
iconViewBox?: string;
|
|
7965
8446
|
enableItemBackground?: boolean;
|
|
@@ -7984,14 +8465,14 @@ type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
7984
8465
|
};
|
|
7985
8466
|
placeholder?: string;
|
|
7986
8467
|
type: 'sneak-peak-type';
|
|
7987
|
-
options?: Option<T>[];
|
|
8468
|
+
options?: Option$2<T>[];
|
|
7988
8469
|
iconViewBox?: string;
|
|
7989
8470
|
enableItemBackground?: boolean;
|
|
7990
8471
|
enableTooltip?: boolean;
|
|
7991
8472
|
default?: T;
|
|
7992
8473
|
};
|
|
7993
8474
|
type SneakPeakTypeControlType<T> = {
|
|
7994
|
-
[K in keyof T]-?: Mapped<K, T[K]>;
|
|
8475
|
+
[K in keyof T]-?: Mapped$2<K, T[K]>;
|
|
7995
8476
|
}[keyof T];
|
|
7996
8477
|
|
|
7997
8478
|
type ProductInputCurrencyUnitControlType<T> = SharedControlType<T> & {
|
|
@@ -8174,135 +8655,9 @@ type ProductHandleType<T> = SharedControlType<T> & {
|
|
|
8174
8655
|
type: 'product-handle';
|
|
8175
8656
|
};
|
|
8176
8657
|
|
|
8177
|
-
type SettingStateType = 'normal' | 'hover' | 'focus' | 'active' | 'price' | 'compareAtPrice';
|
|
8178
|
-
type LangKey = 'en' | 'vi';
|
|
8179
|
-
type LabelWithLang = {
|
|
8180
|
-
[P in keyof Record<LangKey, ''>]?: string;
|
|
8181
|
-
};
|
|
8182
|
-
type SettingMediaType = 'image' | 'youtubeVideoID';
|
|
8183
|
-
type SettingUIHelpType = {
|
|
8184
|
-
content: string;
|
|
8185
|
-
button?: {
|
|
8186
|
-
label: string;
|
|
8187
|
-
link: string;
|
|
8188
|
-
};
|
|
8189
|
-
media?: {
|
|
8190
|
-
value: string;
|
|
8191
|
-
type: SettingMediaType;
|
|
8192
|
-
};
|
|
8193
|
-
};
|
|
8194
|
-
type LinkWithSetting = {
|
|
8195
|
-
name: string;
|
|
8196
|
-
state?: string;
|
|
8197
|
-
field?: string;
|
|
8198
|
-
getLinkValue?: boolean;
|
|
8199
|
-
};
|
|
8200
|
-
type ControlConfig = ControlProp<any> & {
|
|
8201
|
-
linkWithSetting?: LinkWithSetting;
|
|
8202
|
-
};
|
|
8203
|
-
type Plan = 'trial' | 'build' | 'starter' | 'optimize' | 'advanced' | 'trial2022' | 'enterprise' | 'development' | 'professional';
|
|
8204
|
-
type LabelVariant = 'primary' | 'secondary' | 'bold';
|
|
8205
|
-
type SettingUIControl = {
|
|
8206
|
-
id?: string;
|
|
8207
|
-
controlConfig?: ControlConfig;
|
|
8208
|
-
type?: 'control' | 'combo' | 'tab' | 'toggleGroup';
|
|
8209
|
-
layout?: 'vertical' | 'horizontal';
|
|
8210
|
-
toggleGroupId?: string;
|
|
8211
|
-
label?: LabelWithLang;
|
|
8212
|
-
conditionDisplay?: string;
|
|
8213
|
-
conditionEnable?: string;
|
|
8214
|
-
options?: {
|
|
8215
|
-
fullWidth?: boolean;
|
|
8216
|
-
onlyShowInTags?: string[];
|
|
8217
|
-
target?: 'tab';
|
|
8218
|
-
disableMessage?: string;
|
|
8219
|
-
nearestSupportedPlan?: Plan;
|
|
8220
|
-
lockedOnPlans?: Plan[];
|
|
8221
|
-
labelVariant?: LabelVariant;
|
|
8222
|
-
labelInsideControl?: boolean;
|
|
8223
|
-
hideLabel?: boolean;
|
|
8224
|
-
updateFields?: {
|
|
8225
|
-
field: string;
|
|
8226
|
-
settingId: string;
|
|
8227
|
-
}[];
|
|
8228
|
-
};
|
|
8229
|
-
setting?: {
|
|
8230
|
-
id: string;
|
|
8231
|
-
state?: SettingStateType;
|
|
8232
|
-
};
|
|
8233
|
-
searchKeyword?: string;
|
|
8234
|
-
controlChangeTrigger?: ControlTrigger;
|
|
8235
|
-
tabs?: SettingUITab[];
|
|
8236
|
-
info?: LabelWithLang;
|
|
8237
|
-
compoDefaultValue?: any | Record<NameDevices$1, any>;
|
|
8238
|
-
} & SettingUICompo;
|
|
8239
|
-
type ControlTriggerAction$1 = {
|
|
8240
|
-
controlId: string;
|
|
8241
|
-
newValue?: any;
|
|
8242
|
-
valueFromField?: string;
|
|
8243
|
-
controlType: string;
|
|
8244
|
-
groupType: string;
|
|
8245
|
-
valueIfNull?: any;
|
|
8246
|
-
removeDevice?: boolean;
|
|
8247
|
-
};
|
|
8248
|
-
type ControlTriggerSetting = {
|
|
8249
|
-
source?: string[];
|
|
8250
|
-
condition?: string;
|
|
8251
|
-
action: ControlTriggerAction$1;
|
|
8252
|
-
};
|
|
8253
|
-
type ControlTrigger = {
|
|
8254
|
-
settings?: ControlTriggerSetting[];
|
|
8255
|
-
options?: {
|
|
8256
|
-
noRecordHistory?: boolean;
|
|
8257
|
-
};
|
|
8258
|
-
};
|
|
8259
|
-
type SettingUICompo = {
|
|
8260
|
-
controls?: SettingUIControl[];
|
|
8261
|
-
iconName?: string;
|
|
8262
|
-
getValueFromSettingID?: string;
|
|
8263
|
-
fixedValue?: string;
|
|
8264
|
-
placeholder?: string;
|
|
8265
|
-
help?: SettingUIHelpType;
|
|
8266
|
-
};
|
|
8267
|
-
type SettingUIMoreSetting = {
|
|
8268
|
-
label?: LabelWithLang;
|
|
8269
|
-
labelAction?: LabelWithLang;
|
|
8270
|
-
controls?: SettingUIControl[];
|
|
8271
|
-
help?: SettingUIHelpType;
|
|
8272
|
-
};
|
|
8273
|
-
type SettingUITab = {
|
|
8274
|
-
label?: LabelWithLang;
|
|
8275
|
-
controls?: SettingUIControl[];
|
|
8276
|
-
hide?: boolean;
|
|
8277
|
-
conditionDisplay?: string;
|
|
8278
|
-
};
|
|
8279
|
-
type SettingUIToggleGroup = {
|
|
8280
|
-
label?: LabelWithLang;
|
|
8281
|
-
id?: string;
|
|
8282
|
-
controls?: SettingUIControl[];
|
|
8283
|
-
};
|
|
8284
|
-
type SettingUIToggleSettings = {
|
|
8285
|
-
controls?: SettingUIControl[];
|
|
8286
|
-
isActiveDefault?: boolean;
|
|
8287
|
-
} & SettingUIControl & SettingUIToggleGroup;
|
|
8288
|
-
type SettingUIGroup = {
|
|
8289
|
-
label?: LabelWithLang;
|
|
8290
|
-
message?: string;
|
|
8291
|
-
disableToggle?: boolean;
|
|
8292
|
-
conditionDisplay?: string;
|
|
8293
|
-
conditionEnable?: string;
|
|
8294
|
-
controls?: SettingUIControl[];
|
|
8295
|
-
moreSettings?: SettingUIMoreSetting;
|
|
8296
|
-
toggleSettings?: SettingUIToggleSettings[];
|
|
8297
|
-
states?: SettingUITab[];
|
|
8298
|
-
help?: SettingUIHelpType;
|
|
8299
|
-
options?: {
|
|
8300
|
-
disableMessage?: string;
|
|
8301
|
-
};
|
|
8302
|
-
};
|
|
8303
|
-
|
|
8304
8658
|
type ColorPickerV2ControlType<T> = SharedControlType<T> & {
|
|
8305
8659
|
type: 'color-picker-v2';
|
|
8660
|
+
enableGradient?: boolean;
|
|
8306
8661
|
};
|
|
8307
8662
|
|
|
8308
8663
|
type BorderV2ControlType<T> = SharedControlType<T> & {
|
|
@@ -8326,6 +8681,9 @@ type BackgroundImageValue = {
|
|
|
8326
8681
|
src: string;
|
|
8327
8682
|
width: number;
|
|
8328
8683
|
height: number;
|
|
8684
|
+
backupFileKey?: string;
|
|
8685
|
+
storage?: 'THEME' | 'FILE_CONTENT';
|
|
8686
|
+
backupFilePath?: string;
|
|
8329
8687
|
};
|
|
8330
8688
|
size?: BgSize$1;
|
|
8331
8689
|
position?: BgPosition$1;
|
|
@@ -8522,6 +8880,14 @@ type GlobalSwatchesData = {
|
|
|
8522
8880
|
optionType: SwatchesOptionType;
|
|
8523
8881
|
optionValues: SwatchesOptionValue[];
|
|
8524
8882
|
};
|
|
8883
|
+
type PaddingType = {
|
|
8884
|
+
type?: 'small' | 'medium' | 'large' | 'custom';
|
|
8885
|
+
top?: string;
|
|
8886
|
+
left?: string;
|
|
8887
|
+
bottom?: string;
|
|
8888
|
+
right?: string;
|
|
8889
|
+
linked?: boolean;
|
|
8890
|
+
};
|
|
8525
8891
|
|
|
8526
8892
|
type ShadowV2ControlType<T> = SharedControlType<T> & {
|
|
8527
8893
|
type: 'shadow-v2';
|
|
@@ -8572,7 +8938,137 @@ type ImageV2ControlType<T> = SharedControlType<T> & {
|
|
|
8572
8938
|
type: 'image-v2';
|
|
8573
8939
|
};
|
|
8574
8940
|
|
|
8575
|
-
type
|
|
8941
|
+
type ComboControlType<T> = SharedControlType<T> & {
|
|
8942
|
+
type: 'combo';
|
|
8943
|
+
readonly?: boolean;
|
|
8944
|
+
};
|
|
8945
|
+
|
|
8946
|
+
type Option$1<T> = {
|
|
8947
|
+
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
8948
|
+
label?: string | number;
|
|
8949
|
+
iconName?: string;
|
|
8950
|
+
type?: string;
|
|
8951
|
+
noPadding?: string;
|
|
8952
|
+
};
|
|
8953
|
+
type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
8954
|
+
id: K;
|
|
8955
|
+
label: string;
|
|
8956
|
+
info?: string;
|
|
8957
|
+
hide?: boolean;
|
|
8958
|
+
hideOnMode?: {
|
|
8959
|
+
responsive?: boolean;
|
|
8960
|
+
mobileOnly?: boolean;
|
|
8961
|
+
};
|
|
8962
|
+
disableToggle?: boolean;
|
|
8963
|
+
state?: {
|
|
8964
|
+
normal?: boolean;
|
|
8965
|
+
hover?: boolean;
|
|
8966
|
+
focus?: boolean;
|
|
8967
|
+
active?: boolean;
|
|
8968
|
+
};
|
|
8969
|
+
placeholder?: string;
|
|
8970
|
+
type: 'layout-selector';
|
|
8971
|
+
options: Option$1<T>[];
|
|
8972
|
+
groups?: {
|
|
8973
|
+
label: string;
|
|
8974
|
+
options: Option$1<T>[];
|
|
8975
|
+
}[];
|
|
8976
|
+
devices?: ResponsiveConfig<U>;
|
|
8977
|
+
iconViewBox?: string;
|
|
8978
|
+
enableItemBackground?: boolean;
|
|
8979
|
+
itemPerRow?: number;
|
|
8980
|
+
itemSpacing?: 'large' | 'small';
|
|
8981
|
+
enableTooltip?: boolean;
|
|
8982
|
+
} : {
|
|
8983
|
+
id: K;
|
|
8984
|
+
label: string;
|
|
8985
|
+
info?: string;
|
|
8986
|
+
hide?: boolean;
|
|
8987
|
+
hideOnMode?: {
|
|
8988
|
+
responsive?: boolean;
|
|
8989
|
+
mobileOnly?: boolean;
|
|
8990
|
+
};
|
|
8991
|
+
disableToggle?: boolean;
|
|
8992
|
+
state?: {
|
|
8993
|
+
normal?: boolean;
|
|
8994
|
+
hover?: boolean;
|
|
8995
|
+
focus?: boolean;
|
|
8996
|
+
active?: boolean;
|
|
8997
|
+
};
|
|
8998
|
+
placeholder?: string;
|
|
8999
|
+
type: 'layout-selector';
|
|
9000
|
+
itemPerRow?: number;
|
|
9001
|
+
itemSpacing?: 'large' | 'small';
|
|
9002
|
+
options?: Option$1<T>[];
|
|
9003
|
+
groups?: {
|
|
9004
|
+
label: string;
|
|
9005
|
+
options: Option$1<T>[];
|
|
9006
|
+
}[];
|
|
9007
|
+
iconViewBox?: string;
|
|
9008
|
+
enableItemBackground?: boolean;
|
|
9009
|
+
enableTooltip?: boolean;
|
|
9010
|
+
default?: T;
|
|
9011
|
+
};
|
|
9012
|
+
type LayoutSelectorControlType<T> = {
|
|
9013
|
+
[K in keyof T]-?: Mapped$1<K, T[K]>;
|
|
9014
|
+
}[keyof T];
|
|
9015
|
+
|
|
9016
|
+
type Option<T> = {
|
|
9017
|
+
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
9018
|
+
label?: string | number;
|
|
9019
|
+
type?: string;
|
|
9020
|
+
icon?: string;
|
|
9021
|
+
tooltip?: string;
|
|
9022
|
+
iconName?: string;
|
|
9023
|
+
};
|
|
9024
|
+
type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
9025
|
+
id: K;
|
|
9026
|
+
label?: string;
|
|
9027
|
+
info?: string;
|
|
9028
|
+
hide?: boolean;
|
|
9029
|
+
hideOnMode?: {
|
|
9030
|
+
responsive?: boolean;
|
|
9031
|
+
mobileOnly?: boolean;
|
|
9032
|
+
};
|
|
9033
|
+
disableToggle?: boolean;
|
|
9034
|
+
state?: {
|
|
9035
|
+
normal?: boolean;
|
|
9036
|
+
hover?: boolean;
|
|
9037
|
+
focus?: boolean;
|
|
9038
|
+
active?: boolean;
|
|
9039
|
+
};
|
|
9040
|
+
placeholder?: string;
|
|
9041
|
+
type: 'segment-v2';
|
|
9042
|
+
options: Option<T>[];
|
|
9043
|
+
iconCustom?: boolean;
|
|
9044
|
+
devices?: ResponsiveConfig<U>;
|
|
9045
|
+
} : {
|
|
9046
|
+
id: K;
|
|
9047
|
+
label?: string;
|
|
9048
|
+
info?: string;
|
|
9049
|
+
hide?: boolean;
|
|
9050
|
+
hideOnMode?: {
|
|
9051
|
+
responsive?: boolean;
|
|
9052
|
+
mobileOnly?: boolean;
|
|
9053
|
+
};
|
|
9054
|
+
disableToggle?: boolean;
|
|
9055
|
+
state?: {
|
|
9056
|
+
normal?: boolean;
|
|
9057
|
+
hover?: boolean;
|
|
9058
|
+
focus?: boolean;
|
|
9059
|
+
active?: boolean;
|
|
9060
|
+
};
|
|
9061
|
+
placeholder?: string;
|
|
9062
|
+
type: 'segment-v2';
|
|
9063
|
+
options: Option<T>[];
|
|
9064
|
+
iconCustom?: boolean;
|
|
9065
|
+
default?: T;
|
|
9066
|
+
};
|
|
9067
|
+
type SegmentV2ControlType<T> = {
|
|
9068
|
+
[K in keyof T]-?: Mapped<K, T[K]>;
|
|
9069
|
+
}[keyof T];
|
|
9070
|
+
|
|
9071
|
+
type ControlProp<T> = ProductBundleChildControlType<T> | SelectProductBundleControlType<T> | AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | OpenLinkControlType<T> | SelectControlType<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<T> | TypographyV2ControlType<T> | MenuControlType<T> | BehaviorStateControlType<T> | PickLinkControlType<T> | BoxShadowControlType<T> | TextShadowControlType<T> | BorderControlType<T> | BorderRadiusControlType<T> | RadiusPresetControlType<T> | SizeControlType<T> | ChildItemType<T> | PickMultiProductControlType<T> | CollectionControlType<T> | BackgroundControlType<T> | VisibilityControlType<T> | SelectVariantControlType | VariantListingControlType | CountdownEvergreenType | Timezone<T> | CustomContentControlType<T> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T> | LayoutSegmentControlType<T> | InputSpacing<T> | UniqueIdControlType<T> | PositionSquareControlType<T> | CustomCodeEditor | LayoutControlType<T> | LayoutBannerControlType<T> | SwatchesLinkControlType<T> | VariantSwatchesPresetControlType<T> | VariantSwatchesOnlyDefaultVariantControlType<T> | ProductListControlType<T> | ArticleListControlType<T> | CollectionBannerControlType<T> | Ratio<T> | StickyDisplayControlType<T> | SyncProductPropertiesControlType<T> | StepsGuide<T> | ImageShape<T> | GridArrange<T> | SizeSetting$1<T> | ChildIconType<T> | DropdownInput<T> | Dropdown<T> | AliPickSectionControlType<T> | ParallaxScrollingType<T> | BackgroundColorPickerType<T> | PlayPauseControlType<T> | LayoutCustomSegmentControlType<T> | SneakPeakRange<T> | SneakPeakTypeControlType<T> | SneakPeakControlType<T> | ProductInputCurrencyUnitControlType<T> | TypographyPostPurchaseControlType<T> | ProductOffersControlType<T> | DiscountAndShippingFee<T> | PostPurchaseTextareaControlType<T> | NotesControlType<T> | ButtonLayoutType<T> | ShapeSelectorControlType<T> | DisplayTriggerControlType<T> | CustomPositionControlType<T> | DealControlType<T> | ProductHandleType<T> | ColorPickerV2ControlType<T> | BorderV2ControlType<T> | CornerV2ControlType<T> | PaddingV2ControlType<T> | BackgroundImageType<T> | BackgroundVideoType<T> | ShadowV2ControlType<T> | BackgroundMediaControlType<T> | BackgroundVideoType<T> | SwitchControlType<T> | ImageV2ControlType<T> | LayoutSelectorControlType<T> | ComboControlType<T> | SegmentV2ControlType<T>;
|
|
8576
9072
|
type ControlTriggerAction = {
|
|
8577
9073
|
controlId: string;
|
|
8578
9074
|
newValue?: any;
|
|
@@ -8598,6 +9094,7 @@ type ComponentSetting<P extends BaseProps> = {
|
|
|
8598
9094
|
image?: string;
|
|
8599
9095
|
icon?: string;
|
|
8600
9096
|
settings?: Setting<P>[];
|
|
9097
|
+
settingsV2?: Setting<P>[];
|
|
8601
9098
|
advanced?: Record<string, any>;
|
|
8602
9099
|
rootOverride?: Record<string, any>;
|
|
8603
9100
|
init?: InitComponentType[] | {
|
|
@@ -31231,9 +31728,10 @@ type Props = {
|
|
|
31231
31728
|
components: Record<string, any>;
|
|
31232
31729
|
extraFiles?: ExtraFiles;
|
|
31233
31730
|
pageContext?: PageContext;
|
|
31731
|
+
additionalSettings?: Record<string, any>;
|
|
31234
31732
|
[key: string]: any;
|
|
31235
31733
|
};
|
|
31236
|
-
declare const Render: ({ uid, builder, components, parentId, extraFiles, pageContext, ...passProps }: Props) => {
|
|
31734
|
+
declare const Render: ({ uid, builder, components, parentId, extraFiles, pageContext, additionalSettings, ...passProps }: Props) => {
|
|
31237
31735
|
liquid: string;
|
|
31238
31736
|
extraFiles: ExtraFiles;
|
|
31239
31737
|
};
|
|
@@ -31416,6 +31914,8 @@ type ProductListProviderProps = ProductListContextProps & {
|
|
|
31416
31914
|
declare const ProductListProvider: React.FC<ProductListProviderProps>;
|
|
31417
31915
|
declare const useProductListStore: <U>(selector: (state: ExtractState<StoreApi<ProductListContextProps>>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined) => U;
|
|
31418
31916
|
|
|
31917
|
+
type MediaSelectFragment = Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>;
|
|
31918
|
+
|
|
31419
31919
|
type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
|
|
31420
31920
|
collections?: Maybe$1<{
|
|
31421
31921
|
edges: Array<{
|
|
@@ -31443,8 +31943,6 @@ type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdA
|
|
|
31443
31943
|
featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
|
|
31444
31944
|
};
|
|
31445
31945
|
|
|
31446
|
-
type MediaSelectFragment = Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>;
|
|
31447
|
-
|
|
31448
31946
|
type AttributeProp = {
|
|
31449
31947
|
key: string;
|
|
31450
31948
|
value?: string;
|
|
@@ -31473,6 +31971,12 @@ type ProductContextProps = {
|
|
|
31473
31971
|
updatePrice?: boolean;
|
|
31474
31972
|
hasPreSelected?: boolean;
|
|
31475
31973
|
setHasPreSelected: (value: boolean) => void;
|
|
31974
|
+
requireUpload?: boolean;
|
|
31975
|
+
setRequireUpload: (value: boolean) => void;
|
|
31976
|
+
shouldRequireUploadMessage?: boolean;
|
|
31977
|
+
setShouldRequireUploadMessage: (value: boolean) => void;
|
|
31978
|
+
useProductCompareAtPrice?: boolean;
|
|
31979
|
+
setUseProductCompareAtPrice: (value?: boolean) => void;
|
|
31476
31980
|
};
|
|
31477
31981
|
type ProductProviderProps = Pick<ProductContextProps, 'product' | 'quantity' | 'selectedOptions' | 'isSyncProduct'> & {
|
|
31478
31982
|
initialVariantId?: string;
|
|
@@ -31518,6 +32022,7 @@ type ShopContextProps = {
|
|
|
31518
32022
|
isStorefront?: boolean;
|
|
31519
32023
|
createThemeSectionCount?: number;
|
|
31520
32024
|
plan?: string;
|
|
32025
|
+
timezone?: string;
|
|
31521
32026
|
generateContentLimitation?: {
|
|
31522
32027
|
isAllow: boolean;
|
|
31523
32028
|
maxGenerateCount?: number;
|
|
@@ -31802,6 +32307,7 @@ type PublishedThemePagesQueryResponse = {
|
|
|
31802
32307
|
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
31803
32308
|
themePageCustomFonts?: Maybe$1<Array<Maybe$1<CustomFont$1>>>;
|
|
31804
32309
|
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
32310
|
+
metafiels?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'id' | 'key' | 'value'>>>>;
|
|
31805
32311
|
}>>>;
|
|
31806
32312
|
};
|
|
31807
32313
|
declare const PublishedThemePagesDocument: string;
|
|
@@ -31867,22 +32373,29 @@ type StorePropertyQueryResponse = {
|
|
|
31867
32373
|
};
|
|
31868
32374
|
declare const StorePropertyDocument = "\n query storeProperty {\n storeProperty {\n favicon\n swatchesConfig\n primaryDomain\n }\n}\n ";
|
|
31869
32375
|
|
|
31870
|
-
type
|
|
32376
|
+
type PreviewThemePageQueryVariables = Exact$1<{
|
|
32377
|
+
pageType: PreviewThemePageType$1;
|
|
31871
32378
|
handleURL?: InputMaybe$1<Scalars$2['String']>;
|
|
31872
|
-
pageType: PublishedThemePageType$1;
|
|
31873
32379
|
}>;
|
|
31874
|
-
type
|
|
31875
|
-
|
|
31876
|
-
pageSections?: Maybe$1<Array<Maybe$1<Pick<
|
|
31877
|
-
|
|
31878
|
-
|
|
31879
|
-
|
|
31880
|
-
|
|
31881
|
-
|
|
31882
|
-
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
32380
|
+
type PreviewThemePageQueryResponse = {
|
|
32381
|
+
previewThemePage?: Maybe$1<Pick<PreviewThemePage, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
|
|
32382
|
+
pageSections?: Maybe$1<Array<Maybe$1<Pick<PreviewPageSection, 'cid' | 'component' | 'id'>>>>;
|
|
32383
|
+
dataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
|
|
32384
|
+
themeStyle?: Maybe$1<Pick<PreviewThemeStyle, 'id' | 'data' | 'name'>>;
|
|
32385
|
+
analytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
32386
|
+
customCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
32387
|
+
customFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'mimeType' | 'filePath'>>>>;
|
|
31883
32388
|
}>;
|
|
31884
32389
|
};
|
|
31885
|
-
declare const
|
|
32390
|
+
declare const PreviewThemePageDocument: string;
|
|
32391
|
+
|
|
32392
|
+
type ShopShopifyQueryVariables = Exact$1<{
|
|
32393
|
+
[key: string]: never;
|
|
32394
|
+
}>;
|
|
32395
|
+
type ShopShopifyQueryResponse = {
|
|
32396
|
+
shopShopify?: Maybe$1<Pick<ShopShopify$1, 'timezone'>>;
|
|
32397
|
+
};
|
|
32398
|
+
declare const ShopShopifyDocument = "\n query shopShopify {\n shopShopify {\n timezone\n }\n}\n ";
|
|
31886
32399
|
|
|
31887
32400
|
type VariantSelectFragment = Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
|
|
31888
32401
|
selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
|
|
@@ -32131,15 +32644,15 @@ declare const makeHeight: (heighValue?: ObjectDevices<string | number>, autoHeig
|
|
|
32131
32644
|
declare const makeAspectRatio: (aspectRatio?: ObjectDevices<string>, aspectWidth?: ObjectDevices<string | number>, aspectHeight?: ObjectDevices<string | number>) => ObjectDevices<string>;
|
|
32132
32645
|
declare const makeLineClamp: (lineClampValue?: ObjectDevices<number>, hasLineClampValue?: ObjectDevices<boolean>) => ObjectDevices<string | number | undefined>;
|
|
32133
32646
|
|
|
32134
|
-
type Devices = 'desktop' | 'tablet' | 'mobile';
|
|
32135
|
-
type Options = {
|
|
32647
|
+
type Devices$1 = 'desktop' | 'tablet' | 'mobile';
|
|
32648
|
+
type Options$1 = {
|
|
32136
32649
|
liquid?: boolean;
|
|
32137
32650
|
ignoreBgAttachment?: boolean;
|
|
32138
32651
|
ignoreBackgroundImage?: boolean;
|
|
32139
32652
|
ignoreBackgroundImageProperties?: boolean;
|
|
32140
32653
|
ignoreBackgroundColor?: boolean;
|
|
32141
32654
|
};
|
|
32142
|
-
declare const getStyleBackgroundByDevice: (background?: ObjectDevices<Background>, options?: Options) => {
|
|
32655
|
+
declare const getStyleBackgroundByDevice: (background?: ObjectDevices<Background>, options?: Options$1) => {
|
|
32143
32656
|
"--bga"?: string | undefined;
|
|
32144
32657
|
"--bga-tablet"?: string | undefined;
|
|
32145
32658
|
"--bga-mobile"?: string | undefined;
|
|
@@ -32160,7 +32673,7 @@ declare const getStyleBackgroundByDevice: (background?: ObjectDevices<Background
|
|
|
32160
32673
|
"--bgc-mobile"?: string | undefined;
|
|
32161
32674
|
};
|
|
32162
32675
|
declare const getStyleBgColor: (background: ObjectDevices<Background>) => Record<ResponsiveKey<"bgc">, string>;
|
|
32163
|
-
declare const getBgImageByDevice: (background: ObjectDevices<Background>, device: Devices, options?: Options) => string | undefined;
|
|
32676
|
+
declare const getBgImageByDevice: (background: ObjectDevices<Background>, device: Devices$1, options?: Options$1) => string | undefined;
|
|
32164
32677
|
declare const composeBackgroundCss: (backgroundColor?: ColorValueType) => string;
|
|
32165
32678
|
declare const makeFixedBgAttachment: (background?: ObjectDevices<Background>) => {
|
|
32166
32679
|
wrapper: {
|
|
@@ -32172,7 +32685,23 @@ declare const makeFixedBgAttachment: (background?: ObjectDevices<Background>) =>
|
|
|
32172
32685
|
} | undefined;
|
|
32173
32686
|
declare const GRADIENT_BGR_KEY = "linear-gradient";
|
|
32174
32687
|
declare const getGradientBgrStyleForButton: (backgroundStyle: Partial<Record<StateType, ColorValueType>> | undefined) => {} | undefined;
|
|
32175
|
-
declare const getGradientBgrStyleByDevice: (backgroundStyle: Partial<Record<Devices, Background>> | undefined, ignoreBackgroundImage?: Record<Devices, boolean>) => {} | undefined;
|
|
32688
|
+
declare const getGradientBgrStyleByDevice: (backgroundStyle: Partial<Record<Devices$1, Background>> | undefined, ignoreBackgroundImage?: Record<Devices$1, boolean>) => {} | undefined;
|
|
32689
|
+
|
|
32690
|
+
type Devices = 'desktop' | 'tablet' | 'mobile';
|
|
32691
|
+
type Options = {
|
|
32692
|
+
liquid?: boolean;
|
|
32693
|
+
ignoreBgAttachment?: boolean;
|
|
32694
|
+
ignoreBackgroundImage?: boolean;
|
|
32695
|
+
ignoreBackgroundImageProperties?: boolean;
|
|
32696
|
+
};
|
|
32697
|
+
declare const getStyleBackgroundImageByDevice: (backgroundImage?: ObjectDevices<StateProp<BackgroundImageValue>>, options?: Options) => {};
|
|
32698
|
+
declare const getStyleBgImageSource: (backgroundImage: ObjectDevices<StateProp<BackgroundImageValue>>, options?: Options) => {};
|
|
32699
|
+
declare const getBgImageSourceByDevice: (backgroundImage: ObjectDevices<StateProp<BackgroundImageValue>>, device: Devices, state: StateType, options?: Options) => string | undefined;
|
|
32700
|
+
declare const composeBackgroundImageCss: (config?: ObjectDevices<StateProp<BackgroundImageValue>>, options?: {
|
|
32701
|
+
useLiquid?: boolean;
|
|
32702
|
+
device?: 'desktop' | 'tablet' | 'mobile';
|
|
32703
|
+
state?: 'normal' | 'hover';
|
|
32704
|
+
}) => string | undefined;
|
|
32176
32705
|
|
|
32177
32706
|
type ColorType = 'bg' | 'text' | 'border' | 'decoration';
|
|
32178
32707
|
type ColorProp = 'bgc' | 'bc' | 'c' | 'bg';
|
|
@@ -38308,8 +38837,10 @@ declare const gridToArrayRegex: RegExp;
|
|
|
38308
38837
|
declare const optionLayoutStyle: (column?: ObjectDevices<string | number>) => React.CSSProperties;
|
|
38309
38838
|
declare const composeGridLayout: (layout?: ObjectDevices<ObjectLayoutValue>) => React.CSSProperties;
|
|
38310
38839
|
declare const convertOldLayout: (layout?: ObjectDevices<string>) => ObjectDevices<ObjectLayoutValue>;
|
|
38840
|
+
declare const getLayoutClasses: (layout: Partial<Record<NameDevices$1, string>> | undefined) => Record<string, boolean>;
|
|
38311
38841
|
|
|
38312
38842
|
declare const convertTextAlignToJustify: (align: Partial<Record<NameDevices$1, AlignProp>> | undefined) => Record<string, boolean>;
|
|
38843
|
+
declare const getAlignmentClasses: (align: Partial<Record<NameDevices$1, AlignProp>> | undefined) => Record<string, boolean>;
|
|
38313
38844
|
|
|
38314
38845
|
declare function checkInStock(variant?: VariantSelectFragment, product?: ProductSelectFragment): boolean;
|
|
38315
38846
|
|
|
@@ -39901,6 +40432,9 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
39901
40432
|
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
39902
40433
|
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
39903
40434
|
} | undefined;
|
|
40435
|
+
declare const getResponsiveStyleShadowWithoutState: (value?: any, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: any) => {
|
|
40436
|
+
[x: string]: string;
|
|
40437
|
+
} | undefined;
|
|
39904
40438
|
declare const composeShadowCss: ({ hasBoxShadow, boxShadowValue, important, }: {
|
|
39905
40439
|
hasBoxShadow?: boolean | undefined;
|
|
39906
40440
|
boxShadowValue?: ShadowProps | undefined;
|
|
@@ -39934,15 +40468,22 @@ declare const getGlobalSizeGap: (globalSize?: ObjectDevices<SizeSettingGlobal>)
|
|
|
39934
40468
|
declare const makeStyleWithDefault: <T extends ShortHandProperty, K>(name: T, value?: Partial<Record<NameDevices$1, K>> | undefined, defaultVal?: Partial<Record<NameDevices$1, K>> | undefined) => Record<ResponsiveKey<T>, K>;
|
|
39935
40469
|
declare const getWidthHeightGlobalSize: (type: 'width' | 'height', globalSize?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string | number>>;
|
|
39936
40470
|
declare const getHeightByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string>>;
|
|
39937
|
-
declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean) => Partial<Record<NameDevices$1, string>>;
|
|
40471
|
+
declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean, defaultFull?: boolean) => Partial<Record<NameDevices$1, string>>;
|
|
39938
40472
|
declare const getAspectRatioGlobalSize: (shape?: ObjectDevices<SizeSettingGlobal>) => ObjectDevices<string>;
|
|
39939
40473
|
declare const getPaddingGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => React.CSSProperties;
|
|
39940
40474
|
declare const getValueByDevice: <T>(value: any, device: NameDevices$1) => T;
|
|
40475
|
+
declare const getPaddingStyleByDevice: (value?: PaddingType, device?: NameDevices$1) => {
|
|
40476
|
+
[x: string]: string | undefined;
|
|
40477
|
+
};
|
|
40478
|
+
declare const getResponsiveStylePadding: (value?: ObjectDevices<PaddingType>) => {
|
|
40479
|
+
[x: string]: string | undefined;
|
|
40480
|
+
} | undefined;
|
|
39941
40481
|
|
|
39942
40482
|
type TypographyClass = `gp-g-${TypographyType}`;
|
|
39943
40483
|
declare const genTypoClass: (name: TypographyType) => TypographyClass;
|
|
39944
40484
|
declare const composeTypographyCss: (typography: TypographySetting | undefined) => string;
|
|
39945
40485
|
declare const composeTypographyV2Css: (typography: TypographySettingV2 | undefined, isImportant?: boolean) => string;
|
|
40486
|
+
declare const composeTextHoverColorCss: (device: NameDevices$1, colorHoverConfig?: ObjectDevices<StateProp<ColorValueType>>, isImportant?: boolean) => string | undefined;
|
|
39946
40487
|
declare const composeTypography: (typography?: ObjectDevices<TypographyProps>) => React.CSSProperties;
|
|
39947
40488
|
declare const composeTypographyV2: (value?: TypographyV2Props, attrs?: TypographyV2Attrs) => React.CSSProperties;
|
|
39948
40489
|
declare const composeFontFamilyTypographyV2: (value?: TypographyV2Props & {
|
|
@@ -41474,10 +42015,72 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
41474
42015
|
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
41475
42016
|
};
|
|
41476
42017
|
|
|
42018
|
+
type ArticlesQueryVariables = Exact$1<{
|
|
42019
|
+
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
42020
|
+
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
42021
|
+
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
42022
|
+
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
42023
|
+
orderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
42024
|
+
where?: InputMaybe$1<ArticleWhereInput$1>;
|
|
42025
|
+
}>;
|
|
42026
|
+
type ArticlesQueryResponse = {
|
|
42027
|
+
articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
|
|
42028
|
+
edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
|
|
42029
|
+
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'author'> & {
|
|
42030
|
+
tags: Array<never>;
|
|
42031
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
42032
|
+
blogs?: Maybe$1<{
|
|
42033
|
+
edges: Array<{
|
|
42034
|
+
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
42035
|
+
}>;
|
|
42036
|
+
}>;
|
|
42037
|
+
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
42038
|
+
})>;
|
|
42039
|
+
})>;
|
|
42040
|
+
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
42041
|
+
})>;
|
|
42042
|
+
};
|
|
42043
|
+
|
|
42044
|
+
type BlogsQueryVariables = Exact$1<{
|
|
42045
|
+
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
42046
|
+
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
42047
|
+
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
42048
|
+
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
42049
|
+
orderBy?: InputMaybe$1<BlogOrder$1>;
|
|
42050
|
+
where?: InputMaybe$1<BlogWhereInput$1>;
|
|
42051
|
+
articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
42052
|
+
}>;
|
|
42053
|
+
type BlogsQueryResponse = {
|
|
42054
|
+
blogs?: Maybe$1<(Pick<BlogConnection$1, 'totalCount'> & {
|
|
42055
|
+
edges: Array<(Pick<BlogEdge$1, 'cursor'> & {
|
|
42056
|
+
node?: Maybe$1<(Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
|
|
42057
|
+
articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
|
|
42058
|
+
edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
|
|
42059
|
+
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
|
|
42060
|
+
tags: Array<never>;
|
|
42061
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
42062
|
+
blogs?: Maybe$1<{
|
|
42063
|
+
edges: Array<{
|
|
42064
|
+
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
42065
|
+
}>;
|
|
42066
|
+
}>;
|
|
42067
|
+
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
42068
|
+
})>;
|
|
42069
|
+
})>;
|
|
42070
|
+
})>;
|
|
42071
|
+
})>;
|
|
42072
|
+
})>;
|
|
42073
|
+
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
42074
|
+
})>;
|
|
42075
|
+
};
|
|
42076
|
+
|
|
42077
|
+
declare const useArticlesQuery: (variables: ArticlesQueryVariables | null, options?: SWRConfiguration<ArticlesQueryResponse>) => swr__internal.SWRResponse<ArticlesQueryResponse, any, Partial<swr__internal.PublicConfiguration<ArticlesQueryResponse, any, (arg: ["query/articles", any]) => swr__internal.FetcherResponse<ArticlesQueryResponse>>> | undefined>;
|
|
42078
|
+
declare const useBlogsQuery: (variables: BlogsQueryVariables | null, options?: SWRConfiguration<BlogsQueryResponse>) => swr__internal.SWRResponse<BlogsQueryResponse, any, Partial<swr__internal.PublicConfiguration<BlogsQueryResponse, any, (arg: ["query/blogs", any]) => swr__internal.FetcherResponse<BlogsQueryResponse>>> | undefined>;
|
|
42079
|
+
|
|
41477
42080
|
type Func$6 = ReturnType<typeof addToCartOperation>;
|
|
41478
42081
|
type Response$6 = Awaited<ReturnType<Func$6>>;
|
|
41479
42082
|
type Args$5 = Parameters<Func$6>[0];
|
|
41480
|
-
declare const useAddToCart: (options?: SWRMutationConfiguration<Response$6, any,
|
|
42083
|
+
declare const useAddToCart: (options?: SWRMutationConfiguration<Response$6, any, 'add-to-cart', Args$5>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, "add-to-cart", _gem_sdk_adapter_common_dist_types_types_cart.AddCartLineInput>;
|
|
41481
42084
|
|
|
41482
42085
|
type Func$5 = ReturnType<typeof getCartOperation>;
|
|
41483
42086
|
type Response$5 = Awaited<ReturnType<Func$5>>;
|
|
@@ -41486,27 +42089,27 @@ declare const useCartData: (options?: SWRConfiguration<Response$5 | undefined, a
|
|
|
41486
42089
|
type Func$4 = ReturnType<typeof cartDiscountCodesUpdateOperation>;
|
|
41487
42090
|
type Response$4 = Awaited<ReturnType<Func$4>>;
|
|
41488
42091
|
type Args$4 = Parameters<Func$4>[0];
|
|
41489
|
-
declare const useCartDiscountCodesUpdate: (options?: SWRMutationConfiguration<Response$4, any,
|
|
42092
|
+
declare const useCartDiscountCodesUpdate: (options?: SWRMutationConfiguration<Response$4, any, 'cart-discount-codes-update', Args$4>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, "cart-discount-codes-update", _gem_sdk_adapter_common_dist_types_types_cart.CartDiscountCodesUpdateInput>;
|
|
41490
42093
|
|
|
41491
42094
|
type Func$3 = ReturnType<typeof cartNoteUpdateOperation>;
|
|
41492
42095
|
type Response$3 = Awaited<ReturnType<Func$3>>;
|
|
41493
42096
|
type Args$3 = Parameters<Func$3>[0];
|
|
41494
|
-
declare const useCartNoteUpdate: (options?: SWRMutationConfiguration<Response$3, any,
|
|
42097
|
+
declare const useCartNoteUpdate: (options?: SWRMutationConfiguration<Response$3, any, 'cart-note-update', Args$3>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, "cart-note-update", _gem_sdk_adapter_common_dist_types_types_cart.CartNoteUpdateInput>;
|
|
41495
42098
|
|
|
41496
42099
|
type Func$2 = ReturnType<typeof createCartOperation>;
|
|
41497
42100
|
type Response$2 = Awaited<ReturnType<Func$2>>;
|
|
41498
42101
|
type Args$2 = Parameters<Func$2>[0];
|
|
41499
|
-
declare const useCreateCart: (options?: SWRMutationConfiguration<Response$2, any,
|
|
42102
|
+
declare const useCreateCart: (options?: SWRMutationConfiguration<Response$2, any, 'create-cart', Args$2>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, "create-cart", _gem_sdk_adapter_common_dist_types_types_cart.CreateCartInput>;
|
|
41500
42103
|
|
|
41501
42104
|
type Func$1 = ReturnType<typeof removeCartItemOperation>;
|
|
41502
42105
|
type Response$1 = Awaited<ReturnType<Func$1>>;
|
|
41503
42106
|
type Args$1 = Parameters<Func$1>[0];
|
|
41504
|
-
declare const useRemoveCartItem: (options?: SWRMutationConfiguration<Response$1, any,
|
|
42107
|
+
declare const useRemoveCartItem: (options?: SWRMutationConfiguration<Response$1, any, 'remove-cart-item', Args$1>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, "remove-cart-item", _gem_sdk_adapter_common_dist_types_types_cart.RemoveCartLineInput>;
|
|
41505
42108
|
|
|
41506
42109
|
type Func = ReturnType<typeof updateCartLineOperation>;
|
|
41507
42110
|
type Response = Awaited<ReturnType<Func>>;
|
|
41508
42111
|
type Args = Parameters<Func>[0];
|
|
41509
|
-
declare const useUpdateCartItem: (options?: SWRMutationConfiguration<Response, any,
|
|
42112
|
+
declare const useUpdateCartItem: (options?: SWRMutationConfiguration<Response, any, 'update-cart-item', Args>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, "update-cart-item", _gem_sdk_adapter_common_dist_types_types_cart.UpdateCartLineInput>;
|
|
41510
42113
|
|
|
41511
42114
|
declare const useLocale: () => {
|
|
41512
42115
|
locale: string | undefined;
|
|
@@ -41516,6 +42119,9 @@ declare const useCurrency: () => {
|
|
|
41516
42119
|
currency: string | undefined;
|
|
41517
42120
|
changeCurrency: (currency: string) => void;
|
|
41518
42121
|
};
|
|
42122
|
+
declare const useTimezone: () => {
|
|
42123
|
+
timezone: string | undefined;
|
|
42124
|
+
};
|
|
41519
42125
|
declare const useMoneyFormat: () => {
|
|
41520
42126
|
moneyFormat: string | undefined;
|
|
41521
42127
|
moneyWithCurrencyFormat: string | undefined;
|
|
@@ -41561,10 +42167,6 @@ declare const useProductsQueryAll: (variable?: VariableRelatedStyles | undefined
|
|
|
41561
42167
|
|
|
41562
42168
|
declare const useCurrentDevice: () => NameDevices$1;
|
|
41563
42169
|
|
|
41564
|
-
declare const shopifyPriceRounding: (amount: number | string, precision?: number) => string;
|
|
41565
|
-
declare const formatMoney: (cents: string, format: any) => string;
|
|
41566
|
-
declare const useFormatMoney: (amount: number, withCurrency: boolean) => string;
|
|
41567
|
-
|
|
41568
42170
|
declare const useLazyVideo: () => void;
|
|
41569
42171
|
|
|
41570
42172
|
declare const useCartId: () => {
|
|
@@ -41583,6 +42185,12 @@ declare function useCartUI(): {
|
|
|
41583
42185
|
|
|
41584
42186
|
declare const useCollection: () => CollectionSelectFragment | undefined;
|
|
41585
42187
|
|
|
42188
|
+
declare const shopifyPriceRounding: (amount: number | string, precision?: number) => string;
|
|
42189
|
+
declare const formatMoney: (cents: string, format: any) => string;
|
|
42190
|
+
declare const useFormatMoney: (amount: number, withCurrency: boolean) => string;
|
|
42191
|
+
|
|
42192
|
+
declare const useInitialSwatchesOptions: (options?: ProductOption$1[]) => never[] | undefined;
|
|
42193
|
+
|
|
41586
42194
|
declare const useIsomorphicLayoutEffect: typeof useLayoutEffect;
|
|
41587
42195
|
|
|
41588
42196
|
type LoadScriptParams = Parameters<typeof loadScript>;
|
|
@@ -41639,68 +42247,6 @@ declare const useMoney: (amount: number) => UseMoneyValue;
|
|
|
41639
42247
|
|
|
41640
42248
|
declare const usePrevious: <T>(value: T) => T | undefined;
|
|
41641
42249
|
|
|
41642
|
-
type ArticlesQueryVariables = Exact$1<{
|
|
41643
|
-
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
41644
|
-
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
41645
|
-
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
41646
|
-
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
41647
|
-
orderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
41648
|
-
where?: InputMaybe$1<ArticleWhereInput$1>;
|
|
41649
|
-
}>;
|
|
41650
|
-
type ArticlesQueryResponse = {
|
|
41651
|
-
articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
|
|
41652
|
-
edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
|
|
41653
|
-
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
|
|
41654
|
-
tags: Array<never>;
|
|
41655
|
-
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
41656
|
-
blogs?: Maybe$1<{
|
|
41657
|
-
edges: Array<{
|
|
41658
|
-
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
41659
|
-
}>;
|
|
41660
|
-
}>;
|
|
41661
|
-
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
41662
|
-
})>;
|
|
41663
|
-
})>;
|
|
41664
|
-
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
41665
|
-
})>;
|
|
41666
|
-
};
|
|
41667
|
-
|
|
41668
|
-
type BlogsQueryVariables = Exact$1<{
|
|
41669
|
-
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
41670
|
-
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
41671
|
-
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
41672
|
-
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
41673
|
-
orderBy?: InputMaybe$1<BlogOrder$1>;
|
|
41674
|
-
where?: InputMaybe$1<BlogWhereInput$1>;
|
|
41675
|
-
articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
41676
|
-
}>;
|
|
41677
|
-
type BlogsQueryResponse = {
|
|
41678
|
-
blogs?: Maybe$1<(Pick<BlogConnection$1, 'totalCount'> & {
|
|
41679
|
-
edges: Array<(Pick<BlogEdge$1, 'cursor'> & {
|
|
41680
|
-
node?: Maybe$1<(Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
|
|
41681
|
-
articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
|
|
41682
|
-
edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
|
|
41683
|
-
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
|
|
41684
|
-
tags: Array<never>;
|
|
41685
|
-
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
41686
|
-
blogs?: Maybe$1<{
|
|
41687
|
-
edges: Array<{
|
|
41688
|
-
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
41689
|
-
}>;
|
|
41690
|
-
}>;
|
|
41691
|
-
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
41692
|
-
})>;
|
|
41693
|
-
})>;
|
|
41694
|
-
})>;
|
|
41695
|
-
})>;
|
|
41696
|
-
})>;
|
|
41697
|
-
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
41698
|
-
})>;
|
|
41699
|
-
};
|
|
41700
|
-
|
|
41701
|
-
declare const useArticlesQuery: (variables: ArticlesQueryVariables | null, options?: SWRConfiguration<ArticlesQueryResponse>) => swr__internal.SWRResponse<ArticlesQueryResponse, any, Partial<swr__internal.PublicConfiguration<ArticlesQueryResponse, any, (arg: ["query/articles", any]) => swr__internal.FetcherResponse<ArticlesQueryResponse>>> | undefined>;
|
|
41702
|
-
declare const useBlogsQuery: (variables: BlogsQueryVariables | null, options?: SWRConfiguration<BlogsQueryResponse>) => swr__internal.SWRResponse<BlogsQueryResponse, any, Partial<swr__internal.PublicConfiguration<BlogsQueryResponse, any, (arg: ["query/blogs", any]) => swr__internal.FetcherResponse<BlogsQueryResponse>>> | undefined>;
|
|
41703
|
-
|
|
41704
42250
|
declare const useUniqProductID: () => string;
|
|
41705
42251
|
declare const useProduct: () => ProductSelectFragment | undefined;
|
|
41706
42252
|
declare const useFeaturedImageGlobal: () => MediaSelectFragment | undefined;
|
|
@@ -41710,6 +42256,14 @@ declare const useProductProperties: () => {
|
|
|
41710
42256
|
required?: boolean | undefined;
|
|
41711
42257
|
}[] | undefined;
|
|
41712
42258
|
declare const useIsSyncProduct: () => boolean | undefined;
|
|
42259
|
+
declare const useProductBundleDiscount: () => {
|
|
42260
|
+
useProductCompareAtPrice: boolean | undefined;
|
|
42261
|
+
seUseProductCompareAtPrice: (value?: boolean | undefined) => void;
|
|
42262
|
+
};
|
|
42263
|
+
declare const useProductShopifyEditLink: () => {
|
|
42264
|
+
linkEditProduct: string;
|
|
42265
|
+
redirectProductShopifyLink: () => void;
|
|
42266
|
+
};
|
|
41713
42267
|
declare const useQuantity: () => {
|
|
41714
42268
|
quantity: number | undefined;
|
|
41715
42269
|
hasUpdatePrice: boolean | undefined;
|
|
@@ -41745,6 +42299,16 @@ declare const useVariantOutStock: (optionId: string, optionValue: string, option
|
|
|
41745
42299
|
declare const useCheckAvailableVariantInStock: (optionId: string, optionValue: string) => boolean;
|
|
41746
42300
|
declare const useProductOfferDiscount: () => number;
|
|
41747
42301
|
|
|
42302
|
+
type ShopifyLinkParam = {
|
|
42303
|
+
productId?: string;
|
|
42304
|
+
articleId?: string;
|
|
42305
|
+
};
|
|
42306
|
+
declare const useShopifyLink: ({ productId, articleId }: ShopifyLinkParam) => {
|
|
42307
|
+
linkShopDefault: string;
|
|
42308
|
+
linkEditProduct: string;
|
|
42309
|
+
linkEditArticle: string;
|
|
42310
|
+
};
|
|
42311
|
+
|
|
41748
42312
|
declare const useProductList: () => CollectionProductSelectFragment | undefined;
|
|
41749
42313
|
declare const useProductListProducts: () => (ProductQuickSelectFragment | undefined)[] | undefined;
|
|
41750
42314
|
declare const useProductListSettings: () => {
|
|
@@ -41774,8 +42338,6 @@ declare const useSuspenseFetch: <T>(key: string | any[], promise: () => Promise<
|
|
|
41774
42338
|
|
|
41775
42339
|
declare const useSwatchesOptions: (options?: ProductOption$1[]) => ProductOption$1[];
|
|
41776
42340
|
|
|
41777
|
-
declare const useInitialSwatchesOptions: (options?: ProductOption$1[]) => never[] | undefined;
|
|
41778
|
-
|
|
41779
42341
|
type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
|
|
41780
42342
|
pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
|
|
41781
42343
|
themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
|
|
@@ -41784,6 +42346,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name'
|
|
|
41784
42346
|
themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
41785
42347
|
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
41786
42348
|
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
42349
|
+
metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'id' | 'key' | 'value'>>>>;
|
|
41787
42350
|
};
|
|
41788
42351
|
|
|
41789
42352
|
declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
|
|
@@ -41833,4 +42396,4 @@ declare const useInteraction: () => {
|
|
|
41833
42396
|
interactionListenerLoaded: (callback: () => void) => void;
|
|
41834
42397
|
};
|
|
41835
42398
|
|
|
41836
|
-
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeBorderResponsive, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStyleShadow, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|
|
42399
|
+
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, LooxReviewsWidgetTypeV2, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options$1 as Options, PaddingType, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBgImageSourceByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getLayoutClasses, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImageByDevice, getStyleBgColor, getStyleBgImageSource, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|