@gem-sdk/core 2.0.0-dev.178 → 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.
Files changed (38) hide show
  1. package/dist/cjs/components/ComponentToolbarPreview.js +7 -7
  2. package/dist/cjs/components/ComponentWrapperPreview.js +2 -2
  3. package/dist/cjs/components/InteractionSuffix.js +6 -6
  4. package/dist/cjs/components/Render.liquid.js +12 -5
  5. package/dist/cjs/components/RenderCustomCode.js +7 -7
  6. package/dist/cjs/components/ai-generator/AIContentGenerator.js +4 -4
  7. package/dist/cjs/components/ai-generator/components/PickProduct.js +4 -4
  8. package/dist/cjs/components/resize/Spacing.js +7 -7
  9. package/dist/cjs/components/theme-section/CreateThemeSection.js +4 -4
  10. package/dist/cjs/contexts/ProductContext.js +12 -1
  11. package/dist/cjs/graphql/fragments/preview-theme-page.generated.js +4 -0
  12. package/dist/cjs/helpers/compose-advance-style.js +5 -9
  13. package/dist/cjs/helpers/interaction/index.js +7 -6
  14. package/dist/cjs/helpers/third-party/appConfig.js +4 -11
  15. package/dist/cjs/helpers/third-party/appSetting.js +32 -33
  16. package/dist/cjs/helpers/third-party/constant.js +1 -2
  17. package/dist/cjs/hooks/useInitialSwatchesOptions.js +2 -3
  18. package/dist/cjs/index.js +1 -1
  19. package/dist/esm/components/ComponentToolbarPreview.js +7 -7
  20. package/dist/esm/components/ComponentWrapperPreview.js +2 -2
  21. package/dist/esm/components/InteractionSuffix.js +6 -6
  22. package/dist/esm/components/Render.liquid.js +12 -5
  23. package/dist/esm/components/RenderCustomCode.js +7 -7
  24. package/dist/esm/components/ai-generator/AIContentGenerator.js +4 -4
  25. package/dist/esm/components/ai-generator/components/PickProduct.js +4 -4
  26. package/dist/esm/components/resize/Spacing.js +7 -7
  27. package/dist/esm/components/theme-section/CreateThemeSection.js +4 -4
  28. package/dist/esm/contexts/ProductContext.js +12 -1
  29. package/dist/esm/graphql/fragments/preview-theme-page.generated.js +4 -0
  30. package/dist/esm/helpers/compose-advance-style.js +5 -9
  31. package/dist/esm/helpers/interaction/index.js +7 -6
  32. package/dist/esm/helpers/third-party/appConfig.js +5 -11
  33. package/dist/esm/helpers/third-party/appSetting.js +32 -33
  34. package/dist/esm/helpers/third-party/constant.js +2 -3
  35. package/dist/esm/hooks/useInitialSwatchesOptions.js +2 -3
  36. package/dist/esm/index.js +1 -1
  37. package/dist/types/index.d.ts +27 -1545
  38. package/package.json +3 -3
@@ -7490,7 +7490,7 @@ type StampedWidgetTypeV2 = 'main-widget' | 'product-rating-image' | 'badge-doubl
7490
7490
  type LaiProductReviewsWidgetType = 'reviews_widget' | 'star_ratings' | 'homepage_reviews' | 'happy_customer_reviews' | 'star_ratings_in_list' | 'advanced_widget';
7491
7491
  type LaiProductReviewsAdvancedWidgetType = 'cardCarousel' | 'testimonialCarousel' | 'mediaGallery' | 'cardGrid';
7492
7492
  type YotpoReviewsWidgetType = 'reviews' | 'star-rating' | 'reviewHighlights';
7493
- 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';
7494
7494
  type PreOrderNowWodWidgetType = 'app-block' | 'popups-block';
7495
7495
  type TagShopWidgetType = 'homeLandingGalleries' | 'productGalleries' | 'tagGalleries';
7496
7496
  type AirProductReview = 'review_box' | 'star_rating' | 'review_carousel';
@@ -8765,6 +8765,7 @@ type PostPurchaseTextareaControlType<T> = SharedControlType<T> & {
8765
8765
  isStrike?: boolean;
8766
8766
  showOn?: 'singleProduct' | 'multiProduct';
8767
8767
  }[];
8768
+ isFallback?: boolean;
8768
8769
  };
8769
8770
 
8770
8771
  type NotesControlType<T> = SharedControlType<T> & {
@@ -9134,7 +9135,7 @@ type BackgroundMediaControlType<T> = SharedControlType<T> & {
9134
9135
  showVideo?: Boolean;
9135
9136
  };
9136
9137
  type BackgroundMedia = {
9137
- type: 'color' | 'image' | 'video';
9138
+ type?: 'color' | 'image' | 'video';
9138
9139
  color?: string;
9139
9140
  image?: {
9140
9141
  src?: string;
@@ -36186,9 +36187,10 @@ type Props = {
36186
36187
  extraFiles?: ExtraFiles;
36187
36188
  pageContext?: PageContext;
36188
36189
  enableLazyloadImage?: boolean;
36190
+ additionalSettings?: Record<string, any>;
36189
36191
  [key: string]: any;
36190
36192
  };
36191
- 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) => {
36192
36194
  liquid: string;
36193
36195
  extraFiles: ExtraFiles;
36194
36196
  };
@@ -36373,6 +36375,11 @@ declare const useProductListStore: <U>(selector: (state: ExtractState<StoreApi<P
36373
36375
 
36374
36376
  type MediaSelectFragment = Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>;
36375
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
+
36376
36383
  type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
36377
36384
  collections?: Maybe$1<{
36378
36385
  edges: Array<{
@@ -36400,6 +36407,17 @@ type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdA
36400
36407
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
36401
36408
  };
36402
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
+
36403
36421
  type AttributeProp = {
36404
36422
  key: string;
36405
36423
  value?: string;
@@ -36550,17 +36568,6 @@ type PageProviderProps = Pick<PageContextProps, 'dynamicProduct' | 'dynamicColle
36550
36568
  declare const PageProvider: React.FC<PageProviderProps>;
36551
36569
  declare const usePageStore: <U>(selector: (state: ExtractState<StoreApi<PageContextProps>>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined) => U;
36552
36570
 
36553
- type CollectionSelectFragment = Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
36554
- products?: Maybe$1<Pick<ProductConnection$1, 'totalCount'> & {
36555
- edges: Array<{
36556
- node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
36557
- featuredImage?: Maybe$1<Pick<Media$1, 'src'>>;
36558
- }>;
36559
- }>;
36560
- }>;
36561
- collectionMedia?: Maybe$1<Pick<CollectionMedia$1, 'src'>>;
36562
- };
36563
-
36564
36571
  type CollectionContextProps = {
36565
36572
  collection?: CollectionSelectFragment;
36566
36573
  changeCollectionStore: (args: {
@@ -36836,6 +36843,7 @@ type PreviewThemePageQueryResponse = {
36836
36843
  analytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
36837
36844
  customCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
36838
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'>>;
36839
36847
  }>;
36840
36848
  };
36841
36849
  declare const PreviewThemePageDocument: string;
@@ -36856,11 +36864,6 @@ type ShopShopifyQueryResponse = {
36856
36864
  };
36857
36865
  declare const ShopShopifyDocument = "\n query shopShopify {\n shopShopify {\n timezone\n }\n}\n ";
36858
36866
 
36859
- 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'> & {
36860
- selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
36861
- media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
36862
- };
36863
-
36864
36867
  type LibraryTemplateQueryVariables = Exact<{
36865
36868
  libraryTemplateId: Scalars['ID'];
36866
36869
  }>;
@@ -40227,1528 +40230,7 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
40227
40230
  textAnchor?: csstype.Property.TextAnchor | undefined;
40228
40231
  vectorEffect?: csstype.Property.VectorEffect | undefined;
40229
40232
  };
40230
- declare const filterCornerInStyle: (style?: React.CSSProperties) => {
40231
- [x: string]: any;
40232
- '--ai'?: csstype.Property.AlignItems | undefined;
40233
- '--hvr-ai'?: csstype.Property.AlignItems | undefined;
40234
- '--focus-ai'?: csstype.Property.AlignItems | undefined;
40235
- '--ai-tablet'?: csstype.Property.AlignItems | undefined;
40236
- '--hvr-ai-tablet'?: csstype.Property.AlignItems | undefined;
40237
- '--focus-ai-tablet'?: csstype.Property.AlignItems | undefined;
40238
- '--ai-mobile'?: csstype.Property.AlignItems | undefined;
40239
- '--hvr-ai-mobile'?: csstype.Property.AlignItems | undefined;
40240
- '--focus-ai-mobile'?: csstype.Property.AlignItems | undefined;
40241
- '--aspect'?: csstype.Property.AspectRatio | undefined;
40242
- '--hvr-aspect'?: csstype.Property.AspectRatio | undefined;
40243
- '--focus-aspect'?: csstype.Property.AspectRatio | undefined;
40244
- '--aspect-tablet'?: csstype.Property.AspectRatio | undefined;
40245
- '--hvr-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
40246
- '--focus-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
40247
- '--aspect-mobile'?: csstype.Property.AspectRatio | undefined;
40248
- '--hvr-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
40249
- '--focus-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
40250
- '--bg'?: csstype.Property.Background<string | number> | undefined;
40251
- '--hvr-bg'?: csstype.Property.Background<string | number> | undefined;
40252
- '--focus-bg'?: csstype.Property.Background<string | number> | undefined;
40253
- '--bg-tablet'?: csstype.Property.Background<string | number> | undefined;
40254
- '--hvr-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
40255
- '--focus-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
40256
- '--bg-mobile'?: csstype.Property.Background<string | number> | undefined;
40257
- '--hvr-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
40258
- '--focus-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
40259
- '--bga'?: csstype.Property.BackgroundAttachment | undefined;
40260
- '--hvr-bga'?: csstype.Property.BackgroundAttachment | undefined;
40261
- '--focus-bga'?: csstype.Property.BackgroundAttachment | undefined;
40262
- '--bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
40263
- '--hvr-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
40264
- '--focus-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
40265
- '--bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
40266
- '--hvr-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
40267
- '--focus-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
40268
- '--bgc'?: csstype.Property.BackgroundColor | undefined;
40269
- '--hvr-bgc'?: csstype.Property.BackgroundColor | undefined;
40270
- '--focus-bgc'?: csstype.Property.BackgroundColor | undefined;
40271
- '--bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
40272
- '--hvr-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
40273
- '--focus-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
40274
- '--bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
40275
- '--hvr-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
40276
- '--focus-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
40277
- '--bgi'?: csstype.Property.BackgroundImage | undefined;
40278
- '--hvr-bgi'?: csstype.Property.BackgroundImage | undefined;
40279
- '--focus-bgi'?: csstype.Property.BackgroundImage | undefined;
40280
- '--bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
40281
- '--hvr-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
40282
- '--focus-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
40283
- '--bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
40284
- '--hvr-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
40285
- '--focus-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
40286
- '--bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40287
- '--hvr-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40288
- '--focus-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40289
- '--bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40290
- '--hvr-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40291
- '--focus-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40292
- '--bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40293
- '--hvr-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40294
- '--focus-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40295
- '--bgr'?: csstype.Property.BackgroundRepeat | undefined;
40296
- '--hvr-bgr'?: csstype.Property.BackgroundRepeat | undefined;
40297
- '--focus-bgr'?: csstype.Property.BackgroundRepeat | undefined;
40298
- '--bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
40299
- '--hvr-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
40300
- '--focus-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
40301
- '--bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
40302
- '--hvr-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
40303
- '--focus-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
40304
- '--bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
40305
- '--hvr-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
40306
- '--focus-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
40307
- '--bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
40308
- '--hvr-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
40309
- '--focus-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
40310
- '--bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
40311
- '--hvr-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
40312
- '--focus-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
40313
- '--b'?: csstype.Property.Border<string | number> | undefined;
40314
- '--hvr-b'?: csstype.Property.Border<string | number> | undefined;
40315
- '--focus-b'?: csstype.Property.Border<string | number> | undefined;
40316
- '--b-tablet'?: csstype.Property.Border<string | number> | undefined;
40317
- '--hvr-b-tablet'?: csstype.Property.Border<string | number> | undefined;
40318
- '--focus-b-tablet'?: csstype.Property.Border<string | number> | undefined;
40319
- '--b-mobile'?: csstype.Property.Border<string | number> | undefined;
40320
- '--hvr-b-mobile'?: csstype.Property.Border<string | number> | undefined;
40321
- '--focus-b-mobile'?: csstype.Property.Border<string | number> | undefined;
40322
- '--bb'?: csstype.Property.BorderBottom<string | number> | undefined;
40323
- '--hvr-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
40324
- '--focus-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
40325
- '--bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
40326
- '--hvr-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
40327
- '--focus-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
40328
- '--bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
40329
- '--hvr-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
40330
- '--focus-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
40331
- '--bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40332
- '--hvr-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40333
- '--focus-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40334
- '--bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40335
- '--hvr-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40336
- '--focus-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40337
- '--bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40338
- '--hvr-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40339
- '--focus-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40340
- '--bbc'?: csstype.Property.BorderBottomColor | undefined;
40341
- '--hvr-bbc'?: csstype.Property.BorderBottomColor | undefined;
40342
- '--focus-bbc'?: csstype.Property.BorderBottomColor | undefined;
40343
- '--bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
40344
- '--hvr-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
40345
- '--focus-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
40346
- '--bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
40347
- '--hvr-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
40348
- '--focus-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
40349
- '--bc'?: csstype.Property.BorderColor | undefined;
40350
- '--hvr-bc'?: csstype.Property.BorderColor | undefined;
40351
- '--focus-bc'?: csstype.Property.BorderColor | undefined;
40352
- '--bc-tablet'?: csstype.Property.BorderColor | undefined;
40353
- '--hvr-bc-tablet'?: csstype.Property.BorderColor | undefined;
40354
- '--focus-bc-tablet'?: csstype.Property.BorderColor | undefined;
40355
- '--bc-mobile'?: csstype.Property.BorderColor | undefined;
40356
- '--hvr-bc-mobile'?: csstype.Property.BorderColor | undefined;
40357
- '--focus-bc-mobile'?: csstype.Property.BorderColor | undefined;
40358
- '--bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40359
- '--hvr-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40360
- '--focus-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40361
- '--bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40362
- '--hvr-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40363
- '--focus-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40364
- '--bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40365
- '--hvr-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40366
- '--focus-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40367
- '--bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40368
- '--hvr-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40369
- '--focus-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40370
- '--bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40371
- '--hvr-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40372
- '--focus-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40373
- '--bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40374
- '--hvr-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40375
- '--focus-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40376
- '--bl'?: csstype.Property.BorderLeft<string | number> | undefined;
40377
- '--hvr-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
40378
- '--focus-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
40379
- '--bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
40380
- '--hvr-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
40381
- '--focus-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
40382
- '--bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
40383
- '--hvr-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
40384
- '--focus-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
40385
- '--radius'?: csstype.Property.BorderRadius<string | number> | undefined;
40386
- '--hvr-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
40387
- '--focus-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
40388
- '--radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
40389
- '--hvr-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
40390
- '--focus-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
40391
- '--radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
40392
- '--hvr-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
40393
- '--focus-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
40394
- '--br'?: csstype.Property.BorderRight<string | number> | undefined;
40395
- '--hvr-br'?: csstype.Property.BorderRight<string | number> | undefined;
40396
- '--focus-br'?: csstype.Property.BorderRight<string | number> | undefined;
40397
- '--br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
40398
- '--hvr-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
40399
- '--focus-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
40400
- '--br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
40401
- '--hvr-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
40402
- '--focus-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
40403
- '--bs'?: csstype.Property.BorderStyle | undefined;
40404
- '--hvr-bs'?: csstype.Property.BorderStyle | undefined;
40405
- '--focus-bs'?: csstype.Property.BorderStyle | undefined;
40406
- '--bs-tablet'?: csstype.Property.BorderStyle | undefined;
40407
- '--hvr-bs-tablet'?: csstype.Property.BorderStyle | undefined;
40408
- '--focus-bs-tablet'?: csstype.Property.BorderStyle | undefined;
40409
- '--bs-mobile'?: csstype.Property.BorderStyle | undefined;
40410
- '--hvr-bs-mobile'?: csstype.Property.BorderStyle | undefined;
40411
- '--focus-bs-mobile'?: csstype.Property.BorderStyle | undefined;
40412
- '--bt'?: csstype.Property.BorderTop<string | number> | undefined;
40413
- '--hvr-bt'?: csstype.Property.BorderTop<string | number> | undefined;
40414
- '--focus-bt'?: csstype.Property.BorderTop<string | number> | undefined;
40415
- '--bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
40416
- '--hvr-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
40417
- '--focus-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
40418
- '--bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
40419
- '--hvr-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
40420
- '--focus-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
40421
- '--btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40422
- '--hvr-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40423
- '--focus-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40424
- '--btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40425
- '--hvr-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40426
- '--focus-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40427
- '--btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40428
- '--hvr-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40429
- '--focus-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40430
- '--btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40431
- '--hvr-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40432
- '--focus-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40433
- '--btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40434
- '--hvr-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40435
- '--focus-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40436
- '--btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40437
- '--hvr-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40438
- '--focus-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40439
- '--bw'?: csstype.Property.BorderWidth<string | number> | undefined;
40440
- '--hvr-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
40441
- '--focus-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
40442
- '--bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
40443
- '--hvr-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
40444
- '--focus-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
40445
- '--bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
40446
- '--hvr-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
40447
- '--focus-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
40448
- '--bottom'?: csstype.Property.Bottom<string | number> | undefined;
40449
- '--hvr-bottom'?: csstype.Property.Bottom<string | number> | undefined;
40450
- '--focus-bottom'?: csstype.Property.Bottom<string | number> | undefined;
40451
- '--bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
40452
- '--hvr-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
40453
- '--focus-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
40454
- '--bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
40455
- '--hvr-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
40456
- '--focus-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
40457
- '--shadow'?: csstype.Property.BoxShadow | undefined;
40458
- '--hvr-shadow'?: csstype.Property.BoxShadow | undefined;
40459
- '--focus-shadow'?: csstype.Property.BoxShadow | undefined;
40460
- '--shadow-tablet'?: csstype.Property.BoxShadow | undefined;
40461
- '--hvr-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
40462
- '--focus-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
40463
- '--shadow-mobile'?: csstype.Property.BoxShadow | undefined;
40464
- '--hvr-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
40465
- '--focus-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
40466
- '--c'?: csstype.Property.Color | undefined;
40467
- '--hvr-c'?: csstype.Property.Color | undefined;
40468
- '--focus-c'?: csstype.Property.Color | undefined;
40469
- '--c-tablet'?: csstype.Property.Color | undefined;
40470
- '--hvr-c-tablet'?: csstype.Property.Color | undefined;
40471
- '--focus-c-tablet'?: csstype.Property.Color | undefined;
40472
- '--c-mobile'?: csstype.Property.Color | undefined;
40473
- '--hvr-c-mobile'?: csstype.Property.Color | undefined;
40474
- '--focus-c-mobile'?: csstype.Property.Color | undefined;
40475
- '--cg'?: csstype.Property.ColumnGap<string | number> | undefined;
40476
- '--hvr-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
40477
- '--focus-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
40478
- '--cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
40479
- '--hvr-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
40480
- '--focus-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
40481
- '--cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
40482
- '--hvr-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
40483
- '--focus-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
40484
- '--d'?: csstype.Property.Display | undefined;
40485
- '--hvr-d'?: csstype.Property.Display | undefined;
40486
- '--focus-d'?: csstype.Property.Display | undefined;
40487
- '--d-tablet'?: csstype.Property.Display | undefined;
40488
- '--hvr-d-tablet'?: csstype.Property.Display | undefined;
40489
- '--focus-d-tablet'?: csstype.Property.Display | undefined;
40490
- '--d-mobile'?: csstype.Property.Display | undefined;
40491
- '--hvr-d-mobile'?: csstype.Property.Display | undefined;
40492
- '--focus-d-mobile'?: csstype.Property.Display | undefined;
40493
- '--fd'?: csstype.Property.FlexDirection | undefined;
40494
- '--hvr-fd'?: csstype.Property.FlexDirection | undefined;
40495
- '--focus-fd'?: csstype.Property.FlexDirection | undefined;
40496
- '--fd-tablet'?: csstype.Property.FlexDirection | undefined;
40497
- '--hvr-fd-tablet'?: csstype.Property.FlexDirection | undefined;
40498
- '--focus-fd-tablet'?: csstype.Property.FlexDirection | undefined;
40499
- '--fd-mobile'?: csstype.Property.FlexDirection | undefined;
40500
- '--hvr-fd-mobile'?: csstype.Property.FlexDirection | undefined;
40501
- '--focus-fd-mobile'?: csstype.Property.FlexDirection | undefined;
40502
- '--ff'?: csstype.Property.FontFamily | undefined;
40503
- '--hvr-ff'?: csstype.Property.FontFamily | undefined;
40504
- '--focus-ff'?: csstype.Property.FontFamily | undefined;
40505
- '--ff-tablet'?: csstype.Property.FontFamily | undefined;
40506
- '--hvr-ff-tablet'?: csstype.Property.FontFamily | undefined;
40507
- '--focus-ff-tablet'?: csstype.Property.FontFamily | undefined;
40508
- '--ff-mobile'?: csstype.Property.FontFamily | undefined;
40509
- '--hvr-ff-mobile'?: csstype.Property.FontFamily | undefined;
40510
- '--focus-ff-mobile'?: csstype.Property.FontFamily | undefined;
40511
- '--size'?: csstype.Property.FontSize<string | number> | undefined;
40512
- '--hvr-size'?: csstype.Property.FontSize<string | number> | undefined;
40513
- '--focus-size'?: csstype.Property.FontSize<string | number> | undefined;
40514
- '--size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
40515
- '--hvr-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
40516
- '--focus-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
40517
- '--size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
40518
- '--hvr-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
40519
- '--focus-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
40520
- '--weight'?: csstype.Property.FontWeight | undefined;
40521
- '--hvr-weight'?: csstype.Property.FontWeight | undefined;
40522
- '--focus-weight'?: csstype.Property.FontWeight | undefined;
40523
- '--weight-tablet'?: csstype.Property.FontWeight | undefined;
40524
- '--hvr-weight-tablet'?: csstype.Property.FontWeight | undefined;
40525
- '--focus-weight-tablet'?: csstype.Property.FontWeight | undefined;
40526
- '--weight-mobile'?: csstype.Property.FontWeight | undefined;
40527
- '--hvr-weight-mobile'?: csstype.Property.FontWeight | undefined;
40528
- '--focus-weight-mobile'?: csstype.Property.FontWeight | undefined;
40529
- '--fs'?: csstype.Property.FontStyle | undefined;
40530
- '--hvr-fs'?: csstype.Property.FontStyle | undefined;
40531
- '--focus-fs'?: csstype.Property.FontStyle | undefined;
40532
- '--fs-tablet'?: csstype.Property.FontStyle | undefined;
40533
- '--hvr-fs-tablet'?: csstype.Property.FontStyle | undefined;
40534
- '--focus-fs-tablet'?: csstype.Property.FontStyle | undefined;
40535
- '--fs-mobile'?: csstype.Property.FontStyle | undefined;
40536
- '--hvr-fs-mobile'?: csstype.Property.FontStyle | undefined;
40537
- '--focus-fs-mobile'?: csstype.Property.FontStyle | undefined;
40538
- '--gg'?: csstype.Property.GridGap<string | number> | undefined;
40539
- '--hvr-gg'?: csstype.Property.GridGap<string | number> | undefined;
40540
- '--focus-gg'?: csstype.Property.GridGap<string | number> | undefined;
40541
- '--gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
40542
- '--hvr-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
40543
- '--focus-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
40544
- '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
40545
- '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
40546
- '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
40547
- '--gr'?: csstype.Property.GridRow | undefined;
40548
- '--hvr-gr'?: csstype.Property.GridRow | undefined;
40549
- '--focus-gr'?: csstype.Property.GridRow | undefined;
40550
- '--gr-tablet'?: csstype.Property.GridRow | undefined;
40551
- '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
40552
- '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
40553
- '--gr-mobile'?: csstype.Property.GridRow | undefined;
40554
- '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
40555
- '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
40556
- '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40557
- '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40558
- '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40559
- '--gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40560
- '--hvr-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40561
- '--focus-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40562
- '--gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40563
- '--hvr-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40564
- '--focus-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40565
- '--gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40566
- '--hvr-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40567
- '--focus-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40568
- '--gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40569
- '--hvr-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40570
- '--focus-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40571
- '--gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40572
- '--hvr-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40573
- '--focus-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40574
- '--h'?: csstype.Property.Height<string | number> | undefined;
40575
- '--hvr-h'?: csstype.Property.Height<string | number> | undefined;
40576
- '--focus-h'?: csstype.Property.Height<string | number> | undefined;
40577
- '--h-tablet'?: csstype.Property.Height<string | number> | undefined;
40578
- '--hvr-h-tablet'?: csstype.Property.Height<string | number> | undefined;
40579
- '--focus-h-tablet'?: csstype.Property.Height<string | number> | undefined;
40580
- '--h-mobile'?: csstype.Property.Height<string | number> | undefined;
40581
- '--hvr-h-mobile'?: csstype.Property.Height<string | number> | undefined;
40582
- '--focus-h-mobile'?: csstype.Property.Height<string | number> | undefined;
40583
- '--jc'?: csstype.Property.JustifyContent | undefined;
40584
- '--hvr-jc'?: csstype.Property.JustifyContent | undefined;
40585
- '--focus-jc'?: csstype.Property.JustifyContent | undefined;
40586
- '--jc-tablet'?: csstype.Property.JustifyContent | undefined;
40587
- '--hvr-jc-tablet'?: csstype.Property.JustifyContent | undefined;
40588
- '--focus-jc-tablet'?: csstype.Property.JustifyContent | undefined;
40589
- '--jc-mobile'?: csstype.Property.JustifyContent | undefined;
40590
- '--hvr-jc-mobile'?: csstype.Property.JustifyContent | undefined;
40591
- '--focus-jc-mobile'?: csstype.Property.JustifyContent | undefined;
40592
- '--left'?: csstype.Property.Left<string | number> | undefined;
40593
- '--hvr-left'?: csstype.Property.Left<string | number> | undefined;
40594
- '--focus-left'?: csstype.Property.Left<string | number> | undefined;
40595
- '--left-tablet'?: csstype.Property.Left<string | number> | undefined;
40596
- '--hvr-left-tablet'?: csstype.Property.Left<string | number> | undefined;
40597
- '--focus-left-tablet'?: csstype.Property.Left<string | number> | undefined;
40598
- '--left-mobile'?: csstype.Property.Left<string | number> | undefined;
40599
- '--hvr-left-mobile'?: csstype.Property.Left<string | number> | undefined;
40600
- '--focus-left-mobile'?: csstype.Property.Left<string | number> | undefined;
40601
- '--ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
40602
- '--hvr-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
40603
- '--focus-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
40604
- '--ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
40605
- '--hvr-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
40606
- '--focus-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
40607
- '--ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
40608
- '--hvr-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
40609
- '--focus-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
40610
- '--line-clamp'?: any;
40611
- '--hvr-line-clamp'?: any;
40612
- '--focus-line-clamp'?: any;
40613
- '--line-clamp-tablet'?: any;
40614
- '--hvr-line-clamp-tablet'?: any;
40615
- '--focus-line-clamp-tablet'?: any;
40616
- '--line-clamp-mobile'?: any;
40617
- '--hvr-line-clamp-mobile'?: any;
40618
- '--focus-line-clamp-mobile'?: any;
40619
- '--lh'?: csstype.Property.LineHeight<string | number> | undefined;
40620
- '--hvr-lh'?: csstype.Property.LineHeight<string | number> | undefined;
40621
- '--focus-lh'?: csstype.Property.LineHeight<string | number> | undefined;
40622
- '--lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
40623
- '--hvr-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
40624
- '--focus-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
40625
- '--lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
40626
- '--hvr-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
40627
- '--focus-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
40628
- '--tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40629
- '--hvr-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40630
- '--focus-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40631
- '--tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40632
- '--hvr-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40633
- '--focus-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40634
- '--tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40635
- '--hvr-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40636
- '--focus-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40637
- '--tdc'?: csstype.Property.TextDecorationColor | undefined;
40638
- '--hvr-tdc'?: csstype.Property.TextDecorationColor | undefined;
40639
- '--focus-tdc'?: csstype.Property.TextDecorationColor | undefined;
40640
- '--tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
40641
- '--hvr-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
40642
- '--focus-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
40643
- '--tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
40644
- '--hvr-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
40645
- '--focus-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
40646
- '--tdl'?: csstype.Property.TextDecorationLine | undefined;
40647
- '--hvr-tdl'?: csstype.Property.TextDecorationLine | undefined;
40648
- '--focus-tdl'?: csstype.Property.TextDecorationLine | undefined;
40649
- '--tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
40650
- '--hvr-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
40651
- '--focus-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
40652
- '--tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
40653
- '--hvr-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
40654
- '--focus-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
40655
- '--m'?: csstype.Property.Margin<string | number> | undefined;
40656
- '--hvr-m'?: csstype.Property.Margin<string | number> | undefined;
40657
- '--focus-m'?: csstype.Property.Margin<string | number> | undefined;
40658
- '--m-tablet'?: csstype.Property.Margin<string | number> | undefined;
40659
- '--hvr-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
40660
- '--focus-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
40661
- '--m-mobile'?: csstype.Property.Margin<string | number> | undefined;
40662
- '--hvr-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
40663
- '--focus-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
40664
- '--mb'?: csstype.Property.MarginBottom<string | number> | undefined;
40665
- '--hvr-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
40666
- '--focus-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
40667
- '--mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
40668
- '--hvr-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
40669
- '--focus-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
40670
- '--mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
40671
- '--hvr-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
40672
- '--focus-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
40673
- '--ml'?: csstype.Property.MarginLeft<string | number> | undefined;
40674
- '--hvr-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
40675
- '--focus-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
40676
- '--ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
40677
- '--hvr-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
40678
- '--focus-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
40679
- '--ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
40680
- '--hvr-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
40681
- '--focus-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
40682
- '--mr'?: csstype.Property.MarginRight<string | number> | undefined;
40683
- '--hvr-mr'?: csstype.Property.MarginRight<string | number> | undefined;
40684
- '--focus-mr'?: csstype.Property.MarginRight<string | number> | undefined;
40685
- '--mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
40686
- '--hvr-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
40687
- '--focus-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
40688
- '--mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
40689
- '--hvr-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
40690
- '--focus-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
40691
- '--mt'?: csstype.Property.MarginTop<string | number> | undefined;
40692
- '--hvr-mt'?: csstype.Property.MarginTop<string | number> | undefined;
40693
- '--focus-mt'?: csstype.Property.MarginTop<string | number> | undefined;
40694
- '--mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
40695
- '--hvr-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
40696
- '--focus-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
40697
- '--mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
40698
- '--hvr-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
40699
- '--focus-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
40700
- '--maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
40701
- '--hvr-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
40702
- '--focus-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
40703
- '--maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
40704
- '--hvr-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
40705
- '--focus-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
40706
- '--maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
40707
- '--hvr-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
40708
- '--focus-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
40709
- '--maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
40710
- '--hvr-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
40711
- '--focus-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
40712
- '--maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
40713
- '--hvr-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
40714
- '--focus-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
40715
- '--maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
40716
- '--hvr-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
40717
- '--focus-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
40718
- '--minh'?: csstype.Property.MinHeight<string | number> | undefined;
40719
- '--hvr-minh'?: csstype.Property.MinHeight<string | number> | undefined;
40720
- '--focus-minh'?: csstype.Property.MinHeight<string | number> | undefined;
40721
- '--minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
40722
- '--hvr-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
40723
- '--focus-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
40724
- '--minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
40725
- '--hvr-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
40726
- '--focus-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
40727
- '--minw'?: csstype.Property.MinWidth<string | number> | undefined;
40728
- '--hvr-minw'?: csstype.Property.MinWidth<string | number> | undefined;
40729
- '--focus-minw'?: csstype.Property.MinWidth<string | number> | undefined;
40730
- '--minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
40731
- '--hvr-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
40732
- '--focus-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
40733
- '--minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
40734
- '--hvr-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
40735
- '--focus-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
40736
- '--objf'?: csstype.Property.ObjectFit | undefined;
40737
- '--hvr-objf'?: csstype.Property.ObjectFit | undefined;
40738
- '--focus-objf'?: csstype.Property.ObjectFit | undefined;
40739
- '--objf-tablet'?: csstype.Property.ObjectFit | undefined;
40740
- '--hvr-objf-tablet'?: csstype.Property.ObjectFit | undefined;
40741
- '--focus-objf-tablet'?: csstype.Property.ObjectFit | undefined;
40742
- '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
40743
- '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
40744
- '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
40745
- '--op'?: csstype.Property.Opacity | undefined;
40746
- '--hvr-op'?: csstype.Property.Opacity | undefined;
40747
- '--focus-op'?: csstype.Property.Opacity | undefined;
40748
- '--op-tablet'?: csstype.Property.Opacity | undefined;
40749
- '--hvr-op-tablet'?: csstype.Property.Opacity | undefined;
40750
- '--focus-op-tablet'?: csstype.Property.Opacity | undefined;
40751
- '--op-mobile'?: csstype.Property.Opacity | undefined;
40752
- '--hvr-op-mobile'?: csstype.Property.Opacity | undefined;
40753
- '--focus-op-mobile'?: csstype.Property.Opacity | undefined;
40754
- '--o'?: csstype.Property.Order | undefined;
40755
- '--hvr-o'?: csstype.Property.Order | undefined;
40756
- '--focus-o'?: csstype.Property.Order | undefined;
40757
- '--o-tablet'?: csstype.Property.Order | undefined;
40758
- '--hvr-o-tablet'?: csstype.Property.Order | undefined;
40759
- '--focus-o-tablet'?: csstype.Property.Order | undefined;
40760
- '--o-mobile'?: csstype.Property.Order | undefined;
40761
- '--hvr-o-mobile'?: csstype.Property.Order | undefined;
40762
- '--focus-o-mobile'?: csstype.Property.Order | undefined;
40763
- '--pc'?: csstype.Property.PlaceContent | undefined;
40764
- '--hvr-pc'?: csstype.Property.PlaceContent | undefined;
40765
- '--focus-pc'?: csstype.Property.PlaceContent | undefined;
40766
- '--pc-tablet'?: csstype.Property.PlaceContent | undefined;
40767
- '--hvr-pc-tablet'?: csstype.Property.PlaceContent | undefined;
40768
- '--focus-pc-tablet'?: csstype.Property.PlaceContent | undefined;
40769
- '--pc-mobile'?: csstype.Property.PlaceContent | undefined;
40770
- '--hvr-pc-mobile'?: csstype.Property.PlaceContent | undefined;
40771
- '--focus-pc-mobile'?: csstype.Property.PlaceContent | undefined;
40772
- '--p'?: csstype.Property.Padding<string | number> | undefined;
40773
- '--hvr-p'?: csstype.Property.Padding<string | number> | undefined;
40774
- '--focus-p'?: csstype.Property.Padding<string | number> | undefined;
40775
- '--p-tablet'?: csstype.Property.Padding<string | number> | undefined;
40776
- '--hvr-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
40777
- '--focus-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
40778
- '--p-mobile'?: csstype.Property.Padding<string | number> | undefined;
40779
- '--hvr-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
40780
- '--focus-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
40781
- '--pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
40782
- '--hvr-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
40783
- '--focus-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
40784
- '--pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
40785
- '--hvr-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
40786
- '--focus-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
40787
- '--pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
40788
- '--hvr-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
40789
- '--focus-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
40790
- '--pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
40791
- '--hvr-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
40792
- '--focus-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
40793
- '--pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
40794
- '--hvr-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
40795
- '--focus-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
40796
- '--pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
40797
- '--hvr-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
40798
- '--focus-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
40799
- '--pr'?: csstype.Property.PaddingRight<string | number> | undefined;
40800
- '--hvr-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
40801
- '--focus-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
40802
- '--pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
40803
- '--hvr-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
40804
- '--focus-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
40805
- '--pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
40806
- '--hvr-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
40807
- '--focus-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
40808
- '--pt'?: csstype.Property.PaddingTop<string | number> | undefined;
40809
- '--hvr-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
40810
- '--focus-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
40811
- '--pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
40812
- '--hvr-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
40813
- '--focus-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
40814
- '--pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
40815
- '--hvr-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
40816
- '--focus-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
40817
- '--pe'?: csstype.Property.PointerEvents | undefined;
40818
- '--hvr-pe'?: csstype.Property.PointerEvents | undefined;
40819
- '--focus-pe'?: csstype.Property.PointerEvents | undefined;
40820
- '--pe-tablet'?: csstype.Property.PointerEvents | undefined;
40821
- '--hvr-pe-tablet'?: csstype.Property.PointerEvents | undefined;
40822
- '--focus-pe-tablet'?: csstype.Property.PointerEvents | undefined;
40823
- '--pe-mobile'?: csstype.Property.PointerEvents | undefined;
40824
- '--hvr-pe-mobile'?: csstype.Property.PointerEvents | undefined;
40825
- '--focus-pe-mobile'?: csstype.Property.PointerEvents | undefined;
40826
- '--pos'?: csstype.Property.Position | undefined;
40827
- '--hvr-pos'?: csstype.Property.Position | undefined;
40828
- '--focus-pos'?: csstype.Property.Position | undefined;
40829
- '--pos-tablet'?: csstype.Property.Position | undefined;
40830
- '--hvr-pos-tablet'?: csstype.Property.Position | undefined;
40831
- '--focus-pos-tablet'?: csstype.Property.Position | undefined;
40832
- '--pos-mobile'?: csstype.Property.Position | undefined;
40833
- '--hvr-pos-mobile'?: csstype.Property.Position | undefined;
40834
- '--focus-pos-mobile'?: csstype.Property.Position | undefined;
40835
- '--right'?: csstype.Property.Right<string | number> | undefined;
40836
- '--hvr-right'?: csstype.Property.Right<string | number> | undefined;
40837
- '--focus-right'?: csstype.Property.Right<string | number> | undefined;
40838
- '--right-tablet'?: csstype.Property.Right<string | number> | undefined;
40839
- '--hvr-right-tablet'?: csstype.Property.Right<string | number> | undefined;
40840
- '--focus-right-tablet'?: csstype.Property.Right<string | number> | undefined;
40841
- '--right-mobile'?: csstype.Property.Right<string | number> | undefined;
40842
- '--hvr-right-mobile'?: csstype.Property.Right<string | number> | undefined;
40843
- '--focus-right-mobile'?: csstype.Property.Right<string | number> | undefined;
40844
- '--rg'?: csstype.Property.RowGap<string | number> | undefined;
40845
- '--hvr-rg'?: csstype.Property.RowGap<string | number> | undefined;
40846
- '--focus-rg'?: csstype.Property.RowGap<string | number> | undefined;
40847
- '--rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
40848
- '--hvr-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
40849
- '--focus-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
40850
- '--rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
40851
- '--hvr-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
40852
- '--focus-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
40853
- '--ta'?: csstype.Property.TextAlign | undefined;
40854
- '--hvr-ta'?: csstype.Property.TextAlign | undefined;
40855
- '--focus-ta'?: csstype.Property.TextAlign | undefined;
40856
- '--ta-tablet'?: csstype.Property.TextAlign | undefined;
40857
- '--hvr-ta-tablet'?: csstype.Property.TextAlign | undefined;
40858
- '--focus-ta-tablet'?: csstype.Property.TextAlign | undefined;
40859
- '--ta-mobile'?: csstype.Property.TextAlign | undefined;
40860
- '--hvr-ta-mobile'?: csstype.Property.TextAlign | undefined;
40861
- '--focus-ta-mobile'?: csstype.Property.TextAlign | undefined;
40862
- '--ts'?: csstype.Property.TextShadow | undefined;
40863
- '--hvr-ts'?: csstype.Property.TextShadow | undefined;
40864
- '--focus-ts'?: csstype.Property.TextShadow | undefined;
40865
- '--ts-tablet'?: csstype.Property.TextShadow | undefined;
40866
- '--hvr-ts-tablet'?: csstype.Property.TextShadow | undefined;
40867
- '--focus-ts-tablet'?: csstype.Property.TextShadow | undefined;
40868
- '--ts-mobile'?: csstype.Property.TextShadow | undefined;
40869
- '--hvr-ts-mobile'?: csstype.Property.TextShadow | undefined;
40870
- '--focus-ts-mobile'?: csstype.Property.TextShadow | undefined;
40871
- '--tt'?: csstype.Property.TextTransform | undefined;
40872
- '--hvr-tt'?: csstype.Property.TextTransform | undefined;
40873
- '--focus-tt'?: csstype.Property.TextTransform | undefined;
40874
- '--tt-tablet'?: csstype.Property.TextTransform | undefined;
40875
- '--hvr-tt-tablet'?: csstype.Property.TextTransform | undefined;
40876
- '--focus-tt-tablet'?: csstype.Property.TextTransform | undefined;
40877
- '--tt-mobile'?: csstype.Property.TextTransform | undefined;
40878
- '--hvr-tt-mobile'?: csstype.Property.TextTransform | undefined;
40879
- '--focus-tt-mobile'?: csstype.Property.TextTransform | undefined;
40880
- '--top'?: csstype.Property.Top<string | number> | undefined;
40881
- '--hvr-top'?: csstype.Property.Top<string | number> | undefined;
40882
- '--focus-top'?: csstype.Property.Top<string | number> | undefined;
40883
- '--top-tablet'?: csstype.Property.Top<string | number> | undefined;
40884
- '--hvr-top-tablet'?: csstype.Property.Top<string | number> | undefined;
40885
- '--focus-top-tablet'?: csstype.Property.Top<string | number> | undefined;
40886
- '--top-mobile'?: csstype.Property.Top<string | number> | undefined;
40887
- '--hvr-top-mobile'?: csstype.Property.Top<string | number> | undefined;
40888
- '--focus-top-mobile'?: csstype.Property.Top<string | number> | undefined;
40889
- '--t'?: csstype.Property.Transform | undefined;
40890
- '--hvr-t'?: csstype.Property.Transform | undefined;
40891
- '--focus-t'?: csstype.Property.Transform | undefined;
40892
- '--t-tablet'?: csstype.Property.Transform | undefined;
40893
- '--hvr-t-tablet'?: csstype.Property.Transform | undefined;
40894
- '--focus-t-tablet'?: csstype.Property.Transform | undefined;
40895
- '--t-mobile'?: csstype.Property.Transform | undefined;
40896
- '--hvr-t-mobile'?: csstype.Property.Transform | undefined;
40897
- '--focus-t-mobile'?: csstype.Property.Transform | undefined;
40898
- '--v'?: csstype.Property.Visibility | undefined;
40899
- '--hvr-v'?: csstype.Property.Visibility | undefined;
40900
- '--focus-v'?: csstype.Property.Visibility | undefined;
40901
- '--v-tablet'?: csstype.Property.Visibility | undefined;
40902
- '--hvr-v-tablet'?: csstype.Property.Visibility | undefined;
40903
- '--focus-v-tablet'?: csstype.Property.Visibility | undefined;
40904
- '--v-mobile'?: csstype.Property.Visibility | undefined;
40905
- '--hvr-v-mobile'?: csstype.Property.Visibility | undefined;
40906
- '--focus-v-mobile'?: csstype.Property.Visibility | undefined;
40907
- '--ws'?: csstype.Property.WhiteSpace | undefined;
40908
- '--hvr-ws'?: csstype.Property.WhiteSpace | undefined;
40909
- '--focus-ws'?: csstype.Property.WhiteSpace | undefined;
40910
- '--ws-tablet'?: csstype.Property.WhiteSpace | undefined;
40911
- '--hvr-ws-tablet'?: csstype.Property.WhiteSpace | undefined;
40912
- '--focus-ws-tablet'?: csstype.Property.WhiteSpace | undefined;
40913
- '--ws-mobile'?: csstype.Property.WhiteSpace | undefined;
40914
- '--hvr-ws-mobile'?: csstype.Property.WhiteSpace | undefined;
40915
- '--focus-ws-mobile'?: csstype.Property.WhiteSpace | undefined;
40916
- '--w'?: csstype.Property.Width<string | number> | undefined;
40917
- '--hvr-w'?: csstype.Property.Width<string | number> | undefined;
40918
- '--focus-w'?: csstype.Property.Width<string | number> | undefined;
40919
- '--w-tablet'?: csstype.Property.Width<string | number> | undefined;
40920
- '--hvr-w-tablet'?: csstype.Property.Width<string | number> | undefined;
40921
- '--focus-w-tablet'?: csstype.Property.Width<string | number> | undefined;
40922
- '--w-mobile'?: csstype.Property.Width<string | number> | undefined;
40923
- '--hvr-w-mobile'?: csstype.Property.Width<string | number> | undefined;
40924
- '--focus-w-mobile'?: csstype.Property.Width<string | number> | undefined;
40925
- '--z'?: csstype.Property.ZIndex | undefined;
40926
- '--hvr-z'?: csstype.Property.ZIndex | undefined;
40927
- '--focus-z'?: csstype.Property.ZIndex | undefined;
40928
- '--z-tablet'?: csstype.Property.ZIndex | undefined;
40929
- '--hvr-z-tablet'?: csstype.Property.ZIndex | undefined;
40930
- '--focus-z-tablet'?: csstype.Property.ZIndex | undefined;
40931
- '--z-mobile'?: csstype.Property.ZIndex | undefined;
40932
- '--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
40933
- '--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
40934
- '--wm'?: csstype.Property.WritingMode | undefined;
40935
- '--hvr-wm'?: csstype.Property.WritingMode | undefined;
40936
- '--focus-wm'?: csstype.Property.WritingMode | undefined;
40937
- '--wm-tablet'?: csstype.Property.WritingMode | undefined;
40938
- '--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
40939
- '--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
40940
- '--wm-mobile'?: csstype.Property.WritingMode | undefined;
40941
- '--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
40942
- '--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
40943
- accentColor?: csstype.Property.AccentColor | undefined;
40944
- alignContent?: csstype.Property.AlignContent | undefined;
40945
- alignItems?: csstype.Property.AlignItems | undefined;
40946
- alignSelf?: csstype.Property.AlignSelf | undefined;
40947
- alignTracks?: csstype.Property.AlignTracks | undefined;
40948
- animationComposition?: csstype.Property.AnimationComposition | undefined;
40949
- animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
40950
- animationDirection?: csstype.Property.AnimationDirection | undefined;
40951
- animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
40952
- animationFillMode?: csstype.Property.AnimationFillMode | undefined;
40953
- animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
40954
- animationName?: csstype.Property.AnimationName | undefined;
40955
- animationPlayState?: csstype.Property.AnimationPlayState | undefined;
40956
- animationTimeline?: csstype.Property.AnimationTimeline | undefined;
40957
- animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
40958
- appearance?: csstype.Property.Appearance | undefined;
40959
- aspectRatio?: csstype.Property.AspectRatio | undefined;
40960
- backdropFilter?: csstype.Property.BackdropFilter | undefined;
40961
- backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
40962
- backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
40963
- backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
40964
- backgroundClip?: csstype.Property.BackgroundClip | undefined;
40965
- backgroundColor?: csstype.Property.BackgroundColor | undefined;
40966
- backgroundImage?: csstype.Property.BackgroundImage | undefined;
40967
- backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
40968
- backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
40969
- backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
40970
- backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
40971
- backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
40972
- blockOverflow?: csstype.Property.BlockOverflow | undefined;
40973
- blockSize?: csstype.Property.BlockSize<string | number> | undefined;
40974
- borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
40975
- borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
40976
- borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
40977
- borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
40978
- borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
40979
- borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
40980
- borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
40981
- borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
40982
- borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
40983
- borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
40984
- borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40985
- borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40986
- borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
40987
- borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40988
- borderCollapse?: csstype.Property.BorderCollapse | undefined;
40989
- borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
40990
- borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
40991
- borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
40992
- borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
40993
- borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
40994
- borderImageSource?: csstype.Property.BorderImageSource | undefined;
40995
- borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
40996
- borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
40997
- borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
40998
- borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
40999
- borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
41000
- borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
41001
- borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
41002
- borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
41003
- borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
41004
- borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
41005
- borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
41006
- borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
41007
- borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
41008
- borderRightColor?: csstype.Property.BorderRightColor | undefined;
41009
- borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
41010
- borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
41011
- borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
41012
- borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
41013
- borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
41014
- borderTopColor?: csstype.Property.BorderTopColor | undefined;
41015
- borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
41016
- borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
41017
- borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
41018
- borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
41019
- bottom?: csstype.Property.Bottom<string | number> | undefined;
41020
- boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
41021
- boxShadow?: csstype.Property.BoxShadow | undefined;
41022
- boxSizing?: csstype.Property.BoxSizing | undefined;
41023
- breakAfter?: csstype.Property.BreakAfter | undefined;
41024
- breakBefore?: csstype.Property.BreakBefore | undefined;
41025
- breakInside?: csstype.Property.BreakInside | undefined;
41026
- captionSide?: csstype.Property.CaptionSide | undefined;
41027
- caretColor?: csstype.Property.CaretColor | undefined;
41028
- caretShape?: csstype.Property.CaretShape | undefined;
41029
- clear?: csstype.Property.Clear | undefined;
41030
- clipPath?: csstype.Property.ClipPath | undefined;
41031
- color?: csstype.Property.Color | undefined;
41032
- colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
41033
- colorScheme?: csstype.Property.ColorScheme | undefined;
41034
- columnCount?: csstype.Property.ColumnCount | undefined;
41035
- columnFill?: csstype.Property.ColumnFill | undefined;
41036
- columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
41037
- columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
41038
- columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
41039
- columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
41040
- columnSpan?: csstype.Property.ColumnSpan | undefined;
41041
- columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
41042
- contain?: csstype.Property.Contain | undefined;
41043
- containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
41044
- containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
41045
- containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
41046
- containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
41047
- containerName?: csstype.Property.ContainerName | undefined;
41048
- containerType?: csstype.Property.ContainerType | undefined;
41049
- content?: csstype.Property.Content | undefined;
41050
- contentVisibility?: csstype.Property.ContentVisibility | undefined;
41051
- counterIncrement?: csstype.Property.CounterIncrement | undefined;
41052
- counterReset?: csstype.Property.CounterReset | undefined;
41053
- counterSet?: csstype.Property.CounterSet | undefined;
41054
- cursor?: csstype.Property.Cursor | undefined;
41055
- direction?: csstype.Property.Direction | undefined;
41056
- display?: csstype.Property.Display | undefined;
41057
- emptyCells?: csstype.Property.EmptyCells | undefined;
41058
- filter?: csstype.Property.Filter | undefined;
41059
- flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
41060
- flexDirection?: csstype.Property.FlexDirection | undefined;
41061
- flexGrow?: csstype.Property.FlexGrow | undefined;
41062
- flexShrink?: csstype.Property.FlexShrink | undefined;
41063
- flexWrap?: csstype.Property.FlexWrap | undefined;
41064
- float?: csstype.Property.Float | undefined;
41065
- fontFamily?: csstype.Property.FontFamily | undefined;
41066
- fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
41067
- fontKerning?: csstype.Property.FontKerning | undefined;
41068
- fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
41069
- fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
41070
- fontPalette?: csstype.Property.FontPalette | undefined;
41071
- fontSize?: csstype.Property.FontSize<string | number> | undefined;
41072
- fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
41073
- fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
41074
- fontStretch?: csstype.Property.FontStretch | undefined;
41075
- fontStyle?: csstype.Property.FontStyle | undefined;
41076
- fontSynthesis?: csstype.Property.FontSynthesis | undefined;
41077
- fontVariant?: csstype.Property.FontVariant | undefined;
41078
- fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
41079
- fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
41080
- fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
41081
- fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
41082
- fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
41083
- fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
41084
- fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
41085
- fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
41086
- fontWeight?: csstype.Property.FontWeight | undefined;
41087
- forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
41088
- gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
41089
- gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
41090
- gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
41091
- gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
41092
- gridColumnStart?: csstype.Property.GridColumnStart | undefined;
41093
- gridRowEnd?: csstype.Property.GridRowEnd | undefined;
41094
- gridRowStart?: csstype.Property.GridRowStart | undefined;
41095
- gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
41096
- gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
41097
- gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
41098
- hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
41099
- height?: csstype.Property.Height<string | number> | undefined;
41100
- hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
41101
- hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
41102
- hyphens?: csstype.Property.Hyphens | undefined;
41103
- imageOrientation?: csstype.Property.ImageOrientation | undefined;
41104
- imageRendering?: csstype.Property.ImageRendering | undefined;
41105
- imageResolution?: csstype.Property.ImageResolution | undefined;
41106
- initialLetter?: csstype.Property.InitialLetter | undefined;
41107
- inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
41108
- inputSecurity?: csstype.Property.InputSecurity | undefined;
41109
- insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
41110
- insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
41111
- insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
41112
- insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
41113
- isolation?: csstype.Property.Isolation | undefined;
41114
- justifyContent?: csstype.Property.JustifyContent | undefined;
41115
- justifyItems?: csstype.Property.JustifyItems | undefined;
41116
- justifySelf?: csstype.Property.JustifySelf | undefined;
41117
- justifyTracks?: csstype.Property.JustifyTracks | undefined;
41118
- left?: csstype.Property.Left<string | number> | undefined;
41119
- letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
41120
- lineBreak?: csstype.Property.LineBreak | undefined;
41121
- lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
41122
- lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
41123
- listStyleImage?: csstype.Property.ListStyleImage | undefined;
41124
- listStylePosition?: csstype.Property.ListStylePosition | undefined;
41125
- listStyleType?: csstype.Property.ListStyleType | undefined;
41126
- marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
41127
- marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
41128
- marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
41129
- marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
41130
- marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
41131
- marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
41132
- marginRight?: csstype.Property.MarginRight<string | number> | undefined;
41133
- marginTop?: csstype.Property.MarginTop<string | number> | undefined;
41134
- marginTrim?: csstype.Property.MarginTrim | undefined;
41135
- maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
41136
- maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
41137
- maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
41138
- maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
41139
- maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
41140
- maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
41141
- maskClip?: csstype.Property.MaskClip | undefined;
41142
- maskComposite?: csstype.Property.MaskComposite | undefined;
41143
- maskImage?: csstype.Property.MaskImage | undefined;
41144
- maskMode?: csstype.Property.MaskMode | undefined;
41145
- maskOrigin?: csstype.Property.MaskOrigin | undefined;
41146
- maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
41147
- maskRepeat?: csstype.Property.MaskRepeat | undefined;
41148
- maskSize?: csstype.Property.MaskSize<string | number> | undefined;
41149
- maskType?: csstype.Property.MaskType | undefined;
41150
- mathDepth?: csstype.Property.MathDepth | undefined;
41151
- mathShift?: csstype.Property.MathShift | undefined;
41152
- mathStyle?: csstype.Property.MathStyle | undefined;
41153
- maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
41154
- maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
41155
- maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
41156
- maxLines?: csstype.Property.MaxLines | undefined;
41157
- maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
41158
- minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
41159
- minHeight?: csstype.Property.MinHeight<string | number> | undefined;
41160
- minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
41161
- minWidth?: csstype.Property.MinWidth<string | number> | undefined;
41162
- mixBlendMode?: csstype.Property.MixBlendMode | undefined;
41163
- motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
41164
- motionPath?: csstype.Property.OffsetPath | undefined;
41165
- motionRotation?: csstype.Property.OffsetRotate | undefined;
41166
- objectFit?: csstype.Property.ObjectFit | undefined;
41167
- objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
41168
- offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
41169
- offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
41170
- offsetPath?: csstype.Property.OffsetPath | undefined;
41171
- offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
41172
- offsetRotate?: csstype.Property.OffsetRotate | undefined;
41173
- offsetRotation?: csstype.Property.OffsetRotate | undefined;
41174
- opacity?: csstype.Property.Opacity | undefined;
41175
- order?: csstype.Property.Order | undefined;
41176
- orphans?: csstype.Property.Orphans | undefined;
41177
- outlineColor?: csstype.Property.OutlineColor | undefined;
41178
- outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
41179
- outlineStyle?: csstype.Property.OutlineStyle | undefined;
41180
- outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
41181
- overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
41182
- overflowBlock?: csstype.Property.OverflowBlock | undefined;
41183
- overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
41184
- overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
41185
- overflowInline?: csstype.Property.OverflowInline | undefined;
41186
- overflowWrap?: csstype.Property.OverflowWrap | undefined;
41187
- overflowX?: csstype.Property.OverflowX | undefined;
41188
- overflowY?: csstype.Property.OverflowY | undefined;
41189
- overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
41190
- overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
41191
- overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
41192
- overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
41193
- paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
41194
- paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
41195
- paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
41196
- paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
41197
- paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
41198
- paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
41199
- paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
41200
- paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
41201
- page?: csstype.Property.Page | undefined;
41202
- pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
41203
- pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
41204
- pageBreakInside?: csstype.Property.PageBreakInside | undefined;
41205
- paintOrder?: csstype.Property.PaintOrder | undefined;
41206
- perspective?: csstype.Property.Perspective<string | number> | undefined;
41207
- perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
41208
- pointerEvents?: csstype.Property.PointerEvents | undefined;
41209
- position?: csstype.Property.Position | undefined;
41210
- printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
41211
- quotes?: csstype.Property.Quotes | undefined;
41212
- resize?: csstype.Property.Resize | undefined;
41213
- right?: csstype.Property.Right<string | number> | undefined;
41214
- rotate?: csstype.Property.Rotate | undefined;
41215
- rowGap?: csstype.Property.RowGap<string | number> | undefined;
41216
- rubyAlign?: csstype.Property.RubyAlign | undefined;
41217
- rubyMerge?: csstype.Property.RubyMerge | undefined;
41218
- rubyPosition?: csstype.Property.RubyPosition | undefined;
41219
- scale?: csstype.Property.Scale | undefined;
41220
- scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
41221
- scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
41222
- scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
41223
- scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
41224
- scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
41225
- scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
41226
- scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
41227
- scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
41228
- scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
41229
- scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
41230
- scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
41231
- scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
41232
- scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
41233
- scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
41234
- scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
41235
- scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
41236
- scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
41237
- scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
41238
- scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
41239
- scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
41240
- scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
41241
- scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
41242
- scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
41243
- scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
41244
- scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
41245
- scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
41246
- scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
41247
- scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
41248
- scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
41249
- shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
41250
- shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
41251
- shapeOutside?: csstype.Property.ShapeOutside | undefined;
41252
- tabSize?: csstype.Property.TabSize<string | number> | undefined;
41253
- tableLayout?: csstype.Property.TableLayout | undefined;
41254
- textAlign?: csstype.Property.TextAlign | undefined;
41255
- textAlignLast?: csstype.Property.TextAlignLast | undefined;
41256
- textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
41257
- textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
41258
- textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
41259
- textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
41260
- textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
41261
- textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
41262
- textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
41263
- textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
41264
- textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
41265
- textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
41266
- textIndent?: csstype.Property.TextIndent<string | number> | undefined;
41267
- textJustify?: csstype.Property.TextJustify | undefined;
41268
- textOrientation?: csstype.Property.TextOrientation | undefined;
41269
- textOverflow?: csstype.Property.TextOverflow | undefined;
41270
- textRendering?: csstype.Property.TextRendering | undefined;
41271
- textShadow?: csstype.Property.TextShadow | undefined;
41272
- textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
41273
- textTransform?: csstype.Property.TextTransform | undefined;
41274
- textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
41275
- textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
41276
- top?: csstype.Property.Top<string | number> | undefined;
41277
- touchAction?: csstype.Property.TouchAction | undefined;
41278
- transform?: csstype.Property.Transform | undefined;
41279
- transformBox?: csstype.Property.TransformBox | undefined;
41280
- transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
41281
- transformStyle?: csstype.Property.TransformStyle | undefined;
41282
- transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
41283
- transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
41284
- transitionProperty?: csstype.Property.TransitionProperty | undefined;
41285
- transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
41286
- translate?: csstype.Property.Translate<string | number> | undefined;
41287
- unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
41288
- userSelect?: csstype.Property.UserSelect | undefined;
41289
- verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
41290
- viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
41291
- visibility?: csstype.Property.Visibility | undefined;
41292
- whiteSpace?: csstype.Property.WhiteSpace | undefined;
41293
- widows?: csstype.Property.Widows | undefined;
41294
- width?: csstype.Property.Width<string | number> | undefined;
41295
- willChange?: csstype.Property.WillChange | undefined;
41296
- wordBreak?: csstype.Property.WordBreak | undefined;
41297
- wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
41298
- wordWrap?: csstype.Property.WordWrap | undefined;
41299
- writingMode?: csstype.Property.WritingMode | undefined;
41300
- zIndex?: csstype.Property.ZIndex | undefined;
41301
- zoom?: csstype.Property.Zoom | undefined;
41302
- all?: csstype.Globals | undefined;
41303
- animation?: csstype.Property.Animation<string & {}> | undefined;
41304
- background?: csstype.Property.Background<string | number> | undefined;
41305
- backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
41306
- border?: csstype.Property.Border<string | number> | undefined;
41307
- borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
41308
- borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
41309
- borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
41310
- borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
41311
- borderColor?: csstype.Property.BorderColor | undefined;
41312
- borderImage?: csstype.Property.BorderImage | undefined;
41313
- borderInline?: csstype.Property.BorderInline<string | number> | undefined;
41314
- borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
41315
- borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
41316
- borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
41317
- borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
41318
- borderRight?: csstype.Property.BorderRight<string | number> | undefined;
41319
- borderStyle?: csstype.Property.BorderStyle | undefined;
41320
- borderTop?: csstype.Property.BorderTop<string | number> | undefined;
41321
- borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
41322
- caret?: csstype.Property.Caret | undefined;
41323
- columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
41324
- columns?: csstype.Property.Columns<string | number> | undefined;
41325
- containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
41326
- container?: csstype.Property.Container | undefined;
41327
- flex?: csstype.Property.Flex<string | number> | undefined;
41328
- flexFlow?: csstype.Property.FlexFlow | undefined;
41329
- font?: csstype.Property.Font | undefined;
41330
- gap?: csstype.Property.Gap<string | number> | undefined;
41331
- grid?: csstype.Property.Grid | undefined;
41332
- gridArea?: csstype.Property.GridArea | undefined;
41333
- gridColumn?: csstype.Property.GridColumn | undefined;
41334
- gridRow?: csstype.Property.GridRow | undefined;
41335
- gridTemplate?: csstype.Property.GridTemplate | undefined;
41336
- inset?: csstype.Property.Inset<string | number> | undefined;
41337
- insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
41338
- insetInline?: csstype.Property.InsetInline<string | number> | undefined;
41339
- lineClamp?: csstype.Property.LineClamp | undefined;
41340
- listStyle?: csstype.Property.ListStyle | undefined;
41341
- margin?: csstype.Property.Margin<string | number> | undefined;
41342
- marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
41343
- marginInline?: csstype.Property.MarginInline<string | number> | undefined;
41344
- mask?: csstype.Property.Mask<string | number> | undefined;
41345
- maskBorder?: csstype.Property.MaskBorder | undefined;
41346
- motion?: csstype.Property.Offset<string | number> | undefined;
41347
- offset?: csstype.Property.Offset<string | number> | undefined;
41348
- outline?: csstype.Property.Outline<string | number> | undefined;
41349
- overflow?: csstype.Property.Overflow | undefined;
41350
- overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
41351
- padding?: csstype.Property.Padding<string | number> | undefined;
41352
- paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
41353
- paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
41354
- placeContent?: csstype.Property.PlaceContent | undefined;
41355
- placeItems?: csstype.Property.PlaceItems | undefined;
41356
- placeSelf?: csstype.Property.PlaceSelf | undefined;
41357
- scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
41358
- scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
41359
- scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
41360
- scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
41361
- scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
41362
- scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
41363
- scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
41364
- scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
41365
- textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
41366
- textEmphasis?: csstype.Property.TextEmphasis | undefined;
41367
- transition?: csstype.Property.Transition<string & {}> | undefined;
41368
- MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
41369
- MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
41370
- MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
41371
- MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
41372
- MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
41373
- MozAnimationName?: csstype.Property.AnimationName | undefined;
41374
- MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
41375
- MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
41376
- MozAppearance?: csstype.Property.MozAppearance | undefined;
41377
- MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
41378
- MozBinding?: csstype.Property.MozBinding | undefined;
41379
- MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
41380
- MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
41381
- MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
41382
- MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
41383
- MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
41384
- MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
41385
- MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
41386
- MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
41387
- MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
41388
- MozBoxSizing?: csstype.Property.BoxSizing | undefined;
41389
- MozColumnCount?: csstype.Property.ColumnCount | undefined;
41390
- MozColumnFill?: csstype.Property.ColumnFill | undefined;
41391
- MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
41392
- MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
41393
- MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
41394
- MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
41395
- MozContextProperties?: csstype.Property.MozContextProperties | undefined;
41396
- MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
41397
- MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
41398
- MozHyphens?: csstype.Property.Hyphens | undefined;
41399
- MozImageRegion?: csstype.Property.MozImageRegion | undefined;
41400
- MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
41401
- MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
41402
- MozOrient?: csstype.Property.MozOrient | undefined;
41403
- MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
41404
- MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
41405
- MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
41406
- MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
41407
- MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
41408
- MozStackSizing?: csstype.Property.MozStackSizing | undefined;
41409
- MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
41410
- MozTextBlink?: csstype.Property.MozTextBlink | undefined;
41411
- MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
41412
- MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
41413
- MozTransformStyle?: csstype.Property.TransformStyle | undefined;
41414
- MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
41415
- MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
41416
- MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
41417
- MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
41418
- MozUserFocus?: csstype.Property.MozUserFocus | undefined;
41419
- MozUserModify?: csstype.Property.MozUserModify | undefined;
41420
- MozUserSelect?: csstype.Property.UserSelect | undefined;
41421
- MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
41422
- MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
41423
- msAccelerator?: csstype.Property.MsAccelerator | undefined;
41424
- msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
41425
- msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
41426
- msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
41427
- msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
41428
- msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
41429
- msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
41430
- msContentZooming?: csstype.Property.MsContentZooming | undefined;
41431
- msFilter?: csstype.Property.MsFilter | undefined;
41432
- msFlexDirection?: csstype.Property.FlexDirection | undefined;
41433
- msFlexPositive?: csstype.Property.FlexGrow | undefined;
41434
- msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
41435
- msFlowInto?: csstype.Property.MsFlowInto | undefined;
41436
- msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
41437
- msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
41438
- msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
41439
- msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
41440
- msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
41441
- msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
41442
- msHyphens?: csstype.Property.Hyphens | undefined;
41443
- msImeAlign?: csstype.Property.MsImeAlign | undefined;
41444
- msLineBreak?: csstype.Property.LineBreak | undefined;
41445
- msOrder?: csstype.Property.Order | undefined;
41446
- msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
41447
- msOverflowX?: csstype.Property.OverflowX | undefined;
41448
- msOverflowY?: csstype.Property.OverflowY | undefined;
41449
- msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
41450
- msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
41451
- msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
41452
- msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
41453
- msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
41454
- msScrollRails?: csstype.Property.MsScrollRails | undefined;
41455
- msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
41456
- msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
41457
- msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
41458
- msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
41459
- msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
41460
- msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
41461
- msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
41462
- msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
41463
- msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
41464
- msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
41465
- msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
41466
- msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
41467
- msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
41468
- msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
41469
- msTextOverflow?: csstype.Property.TextOverflow | undefined;
41470
- msTouchAction?: csstype.Property.TouchAction | undefined;
41471
- msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
41472
- msTransform?: csstype.Property.Transform | undefined;
41473
- msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
41474
- msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
41475
- msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
41476
- msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
41477
- msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
41478
- msUserSelect?: csstype.Property.MsUserSelect | undefined;
41479
- msWordBreak?: csstype.Property.WordBreak | undefined;
41480
- msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
41481
- msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
41482
- msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
41483
- msWritingMode?: csstype.Property.WritingMode | undefined;
41484
- WebkitAlignContent?: csstype.Property.AlignContent | undefined;
41485
- WebkitAlignItems?: csstype.Property.AlignItems | undefined;
41486
- WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
41487
- WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
41488
- WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
41489
- WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
41490
- WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
41491
- WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
41492
- WebkitAnimationName?: csstype.Property.AnimationName | undefined;
41493
- WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
41494
- WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
41495
- WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
41496
- WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
41497
- WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
41498
- WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
41499
- WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
41500
- WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
41501
- WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
41502
- WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
41503
- WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
41504
- WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
41505
- WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
41506
- WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
41507
- WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
41508
- WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
41509
- WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
41510
- WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
41511
- WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
41512
- WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
41513
- WebkitClipPath?: csstype.Property.ClipPath | undefined;
41514
- WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
41515
- WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
41516
- WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
41517
- WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
41518
- WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
41519
- WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
41520
- WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
41521
- WebkitFilter?: csstype.Property.Filter | undefined;
41522
- WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
41523
- WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
41524
- WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
41525
- WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
41526
- WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
41527
- WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
41528
- WebkitFontKerning?: csstype.Property.FontKerning | undefined;
41529
- WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
41530
- WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
41531
- WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
41532
- WebkitHyphens?: csstype.Property.Hyphens | undefined;
41533
- WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
41534
- WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
41535
- WebkitLineBreak?: csstype.Property.LineBreak | undefined;
41536
- WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
41537
- WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
41538
- WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
41539
- WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
41540
- WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
41541
- WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
41542
- WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
41543
- WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
41544
- WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
41545
- WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
41546
- WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
41547
- WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
41548
- WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
41549
- WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
41550
- WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
41551
- WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
41552
- WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
41553
- WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
41554
- WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
41555
- WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
41556
- WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
41557
- WebkitOrder?: csstype.Property.Order | undefined;
41558
- WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
41559
- WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
41560
- WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
41561
- WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
41562
- WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
41563
- WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
41564
- WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
41565
- WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
41566
- WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
41567
- WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
41568
- WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
41569
- WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
41570
- WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
41571
- WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
41572
- WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
41573
- WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
41574
- WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
41575
- WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
41576
- WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
41577
- WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
41578
- WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
41579
- WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
41580
- WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
41581
- WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
41582
- WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
41583
- WebkitTransform?: csstype.Property.Transform | undefined;
41584
- WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
41585
- WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
41586
- WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
41587
- WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
41588
- WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
41589
- WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
41590
- WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
41591
- WebkitUserSelect?: csstype.Property.UserSelect | undefined;
41592
- WebkitWritingMode?: csstype.Property.WritingMode | undefined;
41593
- MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
41594
- MozBorderImage?: csstype.Property.BorderImage | undefined;
41595
- MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
41596
- MozColumns?: csstype.Property.Columns<string | number> | undefined;
41597
- MozTransition?: csstype.Property.Transition<string & {}> | undefined;
41598
- msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
41599
- msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
41600
- msFlex?: csstype.Property.Flex<string | number> | undefined;
41601
- msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
41602
- msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
41603
- msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
41604
- msTransition?: csstype.Property.Transition<string & {}> | undefined;
41605
- WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
41606
- WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
41607
- WebkitBorderImage?: csstype.Property.BorderImage | undefined;
41608
- WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
41609
- WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
41610
- WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
41611
- WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
41612
- WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
41613
- WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
41614
- WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
41615
- WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
41616
- WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
41617
- WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
41618
- azimuth?: csstype.Property.Azimuth | undefined;
41619
- boxAlign?: csstype.Property.BoxAlign | undefined;
41620
- boxDirection?: csstype.Property.BoxDirection | undefined;
41621
- boxFlex?: csstype.Property.BoxFlex | undefined;
41622
- boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
41623
- boxLines?: csstype.Property.BoxLines | undefined;
41624
- boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
41625
- boxOrient?: csstype.Property.BoxOrient | undefined;
41626
- boxPack?: csstype.Property.BoxPack | undefined;
41627
- clip?: csstype.Property.Clip | undefined;
41628
- gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
41629
- gridGap?: csstype.Property.GridGap<string | number> | undefined;
41630
- gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
41631
- imeMode?: csstype.Property.ImeMode | undefined;
41632
- offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
41633
- offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
41634
- offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
41635
- offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
41636
- offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
41637
- offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
41638
- scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
41639
- scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
41640
- scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
41641
- scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
41642
- scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
41643
- scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
41644
- KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
41645
- KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
41646
- KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
41647
- KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
41648
- KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
41649
- KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
41650
- KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
41651
- KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
41652
- KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
41653
- KhtmlOpacity?: csstype.Property.Opacity | undefined;
41654
- KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
41655
- MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
41656
- MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
41657
- MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
41658
- MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
41659
- MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
41660
- MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
41661
- MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
41662
- MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
41663
- MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
41664
- MozBoxAlign?: csstype.Property.BoxAlign | undefined;
41665
- MozBoxDirection?: csstype.Property.BoxDirection | undefined;
41666
- MozBoxFlex?: csstype.Property.BoxFlex | undefined;
41667
- MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
41668
- MozBoxOrient?: csstype.Property.BoxOrient | undefined;
41669
- MozBoxPack?: csstype.Property.BoxPack | undefined;
41670
- MozBoxShadow?: csstype.Property.BoxShadow | undefined;
41671
- MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
41672
- MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
41673
- MozOpacity?: csstype.Property.Opacity | undefined;
41674
- MozOutline?: csstype.Property.Outline<string | number> | undefined;
41675
- MozOutlineColor?: csstype.Property.OutlineColor | undefined;
41676
- MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
41677
- MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
41678
- MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
41679
- MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
41680
- MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
41681
- MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
41682
- MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
41683
- MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
41684
- MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
41685
- MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
41686
- MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
41687
- MozUserInput?: csstype.Property.MozUserInput | undefined;
41688
- msImeMode?: csstype.Property.ImeMode | undefined;
41689
- OAnimation?: csstype.Property.Animation<string & {}> | undefined;
41690
- OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
41691
- OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
41692
- OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
41693
- OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
41694
- OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
41695
- OAnimationName?: csstype.Property.AnimationName | undefined;
41696
- OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
41697
- OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
41698
- OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
41699
- OBorderImage?: csstype.Property.BorderImage | undefined;
41700
- OObjectFit?: csstype.Property.ObjectFit | undefined;
41701
- OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
41702
- OTabSize?: csstype.Property.TabSize<string | number> | undefined;
41703
- OTextOverflow?: csstype.Property.TextOverflow | undefined;
41704
- OTransform?: csstype.Property.Transform | undefined;
41705
- OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
41706
- OTransition?: csstype.Property.Transition<string & {}> | undefined;
41707
- OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
41708
- OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
41709
- OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
41710
- OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
41711
- WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
41712
- WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
41713
- WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
41714
- WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
41715
- WebkitBoxLines?: csstype.Property.BoxLines | undefined;
41716
- WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
41717
- WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
41718
- WebkitBoxPack?: csstype.Property.BoxPack | undefined;
41719
- WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
41720
- WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
41721
- alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
41722
- baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
41723
- clipRule?: csstype.Property.ClipRule | undefined;
41724
- colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
41725
- colorRendering?: csstype.Property.ColorRendering | undefined;
41726
- dominantBaseline?: csstype.Property.DominantBaseline | undefined;
41727
- fill?: csstype.Property.Fill | undefined;
41728
- fillOpacity?: csstype.Property.FillOpacity | undefined;
41729
- fillRule?: csstype.Property.FillRule | undefined;
41730
- floodColor?: csstype.Property.FloodColor | undefined;
41731
- floodOpacity?: csstype.Property.FloodOpacity | undefined;
41732
- glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
41733
- lightingColor?: csstype.Property.LightingColor | undefined;
41734
- marker?: csstype.Property.Marker | undefined;
41735
- markerEnd?: csstype.Property.MarkerEnd | undefined;
41736
- markerMid?: csstype.Property.MarkerMid | undefined;
41737
- markerStart?: csstype.Property.MarkerStart | undefined;
41738
- shapeRendering?: csstype.Property.ShapeRendering | undefined;
41739
- stopColor?: csstype.Property.StopColor | undefined;
41740
- stopOpacity?: csstype.Property.StopOpacity | undefined;
41741
- stroke?: csstype.Property.Stroke | undefined;
41742
- strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
41743
- strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
41744
- strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
41745
- strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
41746
- strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
41747
- strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
41748
- strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
41749
- textAnchor?: csstype.Property.TextAnchor | undefined;
41750
- vectorEffect?: csstype.Property.VectorEffect | undefined;
41751
- };
40233
+ declare const getCornerStyle: (advancedSetting?: Record<string, AdvanceValue>) => React.CSSProperties;
41752
40234
  declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
41753
40235
  [x: string]: any;
41754
40236
  '--ai'?: csstype.Property.AlignItems | undefined;
@@ -48320,7 +46802,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name'
48320
46802
  pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
48321
46803
  themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
48322
46804
  interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
48323
- metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'key' | 'value'>>>>;
46805
+ metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'id' | 'key' | 'value'>>>>;
48324
46806
  };
48325
46807
 
48326
46808
  declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
@@ -48343,7 +46825,7 @@ declare const useInteraction: () => {
48343
46825
  onListener: ({ event, selector, elementRef, }: {
48344
46826
  event: string;
48345
46827
  selector: string;
48346
- elementRef?: React.MutableRefObject<HTMLElement> | undefined;
46828
+ elementRef?: React.MutableRefObject<HTMLElement | null | undefined> | undefined;
48347
46829
  }, callback: (data: any) => void) => (() => void) | undefined;
48348
46830
  trigger: ({ event, data, selector, element: elementParam, }: {
48349
46831
  event: string;
@@ -48351,7 +46833,7 @@ declare const useInteraction: () => {
48351
46833
  selector: string;
48352
46834
  element?: HTMLElement | undefined;
48353
46835
  }) => void;
48354
- saveToElementInteractionData: (element: HTMLElement, key: string, value: string) => void;
46836
+ saveToElementInteractionData: (element: HTMLElement | null | undefined, key: string, value: string | number) => void;
48355
46837
  closeSelectOnPage: () => void;
48356
46838
  ref: React.MutableRefObject<any>;
48357
46839
  findElementIncludingSelf: (element: any, selector: string) => any;
@@ -48370,4 +46852,4 @@ declare const useInteraction: () => {
48370
46852
  interactionListenerLoaded: (callback: () => void) => void;
48371
46853
  };
48372
46854
 
48373
- 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 };