@gem-sdk/core 2.0.0-dev.168 → 2.0.0-dev.173
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/graphql/fragments/custom-font.generated.js +5 -1
- package/dist/cjs/graphql/fragments/published-theme-page.generated.js +2 -11
- package/dist/cjs/graphql/queries/{published-shop-metas.js → published-shop-metas.generated.js} +1 -1
- package/dist/cjs/graphql/queries/published-theme-pages.generated.js +2 -8
- package/dist/cjs/helpers/shadow.js +20 -0
- package/dist/cjs/helpers/third-party/appConfig.js +7 -0
- package/dist/cjs/helpers/third-party/constant.js +2 -1
- package/dist/cjs/index.js +3 -2
- package/dist/esm/graphql/fragments/custom-font.generated.js +5 -1
- package/dist/esm/graphql/fragments/published-theme-page.generated.js +2 -11
- package/dist/esm/graphql/queries/{published-shop-metas.js → published-shop-metas.generated.js} +1 -1
- package/dist/esm/graphql/queries/published-theme-pages.generated.js +2 -8
- package/dist/esm/helpers/shadow.js +20 -1
- package/dist/esm/helpers/third-party/appConfig.js +7 -1
- package/dist/esm/helpers/third-party/constant.js +3 -2
- package/dist/esm/index.js +2 -2
- package/dist/types/index.d.ts +1742 -222
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -36612,11 +36612,6 @@ type PageViewUpMutationVariables = Exact$1<{
|
|
|
36612
36612
|
type PageViewUpMutationResponse = Pick<Mutation$1, 'pageViewUp'>;
|
|
36613
36613
|
declare const PageViewUpDocument = "\n mutation pageViewUp($pageHandle: String!) {\n pageViewUp(pageHandle: $pageHandle)\n}\n ";
|
|
36614
36614
|
|
|
36615
|
-
type PublishedShopMetasQueryResponse = {
|
|
36616
|
-
publishedShopMetas?: Maybe$1<Array<Pick<PublishedShopMeta$1, 'id' | 'createdAt' | 'updatedAt' | 'key' | 'value'>>>;
|
|
36617
|
-
};
|
|
36618
|
-
declare const PublishedShopMetasDocument = "\n query PublishedShopMetas($keys: [String!]) {\n publishedShopMetas(keys: $keys) {\n id\n createdAt\n updatedAt\n key\n value\n }\n}\n ";
|
|
36619
|
-
|
|
36620
36615
|
type CollectionDetailFilterQueryVariables = Exact$1<{
|
|
36621
36616
|
firstProduct?: InputMaybe$1<Scalars$2['Int']>;
|
|
36622
36617
|
orderBy?: InputMaybe$1<CollectionOrder$1>;
|
|
@@ -36746,15 +36741,12 @@ type PublishedThemePagesQueryVariables = Exact$1<{
|
|
|
36746
36741
|
}>;
|
|
36747
36742
|
type PublishedThemePagesQueryResponse = {
|
|
36748
36743
|
publishedThemePages?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePage$1, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
|
|
36749
|
-
pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
|
|
36750
36744
|
themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
|
|
36751
|
-
|
|
36745
|
+
pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
|
|
36752
36746
|
pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
|
|
36753
|
-
|
|
36754
|
-
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
36755
|
-
themePageCustomFonts?: Maybe$1<Array<Maybe$1<CustomFont$1>>>;
|
|
36747
|
+
themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
|
|
36756
36748
|
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
36757
|
-
|
|
36749
|
+
metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'key' | 'value'>>>>;
|
|
36758
36750
|
}>>>;
|
|
36759
36751
|
};
|
|
36760
36752
|
declare const PublishedThemePagesDocument: string;
|
|
@@ -36831,11 +36823,19 @@ type PreviewThemePageQueryResponse = {
|
|
|
36831
36823
|
themeStyle?: Maybe$1<Pick<PreviewThemeStyle$1, 'id' | 'data' | 'name'>>;
|
|
36832
36824
|
analytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
36833
36825
|
customCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
36834
|
-
customFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'mimeType' | '
|
|
36826
|
+
customFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
|
|
36835
36827
|
}>;
|
|
36836
36828
|
};
|
|
36837
36829
|
declare const PreviewThemePageDocument: string;
|
|
36838
36830
|
|
|
36831
|
+
type PublishedShopMetasQueryVariables = Exact$1<{
|
|
36832
|
+
keys?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
36833
|
+
}>;
|
|
36834
|
+
type PublishedShopMetasQueryResponse = {
|
|
36835
|
+
publishedShopMetas?: Maybe$1<Array<Pick<PublishedShopMeta$1, 'id' | 'createdAt' | 'updatedAt' | 'key' | 'value'>>>;
|
|
36836
|
+
};
|
|
36837
|
+
declare const PublishedShopMetasDocument = "\n query PublishedShopMetas($keys: [String!]) {\n publishedShopMetas(keys: $keys) {\n id\n createdAt\n updatedAt\n key\n value\n }\n}\n ";
|
|
36838
|
+
|
|
36839
36839
|
type ShopShopifyQueryVariables = Exact$1<{
|
|
36840
36840
|
[key: string]: never;
|
|
36841
36841
|
}>;
|
|
@@ -44882,64 +44882,7 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
44882
44882
|
declare const getResponsiveStyleShadowWithoutState: (value?: any, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: any) => {
|
|
44883
44883
|
[x: string]: string;
|
|
44884
44884
|
} | undefined;
|
|
44885
|
-
declare const
|
|
44886
|
-
hasBoxShadow?: boolean | undefined;
|
|
44887
|
-
boxShadowValue?: ShadowProps | undefined;
|
|
44888
|
-
important?: boolean | undefined;
|
|
44889
|
-
}) => string | undefined;
|
|
44890
|
-
|
|
44891
|
-
declare const composeSize: (size?: ObjectDevices<SizeProps>) => React.CSSProperties;
|
|
44892
|
-
declare function genSizeClass(name: string): string;
|
|
44893
|
-
declare const composeSizeCss: (spacing?: SizeSetting) => string | undefined;
|
|
44894
|
-
declare const makeGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
44895
|
-
width: Record<ResponsiveKey<"w">, string | number>;
|
|
44896
|
-
height: Record<ResponsiveKey<"h">, string | number>;
|
|
44897
|
-
padding: React.CSSProperties;
|
|
44898
|
-
gap: {
|
|
44899
|
-
'--gg': string | undefined;
|
|
44900
|
-
'--gg-tablet': string | undefined;
|
|
44901
|
-
'--gg-mobile': string | undefined;
|
|
44902
|
-
};
|
|
44903
|
-
};
|
|
44904
|
-
declare const makeGlobalSizeIcon: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
44905
|
-
width: Record<ResponsiveKey<"w">, string | number>;
|
|
44906
|
-
height: Record<ResponsiveKey<"h">, string | number>;
|
|
44907
|
-
minWidth: Record<ResponsiveKey<"minw">, string | number>;
|
|
44908
|
-
padding: React.CSSProperties;
|
|
44909
|
-
};
|
|
44910
|
-
declare const getGlobalSizeGap: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
44911
|
-
'--gg': string | undefined;
|
|
44912
|
-
'--gg-tablet': string | undefined;
|
|
44913
|
-
'--gg-mobile': string | undefined;
|
|
44914
|
-
};
|
|
44915
|
-
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>;
|
|
44916
|
-
declare const getWidthHeightGlobalSize: (type: 'width' | 'height', globalSize?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string | number>>;
|
|
44917
|
-
declare const getHeightByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string>>;
|
|
44918
|
-
declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean, defaultFull?: boolean) => Partial<Record<NameDevices$1, string>>;
|
|
44919
|
-
declare const getAspectRatioGlobalSize: (shape?: ObjectDevices<SizeSettingGlobal>) => ObjectDevices<string>;
|
|
44920
|
-
declare const getPaddingGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => React.CSSProperties;
|
|
44921
|
-
declare const getValueByDevice: <T>(value: any, device: NameDevices$1) => T;
|
|
44922
|
-
declare const getPaddingStyleByDevice: (value?: PaddingType, device?: NameDevices$1) => {
|
|
44923
|
-
[x: string]: string | undefined;
|
|
44924
|
-
};
|
|
44925
|
-
declare const getResponsiveStylePadding: (value?: ObjectDevices<PaddingType>) => {
|
|
44926
|
-
[x: string]: string | undefined;
|
|
44927
|
-
} | undefined;
|
|
44928
|
-
|
|
44929
|
-
type TypographyClass = `gp-g-${TypographyType}`;
|
|
44930
|
-
declare const genTypoClass: (name: TypographyType) => TypographyClass;
|
|
44931
|
-
declare const composeTypographyCss: (typography: TypographySetting | undefined) => string;
|
|
44932
|
-
declare const composeTypographyV2Css: (typography: TypographySettingV2 | undefined, isImportant?: boolean) => string;
|
|
44933
|
-
declare const composeTextHoverColorCss: (device: NameDevices$1, colorHoverConfig?: ObjectDevices<StateProp<ColorValueType>>, isImportant?: boolean) => string | undefined;
|
|
44934
|
-
declare const composeTypography: (typography?: ObjectDevices<TypographyProps>) => React.CSSProperties;
|
|
44935
|
-
declare const composeTypographyV2: (value?: TypographyV2Props, attrs?: TypographyV2Attrs) => React.CSSProperties;
|
|
44936
|
-
declare const composeFontFamilyTypographyV2: (value?: TypographyV2Props & {
|
|
44937
|
-
type?: string;
|
|
44938
|
-
}) => string | undefined;
|
|
44939
|
-
declare const composeTypographyAttr: (attrs?: TypographyV2Attrs) => React.CSSProperties;
|
|
44940
|
-
declare const composeTypographyClassName: (typo?: TypographySettingV2, typography?: TypographySetting) => "" | "gp-g-heading-1" | "gp-g-heading-2" | "gp-g-heading-3" | "gp-g-subheading-1" | "gp-g-subheading-2" | "gp-g-subheading-3" | "gp-g-paragraph-1" | "gp-g-paragraph-2" | "gp-g-paragraph-3" | undefined;
|
|
44941
|
-
declare const composeFallbackTypographyStyle: (tag: string) => "var(--g-font-heading, heading)" | "var(--g-font-body, body)";
|
|
44942
|
-
declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?: TypographySetting, disableAttr?: boolean) => {
|
|
44885
|
+
declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>>) => {
|
|
44943
44886
|
[x: string]: any;
|
|
44944
44887
|
'--ai'?: csstype.Property.AlignItems | undefined;
|
|
44945
44888
|
'--hvr-ai'?: csstype.Property.AlignItems | undefined;
|
|
@@ -46461,158 +46404,1737 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
46461
46404
|
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
46462
46405
|
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
46463
46406
|
};
|
|
46407
|
+
declare const composeShadowCss: ({ hasBoxShadow, boxShadowValue, important, }: {
|
|
46408
|
+
hasBoxShadow?: boolean | undefined;
|
|
46409
|
+
boxShadowValue?: ShadowProps | undefined;
|
|
46410
|
+
important?: boolean | undefined;
|
|
46411
|
+
}) => string | undefined;
|
|
46464
46412
|
|
|
46465
|
-
|
|
46466
|
-
|
|
46467
|
-
|
|
46468
|
-
|
|
46469
|
-
|
|
46470
|
-
|
|
46471
|
-
|
|
46472
|
-
|
|
46473
|
-
|
|
46474
|
-
|
|
46475
|
-
|
|
46476
|
-
|
|
46477
|
-
tags: Array<never>;
|
|
46478
|
-
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
46479
|
-
blogs?: Maybe$1<{
|
|
46480
|
-
edges: Array<{
|
|
46481
|
-
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
46482
|
-
}>;
|
|
46483
|
-
}>;
|
|
46484
|
-
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
46485
|
-
})>;
|
|
46486
|
-
})>;
|
|
46487
|
-
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
46488
|
-
})>;
|
|
46489
|
-
};
|
|
46490
|
-
|
|
46491
|
-
type BlogsQueryVariables = Exact$1<{
|
|
46492
|
-
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
46493
|
-
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
46494
|
-
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
46495
|
-
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
46496
|
-
orderBy?: InputMaybe$1<BlogOrder$1>;
|
|
46497
|
-
where?: InputMaybe$1<BlogWhereInput$1>;
|
|
46498
|
-
articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
46499
|
-
}>;
|
|
46500
|
-
type BlogsQueryResponse = {
|
|
46501
|
-
blogs?: Maybe$1<Pick<BlogConnection$1, 'totalCount'> & {
|
|
46502
|
-
edges: Array<Pick<BlogEdge$1, 'cursor'> & {
|
|
46503
|
-
node?: Maybe$1<Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
|
|
46504
|
-
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
46505
|
-
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
46506
|
-
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'author'> & {
|
|
46507
|
-
tags: Array<never>;
|
|
46508
|
-
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
46509
|
-
blogs?: Maybe$1<{
|
|
46510
|
-
edges: Array<{
|
|
46511
|
-
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
46512
|
-
}>;
|
|
46513
|
-
}>;
|
|
46514
|
-
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
46515
|
-
}>;
|
|
46516
|
-
}>;
|
|
46517
|
-
}>;
|
|
46518
|
-
}>;
|
|
46519
|
-
}>;
|
|
46520
|
-
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
46521
|
-
}>;
|
|
46522
|
-
};
|
|
46523
|
-
|
|
46524
|
-
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>;
|
|
46525
|
-
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>;
|
|
46526
|
-
|
|
46527
|
-
type Func$6 = ReturnType<typeof addToCartOperation>;
|
|
46528
|
-
type Response$6 = Awaited<ReturnType<Func$6>>;
|
|
46529
|
-
type Args$5 = Parameters<Func$6>[0];
|
|
46530
|
-
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>;
|
|
46531
|
-
|
|
46532
|
-
type Func$5 = ReturnType<typeof getCartOperation>;
|
|
46533
|
-
type Response$5 = Awaited<ReturnType<Func$5>>;
|
|
46534
|
-
declare const useCartData: (options?: SWRConfiguration<Response$5 | undefined, any>) => swr__internal.SWRResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined, any, Partial<swr__internal.PublicConfiguration<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined, any, (arg: "cart") => swr__internal.FetcherResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined>>> | undefined>;
|
|
46535
|
-
|
|
46536
|
-
type Func$4 = ReturnType<typeof cartDiscountCodesUpdateOperation>;
|
|
46537
|
-
type Response$4 = Awaited<ReturnType<Func$4>>;
|
|
46538
|
-
type Args$4 = Parameters<Func$4>[0];
|
|
46539
|
-
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>;
|
|
46540
|
-
|
|
46541
|
-
type Func$3 = ReturnType<typeof cartNoteUpdateOperation>;
|
|
46542
|
-
type Response$3 = Awaited<ReturnType<Func$3>>;
|
|
46543
|
-
type Args$3 = Parameters<Func$3>[0];
|
|
46544
|
-
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>;
|
|
46545
|
-
|
|
46546
|
-
type Func$2 = ReturnType<typeof createCartOperation>;
|
|
46547
|
-
type Response$2 = Awaited<ReturnType<Func$2>>;
|
|
46548
|
-
type Args$2 = Parameters<Func$2>[0];
|
|
46549
|
-
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>;
|
|
46550
|
-
|
|
46551
|
-
type Func$1 = ReturnType<typeof removeCartItemOperation>;
|
|
46552
|
-
type Response$1 = Awaited<ReturnType<Func$1>>;
|
|
46553
|
-
type Args$1 = Parameters<Func$1>[0];
|
|
46554
|
-
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>;
|
|
46555
|
-
|
|
46556
|
-
type Func = ReturnType<typeof updateCartLineOperation>;
|
|
46557
|
-
type Response = Awaited<ReturnType<Func>>;
|
|
46558
|
-
type Args = Parameters<Func>[0];
|
|
46559
|
-
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>;
|
|
46560
|
-
|
|
46561
|
-
declare const useLocale: () => {
|
|
46562
|
-
locale: string | undefined;
|
|
46563
|
-
changeLocale: (locale: string) => void;
|
|
46564
|
-
};
|
|
46565
|
-
declare const useCurrency: () => {
|
|
46566
|
-
currency: string | undefined;
|
|
46567
|
-
changeCurrency: (currency: string) => void;
|
|
46568
|
-
};
|
|
46569
|
-
declare const useTimezone: () => {
|
|
46570
|
-
timezone: string | undefined;
|
|
46413
|
+
declare const composeSize: (size?: ObjectDevices<SizeProps>) => React.CSSProperties;
|
|
46414
|
+
declare function genSizeClass(name: string): string;
|
|
46415
|
+
declare const composeSizeCss: (spacing?: SizeSetting) => string | undefined;
|
|
46416
|
+
declare const makeGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
46417
|
+
width: Record<ResponsiveKey<"w">, string | number>;
|
|
46418
|
+
height: Record<ResponsiveKey<"h">, string | number>;
|
|
46419
|
+
padding: React.CSSProperties;
|
|
46420
|
+
gap: {
|
|
46421
|
+
'--gg': string | undefined;
|
|
46422
|
+
'--gg-tablet': string | undefined;
|
|
46423
|
+
'--gg-mobile': string | undefined;
|
|
46424
|
+
};
|
|
46571
46425
|
};
|
|
46572
|
-
declare const
|
|
46573
|
-
|
|
46574
|
-
|
|
46426
|
+
declare const makeGlobalSizeIcon: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
46427
|
+
width: Record<ResponsiveKey<"w">, string | number>;
|
|
46428
|
+
height: Record<ResponsiveKey<"h">, string | number>;
|
|
46429
|
+
minWidth: Record<ResponsiveKey<"minw">, string | number>;
|
|
46430
|
+
padding: React.CSSProperties;
|
|
46575
46431
|
};
|
|
46576
|
-
declare const
|
|
46577
|
-
|
|
46578
|
-
|
|
46432
|
+
declare const getGlobalSizeGap: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
46433
|
+
'--gg': string | undefined;
|
|
46434
|
+
'--gg-tablet': string | undefined;
|
|
46435
|
+
'--gg-mobile': string | undefined;
|
|
46579
46436
|
};
|
|
46580
|
-
declare const
|
|
46581
|
-
declare const
|
|
46582
|
-
|
|
46583
|
-
|
|
46584
|
-
|
|
46437
|
+
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>;
|
|
46438
|
+
declare const getWidthHeightGlobalSize: (type: 'width' | 'height', globalSize?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string | number>>;
|
|
46439
|
+
declare const getHeightByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string>>;
|
|
46440
|
+
declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean, defaultFull?: boolean) => Partial<Record<NameDevices$1, string>>;
|
|
46441
|
+
declare const getAspectRatioGlobalSize: (shape?: ObjectDevices<SizeSettingGlobal>) => ObjectDevices<string>;
|
|
46442
|
+
declare const getPaddingGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => React.CSSProperties;
|
|
46443
|
+
declare const getValueByDevice: <T>(value: any, device: NameDevices$1) => T;
|
|
46444
|
+
declare const getPaddingStyleByDevice: (value?: PaddingType, device?: NameDevices$1) => {
|
|
46445
|
+
[x: string]: string | undefined;
|
|
46585
46446
|
};
|
|
46586
|
-
declare const
|
|
46587
|
-
|
|
46588
|
-
|
|
46589
|
-
declare const useMatchMutate: () => <T = any>(matcher: RegExp, opts?: boolean | MutatorOptions<T> | undefined) => Promise<(T | undefined)[][]>;
|
|
46590
|
-
declare function useConnectedShopify(): boolean;
|
|
46591
|
-
declare function useIsSampleProduct(): boolean | undefined;
|
|
46592
|
-
declare function useIsStorefrontProduct(): boolean | undefined;
|
|
46593
|
-
declare function useCheckoutUrl(url?: string): string | undefined;
|
|
46594
|
-
|
|
46595
|
-
declare const useCollectionQuery: (args?: FetchCollectionArgs, options?: SWRConfiguration<CollectionDetailFilterQueryResponse>) => swr__internal.SWRResponse<CollectionDetailFilterQueryResponse, any, Partial<swr__internal.PublicConfiguration<CollectionDetailFilterQueryResponse, any, (arg: ["query/collection", FetchCollectionArgs]) => swr__internal.FetcherResponse<CollectionDetailFilterQueryResponse>>> | undefined>;
|
|
46596
|
-
|
|
46597
|
-
declare const useCollectionsQuery: (variable: CollectionsQueryVariables, options?: SWRConfiguration<CollectionsQueryResponse>) => swr__internal.SWRResponse<CollectionsQueryResponse, any, Partial<swr__internal.PublicConfiguration<CollectionsQueryResponse, any, (arg: ["query/collections", Exact$1<{
|
|
46598
|
-
after?: InputMaybe$1<string>;
|
|
46599
|
-
first?: InputMaybe$1<number>;
|
|
46600
|
-
before?: InputMaybe$1<string>;
|
|
46601
|
-
last?: InputMaybe$1<number>;
|
|
46602
|
-
where?: InputMaybe$1<CollectionWhereInput$1>;
|
|
46603
|
-
orderBy?: InputMaybe$1<CollectionOrder$1>;
|
|
46604
|
-
}>]) => swr__internal.FetcherResponse<CollectionsQueryResponse>>> | undefined>;
|
|
46605
|
-
|
|
46606
|
-
declare const useProductQuery: (productId?: string, options?: SWRConfiguration<ProductSelectFragment>, customFetcher?: FetchFunc) => swr__internal.SWRResponse<ProductSelectFragment, any, Partial<swr__internal.PublicConfiguration<ProductSelectFragment, any, (arg: ["query/product", FetchProductParams]) => swr__internal.FetcherResponse<ProductSelectFragment>>> | undefined>;
|
|
46607
|
-
|
|
46608
|
-
declare const useProductsQuery: (ids?: string[], options?: SWRConfiguration<ProductsQueryResponse>, params?: {
|
|
46609
|
-
defaultSelectedProductCount?: number;
|
|
46610
|
-
allStatus?: boolean;
|
|
46611
|
-
fetcher?: FetchFunc;
|
|
46612
|
-
}) => swr__internal.SWRResponse<ProductsQueryResponse, any, Partial<swr__internal.PublicConfiguration<ProductsQueryResponse, any, (arg: ["query/products", FetchProductsParams]) => swr__internal.FetcherResponse<ProductsQueryResponse>>> | undefined>;
|
|
46613
|
-
declare const useProductsQueryAll: (variable?: VariableRelatedStyles | undefined, options?: SWRConfiguration<ProductsQueryResponse>) => swr__internal.SWRResponse<ProductsQueryResponse, any, Partial<swr__internal.PublicConfiguration<ProductsQueryResponse, any, (arg: ["query/products", any]) => swr__internal.FetcherResponse<ProductsQueryResponse>>> | undefined>;
|
|
46447
|
+
declare const getResponsiveStylePadding: (value?: ObjectDevices<PaddingType>) => {
|
|
46448
|
+
[x: string]: string | undefined;
|
|
46449
|
+
} | undefined;
|
|
46614
46450
|
|
|
46615
|
-
|
|
46451
|
+
type TypographyClass = `gp-g-${TypographyType}`;
|
|
46452
|
+
declare const genTypoClass: (name: TypographyType) => TypographyClass;
|
|
46453
|
+
declare const composeTypographyCss: (typography: TypographySetting | undefined) => string;
|
|
46454
|
+
declare const composeTypographyV2Css: (typography: TypographySettingV2 | undefined, isImportant?: boolean) => string;
|
|
46455
|
+
declare const composeTextHoverColorCss: (device: NameDevices$1, colorHoverConfig?: ObjectDevices<StateProp<ColorValueType>>, isImportant?: boolean) => string | undefined;
|
|
46456
|
+
declare const composeTypography: (typography?: ObjectDevices<TypographyProps>) => React.CSSProperties;
|
|
46457
|
+
declare const composeTypographyV2: (value?: TypographyV2Props, attrs?: TypographyV2Attrs) => React.CSSProperties;
|
|
46458
|
+
declare const composeFontFamilyTypographyV2: (value?: TypographyV2Props & {
|
|
46459
|
+
type?: string;
|
|
46460
|
+
}) => string | undefined;
|
|
46461
|
+
declare const composeTypographyAttr: (attrs?: TypographyV2Attrs) => React.CSSProperties;
|
|
46462
|
+
declare const composeTypographyClassName: (typo?: TypographySettingV2, typography?: TypographySetting) => "" | "gp-g-heading-1" | "gp-g-heading-2" | "gp-g-heading-3" | "gp-g-subheading-1" | "gp-g-subheading-2" | "gp-g-subheading-3" | "gp-g-paragraph-1" | "gp-g-paragraph-2" | "gp-g-paragraph-3" | undefined;
|
|
46463
|
+
declare const composeFallbackTypographyStyle: (tag: string) => "var(--g-font-heading, heading)" | "var(--g-font-body, body)";
|
|
46464
|
+
declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?: TypographySetting, disableAttr?: boolean) => {
|
|
46465
|
+
[x: string]: any;
|
|
46466
|
+
'--ai'?: csstype.Property.AlignItems | undefined;
|
|
46467
|
+
'--hvr-ai'?: csstype.Property.AlignItems | undefined;
|
|
46468
|
+
'--focus-ai'?: csstype.Property.AlignItems | undefined;
|
|
46469
|
+
'--ai-tablet'?: csstype.Property.AlignItems | undefined;
|
|
46470
|
+
'--hvr-ai-tablet'?: csstype.Property.AlignItems | undefined;
|
|
46471
|
+
'--focus-ai-tablet'?: csstype.Property.AlignItems | undefined;
|
|
46472
|
+
'--ai-mobile'?: csstype.Property.AlignItems | undefined;
|
|
46473
|
+
'--hvr-ai-mobile'?: csstype.Property.AlignItems | undefined;
|
|
46474
|
+
'--focus-ai-mobile'?: csstype.Property.AlignItems | undefined;
|
|
46475
|
+
'--aspect'?: csstype.Property.AspectRatio | undefined;
|
|
46476
|
+
'--hvr-aspect'?: csstype.Property.AspectRatio | undefined;
|
|
46477
|
+
'--focus-aspect'?: csstype.Property.AspectRatio | undefined;
|
|
46478
|
+
'--aspect-tablet'?: csstype.Property.AspectRatio | undefined;
|
|
46479
|
+
'--hvr-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
|
|
46480
|
+
'--focus-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
|
|
46481
|
+
'--aspect-mobile'?: csstype.Property.AspectRatio | undefined;
|
|
46482
|
+
'--hvr-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
|
|
46483
|
+
'--focus-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
|
|
46484
|
+
'--bg'?: csstype.Property.Background<string | number> | undefined;
|
|
46485
|
+
'--hvr-bg'?: csstype.Property.Background<string | number> | undefined;
|
|
46486
|
+
'--focus-bg'?: csstype.Property.Background<string | number> | undefined;
|
|
46487
|
+
'--bg-tablet'?: csstype.Property.Background<string | number> | undefined;
|
|
46488
|
+
'--hvr-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
|
|
46489
|
+
'--focus-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
|
|
46490
|
+
'--bg-mobile'?: csstype.Property.Background<string | number> | undefined;
|
|
46491
|
+
'--hvr-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
|
|
46492
|
+
'--focus-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
|
|
46493
|
+
'--bga'?: csstype.Property.BackgroundAttachment | undefined;
|
|
46494
|
+
'--hvr-bga'?: csstype.Property.BackgroundAttachment | undefined;
|
|
46495
|
+
'--focus-bga'?: csstype.Property.BackgroundAttachment | undefined;
|
|
46496
|
+
'--bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
|
|
46497
|
+
'--hvr-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
|
|
46498
|
+
'--focus-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
|
|
46499
|
+
'--bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
|
|
46500
|
+
'--hvr-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
|
|
46501
|
+
'--focus-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
|
|
46502
|
+
'--bgc'?: csstype.Property.BackgroundColor | undefined;
|
|
46503
|
+
'--hvr-bgc'?: csstype.Property.BackgroundColor | undefined;
|
|
46504
|
+
'--focus-bgc'?: csstype.Property.BackgroundColor | undefined;
|
|
46505
|
+
'--bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
|
|
46506
|
+
'--hvr-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
|
|
46507
|
+
'--focus-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
|
|
46508
|
+
'--bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
|
|
46509
|
+
'--hvr-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
|
|
46510
|
+
'--focus-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
|
|
46511
|
+
'--bgi'?: csstype.Property.BackgroundImage | undefined;
|
|
46512
|
+
'--hvr-bgi'?: csstype.Property.BackgroundImage | undefined;
|
|
46513
|
+
'--focus-bgi'?: csstype.Property.BackgroundImage | undefined;
|
|
46514
|
+
'--bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
|
|
46515
|
+
'--hvr-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
|
|
46516
|
+
'--focus-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
|
|
46517
|
+
'--bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
|
|
46518
|
+
'--hvr-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
|
|
46519
|
+
'--focus-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
|
|
46520
|
+
'--bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
46521
|
+
'--hvr-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
46522
|
+
'--focus-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
46523
|
+
'--bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
46524
|
+
'--hvr-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
46525
|
+
'--focus-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
46526
|
+
'--bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
46527
|
+
'--hvr-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
46528
|
+
'--focus-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
46529
|
+
'--bgr'?: csstype.Property.BackgroundRepeat | undefined;
|
|
46530
|
+
'--hvr-bgr'?: csstype.Property.BackgroundRepeat | undefined;
|
|
46531
|
+
'--focus-bgr'?: csstype.Property.BackgroundRepeat | undefined;
|
|
46532
|
+
'--bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
|
|
46533
|
+
'--hvr-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
|
|
46534
|
+
'--focus-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
|
|
46535
|
+
'--bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
|
|
46536
|
+
'--hvr-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
|
|
46537
|
+
'--focus-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
|
|
46538
|
+
'--bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46539
|
+
'--hvr-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46540
|
+
'--focus-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46541
|
+
'--bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46542
|
+
'--hvr-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46543
|
+
'--focus-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46544
|
+
'--bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46545
|
+
'--hvr-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46546
|
+
'--focus-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46547
|
+
'--b'?: csstype.Property.Border<string | number> | undefined;
|
|
46548
|
+
'--hvr-b'?: csstype.Property.Border<string | number> | undefined;
|
|
46549
|
+
'--focus-b'?: csstype.Property.Border<string | number> | undefined;
|
|
46550
|
+
'--b-tablet'?: csstype.Property.Border<string | number> | undefined;
|
|
46551
|
+
'--hvr-b-tablet'?: csstype.Property.Border<string | number> | undefined;
|
|
46552
|
+
'--focus-b-tablet'?: csstype.Property.Border<string | number> | undefined;
|
|
46553
|
+
'--b-mobile'?: csstype.Property.Border<string | number> | undefined;
|
|
46554
|
+
'--hvr-b-mobile'?: csstype.Property.Border<string | number> | undefined;
|
|
46555
|
+
'--focus-b-mobile'?: csstype.Property.Border<string | number> | undefined;
|
|
46556
|
+
'--bb'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
46557
|
+
'--hvr-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
46558
|
+
'--focus-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
46559
|
+
'--bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
46560
|
+
'--hvr-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
46561
|
+
'--focus-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
46562
|
+
'--bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
46563
|
+
'--hvr-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
46564
|
+
'--focus-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
46565
|
+
'--bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
46566
|
+
'--hvr-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
46567
|
+
'--focus-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
46568
|
+
'--bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
46569
|
+
'--hvr-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
46570
|
+
'--focus-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
46571
|
+
'--bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
46572
|
+
'--hvr-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
46573
|
+
'--focus-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
46574
|
+
'--bbc'?: csstype.Property.BorderBottomColor | undefined;
|
|
46575
|
+
'--hvr-bbc'?: csstype.Property.BorderBottomColor | undefined;
|
|
46576
|
+
'--focus-bbc'?: csstype.Property.BorderBottomColor | undefined;
|
|
46577
|
+
'--bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
|
|
46578
|
+
'--hvr-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
|
|
46579
|
+
'--focus-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
|
|
46580
|
+
'--bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
|
|
46581
|
+
'--hvr-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
|
|
46582
|
+
'--focus-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
|
|
46583
|
+
'--bc'?: csstype.Property.BorderColor | undefined;
|
|
46584
|
+
'--hvr-bc'?: csstype.Property.BorderColor | undefined;
|
|
46585
|
+
'--focus-bc'?: csstype.Property.BorderColor | undefined;
|
|
46586
|
+
'--bc-tablet'?: csstype.Property.BorderColor | undefined;
|
|
46587
|
+
'--hvr-bc-tablet'?: csstype.Property.BorderColor | undefined;
|
|
46588
|
+
'--focus-bc-tablet'?: csstype.Property.BorderColor | undefined;
|
|
46589
|
+
'--bc-mobile'?: csstype.Property.BorderColor | undefined;
|
|
46590
|
+
'--hvr-bc-mobile'?: csstype.Property.BorderColor | undefined;
|
|
46591
|
+
'--focus-bc-mobile'?: csstype.Property.BorderColor | undefined;
|
|
46592
|
+
'--bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
46593
|
+
'--hvr-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
46594
|
+
'--focus-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
46595
|
+
'--bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
46596
|
+
'--hvr-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
46597
|
+
'--focus-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
46598
|
+
'--bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
46599
|
+
'--hvr-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
46600
|
+
'--focus-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
46601
|
+
'--bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
46602
|
+
'--hvr-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
46603
|
+
'--focus-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
46604
|
+
'--bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
46605
|
+
'--hvr-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
46606
|
+
'--focus-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
46607
|
+
'--bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
46608
|
+
'--hvr-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
46609
|
+
'--focus-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
46610
|
+
'--bl'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
46611
|
+
'--hvr-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
46612
|
+
'--focus-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
46613
|
+
'--bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
46614
|
+
'--hvr-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
46615
|
+
'--focus-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
46616
|
+
'--bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
46617
|
+
'--hvr-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
46618
|
+
'--focus-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
46619
|
+
'--radius'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
46620
|
+
'--hvr-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
46621
|
+
'--focus-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
46622
|
+
'--radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
46623
|
+
'--hvr-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
46624
|
+
'--focus-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
46625
|
+
'--radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
46626
|
+
'--hvr-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
46627
|
+
'--focus-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
46628
|
+
'--br'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
46629
|
+
'--hvr-br'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
46630
|
+
'--focus-br'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
46631
|
+
'--br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
46632
|
+
'--hvr-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
46633
|
+
'--focus-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
46634
|
+
'--br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
46635
|
+
'--hvr-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
46636
|
+
'--focus-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
46637
|
+
'--bs'?: csstype.Property.BorderStyle | undefined;
|
|
46638
|
+
'--hvr-bs'?: csstype.Property.BorderStyle | undefined;
|
|
46639
|
+
'--focus-bs'?: csstype.Property.BorderStyle | undefined;
|
|
46640
|
+
'--bs-tablet'?: csstype.Property.BorderStyle | undefined;
|
|
46641
|
+
'--hvr-bs-tablet'?: csstype.Property.BorderStyle | undefined;
|
|
46642
|
+
'--focus-bs-tablet'?: csstype.Property.BorderStyle | undefined;
|
|
46643
|
+
'--bs-mobile'?: csstype.Property.BorderStyle | undefined;
|
|
46644
|
+
'--hvr-bs-mobile'?: csstype.Property.BorderStyle | undefined;
|
|
46645
|
+
'--focus-bs-mobile'?: csstype.Property.BorderStyle | undefined;
|
|
46646
|
+
'--bt'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
46647
|
+
'--hvr-bt'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
46648
|
+
'--focus-bt'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
46649
|
+
'--bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
46650
|
+
'--hvr-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
46651
|
+
'--focus-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
46652
|
+
'--bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
46653
|
+
'--hvr-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
46654
|
+
'--focus-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
46655
|
+
'--btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
46656
|
+
'--hvr-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
46657
|
+
'--focus-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
46658
|
+
'--btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
46659
|
+
'--hvr-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
46660
|
+
'--focus-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
46661
|
+
'--btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
46662
|
+
'--hvr-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
46663
|
+
'--focus-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
46664
|
+
'--btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
46665
|
+
'--hvr-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
46666
|
+
'--focus-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
46667
|
+
'--btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
46668
|
+
'--hvr-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
46669
|
+
'--focus-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
46670
|
+
'--btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
46671
|
+
'--hvr-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
46672
|
+
'--focus-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
46673
|
+
'--bw'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
46674
|
+
'--hvr-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
46675
|
+
'--focus-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
46676
|
+
'--bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
46677
|
+
'--hvr-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
46678
|
+
'--focus-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
46679
|
+
'--bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
46680
|
+
'--hvr-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
46681
|
+
'--focus-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
46682
|
+
'--bottom'?: csstype.Property.Bottom<string | number> | undefined;
|
|
46683
|
+
'--hvr-bottom'?: csstype.Property.Bottom<string | number> | undefined;
|
|
46684
|
+
'--focus-bottom'?: csstype.Property.Bottom<string | number> | undefined;
|
|
46685
|
+
'--bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
|
|
46686
|
+
'--hvr-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
|
|
46687
|
+
'--focus-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
|
|
46688
|
+
'--bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
|
|
46689
|
+
'--hvr-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
|
|
46690
|
+
'--focus-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
|
|
46691
|
+
'--shadow'?: csstype.Property.BoxShadow | undefined;
|
|
46692
|
+
'--hvr-shadow'?: csstype.Property.BoxShadow | undefined;
|
|
46693
|
+
'--focus-shadow'?: csstype.Property.BoxShadow | undefined;
|
|
46694
|
+
'--shadow-tablet'?: csstype.Property.BoxShadow | undefined;
|
|
46695
|
+
'--hvr-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
|
|
46696
|
+
'--focus-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
|
|
46697
|
+
'--shadow-mobile'?: csstype.Property.BoxShadow | undefined;
|
|
46698
|
+
'--hvr-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
|
|
46699
|
+
'--focus-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
|
|
46700
|
+
'--c'?: csstype.Property.Color | undefined;
|
|
46701
|
+
'--hvr-c'?: csstype.Property.Color | undefined;
|
|
46702
|
+
'--focus-c'?: csstype.Property.Color | undefined;
|
|
46703
|
+
'--c-tablet'?: csstype.Property.Color | undefined;
|
|
46704
|
+
'--hvr-c-tablet'?: csstype.Property.Color | undefined;
|
|
46705
|
+
'--focus-c-tablet'?: csstype.Property.Color | undefined;
|
|
46706
|
+
'--c-mobile'?: csstype.Property.Color | undefined;
|
|
46707
|
+
'--hvr-c-mobile'?: csstype.Property.Color | undefined;
|
|
46708
|
+
'--focus-c-mobile'?: csstype.Property.Color | undefined;
|
|
46709
|
+
'--cg'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
46710
|
+
'--hvr-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
46711
|
+
'--focus-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
46712
|
+
'--cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
46713
|
+
'--hvr-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
46714
|
+
'--focus-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
46715
|
+
'--cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
46716
|
+
'--hvr-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
46717
|
+
'--focus-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
46718
|
+
'--d'?: csstype.Property.Display | undefined;
|
|
46719
|
+
'--hvr-d'?: csstype.Property.Display | undefined;
|
|
46720
|
+
'--focus-d'?: csstype.Property.Display | undefined;
|
|
46721
|
+
'--d-tablet'?: csstype.Property.Display | undefined;
|
|
46722
|
+
'--hvr-d-tablet'?: csstype.Property.Display | undefined;
|
|
46723
|
+
'--focus-d-tablet'?: csstype.Property.Display | undefined;
|
|
46724
|
+
'--d-mobile'?: csstype.Property.Display | undefined;
|
|
46725
|
+
'--hvr-d-mobile'?: csstype.Property.Display | undefined;
|
|
46726
|
+
'--focus-d-mobile'?: csstype.Property.Display | undefined;
|
|
46727
|
+
'--fd'?: csstype.Property.FlexDirection | undefined;
|
|
46728
|
+
'--hvr-fd'?: csstype.Property.FlexDirection | undefined;
|
|
46729
|
+
'--focus-fd'?: csstype.Property.FlexDirection | undefined;
|
|
46730
|
+
'--fd-tablet'?: csstype.Property.FlexDirection | undefined;
|
|
46731
|
+
'--hvr-fd-tablet'?: csstype.Property.FlexDirection | undefined;
|
|
46732
|
+
'--focus-fd-tablet'?: csstype.Property.FlexDirection | undefined;
|
|
46733
|
+
'--fd-mobile'?: csstype.Property.FlexDirection | undefined;
|
|
46734
|
+
'--hvr-fd-mobile'?: csstype.Property.FlexDirection | undefined;
|
|
46735
|
+
'--focus-fd-mobile'?: csstype.Property.FlexDirection | undefined;
|
|
46736
|
+
'--ff'?: csstype.Property.FontFamily | undefined;
|
|
46737
|
+
'--hvr-ff'?: csstype.Property.FontFamily | undefined;
|
|
46738
|
+
'--focus-ff'?: csstype.Property.FontFamily | undefined;
|
|
46739
|
+
'--ff-tablet'?: csstype.Property.FontFamily | undefined;
|
|
46740
|
+
'--hvr-ff-tablet'?: csstype.Property.FontFamily | undefined;
|
|
46741
|
+
'--focus-ff-tablet'?: csstype.Property.FontFamily | undefined;
|
|
46742
|
+
'--ff-mobile'?: csstype.Property.FontFamily | undefined;
|
|
46743
|
+
'--hvr-ff-mobile'?: csstype.Property.FontFamily | undefined;
|
|
46744
|
+
'--focus-ff-mobile'?: csstype.Property.FontFamily | undefined;
|
|
46745
|
+
'--size'?: csstype.Property.FontSize<string | number> | undefined;
|
|
46746
|
+
'--hvr-size'?: csstype.Property.FontSize<string | number> | undefined;
|
|
46747
|
+
'--focus-size'?: csstype.Property.FontSize<string | number> | undefined;
|
|
46748
|
+
'--size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
|
|
46749
|
+
'--hvr-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
|
|
46750
|
+
'--focus-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
|
|
46751
|
+
'--size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
|
|
46752
|
+
'--hvr-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
|
|
46753
|
+
'--focus-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
|
|
46754
|
+
'--weight'?: csstype.Property.FontWeight | undefined;
|
|
46755
|
+
'--hvr-weight'?: csstype.Property.FontWeight | undefined;
|
|
46756
|
+
'--focus-weight'?: csstype.Property.FontWeight | undefined;
|
|
46757
|
+
'--weight-tablet'?: csstype.Property.FontWeight | undefined;
|
|
46758
|
+
'--hvr-weight-tablet'?: csstype.Property.FontWeight | undefined;
|
|
46759
|
+
'--focus-weight-tablet'?: csstype.Property.FontWeight | undefined;
|
|
46760
|
+
'--weight-mobile'?: csstype.Property.FontWeight | undefined;
|
|
46761
|
+
'--hvr-weight-mobile'?: csstype.Property.FontWeight | undefined;
|
|
46762
|
+
'--focus-weight-mobile'?: csstype.Property.FontWeight | undefined;
|
|
46763
|
+
'--fs'?: csstype.Property.FontStyle | undefined;
|
|
46764
|
+
'--hvr-fs'?: csstype.Property.FontStyle | undefined;
|
|
46765
|
+
'--focus-fs'?: csstype.Property.FontStyle | undefined;
|
|
46766
|
+
'--fs-tablet'?: csstype.Property.FontStyle | undefined;
|
|
46767
|
+
'--hvr-fs-tablet'?: csstype.Property.FontStyle | undefined;
|
|
46768
|
+
'--focus-fs-tablet'?: csstype.Property.FontStyle | undefined;
|
|
46769
|
+
'--fs-mobile'?: csstype.Property.FontStyle | undefined;
|
|
46770
|
+
'--hvr-fs-mobile'?: csstype.Property.FontStyle | undefined;
|
|
46771
|
+
'--focus-fs-mobile'?: csstype.Property.FontStyle | undefined;
|
|
46772
|
+
'--gg'?: csstype.Property.GridGap<string | number> | undefined;
|
|
46773
|
+
'--hvr-gg'?: csstype.Property.GridGap<string | number> | undefined;
|
|
46774
|
+
'--focus-gg'?: csstype.Property.GridGap<string | number> | undefined;
|
|
46775
|
+
'--gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
|
|
46776
|
+
'--hvr-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
|
|
46777
|
+
'--focus-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
|
|
46778
|
+
'--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
46779
|
+
'--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
46780
|
+
'--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
46781
|
+
'--gr'?: csstype.Property.GridRow | undefined;
|
|
46782
|
+
'--hvr-gr'?: csstype.Property.GridRow | undefined;
|
|
46783
|
+
'--focus-gr'?: csstype.Property.GridRow | undefined;
|
|
46784
|
+
'--gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
46785
|
+
'--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
46786
|
+
'--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
46787
|
+
'--gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
46788
|
+
'--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
46789
|
+
'--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
46790
|
+
'--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
46791
|
+
'--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
46792
|
+
'--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
46793
|
+
'--gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
46794
|
+
'--hvr-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
46795
|
+
'--focus-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
46796
|
+
'--gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
46797
|
+
'--hvr-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
46798
|
+
'--focus-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
46799
|
+
'--gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
46800
|
+
'--hvr-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
46801
|
+
'--focus-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
46802
|
+
'--gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
46803
|
+
'--hvr-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
46804
|
+
'--focus-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
46805
|
+
'--gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
46806
|
+
'--hvr-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
46807
|
+
'--focus-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
46808
|
+
'--h'?: csstype.Property.Height<string | number> | undefined;
|
|
46809
|
+
'--hvr-h'?: csstype.Property.Height<string | number> | undefined;
|
|
46810
|
+
'--focus-h'?: csstype.Property.Height<string | number> | undefined;
|
|
46811
|
+
'--h-tablet'?: csstype.Property.Height<string | number> | undefined;
|
|
46812
|
+
'--hvr-h-tablet'?: csstype.Property.Height<string | number> | undefined;
|
|
46813
|
+
'--focus-h-tablet'?: csstype.Property.Height<string | number> | undefined;
|
|
46814
|
+
'--h-mobile'?: csstype.Property.Height<string | number> | undefined;
|
|
46815
|
+
'--hvr-h-mobile'?: csstype.Property.Height<string | number> | undefined;
|
|
46816
|
+
'--focus-h-mobile'?: csstype.Property.Height<string | number> | undefined;
|
|
46817
|
+
'--jc'?: csstype.Property.JustifyContent | undefined;
|
|
46818
|
+
'--hvr-jc'?: csstype.Property.JustifyContent | undefined;
|
|
46819
|
+
'--focus-jc'?: csstype.Property.JustifyContent | undefined;
|
|
46820
|
+
'--jc-tablet'?: csstype.Property.JustifyContent | undefined;
|
|
46821
|
+
'--hvr-jc-tablet'?: csstype.Property.JustifyContent | undefined;
|
|
46822
|
+
'--focus-jc-tablet'?: csstype.Property.JustifyContent | undefined;
|
|
46823
|
+
'--jc-mobile'?: csstype.Property.JustifyContent | undefined;
|
|
46824
|
+
'--hvr-jc-mobile'?: csstype.Property.JustifyContent | undefined;
|
|
46825
|
+
'--focus-jc-mobile'?: csstype.Property.JustifyContent | undefined;
|
|
46826
|
+
'--left'?: csstype.Property.Left<string | number> | undefined;
|
|
46827
|
+
'--hvr-left'?: csstype.Property.Left<string | number> | undefined;
|
|
46828
|
+
'--focus-left'?: csstype.Property.Left<string | number> | undefined;
|
|
46829
|
+
'--left-tablet'?: csstype.Property.Left<string | number> | undefined;
|
|
46830
|
+
'--hvr-left-tablet'?: csstype.Property.Left<string | number> | undefined;
|
|
46831
|
+
'--focus-left-tablet'?: csstype.Property.Left<string | number> | undefined;
|
|
46832
|
+
'--left-mobile'?: csstype.Property.Left<string | number> | undefined;
|
|
46833
|
+
'--hvr-left-mobile'?: csstype.Property.Left<string | number> | undefined;
|
|
46834
|
+
'--focus-left-mobile'?: csstype.Property.Left<string | number> | undefined;
|
|
46835
|
+
'--ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
46836
|
+
'--hvr-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
46837
|
+
'--focus-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
46838
|
+
'--ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
46839
|
+
'--hvr-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
46840
|
+
'--focus-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
46841
|
+
'--ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
46842
|
+
'--hvr-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
46843
|
+
'--focus-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
46844
|
+
'--line-clamp'?: any;
|
|
46845
|
+
'--hvr-line-clamp'?: any;
|
|
46846
|
+
'--focus-line-clamp'?: any;
|
|
46847
|
+
'--line-clamp-tablet'?: any;
|
|
46848
|
+
'--hvr-line-clamp-tablet'?: any;
|
|
46849
|
+
'--focus-line-clamp-tablet'?: any;
|
|
46850
|
+
'--line-clamp-mobile'?: any;
|
|
46851
|
+
'--hvr-line-clamp-mobile'?: any;
|
|
46852
|
+
'--focus-line-clamp-mobile'?: any;
|
|
46853
|
+
'--lh'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
46854
|
+
'--hvr-lh'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
46855
|
+
'--focus-lh'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
46856
|
+
'--lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
46857
|
+
'--hvr-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
46858
|
+
'--focus-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
46859
|
+
'--lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
46860
|
+
'--hvr-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
46861
|
+
'--focus-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
46862
|
+
'--tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
46863
|
+
'--hvr-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
46864
|
+
'--focus-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
46865
|
+
'--tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
46866
|
+
'--hvr-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
46867
|
+
'--focus-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
46868
|
+
'--tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
46869
|
+
'--hvr-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
46870
|
+
'--focus-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
46871
|
+
'--tdc'?: csstype.Property.TextDecorationColor | undefined;
|
|
46872
|
+
'--hvr-tdc'?: csstype.Property.TextDecorationColor | undefined;
|
|
46873
|
+
'--focus-tdc'?: csstype.Property.TextDecorationColor | undefined;
|
|
46874
|
+
'--tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
|
|
46875
|
+
'--hvr-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
|
|
46876
|
+
'--focus-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
|
|
46877
|
+
'--tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
|
|
46878
|
+
'--hvr-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
|
|
46879
|
+
'--focus-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
|
|
46880
|
+
'--tdl'?: csstype.Property.TextDecorationLine | undefined;
|
|
46881
|
+
'--hvr-tdl'?: csstype.Property.TextDecorationLine | undefined;
|
|
46882
|
+
'--focus-tdl'?: csstype.Property.TextDecorationLine | undefined;
|
|
46883
|
+
'--tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
|
|
46884
|
+
'--hvr-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
|
|
46885
|
+
'--focus-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
|
|
46886
|
+
'--tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
|
|
46887
|
+
'--hvr-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
|
|
46888
|
+
'--focus-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
|
|
46889
|
+
'--m'?: csstype.Property.Margin<string | number> | undefined;
|
|
46890
|
+
'--hvr-m'?: csstype.Property.Margin<string | number> | undefined;
|
|
46891
|
+
'--focus-m'?: csstype.Property.Margin<string | number> | undefined;
|
|
46892
|
+
'--m-tablet'?: csstype.Property.Margin<string | number> | undefined;
|
|
46893
|
+
'--hvr-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
|
|
46894
|
+
'--focus-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
|
|
46895
|
+
'--m-mobile'?: csstype.Property.Margin<string | number> | undefined;
|
|
46896
|
+
'--hvr-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
|
|
46897
|
+
'--focus-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
|
|
46898
|
+
'--mb'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
46899
|
+
'--hvr-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
46900
|
+
'--focus-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
46901
|
+
'--mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
46902
|
+
'--hvr-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
46903
|
+
'--focus-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
46904
|
+
'--mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
46905
|
+
'--hvr-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
46906
|
+
'--focus-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
46907
|
+
'--ml'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
46908
|
+
'--hvr-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
46909
|
+
'--focus-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
46910
|
+
'--ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
46911
|
+
'--hvr-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
46912
|
+
'--focus-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
46913
|
+
'--ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
46914
|
+
'--hvr-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
46915
|
+
'--focus-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
46916
|
+
'--mr'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
46917
|
+
'--hvr-mr'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
46918
|
+
'--focus-mr'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
46919
|
+
'--mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
46920
|
+
'--hvr-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
46921
|
+
'--focus-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
46922
|
+
'--mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
46923
|
+
'--hvr-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
46924
|
+
'--focus-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
46925
|
+
'--mt'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
46926
|
+
'--hvr-mt'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
46927
|
+
'--focus-mt'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
46928
|
+
'--mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
46929
|
+
'--hvr-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
46930
|
+
'--focus-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
46931
|
+
'--mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
46932
|
+
'--hvr-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
46933
|
+
'--focus-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
46934
|
+
'--maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
46935
|
+
'--hvr-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
46936
|
+
'--focus-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
46937
|
+
'--maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
46938
|
+
'--hvr-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
46939
|
+
'--focus-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
46940
|
+
'--maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
46941
|
+
'--hvr-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
46942
|
+
'--focus-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
46943
|
+
'--maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
46944
|
+
'--hvr-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
46945
|
+
'--focus-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
46946
|
+
'--maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
46947
|
+
'--hvr-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
46948
|
+
'--focus-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
46949
|
+
'--maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
46950
|
+
'--hvr-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
46951
|
+
'--focus-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
46952
|
+
'--minh'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
46953
|
+
'--hvr-minh'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
46954
|
+
'--focus-minh'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
46955
|
+
'--minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
46956
|
+
'--hvr-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
46957
|
+
'--focus-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
46958
|
+
'--minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
46959
|
+
'--hvr-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
46960
|
+
'--focus-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
46961
|
+
'--minw'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
46962
|
+
'--hvr-minw'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
46963
|
+
'--focus-minw'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
46964
|
+
'--minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
46965
|
+
'--hvr-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
46966
|
+
'--focus-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
46967
|
+
'--minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
46968
|
+
'--hvr-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
46969
|
+
'--focus-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
46970
|
+
'--objf'?: csstype.Property.ObjectFit | undefined;
|
|
46971
|
+
'--hvr-objf'?: csstype.Property.ObjectFit | undefined;
|
|
46972
|
+
'--focus-objf'?: csstype.Property.ObjectFit | undefined;
|
|
46973
|
+
'--objf-tablet'?: csstype.Property.ObjectFit | undefined;
|
|
46974
|
+
'--hvr-objf-tablet'?: csstype.Property.ObjectFit | undefined;
|
|
46975
|
+
'--focus-objf-tablet'?: csstype.Property.ObjectFit | undefined;
|
|
46976
|
+
'--objf-mobile'?: csstype.Property.ObjectFit | undefined;
|
|
46977
|
+
'--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
|
|
46978
|
+
'--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
|
|
46979
|
+
'--op'?: csstype.Property.Opacity | undefined;
|
|
46980
|
+
'--hvr-op'?: csstype.Property.Opacity | undefined;
|
|
46981
|
+
'--focus-op'?: csstype.Property.Opacity | undefined;
|
|
46982
|
+
'--op-tablet'?: csstype.Property.Opacity | undefined;
|
|
46983
|
+
'--hvr-op-tablet'?: csstype.Property.Opacity | undefined;
|
|
46984
|
+
'--focus-op-tablet'?: csstype.Property.Opacity | undefined;
|
|
46985
|
+
'--op-mobile'?: csstype.Property.Opacity | undefined;
|
|
46986
|
+
'--hvr-op-mobile'?: csstype.Property.Opacity | undefined;
|
|
46987
|
+
'--focus-op-mobile'?: csstype.Property.Opacity | undefined;
|
|
46988
|
+
'--o'?: csstype.Property.Order | undefined;
|
|
46989
|
+
'--hvr-o'?: csstype.Property.Order | undefined;
|
|
46990
|
+
'--focus-o'?: csstype.Property.Order | undefined;
|
|
46991
|
+
'--o-tablet'?: csstype.Property.Order | undefined;
|
|
46992
|
+
'--hvr-o-tablet'?: csstype.Property.Order | undefined;
|
|
46993
|
+
'--focus-o-tablet'?: csstype.Property.Order | undefined;
|
|
46994
|
+
'--o-mobile'?: csstype.Property.Order | undefined;
|
|
46995
|
+
'--hvr-o-mobile'?: csstype.Property.Order | undefined;
|
|
46996
|
+
'--focus-o-mobile'?: csstype.Property.Order | undefined;
|
|
46997
|
+
'--pc'?: csstype.Property.PlaceContent | undefined;
|
|
46998
|
+
'--hvr-pc'?: csstype.Property.PlaceContent | undefined;
|
|
46999
|
+
'--focus-pc'?: csstype.Property.PlaceContent | undefined;
|
|
47000
|
+
'--pc-tablet'?: csstype.Property.PlaceContent | undefined;
|
|
47001
|
+
'--hvr-pc-tablet'?: csstype.Property.PlaceContent | undefined;
|
|
47002
|
+
'--focus-pc-tablet'?: csstype.Property.PlaceContent | undefined;
|
|
47003
|
+
'--pc-mobile'?: csstype.Property.PlaceContent | undefined;
|
|
47004
|
+
'--hvr-pc-mobile'?: csstype.Property.PlaceContent | undefined;
|
|
47005
|
+
'--focus-pc-mobile'?: csstype.Property.PlaceContent | undefined;
|
|
47006
|
+
'--p'?: csstype.Property.Padding<string | number> | undefined;
|
|
47007
|
+
'--hvr-p'?: csstype.Property.Padding<string | number> | undefined;
|
|
47008
|
+
'--focus-p'?: csstype.Property.Padding<string | number> | undefined;
|
|
47009
|
+
'--p-tablet'?: csstype.Property.Padding<string | number> | undefined;
|
|
47010
|
+
'--hvr-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
|
|
47011
|
+
'--focus-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
|
|
47012
|
+
'--p-mobile'?: csstype.Property.Padding<string | number> | undefined;
|
|
47013
|
+
'--hvr-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
|
|
47014
|
+
'--focus-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
|
|
47015
|
+
'--pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
47016
|
+
'--hvr-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
47017
|
+
'--focus-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
47018
|
+
'--pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
47019
|
+
'--hvr-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
47020
|
+
'--focus-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
47021
|
+
'--pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
47022
|
+
'--hvr-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
47023
|
+
'--focus-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
47024
|
+
'--pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
47025
|
+
'--hvr-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
47026
|
+
'--focus-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
47027
|
+
'--pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
47028
|
+
'--hvr-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
47029
|
+
'--focus-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
47030
|
+
'--pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
47031
|
+
'--hvr-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
47032
|
+
'--focus-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
47033
|
+
'--pr'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
47034
|
+
'--hvr-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
47035
|
+
'--focus-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
47036
|
+
'--pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
47037
|
+
'--hvr-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
47038
|
+
'--focus-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
47039
|
+
'--pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
47040
|
+
'--hvr-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
47041
|
+
'--focus-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
47042
|
+
'--pt'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
47043
|
+
'--hvr-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
47044
|
+
'--focus-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
47045
|
+
'--pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
47046
|
+
'--hvr-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
47047
|
+
'--focus-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
47048
|
+
'--pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
47049
|
+
'--hvr-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
47050
|
+
'--focus-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
47051
|
+
'--pe'?: csstype.Property.PointerEvents | undefined;
|
|
47052
|
+
'--hvr-pe'?: csstype.Property.PointerEvents | undefined;
|
|
47053
|
+
'--focus-pe'?: csstype.Property.PointerEvents | undefined;
|
|
47054
|
+
'--pe-tablet'?: csstype.Property.PointerEvents | undefined;
|
|
47055
|
+
'--hvr-pe-tablet'?: csstype.Property.PointerEvents | undefined;
|
|
47056
|
+
'--focus-pe-tablet'?: csstype.Property.PointerEvents | undefined;
|
|
47057
|
+
'--pe-mobile'?: csstype.Property.PointerEvents | undefined;
|
|
47058
|
+
'--hvr-pe-mobile'?: csstype.Property.PointerEvents | undefined;
|
|
47059
|
+
'--focus-pe-mobile'?: csstype.Property.PointerEvents | undefined;
|
|
47060
|
+
'--pos'?: csstype.Property.Position | undefined;
|
|
47061
|
+
'--hvr-pos'?: csstype.Property.Position | undefined;
|
|
47062
|
+
'--focus-pos'?: csstype.Property.Position | undefined;
|
|
47063
|
+
'--pos-tablet'?: csstype.Property.Position | undefined;
|
|
47064
|
+
'--hvr-pos-tablet'?: csstype.Property.Position | undefined;
|
|
47065
|
+
'--focus-pos-tablet'?: csstype.Property.Position | undefined;
|
|
47066
|
+
'--pos-mobile'?: csstype.Property.Position | undefined;
|
|
47067
|
+
'--hvr-pos-mobile'?: csstype.Property.Position | undefined;
|
|
47068
|
+
'--focus-pos-mobile'?: csstype.Property.Position | undefined;
|
|
47069
|
+
'--right'?: csstype.Property.Right<string | number> | undefined;
|
|
47070
|
+
'--hvr-right'?: csstype.Property.Right<string | number> | undefined;
|
|
47071
|
+
'--focus-right'?: csstype.Property.Right<string | number> | undefined;
|
|
47072
|
+
'--right-tablet'?: csstype.Property.Right<string | number> | undefined;
|
|
47073
|
+
'--hvr-right-tablet'?: csstype.Property.Right<string | number> | undefined;
|
|
47074
|
+
'--focus-right-tablet'?: csstype.Property.Right<string | number> | undefined;
|
|
47075
|
+
'--right-mobile'?: csstype.Property.Right<string | number> | undefined;
|
|
47076
|
+
'--hvr-right-mobile'?: csstype.Property.Right<string | number> | undefined;
|
|
47077
|
+
'--focus-right-mobile'?: csstype.Property.Right<string | number> | undefined;
|
|
47078
|
+
'--rg'?: csstype.Property.RowGap<string | number> | undefined;
|
|
47079
|
+
'--hvr-rg'?: csstype.Property.RowGap<string | number> | undefined;
|
|
47080
|
+
'--focus-rg'?: csstype.Property.RowGap<string | number> | undefined;
|
|
47081
|
+
'--rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
|
|
47082
|
+
'--hvr-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
|
|
47083
|
+
'--focus-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
|
|
47084
|
+
'--rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
|
|
47085
|
+
'--hvr-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
|
|
47086
|
+
'--focus-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
|
|
47087
|
+
'--ta'?: csstype.Property.TextAlign | undefined;
|
|
47088
|
+
'--hvr-ta'?: csstype.Property.TextAlign | undefined;
|
|
47089
|
+
'--focus-ta'?: csstype.Property.TextAlign | undefined;
|
|
47090
|
+
'--ta-tablet'?: csstype.Property.TextAlign | undefined;
|
|
47091
|
+
'--hvr-ta-tablet'?: csstype.Property.TextAlign | undefined;
|
|
47092
|
+
'--focus-ta-tablet'?: csstype.Property.TextAlign | undefined;
|
|
47093
|
+
'--ta-mobile'?: csstype.Property.TextAlign | undefined;
|
|
47094
|
+
'--hvr-ta-mobile'?: csstype.Property.TextAlign | undefined;
|
|
47095
|
+
'--focus-ta-mobile'?: csstype.Property.TextAlign | undefined;
|
|
47096
|
+
'--ts'?: csstype.Property.TextShadow | undefined;
|
|
47097
|
+
'--hvr-ts'?: csstype.Property.TextShadow | undefined;
|
|
47098
|
+
'--focus-ts'?: csstype.Property.TextShadow | undefined;
|
|
47099
|
+
'--ts-tablet'?: csstype.Property.TextShadow | undefined;
|
|
47100
|
+
'--hvr-ts-tablet'?: csstype.Property.TextShadow | undefined;
|
|
47101
|
+
'--focus-ts-tablet'?: csstype.Property.TextShadow | undefined;
|
|
47102
|
+
'--ts-mobile'?: csstype.Property.TextShadow | undefined;
|
|
47103
|
+
'--hvr-ts-mobile'?: csstype.Property.TextShadow | undefined;
|
|
47104
|
+
'--focus-ts-mobile'?: csstype.Property.TextShadow | undefined;
|
|
47105
|
+
'--tt'?: csstype.Property.TextTransform | undefined;
|
|
47106
|
+
'--hvr-tt'?: csstype.Property.TextTransform | undefined;
|
|
47107
|
+
'--focus-tt'?: csstype.Property.TextTransform | undefined;
|
|
47108
|
+
'--tt-tablet'?: csstype.Property.TextTransform | undefined;
|
|
47109
|
+
'--hvr-tt-tablet'?: csstype.Property.TextTransform | undefined;
|
|
47110
|
+
'--focus-tt-tablet'?: csstype.Property.TextTransform | undefined;
|
|
47111
|
+
'--tt-mobile'?: csstype.Property.TextTransform | undefined;
|
|
47112
|
+
'--hvr-tt-mobile'?: csstype.Property.TextTransform | undefined;
|
|
47113
|
+
'--focus-tt-mobile'?: csstype.Property.TextTransform | undefined;
|
|
47114
|
+
'--top'?: csstype.Property.Top<string | number> | undefined;
|
|
47115
|
+
'--hvr-top'?: csstype.Property.Top<string | number> | undefined;
|
|
47116
|
+
'--focus-top'?: csstype.Property.Top<string | number> | undefined;
|
|
47117
|
+
'--top-tablet'?: csstype.Property.Top<string | number> | undefined;
|
|
47118
|
+
'--hvr-top-tablet'?: csstype.Property.Top<string | number> | undefined;
|
|
47119
|
+
'--focus-top-tablet'?: csstype.Property.Top<string | number> | undefined;
|
|
47120
|
+
'--top-mobile'?: csstype.Property.Top<string | number> | undefined;
|
|
47121
|
+
'--hvr-top-mobile'?: csstype.Property.Top<string | number> | undefined;
|
|
47122
|
+
'--focus-top-mobile'?: csstype.Property.Top<string | number> | undefined;
|
|
47123
|
+
'--t'?: csstype.Property.Transform | undefined;
|
|
47124
|
+
'--hvr-t'?: csstype.Property.Transform | undefined;
|
|
47125
|
+
'--focus-t'?: csstype.Property.Transform | undefined;
|
|
47126
|
+
'--t-tablet'?: csstype.Property.Transform | undefined;
|
|
47127
|
+
'--hvr-t-tablet'?: csstype.Property.Transform | undefined;
|
|
47128
|
+
'--focus-t-tablet'?: csstype.Property.Transform | undefined;
|
|
47129
|
+
'--t-mobile'?: csstype.Property.Transform | undefined;
|
|
47130
|
+
'--hvr-t-mobile'?: csstype.Property.Transform | undefined;
|
|
47131
|
+
'--focus-t-mobile'?: csstype.Property.Transform | undefined;
|
|
47132
|
+
'--v'?: csstype.Property.Visibility | undefined;
|
|
47133
|
+
'--hvr-v'?: csstype.Property.Visibility | undefined;
|
|
47134
|
+
'--focus-v'?: csstype.Property.Visibility | undefined;
|
|
47135
|
+
'--v-tablet'?: csstype.Property.Visibility | undefined;
|
|
47136
|
+
'--hvr-v-tablet'?: csstype.Property.Visibility | undefined;
|
|
47137
|
+
'--focus-v-tablet'?: csstype.Property.Visibility | undefined;
|
|
47138
|
+
'--v-mobile'?: csstype.Property.Visibility | undefined;
|
|
47139
|
+
'--hvr-v-mobile'?: csstype.Property.Visibility | undefined;
|
|
47140
|
+
'--focus-v-mobile'?: csstype.Property.Visibility | undefined;
|
|
47141
|
+
'--ws'?: csstype.Property.WhiteSpace | undefined;
|
|
47142
|
+
'--hvr-ws'?: csstype.Property.WhiteSpace | undefined;
|
|
47143
|
+
'--focus-ws'?: csstype.Property.WhiteSpace | undefined;
|
|
47144
|
+
'--ws-tablet'?: csstype.Property.WhiteSpace | undefined;
|
|
47145
|
+
'--hvr-ws-tablet'?: csstype.Property.WhiteSpace | undefined;
|
|
47146
|
+
'--focus-ws-tablet'?: csstype.Property.WhiteSpace | undefined;
|
|
47147
|
+
'--ws-mobile'?: csstype.Property.WhiteSpace | undefined;
|
|
47148
|
+
'--hvr-ws-mobile'?: csstype.Property.WhiteSpace | undefined;
|
|
47149
|
+
'--focus-ws-mobile'?: csstype.Property.WhiteSpace | undefined;
|
|
47150
|
+
'--w'?: csstype.Property.Width<string | number> | undefined;
|
|
47151
|
+
'--hvr-w'?: csstype.Property.Width<string | number> | undefined;
|
|
47152
|
+
'--focus-w'?: csstype.Property.Width<string | number> | undefined;
|
|
47153
|
+
'--w-tablet'?: csstype.Property.Width<string | number> | undefined;
|
|
47154
|
+
'--hvr-w-tablet'?: csstype.Property.Width<string | number> | undefined;
|
|
47155
|
+
'--focus-w-tablet'?: csstype.Property.Width<string | number> | undefined;
|
|
47156
|
+
'--w-mobile'?: csstype.Property.Width<string | number> | undefined;
|
|
47157
|
+
'--hvr-w-mobile'?: csstype.Property.Width<string | number> | undefined;
|
|
47158
|
+
'--focus-w-mobile'?: csstype.Property.Width<string | number> | undefined;
|
|
47159
|
+
'--z'?: csstype.Property.ZIndex | undefined;
|
|
47160
|
+
'--hvr-z'?: csstype.Property.ZIndex | undefined;
|
|
47161
|
+
'--focus-z'?: csstype.Property.ZIndex | undefined;
|
|
47162
|
+
'--z-tablet'?: csstype.Property.ZIndex | undefined;
|
|
47163
|
+
'--hvr-z-tablet'?: csstype.Property.ZIndex | undefined;
|
|
47164
|
+
'--focus-z-tablet'?: csstype.Property.ZIndex | undefined;
|
|
47165
|
+
'--z-mobile'?: csstype.Property.ZIndex | undefined;
|
|
47166
|
+
'--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
|
|
47167
|
+
'--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
|
|
47168
|
+
'--wm'?: csstype.Property.WritingMode | undefined;
|
|
47169
|
+
'--hvr-wm'?: csstype.Property.WritingMode | undefined;
|
|
47170
|
+
'--focus-wm'?: csstype.Property.WritingMode | undefined;
|
|
47171
|
+
'--wm-tablet'?: csstype.Property.WritingMode | undefined;
|
|
47172
|
+
'--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
|
|
47173
|
+
'--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
|
|
47174
|
+
'--wm-mobile'?: csstype.Property.WritingMode | undefined;
|
|
47175
|
+
'--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
|
|
47176
|
+
'--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
|
|
47177
|
+
accentColor?: csstype.Property.AccentColor | undefined;
|
|
47178
|
+
alignContent?: csstype.Property.AlignContent | undefined;
|
|
47179
|
+
alignItems?: csstype.Property.AlignItems | undefined;
|
|
47180
|
+
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
47181
|
+
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
47182
|
+
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
47183
|
+
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
47184
|
+
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
47185
|
+
animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
47186
|
+
animationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
47187
|
+
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
47188
|
+
animationName?: csstype.Property.AnimationName | undefined;
|
|
47189
|
+
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
47190
|
+
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
47191
|
+
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
47192
|
+
appearance?: csstype.Property.Appearance | undefined;
|
|
47193
|
+
aspectRatio?: csstype.Property.AspectRatio | undefined;
|
|
47194
|
+
backdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
47195
|
+
backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
47196
|
+
backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
|
|
47197
|
+
backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
|
|
47198
|
+
backgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
47199
|
+
backgroundColor?: csstype.Property.BackgroundColor | undefined;
|
|
47200
|
+
backgroundImage?: csstype.Property.BackgroundImage | undefined;
|
|
47201
|
+
backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
47202
|
+
backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
|
|
47203
|
+
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
47204
|
+
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
47205
|
+
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
47206
|
+
blockOverflow?: csstype.Property.BlockOverflow | undefined;
|
|
47207
|
+
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
47208
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
47209
|
+
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
47210
|
+
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
47211
|
+
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
47212
|
+
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
47213
|
+
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
47214
|
+
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
47215
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
47216
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
47217
|
+
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
47218
|
+
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
47219
|
+
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
47220
|
+
borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
|
|
47221
|
+
borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
47222
|
+
borderCollapse?: csstype.Property.BorderCollapse | undefined;
|
|
47223
|
+
borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
|
|
47224
|
+
borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
|
|
47225
|
+
borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
|
|
47226
|
+
borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
|
|
47227
|
+
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
47228
|
+
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
47229
|
+
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
47230
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
47231
|
+
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
47232
|
+
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
47233
|
+
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
47234
|
+
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
47235
|
+
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
47236
|
+
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
47237
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
47238
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
47239
|
+
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
47240
|
+
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
47241
|
+
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
47242
|
+
borderRightColor?: csstype.Property.BorderRightColor | undefined;
|
|
47243
|
+
borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
|
|
47244
|
+
borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
|
|
47245
|
+
borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
|
|
47246
|
+
borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
|
|
47247
|
+
borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
|
|
47248
|
+
borderTopColor?: csstype.Property.BorderTopColor | undefined;
|
|
47249
|
+
borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
47250
|
+
borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
47251
|
+
borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
|
|
47252
|
+
borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
|
|
47253
|
+
bottom?: csstype.Property.Bottom<string | number> | undefined;
|
|
47254
|
+
boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
47255
|
+
boxShadow?: csstype.Property.BoxShadow | undefined;
|
|
47256
|
+
boxSizing?: csstype.Property.BoxSizing | undefined;
|
|
47257
|
+
breakAfter?: csstype.Property.BreakAfter | undefined;
|
|
47258
|
+
breakBefore?: csstype.Property.BreakBefore | undefined;
|
|
47259
|
+
breakInside?: csstype.Property.BreakInside | undefined;
|
|
47260
|
+
captionSide?: csstype.Property.CaptionSide | undefined;
|
|
47261
|
+
caretColor?: csstype.Property.CaretColor | undefined;
|
|
47262
|
+
caretShape?: csstype.Property.CaretShape | undefined;
|
|
47263
|
+
clear?: csstype.Property.Clear | undefined;
|
|
47264
|
+
clipPath?: csstype.Property.ClipPath | undefined;
|
|
47265
|
+
color?: csstype.Property.Color | undefined;
|
|
47266
|
+
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
47267
|
+
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
47268
|
+
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
47269
|
+
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
47270
|
+
columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
47271
|
+
columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
47272
|
+
columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
47273
|
+
columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
47274
|
+
columnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
47275
|
+
columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
|
|
47276
|
+
contain?: csstype.Property.Contain | undefined;
|
|
47277
|
+
containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
47278
|
+
containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
47279
|
+
containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
47280
|
+
containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
47281
|
+
containerName?: csstype.Property.ContainerName | undefined;
|
|
47282
|
+
containerType?: csstype.Property.ContainerType | undefined;
|
|
47283
|
+
content?: csstype.Property.Content | undefined;
|
|
47284
|
+
contentVisibility?: csstype.Property.ContentVisibility | undefined;
|
|
47285
|
+
counterIncrement?: csstype.Property.CounterIncrement | undefined;
|
|
47286
|
+
counterReset?: csstype.Property.CounterReset | undefined;
|
|
47287
|
+
counterSet?: csstype.Property.CounterSet | undefined;
|
|
47288
|
+
cursor?: csstype.Property.Cursor | undefined;
|
|
47289
|
+
direction?: csstype.Property.Direction | undefined;
|
|
47290
|
+
display?: csstype.Property.Display | undefined;
|
|
47291
|
+
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
47292
|
+
filter?: csstype.Property.Filter | undefined;
|
|
47293
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
47294
|
+
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
47295
|
+
flexGrow?: csstype.Property.FlexGrow | undefined;
|
|
47296
|
+
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
47297
|
+
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
47298
|
+
float?: csstype.Property.Float | undefined;
|
|
47299
|
+
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
47300
|
+
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
47301
|
+
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
47302
|
+
fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
47303
|
+
fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
|
|
47304
|
+
fontPalette?: csstype.Property.FontPalette | undefined;
|
|
47305
|
+
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
47306
|
+
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
47307
|
+
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
47308
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
47309
|
+
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
47310
|
+
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
47311
|
+
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
47312
|
+
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
47313
|
+
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
47314
|
+
fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
|
|
47315
|
+
fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
|
|
47316
|
+
fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
47317
|
+
fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
|
|
47318
|
+
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
47319
|
+
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
47320
|
+
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
47321
|
+
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
47322
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
47323
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
47324
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
47325
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
|
|
47326
|
+
gridColumnStart?: csstype.Property.GridColumnStart | undefined;
|
|
47327
|
+
gridRowEnd?: csstype.Property.GridRowEnd | undefined;
|
|
47328
|
+
gridRowStart?: csstype.Property.GridRowStart | undefined;
|
|
47329
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
|
|
47330
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
47331
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
47332
|
+
hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
|
|
47333
|
+
height?: csstype.Property.Height<string | number> | undefined;
|
|
47334
|
+
hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
47335
|
+
hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
|
|
47336
|
+
hyphens?: csstype.Property.Hyphens | undefined;
|
|
47337
|
+
imageOrientation?: csstype.Property.ImageOrientation | undefined;
|
|
47338
|
+
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
47339
|
+
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
47340
|
+
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
47341
|
+
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
47342
|
+
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
47343
|
+
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
47344
|
+
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
47345
|
+
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
47346
|
+
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
47347
|
+
isolation?: csstype.Property.Isolation | undefined;
|
|
47348
|
+
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
47349
|
+
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
47350
|
+
justifySelf?: csstype.Property.JustifySelf | undefined;
|
|
47351
|
+
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
47352
|
+
left?: csstype.Property.Left<string | number> | undefined;
|
|
47353
|
+
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
47354
|
+
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
47355
|
+
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
47356
|
+
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
47357
|
+
listStyleImage?: csstype.Property.ListStyleImage | undefined;
|
|
47358
|
+
listStylePosition?: csstype.Property.ListStylePosition | undefined;
|
|
47359
|
+
listStyleType?: csstype.Property.ListStyleType | undefined;
|
|
47360
|
+
marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
|
|
47361
|
+
marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
|
|
47362
|
+
marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
47363
|
+
marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
47364
|
+
marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
47365
|
+
marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
47366
|
+
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
47367
|
+
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
47368
|
+
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
47369
|
+
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
47370
|
+
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
47371
|
+
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
47372
|
+
maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
47373
|
+
maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
|
|
47374
|
+
maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
|
|
47375
|
+
maskClip?: csstype.Property.MaskClip | undefined;
|
|
47376
|
+
maskComposite?: csstype.Property.MaskComposite | undefined;
|
|
47377
|
+
maskImage?: csstype.Property.MaskImage | undefined;
|
|
47378
|
+
maskMode?: csstype.Property.MaskMode | undefined;
|
|
47379
|
+
maskOrigin?: csstype.Property.MaskOrigin | undefined;
|
|
47380
|
+
maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
|
|
47381
|
+
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
47382
|
+
maskSize?: csstype.Property.MaskSize<string | number> | undefined;
|
|
47383
|
+
maskType?: csstype.Property.MaskType | undefined;
|
|
47384
|
+
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
47385
|
+
mathShift?: csstype.Property.MathShift | undefined;
|
|
47386
|
+
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
47387
|
+
maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
|
|
47388
|
+
maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
47389
|
+
maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
|
|
47390
|
+
maxLines?: csstype.Property.MaxLines | undefined;
|
|
47391
|
+
maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
47392
|
+
minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
|
|
47393
|
+
minHeight?: csstype.Property.MinHeight<string | number> | undefined;
|
|
47394
|
+
minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
|
|
47395
|
+
minWidth?: csstype.Property.MinWidth<string | number> | undefined;
|
|
47396
|
+
mixBlendMode?: csstype.Property.MixBlendMode | undefined;
|
|
47397
|
+
motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
47398
|
+
motionPath?: csstype.Property.OffsetPath | undefined;
|
|
47399
|
+
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
47400
|
+
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
47401
|
+
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
47402
|
+
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
47403
|
+
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
47404
|
+
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
47405
|
+
offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
|
|
47406
|
+
offsetRotate?: csstype.Property.OffsetRotate | undefined;
|
|
47407
|
+
offsetRotation?: csstype.Property.OffsetRotate | undefined;
|
|
47408
|
+
opacity?: csstype.Property.Opacity | undefined;
|
|
47409
|
+
order?: csstype.Property.Order | undefined;
|
|
47410
|
+
orphans?: csstype.Property.Orphans | undefined;
|
|
47411
|
+
outlineColor?: csstype.Property.OutlineColor | undefined;
|
|
47412
|
+
outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
|
|
47413
|
+
outlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
47414
|
+
outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
47415
|
+
overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
|
|
47416
|
+
overflowBlock?: csstype.Property.OverflowBlock | undefined;
|
|
47417
|
+
overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
|
|
47418
|
+
overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
|
|
47419
|
+
overflowInline?: csstype.Property.OverflowInline | undefined;
|
|
47420
|
+
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
47421
|
+
overflowX?: csstype.Property.OverflowX | undefined;
|
|
47422
|
+
overflowY?: csstype.Property.OverflowY | undefined;
|
|
47423
|
+
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
47424
|
+
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
47425
|
+
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
47426
|
+
overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
|
|
47427
|
+
paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
|
|
47428
|
+
paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
|
|
47429
|
+
paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
47430
|
+
paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
47431
|
+
paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
47432
|
+
paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
47433
|
+
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
47434
|
+
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
47435
|
+
page?: csstype.Property.Page | undefined;
|
|
47436
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
47437
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
47438
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
47439
|
+
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
47440
|
+
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
47441
|
+
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
47442
|
+
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
47443
|
+
position?: csstype.Property.Position | undefined;
|
|
47444
|
+
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
47445
|
+
quotes?: csstype.Property.Quotes | undefined;
|
|
47446
|
+
resize?: csstype.Property.Resize | undefined;
|
|
47447
|
+
right?: csstype.Property.Right<string | number> | undefined;
|
|
47448
|
+
rotate?: csstype.Property.Rotate | undefined;
|
|
47449
|
+
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
47450
|
+
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
47451
|
+
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
47452
|
+
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
47453
|
+
scale?: csstype.Property.Scale | undefined;
|
|
47454
|
+
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
47455
|
+
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
47456
|
+
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
47457
|
+
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
47458
|
+
scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
47459
|
+
scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
47460
|
+
scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
|
|
47461
|
+
scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
|
|
47462
|
+
scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
|
|
47463
|
+
scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
47464
|
+
scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
47465
|
+
scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
|
|
47466
|
+
scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
47467
|
+
scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
47468
|
+
scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
|
|
47469
|
+
scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
|
|
47470
|
+
scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
|
|
47471
|
+
scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
|
|
47472
|
+
scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
47473
|
+
scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
|
|
47474
|
+
scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
|
|
47475
|
+
scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
|
|
47476
|
+
scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
|
|
47477
|
+
scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
47478
|
+
scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
|
|
47479
|
+
scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
|
|
47480
|
+
scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
|
|
47481
|
+
scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
|
|
47482
|
+
scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
|
|
47483
|
+
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
47484
|
+
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
47485
|
+
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
47486
|
+
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
47487
|
+
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
47488
|
+
textAlign?: csstype.Property.TextAlign | undefined;
|
|
47489
|
+
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
47490
|
+
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
47491
|
+
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
47492
|
+
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
47493
|
+
textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
47494
|
+
textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
|
|
47495
|
+
textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
47496
|
+
textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
47497
|
+
textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
47498
|
+
textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
47499
|
+
textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
47500
|
+
textIndent?: csstype.Property.TextIndent<string | number> | undefined;
|
|
47501
|
+
textJustify?: csstype.Property.TextJustify | undefined;
|
|
47502
|
+
textOrientation?: csstype.Property.TextOrientation | undefined;
|
|
47503
|
+
textOverflow?: csstype.Property.TextOverflow | undefined;
|
|
47504
|
+
textRendering?: csstype.Property.TextRendering | undefined;
|
|
47505
|
+
textShadow?: csstype.Property.TextShadow | undefined;
|
|
47506
|
+
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
47507
|
+
textTransform?: csstype.Property.TextTransform | undefined;
|
|
47508
|
+
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
47509
|
+
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
47510
|
+
top?: csstype.Property.Top<string | number> | undefined;
|
|
47511
|
+
touchAction?: csstype.Property.TouchAction | undefined;
|
|
47512
|
+
transform?: csstype.Property.Transform | undefined;
|
|
47513
|
+
transformBox?: csstype.Property.TransformBox | undefined;
|
|
47514
|
+
transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
47515
|
+
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
47516
|
+
transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
47517
|
+
transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
47518
|
+
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
47519
|
+
transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
47520
|
+
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
47521
|
+
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
47522
|
+
userSelect?: csstype.Property.UserSelect | undefined;
|
|
47523
|
+
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
47524
|
+
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
47525
|
+
visibility?: csstype.Property.Visibility | undefined;
|
|
47526
|
+
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
47527
|
+
widows?: csstype.Property.Widows | undefined;
|
|
47528
|
+
width?: csstype.Property.Width<string | number> | undefined;
|
|
47529
|
+
willChange?: csstype.Property.WillChange | undefined;
|
|
47530
|
+
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
47531
|
+
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
47532
|
+
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
47533
|
+
writingMode?: csstype.Property.WritingMode | undefined;
|
|
47534
|
+
zIndex?: csstype.Property.ZIndex | undefined;
|
|
47535
|
+
zoom?: csstype.Property.Zoom | undefined;
|
|
47536
|
+
all?: csstype.Globals | undefined;
|
|
47537
|
+
animation?: csstype.Property.Animation<string & {}> | undefined;
|
|
47538
|
+
background?: csstype.Property.Background<string | number> | undefined;
|
|
47539
|
+
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
47540
|
+
border?: csstype.Property.Border<string | number> | undefined;
|
|
47541
|
+
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
47542
|
+
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
47543
|
+
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
47544
|
+
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
47545
|
+
borderColor?: csstype.Property.BorderColor | undefined;
|
|
47546
|
+
borderImage?: csstype.Property.BorderImage | undefined;
|
|
47547
|
+
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
47548
|
+
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
47549
|
+
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
47550
|
+
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
47551
|
+
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
47552
|
+
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
47553
|
+
borderStyle?: csstype.Property.BorderStyle | undefined;
|
|
47554
|
+
borderTop?: csstype.Property.BorderTop<string | number> | undefined;
|
|
47555
|
+
borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
47556
|
+
caret?: csstype.Property.Caret | undefined;
|
|
47557
|
+
columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
47558
|
+
columns?: csstype.Property.Columns<string | number> | undefined;
|
|
47559
|
+
containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
|
|
47560
|
+
container?: csstype.Property.Container | undefined;
|
|
47561
|
+
flex?: csstype.Property.Flex<string | number> | undefined;
|
|
47562
|
+
flexFlow?: csstype.Property.FlexFlow | undefined;
|
|
47563
|
+
font?: csstype.Property.Font | undefined;
|
|
47564
|
+
gap?: csstype.Property.Gap<string | number> | undefined;
|
|
47565
|
+
grid?: csstype.Property.Grid | undefined;
|
|
47566
|
+
gridArea?: csstype.Property.GridArea | undefined;
|
|
47567
|
+
gridColumn?: csstype.Property.GridColumn | undefined;
|
|
47568
|
+
gridRow?: csstype.Property.GridRow | undefined;
|
|
47569
|
+
gridTemplate?: csstype.Property.GridTemplate | undefined;
|
|
47570
|
+
inset?: csstype.Property.Inset<string | number> | undefined;
|
|
47571
|
+
insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
47572
|
+
insetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
47573
|
+
lineClamp?: csstype.Property.LineClamp | undefined;
|
|
47574
|
+
listStyle?: csstype.Property.ListStyle | undefined;
|
|
47575
|
+
margin?: csstype.Property.Margin<string | number> | undefined;
|
|
47576
|
+
marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
|
|
47577
|
+
marginInline?: csstype.Property.MarginInline<string | number> | undefined;
|
|
47578
|
+
mask?: csstype.Property.Mask<string | number> | undefined;
|
|
47579
|
+
maskBorder?: csstype.Property.MaskBorder | undefined;
|
|
47580
|
+
motion?: csstype.Property.Offset<string | number> | undefined;
|
|
47581
|
+
offset?: csstype.Property.Offset<string | number> | undefined;
|
|
47582
|
+
outline?: csstype.Property.Outline<string | number> | undefined;
|
|
47583
|
+
overflow?: csstype.Property.Overflow | undefined;
|
|
47584
|
+
overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
|
|
47585
|
+
padding?: csstype.Property.Padding<string | number> | undefined;
|
|
47586
|
+
paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
|
|
47587
|
+
paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
|
|
47588
|
+
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
47589
|
+
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
47590
|
+
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
47591
|
+
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
47592
|
+
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
47593
|
+
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
47594
|
+
scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
|
|
47595
|
+
scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
|
|
47596
|
+
scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
|
|
47597
|
+
scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
47598
|
+
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
47599
|
+
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
47600
|
+
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
47601
|
+
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
47602
|
+
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
47603
|
+
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
47604
|
+
MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
47605
|
+
MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
47606
|
+
MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
47607
|
+
MozAnimationName?: csstype.Property.AnimationName | undefined;
|
|
47608
|
+
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
47609
|
+
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
47610
|
+
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
47611
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
47612
|
+
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
47613
|
+
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
47614
|
+
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
47615
|
+
MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
47616
|
+
MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
47617
|
+
MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
|
|
47618
|
+
MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
|
|
47619
|
+
MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
47620
|
+
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
47621
|
+
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
47622
|
+
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
47623
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
47624
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
47625
|
+
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
47626
|
+
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
47627
|
+
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
47628
|
+
MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
|
|
47629
|
+
MozContextProperties?: csstype.Property.MozContextProperties | undefined;
|
|
47630
|
+
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
47631
|
+
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
47632
|
+
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
47633
|
+
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
47634
|
+
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
47635
|
+
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
47636
|
+
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
47637
|
+
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
47638
|
+
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
47639
|
+
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
47640
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
47641
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
47642
|
+
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
47643
|
+
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
47644
|
+
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
47645
|
+
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
47646
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
47647
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
47648
|
+
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
47649
|
+
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
47650
|
+
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
47651
|
+
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
47652
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
47653
|
+
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
47654
|
+
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
47655
|
+
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
47656
|
+
MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
|
|
47657
|
+
msAccelerator?: csstype.Property.MsAccelerator | undefined;
|
|
47658
|
+
msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
|
|
47659
|
+
msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
|
|
47660
|
+
msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
|
|
47661
|
+
msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
|
|
47662
|
+
msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
|
|
47663
|
+
msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
|
|
47664
|
+
msContentZooming?: csstype.Property.MsContentZooming | undefined;
|
|
47665
|
+
msFilter?: csstype.Property.MsFilter | undefined;
|
|
47666
|
+
msFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
47667
|
+
msFlexPositive?: csstype.Property.FlexGrow | undefined;
|
|
47668
|
+
msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
|
|
47669
|
+
msFlowInto?: csstype.Property.MsFlowInto | undefined;
|
|
47670
|
+
msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
|
|
47671
|
+
msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
|
|
47672
|
+
msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
|
|
47673
|
+
msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
|
|
47674
|
+
msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
|
|
47675
|
+
msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
47676
|
+
msHyphens?: csstype.Property.Hyphens | undefined;
|
|
47677
|
+
msImeAlign?: csstype.Property.MsImeAlign | undefined;
|
|
47678
|
+
msLineBreak?: csstype.Property.LineBreak | undefined;
|
|
47679
|
+
msOrder?: csstype.Property.Order | undefined;
|
|
47680
|
+
msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
|
|
47681
|
+
msOverflowX?: csstype.Property.OverflowX | undefined;
|
|
47682
|
+
msOverflowY?: csstype.Property.OverflowY | undefined;
|
|
47683
|
+
msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
|
|
47684
|
+
msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
|
|
47685
|
+
msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
|
|
47686
|
+
msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
|
|
47687
|
+
msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
|
|
47688
|
+
msScrollRails?: csstype.Property.MsScrollRails | undefined;
|
|
47689
|
+
msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
|
|
47690
|
+
msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
|
|
47691
|
+
msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
|
|
47692
|
+
msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
|
|
47693
|
+
msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
|
|
47694
|
+
msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
|
|
47695
|
+
msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
|
|
47696
|
+
msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
|
|
47697
|
+
msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
|
|
47698
|
+
msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
|
|
47699
|
+
msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
|
|
47700
|
+
msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
|
|
47701
|
+
msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
|
|
47702
|
+
msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
|
|
47703
|
+
msTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
47704
|
+
msTouchAction?: csstype.Property.TouchAction | undefined;
|
|
47705
|
+
msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
|
|
47706
|
+
msTransform?: csstype.Property.Transform | undefined;
|
|
47707
|
+
msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
47708
|
+
msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
47709
|
+
msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
47710
|
+
msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
47711
|
+
msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
47712
|
+
msUserSelect?: csstype.Property.MsUserSelect | undefined;
|
|
47713
|
+
msWordBreak?: csstype.Property.WordBreak | undefined;
|
|
47714
|
+
msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
|
|
47715
|
+
msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
|
|
47716
|
+
msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
|
|
47717
|
+
msWritingMode?: csstype.Property.WritingMode | undefined;
|
|
47718
|
+
WebkitAlignContent?: csstype.Property.AlignContent | undefined;
|
|
47719
|
+
WebkitAlignItems?: csstype.Property.AlignItems | undefined;
|
|
47720
|
+
WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
|
|
47721
|
+
WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
47722
|
+
WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
47723
|
+
WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
47724
|
+
WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
47725
|
+
WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
47726
|
+
WebkitAnimationName?: csstype.Property.AnimationName | undefined;
|
|
47727
|
+
WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
47728
|
+
WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
47729
|
+
WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
|
|
47730
|
+
WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
47731
|
+
WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
47732
|
+
WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
47733
|
+
WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
47734
|
+
WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
47735
|
+
WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
|
|
47736
|
+
WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
|
|
47737
|
+
WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
|
|
47738
|
+
WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
47739
|
+
WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
47740
|
+
WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
47741
|
+
WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
47742
|
+
WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
47743
|
+
WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
47744
|
+
WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
|
|
47745
|
+
WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
47746
|
+
WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
47747
|
+
WebkitClipPath?: csstype.Property.ClipPath | undefined;
|
|
47748
|
+
WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
47749
|
+
WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
47750
|
+
WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
47751
|
+
WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
47752
|
+
WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
47753
|
+
WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
47754
|
+
WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
|
|
47755
|
+
WebkitFilter?: csstype.Property.Filter | undefined;
|
|
47756
|
+
WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
47757
|
+
WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
47758
|
+
WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
|
|
47759
|
+
WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
|
|
47760
|
+
WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
|
|
47761
|
+
WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
47762
|
+
WebkitFontKerning?: csstype.Property.FontKerning | undefined;
|
|
47763
|
+
WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
47764
|
+
WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
47765
|
+
WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
47766
|
+
WebkitHyphens?: csstype.Property.Hyphens | undefined;
|
|
47767
|
+
WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
|
|
47768
|
+
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
47769
|
+
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
47770
|
+
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
47771
|
+
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
47772
|
+
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
47773
|
+
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
47774
|
+
WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
47775
|
+
WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
47776
|
+
WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
47777
|
+
WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
|
|
47778
|
+
WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
|
|
47779
|
+
WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
|
|
47780
|
+
WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
|
|
47781
|
+
WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
|
|
47782
|
+
WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
|
|
47783
|
+
WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
|
|
47784
|
+
WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
|
|
47785
|
+
WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
|
|
47786
|
+
WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
|
|
47787
|
+
WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
|
|
47788
|
+
WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
|
|
47789
|
+
WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
|
|
47790
|
+
WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
|
|
47791
|
+
WebkitOrder?: csstype.Property.Order | undefined;
|
|
47792
|
+
WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
|
|
47793
|
+
WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
47794
|
+
WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
47795
|
+
WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
47796
|
+
WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
47797
|
+
WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
47798
|
+
WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
47799
|
+
WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
47800
|
+
WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
47801
|
+
WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
|
|
47802
|
+
WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
|
|
47803
|
+
WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
47804
|
+
WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
47805
|
+
WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
47806
|
+
WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
47807
|
+
WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
47808
|
+
WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
47809
|
+
WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
47810
|
+
WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
|
|
47811
|
+
WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
|
|
47812
|
+
WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
47813
|
+
WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
|
|
47814
|
+
WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
|
|
47815
|
+
WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
47816
|
+
WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
|
|
47817
|
+
WebkitTransform?: csstype.Property.Transform | undefined;
|
|
47818
|
+
WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
47819
|
+
WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
47820
|
+
WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
47821
|
+
WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
47822
|
+
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
47823
|
+
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
47824
|
+
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
47825
|
+
WebkitUserSelect?: csstype.Property.UserSelect | undefined;
|
|
47826
|
+
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
47827
|
+
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
47828
|
+
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
47829
|
+
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
47830
|
+
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
47831
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
47832
|
+
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
47833
|
+
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
47834
|
+
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
47835
|
+
msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
|
|
47836
|
+
msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
|
|
47837
|
+
msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
|
|
47838
|
+
msTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
47839
|
+
WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
47840
|
+
WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
|
|
47841
|
+
WebkitBorderImage?: csstype.Property.BorderImage | undefined;
|
|
47842
|
+
WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
47843
|
+
WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
47844
|
+
WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
47845
|
+
WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
47846
|
+
WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
|
|
47847
|
+
WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
|
|
47848
|
+
WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
|
|
47849
|
+
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
47850
|
+
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
47851
|
+
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
47852
|
+
azimuth?: csstype.Property.Azimuth | undefined;
|
|
47853
|
+
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
47854
|
+
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
47855
|
+
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
47856
|
+
boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
47857
|
+
boxLines?: csstype.Property.BoxLines | undefined;
|
|
47858
|
+
boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
47859
|
+
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
47860
|
+
boxPack?: csstype.Property.BoxPack | undefined;
|
|
47861
|
+
clip?: csstype.Property.Clip | undefined;
|
|
47862
|
+
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
47863
|
+
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
47864
|
+
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
47865
|
+
imeMode?: csstype.Property.ImeMode | undefined;
|
|
47866
|
+
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
47867
|
+
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
47868
|
+
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
47869
|
+
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
47870
|
+
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
47871
|
+
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
47872
|
+
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
47873
|
+
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
47874
|
+
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
47875
|
+
scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
47876
|
+
scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
|
|
47877
|
+
scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
|
|
47878
|
+
KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
47879
|
+
KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
47880
|
+
KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
47881
|
+
KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
47882
|
+
KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
|
|
47883
|
+
KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
47884
|
+
KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
47885
|
+
KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
|
|
47886
|
+
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
47887
|
+
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
47888
|
+
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
47889
|
+
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
47890
|
+
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
47891
|
+
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
47892
|
+
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
47893
|
+
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
47894
|
+
MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
47895
|
+
MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
47896
|
+
MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
47897
|
+
MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
47898
|
+
MozBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
47899
|
+
MozBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
47900
|
+
MozBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
47901
|
+
MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
47902
|
+
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
47903
|
+
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
47904
|
+
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
47905
|
+
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
47906
|
+
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
47907
|
+
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
47908
|
+
MozOutline?: csstype.Property.Outline<string | number> | undefined;
|
|
47909
|
+
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
47910
|
+
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
47911
|
+
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
47912
|
+
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
47913
|
+
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
47914
|
+
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
47915
|
+
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
47916
|
+
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
47917
|
+
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
47918
|
+
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
47919
|
+
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
47920
|
+
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
47921
|
+
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
47922
|
+
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
47923
|
+
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
47924
|
+
OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
47925
|
+
OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
47926
|
+
OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
47927
|
+
OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
47928
|
+
OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
47929
|
+
OAnimationName?: csstype.Property.AnimationName | undefined;
|
|
47930
|
+
OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
47931
|
+
OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
47932
|
+
OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
47933
|
+
OBorderImage?: csstype.Property.BorderImage | undefined;
|
|
47934
|
+
OObjectFit?: csstype.Property.ObjectFit | undefined;
|
|
47935
|
+
OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
47936
|
+
OTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
47937
|
+
OTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
47938
|
+
OTransform?: csstype.Property.Transform | undefined;
|
|
47939
|
+
OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
47940
|
+
OTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
47941
|
+
OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
47942
|
+
OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
47943
|
+
OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
47944
|
+
OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
47945
|
+
WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
47946
|
+
WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
47947
|
+
WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
47948
|
+
WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
47949
|
+
WebkitBoxLines?: csstype.Property.BoxLines | undefined;
|
|
47950
|
+
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
47951
|
+
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
47952
|
+
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
47953
|
+
WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
47954
|
+
WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
47955
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
47956
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
47957
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
47958
|
+
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
47959
|
+
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
47960
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
47961
|
+
fill?: csstype.Property.Fill | undefined;
|
|
47962
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
47963
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
47964
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
47965
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
47966
|
+
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
47967
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
47968
|
+
marker?: csstype.Property.Marker | undefined;
|
|
47969
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
47970
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
47971
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
47972
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
47973
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
47974
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
47975
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
47976
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
47977
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
47978
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
47979
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
47980
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
47981
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
47982
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
47983
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
47984
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
47985
|
+
};
|
|
47986
|
+
|
|
47987
|
+
type ArticlesQueryVariables = Exact$1<{
|
|
47988
|
+
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
47989
|
+
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
47990
|
+
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
47991
|
+
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
47992
|
+
orderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
47993
|
+
where?: InputMaybe$1<ArticleWhereInput$1>;
|
|
47994
|
+
}>;
|
|
47995
|
+
type ArticlesQueryResponse = {
|
|
47996
|
+
articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
|
|
47997
|
+
edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
|
|
47998
|
+
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'author'> & {
|
|
47999
|
+
tags: Array<never>;
|
|
48000
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
48001
|
+
blogs?: Maybe$1<{
|
|
48002
|
+
edges: Array<{
|
|
48003
|
+
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
48004
|
+
}>;
|
|
48005
|
+
}>;
|
|
48006
|
+
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
48007
|
+
})>;
|
|
48008
|
+
})>;
|
|
48009
|
+
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
48010
|
+
})>;
|
|
48011
|
+
};
|
|
48012
|
+
|
|
48013
|
+
type BlogsQueryVariables = Exact$1<{
|
|
48014
|
+
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
48015
|
+
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
48016
|
+
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
48017
|
+
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
48018
|
+
orderBy?: InputMaybe$1<BlogOrder$1>;
|
|
48019
|
+
where?: InputMaybe$1<BlogWhereInput$1>;
|
|
48020
|
+
articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
48021
|
+
}>;
|
|
48022
|
+
type BlogsQueryResponse = {
|
|
48023
|
+
blogs?: Maybe$1<Pick<BlogConnection$1, 'totalCount'> & {
|
|
48024
|
+
edges: Array<Pick<BlogEdge$1, 'cursor'> & {
|
|
48025
|
+
node?: Maybe$1<Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
|
|
48026
|
+
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
48027
|
+
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
48028
|
+
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'author'> & {
|
|
48029
|
+
tags: Array<never>;
|
|
48030
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
48031
|
+
blogs?: Maybe$1<{
|
|
48032
|
+
edges: Array<{
|
|
48033
|
+
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
48034
|
+
}>;
|
|
48035
|
+
}>;
|
|
48036
|
+
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
48037
|
+
}>;
|
|
48038
|
+
}>;
|
|
48039
|
+
}>;
|
|
48040
|
+
}>;
|
|
48041
|
+
}>;
|
|
48042
|
+
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
48043
|
+
}>;
|
|
48044
|
+
};
|
|
48045
|
+
|
|
48046
|
+
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>;
|
|
48047
|
+
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>;
|
|
48048
|
+
|
|
48049
|
+
type Func$6 = ReturnType<typeof addToCartOperation>;
|
|
48050
|
+
type Response$6 = Awaited<ReturnType<Func$6>>;
|
|
48051
|
+
type Args$5 = Parameters<Func$6>[0];
|
|
48052
|
+
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>;
|
|
48053
|
+
|
|
48054
|
+
type Func$5 = ReturnType<typeof getCartOperation>;
|
|
48055
|
+
type Response$5 = Awaited<ReturnType<Func$5>>;
|
|
48056
|
+
declare const useCartData: (options?: SWRConfiguration<Response$5 | undefined, any>) => swr__internal.SWRResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined, any, Partial<swr__internal.PublicConfiguration<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined, any, (arg: "cart") => swr__internal.FetcherResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined>>> | undefined>;
|
|
48057
|
+
|
|
48058
|
+
type Func$4 = ReturnType<typeof cartDiscountCodesUpdateOperation>;
|
|
48059
|
+
type Response$4 = Awaited<ReturnType<Func$4>>;
|
|
48060
|
+
type Args$4 = Parameters<Func$4>[0];
|
|
48061
|
+
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>;
|
|
48062
|
+
|
|
48063
|
+
type Func$3 = ReturnType<typeof cartNoteUpdateOperation>;
|
|
48064
|
+
type Response$3 = Awaited<ReturnType<Func$3>>;
|
|
48065
|
+
type Args$3 = Parameters<Func$3>[0];
|
|
48066
|
+
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>;
|
|
48067
|
+
|
|
48068
|
+
type Func$2 = ReturnType<typeof createCartOperation>;
|
|
48069
|
+
type Response$2 = Awaited<ReturnType<Func$2>>;
|
|
48070
|
+
type Args$2 = Parameters<Func$2>[0];
|
|
48071
|
+
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>;
|
|
48072
|
+
|
|
48073
|
+
type Func$1 = ReturnType<typeof removeCartItemOperation>;
|
|
48074
|
+
type Response$1 = Awaited<ReturnType<Func$1>>;
|
|
48075
|
+
type Args$1 = Parameters<Func$1>[0];
|
|
48076
|
+
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>;
|
|
48077
|
+
|
|
48078
|
+
type Func = ReturnType<typeof updateCartLineOperation>;
|
|
48079
|
+
type Response = Awaited<ReturnType<Func>>;
|
|
48080
|
+
type Args = Parameters<Func>[0];
|
|
48081
|
+
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>;
|
|
48082
|
+
|
|
48083
|
+
declare const useLocale: () => {
|
|
48084
|
+
locale: string | undefined;
|
|
48085
|
+
changeLocale: (locale: string) => void;
|
|
48086
|
+
};
|
|
48087
|
+
declare const useCurrency: () => {
|
|
48088
|
+
currency: string | undefined;
|
|
48089
|
+
changeCurrency: (currency: string) => void;
|
|
48090
|
+
};
|
|
48091
|
+
declare const useTimezone: () => {
|
|
48092
|
+
timezone: string | undefined;
|
|
48093
|
+
};
|
|
48094
|
+
declare const useMoneyFormat: () => {
|
|
48095
|
+
moneyFormat: string | undefined;
|
|
48096
|
+
moneyWithCurrencyFormat: string | undefined;
|
|
48097
|
+
};
|
|
48098
|
+
declare const useSwatches: () => {
|
|
48099
|
+
swatches: GlobalSwatchesData[] | undefined;
|
|
48100
|
+
changeSwatches: (swatches: GlobalSwatchesData[]) => void;
|
|
48101
|
+
};
|
|
48102
|
+
declare const usePageType: () => PublishedThemePageType$1;
|
|
48103
|
+
declare const useStoreFront: () => {
|
|
48104
|
+
provider: "SHOPIFY" | "BIGCOMMERCE" | undefined;
|
|
48105
|
+
storefrontToken: string | undefined;
|
|
48106
|
+
storefrontUrl: string | undefined;
|
|
48107
|
+
};
|
|
48108
|
+
declare const usePluginEnable: () => string[] | undefined;
|
|
48109
|
+
declare const useEditorMode: () => RenderMode | undefined;
|
|
48110
|
+
declare const useMobileOnly: () => boolean | undefined;
|
|
48111
|
+
declare const useMatchMutate: () => <T = any>(matcher: RegExp, opts?: boolean | MutatorOptions<T> | undefined) => Promise<(T | undefined)[][]>;
|
|
48112
|
+
declare function useConnectedShopify(): boolean;
|
|
48113
|
+
declare function useIsSampleProduct(): boolean | undefined;
|
|
48114
|
+
declare function useIsStorefrontProduct(): boolean | undefined;
|
|
48115
|
+
declare function useCheckoutUrl(url?: string): string | undefined;
|
|
48116
|
+
|
|
48117
|
+
declare const useCollectionQuery: (args?: FetchCollectionArgs, options?: SWRConfiguration<CollectionDetailFilterQueryResponse>) => swr__internal.SWRResponse<CollectionDetailFilterQueryResponse, any, Partial<swr__internal.PublicConfiguration<CollectionDetailFilterQueryResponse, any, (arg: ["query/collection", FetchCollectionArgs]) => swr__internal.FetcherResponse<CollectionDetailFilterQueryResponse>>> | undefined>;
|
|
48118
|
+
|
|
48119
|
+
declare const useCollectionsQuery: (variable: CollectionsQueryVariables, options?: SWRConfiguration<CollectionsQueryResponse>) => swr__internal.SWRResponse<CollectionsQueryResponse, any, Partial<swr__internal.PublicConfiguration<CollectionsQueryResponse, any, (arg: ["query/collections", Exact$1<{
|
|
48120
|
+
after?: InputMaybe$1<string>;
|
|
48121
|
+
first?: InputMaybe$1<number>;
|
|
48122
|
+
before?: InputMaybe$1<string>;
|
|
48123
|
+
last?: InputMaybe$1<number>;
|
|
48124
|
+
where?: InputMaybe$1<CollectionWhereInput$1>;
|
|
48125
|
+
orderBy?: InputMaybe$1<CollectionOrder$1>;
|
|
48126
|
+
}>]) => swr__internal.FetcherResponse<CollectionsQueryResponse>>> | undefined>;
|
|
48127
|
+
|
|
48128
|
+
declare const useProductQuery: (productId?: string, options?: SWRConfiguration<ProductSelectFragment>, customFetcher?: FetchFunc) => swr__internal.SWRResponse<ProductSelectFragment, any, Partial<swr__internal.PublicConfiguration<ProductSelectFragment, any, (arg: ["query/product", FetchProductParams]) => swr__internal.FetcherResponse<ProductSelectFragment>>> | undefined>;
|
|
48129
|
+
|
|
48130
|
+
declare const useProductsQuery: (ids?: string[], options?: SWRConfiguration<ProductsQueryResponse>, params?: {
|
|
48131
|
+
defaultSelectedProductCount?: number;
|
|
48132
|
+
allStatus?: boolean;
|
|
48133
|
+
fetcher?: FetchFunc;
|
|
48134
|
+
}) => swr__internal.SWRResponse<ProductsQueryResponse, any, Partial<swr__internal.PublicConfiguration<ProductsQueryResponse, any, (arg: ["query/products", FetchProductsParams]) => swr__internal.FetcherResponse<ProductsQueryResponse>>> | undefined>;
|
|
48135
|
+
declare const useProductsQueryAll: (variable?: VariableRelatedStyles | undefined, options?: SWRConfiguration<ProductsQueryResponse>) => swr__internal.SWRResponse<ProductsQueryResponse, any, Partial<swr__internal.PublicConfiguration<ProductsQueryResponse, any, (arg: ["query/products", any]) => swr__internal.FetcherResponse<ProductsQueryResponse>>> | undefined>;
|
|
48136
|
+
|
|
48137
|
+
declare const useCurrentDevice: () => NameDevices$1;
|
|
46616
48138
|
|
|
46617
48139
|
declare const useLazyVideo: () => void;
|
|
46618
48140
|
|
|
@@ -46786,14 +48308,12 @@ declare const useSuspenseFetch: <T>(key: string | any[], promise: () => Promise<
|
|
|
46786
48308
|
declare const useSwatchesOptions: (options?: ProductOption$1[]) => ProductOption$1[];
|
|
46787
48309
|
|
|
46788
48310
|
type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
|
|
46789
|
-
pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
|
|
46790
48311
|
themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
|
|
46791
|
-
|
|
48312
|
+
pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
|
|
46792
48313
|
pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
|
|
46793
|
-
|
|
46794
|
-
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
48314
|
+
themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
|
|
46795
48315
|
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
46796
|
-
metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, '
|
|
48316
|
+
metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'key' | 'value'>>>>;
|
|
46797
48317
|
};
|
|
46798
48318
|
|
|
46799
48319
|
declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
|
|
@@ -46843,4 +48363,4 @@ declare const useInteraction: () => {
|
|
|
46843
48363
|
interactionListenerLoaded: (callback: () => void) => void;
|
|
46844
48364
|
};
|
|
46845
48365
|
|
|
46846
|
-
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$1 as 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, StampedWidgetTypeV2, 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 };
|
|
48366
|
+
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, PublishedShopMetasQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, 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, StampedWidgetTypeV2, 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, composeShadow, 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 };
|