@gem-sdk/core 2.0.0-dev.175 → 2.0.0-dev.184
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/ComponentToolbarPreview.js +7 -7
- package/dist/cjs/components/ComponentWrapperPreview.js +2 -2
- package/dist/cjs/components/InteractionSuffix.js +6 -6
- package/dist/cjs/components/Render.liquid.js +12 -5
- package/dist/cjs/components/RenderCustomCode.js +7 -7
- package/dist/cjs/components/ai-generator/AIContentGenerator.js +4 -4
- package/dist/cjs/components/ai-generator/components/PickProduct.js +4 -4
- package/dist/cjs/components/resize/Spacing.js +7 -7
- package/dist/cjs/components/theme-section/CreateThemeSection.js +4 -4
- package/dist/cjs/contexts/ProductContext.js +12 -1
- package/dist/cjs/graphql/fragments/preview-theme-page.generated.js +4 -0
- package/dist/cjs/graphql/queries/articles.generated.js +5 -4
- package/dist/cjs/graphql/queries/blogs.generated.js +5 -4
- package/dist/cjs/helpers/compose-advance-style.js +5 -9
- package/dist/cjs/helpers/interaction/index.js +7 -6
- package/dist/cjs/helpers/third-party/appConfig.js +4 -11
- package/dist/cjs/helpers/third-party/appSetting.js +32 -33
- package/dist/cjs/helpers/third-party/constant.js +1 -2
- package/dist/cjs/hooks/useInitialSwatchesOptions.js +2 -3
- package/dist/cjs/index.js +1 -1
- package/dist/esm/components/ComponentToolbarPreview.js +7 -7
- package/dist/esm/components/ComponentWrapperPreview.js +2 -2
- package/dist/esm/components/InteractionSuffix.js +6 -6
- package/dist/esm/components/Render.liquid.js +12 -5
- package/dist/esm/components/RenderCustomCode.js +7 -7
- package/dist/esm/components/ai-generator/AIContentGenerator.js +4 -4
- package/dist/esm/components/ai-generator/components/PickProduct.js +4 -4
- package/dist/esm/components/resize/Spacing.js +7 -7
- package/dist/esm/components/theme-section/CreateThemeSection.js +4 -4
- package/dist/esm/contexts/ProductContext.js +12 -1
- package/dist/esm/graphql/fragments/preview-theme-page.generated.js +4 -0
- package/dist/esm/graphql/queries/articles.generated.js +5 -4
- package/dist/esm/graphql/queries/blogs.generated.js +5 -4
- package/dist/esm/helpers/compose-advance-style.js +5 -9
- package/dist/esm/helpers/interaction/index.js +7 -6
- package/dist/esm/helpers/third-party/appConfig.js +5 -11
- package/dist/esm/helpers/third-party/appSetting.js +32 -33
- package/dist/esm/helpers/third-party/constant.js +2 -3
- package/dist/esm/hooks/useInitialSwatchesOptions.js +2 -3
- package/dist/esm/index.js +1 -1
- package/dist/types/index.d.ts +219 -1729
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -75,6 +75,7 @@ type Article$2 = {
|
|
|
75
75
|
platform?: Maybe$1<ArticlePlatform$1>;
|
|
76
76
|
platformCreatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
77
77
|
platformUpdatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
78
|
+
publishedAt?: Maybe$1<Scalars$2['Time']>;
|
|
78
79
|
tags?: Maybe$1<Array<Maybe$1<Tag$1>>>;
|
|
79
80
|
templateSuffix?: Maybe$1<Scalars$2['String']>;
|
|
80
81
|
title?: Maybe$1<Scalars$2['String']>;
|
|
@@ -221,7 +222,7 @@ type ArticleOrder$1 = {
|
|
|
221
222
|
direction: OrderDirection$1;
|
|
222
223
|
field?: InputMaybe$1<ArticleOrderField$1>;
|
|
223
224
|
};
|
|
224
|
-
type ArticleOrderField$1 = 'CREATED_AT' | 'PLATFORM_CREATED_AT' | 'PLATFORM_UPDATED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
225
|
+
type ArticleOrderField$1 = 'CREATED_AT' | 'PLATFORM_CREATED_AT' | 'PLATFORM_UPDATED_AT' | 'PUBLISHED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
225
226
|
type ArticlePlatform$1 = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
226
227
|
/**
|
|
227
228
|
* ArticleTagWhereInput is used for filtering ArticleTag objects.
|
|
@@ -405,6 +406,17 @@ type ArticleWhereInput$1 = {
|
|
|
405
406
|
platformUpdatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
406
407
|
platformUpdatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
407
408
|
platformUpdatedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
409
|
+
/** published_at field predicates */
|
|
410
|
+
publishedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
411
|
+
publishedAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
412
|
+
publishedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
413
|
+
publishedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
414
|
+
publishedAtIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
415
|
+
publishedAtLT?: InputMaybe$1<Scalars$2['Time']>;
|
|
416
|
+
publishedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
417
|
+
publishedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
418
|
+
publishedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
419
|
+
publishedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
408
420
|
/** template_suffix field predicates */
|
|
409
421
|
templateSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
410
422
|
templateSuffixContains?: InputMaybe$1<Scalars$2['String']>;
|
|
@@ -3706,6 +3718,7 @@ type Product$1 = {
|
|
|
3706
3718
|
descriptionHtml?: Maybe$1<Scalars$2['String']>;
|
|
3707
3719
|
descriptionMeta?: Maybe$1<Scalars$2['String']>;
|
|
3708
3720
|
featuredImage?: Maybe$1<Media$1>;
|
|
3721
|
+
/** @deprecated Use featuredImage instead */
|
|
3709
3722
|
featuredImageId?: Maybe$1<Scalars$2['ID']>;
|
|
3710
3723
|
handle?: Maybe$1<Scalars$2['String']>;
|
|
3711
3724
|
id: Scalars$2['ID'];
|
|
@@ -7477,7 +7490,7 @@ type StampedWidgetTypeV2 = 'main-widget' | 'product-rating-image' | 'badge-doubl
|
|
|
7477
7490
|
type LaiProductReviewsWidgetType = 'reviews_widget' | 'star_ratings' | 'homepage_reviews' | 'happy_customer_reviews' | 'star_ratings_in_list' | 'advanced_widget';
|
|
7478
7491
|
type LaiProductReviewsAdvancedWidgetType = 'cardCarousel' | 'testimonialCarousel' | 'mediaGallery' | 'cardGrid';
|
|
7479
7492
|
type YotpoReviewsWidgetType = 'reviews' | 'star-rating' | 'reviewHighlights';
|
|
7480
|
-
type BogosWidgetType = 'icon' | 'thumnail' | 'slider' | 'message' | 'classic-bundle' | 'quantity-break';
|
|
7493
|
+
type BogosWidgetType = 'icon' | 'thumnail' | 'slider' | 'message' | 'classic-bundle' | 'quantity-break' | 'mix-match' | 'classic-bundle';
|
|
7481
7494
|
type PreOrderNowWodWidgetType = 'app-block' | 'popups-block';
|
|
7482
7495
|
type TagShopWidgetType = 'homeLandingGalleries' | 'productGalleries' | 'tagGalleries';
|
|
7483
7496
|
type AirProductReview = 'review_box' | 'star_rating' | 'review_carousel';
|
|
@@ -8752,6 +8765,7 @@ type PostPurchaseTextareaControlType<T> = SharedControlType<T> & {
|
|
|
8752
8765
|
isStrike?: boolean;
|
|
8753
8766
|
showOn?: 'singleProduct' | 'multiProduct';
|
|
8754
8767
|
}[];
|
|
8768
|
+
isFallback?: boolean;
|
|
8755
8769
|
};
|
|
8756
8770
|
|
|
8757
8771
|
type NotesControlType<T> = SharedControlType<T> & {
|
|
@@ -9121,7 +9135,7 @@ type BackgroundMediaControlType<T> = SharedControlType<T> & {
|
|
|
9121
9135
|
showVideo?: Boolean;
|
|
9122
9136
|
};
|
|
9123
9137
|
type BackgroundMedia = {
|
|
9124
|
-
type
|
|
9138
|
+
type?: 'color' | 'image' | 'video';
|
|
9125
9139
|
color?: string;
|
|
9126
9140
|
image?: {
|
|
9127
9141
|
src?: string;
|
|
@@ -36173,9 +36187,10 @@ type Props = {
|
|
|
36173
36187
|
extraFiles?: ExtraFiles;
|
|
36174
36188
|
pageContext?: PageContext;
|
|
36175
36189
|
enableLazyloadImage?: boolean;
|
|
36190
|
+
additionalSettings?: Record<string, any>;
|
|
36176
36191
|
[key: string]: any;
|
|
36177
36192
|
};
|
|
36178
|
-
declare const Render: ({ uid, builder, components, parentId, extraFiles, pageContext, enableLazyloadImage, ...passProps }: Props) => {
|
|
36193
|
+
declare const Render: ({ uid, builder, components, parentId, extraFiles, pageContext, enableLazyloadImage, additionalSettings, ...passProps }: Props) => {
|
|
36179
36194
|
liquid: string;
|
|
36180
36195
|
extraFiles: ExtraFiles;
|
|
36181
36196
|
};
|
|
@@ -36360,6 +36375,11 @@ declare const useProductListStore: <U>(selector: (state: ExtractState<StoreApi<P
|
|
|
36360
36375
|
|
|
36361
36376
|
type MediaSelectFragment = Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>;
|
|
36362
36377
|
|
|
36378
|
+
type VariantSelectFragment = Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
|
|
36379
|
+
selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
|
|
36380
|
+
media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
|
|
36381
|
+
};
|
|
36382
|
+
|
|
36363
36383
|
type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
|
|
36364
36384
|
collections?: Maybe$1<{
|
|
36365
36385
|
edges: Array<{
|
|
@@ -36387,6 +36407,17 @@ type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdA
|
|
|
36387
36407
|
featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
|
|
36388
36408
|
};
|
|
36389
36409
|
|
|
36410
|
+
type CollectionSelectFragment = Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
|
|
36411
|
+
products?: Maybe$1<Pick<ProductConnection$1, 'totalCount'> & {
|
|
36412
|
+
edges: Array<{
|
|
36413
|
+
node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
|
|
36414
|
+
featuredImage?: Maybe$1<Pick<Media$1, 'src'>>;
|
|
36415
|
+
}>;
|
|
36416
|
+
}>;
|
|
36417
|
+
}>;
|
|
36418
|
+
collectionMedia?: Maybe$1<Pick<CollectionMedia$1, 'src'>>;
|
|
36419
|
+
};
|
|
36420
|
+
|
|
36390
36421
|
type AttributeProp = {
|
|
36391
36422
|
key: string;
|
|
36392
36423
|
value?: string;
|
|
@@ -36537,17 +36568,6 @@ type PageProviderProps = Pick<PageContextProps, 'dynamicProduct' | 'dynamicColle
|
|
|
36537
36568
|
declare const PageProvider: React.FC<PageProviderProps>;
|
|
36538
36569
|
declare const usePageStore: <U>(selector: (state: ExtractState<StoreApi<PageContextProps>>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined) => U;
|
|
36539
36570
|
|
|
36540
|
-
type CollectionSelectFragment = Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
|
|
36541
|
-
products?: Maybe$1<Pick<ProductConnection$1, 'totalCount'> & {
|
|
36542
|
-
edges: Array<{
|
|
36543
|
-
node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
|
|
36544
|
-
featuredImage?: Maybe$1<Pick<Media$1, 'src'>>;
|
|
36545
|
-
}>;
|
|
36546
|
-
}>;
|
|
36547
|
-
}>;
|
|
36548
|
-
collectionMedia?: Maybe$1<Pick<CollectionMedia$1, 'src'>>;
|
|
36549
|
-
};
|
|
36550
|
-
|
|
36551
36571
|
type CollectionContextProps = {
|
|
36552
36572
|
collection?: CollectionSelectFragment;
|
|
36553
36573
|
changeCollectionStore: (args: {
|
|
@@ -36823,6 +36843,7 @@ type PreviewThemePageQueryResponse = {
|
|
|
36823
36843
|
analytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
36824
36844
|
customCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
36825
36845
|
customFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
|
|
36846
|
+
interaction?: Maybe$1<Pick<PreviewPageInteraction$1, 'id' | 'value'>>;
|
|
36826
36847
|
}>;
|
|
36827
36848
|
};
|
|
36828
36849
|
declare const PreviewThemePageDocument: string;
|
|
@@ -36843,11 +36864,6 @@ type ShopShopifyQueryResponse = {
|
|
|
36843
36864
|
};
|
|
36844
36865
|
declare const ShopShopifyDocument = "\n query shopShopify {\n shopShopify {\n timezone\n }\n}\n ";
|
|
36845
36866
|
|
|
36846
|
-
type VariantSelectFragment = Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
|
|
36847
|
-
selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
|
|
36848
|
-
media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
|
|
36849
|
-
};
|
|
36850
|
-
|
|
36851
36867
|
type LibraryTemplateQueryVariables = Exact<{
|
|
36852
36868
|
libraryTemplateId: Scalars['ID'];
|
|
36853
36869
|
}>;
|
|
@@ -40214,7 +40230,8 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40214
40230
|
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
40215
40231
|
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
40216
40232
|
};
|
|
40217
|
-
declare const
|
|
40233
|
+
declare const getCornerStyle: (advancedSetting?: Record<string, AdvanceValue>) => React.CSSProperties;
|
|
40234
|
+
declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
40218
40235
|
[x: string]: any;
|
|
40219
40236
|
'--ai'?: csstype.Property.AlignItems | undefined;
|
|
40220
40237
|
'--hvr-ai'?: csstype.Property.AlignItems | undefined;
|
|
@@ -41736,7 +41753,105 @@ declare const filterCornerInStyle: (style?: React.CSSProperties) => {
|
|
|
41736
41753
|
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
41737
41754
|
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
41738
41755
|
};
|
|
41739
|
-
|
|
41756
|
+
|
|
41757
|
+
declare const isLocalEnv: boolean;
|
|
41758
|
+
declare const baseAssetURL: string;
|
|
41759
|
+
|
|
41760
|
+
declare const convertHTML: (str: string) => string;
|
|
41761
|
+
|
|
41762
|
+
type PostionType = {
|
|
41763
|
+
wrapper?: Record<string, string | number>;
|
|
41764
|
+
content?: Record<string, string | number>;
|
|
41765
|
+
};
|
|
41766
|
+
declare const composePostionIconList: (lineHeight: string, position?: ObjectDevices<'center' | 'baseline'>, iconWidth?: ObjectDevices<number>) => PostionType;
|
|
41767
|
+
declare const composePositionLineHeight: ({ compose, lineHeight, device, position, iconWidth, }: {
|
|
41768
|
+
compose: PostionType;
|
|
41769
|
+
lineHeight: string;
|
|
41770
|
+
device: NameDevices;
|
|
41771
|
+
position?: Partial<Record<NameDevices$1, "center" | "baseline">> | undefined;
|
|
41772
|
+
iconWidth?: Partial<Record<NameDevices$1, number>> | undefined;
|
|
41773
|
+
}) => void;
|
|
41774
|
+
|
|
41775
|
+
declare function isDefined<T>(argument: T | undefined): argument is T;
|
|
41776
|
+
|
|
41777
|
+
declare const gridToArrayRegex: RegExp;
|
|
41778
|
+
declare const optionLayoutStyle: (column?: ObjectDevices<string | number>) => React.CSSProperties;
|
|
41779
|
+
declare const composeGridLayout: (layout?: ObjectDevices<ObjectLayoutValue>) => React.CSSProperties;
|
|
41780
|
+
declare const convertOldLayout: (layout?: ObjectDevices<string>) => ObjectDevices<ObjectLayoutValue>;
|
|
41781
|
+
declare const getLayoutClasses: (layout: Partial<Record<NameDevices$1, string>> | undefined) => Record<string, boolean>;
|
|
41782
|
+
|
|
41783
|
+
declare const convertTextAlignToJustify: (align: Partial<Record<NameDevices$1, AlignProp>> | undefined) => Record<string, boolean>;
|
|
41784
|
+
declare const getAlignmentClasses: (align: Partial<Record<NameDevices$1, AlignProp>> | undefined) => Record<string, boolean>;
|
|
41785
|
+
|
|
41786
|
+
declare function checkInStock(variant?: VariantSelectFragment, product?: ProductSelectFragment): boolean;
|
|
41787
|
+
|
|
41788
|
+
declare function getSelectedVariant(variants?: Maybe$1<VariantSelectFragment>[], choices?: Record<string, string>, variantId?: string | null): Maybe$1<VariantSelectFragment>;
|
|
41789
|
+
declare function parseSelectedOption(options: SelectedOption$1[]): SelectedOption$1 | undefined;
|
|
41790
|
+
declare function checkAvailableVariantInStock(variants: Maybe$1<VariantSelectFragment>[] | undefined, optionId: string, optionValue: string): boolean;
|
|
41791
|
+
|
|
41792
|
+
type OrderByType = 'TITLE_ASC' | 'TITLE_DESC' | 'CREATED_AT_ASC' | 'none' | 'CREATED_AT_DESC';
|
|
41793
|
+
type FetchCollectionArgs = {
|
|
41794
|
+
id?: string;
|
|
41795
|
+
numberOfProducts?: number;
|
|
41796
|
+
orderBy?: OrderByType;
|
|
41797
|
+
isSample?: boolean;
|
|
41798
|
+
isStorefront?: boolean;
|
|
41799
|
+
};
|
|
41800
|
+
declare const getCollection: (fetcher: FetchFunc, arg: FetchCollectionArgs) => Promise<CollectionDetailFilterQueryResponse>;
|
|
41801
|
+
declare const calculateFirstProduct: (numberOfProducts: number, currentPage: number, productsPerPage: number) => number;
|
|
41802
|
+
|
|
41803
|
+
type FetchProductParams = {
|
|
41804
|
+
id?: string;
|
|
41805
|
+
isSample?: boolean;
|
|
41806
|
+
isStorefront?: boolean;
|
|
41807
|
+
};
|
|
41808
|
+
declare const getProduct: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<ProductSelectFragment>;
|
|
41809
|
+
type RequiredCursorEdge<T> = {
|
|
41810
|
+
cursor: string;
|
|
41811
|
+
node?: T;
|
|
41812
|
+
};
|
|
41813
|
+
declare const fetchVariants: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<RequiredCursorEdge<VariantSelectFragment>[]>;
|
|
41814
|
+
declare const fetchMedias: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<(Pick<MediaEdge$1, "cursor"> & {
|
|
41815
|
+
node?: Maybe$1<Pick<Media$1, "id" | "width" | "height" | "src" | "alt" | "contentType" | "previewImage">>;
|
|
41816
|
+
})[]>;
|
|
41817
|
+
|
|
41818
|
+
type FetchProductsParams = {
|
|
41819
|
+
ids: string[];
|
|
41820
|
+
isSample?: boolean;
|
|
41821
|
+
isStorefront?: boolean;
|
|
41822
|
+
defaultSelectedProductCount?: number;
|
|
41823
|
+
allStatus?: boolean;
|
|
41824
|
+
};
|
|
41825
|
+
|
|
41826
|
+
declare const generateProductQueryKey: (args: FetchProductParams) => ['query/product', FetchProductParams];
|
|
41827
|
+
declare const generateCollectionQueryKey: (args: FetchCollectionArgs) => ['query/collection', FetchCollectionArgs];
|
|
41828
|
+
declare const generateProductsQueryKey: (args: FetchProductsParams) => ['query/products', FetchProductsParams];
|
|
41829
|
+
|
|
41830
|
+
declare const getCornerCSSFromGlobal: (corner?: CornerRadius) => React.CSSProperties;
|
|
41831
|
+
declare const getRadiusCSSFromGlobal: (state: StateType, key?: RoundedSize, device?: NameDevices$1) => React.CSSProperties;
|
|
41832
|
+
declare const getCustomRadius: (state: StateType, radius?: CornerRadius, device?: NameDevices$1) => React.CSSProperties;
|
|
41833
|
+
declare const composeRadius: (value?: StateProp<CornerRadius> | ResponsiveStateProp<CornerRadius>) => React.CSSProperties;
|
|
41834
|
+
declare const composeRadiusResponsive: (radiusValue?: ObjectDevices<CornerRadius>) => React.CSSProperties;
|
|
41835
|
+
declare const getRadiusStyleActiveState: (radiusValue?: StateProp<CornerRadius>) => React.CSSProperties;
|
|
41836
|
+
declare const composeCornerCss: (value?: CornerRadius | undefined, important?: boolean) => string | undefined;
|
|
41837
|
+
|
|
41838
|
+
type CallbackCondition = () => string;
|
|
41839
|
+
declare const RenderIf: (c: boolean | null | undefined, t: string | CallbackCondition, f?: string | CallbackCondition) => string;
|
|
41840
|
+
declare const props: (strings: any, ...keys: any[]) => string;
|
|
41841
|
+
declare const styles: (strings: any, ...keys: any[]) => string;
|
|
41842
|
+
declare const dataStringify: (obj: object) => string;
|
|
41843
|
+
declare const template: (strings: any, ...keys: any[]) => string;
|
|
41844
|
+
declare const composeMemo: <T>(fn: () => T, _?: any[]) => T;
|
|
41845
|
+
declare const removeUndefinedValuesFromObject: (obj: Record<string, string>) => Record<string, string>;
|
|
41846
|
+
|
|
41847
|
+
declare const parseValueWithUnit: (valueWithUnit: string) => any;
|
|
41848
|
+
declare const getStyleShadow: (shadowStyle: ShadowStyle & {
|
|
41849
|
+
screen?: string;
|
|
41850
|
+
}, isActiveState?: boolean) => {
|
|
41851
|
+
[x: string]: string;
|
|
41852
|
+
};
|
|
41853
|
+
declare const getStyleShadowState: (shadow?: StateProp<ShadowProps>, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: StateProp<boolean>, screen?: string) => React.CSSProperties;
|
|
41854
|
+
declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: any) => {
|
|
41740
41855
|
[x: string]: any;
|
|
41741
41856
|
'--ai'?: csstype.Property.AlignItems | undefined;
|
|
41742
41857
|
'--hvr-ai'?: csstype.Property.AlignItems | undefined;
|
|
@@ -43257,106 +43372,11 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
43257
43372
|
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
43258
43373
|
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
43259
43374
|
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
43260
|
-
};
|
|
43261
|
-
|
|
43262
|
-
declare const isLocalEnv: boolean;
|
|
43263
|
-
declare const baseAssetURL: string;
|
|
43264
|
-
|
|
43265
|
-
declare const convertHTML: (str: string) => string;
|
|
43266
|
-
|
|
43267
|
-
type PostionType = {
|
|
43268
|
-
wrapper?: Record<string, string | number>;
|
|
43269
|
-
content?: Record<string, string | number>;
|
|
43270
|
-
};
|
|
43271
|
-
declare const composePostionIconList: (lineHeight: string, position?: ObjectDevices<'center' | 'baseline'>, iconWidth?: ObjectDevices<number>) => PostionType;
|
|
43272
|
-
declare const composePositionLineHeight: ({ compose, lineHeight, device, position, iconWidth, }: {
|
|
43273
|
-
compose: PostionType;
|
|
43274
|
-
lineHeight: string;
|
|
43275
|
-
device: NameDevices;
|
|
43276
|
-
position?: Partial<Record<NameDevices$1, "center" | "baseline">> | undefined;
|
|
43277
|
-
iconWidth?: Partial<Record<NameDevices$1, number>> | undefined;
|
|
43278
|
-
}) => void;
|
|
43279
|
-
|
|
43280
|
-
declare function isDefined<T>(argument: T | undefined): argument is T;
|
|
43281
|
-
|
|
43282
|
-
declare const gridToArrayRegex: RegExp;
|
|
43283
|
-
declare const optionLayoutStyle: (column?: ObjectDevices<string | number>) => React.CSSProperties;
|
|
43284
|
-
declare const composeGridLayout: (layout?: ObjectDevices<ObjectLayoutValue>) => React.CSSProperties;
|
|
43285
|
-
declare const convertOldLayout: (layout?: ObjectDevices<string>) => ObjectDevices<ObjectLayoutValue>;
|
|
43286
|
-
declare const getLayoutClasses: (layout: Partial<Record<NameDevices$1, string>> | undefined) => Record<string, boolean>;
|
|
43287
|
-
|
|
43288
|
-
declare const convertTextAlignToJustify: (align: Partial<Record<NameDevices$1, AlignProp>> | undefined) => Record<string, boolean>;
|
|
43289
|
-
declare const getAlignmentClasses: (align: Partial<Record<NameDevices$1, AlignProp>> | undefined) => Record<string, boolean>;
|
|
43290
|
-
|
|
43291
|
-
declare function checkInStock(variant?: VariantSelectFragment, product?: ProductSelectFragment): boolean;
|
|
43292
|
-
|
|
43293
|
-
declare function getSelectedVariant(variants?: Maybe$1<VariantSelectFragment>[], choices?: Record<string, string>, variantId?: string | null): Maybe$1<VariantSelectFragment>;
|
|
43294
|
-
declare function parseSelectedOption(options: SelectedOption$1[]): SelectedOption$1 | undefined;
|
|
43295
|
-
declare function checkAvailableVariantInStock(variants: Maybe$1<VariantSelectFragment>[] | undefined, optionId: string, optionValue: string): boolean;
|
|
43296
|
-
|
|
43297
|
-
type OrderByType = 'TITLE_ASC' | 'TITLE_DESC' | 'CREATED_AT_ASC' | 'none' | 'CREATED_AT_DESC';
|
|
43298
|
-
type FetchCollectionArgs = {
|
|
43299
|
-
id?: string;
|
|
43300
|
-
numberOfProducts?: number;
|
|
43301
|
-
orderBy?: OrderByType;
|
|
43302
|
-
isSample?: boolean;
|
|
43303
|
-
isStorefront?: boolean;
|
|
43304
|
-
};
|
|
43305
|
-
declare const getCollection: (fetcher: FetchFunc, arg: FetchCollectionArgs) => Promise<CollectionDetailFilterQueryResponse>;
|
|
43306
|
-
declare const calculateFirstProduct: (numberOfProducts: number, currentPage: number, productsPerPage: number) => number;
|
|
43307
|
-
|
|
43308
|
-
type FetchProductParams = {
|
|
43309
|
-
id?: string;
|
|
43310
|
-
isSample?: boolean;
|
|
43311
|
-
isStorefront?: boolean;
|
|
43312
|
-
};
|
|
43313
|
-
declare const getProduct: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<ProductSelectFragment>;
|
|
43314
|
-
type RequiredCursorEdge<T> = {
|
|
43315
|
-
cursor: string;
|
|
43316
|
-
node?: T;
|
|
43317
|
-
};
|
|
43318
|
-
declare const fetchVariants: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<RequiredCursorEdge<VariantSelectFragment>[]>;
|
|
43319
|
-
declare const fetchMedias: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<(Pick<MediaEdge$1, "cursor"> & {
|
|
43320
|
-
node?: Maybe$1<Pick<Media$1, "id" | "width" | "height" | "src" | "alt" | "contentType" | "previewImage">>;
|
|
43321
|
-
})[]>;
|
|
43322
|
-
|
|
43323
|
-
type FetchProductsParams = {
|
|
43324
|
-
ids: string[];
|
|
43325
|
-
isSample?: boolean;
|
|
43326
|
-
isStorefront?: boolean;
|
|
43327
|
-
defaultSelectedProductCount?: number;
|
|
43328
|
-
allStatus?: boolean;
|
|
43329
|
-
};
|
|
43330
|
-
|
|
43331
|
-
declare const generateProductQueryKey: (args: FetchProductParams) => ['query/product', FetchProductParams];
|
|
43332
|
-
declare const generateCollectionQueryKey: (args: FetchCollectionArgs) => ['query/collection', FetchCollectionArgs];
|
|
43333
|
-
declare const generateProductsQueryKey: (args: FetchProductsParams) => ['query/products', FetchProductsParams];
|
|
43334
|
-
|
|
43335
|
-
declare const getCornerCSSFromGlobal: (corner?: CornerRadius) => React.CSSProperties;
|
|
43336
|
-
declare const getRadiusCSSFromGlobal: (state: StateType, key?: RoundedSize, device?: NameDevices$1) => React.CSSProperties;
|
|
43337
|
-
declare const getCustomRadius: (state: StateType, radius?: CornerRadius, device?: NameDevices$1) => React.CSSProperties;
|
|
43338
|
-
declare const composeRadius: (value?: StateProp<CornerRadius> | ResponsiveStateProp<CornerRadius>) => React.CSSProperties;
|
|
43339
|
-
declare const composeRadiusResponsive: (radiusValue?: ObjectDevices<CornerRadius>) => React.CSSProperties;
|
|
43340
|
-
declare const getRadiusStyleActiveState: (radiusValue?: StateProp<CornerRadius>) => React.CSSProperties;
|
|
43341
|
-
declare const composeCornerCss: (value?: CornerRadius | undefined, important?: boolean) => string | undefined;
|
|
43342
|
-
|
|
43343
|
-
type CallbackCondition = () => string;
|
|
43344
|
-
declare const RenderIf: (c: boolean | null | undefined, t: string | CallbackCondition, f?: string | CallbackCondition) => string;
|
|
43345
|
-
declare const props: (strings: any, ...keys: any[]) => string;
|
|
43346
|
-
declare const styles: (strings: any, ...keys: any[]) => string;
|
|
43347
|
-
declare const dataStringify: (obj: object) => string;
|
|
43348
|
-
declare const template: (strings: any, ...keys: any[]) => string;
|
|
43349
|
-
declare const composeMemo: <T>(fn: () => T, _?: any[]) => T;
|
|
43350
|
-
declare const removeUndefinedValuesFromObject: (obj: Record<string, string>) => Record<string, string>;
|
|
43351
|
-
|
|
43352
|
-
declare const parseValueWithUnit: (valueWithUnit: string) => any;
|
|
43353
|
-
declare const getStyleShadow: (shadowStyle: ShadowStyle & {
|
|
43354
|
-
screen?: string;
|
|
43355
|
-
}, isActiveState?: boolean) => {
|
|
43375
|
+
} | undefined;
|
|
43376
|
+
declare const getResponsiveStyleShadowWithoutState: (value?: any, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: any) => {
|
|
43356
43377
|
[x: string]: string;
|
|
43357
|
-
};
|
|
43358
|
-
declare const
|
|
43359
|
-
declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: any) => {
|
|
43378
|
+
} | undefined;
|
|
43379
|
+
declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>>) => {
|
|
43360
43380
|
[x: string]: any;
|
|
43361
43381
|
'--ai'?: csstype.Property.AlignItems | undefined;
|
|
43362
43382
|
'--hvr-ai'?: csstype.Property.AlignItems | undefined;
|
|
@@ -44877,1590 +44897,65 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
44877
44897
|
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
44878
44898
|
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
44879
44899
|
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
44900
|
+
};
|
|
44901
|
+
declare const composeShadowCss: ({ hasBoxShadow, boxShadowValue, important, }: {
|
|
44902
|
+
hasBoxShadow?: boolean | undefined;
|
|
44903
|
+
boxShadowValue?: ShadowProps | undefined;
|
|
44904
|
+
important?: boolean | undefined;
|
|
44905
|
+
}) => string | undefined;
|
|
44906
|
+
|
|
44907
|
+
declare const composeSize: (size?: ObjectDevices<SizeProps>) => React.CSSProperties;
|
|
44908
|
+
declare function genSizeClass(name: string): string;
|
|
44909
|
+
declare const composeSizeCss: (spacing?: SizeSetting) => string | undefined;
|
|
44910
|
+
declare const makeGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
44911
|
+
width: Record<ResponsiveKey<"w">, string | number>;
|
|
44912
|
+
height: Record<ResponsiveKey<"h">, string | number>;
|
|
44913
|
+
padding: React.CSSProperties;
|
|
44914
|
+
gap: {
|
|
44915
|
+
'--gg': string | undefined;
|
|
44916
|
+
'--gg-tablet': string | undefined;
|
|
44917
|
+
'--gg-mobile': string | undefined;
|
|
44918
|
+
};
|
|
44919
|
+
};
|
|
44920
|
+
declare const makeGlobalSizeIcon: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
44921
|
+
width: Record<ResponsiveKey<"w">, string | number>;
|
|
44922
|
+
height: Record<ResponsiveKey<"h">, string | number>;
|
|
44923
|
+
minWidth: Record<ResponsiveKey<"minw">, string | number>;
|
|
44924
|
+
padding: React.CSSProperties;
|
|
44925
|
+
};
|
|
44926
|
+
declare const getGlobalSizeGap: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
44927
|
+
'--gg': string | undefined;
|
|
44928
|
+
'--gg-tablet': string | undefined;
|
|
44929
|
+
'--gg-mobile': string | undefined;
|
|
44930
|
+
};
|
|
44931
|
+
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>;
|
|
44932
|
+
declare const getWidthHeightGlobalSize: (type: 'width' | 'height', globalSize?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string | number>>;
|
|
44933
|
+
declare const getHeightByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string>>;
|
|
44934
|
+
declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean, defaultFull?: boolean) => Partial<Record<NameDevices$1, string>>;
|
|
44935
|
+
declare const getAspectRatioGlobalSize: (shape?: ObjectDevices<SizeSettingGlobal>) => ObjectDevices<string>;
|
|
44936
|
+
declare const getPaddingGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => React.CSSProperties;
|
|
44937
|
+
declare const getValueByDevice: <T>(value: any, device: NameDevices$1) => T;
|
|
44938
|
+
declare const getPaddingStyleByDevice: (value?: PaddingType, device?: NameDevices$1) => {
|
|
44939
|
+
[x: string]: string | undefined;
|
|
44940
|
+
};
|
|
44941
|
+
declare const getResponsiveStylePadding: (value?: ObjectDevices<PaddingType>) => {
|
|
44942
|
+
[x: string]: string | undefined;
|
|
44880
44943
|
} | undefined;
|
|
44881
|
-
|
|
44882
|
-
|
|
44883
|
-
|
|
44884
|
-
declare const
|
|
44885
|
-
|
|
44886
|
-
|
|
44887
|
-
|
|
44888
|
-
|
|
44889
|
-
|
|
44890
|
-
|
|
44891
|
-
|
|
44892
|
-
|
|
44893
|
-
|
|
44894
|
-
|
|
44895
|
-
|
|
44896
|
-
'--hvr-aspect'?: csstype.Property.AspectRatio | undefined;
|
|
44897
|
-
'--focus-aspect'?: csstype.Property.AspectRatio | undefined;
|
|
44898
|
-
'--aspect-tablet'?: csstype.Property.AspectRatio | undefined;
|
|
44899
|
-
'--hvr-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
|
|
44900
|
-
'--focus-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
|
|
44901
|
-
'--aspect-mobile'?: csstype.Property.AspectRatio | undefined;
|
|
44902
|
-
'--hvr-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
|
|
44903
|
-
'--focus-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
|
|
44904
|
-
'--bg'?: csstype.Property.Background<string | number> | undefined;
|
|
44905
|
-
'--hvr-bg'?: csstype.Property.Background<string | number> | undefined;
|
|
44906
|
-
'--focus-bg'?: csstype.Property.Background<string | number> | undefined;
|
|
44907
|
-
'--bg-tablet'?: csstype.Property.Background<string | number> | undefined;
|
|
44908
|
-
'--hvr-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
|
|
44909
|
-
'--focus-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
|
|
44910
|
-
'--bg-mobile'?: csstype.Property.Background<string | number> | undefined;
|
|
44911
|
-
'--hvr-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
|
|
44912
|
-
'--focus-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
|
|
44913
|
-
'--bga'?: csstype.Property.BackgroundAttachment | undefined;
|
|
44914
|
-
'--hvr-bga'?: csstype.Property.BackgroundAttachment | undefined;
|
|
44915
|
-
'--focus-bga'?: csstype.Property.BackgroundAttachment | undefined;
|
|
44916
|
-
'--bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
|
|
44917
|
-
'--hvr-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
|
|
44918
|
-
'--focus-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
|
|
44919
|
-
'--bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
|
|
44920
|
-
'--hvr-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
|
|
44921
|
-
'--focus-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
|
|
44922
|
-
'--bgc'?: csstype.Property.BackgroundColor | undefined;
|
|
44923
|
-
'--hvr-bgc'?: csstype.Property.BackgroundColor | undefined;
|
|
44924
|
-
'--focus-bgc'?: csstype.Property.BackgroundColor | undefined;
|
|
44925
|
-
'--bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
|
|
44926
|
-
'--hvr-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
|
|
44927
|
-
'--focus-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
|
|
44928
|
-
'--bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
|
|
44929
|
-
'--hvr-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
|
|
44930
|
-
'--focus-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
|
|
44931
|
-
'--bgi'?: csstype.Property.BackgroundImage | undefined;
|
|
44932
|
-
'--hvr-bgi'?: csstype.Property.BackgroundImage | undefined;
|
|
44933
|
-
'--focus-bgi'?: csstype.Property.BackgroundImage | undefined;
|
|
44934
|
-
'--bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
|
|
44935
|
-
'--hvr-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
|
|
44936
|
-
'--focus-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
|
|
44937
|
-
'--bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
|
|
44938
|
-
'--hvr-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
|
|
44939
|
-
'--focus-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
|
|
44940
|
-
'--bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
44941
|
-
'--hvr-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
44942
|
-
'--focus-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
44943
|
-
'--bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
44944
|
-
'--hvr-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
44945
|
-
'--focus-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
44946
|
-
'--bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
44947
|
-
'--hvr-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
44948
|
-
'--focus-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
44949
|
-
'--bgr'?: csstype.Property.BackgroundRepeat | undefined;
|
|
44950
|
-
'--hvr-bgr'?: csstype.Property.BackgroundRepeat | undefined;
|
|
44951
|
-
'--focus-bgr'?: csstype.Property.BackgroundRepeat | undefined;
|
|
44952
|
-
'--bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
|
|
44953
|
-
'--hvr-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
|
|
44954
|
-
'--focus-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
|
|
44955
|
-
'--bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
|
|
44956
|
-
'--hvr-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
|
|
44957
|
-
'--focus-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
|
|
44958
|
-
'--bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
44959
|
-
'--hvr-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
44960
|
-
'--focus-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
44961
|
-
'--bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
44962
|
-
'--hvr-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
44963
|
-
'--focus-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
44964
|
-
'--bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
44965
|
-
'--hvr-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
44966
|
-
'--focus-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
44967
|
-
'--b'?: csstype.Property.Border<string | number> | undefined;
|
|
44968
|
-
'--hvr-b'?: csstype.Property.Border<string | number> | undefined;
|
|
44969
|
-
'--focus-b'?: csstype.Property.Border<string | number> | undefined;
|
|
44970
|
-
'--b-tablet'?: csstype.Property.Border<string | number> | undefined;
|
|
44971
|
-
'--hvr-b-tablet'?: csstype.Property.Border<string | number> | undefined;
|
|
44972
|
-
'--focus-b-tablet'?: csstype.Property.Border<string | number> | undefined;
|
|
44973
|
-
'--b-mobile'?: csstype.Property.Border<string | number> | undefined;
|
|
44974
|
-
'--hvr-b-mobile'?: csstype.Property.Border<string | number> | undefined;
|
|
44975
|
-
'--focus-b-mobile'?: csstype.Property.Border<string | number> | undefined;
|
|
44976
|
-
'--bb'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
44977
|
-
'--hvr-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
44978
|
-
'--focus-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
44979
|
-
'--bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
44980
|
-
'--hvr-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
44981
|
-
'--focus-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
44982
|
-
'--bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
44983
|
-
'--hvr-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
44984
|
-
'--focus-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
44985
|
-
'--bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
44986
|
-
'--hvr-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
44987
|
-
'--focus-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
44988
|
-
'--bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
44989
|
-
'--hvr-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
44990
|
-
'--focus-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
44991
|
-
'--bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
44992
|
-
'--hvr-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
44993
|
-
'--focus-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
44994
|
-
'--bbc'?: csstype.Property.BorderBottomColor | undefined;
|
|
44995
|
-
'--hvr-bbc'?: csstype.Property.BorderBottomColor | undefined;
|
|
44996
|
-
'--focus-bbc'?: csstype.Property.BorderBottomColor | undefined;
|
|
44997
|
-
'--bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
|
|
44998
|
-
'--hvr-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
|
|
44999
|
-
'--focus-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
|
|
45000
|
-
'--bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
|
|
45001
|
-
'--hvr-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
|
|
45002
|
-
'--focus-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
|
|
45003
|
-
'--bc'?: csstype.Property.BorderColor | undefined;
|
|
45004
|
-
'--hvr-bc'?: csstype.Property.BorderColor | undefined;
|
|
45005
|
-
'--focus-bc'?: csstype.Property.BorderColor | undefined;
|
|
45006
|
-
'--bc-tablet'?: csstype.Property.BorderColor | undefined;
|
|
45007
|
-
'--hvr-bc-tablet'?: csstype.Property.BorderColor | undefined;
|
|
45008
|
-
'--focus-bc-tablet'?: csstype.Property.BorderColor | undefined;
|
|
45009
|
-
'--bc-mobile'?: csstype.Property.BorderColor | undefined;
|
|
45010
|
-
'--hvr-bc-mobile'?: csstype.Property.BorderColor | undefined;
|
|
45011
|
-
'--focus-bc-mobile'?: csstype.Property.BorderColor | undefined;
|
|
45012
|
-
'--bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
45013
|
-
'--hvr-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
45014
|
-
'--focus-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
45015
|
-
'--bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
45016
|
-
'--hvr-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
45017
|
-
'--focus-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
45018
|
-
'--bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
45019
|
-
'--hvr-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
45020
|
-
'--focus-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
45021
|
-
'--bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
45022
|
-
'--hvr-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
45023
|
-
'--focus-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
45024
|
-
'--bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
45025
|
-
'--hvr-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
45026
|
-
'--focus-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
45027
|
-
'--bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
45028
|
-
'--hvr-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
45029
|
-
'--focus-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
45030
|
-
'--bl'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
45031
|
-
'--hvr-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
45032
|
-
'--focus-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
45033
|
-
'--bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
45034
|
-
'--hvr-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
45035
|
-
'--focus-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
45036
|
-
'--bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
45037
|
-
'--hvr-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
45038
|
-
'--focus-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
45039
|
-
'--radius'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
45040
|
-
'--hvr-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
45041
|
-
'--focus-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
45042
|
-
'--radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
45043
|
-
'--hvr-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
45044
|
-
'--focus-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
45045
|
-
'--radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
45046
|
-
'--hvr-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
45047
|
-
'--focus-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
45048
|
-
'--br'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
45049
|
-
'--hvr-br'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
45050
|
-
'--focus-br'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
45051
|
-
'--br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
45052
|
-
'--hvr-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
45053
|
-
'--focus-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
45054
|
-
'--br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
45055
|
-
'--hvr-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
45056
|
-
'--focus-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
45057
|
-
'--bs'?: csstype.Property.BorderStyle | undefined;
|
|
45058
|
-
'--hvr-bs'?: csstype.Property.BorderStyle | undefined;
|
|
45059
|
-
'--focus-bs'?: csstype.Property.BorderStyle | undefined;
|
|
45060
|
-
'--bs-tablet'?: csstype.Property.BorderStyle | undefined;
|
|
45061
|
-
'--hvr-bs-tablet'?: csstype.Property.BorderStyle | undefined;
|
|
45062
|
-
'--focus-bs-tablet'?: csstype.Property.BorderStyle | undefined;
|
|
45063
|
-
'--bs-mobile'?: csstype.Property.BorderStyle | undefined;
|
|
45064
|
-
'--hvr-bs-mobile'?: csstype.Property.BorderStyle | undefined;
|
|
45065
|
-
'--focus-bs-mobile'?: csstype.Property.BorderStyle | undefined;
|
|
45066
|
-
'--bt'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
45067
|
-
'--hvr-bt'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
45068
|
-
'--focus-bt'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
45069
|
-
'--bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
45070
|
-
'--hvr-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
45071
|
-
'--focus-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
45072
|
-
'--bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
45073
|
-
'--hvr-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
45074
|
-
'--focus-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
45075
|
-
'--btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
45076
|
-
'--hvr-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
45077
|
-
'--focus-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
45078
|
-
'--btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
45079
|
-
'--hvr-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
45080
|
-
'--focus-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
45081
|
-
'--btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
45082
|
-
'--hvr-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
45083
|
-
'--focus-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
45084
|
-
'--btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
45085
|
-
'--hvr-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
45086
|
-
'--focus-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
45087
|
-
'--btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
45088
|
-
'--hvr-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
45089
|
-
'--focus-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
45090
|
-
'--btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
45091
|
-
'--hvr-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
45092
|
-
'--focus-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
45093
|
-
'--bw'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
45094
|
-
'--hvr-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
45095
|
-
'--focus-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
45096
|
-
'--bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
45097
|
-
'--hvr-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
45098
|
-
'--focus-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
45099
|
-
'--bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
45100
|
-
'--hvr-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
45101
|
-
'--focus-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
45102
|
-
'--bottom'?: csstype.Property.Bottom<string | number> | undefined;
|
|
45103
|
-
'--hvr-bottom'?: csstype.Property.Bottom<string | number> | undefined;
|
|
45104
|
-
'--focus-bottom'?: csstype.Property.Bottom<string | number> | undefined;
|
|
45105
|
-
'--bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
|
|
45106
|
-
'--hvr-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
|
|
45107
|
-
'--focus-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
|
|
45108
|
-
'--bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
|
|
45109
|
-
'--hvr-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
|
|
45110
|
-
'--focus-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
|
|
45111
|
-
'--shadow'?: csstype.Property.BoxShadow | undefined;
|
|
45112
|
-
'--hvr-shadow'?: csstype.Property.BoxShadow | undefined;
|
|
45113
|
-
'--focus-shadow'?: csstype.Property.BoxShadow | undefined;
|
|
45114
|
-
'--shadow-tablet'?: csstype.Property.BoxShadow | undefined;
|
|
45115
|
-
'--hvr-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
|
|
45116
|
-
'--focus-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
|
|
45117
|
-
'--shadow-mobile'?: csstype.Property.BoxShadow | undefined;
|
|
45118
|
-
'--hvr-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
|
|
45119
|
-
'--focus-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
|
|
45120
|
-
'--c'?: csstype.Property.Color | undefined;
|
|
45121
|
-
'--hvr-c'?: csstype.Property.Color | undefined;
|
|
45122
|
-
'--focus-c'?: csstype.Property.Color | undefined;
|
|
45123
|
-
'--c-tablet'?: csstype.Property.Color | undefined;
|
|
45124
|
-
'--hvr-c-tablet'?: csstype.Property.Color | undefined;
|
|
45125
|
-
'--focus-c-tablet'?: csstype.Property.Color | undefined;
|
|
45126
|
-
'--c-mobile'?: csstype.Property.Color | undefined;
|
|
45127
|
-
'--hvr-c-mobile'?: csstype.Property.Color | undefined;
|
|
45128
|
-
'--focus-c-mobile'?: csstype.Property.Color | undefined;
|
|
45129
|
-
'--cg'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
45130
|
-
'--hvr-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
45131
|
-
'--focus-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
45132
|
-
'--cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
45133
|
-
'--hvr-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
45134
|
-
'--focus-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
45135
|
-
'--cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
45136
|
-
'--hvr-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
45137
|
-
'--focus-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
45138
|
-
'--d'?: csstype.Property.Display | undefined;
|
|
45139
|
-
'--hvr-d'?: csstype.Property.Display | undefined;
|
|
45140
|
-
'--focus-d'?: csstype.Property.Display | undefined;
|
|
45141
|
-
'--d-tablet'?: csstype.Property.Display | undefined;
|
|
45142
|
-
'--hvr-d-tablet'?: csstype.Property.Display | undefined;
|
|
45143
|
-
'--focus-d-tablet'?: csstype.Property.Display | undefined;
|
|
45144
|
-
'--d-mobile'?: csstype.Property.Display | undefined;
|
|
45145
|
-
'--hvr-d-mobile'?: csstype.Property.Display | undefined;
|
|
45146
|
-
'--focus-d-mobile'?: csstype.Property.Display | undefined;
|
|
45147
|
-
'--fd'?: csstype.Property.FlexDirection | undefined;
|
|
45148
|
-
'--hvr-fd'?: csstype.Property.FlexDirection | undefined;
|
|
45149
|
-
'--focus-fd'?: csstype.Property.FlexDirection | undefined;
|
|
45150
|
-
'--fd-tablet'?: csstype.Property.FlexDirection | undefined;
|
|
45151
|
-
'--hvr-fd-tablet'?: csstype.Property.FlexDirection | undefined;
|
|
45152
|
-
'--focus-fd-tablet'?: csstype.Property.FlexDirection | undefined;
|
|
45153
|
-
'--fd-mobile'?: csstype.Property.FlexDirection | undefined;
|
|
45154
|
-
'--hvr-fd-mobile'?: csstype.Property.FlexDirection | undefined;
|
|
45155
|
-
'--focus-fd-mobile'?: csstype.Property.FlexDirection | undefined;
|
|
45156
|
-
'--ff'?: csstype.Property.FontFamily | undefined;
|
|
45157
|
-
'--hvr-ff'?: csstype.Property.FontFamily | undefined;
|
|
45158
|
-
'--focus-ff'?: csstype.Property.FontFamily | undefined;
|
|
45159
|
-
'--ff-tablet'?: csstype.Property.FontFamily | undefined;
|
|
45160
|
-
'--hvr-ff-tablet'?: csstype.Property.FontFamily | undefined;
|
|
45161
|
-
'--focus-ff-tablet'?: csstype.Property.FontFamily | undefined;
|
|
45162
|
-
'--ff-mobile'?: csstype.Property.FontFamily | undefined;
|
|
45163
|
-
'--hvr-ff-mobile'?: csstype.Property.FontFamily | undefined;
|
|
45164
|
-
'--focus-ff-mobile'?: csstype.Property.FontFamily | undefined;
|
|
45165
|
-
'--size'?: csstype.Property.FontSize<string | number> | undefined;
|
|
45166
|
-
'--hvr-size'?: csstype.Property.FontSize<string | number> | undefined;
|
|
45167
|
-
'--focus-size'?: csstype.Property.FontSize<string | number> | undefined;
|
|
45168
|
-
'--size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
|
|
45169
|
-
'--hvr-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
|
|
45170
|
-
'--focus-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
|
|
45171
|
-
'--size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
|
|
45172
|
-
'--hvr-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
|
|
45173
|
-
'--focus-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
|
|
45174
|
-
'--weight'?: csstype.Property.FontWeight | undefined;
|
|
45175
|
-
'--hvr-weight'?: csstype.Property.FontWeight | undefined;
|
|
45176
|
-
'--focus-weight'?: csstype.Property.FontWeight | undefined;
|
|
45177
|
-
'--weight-tablet'?: csstype.Property.FontWeight | undefined;
|
|
45178
|
-
'--hvr-weight-tablet'?: csstype.Property.FontWeight | undefined;
|
|
45179
|
-
'--focus-weight-tablet'?: csstype.Property.FontWeight | undefined;
|
|
45180
|
-
'--weight-mobile'?: csstype.Property.FontWeight | undefined;
|
|
45181
|
-
'--hvr-weight-mobile'?: csstype.Property.FontWeight | undefined;
|
|
45182
|
-
'--focus-weight-mobile'?: csstype.Property.FontWeight | undefined;
|
|
45183
|
-
'--fs'?: csstype.Property.FontStyle | undefined;
|
|
45184
|
-
'--hvr-fs'?: csstype.Property.FontStyle | undefined;
|
|
45185
|
-
'--focus-fs'?: csstype.Property.FontStyle | undefined;
|
|
45186
|
-
'--fs-tablet'?: csstype.Property.FontStyle | undefined;
|
|
45187
|
-
'--hvr-fs-tablet'?: csstype.Property.FontStyle | undefined;
|
|
45188
|
-
'--focus-fs-tablet'?: csstype.Property.FontStyle | undefined;
|
|
45189
|
-
'--fs-mobile'?: csstype.Property.FontStyle | undefined;
|
|
45190
|
-
'--hvr-fs-mobile'?: csstype.Property.FontStyle | undefined;
|
|
45191
|
-
'--focus-fs-mobile'?: csstype.Property.FontStyle | undefined;
|
|
45192
|
-
'--gg'?: csstype.Property.GridGap<string | number> | undefined;
|
|
45193
|
-
'--hvr-gg'?: csstype.Property.GridGap<string | number> | undefined;
|
|
45194
|
-
'--focus-gg'?: csstype.Property.GridGap<string | number> | undefined;
|
|
45195
|
-
'--gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
|
|
45196
|
-
'--hvr-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
|
|
45197
|
-
'--focus-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
|
|
45198
|
-
'--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
45199
|
-
'--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
45200
|
-
'--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
45201
|
-
'--gr'?: csstype.Property.GridRow | undefined;
|
|
45202
|
-
'--hvr-gr'?: csstype.Property.GridRow | undefined;
|
|
45203
|
-
'--focus-gr'?: csstype.Property.GridRow | undefined;
|
|
45204
|
-
'--gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
45205
|
-
'--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
45206
|
-
'--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
45207
|
-
'--gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
45208
|
-
'--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
45209
|
-
'--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
45210
|
-
'--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
45211
|
-
'--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
45212
|
-
'--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
45213
|
-
'--gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
45214
|
-
'--hvr-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
45215
|
-
'--focus-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
45216
|
-
'--gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
45217
|
-
'--hvr-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
45218
|
-
'--focus-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
45219
|
-
'--gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
45220
|
-
'--hvr-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
45221
|
-
'--focus-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
45222
|
-
'--gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
45223
|
-
'--hvr-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
45224
|
-
'--focus-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
45225
|
-
'--gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
45226
|
-
'--hvr-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
45227
|
-
'--focus-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
45228
|
-
'--h'?: csstype.Property.Height<string | number> | undefined;
|
|
45229
|
-
'--hvr-h'?: csstype.Property.Height<string | number> | undefined;
|
|
45230
|
-
'--focus-h'?: csstype.Property.Height<string | number> | undefined;
|
|
45231
|
-
'--h-tablet'?: csstype.Property.Height<string | number> | undefined;
|
|
45232
|
-
'--hvr-h-tablet'?: csstype.Property.Height<string | number> | undefined;
|
|
45233
|
-
'--focus-h-tablet'?: csstype.Property.Height<string | number> | undefined;
|
|
45234
|
-
'--h-mobile'?: csstype.Property.Height<string | number> | undefined;
|
|
45235
|
-
'--hvr-h-mobile'?: csstype.Property.Height<string | number> | undefined;
|
|
45236
|
-
'--focus-h-mobile'?: csstype.Property.Height<string | number> | undefined;
|
|
45237
|
-
'--jc'?: csstype.Property.JustifyContent | undefined;
|
|
45238
|
-
'--hvr-jc'?: csstype.Property.JustifyContent | undefined;
|
|
45239
|
-
'--focus-jc'?: csstype.Property.JustifyContent | undefined;
|
|
45240
|
-
'--jc-tablet'?: csstype.Property.JustifyContent | undefined;
|
|
45241
|
-
'--hvr-jc-tablet'?: csstype.Property.JustifyContent | undefined;
|
|
45242
|
-
'--focus-jc-tablet'?: csstype.Property.JustifyContent | undefined;
|
|
45243
|
-
'--jc-mobile'?: csstype.Property.JustifyContent | undefined;
|
|
45244
|
-
'--hvr-jc-mobile'?: csstype.Property.JustifyContent | undefined;
|
|
45245
|
-
'--focus-jc-mobile'?: csstype.Property.JustifyContent | undefined;
|
|
45246
|
-
'--left'?: csstype.Property.Left<string | number> | undefined;
|
|
45247
|
-
'--hvr-left'?: csstype.Property.Left<string | number> | undefined;
|
|
45248
|
-
'--focus-left'?: csstype.Property.Left<string | number> | undefined;
|
|
45249
|
-
'--left-tablet'?: csstype.Property.Left<string | number> | undefined;
|
|
45250
|
-
'--hvr-left-tablet'?: csstype.Property.Left<string | number> | undefined;
|
|
45251
|
-
'--focus-left-tablet'?: csstype.Property.Left<string | number> | undefined;
|
|
45252
|
-
'--left-mobile'?: csstype.Property.Left<string | number> | undefined;
|
|
45253
|
-
'--hvr-left-mobile'?: csstype.Property.Left<string | number> | undefined;
|
|
45254
|
-
'--focus-left-mobile'?: csstype.Property.Left<string | number> | undefined;
|
|
45255
|
-
'--ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
45256
|
-
'--hvr-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
45257
|
-
'--focus-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
45258
|
-
'--ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
45259
|
-
'--hvr-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
45260
|
-
'--focus-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
45261
|
-
'--ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
45262
|
-
'--hvr-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
45263
|
-
'--focus-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
45264
|
-
'--line-clamp'?: any;
|
|
45265
|
-
'--hvr-line-clamp'?: any;
|
|
45266
|
-
'--focus-line-clamp'?: any;
|
|
45267
|
-
'--line-clamp-tablet'?: any;
|
|
45268
|
-
'--hvr-line-clamp-tablet'?: any;
|
|
45269
|
-
'--focus-line-clamp-tablet'?: any;
|
|
45270
|
-
'--line-clamp-mobile'?: any;
|
|
45271
|
-
'--hvr-line-clamp-mobile'?: any;
|
|
45272
|
-
'--focus-line-clamp-mobile'?: any;
|
|
45273
|
-
'--lh'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
45274
|
-
'--hvr-lh'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
45275
|
-
'--focus-lh'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
45276
|
-
'--lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
45277
|
-
'--hvr-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
45278
|
-
'--focus-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
45279
|
-
'--lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
45280
|
-
'--hvr-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
45281
|
-
'--focus-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
45282
|
-
'--tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
45283
|
-
'--hvr-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
45284
|
-
'--focus-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
45285
|
-
'--tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
45286
|
-
'--hvr-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
45287
|
-
'--focus-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
45288
|
-
'--tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
45289
|
-
'--hvr-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
45290
|
-
'--focus-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
45291
|
-
'--tdc'?: csstype.Property.TextDecorationColor | undefined;
|
|
45292
|
-
'--hvr-tdc'?: csstype.Property.TextDecorationColor | undefined;
|
|
45293
|
-
'--focus-tdc'?: csstype.Property.TextDecorationColor | undefined;
|
|
45294
|
-
'--tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
|
|
45295
|
-
'--hvr-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
|
|
45296
|
-
'--focus-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
|
|
45297
|
-
'--tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
|
|
45298
|
-
'--hvr-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
|
|
45299
|
-
'--focus-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
|
|
45300
|
-
'--tdl'?: csstype.Property.TextDecorationLine | undefined;
|
|
45301
|
-
'--hvr-tdl'?: csstype.Property.TextDecorationLine | undefined;
|
|
45302
|
-
'--focus-tdl'?: csstype.Property.TextDecorationLine | undefined;
|
|
45303
|
-
'--tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
|
|
45304
|
-
'--hvr-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
|
|
45305
|
-
'--focus-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
|
|
45306
|
-
'--tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
|
|
45307
|
-
'--hvr-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
|
|
45308
|
-
'--focus-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
|
|
45309
|
-
'--m'?: csstype.Property.Margin<string | number> | undefined;
|
|
45310
|
-
'--hvr-m'?: csstype.Property.Margin<string | number> | undefined;
|
|
45311
|
-
'--focus-m'?: csstype.Property.Margin<string | number> | undefined;
|
|
45312
|
-
'--m-tablet'?: csstype.Property.Margin<string | number> | undefined;
|
|
45313
|
-
'--hvr-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
|
|
45314
|
-
'--focus-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
|
|
45315
|
-
'--m-mobile'?: csstype.Property.Margin<string | number> | undefined;
|
|
45316
|
-
'--hvr-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
|
|
45317
|
-
'--focus-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
|
|
45318
|
-
'--mb'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
45319
|
-
'--hvr-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
45320
|
-
'--focus-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
45321
|
-
'--mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
45322
|
-
'--hvr-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
45323
|
-
'--focus-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
45324
|
-
'--mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
45325
|
-
'--hvr-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
45326
|
-
'--focus-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
45327
|
-
'--ml'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
45328
|
-
'--hvr-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
45329
|
-
'--focus-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
45330
|
-
'--ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
45331
|
-
'--hvr-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
45332
|
-
'--focus-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
45333
|
-
'--ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
45334
|
-
'--hvr-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
45335
|
-
'--focus-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
45336
|
-
'--mr'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
45337
|
-
'--hvr-mr'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
45338
|
-
'--focus-mr'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
45339
|
-
'--mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
45340
|
-
'--hvr-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
45341
|
-
'--focus-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
45342
|
-
'--mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
45343
|
-
'--hvr-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
45344
|
-
'--focus-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
45345
|
-
'--mt'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
45346
|
-
'--hvr-mt'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
45347
|
-
'--focus-mt'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
45348
|
-
'--mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
45349
|
-
'--hvr-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
45350
|
-
'--focus-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
45351
|
-
'--mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
45352
|
-
'--hvr-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
45353
|
-
'--focus-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
45354
|
-
'--maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
45355
|
-
'--hvr-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
45356
|
-
'--focus-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
45357
|
-
'--maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
45358
|
-
'--hvr-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
45359
|
-
'--focus-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
45360
|
-
'--maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
45361
|
-
'--hvr-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
45362
|
-
'--focus-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
45363
|
-
'--maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
45364
|
-
'--hvr-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
45365
|
-
'--focus-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
45366
|
-
'--maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
45367
|
-
'--hvr-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
45368
|
-
'--focus-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
45369
|
-
'--maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
45370
|
-
'--hvr-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
45371
|
-
'--focus-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
45372
|
-
'--minh'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
45373
|
-
'--hvr-minh'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
45374
|
-
'--focus-minh'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
45375
|
-
'--minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
45376
|
-
'--hvr-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
45377
|
-
'--focus-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
45378
|
-
'--minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
45379
|
-
'--hvr-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
45380
|
-
'--focus-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
45381
|
-
'--minw'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
45382
|
-
'--hvr-minw'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
45383
|
-
'--focus-minw'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
45384
|
-
'--minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
45385
|
-
'--hvr-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
45386
|
-
'--focus-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
45387
|
-
'--minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
45388
|
-
'--hvr-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
45389
|
-
'--focus-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
45390
|
-
'--objf'?: csstype.Property.ObjectFit | undefined;
|
|
45391
|
-
'--hvr-objf'?: csstype.Property.ObjectFit | undefined;
|
|
45392
|
-
'--focus-objf'?: csstype.Property.ObjectFit | undefined;
|
|
45393
|
-
'--objf-tablet'?: csstype.Property.ObjectFit | undefined;
|
|
45394
|
-
'--hvr-objf-tablet'?: csstype.Property.ObjectFit | undefined;
|
|
45395
|
-
'--focus-objf-tablet'?: csstype.Property.ObjectFit | undefined;
|
|
45396
|
-
'--objf-mobile'?: csstype.Property.ObjectFit | undefined;
|
|
45397
|
-
'--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
|
|
45398
|
-
'--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
|
|
45399
|
-
'--op'?: csstype.Property.Opacity | undefined;
|
|
45400
|
-
'--hvr-op'?: csstype.Property.Opacity | undefined;
|
|
45401
|
-
'--focus-op'?: csstype.Property.Opacity | undefined;
|
|
45402
|
-
'--op-tablet'?: csstype.Property.Opacity | undefined;
|
|
45403
|
-
'--hvr-op-tablet'?: csstype.Property.Opacity | undefined;
|
|
45404
|
-
'--focus-op-tablet'?: csstype.Property.Opacity | undefined;
|
|
45405
|
-
'--op-mobile'?: csstype.Property.Opacity | undefined;
|
|
45406
|
-
'--hvr-op-mobile'?: csstype.Property.Opacity | undefined;
|
|
45407
|
-
'--focus-op-mobile'?: csstype.Property.Opacity | undefined;
|
|
45408
|
-
'--o'?: csstype.Property.Order | undefined;
|
|
45409
|
-
'--hvr-o'?: csstype.Property.Order | undefined;
|
|
45410
|
-
'--focus-o'?: csstype.Property.Order | undefined;
|
|
45411
|
-
'--o-tablet'?: csstype.Property.Order | undefined;
|
|
45412
|
-
'--hvr-o-tablet'?: csstype.Property.Order | undefined;
|
|
45413
|
-
'--focus-o-tablet'?: csstype.Property.Order | undefined;
|
|
45414
|
-
'--o-mobile'?: csstype.Property.Order | undefined;
|
|
45415
|
-
'--hvr-o-mobile'?: csstype.Property.Order | undefined;
|
|
45416
|
-
'--focus-o-mobile'?: csstype.Property.Order | undefined;
|
|
45417
|
-
'--pc'?: csstype.Property.PlaceContent | undefined;
|
|
45418
|
-
'--hvr-pc'?: csstype.Property.PlaceContent | undefined;
|
|
45419
|
-
'--focus-pc'?: csstype.Property.PlaceContent | undefined;
|
|
45420
|
-
'--pc-tablet'?: csstype.Property.PlaceContent | undefined;
|
|
45421
|
-
'--hvr-pc-tablet'?: csstype.Property.PlaceContent | undefined;
|
|
45422
|
-
'--focus-pc-tablet'?: csstype.Property.PlaceContent | undefined;
|
|
45423
|
-
'--pc-mobile'?: csstype.Property.PlaceContent | undefined;
|
|
45424
|
-
'--hvr-pc-mobile'?: csstype.Property.PlaceContent | undefined;
|
|
45425
|
-
'--focus-pc-mobile'?: csstype.Property.PlaceContent | undefined;
|
|
45426
|
-
'--p'?: csstype.Property.Padding<string | number> | undefined;
|
|
45427
|
-
'--hvr-p'?: csstype.Property.Padding<string | number> | undefined;
|
|
45428
|
-
'--focus-p'?: csstype.Property.Padding<string | number> | undefined;
|
|
45429
|
-
'--p-tablet'?: csstype.Property.Padding<string | number> | undefined;
|
|
45430
|
-
'--hvr-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
|
|
45431
|
-
'--focus-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
|
|
45432
|
-
'--p-mobile'?: csstype.Property.Padding<string | number> | undefined;
|
|
45433
|
-
'--hvr-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
|
|
45434
|
-
'--focus-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
|
|
45435
|
-
'--pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
45436
|
-
'--hvr-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
45437
|
-
'--focus-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
45438
|
-
'--pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
45439
|
-
'--hvr-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
45440
|
-
'--focus-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
45441
|
-
'--pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
45442
|
-
'--hvr-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
45443
|
-
'--focus-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
45444
|
-
'--pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
45445
|
-
'--hvr-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
45446
|
-
'--focus-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
45447
|
-
'--pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
45448
|
-
'--hvr-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
45449
|
-
'--focus-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
45450
|
-
'--pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
45451
|
-
'--hvr-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
45452
|
-
'--focus-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
45453
|
-
'--pr'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
45454
|
-
'--hvr-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
45455
|
-
'--focus-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
45456
|
-
'--pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
45457
|
-
'--hvr-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
45458
|
-
'--focus-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
45459
|
-
'--pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
45460
|
-
'--hvr-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
45461
|
-
'--focus-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
45462
|
-
'--pt'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
45463
|
-
'--hvr-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
45464
|
-
'--focus-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
45465
|
-
'--pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
45466
|
-
'--hvr-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
45467
|
-
'--focus-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
45468
|
-
'--pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
45469
|
-
'--hvr-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
45470
|
-
'--focus-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
45471
|
-
'--pe'?: csstype.Property.PointerEvents | undefined;
|
|
45472
|
-
'--hvr-pe'?: csstype.Property.PointerEvents | undefined;
|
|
45473
|
-
'--focus-pe'?: csstype.Property.PointerEvents | undefined;
|
|
45474
|
-
'--pe-tablet'?: csstype.Property.PointerEvents | undefined;
|
|
45475
|
-
'--hvr-pe-tablet'?: csstype.Property.PointerEvents | undefined;
|
|
45476
|
-
'--focus-pe-tablet'?: csstype.Property.PointerEvents | undefined;
|
|
45477
|
-
'--pe-mobile'?: csstype.Property.PointerEvents | undefined;
|
|
45478
|
-
'--hvr-pe-mobile'?: csstype.Property.PointerEvents | undefined;
|
|
45479
|
-
'--focus-pe-mobile'?: csstype.Property.PointerEvents | undefined;
|
|
45480
|
-
'--pos'?: csstype.Property.Position | undefined;
|
|
45481
|
-
'--hvr-pos'?: csstype.Property.Position | undefined;
|
|
45482
|
-
'--focus-pos'?: csstype.Property.Position | undefined;
|
|
45483
|
-
'--pos-tablet'?: csstype.Property.Position | undefined;
|
|
45484
|
-
'--hvr-pos-tablet'?: csstype.Property.Position | undefined;
|
|
45485
|
-
'--focus-pos-tablet'?: csstype.Property.Position | undefined;
|
|
45486
|
-
'--pos-mobile'?: csstype.Property.Position | undefined;
|
|
45487
|
-
'--hvr-pos-mobile'?: csstype.Property.Position | undefined;
|
|
45488
|
-
'--focus-pos-mobile'?: csstype.Property.Position | undefined;
|
|
45489
|
-
'--right'?: csstype.Property.Right<string | number> | undefined;
|
|
45490
|
-
'--hvr-right'?: csstype.Property.Right<string | number> | undefined;
|
|
45491
|
-
'--focus-right'?: csstype.Property.Right<string | number> | undefined;
|
|
45492
|
-
'--right-tablet'?: csstype.Property.Right<string | number> | undefined;
|
|
45493
|
-
'--hvr-right-tablet'?: csstype.Property.Right<string | number> | undefined;
|
|
45494
|
-
'--focus-right-tablet'?: csstype.Property.Right<string | number> | undefined;
|
|
45495
|
-
'--right-mobile'?: csstype.Property.Right<string | number> | undefined;
|
|
45496
|
-
'--hvr-right-mobile'?: csstype.Property.Right<string | number> | undefined;
|
|
45497
|
-
'--focus-right-mobile'?: csstype.Property.Right<string | number> | undefined;
|
|
45498
|
-
'--rg'?: csstype.Property.RowGap<string | number> | undefined;
|
|
45499
|
-
'--hvr-rg'?: csstype.Property.RowGap<string | number> | undefined;
|
|
45500
|
-
'--focus-rg'?: csstype.Property.RowGap<string | number> | undefined;
|
|
45501
|
-
'--rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
|
|
45502
|
-
'--hvr-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
|
|
45503
|
-
'--focus-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
|
|
45504
|
-
'--rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
|
|
45505
|
-
'--hvr-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
|
|
45506
|
-
'--focus-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
|
|
45507
|
-
'--ta'?: csstype.Property.TextAlign | undefined;
|
|
45508
|
-
'--hvr-ta'?: csstype.Property.TextAlign | undefined;
|
|
45509
|
-
'--focus-ta'?: csstype.Property.TextAlign | undefined;
|
|
45510
|
-
'--ta-tablet'?: csstype.Property.TextAlign | undefined;
|
|
45511
|
-
'--hvr-ta-tablet'?: csstype.Property.TextAlign | undefined;
|
|
45512
|
-
'--focus-ta-tablet'?: csstype.Property.TextAlign | undefined;
|
|
45513
|
-
'--ta-mobile'?: csstype.Property.TextAlign | undefined;
|
|
45514
|
-
'--hvr-ta-mobile'?: csstype.Property.TextAlign | undefined;
|
|
45515
|
-
'--focus-ta-mobile'?: csstype.Property.TextAlign | undefined;
|
|
45516
|
-
'--ts'?: csstype.Property.TextShadow | undefined;
|
|
45517
|
-
'--hvr-ts'?: csstype.Property.TextShadow | undefined;
|
|
45518
|
-
'--focus-ts'?: csstype.Property.TextShadow | undefined;
|
|
45519
|
-
'--ts-tablet'?: csstype.Property.TextShadow | undefined;
|
|
45520
|
-
'--hvr-ts-tablet'?: csstype.Property.TextShadow | undefined;
|
|
45521
|
-
'--focus-ts-tablet'?: csstype.Property.TextShadow | undefined;
|
|
45522
|
-
'--ts-mobile'?: csstype.Property.TextShadow | undefined;
|
|
45523
|
-
'--hvr-ts-mobile'?: csstype.Property.TextShadow | undefined;
|
|
45524
|
-
'--focus-ts-mobile'?: csstype.Property.TextShadow | undefined;
|
|
45525
|
-
'--tt'?: csstype.Property.TextTransform | undefined;
|
|
45526
|
-
'--hvr-tt'?: csstype.Property.TextTransform | undefined;
|
|
45527
|
-
'--focus-tt'?: csstype.Property.TextTransform | undefined;
|
|
45528
|
-
'--tt-tablet'?: csstype.Property.TextTransform | undefined;
|
|
45529
|
-
'--hvr-tt-tablet'?: csstype.Property.TextTransform | undefined;
|
|
45530
|
-
'--focus-tt-tablet'?: csstype.Property.TextTransform | undefined;
|
|
45531
|
-
'--tt-mobile'?: csstype.Property.TextTransform | undefined;
|
|
45532
|
-
'--hvr-tt-mobile'?: csstype.Property.TextTransform | undefined;
|
|
45533
|
-
'--focus-tt-mobile'?: csstype.Property.TextTransform | undefined;
|
|
45534
|
-
'--top'?: csstype.Property.Top<string | number> | undefined;
|
|
45535
|
-
'--hvr-top'?: csstype.Property.Top<string | number> | undefined;
|
|
45536
|
-
'--focus-top'?: csstype.Property.Top<string | number> | undefined;
|
|
45537
|
-
'--top-tablet'?: csstype.Property.Top<string | number> | undefined;
|
|
45538
|
-
'--hvr-top-tablet'?: csstype.Property.Top<string | number> | undefined;
|
|
45539
|
-
'--focus-top-tablet'?: csstype.Property.Top<string | number> | undefined;
|
|
45540
|
-
'--top-mobile'?: csstype.Property.Top<string | number> | undefined;
|
|
45541
|
-
'--hvr-top-mobile'?: csstype.Property.Top<string | number> | undefined;
|
|
45542
|
-
'--focus-top-mobile'?: csstype.Property.Top<string | number> | undefined;
|
|
45543
|
-
'--t'?: csstype.Property.Transform | undefined;
|
|
45544
|
-
'--hvr-t'?: csstype.Property.Transform | undefined;
|
|
45545
|
-
'--focus-t'?: csstype.Property.Transform | undefined;
|
|
45546
|
-
'--t-tablet'?: csstype.Property.Transform | undefined;
|
|
45547
|
-
'--hvr-t-tablet'?: csstype.Property.Transform | undefined;
|
|
45548
|
-
'--focus-t-tablet'?: csstype.Property.Transform | undefined;
|
|
45549
|
-
'--t-mobile'?: csstype.Property.Transform | undefined;
|
|
45550
|
-
'--hvr-t-mobile'?: csstype.Property.Transform | undefined;
|
|
45551
|
-
'--focus-t-mobile'?: csstype.Property.Transform | undefined;
|
|
45552
|
-
'--v'?: csstype.Property.Visibility | undefined;
|
|
45553
|
-
'--hvr-v'?: csstype.Property.Visibility | undefined;
|
|
45554
|
-
'--focus-v'?: csstype.Property.Visibility | undefined;
|
|
45555
|
-
'--v-tablet'?: csstype.Property.Visibility | undefined;
|
|
45556
|
-
'--hvr-v-tablet'?: csstype.Property.Visibility | undefined;
|
|
45557
|
-
'--focus-v-tablet'?: csstype.Property.Visibility | undefined;
|
|
45558
|
-
'--v-mobile'?: csstype.Property.Visibility | undefined;
|
|
45559
|
-
'--hvr-v-mobile'?: csstype.Property.Visibility | undefined;
|
|
45560
|
-
'--focus-v-mobile'?: csstype.Property.Visibility | undefined;
|
|
45561
|
-
'--ws'?: csstype.Property.WhiteSpace | undefined;
|
|
45562
|
-
'--hvr-ws'?: csstype.Property.WhiteSpace | undefined;
|
|
45563
|
-
'--focus-ws'?: csstype.Property.WhiteSpace | undefined;
|
|
45564
|
-
'--ws-tablet'?: csstype.Property.WhiteSpace | undefined;
|
|
45565
|
-
'--hvr-ws-tablet'?: csstype.Property.WhiteSpace | undefined;
|
|
45566
|
-
'--focus-ws-tablet'?: csstype.Property.WhiteSpace | undefined;
|
|
45567
|
-
'--ws-mobile'?: csstype.Property.WhiteSpace | undefined;
|
|
45568
|
-
'--hvr-ws-mobile'?: csstype.Property.WhiteSpace | undefined;
|
|
45569
|
-
'--focus-ws-mobile'?: csstype.Property.WhiteSpace | undefined;
|
|
45570
|
-
'--w'?: csstype.Property.Width<string | number> | undefined;
|
|
45571
|
-
'--hvr-w'?: csstype.Property.Width<string | number> | undefined;
|
|
45572
|
-
'--focus-w'?: csstype.Property.Width<string | number> | undefined;
|
|
45573
|
-
'--w-tablet'?: csstype.Property.Width<string | number> | undefined;
|
|
45574
|
-
'--hvr-w-tablet'?: csstype.Property.Width<string | number> | undefined;
|
|
45575
|
-
'--focus-w-tablet'?: csstype.Property.Width<string | number> | undefined;
|
|
45576
|
-
'--w-mobile'?: csstype.Property.Width<string | number> | undefined;
|
|
45577
|
-
'--hvr-w-mobile'?: csstype.Property.Width<string | number> | undefined;
|
|
45578
|
-
'--focus-w-mobile'?: csstype.Property.Width<string | number> | undefined;
|
|
45579
|
-
'--z'?: csstype.Property.ZIndex | undefined;
|
|
45580
|
-
'--hvr-z'?: csstype.Property.ZIndex | undefined;
|
|
45581
|
-
'--focus-z'?: csstype.Property.ZIndex | undefined;
|
|
45582
|
-
'--z-tablet'?: csstype.Property.ZIndex | undefined;
|
|
45583
|
-
'--hvr-z-tablet'?: csstype.Property.ZIndex | undefined;
|
|
45584
|
-
'--focus-z-tablet'?: csstype.Property.ZIndex | undefined;
|
|
45585
|
-
'--z-mobile'?: csstype.Property.ZIndex | undefined;
|
|
45586
|
-
'--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
|
|
45587
|
-
'--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
|
|
45588
|
-
'--wm'?: csstype.Property.WritingMode | undefined;
|
|
45589
|
-
'--hvr-wm'?: csstype.Property.WritingMode | undefined;
|
|
45590
|
-
'--focus-wm'?: csstype.Property.WritingMode | undefined;
|
|
45591
|
-
'--wm-tablet'?: csstype.Property.WritingMode | undefined;
|
|
45592
|
-
'--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
|
|
45593
|
-
'--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
|
|
45594
|
-
'--wm-mobile'?: csstype.Property.WritingMode | undefined;
|
|
45595
|
-
'--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
|
|
45596
|
-
'--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
|
|
45597
|
-
accentColor?: csstype.Property.AccentColor | undefined;
|
|
45598
|
-
alignContent?: csstype.Property.AlignContent | undefined;
|
|
45599
|
-
alignItems?: csstype.Property.AlignItems | undefined;
|
|
45600
|
-
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
45601
|
-
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
45602
|
-
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
45603
|
-
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
45604
|
-
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
45605
|
-
animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
45606
|
-
animationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
45607
|
-
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
45608
|
-
animationName?: csstype.Property.AnimationName | undefined;
|
|
45609
|
-
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
45610
|
-
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
45611
|
-
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
45612
|
-
appearance?: csstype.Property.Appearance | undefined;
|
|
45613
|
-
aspectRatio?: csstype.Property.AspectRatio | undefined;
|
|
45614
|
-
backdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
45615
|
-
backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
45616
|
-
backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
|
|
45617
|
-
backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
|
|
45618
|
-
backgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
45619
|
-
backgroundColor?: csstype.Property.BackgroundColor | undefined;
|
|
45620
|
-
backgroundImage?: csstype.Property.BackgroundImage | undefined;
|
|
45621
|
-
backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
45622
|
-
backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
|
|
45623
|
-
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
45624
|
-
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
45625
|
-
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
45626
|
-
blockOverflow?: csstype.Property.BlockOverflow | undefined;
|
|
45627
|
-
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
45628
|
-
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
45629
|
-
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
45630
|
-
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
45631
|
-
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
45632
|
-
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
45633
|
-
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
45634
|
-
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
45635
|
-
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
45636
|
-
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
45637
|
-
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
45638
|
-
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
45639
|
-
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
45640
|
-
borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
|
|
45641
|
-
borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
45642
|
-
borderCollapse?: csstype.Property.BorderCollapse | undefined;
|
|
45643
|
-
borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
|
|
45644
|
-
borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
|
|
45645
|
-
borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
|
|
45646
|
-
borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
|
|
45647
|
-
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
45648
|
-
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
45649
|
-
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
45650
|
-
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
45651
|
-
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
45652
|
-
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
45653
|
-
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
45654
|
-
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
45655
|
-
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
45656
|
-
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
45657
|
-
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
45658
|
-
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
45659
|
-
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
45660
|
-
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
45661
|
-
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
45662
|
-
borderRightColor?: csstype.Property.BorderRightColor | undefined;
|
|
45663
|
-
borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
|
|
45664
|
-
borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
|
|
45665
|
-
borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
|
|
45666
|
-
borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
|
|
45667
|
-
borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
|
|
45668
|
-
borderTopColor?: csstype.Property.BorderTopColor | undefined;
|
|
45669
|
-
borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
45670
|
-
borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
45671
|
-
borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
|
|
45672
|
-
borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
|
|
45673
|
-
bottom?: csstype.Property.Bottom<string | number> | undefined;
|
|
45674
|
-
boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
45675
|
-
boxShadow?: csstype.Property.BoxShadow | undefined;
|
|
45676
|
-
boxSizing?: csstype.Property.BoxSizing | undefined;
|
|
45677
|
-
breakAfter?: csstype.Property.BreakAfter | undefined;
|
|
45678
|
-
breakBefore?: csstype.Property.BreakBefore | undefined;
|
|
45679
|
-
breakInside?: csstype.Property.BreakInside | undefined;
|
|
45680
|
-
captionSide?: csstype.Property.CaptionSide | undefined;
|
|
45681
|
-
caretColor?: csstype.Property.CaretColor | undefined;
|
|
45682
|
-
caretShape?: csstype.Property.CaretShape | undefined;
|
|
45683
|
-
clear?: csstype.Property.Clear | undefined;
|
|
45684
|
-
clipPath?: csstype.Property.ClipPath | undefined;
|
|
45685
|
-
color?: csstype.Property.Color | undefined;
|
|
45686
|
-
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
45687
|
-
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
45688
|
-
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
45689
|
-
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
45690
|
-
columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
45691
|
-
columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
45692
|
-
columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
45693
|
-
columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
45694
|
-
columnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
45695
|
-
columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
|
|
45696
|
-
contain?: csstype.Property.Contain | undefined;
|
|
45697
|
-
containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
45698
|
-
containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
45699
|
-
containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
45700
|
-
containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
45701
|
-
containerName?: csstype.Property.ContainerName | undefined;
|
|
45702
|
-
containerType?: csstype.Property.ContainerType | undefined;
|
|
45703
|
-
content?: csstype.Property.Content | undefined;
|
|
45704
|
-
contentVisibility?: csstype.Property.ContentVisibility | undefined;
|
|
45705
|
-
counterIncrement?: csstype.Property.CounterIncrement | undefined;
|
|
45706
|
-
counterReset?: csstype.Property.CounterReset | undefined;
|
|
45707
|
-
counterSet?: csstype.Property.CounterSet | undefined;
|
|
45708
|
-
cursor?: csstype.Property.Cursor | undefined;
|
|
45709
|
-
direction?: csstype.Property.Direction | undefined;
|
|
45710
|
-
display?: csstype.Property.Display | undefined;
|
|
45711
|
-
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
45712
|
-
filter?: csstype.Property.Filter | undefined;
|
|
45713
|
-
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
45714
|
-
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
45715
|
-
flexGrow?: csstype.Property.FlexGrow | undefined;
|
|
45716
|
-
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
45717
|
-
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
45718
|
-
float?: csstype.Property.Float | undefined;
|
|
45719
|
-
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
45720
|
-
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
45721
|
-
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
45722
|
-
fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
45723
|
-
fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
|
|
45724
|
-
fontPalette?: csstype.Property.FontPalette | undefined;
|
|
45725
|
-
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
45726
|
-
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
45727
|
-
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
45728
|
-
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
45729
|
-
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
45730
|
-
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
45731
|
-
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
45732
|
-
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
45733
|
-
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
45734
|
-
fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
|
|
45735
|
-
fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
|
|
45736
|
-
fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
45737
|
-
fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
|
|
45738
|
-
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
45739
|
-
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
45740
|
-
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
45741
|
-
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
45742
|
-
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
45743
|
-
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
45744
|
-
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
45745
|
-
gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
|
|
45746
|
-
gridColumnStart?: csstype.Property.GridColumnStart | undefined;
|
|
45747
|
-
gridRowEnd?: csstype.Property.GridRowEnd | undefined;
|
|
45748
|
-
gridRowStart?: csstype.Property.GridRowStart | undefined;
|
|
45749
|
-
gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
|
|
45750
|
-
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
45751
|
-
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
45752
|
-
hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
|
|
45753
|
-
height?: csstype.Property.Height<string | number> | undefined;
|
|
45754
|
-
hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
45755
|
-
hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
|
|
45756
|
-
hyphens?: csstype.Property.Hyphens | undefined;
|
|
45757
|
-
imageOrientation?: csstype.Property.ImageOrientation | undefined;
|
|
45758
|
-
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
45759
|
-
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
45760
|
-
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
45761
|
-
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
45762
|
-
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
45763
|
-
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
45764
|
-
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
45765
|
-
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
45766
|
-
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
45767
|
-
isolation?: csstype.Property.Isolation | undefined;
|
|
45768
|
-
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
45769
|
-
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
45770
|
-
justifySelf?: csstype.Property.JustifySelf | undefined;
|
|
45771
|
-
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
45772
|
-
left?: csstype.Property.Left<string | number> | undefined;
|
|
45773
|
-
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
45774
|
-
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
45775
|
-
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
45776
|
-
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
45777
|
-
listStyleImage?: csstype.Property.ListStyleImage | undefined;
|
|
45778
|
-
listStylePosition?: csstype.Property.ListStylePosition | undefined;
|
|
45779
|
-
listStyleType?: csstype.Property.ListStyleType | undefined;
|
|
45780
|
-
marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
|
|
45781
|
-
marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
|
|
45782
|
-
marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
45783
|
-
marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
45784
|
-
marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
45785
|
-
marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
45786
|
-
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
45787
|
-
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
45788
|
-
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
45789
|
-
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
45790
|
-
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
45791
|
-
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
45792
|
-
maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
45793
|
-
maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
|
|
45794
|
-
maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
|
|
45795
|
-
maskClip?: csstype.Property.MaskClip | undefined;
|
|
45796
|
-
maskComposite?: csstype.Property.MaskComposite | undefined;
|
|
45797
|
-
maskImage?: csstype.Property.MaskImage | undefined;
|
|
45798
|
-
maskMode?: csstype.Property.MaskMode | undefined;
|
|
45799
|
-
maskOrigin?: csstype.Property.MaskOrigin | undefined;
|
|
45800
|
-
maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
|
|
45801
|
-
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
45802
|
-
maskSize?: csstype.Property.MaskSize<string | number> | undefined;
|
|
45803
|
-
maskType?: csstype.Property.MaskType | undefined;
|
|
45804
|
-
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
45805
|
-
mathShift?: csstype.Property.MathShift | undefined;
|
|
45806
|
-
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
45807
|
-
maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
|
|
45808
|
-
maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
45809
|
-
maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
|
|
45810
|
-
maxLines?: csstype.Property.MaxLines | undefined;
|
|
45811
|
-
maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
45812
|
-
minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
|
|
45813
|
-
minHeight?: csstype.Property.MinHeight<string | number> | undefined;
|
|
45814
|
-
minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
|
|
45815
|
-
minWidth?: csstype.Property.MinWidth<string | number> | undefined;
|
|
45816
|
-
mixBlendMode?: csstype.Property.MixBlendMode | undefined;
|
|
45817
|
-
motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
45818
|
-
motionPath?: csstype.Property.OffsetPath | undefined;
|
|
45819
|
-
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
45820
|
-
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
45821
|
-
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
45822
|
-
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
45823
|
-
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
45824
|
-
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
45825
|
-
offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
|
|
45826
|
-
offsetRotate?: csstype.Property.OffsetRotate | undefined;
|
|
45827
|
-
offsetRotation?: csstype.Property.OffsetRotate | undefined;
|
|
45828
|
-
opacity?: csstype.Property.Opacity | undefined;
|
|
45829
|
-
order?: csstype.Property.Order | undefined;
|
|
45830
|
-
orphans?: csstype.Property.Orphans | undefined;
|
|
45831
|
-
outlineColor?: csstype.Property.OutlineColor | undefined;
|
|
45832
|
-
outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
|
|
45833
|
-
outlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
45834
|
-
outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
45835
|
-
overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
|
|
45836
|
-
overflowBlock?: csstype.Property.OverflowBlock | undefined;
|
|
45837
|
-
overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
|
|
45838
|
-
overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
|
|
45839
|
-
overflowInline?: csstype.Property.OverflowInline | undefined;
|
|
45840
|
-
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
45841
|
-
overflowX?: csstype.Property.OverflowX | undefined;
|
|
45842
|
-
overflowY?: csstype.Property.OverflowY | undefined;
|
|
45843
|
-
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
45844
|
-
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
45845
|
-
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
45846
|
-
overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
|
|
45847
|
-
paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
|
|
45848
|
-
paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
|
|
45849
|
-
paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
45850
|
-
paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
45851
|
-
paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
45852
|
-
paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
45853
|
-
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
45854
|
-
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
45855
|
-
page?: csstype.Property.Page | undefined;
|
|
45856
|
-
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
45857
|
-
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
45858
|
-
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
45859
|
-
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
45860
|
-
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
45861
|
-
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
45862
|
-
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
45863
|
-
position?: csstype.Property.Position | undefined;
|
|
45864
|
-
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
45865
|
-
quotes?: csstype.Property.Quotes | undefined;
|
|
45866
|
-
resize?: csstype.Property.Resize | undefined;
|
|
45867
|
-
right?: csstype.Property.Right<string | number> | undefined;
|
|
45868
|
-
rotate?: csstype.Property.Rotate | undefined;
|
|
45869
|
-
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
45870
|
-
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
45871
|
-
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
45872
|
-
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
45873
|
-
scale?: csstype.Property.Scale | undefined;
|
|
45874
|
-
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
45875
|
-
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
45876
|
-
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
45877
|
-
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
45878
|
-
scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
45879
|
-
scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
45880
|
-
scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
|
|
45881
|
-
scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
|
|
45882
|
-
scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
|
|
45883
|
-
scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
45884
|
-
scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
45885
|
-
scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
|
|
45886
|
-
scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
45887
|
-
scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
45888
|
-
scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
|
|
45889
|
-
scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
|
|
45890
|
-
scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
|
|
45891
|
-
scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
|
|
45892
|
-
scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
45893
|
-
scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
|
|
45894
|
-
scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
|
|
45895
|
-
scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
|
|
45896
|
-
scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
|
|
45897
|
-
scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
45898
|
-
scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
|
|
45899
|
-
scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
|
|
45900
|
-
scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
|
|
45901
|
-
scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
|
|
45902
|
-
scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
|
|
45903
|
-
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
45904
|
-
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
45905
|
-
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
45906
|
-
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
45907
|
-
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
45908
|
-
textAlign?: csstype.Property.TextAlign | undefined;
|
|
45909
|
-
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
45910
|
-
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
45911
|
-
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
45912
|
-
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
45913
|
-
textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
45914
|
-
textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
|
|
45915
|
-
textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
45916
|
-
textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
45917
|
-
textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
45918
|
-
textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
45919
|
-
textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
45920
|
-
textIndent?: csstype.Property.TextIndent<string | number> | undefined;
|
|
45921
|
-
textJustify?: csstype.Property.TextJustify | undefined;
|
|
45922
|
-
textOrientation?: csstype.Property.TextOrientation | undefined;
|
|
45923
|
-
textOverflow?: csstype.Property.TextOverflow | undefined;
|
|
45924
|
-
textRendering?: csstype.Property.TextRendering | undefined;
|
|
45925
|
-
textShadow?: csstype.Property.TextShadow | undefined;
|
|
45926
|
-
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
45927
|
-
textTransform?: csstype.Property.TextTransform | undefined;
|
|
45928
|
-
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
45929
|
-
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
45930
|
-
top?: csstype.Property.Top<string | number> | undefined;
|
|
45931
|
-
touchAction?: csstype.Property.TouchAction | undefined;
|
|
45932
|
-
transform?: csstype.Property.Transform | undefined;
|
|
45933
|
-
transformBox?: csstype.Property.TransformBox | undefined;
|
|
45934
|
-
transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
45935
|
-
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
45936
|
-
transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
45937
|
-
transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
45938
|
-
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
45939
|
-
transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
45940
|
-
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
45941
|
-
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
45942
|
-
userSelect?: csstype.Property.UserSelect | undefined;
|
|
45943
|
-
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
45944
|
-
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
45945
|
-
visibility?: csstype.Property.Visibility | undefined;
|
|
45946
|
-
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
45947
|
-
widows?: csstype.Property.Widows | undefined;
|
|
45948
|
-
width?: csstype.Property.Width<string | number> | undefined;
|
|
45949
|
-
willChange?: csstype.Property.WillChange | undefined;
|
|
45950
|
-
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
45951
|
-
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
45952
|
-
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
45953
|
-
writingMode?: csstype.Property.WritingMode | undefined;
|
|
45954
|
-
zIndex?: csstype.Property.ZIndex | undefined;
|
|
45955
|
-
zoom?: csstype.Property.Zoom | undefined;
|
|
45956
|
-
all?: csstype.Globals | undefined;
|
|
45957
|
-
animation?: csstype.Property.Animation<string & {}> | undefined;
|
|
45958
|
-
background?: csstype.Property.Background<string | number> | undefined;
|
|
45959
|
-
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
45960
|
-
border?: csstype.Property.Border<string | number> | undefined;
|
|
45961
|
-
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
45962
|
-
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
45963
|
-
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
45964
|
-
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
45965
|
-
borderColor?: csstype.Property.BorderColor | undefined;
|
|
45966
|
-
borderImage?: csstype.Property.BorderImage | undefined;
|
|
45967
|
-
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
45968
|
-
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
45969
|
-
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
45970
|
-
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
45971
|
-
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
45972
|
-
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
45973
|
-
borderStyle?: csstype.Property.BorderStyle | undefined;
|
|
45974
|
-
borderTop?: csstype.Property.BorderTop<string | number> | undefined;
|
|
45975
|
-
borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
45976
|
-
caret?: csstype.Property.Caret | undefined;
|
|
45977
|
-
columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
45978
|
-
columns?: csstype.Property.Columns<string | number> | undefined;
|
|
45979
|
-
containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
|
|
45980
|
-
container?: csstype.Property.Container | undefined;
|
|
45981
|
-
flex?: csstype.Property.Flex<string | number> | undefined;
|
|
45982
|
-
flexFlow?: csstype.Property.FlexFlow | undefined;
|
|
45983
|
-
font?: csstype.Property.Font | undefined;
|
|
45984
|
-
gap?: csstype.Property.Gap<string | number> | undefined;
|
|
45985
|
-
grid?: csstype.Property.Grid | undefined;
|
|
45986
|
-
gridArea?: csstype.Property.GridArea | undefined;
|
|
45987
|
-
gridColumn?: csstype.Property.GridColumn | undefined;
|
|
45988
|
-
gridRow?: csstype.Property.GridRow | undefined;
|
|
45989
|
-
gridTemplate?: csstype.Property.GridTemplate | undefined;
|
|
45990
|
-
inset?: csstype.Property.Inset<string | number> | undefined;
|
|
45991
|
-
insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
45992
|
-
insetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
45993
|
-
lineClamp?: csstype.Property.LineClamp | undefined;
|
|
45994
|
-
listStyle?: csstype.Property.ListStyle | undefined;
|
|
45995
|
-
margin?: csstype.Property.Margin<string | number> | undefined;
|
|
45996
|
-
marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
|
|
45997
|
-
marginInline?: csstype.Property.MarginInline<string | number> | undefined;
|
|
45998
|
-
mask?: csstype.Property.Mask<string | number> | undefined;
|
|
45999
|
-
maskBorder?: csstype.Property.MaskBorder | undefined;
|
|
46000
|
-
motion?: csstype.Property.Offset<string | number> | undefined;
|
|
46001
|
-
offset?: csstype.Property.Offset<string | number> | undefined;
|
|
46002
|
-
outline?: csstype.Property.Outline<string | number> | undefined;
|
|
46003
|
-
overflow?: csstype.Property.Overflow | undefined;
|
|
46004
|
-
overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
|
|
46005
|
-
padding?: csstype.Property.Padding<string | number> | undefined;
|
|
46006
|
-
paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
|
|
46007
|
-
paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
|
|
46008
|
-
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
46009
|
-
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
46010
|
-
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
46011
|
-
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
46012
|
-
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
46013
|
-
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
46014
|
-
scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
|
|
46015
|
-
scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
|
|
46016
|
-
scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
|
|
46017
|
-
scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
46018
|
-
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
46019
|
-
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
46020
|
-
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
46021
|
-
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
46022
|
-
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
46023
|
-
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
46024
|
-
MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
46025
|
-
MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
46026
|
-
MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
46027
|
-
MozAnimationName?: csstype.Property.AnimationName | undefined;
|
|
46028
|
-
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
46029
|
-
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
46030
|
-
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
46031
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
46032
|
-
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
46033
|
-
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
46034
|
-
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
46035
|
-
MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
46036
|
-
MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
46037
|
-
MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
|
|
46038
|
-
MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
|
|
46039
|
-
MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
46040
|
-
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
46041
|
-
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
46042
|
-
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
46043
|
-
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
46044
|
-
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
46045
|
-
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
46046
|
-
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
46047
|
-
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
46048
|
-
MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
|
|
46049
|
-
MozContextProperties?: csstype.Property.MozContextProperties | undefined;
|
|
46050
|
-
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
46051
|
-
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
46052
|
-
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
46053
|
-
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
46054
|
-
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
46055
|
-
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
46056
|
-
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
46057
|
-
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
46058
|
-
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
46059
|
-
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
46060
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
46061
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
46062
|
-
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
46063
|
-
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
46064
|
-
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
46065
|
-
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
46066
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
46067
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
46068
|
-
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
46069
|
-
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
46070
|
-
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
46071
|
-
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
46072
|
-
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
46073
|
-
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
46074
|
-
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
46075
|
-
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
46076
|
-
MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
|
|
46077
|
-
msAccelerator?: csstype.Property.MsAccelerator | undefined;
|
|
46078
|
-
msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
|
|
46079
|
-
msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
|
|
46080
|
-
msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
|
|
46081
|
-
msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
|
|
46082
|
-
msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
|
|
46083
|
-
msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
|
|
46084
|
-
msContentZooming?: csstype.Property.MsContentZooming | undefined;
|
|
46085
|
-
msFilter?: csstype.Property.MsFilter | undefined;
|
|
46086
|
-
msFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
46087
|
-
msFlexPositive?: csstype.Property.FlexGrow | undefined;
|
|
46088
|
-
msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
|
|
46089
|
-
msFlowInto?: csstype.Property.MsFlowInto | undefined;
|
|
46090
|
-
msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
|
|
46091
|
-
msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
|
|
46092
|
-
msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
|
|
46093
|
-
msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
|
|
46094
|
-
msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
|
|
46095
|
-
msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
46096
|
-
msHyphens?: csstype.Property.Hyphens | undefined;
|
|
46097
|
-
msImeAlign?: csstype.Property.MsImeAlign | undefined;
|
|
46098
|
-
msLineBreak?: csstype.Property.LineBreak | undefined;
|
|
46099
|
-
msOrder?: csstype.Property.Order | undefined;
|
|
46100
|
-
msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
|
|
46101
|
-
msOverflowX?: csstype.Property.OverflowX | undefined;
|
|
46102
|
-
msOverflowY?: csstype.Property.OverflowY | undefined;
|
|
46103
|
-
msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
|
|
46104
|
-
msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
|
|
46105
|
-
msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
|
|
46106
|
-
msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
|
|
46107
|
-
msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
|
|
46108
|
-
msScrollRails?: csstype.Property.MsScrollRails | undefined;
|
|
46109
|
-
msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
|
|
46110
|
-
msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
|
|
46111
|
-
msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
|
|
46112
|
-
msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
|
|
46113
|
-
msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
|
|
46114
|
-
msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
|
|
46115
|
-
msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
|
|
46116
|
-
msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
|
|
46117
|
-
msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
|
|
46118
|
-
msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
|
|
46119
|
-
msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
|
|
46120
|
-
msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
|
|
46121
|
-
msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
|
|
46122
|
-
msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
|
|
46123
|
-
msTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
46124
|
-
msTouchAction?: csstype.Property.TouchAction | undefined;
|
|
46125
|
-
msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
|
|
46126
|
-
msTransform?: csstype.Property.Transform | undefined;
|
|
46127
|
-
msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
46128
|
-
msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
46129
|
-
msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
46130
|
-
msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
46131
|
-
msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
46132
|
-
msUserSelect?: csstype.Property.MsUserSelect | undefined;
|
|
46133
|
-
msWordBreak?: csstype.Property.WordBreak | undefined;
|
|
46134
|
-
msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
|
|
46135
|
-
msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
|
|
46136
|
-
msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
|
|
46137
|
-
msWritingMode?: csstype.Property.WritingMode | undefined;
|
|
46138
|
-
WebkitAlignContent?: csstype.Property.AlignContent | undefined;
|
|
46139
|
-
WebkitAlignItems?: csstype.Property.AlignItems | undefined;
|
|
46140
|
-
WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
|
|
46141
|
-
WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
46142
|
-
WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
46143
|
-
WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
46144
|
-
WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
46145
|
-
WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
46146
|
-
WebkitAnimationName?: csstype.Property.AnimationName | undefined;
|
|
46147
|
-
WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
46148
|
-
WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
46149
|
-
WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
|
|
46150
|
-
WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
46151
|
-
WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
46152
|
-
WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
46153
|
-
WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
46154
|
-
WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46155
|
-
WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
|
|
46156
|
-
WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
|
|
46157
|
-
WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
|
|
46158
|
-
WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
46159
|
-
WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
46160
|
-
WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
46161
|
-
WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
46162
|
-
WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
46163
|
-
WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
46164
|
-
WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
|
|
46165
|
-
WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
46166
|
-
WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
46167
|
-
WebkitClipPath?: csstype.Property.ClipPath | undefined;
|
|
46168
|
-
WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
46169
|
-
WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
46170
|
-
WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
46171
|
-
WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
46172
|
-
WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
46173
|
-
WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
46174
|
-
WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
|
|
46175
|
-
WebkitFilter?: csstype.Property.Filter | undefined;
|
|
46176
|
-
WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
46177
|
-
WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
46178
|
-
WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
|
|
46179
|
-
WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
|
|
46180
|
-
WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
|
|
46181
|
-
WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
46182
|
-
WebkitFontKerning?: csstype.Property.FontKerning | undefined;
|
|
46183
|
-
WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
46184
|
-
WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
46185
|
-
WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
46186
|
-
WebkitHyphens?: csstype.Property.Hyphens | undefined;
|
|
46187
|
-
WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
|
|
46188
|
-
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
46189
|
-
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
46190
|
-
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
46191
|
-
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
46192
|
-
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
46193
|
-
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
46194
|
-
WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
46195
|
-
WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
46196
|
-
WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
46197
|
-
WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
|
|
46198
|
-
WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
|
|
46199
|
-
WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
|
|
46200
|
-
WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
|
|
46201
|
-
WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
|
|
46202
|
-
WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
|
|
46203
|
-
WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
|
|
46204
|
-
WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
|
|
46205
|
-
WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
|
|
46206
|
-
WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
|
|
46207
|
-
WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
|
|
46208
|
-
WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
|
|
46209
|
-
WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
|
|
46210
|
-
WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
|
|
46211
|
-
WebkitOrder?: csstype.Property.Order | undefined;
|
|
46212
|
-
WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
|
|
46213
|
-
WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
46214
|
-
WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
46215
|
-
WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
46216
|
-
WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
46217
|
-
WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
46218
|
-
WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
46219
|
-
WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
46220
|
-
WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
46221
|
-
WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
|
|
46222
|
-
WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
|
|
46223
|
-
WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
46224
|
-
WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
46225
|
-
WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
46226
|
-
WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
46227
|
-
WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
46228
|
-
WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
46229
|
-
WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
46230
|
-
WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
|
|
46231
|
-
WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
|
|
46232
|
-
WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
46233
|
-
WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
|
|
46234
|
-
WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
|
|
46235
|
-
WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
46236
|
-
WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
|
|
46237
|
-
WebkitTransform?: csstype.Property.Transform | undefined;
|
|
46238
|
-
WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
46239
|
-
WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
46240
|
-
WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
46241
|
-
WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
46242
|
-
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
46243
|
-
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
46244
|
-
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
46245
|
-
WebkitUserSelect?: csstype.Property.UserSelect | undefined;
|
|
46246
|
-
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
46247
|
-
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
46248
|
-
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
46249
|
-
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
46250
|
-
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
46251
|
-
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
46252
|
-
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
46253
|
-
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
46254
|
-
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
46255
|
-
msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
|
|
46256
|
-
msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
|
|
46257
|
-
msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
|
|
46258
|
-
msTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
46259
|
-
WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
46260
|
-
WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
|
|
46261
|
-
WebkitBorderImage?: csstype.Property.BorderImage | undefined;
|
|
46262
|
-
WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
46263
|
-
WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
46264
|
-
WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
46265
|
-
WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
46266
|
-
WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
|
|
46267
|
-
WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
|
|
46268
|
-
WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
|
|
46269
|
-
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
46270
|
-
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
46271
|
-
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
46272
|
-
azimuth?: csstype.Property.Azimuth | undefined;
|
|
46273
|
-
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
46274
|
-
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
46275
|
-
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
46276
|
-
boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
46277
|
-
boxLines?: csstype.Property.BoxLines | undefined;
|
|
46278
|
-
boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
46279
|
-
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
46280
|
-
boxPack?: csstype.Property.BoxPack | undefined;
|
|
46281
|
-
clip?: csstype.Property.Clip | undefined;
|
|
46282
|
-
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
46283
|
-
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
46284
|
-
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
46285
|
-
imeMode?: csstype.Property.ImeMode | undefined;
|
|
46286
|
-
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
46287
|
-
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
46288
|
-
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
46289
|
-
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
46290
|
-
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
46291
|
-
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
46292
|
-
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
46293
|
-
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
46294
|
-
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
46295
|
-
scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
46296
|
-
scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
|
|
46297
|
-
scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
|
|
46298
|
-
KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
46299
|
-
KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
46300
|
-
KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
46301
|
-
KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
46302
|
-
KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
|
|
46303
|
-
KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
46304
|
-
KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
46305
|
-
KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
|
|
46306
|
-
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
46307
|
-
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
46308
|
-
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
46309
|
-
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
46310
|
-
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
46311
|
-
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
46312
|
-
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46313
|
-
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
46314
|
-
MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
46315
|
-
MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
46316
|
-
MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
46317
|
-
MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
46318
|
-
MozBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
46319
|
-
MozBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
46320
|
-
MozBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
46321
|
-
MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
46322
|
-
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
46323
|
-
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
46324
|
-
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
46325
|
-
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
46326
|
-
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
46327
|
-
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
46328
|
-
MozOutline?: csstype.Property.Outline<string | number> | undefined;
|
|
46329
|
-
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
46330
|
-
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
46331
|
-
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
46332
|
-
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
46333
|
-
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
46334
|
-
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
46335
|
-
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
46336
|
-
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
46337
|
-
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
46338
|
-
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
46339
|
-
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
46340
|
-
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
46341
|
-
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
46342
|
-
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
46343
|
-
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
46344
|
-
OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
46345
|
-
OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
46346
|
-
OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
46347
|
-
OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
46348
|
-
OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
46349
|
-
OAnimationName?: csstype.Property.AnimationName | undefined;
|
|
46350
|
-
OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
46351
|
-
OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
46352
|
-
OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
46353
|
-
OBorderImage?: csstype.Property.BorderImage | undefined;
|
|
46354
|
-
OObjectFit?: csstype.Property.ObjectFit | undefined;
|
|
46355
|
-
OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
46356
|
-
OTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
46357
|
-
OTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
46358
|
-
OTransform?: csstype.Property.Transform | undefined;
|
|
46359
|
-
OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
46360
|
-
OTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
46361
|
-
OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
46362
|
-
OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
46363
|
-
OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
46364
|
-
OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
46365
|
-
WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
46366
|
-
WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
46367
|
-
WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
46368
|
-
WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
46369
|
-
WebkitBoxLines?: csstype.Property.BoxLines | undefined;
|
|
46370
|
-
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
46371
|
-
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
46372
|
-
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
46373
|
-
WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
46374
|
-
WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
46375
|
-
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
46376
|
-
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
46377
|
-
clipRule?: csstype.Property.ClipRule | undefined;
|
|
46378
|
-
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
46379
|
-
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
46380
|
-
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
46381
|
-
fill?: csstype.Property.Fill | undefined;
|
|
46382
|
-
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
46383
|
-
fillRule?: csstype.Property.FillRule | undefined;
|
|
46384
|
-
floodColor?: csstype.Property.FloodColor | undefined;
|
|
46385
|
-
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
46386
|
-
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
46387
|
-
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
46388
|
-
marker?: csstype.Property.Marker | undefined;
|
|
46389
|
-
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
46390
|
-
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
46391
|
-
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
46392
|
-
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
46393
|
-
stopColor?: csstype.Property.StopColor | undefined;
|
|
46394
|
-
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
46395
|
-
stroke?: csstype.Property.Stroke | undefined;
|
|
46396
|
-
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
46397
|
-
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
46398
|
-
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
46399
|
-
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
46400
|
-
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
46401
|
-
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
46402
|
-
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
46403
|
-
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
46404
|
-
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
46405
|
-
};
|
|
46406
|
-
declare const composeShadowCss: ({ hasBoxShadow, boxShadowValue, important, }: {
|
|
46407
|
-
hasBoxShadow?: boolean | undefined;
|
|
46408
|
-
boxShadowValue?: ShadowProps | undefined;
|
|
46409
|
-
important?: boolean | undefined;
|
|
46410
|
-
}) => string | undefined;
|
|
46411
|
-
|
|
46412
|
-
declare const composeSize: (size?: ObjectDevices<SizeProps>) => React.CSSProperties;
|
|
46413
|
-
declare function genSizeClass(name: string): string;
|
|
46414
|
-
declare const composeSizeCss: (spacing?: SizeSetting) => string | undefined;
|
|
46415
|
-
declare const makeGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
46416
|
-
width: Record<ResponsiveKey<"w">, string | number>;
|
|
46417
|
-
height: Record<ResponsiveKey<"h">, string | number>;
|
|
46418
|
-
padding: React.CSSProperties;
|
|
46419
|
-
gap: {
|
|
46420
|
-
'--gg': string | undefined;
|
|
46421
|
-
'--gg-tablet': string | undefined;
|
|
46422
|
-
'--gg-mobile': string | undefined;
|
|
46423
|
-
};
|
|
46424
|
-
};
|
|
46425
|
-
declare const makeGlobalSizeIcon: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
46426
|
-
width: Record<ResponsiveKey<"w">, string | number>;
|
|
46427
|
-
height: Record<ResponsiveKey<"h">, string | number>;
|
|
46428
|
-
minWidth: Record<ResponsiveKey<"minw">, string | number>;
|
|
46429
|
-
padding: React.CSSProperties;
|
|
46430
|
-
};
|
|
46431
|
-
declare const getGlobalSizeGap: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
|
|
46432
|
-
'--gg': string | undefined;
|
|
46433
|
-
'--gg-tablet': string | undefined;
|
|
46434
|
-
'--gg-mobile': string | undefined;
|
|
46435
|
-
};
|
|
46436
|
-
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>;
|
|
46437
|
-
declare const getWidthHeightGlobalSize: (type: 'width' | 'height', globalSize?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string | number>>;
|
|
46438
|
-
declare const getHeightByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string>>;
|
|
46439
|
-
declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean, defaultFull?: boolean) => Partial<Record<NameDevices$1, string>>;
|
|
46440
|
-
declare const getAspectRatioGlobalSize: (shape?: ObjectDevices<SizeSettingGlobal>) => ObjectDevices<string>;
|
|
46441
|
-
declare const getPaddingGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => React.CSSProperties;
|
|
46442
|
-
declare const getValueByDevice: <T>(value: any, device: NameDevices$1) => T;
|
|
46443
|
-
declare const getPaddingStyleByDevice: (value?: PaddingType, device?: NameDevices$1) => {
|
|
46444
|
-
[x: string]: string | undefined;
|
|
46445
|
-
};
|
|
46446
|
-
declare const getResponsiveStylePadding: (value?: ObjectDevices<PaddingType>) => {
|
|
46447
|
-
[x: string]: string | undefined;
|
|
46448
|
-
} | undefined;
|
|
46449
|
-
|
|
46450
|
-
type TypographyClass = `gp-g-${TypographyType}`;
|
|
46451
|
-
declare const genTypoClass: (name: TypographyType) => TypographyClass;
|
|
46452
|
-
declare const composeTypographyCss: (typography: TypographySetting | undefined) => string;
|
|
46453
|
-
declare const composeTypographyV2Css: (typography: TypographySettingV2 | undefined, isImportant?: boolean) => string;
|
|
46454
|
-
declare const composeTextHoverColorCss: (device: NameDevices$1, colorHoverConfig?: ObjectDevices<StateProp<ColorValueType>>, isImportant?: boolean) => string | undefined;
|
|
46455
|
-
declare const composeTypography: (typography?: ObjectDevices<TypographyProps>) => React.CSSProperties;
|
|
46456
|
-
declare const composeTypographyV2: (value?: TypographyV2Props, attrs?: TypographyV2Attrs) => React.CSSProperties;
|
|
46457
|
-
declare const composeFontFamilyTypographyV2: (value?: TypographyV2Props & {
|
|
46458
|
-
type?: string;
|
|
46459
|
-
}) => string | undefined;
|
|
46460
|
-
declare const composeTypographyAttr: (attrs?: TypographyV2Attrs) => React.CSSProperties;
|
|
46461
|
-
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;
|
|
46462
|
-
declare const composeFallbackTypographyStyle: (tag: string) => "var(--g-font-heading, heading)" | "var(--g-font-body, body)";
|
|
46463
|
-
declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?: TypographySetting, disableAttr?: boolean) => {
|
|
44944
|
+
|
|
44945
|
+
type TypographyClass = `gp-g-${TypographyType}`;
|
|
44946
|
+
declare const genTypoClass: (name: TypographyType) => TypographyClass;
|
|
44947
|
+
declare const composeTypographyCss: (typography: TypographySetting | undefined) => string;
|
|
44948
|
+
declare const composeTypographyV2Css: (typography: TypographySettingV2 | undefined, isImportant?: boolean) => string;
|
|
44949
|
+
declare const composeTextHoverColorCss: (device: NameDevices$1, colorHoverConfig?: ObjectDevices<StateProp<ColorValueType>>, isImportant?: boolean) => string | undefined;
|
|
44950
|
+
declare const composeTypography: (typography?: ObjectDevices<TypographyProps>) => React.CSSProperties;
|
|
44951
|
+
declare const composeTypographyV2: (value?: TypographyV2Props, attrs?: TypographyV2Attrs) => React.CSSProperties;
|
|
44952
|
+
declare const composeFontFamilyTypographyV2: (value?: TypographyV2Props & {
|
|
44953
|
+
type?: string;
|
|
44954
|
+
}) => string | undefined;
|
|
44955
|
+
declare const composeTypographyAttr: (attrs?: TypographyV2Attrs) => React.CSSProperties;
|
|
44956
|
+
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;
|
|
44957
|
+
declare const composeFallbackTypographyStyle: (tag: string) => "var(--g-font-heading, heading)" | "var(--g-font-body, body)";
|
|
44958
|
+
declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?: TypographySetting, disableAttr?: boolean) => {
|
|
46464
44959
|
[x: string]: any;
|
|
46465
44960
|
'--ai'?: csstype.Property.AlignItems | undefined;
|
|
46466
44961
|
'--hvr-ai'?: csstype.Property.AlignItems | undefined;
|
|
@@ -47994,8 +46489,8 @@ type ArticlesQueryVariables = Exact$1<{
|
|
|
47994
46489
|
type ArticlesQueryResponse = {
|
|
47995
46490
|
articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
|
|
47996
46491
|
edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
|
|
47997
|
-
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'author'> & {
|
|
47998
|
-
tags
|
|
46492
|
+
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
|
|
46493
|
+
tags?: Maybe$1<Array<Maybe$1<Pick<Tag$1, 'name'>>>>;
|
|
47999
46494
|
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
48000
46495
|
blogs?: Maybe$1<{
|
|
48001
46496
|
edges: Array<{
|
|
@@ -48019,27 +46514,22 @@ type BlogsQueryVariables = Exact$1<{
|
|
|
48019
46514
|
articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
48020
46515
|
}>;
|
|
48021
46516
|
type BlogsQueryResponse = {
|
|
48022
|
-
blogs?: Maybe$1<Pick<BlogConnection$1, 'totalCount'> & {
|
|
48023
|
-
edges: Array<Pick<BlogEdge$1, 'cursor'> & {
|
|
48024
|
-
node?: Maybe$1<Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
|
|
48025
|
-
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
48026
|
-
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
48027
|
-
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | '
|
|
48028
|
-
tags
|
|
46517
|
+
blogs?: Maybe$1<(Pick<BlogConnection$1, 'totalCount'> & {
|
|
46518
|
+
edges: Array<(Pick<BlogEdge$1, 'cursor'> & {
|
|
46519
|
+
node?: Maybe$1<(Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
|
|
46520
|
+
articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
|
|
46521
|
+
edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
|
|
46522
|
+
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
|
|
46523
|
+
tags?: Maybe$1<Array<Maybe$1<Pick<Tag$1, 'name'>>>>;
|
|
48029
46524
|
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
48030
|
-
|
|
48031
|
-
|
|
48032
|
-
|
|
48033
|
-
|
|
48034
|
-
|
|
48035
|
-
|
|
48036
|
-
}>;
|
|
48037
|
-
}>;
|
|
48038
|
-
}>;
|
|
48039
|
-
}>;
|
|
48040
|
-
}>;
|
|
46525
|
+
media?: Maybe$1<Pick<Media$1, 'width' | 'src' | 'height'>>;
|
|
46526
|
+
})>;
|
|
46527
|
+
})>;
|
|
46528
|
+
})>;
|
|
46529
|
+
})>;
|
|
46530
|
+
})>;
|
|
48041
46531
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
48042
|
-
}>;
|
|
46532
|
+
})>;
|
|
48043
46533
|
};
|
|
48044
46534
|
|
|
48045
46535
|
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>;
|
|
@@ -48312,7 +46802,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name'
|
|
|
48312
46802
|
pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
|
|
48313
46803
|
themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
|
|
48314
46804
|
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
48315
|
-
metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'key' | 'value'>>>>;
|
|
46805
|
+
metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'id' | 'key' | 'value'>>>>;
|
|
48316
46806
|
};
|
|
48317
46807
|
|
|
48318
46808
|
declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
|
|
@@ -48335,7 +46825,7 @@ declare const useInteraction: () => {
|
|
|
48335
46825
|
onListener: ({ event, selector, elementRef, }: {
|
|
48336
46826
|
event: string;
|
|
48337
46827
|
selector: string;
|
|
48338
|
-
elementRef?: React.MutableRefObject<HTMLElement> | undefined;
|
|
46828
|
+
elementRef?: React.MutableRefObject<HTMLElement | null | undefined> | undefined;
|
|
48339
46829
|
}, callback: (data: any) => void) => (() => void) | undefined;
|
|
48340
46830
|
trigger: ({ event, data, selector, element: elementParam, }: {
|
|
48341
46831
|
event: string;
|
|
@@ -48343,7 +46833,7 @@ declare const useInteraction: () => {
|
|
|
48343
46833
|
selector: string;
|
|
48344
46834
|
element?: HTMLElement | undefined;
|
|
48345
46835
|
}) => void;
|
|
48346
|
-
saveToElementInteractionData: (element: HTMLElement, key: string, value: string) => void;
|
|
46836
|
+
saveToElementInteractionData: (element: HTMLElement | null | undefined, key: string, value: string | number) => void;
|
|
48347
46837
|
closeSelectOnPage: () => void;
|
|
48348
46838
|
ref: React.MutableRefObject<any>;
|
|
48349
46839
|
findElementIncludingSelf: (element: any, selector: string) => any;
|
|
@@ -48362,4 +46852,4 @@ declare const useInteraction: () => {
|
|
|
48362
46852
|
interactionListenerLoaded: (callback: () => void) => void;
|
|
48363
46853
|
};
|
|
48364
46854
|
|
|
48365
|
-
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 };
|
|
46855
|
+
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, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBgImageSourceByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCornerStyle, 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 };
|