@gem-sdk/core 1.48.0-dev.9 → 1.48.0-dev.97

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 (40) hide show
  1. package/dist/cjs/components/InteractionSuffix.js +9 -1
  2. package/dist/cjs/components/Render.liquid.js +10 -4
  3. package/dist/cjs/graphql/fragments/product-little.generated.js +1 -0
  4. package/dist/cjs/graphql/fragments/published-theme-page.generated.js +8 -0
  5. package/dist/cjs/helpers/animations.js +6 -6
  6. package/dist/cjs/helpers/background.js +1 -1
  7. package/dist/cjs/helpers/colors.js +2 -2
  8. package/dist/cjs/helpers/compose-advance-style.js +6 -3
  9. package/dist/cjs/helpers/interaction/index.js +66 -0
  10. package/dist/cjs/helpers/queries/get-product.js +1 -1
  11. package/dist/cjs/helpers/render.js +2 -0
  12. package/dist/cjs/helpers/shadow.js +15 -3
  13. package/dist/cjs/helpers/third-party/appConfig.js +49 -0
  14. package/dist/cjs/helpers/third-party/appSetting.js +87 -0
  15. package/dist/cjs/helpers/third-party/constant.js +8 -1
  16. package/dist/cjs/helpers/typography.js +19 -15
  17. package/dist/cjs/index.js +4 -0
  18. package/dist/cjs/types/animations.js +2 -0
  19. package/dist/cjs/types/custom.js +1 -0
  20. package/dist/esm/components/InteractionSuffix.js +10 -2
  21. package/dist/esm/components/Render.liquid.js +10 -4
  22. package/dist/esm/graphql/fragments/product-little.generated.js +1 -0
  23. package/dist/esm/graphql/fragments/published-theme-page.generated.js +8 -0
  24. package/dist/esm/helpers/animations.js +6 -6
  25. package/dist/esm/helpers/background.js +1 -1
  26. package/dist/esm/helpers/colors.js +2 -2
  27. package/dist/esm/helpers/compose-advance-style.js +7 -4
  28. package/dist/esm/helpers/interaction/index.js +64 -0
  29. package/dist/esm/helpers/queries/get-product.js +1 -1
  30. package/dist/esm/helpers/render.js +2 -0
  31. package/dist/esm/helpers/shadow.js +15 -4
  32. package/dist/esm/helpers/third-party/appConfig.js +43 -1
  33. package/dist/esm/helpers/third-party/appSetting.js +87 -0
  34. package/dist/esm/helpers/third-party/constant.js +9 -2
  35. package/dist/esm/helpers/typography.js +19 -16
  36. package/dist/esm/index.js +3 -2
  37. package/dist/esm/types/animations.js +2 -0
  38. package/dist/esm/types/custom.js +1 -0
  39. package/dist/types/index.d.ts +1982 -196
  40. package/package.json +3 -3
@@ -6909,7 +6909,9 @@ type StampedWidgetType = 'main-widget' | 'carousel' | 'full-page' | 'visual-gall
6909
6909
  type LaiProductReviewsWidgetType = 'reviews_widget' | 'star_ratings' | 'homepage_reviews' | 'happy_customer_reviews' | 'star_ratings_in_list' | 'advanced_widget';
6910
6910
  type LaiProductReviewsAdvancedWidgetType = 'cardCarousel' | 'testimonialCarousel' | 'mediaGallery' | 'cardGrid';
6911
6911
  type YotpoReviewsWidgetType = 'reviews' | 'badge' | 'reviewHighlights';
6912
- type BogosWidgetType = 'icon' | 'thumnail' | 'slider' | 'message';
6912
+ type BogosWidgetType = 'icon' | 'thumnail' | 'slider' | 'message' | 'classic-bundle' | 'quantity-break';
6913
+ type PreOrderNowWodWidgetType = 'app-block' | 'popups-block';
6914
+ type TagShopWidgetType = 'homeLandingGalleries' | 'productGalleries' | 'tagGalleries';
6913
6915
 
6914
6916
  type ResponsiveConfig<T> = {
6915
6917
  desktop: {
@@ -7187,6 +7189,11 @@ type InputControlType<T> = SharedControlType<T> & {
7187
7189
  action?: {
7188
7190
  clear?: boolean;
7189
7191
  };
7192
+ actionChangeControls?: {
7193
+ controlID: string;
7194
+ condition?: string;
7195
+ newValue: any;
7196
+ }[];
7190
7197
  };
7191
7198
 
7192
7199
  type InputFixContentControlType<T> = SharedControlType<T> & {
@@ -7329,6 +7336,7 @@ type Option$2<T> = {
7329
7336
  tooltip?: string;
7330
7337
  type?: string;
7331
7338
  note?: string;
7339
+ maxOption?: number;
7332
7340
  };
7333
7341
  type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
7334
7342
  id: K;
@@ -7437,14 +7445,14 @@ type BehaviorStateControlType<T> = {
7437
7445
 
7438
7446
  type BoxShadowControlType<T> = SharedControlType<T> & {
7439
7447
  id?: string;
7440
- type: 'boxShadow';
7448
+ type: 'box-shadow';
7441
7449
  hideOptions?: string[];
7442
7450
  popup?: boolean;
7443
7451
  };
7444
7452
 
7445
7453
  type TextShadowControlType<T> = SharedControlType<T> & {
7446
7454
  id?: string;
7447
- type: 'textShadow';
7455
+ type: 'text-shadow';
7448
7456
  popup?: boolean;
7449
7457
  };
7450
7458
 
@@ -7743,8 +7751,12 @@ type TypographyV2ControlType<T> = SharedControlType<T> & {
7743
7751
  color?: boolean;
7744
7752
  transform?: boolean;
7745
7753
  fontWeight?: boolean;
7754
+ seoTagValue?: boolean;
7746
7755
  };
7747
7756
  disableCollapse?: boolean;
7757
+ settingConfig?: {
7758
+ seoTagType?: 'text' | 'heading';
7759
+ };
7748
7760
  };
7749
7761
 
7750
7762
  type StickyDisplayControlType<T> = SharedControlType<T> & {
@@ -8027,8 +8039,79 @@ type ShapeSelectorControlType<T> = SharedControlType<T> & {
8027
8039
  type: 'shape-selector';
8028
8040
  };
8029
8041
 
8042
+ declare enum CompareType {
8043
+ EXACT = "exact",
8044
+ ABOVE = "above",
8045
+ BELOW = "below",
8046
+ EXACT_OR_ABOVE = "exact_or_above",
8047
+ EXACT_OR_BELOW = "exact_or_below",
8048
+ BETWEEN = "between"
8049
+ }
8050
+ declare enum TriggerType {
8051
+ INVENTORY_STATUS = "inventory_status",
8052
+ DISCOUNT_PRICE = "discount_price",
8053
+ PRICE_RANGE = "price_range",
8054
+ PRODUCT_TAGS = "product_tags",
8055
+ CREATION_DATE = "creation_date"
8056
+ }
8057
+ declare enum InventoryStatus {
8058
+ IN_STOCK = "in_stock",
8059
+ OUT_OF_STOCK = "out_of_stock"
8060
+ }
8061
+ declare enum CreationDateType {
8062
+ DURATION = "duration",
8063
+ EXACT_DATE = "exact_date",
8064
+ BETWEEN_DATES = "between_dates"
8065
+ }
8066
+ declare enum DiscountType {
8067
+ PERCENT = "percent",
8068
+ FIXED = "fixed"
8069
+ }
8070
+ type InventoryStatusTrigger = {
8071
+ triggerEvent: TriggerType.INVENTORY_STATUS;
8072
+ type: InventoryStatus;
8073
+ quantityType: CompareType;
8074
+ from: string;
8075
+ to?: string;
8076
+ priority: number;
8077
+ conditionType?: CompareType;
8078
+ };
8079
+ type DiscountPriceTrigger = {
8080
+ triggerEvent: TriggerType.DISCOUNT_PRICE;
8081
+ type: CompareType;
8082
+ amount?: string;
8083
+ from?: string;
8084
+ to?: string;
8085
+ priority: number;
8086
+ conditionType?: CompareType;
8087
+ discountType?: DiscountType;
8088
+ };
8089
+ type PriceRangeTrigger = {
8090
+ triggerEvent: TriggerType.PRICE_RANGE;
8091
+ from: string;
8092
+ to: string;
8093
+ priority: number;
8094
+ conditionType?: CompareType;
8095
+ };
8096
+ type CreationDateTrigger = {
8097
+ triggerEvent: TriggerType.CREATION_DATE;
8098
+ type: CreationDateType;
8099
+ days: string;
8100
+ from: string;
8101
+ to: string;
8102
+ priority: number;
8103
+ conditionType?: CompareType;
8104
+ };
8105
+ type ProductTagTrigger = {
8106
+ triggerEvent: TriggerType.PRODUCT_TAGS;
8107
+ searchTag: string[];
8108
+ priority: number;
8109
+ conditionType?: CompareType;
8110
+ };
8111
+ type TDisplayTrigger = InventoryStatusTrigger | DiscountPriceTrigger | PriceRangeTrigger | ProductTagTrigger | CreationDateTrigger;
8030
8112
  type DisplayTriggerControlType<T> = SharedControlType<T> & {
8031
8113
  type: 'display-trigger-badge';
8114
+ default: TDisplayTrigger[];
8032
8115
  };
8033
8116
 
8034
8117
  type CustomPositionControlType<T> = SharedControlType<T> & {
@@ -8055,7 +8138,124 @@ type SelectProductBundleControlType<T> = SharedControlType<T> & {
8055
8138
  hide?: boolean;
8056
8139
  };
8057
8140
 
8058
- type ControlProp<T> = ProductBundleChildControlType<T> | SelectProductBundleControlType<T> | AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | OpenLinkControlType<T> | SelectControlType<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<T> | TypographyV2ControlType<T> | MenuControlType<T> | BehaviorStateControlType<T> | PickLinkControlType<T> | BoxShadowControlType<T> | TextShadowControlType<T> | BorderControlType<T> | BorderRadiusControlType<T> | RadiusPresetControlType<T> | SizeControlType<T> | ChildItemType<T> | PickMultiProductControlType<T> | CollectionControlType<T> | BackgroundControlType<T> | VisibilityControlType<T> | SelectVariantControlType | CountdownEvergreenType | Timezone<T> | CustomContentControlType<T> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T> | LayoutSegmentControlType<T> | InputSpacing<T> | UniqueIdControlType<T> | PositionSquareControlType<T> | CustomCodeEditor | LayoutControlType<T> | LayoutBannerControlType<T> | SwatchesLinkControlType<T> | VariantSwatchesPresetControlType<T> | VariantSwatchesOnlyDefaultVariantControlType<T> | ProductListControlType<T> | ArticleListControlType<T> | CollectionBannerControlType<T> | Ratio<T> | StickyDisplayControlType<T> | SyncProductPropertiesControlType<T> | StepsGuide<T> | ImageShape<T> | GridArrange<T> | SizeSetting$1<T> | ChildIconType<T> | DropdownInput<T> | Dropdown<T> | AliPickSectionControlType<T> | ParallaxScrollingType<T> | BackgroundColorPickerType<T> | PlayPauseControlType<T> | LayoutCustomSegmentControlType<T> | SneakPeakRange<T> | SneakPeakTypeControlType<T> | SneakPeakControlType<T> | ProductInputCurrencyUnitControlType<T> | TypographyPostPurchaseControlType<T> | ProductOffersControlType<T> | DiscountAndShippingFee<T> | PostPurchaseTextareaControlType<T> | NotesControlType<T> | ButtonLayoutType<T> | ShapeSelectorControlType<T> | CustomPositionControlType<T> | SneakPeakControlType<T> | PostPurchaseTextareaControlType<T> | DealControlType<T> | DisplayTriggerControlType<T>;
8141
+ type SettingStateType = 'normal' | 'hover' | 'focus' | 'active' | 'price' | 'compareAtPrice';
8142
+ type LangKey = 'en' | 'vi';
8143
+ type LabelWithLang = {
8144
+ [P in keyof Record<LangKey, ''>]?: string;
8145
+ };
8146
+ type SettingMediaType = 'image' | 'youtubeVideoID';
8147
+ type SettingUIHelpType = {
8148
+ content: string;
8149
+ button?: {
8150
+ label: string;
8151
+ link: string;
8152
+ };
8153
+ media?: {
8154
+ value: string;
8155
+ type: SettingMediaType;
8156
+ };
8157
+ };
8158
+ type LinkWithSetting = {
8159
+ name: string;
8160
+ state?: string;
8161
+ field?: string;
8162
+ getLinkValue?: boolean;
8163
+ };
8164
+ type ControlConfig = ControlProp<any> & {
8165
+ linkWithSetting?: LinkWithSetting;
8166
+ };
8167
+ type Plan = 'trial' | 'build' | 'starter' | 'optimize' | 'advanced' | 'trial2022' | 'enterprise' | 'development' | 'professional';
8168
+ type SettingUIControl = {
8169
+ id?: string;
8170
+ controlConfig?: ControlConfig;
8171
+ type?: 'control' | 'combo' | 'tab' | 'toggleGroup';
8172
+ layout?: 'vertical' | 'horizontal';
8173
+ toggleGroupId?: string;
8174
+ label?: LabelWithLang;
8175
+ conditionDisplay?: string;
8176
+ conditionEnable?: string;
8177
+ options?: {
8178
+ hideLabel?: boolean;
8179
+ hideOnDevices?: Record<NameDevices$1, boolean>;
8180
+ fullWidth?: boolean;
8181
+ onlyShowInTags?: string[];
8182
+ target?: 'tab';
8183
+ disableMessage?: string;
8184
+ nearestSupportedPlan?: Plan;
8185
+ lockedOnPlans?: Plan[];
8186
+ labelVariant?: 'primary' | 'secondary';
8187
+ labelInsideControl?: boolean;
8188
+ };
8189
+ setting?: {
8190
+ id: string;
8191
+ state?: SettingStateType;
8192
+ };
8193
+ searchKeyword?: string;
8194
+ tabs?: SettingUITab[];
8195
+ info?: LabelWithLang;
8196
+ } & SettingUICompo;
8197
+ type SettingUICompo = {
8198
+ controls?: SettingUIControl[];
8199
+ iconName?: string;
8200
+ getValueFromSettingID?: string;
8201
+ fixedValue?: string;
8202
+ placeholder?: string;
8203
+ help?: SettingUIHelpType;
8204
+ };
8205
+ type SettingUIMoreSetting = {
8206
+ label?: LabelWithLang;
8207
+ labelAction?: LabelWithLang;
8208
+ controls?: SettingUIControl[];
8209
+ help?: SettingUIHelpType;
8210
+ };
8211
+ type SettingUITab = {
8212
+ label?: LabelWithLang;
8213
+ controls?: SettingUIControl[];
8214
+ hide?: boolean;
8215
+ conditionDisplay?: string;
8216
+ };
8217
+ type SettingUIToggleGroup = {
8218
+ label?: LabelWithLang;
8219
+ id?: string;
8220
+ controls?: SettingUIControl[];
8221
+ };
8222
+ type SettingUIToggleSettings = {
8223
+ controls?: SettingUIControl[];
8224
+ isActiveDefault?: boolean;
8225
+ } & SettingUIControl & SettingUIToggleGroup;
8226
+ type SettingUIGroup = {
8227
+ label?: LabelWithLang;
8228
+ message?: string;
8229
+ disableToggle?: boolean;
8230
+ conditionDisplay?: string;
8231
+ conditionEnable?: string;
8232
+ controls?: SettingUIControl[];
8233
+ moreSettings?: SettingUIMoreSetting;
8234
+ toggleSettings?: SettingUIToggleSettings[];
8235
+ states?: SettingUITab[];
8236
+ help?: SettingUIHelpType;
8237
+ options?: {
8238
+ disableMessage?: string;
8239
+ };
8240
+ };
8241
+
8242
+ type FontWeight<T> = SharedControlType<T> & {
8243
+ type: 'font-weight';
8244
+ };
8245
+
8246
+ type LetterSpacing<T> = SharedControlType<T> & {
8247
+ type: 'letter-spacing';
8248
+ };
8249
+
8250
+ type TextTransform<T> = SharedControlType<T> & {
8251
+ type: 'text-transform';
8252
+ };
8253
+
8254
+ type LineHeight<T> = SharedControlType<T> & {
8255
+ type: 'line-height';
8256
+ };
8257
+
8258
+ type ControlProp<T> = ProductBundleChildControlType<T> | SelectProductBundleControlType<T> | AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | OpenLinkControlType<T> | SelectControlType<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<T> | TypographyV2ControlType<T> | MenuControlType<T> | BehaviorStateControlType<T> | PickLinkControlType<T> | BoxShadowControlType<T> | TextShadowControlType<T> | BorderControlType<T> | BorderRadiusControlType<T> | RadiusPresetControlType<T> | SizeControlType<T> | ChildItemType<T> | PickMultiProductControlType<T> | CollectionControlType<T> | BackgroundControlType<T> | VisibilityControlType<T> | SelectVariantControlType | CountdownEvergreenType | Timezone<T> | CustomContentControlType<T> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T> | LayoutSegmentControlType<T> | InputSpacing<T> | UniqueIdControlType<T> | PositionSquareControlType<T> | CustomCodeEditor | LayoutControlType<T> | LayoutBannerControlType<T> | SwatchesLinkControlType<T> | VariantSwatchesPresetControlType<T> | VariantSwatchesOnlyDefaultVariantControlType<T> | ProductListControlType<T> | ArticleListControlType<T> | CollectionBannerControlType<T> | Ratio<T> | StickyDisplayControlType<T> | SyncProductPropertiesControlType<T> | StepsGuide<T> | ImageShape<T> | GridArrange<T> | SizeSetting$1<T> | ChildIconType<T> | DropdownInput<T> | Dropdown<T> | AliPickSectionControlType<T> | ParallaxScrollingType<T> | BackgroundColorPickerType<T> | PlayPauseControlType<T> | LayoutCustomSegmentControlType<T> | SneakPeakRange<T> | SneakPeakTypeControlType<T> | SneakPeakControlType<T> | ProductInputCurrencyUnitControlType<T> | TypographyPostPurchaseControlType<T> | ProductOffersControlType<T> | DiscountAndShippingFee<T> | PostPurchaseTextareaControlType<T> | NotesControlType<T> | ButtonLayoutType<T> | ShapeSelectorControlType<T> | CustomPositionControlType<T> | SneakPeakControlType<T> | PostPurchaseTextareaControlType<T> | DealControlType<T> | DisplayTriggerControlType<T> | FontWeight<T> | LetterSpacing<T> | TextTransform<T> | LineHeight<T>;
8059
8259
  type ControlTriggerAction = {
8060
8260
  controlId: string;
8061
8261
  newValue?: any;
@@ -8126,6 +8326,7 @@ type ComponentSetting<P extends BaseProps> = {
8126
8326
  };
8127
8327
  };
8128
8328
  ui?: ControlUI[];
8329
+ uiV2?: SettingUIGroup[];
8129
8330
  presets?: ComponentPreset[];
8130
8331
  locales?: Record<string, any>;
8131
8332
  };
@@ -8268,7 +8469,8 @@ declare enum InteractionTargetEvent {
8268
8469
  'gp:change-image-step' = 16,
8269
8470
  'gp:change-text-value' = 17,
8270
8471
  'gp:toggle-popup-open' = 18,
8271
- 'gp:show-or-hide' = 19
8472
+ 'gp:show-or-hide' = 19,
8473
+ 'gp:change-banner' = 20
8272
8474
  }
8273
8475
  declare enum InteractionTriggerEvent {
8274
8476
  'click' = 0,
@@ -28410,6 +28612,7 @@ type TypographyProps = {
28410
28612
  fallbackFontFamily?: string;
28411
28613
  textShadow?: ShadowProps;
28412
28614
  hasShadowText?: boolean;
28615
+ isCustom?: boolean;
28413
28616
  };
28414
28617
  type TypographyV2Props = Omit<TypographyProps, 'fontSize' | 'lineHeight'> & {
28415
28618
  fontSize?: ObjectDevices<string>;
@@ -28421,6 +28624,7 @@ type TypographyV2Attrs = {
28421
28624
  underline?: boolean;
28422
28625
  color?: ColorValueType;
28423
28626
  transform?: string;
28627
+ seoTagValue?: string;
28424
28628
  };
28425
28629
  type CornerRadius = {
28426
28630
  btlr?: string;
@@ -28574,10 +28778,12 @@ declare enum AnimationDirectionType {
28574
28778
  Up = "up",
28575
28779
  Down = "down"
28576
28780
  }
28577
- type AnimationTrigger = 'appear' | 'hover';
28781
+ type AnimationTrigger = 'appear' | 'hover' | "hidden" | 'appearByTrigger';
28578
28782
  declare enum AnimationTriggerType {
28579
28783
  Appear = "appear",
28580
- Hover = "hover"
28784
+ Hover = "hover",
28785
+ Hidden = "hidden",
28786
+ AppearByTrigger = "appearByTrigger"
28581
28787
  }
28582
28788
  declare enum AnimationZoomDirectionType {
28583
28789
  In = "in",
@@ -28818,7 +29024,7 @@ type ProductListProviderProps = ProductListContextProps & {
28818
29024
  declare const ProductListProvider: React.FC<ProductListProviderProps>;
28819
29025
  declare const useProductListStore: <U>(selector: (state: ExtractState<StoreApi<ProductListContextProps>>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined) => U;
28820
29026
 
28821
- type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
29027
+ type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
28822
29028
  collections?: Maybe$1<{
28823
29029
  edges: Array<{
28824
29030
  node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
@@ -29182,6 +29388,7 @@ type PublishedThemePagesQueryResponse = {
29182
29388
  themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
29183
29389
  themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
29184
29390
  themePageCustomFonts?: Maybe$1<Array<Maybe$1<CustomFont$1>>>;
29391
+ interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
29185
29392
  }>>>;
29186
29393
  };
29187
29394
  declare const PublishedThemePagesDocument: string;
@@ -29259,6 +29466,7 @@ type PreviewPageQueryResponse = {
29259
29466
  pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
29260
29467
  themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
29261
29468
  themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
29469
+ interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
29262
29470
  }>;
29263
29471
  };
29264
29472
  declare const PreviewPageDocument: string;
@@ -29360,10 +29568,10 @@ type ClassDictionary = Record<string, boolean | undefined | null>;
29360
29568
  declare function cls(...classes: ClassValue[]): string;
29361
29569
 
29362
29570
  declare const animations: () => {
29363
- zoom: (target: Element, options: AnimationSettingType) => Animation;
29571
+ zoom: (target: Element, options: AnimationSettingType, reverse?: boolean) => Animation;
29364
29572
  shake: (target: Element, options: AnimationSettingType) => Animation;
29365
- fade: (target: Element, options: AnimationSettingType) => Animation;
29366
- slide: (target: Element, options: AnimationSettingType) => Animation;
29573
+ fade: (target: Element, options: AnimationSettingType, reverse?: boolean) => Animation;
29574
+ slide: (target: Element, options: AnimationSettingType, reverse?: boolean) => Animation;
29367
29575
  };
29368
29576
 
29369
29577
  declare const filterToolbarPreview: (children: React.ReactNode, keep?: boolean) => React.ReactNode;
@@ -29550,7 +29758,7 @@ declare const getGlobalColorStateClassDynamicBtn: (type: ColorType, data?: State
29550
29758
  declare const getGlobalColorStateResponsiveClass: (type: ColorType, data?: ResponsiveStateProp<ColorValueType>) => string;
29551
29759
  declare const getGlobalColorStateResponsiveClassDynamicBtn: (type: ColorType, data?: ResponsiveStateProp<ColorValueType>) => string;
29552
29760
  declare const getGlobalColorResponsiveStyle: (type: ColorProp, data?: ObjectDevices<ColorValueType>) => React.CSSProperties;
29553
- declare const getGlobalColorStateStyle: (type: ColorProp, data?: StateProp<ColorValueType>) => React.CSSProperties;
29761
+ declare const getGlobalColorStateStyle: (type: ColorProp, data?: StateProp<ColorValueType>, states?: string[]) => React.CSSProperties;
29554
29762
  declare const getGlobalColorStateResponsiveStyle: (type: ColorProp, data?: ResponsiveStateProp<ColorValueType>) => React.CSSProperties;
29555
29763
  declare const getSingleColorVariable: (color?: ColorValueType) => string | undefined;
29556
29764
  declare function isColor(color: string): boolean;
@@ -29878,6 +30086,15 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
29878
30086
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
29879
30087
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
29880
30088
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
30089
+ '--gr'?: csstype.Property.GridRow | undefined;
30090
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
30091
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
30092
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
30093
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
30094
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
30095
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
30096
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
30097
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
29881
30098
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
29882
30099
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
29883
30100
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -31382,6 +31599,15 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
31382
31599
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
31383
31600
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
31384
31601
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
31602
+ '--gr'?: csstype.Property.GridRow | undefined;
31603
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
31604
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
31605
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
31606
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
31607
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
31608
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
31609
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
31610
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
31385
31611
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
31386
31612
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
31387
31613
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -32886,6 +33112,15 @@ declare const filterCornerInStyle: (style?: React.CSSProperties) => {
32886
33112
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
32887
33113
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
32888
33114
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
33115
+ '--gr'?: csstype.Property.GridRow | undefined;
33116
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
33117
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
33118
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
33119
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
33120
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
33121
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
33122
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
33123
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
32889
33124
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
32890
33125
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
32891
33126
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -34390,6 +34625,15 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
34390
34625
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
34391
34626
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
34392
34627
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
34628
+ '--gr'?: csstype.Property.GridRow | undefined;
34629
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
34630
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
34631
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
34632
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
34633
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
34634
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
34635
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
34636
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
34393
34637
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
34394
34638
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
34395
34639
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -35665,59 +35909,13 @@ declare const composeMemo: <T>(fn: () => T, _?: any[]) => T;
35665
35909
  declare const removeUndefinedValuesFromObject: (obj: Record<string, string>) => Record<string, string>;
35666
35910
 
35667
35911
  declare const parseValueWithUnit: (valueWithUnit: string) => any;
35668
- declare const getStyleShadow: (shadowStyle: ShadowStyle, isActiveState?: boolean) => {
35912
+ declare const getStyleShadow: (shadowStyle: ShadowStyle & {
35913
+ screen?: string;
35914
+ }, isActiveState?: boolean) => {
35669
35915
  [x: string]: string;
35670
35916
  };
35671
- declare const getStyleShadowState: (shadow?: StateProp<ShadowProps>, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: StateProp<boolean>) => React.CSSProperties;
35672
- declare const composeShadowCss: ({ hasBoxShadow, boxShadowValue, important, }: {
35673
- hasBoxShadow?: boolean | undefined;
35674
- boxShadowValue?: ShadowProps | undefined;
35675
- important?: boolean | undefined;
35676
- }) => string | undefined;
35677
-
35678
- declare const composeSize: (size?: ObjectDevices<SizeProps>) => React.CSSProperties;
35679
- declare function genSizeClass(name: string): string;
35680
- declare const composeSizeCss: (spacing?: SizeSetting) => string | undefined;
35681
- declare const makeGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
35682
- width: Record<ResponsiveKey<"w">, string | number>;
35683
- height: Record<ResponsiveKey<"h">, string | number>;
35684
- padding: React.CSSProperties;
35685
- gap: {
35686
- '--gg': string | undefined;
35687
- '--gg-tablet': string | undefined;
35688
- '--gg-mobile': string | undefined;
35689
- };
35690
- };
35691
- declare const makeGlobalSizeIcon: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
35692
- width: Record<ResponsiveKey<"w">, string | number>;
35693
- height: Record<ResponsiveKey<"h">, string | number>;
35694
- minWidth: Record<ResponsiveKey<"minw">, string | number>;
35695
- padding: React.CSSProperties;
35696
- };
35697
- declare const getGlobalSizeGap: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
35698
- '--gg': string | undefined;
35699
- '--gg-tablet': string | undefined;
35700
- '--gg-mobile': string | undefined;
35701
- };
35702
- declare const makeStyleWithDefault: <T extends ShortHandProperty, K>(name: T, value?: Partial<Record<NameDevices$1, K>> | undefined, defaultVal?: Partial<Record<NameDevices$1, K>> | undefined) => Record<ResponsiveKey<T>, K>;
35703
- declare const getWidthHeightGlobalSize: (type: 'width' | 'height', globalSize?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string | number>>;
35704
- declare const getHeightByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string>>;
35705
- declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean) => Partial<Record<NameDevices$1, string>>;
35706
- declare const getAspectRatioGlobalSize: (shape?: ObjectDevices<SizeSettingGlobal>) => ObjectDevices<string>;
35707
- declare const getPaddingGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => React.CSSProperties;
35708
- declare const getValueByDevice: <T>(value: any, device: NameDevices$1) => T;
35709
-
35710
- type TypographyClass = `gp-g-${TypographyType}`;
35711
- declare const genTypoClass: (name: TypographyType) => TypographyClass;
35712
- declare const composeTypographyCss: (typography: TypographySetting | undefined) => string;
35713
- declare const composeTypographyV2Css: (typography: TypographySettingV2 | undefined, isImportant?: boolean) => string;
35714
- declare const composeTypography: (typography?: ObjectDevices<TypographyProps>) => React.CSSProperties;
35715
- declare const composeTypographyV2: (value?: TypographyV2Props, attrs?: TypographyV2Attrs) => React.CSSProperties;
35716
- declare const composeFontFamilyTypographyV2: (value?: TypographyV2Props) => string | undefined;
35717
- declare const composeTypographyAttr: (attrs?: TypographyV2Attrs) => React.CSSProperties;
35718
- declare const composeTypographyClassName: (typo?: TypographySettingV2, typography?: TypographySetting) => "" | "gp-g-heading-1" | "gp-g-heading-2" | "gp-g-heading-3" | "gp-g-subheading-1" | "gp-g-subheading-2" | "gp-g-subheading-3" | "gp-g-paragraph-1" | "gp-g-paragraph-2" | "gp-g-paragraph-3" | undefined;
35719
- declare const composeFallbackTypographyStyle: (tag: string) => "var(--g-font-heading, heading)" | "var(--g-font-body, body)";
35720
- declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?: TypographySetting, disableAttr?: boolean) => {
35917
+ declare const getStyleShadowState: (shadow?: StateProp<ShadowProps>, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: StateProp<boolean>, screen?: string) => React.CSSProperties;
35918
+ declare const getResonsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: any) => {
35721
35919
  [x: string]: any;
35722
35920
  '--ai'?: csstype.Property.AlignItems | undefined;
35723
35921
  '--hvr-ai'?: csstype.Property.AlignItems | undefined;
@@ -36034,6 +36232,15 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
36034
36232
  '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36035
36233
  '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36036
36234
  '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
36235
+ '--gr'?: csstype.Property.GridRow | undefined;
36236
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
36237
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
36238
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
36239
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
36240
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
36241
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
36242
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
36243
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
36037
36244
  '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36038
36245
  '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
36039
36246
  '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
@@ -37220,143 +37427,1707 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
37220
37427
  strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
37221
37428
  textAnchor?: csstype.Property.TextAnchor | undefined;
37222
37429
  vectorEffect?: csstype.Property.VectorEffect | undefined;
37223
- };
37224
-
37225
- type Func$6 = ReturnType<typeof addToCartOperation>;
37226
- type Response$6 = Awaited<ReturnType<Func$6>>;
37227
- type Args$5 = Parameters<Func$6>[0];
37228
- declare const useAddToCart: (options?: SWRMutationConfiguration<Response$6, any, Args$5, 'add-to-cart'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.AddCartLineInput, "add-to-cart">;
37229
-
37230
- type Func$5 = ReturnType<typeof getCartOperation>;
37231
- type Response$5 = Awaited<ReturnType<Func$5>>;
37232
- declare const useCartData: (options?: SWRConfiguration<Response$5 | undefined, any>) => swr__internal.SWRResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined, any, Partial<swr__internal.PublicConfiguration<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined, any, (arg: "cart") => swr__internal.FetcherResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined>>> | undefined>;
37233
-
37234
- type Func$4 = ReturnType<typeof cartDiscountCodesUpdateOperation>;
37235
- type Response$4 = Awaited<ReturnType<Func$4>>;
37236
- type Args$4 = Parameters<Func$4>[0];
37237
- declare const useCartDiscountCodesUpdate: (options?: SWRMutationConfiguration<Response$4, any, Args$4, 'cart-discount-codes-update'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.CartDiscountCodesUpdateInput, "cart-discount-codes-update">;
37238
-
37239
- type Func$3 = ReturnType<typeof cartNoteUpdateOperation>;
37240
- type Response$3 = Awaited<ReturnType<Func$3>>;
37241
- type Args$3 = Parameters<Func$3>[0];
37242
- declare const useCartNoteUpdate: (options?: SWRMutationConfiguration<Response$3, any, Args$3, 'cart-note-update'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.CartNoteUpdateInput, "cart-note-update">;
37243
-
37244
- type Func$2 = ReturnType<typeof createCartOperation>;
37245
- type Response$2 = Awaited<ReturnType<Func$2>>;
37246
- type Args$2 = Parameters<Func$2>[0];
37247
- declare const useCreateCart: (options?: SWRMutationConfiguration<Response$2, any, Args$2, 'create-cart'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.CreateCartInput, "create-cart">;
37248
-
37249
- type Func$1 = ReturnType<typeof removeCartItemOperation>;
37250
- type Response$1 = Awaited<ReturnType<Func$1>>;
37251
- type Args$1 = Parameters<Func$1>[0];
37252
- declare const useRemoveCartItem: (options?: SWRMutationConfiguration<Response$1, any, Args$1, 'remove-cart-item'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.RemoveCartLineInput, "remove-cart-item">;
37253
-
37254
- type Func = ReturnType<typeof updateCartLineOperation>;
37255
- type Response = Awaited<ReturnType<Func>>;
37256
- type Args = Parameters<Func>[0];
37257
- declare const useUpdateCartItem: (options?: SWRMutationConfiguration<Response, any, Args, 'update-cart-item'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.UpdateCartLineInput, "update-cart-item">;
37430
+ } | undefined;
37431
+ declare const composeShadowCss: ({ hasBoxShadow, boxShadowValue, important, }: {
37432
+ hasBoxShadow?: boolean | undefined;
37433
+ boxShadowValue?: ShadowProps | undefined;
37434
+ important?: boolean | undefined;
37435
+ }) => string | undefined;
37258
37436
 
37259
- declare const useLocale: () => {
37260
- locale: string | undefined;
37261
- changeLocale: (locale: string) => void;
37262
- };
37263
- declare const useCurrency: () => {
37264
- currency: string | undefined;
37265
- changeCurrency: (currency: string) => void;
37266
- };
37267
- declare const useMoneyFormat: () => {
37268
- moneyFormat: string | undefined;
37269
- moneyWithCurrencyFormat: string | undefined;
37270
- };
37271
- declare const useSwatches: () => {
37272
- swatches: GlobalSwatchesData[] | undefined;
37273
- changeSwatches: (swatches: GlobalSwatchesData[]) => void;
37274
- };
37275
- declare const usePageType: () => PublishedThemePageType$1;
37276
- declare const useStoreFront: () => {
37277
- provider: "SHOPIFY" | "BIGCOMMERCE" | undefined;
37278
- storefrontToken: string | undefined;
37279
- storefrontUrl: string | undefined;
37437
+ declare const composeSize: (size?: ObjectDevices<SizeProps>) => React.CSSProperties;
37438
+ declare function genSizeClass(name: string): string;
37439
+ declare const composeSizeCss: (spacing?: SizeSetting) => string | undefined;
37440
+ declare const makeGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
37441
+ width: Record<ResponsiveKey<"w">, string | number>;
37442
+ height: Record<ResponsiveKey<"h">, string | number>;
37443
+ padding: React.CSSProperties;
37444
+ gap: {
37445
+ '--gg': string | undefined;
37446
+ '--gg-tablet': string | undefined;
37447
+ '--gg-mobile': string | undefined;
37448
+ };
37280
37449
  };
37281
- declare const usePluginEnable: () => string[] | undefined;
37282
- declare const useEditorMode: () => RenderMode | undefined;
37283
- declare const useMobileOnly: () => boolean | undefined;
37284
- declare const useMatchMutate: () => <T = any>(matcher: RegExp, opts?: boolean | MutatorOptions<T> | undefined) => Promise<(T | undefined)[][]>;
37285
- declare function useConnectedShopify(): boolean;
37286
- declare function useIsSampleProduct(): boolean | undefined;
37287
- declare function useIsStorefrontProduct(): boolean | undefined;
37288
- declare function useCheckoutUrl(url?: string): string | undefined;
37289
-
37290
- declare const useCollectionQuery: (args?: FetchCollectionArgs, options?: SWRConfiguration<CollectionDetailFilterQueryResponse>) => swr__internal.SWRResponse<CollectionDetailFilterQueryResponse, any, Partial<swr__internal.PublicConfiguration<CollectionDetailFilterQueryResponse, any, (arg: ["query/collection", FetchCollectionArgs]) => swr__internal.FetcherResponse<CollectionDetailFilterQueryResponse>>> | undefined>;
37291
-
37292
- declare const useCollectionsQuery: (variable: CollectionsQueryVariables, options?: SWRConfiguration<CollectionsQueryResponse>) => swr__internal.SWRResponse<CollectionsQueryResponse, any, Partial<swr__internal.PublicConfiguration<CollectionsQueryResponse, any, (arg: ["query/collections", Exact$1<{
37293
- after?: InputMaybe$1<string>;
37294
- first?: InputMaybe$1<number>;
37295
- before?: InputMaybe$1<string>;
37296
- last?: InputMaybe$1<number>;
37297
- where?: InputMaybe$1<CollectionWhereInput$1>;
37298
- orderBy?: InputMaybe$1<CollectionOrder$1>;
37299
- }>]) => swr__internal.FetcherResponse<CollectionsQueryResponse>>> | undefined>;
37300
-
37301
- declare const useProductQuery: (productId?: string, options?: SWRConfiguration<ProductSelectFragment>, customFetcher?: FetchFunc) => swr__internal.SWRResponse<ProductSelectFragment, any, Partial<swr__internal.PublicConfiguration<ProductSelectFragment, any, (arg: ["query/product", FetchProductParams]) => swr__internal.FetcherResponse<ProductSelectFragment>>> | undefined>;
37302
-
37303
- declare const useProductsQuery: (ids?: string[], options?: SWRConfiguration<ProductsQueryResponse>, params?: {
37304
- defaultSelectedProductCount?: number;
37305
- allStatus?: boolean;
37306
- fetcher?: FetchFunc;
37307
- }) => swr__internal.SWRResponse<ProductsQueryResponse, any, Partial<swr__internal.PublicConfiguration<ProductsQueryResponse, any, (arg: ["query/products", FetchProductsParams]) => swr__internal.FetcherResponse<ProductsQueryResponse>>> | undefined>;
37308
- declare const useProductsQueryAll: (variable?: VariableRelatedStyles | undefined, options?: SWRConfiguration<ProductsQueryResponse>) => swr__internal.SWRResponse<ProductsQueryResponse, any, Partial<swr__internal.PublicConfiguration<ProductsQueryResponse, any, (arg: ["query/products", any]) => swr__internal.FetcherResponse<ProductsQueryResponse>>> | undefined>;
37309
-
37310
- declare const useCurrentDevice: () => NameDevices$1;
37311
-
37312
- declare const shopifyPriceRounding: (amount: number | string, precision?: number) => string;
37313
- declare const formatMoney: (cents: string, format: any) => string;
37314
- declare const useFormatMoney: (amount: number, withCurrency: boolean) => string;
37315
-
37316
- declare const useLazyVideo: () => void;
37317
-
37318
- declare const useCartId: () => {
37319
- cartId: string | null | undefined;
37320
- updateCartId: (val?: string | null) => void;
37321
- clearCartId: () => void;
37450
+ declare const makeGlobalSizeIcon: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
37451
+ width: Record<ResponsiveKey<"w">, string | number>;
37452
+ height: Record<ResponsiveKey<"h">, string | number>;
37453
+ minWidth: Record<ResponsiveKey<"minw">, string | number>;
37454
+ padding: React.CSSProperties;
37322
37455
  };
37323
-
37324
- declare const useCartLine: () => _gem_sdk_adapter_common_dist_types_types_cart.LineItem;
37325
-
37326
- declare function useCartUI(): {
37327
- isCartOpen: boolean | undefined;
37328
- openCart: () => void;
37329
- closeCart: () => void;
37456
+ declare const getGlobalSizeGap: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
37457
+ '--gg': string | undefined;
37458
+ '--gg-tablet': string | undefined;
37459
+ '--gg-mobile': string | undefined;
37330
37460
  };
37461
+ declare const makeStyleWithDefault: <T extends ShortHandProperty, K>(name: T, value?: Partial<Record<NameDevices$1, K>> | undefined, defaultVal?: Partial<Record<NameDevices$1, K>> | undefined) => Record<ResponsiveKey<T>, K>;
37462
+ declare const getWidthHeightGlobalSize: (type: 'width' | 'height', globalSize?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string | number>>;
37463
+ declare const getHeightByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string>>;
37464
+ declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean) => Partial<Record<NameDevices$1, string>>;
37465
+ declare const getAspectRatioGlobalSize: (shape?: ObjectDevices<SizeSettingGlobal>) => ObjectDevices<string>;
37466
+ declare const getPaddingGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => React.CSSProperties;
37467
+ declare const getValueByDevice: <T>(value: any, device: NameDevices$1) => T;
37331
37468
 
37332
- declare const useCollection: () => CollectionSelectFragment | undefined;
37333
-
37334
- declare const useIsomorphicLayoutEffect: typeof useLayoutEffect;
37335
-
37336
- type LoadScriptParams = Parameters<typeof loadScript>;
37337
- type ScriptState = 'loading' | 'done' | 'error';
37338
- /**
37339
- * The `useLoadScript` hook loads an external script tag on the client-side.
37340
- */
37341
- declare function useLoadScript(url: LoadScriptParams[0], options?: LoadScriptParams[1]): ScriptState;
37342
-
37343
- type UseMoneyValue = {
37344
- /**
37345
- * The currency code from the `MoneyV2` object.
37346
- */
37347
- currencyCode: string;
37348
- /**
37349
- * The name for the currency code, returned by `Intl.NumberFormat`.
37350
- */
37351
- currencyName?: string;
37352
- /**
37353
- * The currency symbol returned by `Intl.NumberFormat`.
37354
- */
37355
- currencySymbol?: string;
37356
- /**
37357
- * The currency narrow symbol returned by `Intl.NumberFormat`.
37358
- */
37359
- currencyNarrowSymbol?: string;
37469
+ type TypographyClass = `gp-g-${TypographyType}`;
37470
+ declare const genTypoClass: (name: TypographyType) => TypographyClass;
37471
+ declare const composeTypographyCss: (typography: TypographySetting | undefined) => string;
37472
+ declare const composeTypographyV2Css: (typography: TypographySettingV2 | undefined, isImportant?: boolean) => string;
37473
+ declare const composeTypography: (typography?: ObjectDevices<TypographyProps>) => React.CSSProperties;
37474
+ declare const composeTypographyV2: (value?: TypographyV2Props, attrs?: TypographyV2Attrs) => React.CSSProperties;
37475
+ declare const composeFontFamilyTypographyV2: (value?: TypographyV2Props & {
37476
+ type?: string;
37477
+ }) => string | undefined;
37478
+ declare const composeTypographyAttr: (attrs?: TypographyV2Attrs) => React.CSSProperties;
37479
+ declare const composeTypographyClassName: (typo?: TypographySettingV2, typography?: TypographySetting) => "" | "gp-g-heading-1" | "gp-g-heading-2" | "gp-g-heading-3" | "gp-g-subheading-1" | "gp-g-subheading-2" | "gp-g-subheading-3" | "gp-g-paragraph-1" | "gp-g-paragraph-2" | "gp-g-paragraph-3" | undefined;
37480
+ declare const composeFallbackTypographyStyle: (tag: string) => "var(--g-font-heading, heading)" | "var(--g-font-body, body)";
37481
+ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?: TypographySetting, disableAttr?: boolean) => {
37482
+ [x: string]: any;
37483
+ '--ai'?: csstype.Property.AlignItems | undefined;
37484
+ '--hvr-ai'?: csstype.Property.AlignItems | undefined;
37485
+ '--focus-ai'?: csstype.Property.AlignItems | undefined;
37486
+ '--ai-tablet'?: csstype.Property.AlignItems | undefined;
37487
+ '--hvr-ai-tablet'?: csstype.Property.AlignItems | undefined;
37488
+ '--focus-ai-tablet'?: csstype.Property.AlignItems | undefined;
37489
+ '--ai-mobile'?: csstype.Property.AlignItems | undefined;
37490
+ '--hvr-ai-mobile'?: csstype.Property.AlignItems | undefined;
37491
+ '--focus-ai-mobile'?: csstype.Property.AlignItems | undefined;
37492
+ '--aspect'?: csstype.Property.AspectRatio | undefined;
37493
+ '--hvr-aspect'?: csstype.Property.AspectRatio | undefined;
37494
+ '--focus-aspect'?: csstype.Property.AspectRatio | undefined;
37495
+ '--aspect-tablet'?: csstype.Property.AspectRatio | undefined;
37496
+ '--hvr-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
37497
+ '--focus-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
37498
+ '--aspect-mobile'?: csstype.Property.AspectRatio | undefined;
37499
+ '--hvr-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
37500
+ '--focus-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
37501
+ '--bg'?: csstype.Property.Background<string | number> | undefined;
37502
+ '--hvr-bg'?: csstype.Property.Background<string | number> | undefined;
37503
+ '--focus-bg'?: csstype.Property.Background<string | number> | undefined;
37504
+ '--bg-tablet'?: csstype.Property.Background<string | number> | undefined;
37505
+ '--hvr-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
37506
+ '--focus-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
37507
+ '--bg-mobile'?: csstype.Property.Background<string | number> | undefined;
37508
+ '--hvr-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
37509
+ '--focus-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
37510
+ '--bga'?: csstype.Property.BackgroundAttachment | undefined;
37511
+ '--hvr-bga'?: csstype.Property.BackgroundAttachment | undefined;
37512
+ '--focus-bga'?: csstype.Property.BackgroundAttachment | undefined;
37513
+ '--bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
37514
+ '--hvr-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
37515
+ '--focus-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
37516
+ '--bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
37517
+ '--hvr-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
37518
+ '--focus-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
37519
+ '--bgc'?: csstype.Property.BackgroundColor | undefined;
37520
+ '--hvr-bgc'?: csstype.Property.BackgroundColor | undefined;
37521
+ '--focus-bgc'?: csstype.Property.BackgroundColor | undefined;
37522
+ '--bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
37523
+ '--hvr-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
37524
+ '--focus-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
37525
+ '--bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
37526
+ '--hvr-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
37527
+ '--focus-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
37528
+ '--bgi'?: csstype.Property.BackgroundImage | undefined;
37529
+ '--hvr-bgi'?: csstype.Property.BackgroundImage | undefined;
37530
+ '--focus-bgi'?: csstype.Property.BackgroundImage | undefined;
37531
+ '--bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
37532
+ '--hvr-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
37533
+ '--focus-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
37534
+ '--bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
37535
+ '--hvr-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
37536
+ '--focus-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
37537
+ '--bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
37538
+ '--hvr-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
37539
+ '--focus-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
37540
+ '--bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
37541
+ '--hvr-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
37542
+ '--focus-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
37543
+ '--bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
37544
+ '--hvr-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
37545
+ '--focus-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
37546
+ '--bgr'?: csstype.Property.BackgroundRepeat | undefined;
37547
+ '--hvr-bgr'?: csstype.Property.BackgroundRepeat | undefined;
37548
+ '--focus-bgr'?: csstype.Property.BackgroundRepeat | undefined;
37549
+ '--bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
37550
+ '--hvr-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
37551
+ '--focus-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
37552
+ '--bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
37553
+ '--hvr-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
37554
+ '--focus-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
37555
+ '--bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
37556
+ '--hvr-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
37557
+ '--focus-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
37558
+ '--bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
37559
+ '--hvr-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
37560
+ '--focus-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
37561
+ '--bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
37562
+ '--hvr-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
37563
+ '--focus-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
37564
+ '--b'?: csstype.Property.Border<string | number> | undefined;
37565
+ '--hvr-b'?: csstype.Property.Border<string | number> | undefined;
37566
+ '--focus-b'?: csstype.Property.Border<string | number> | undefined;
37567
+ '--b-tablet'?: csstype.Property.Border<string | number> | undefined;
37568
+ '--hvr-b-tablet'?: csstype.Property.Border<string | number> | undefined;
37569
+ '--focus-b-tablet'?: csstype.Property.Border<string | number> | undefined;
37570
+ '--b-mobile'?: csstype.Property.Border<string | number> | undefined;
37571
+ '--hvr-b-mobile'?: csstype.Property.Border<string | number> | undefined;
37572
+ '--focus-b-mobile'?: csstype.Property.Border<string | number> | undefined;
37573
+ '--bb'?: csstype.Property.BorderBottom<string | number> | undefined;
37574
+ '--hvr-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
37575
+ '--focus-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
37576
+ '--bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
37577
+ '--hvr-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
37578
+ '--focus-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
37579
+ '--bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
37580
+ '--hvr-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
37581
+ '--focus-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
37582
+ '--bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
37583
+ '--hvr-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
37584
+ '--focus-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
37585
+ '--bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
37586
+ '--hvr-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
37587
+ '--focus-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
37588
+ '--bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
37589
+ '--hvr-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
37590
+ '--focus-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
37591
+ '--bbc'?: csstype.Property.BorderBottomColor | undefined;
37592
+ '--hvr-bbc'?: csstype.Property.BorderBottomColor | undefined;
37593
+ '--focus-bbc'?: csstype.Property.BorderBottomColor | undefined;
37594
+ '--bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
37595
+ '--hvr-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
37596
+ '--focus-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
37597
+ '--bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
37598
+ '--hvr-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
37599
+ '--focus-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
37600
+ '--bc'?: csstype.Property.BorderColor | undefined;
37601
+ '--hvr-bc'?: csstype.Property.BorderColor | undefined;
37602
+ '--focus-bc'?: csstype.Property.BorderColor | undefined;
37603
+ '--bc-tablet'?: csstype.Property.BorderColor | undefined;
37604
+ '--hvr-bc-tablet'?: csstype.Property.BorderColor | undefined;
37605
+ '--focus-bc-tablet'?: csstype.Property.BorderColor | undefined;
37606
+ '--bc-mobile'?: csstype.Property.BorderColor | undefined;
37607
+ '--hvr-bc-mobile'?: csstype.Property.BorderColor | undefined;
37608
+ '--focus-bc-mobile'?: csstype.Property.BorderColor | undefined;
37609
+ '--bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37610
+ '--hvr-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37611
+ '--focus-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37612
+ '--bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37613
+ '--hvr-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37614
+ '--focus-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37615
+ '--bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37616
+ '--hvr-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37617
+ '--focus-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
37618
+ '--bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37619
+ '--hvr-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37620
+ '--focus-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37621
+ '--bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37622
+ '--hvr-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37623
+ '--focus-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37624
+ '--bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37625
+ '--hvr-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37626
+ '--focus-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
37627
+ '--bl'?: csstype.Property.BorderLeft<string | number> | undefined;
37628
+ '--hvr-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
37629
+ '--focus-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
37630
+ '--bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
37631
+ '--hvr-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
37632
+ '--focus-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
37633
+ '--bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
37634
+ '--hvr-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
37635
+ '--focus-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
37636
+ '--radius'?: csstype.Property.BorderRadius<string | number> | undefined;
37637
+ '--hvr-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
37638
+ '--focus-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
37639
+ '--radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
37640
+ '--hvr-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
37641
+ '--focus-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
37642
+ '--radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
37643
+ '--hvr-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
37644
+ '--focus-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
37645
+ '--br'?: csstype.Property.BorderRight<string | number> | undefined;
37646
+ '--hvr-br'?: csstype.Property.BorderRight<string | number> | undefined;
37647
+ '--focus-br'?: csstype.Property.BorderRight<string | number> | undefined;
37648
+ '--br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
37649
+ '--hvr-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
37650
+ '--focus-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
37651
+ '--br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
37652
+ '--hvr-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
37653
+ '--focus-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
37654
+ '--bs'?: csstype.Property.BorderStyle | undefined;
37655
+ '--hvr-bs'?: csstype.Property.BorderStyle | undefined;
37656
+ '--focus-bs'?: csstype.Property.BorderStyle | undefined;
37657
+ '--bs-tablet'?: csstype.Property.BorderStyle | undefined;
37658
+ '--hvr-bs-tablet'?: csstype.Property.BorderStyle | undefined;
37659
+ '--focus-bs-tablet'?: csstype.Property.BorderStyle | undefined;
37660
+ '--bs-mobile'?: csstype.Property.BorderStyle | undefined;
37661
+ '--hvr-bs-mobile'?: csstype.Property.BorderStyle | undefined;
37662
+ '--focus-bs-mobile'?: csstype.Property.BorderStyle | undefined;
37663
+ '--bt'?: csstype.Property.BorderTop<string | number> | undefined;
37664
+ '--hvr-bt'?: csstype.Property.BorderTop<string | number> | undefined;
37665
+ '--focus-bt'?: csstype.Property.BorderTop<string | number> | undefined;
37666
+ '--bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
37667
+ '--hvr-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
37668
+ '--focus-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
37669
+ '--bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
37670
+ '--hvr-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
37671
+ '--focus-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
37672
+ '--btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37673
+ '--hvr-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37674
+ '--focus-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37675
+ '--btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37676
+ '--hvr-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37677
+ '--focus-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37678
+ '--btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37679
+ '--hvr-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37680
+ '--focus-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
37681
+ '--btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37682
+ '--hvr-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37683
+ '--focus-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37684
+ '--btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37685
+ '--hvr-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37686
+ '--focus-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37687
+ '--btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37688
+ '--hvr-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37689
+ '--focus-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
37690
+ '--bw'?: csstype.Property.BorderWidth<string | number> | undefined;
37691
+ '--hvr-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
37692
+ '--focus-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
37693
+ '--bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
37694
+ '--hvr-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
37695
+ '--focus-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
37696
+ '--bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
37697
+ '--hvr-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
37698
+ '--focus-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
37699
+ '--bottom'?: csstype.Property.Bottom<string | number> | undefined;
37700
+ '--hvr-bottom'?: csstype.Property.Bottom<string | number> | undefined;
37701
+ '--focus-bottom'?: csstype.Property.Bottom<string | number> | undefined;
37702
+ '--bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
37703
+ '--hvr-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
37704
+ '--focus-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
37705
+ '--bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
37706
+ '--hvr-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
37707
+ '--focus-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
37708
+ '--shadow'?: csstype.Property.BoxShadow | undefined;
37709
+ '--hvr-shadow'?: csstype.Property.BoxShadow | undefined;
37710
+ '--focus-shadow'?: csstype.Property.BoxShadow | undefined;
37711
+ '--shadow-tablet'?: csstype.Property.BoxShadow | undefined;
37712
+ '--hvr-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
37713
+ '--focus-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
37714
+ '--shadow-mobile'?: csstype.Property.BoxShadow | undefined;
37715
+ '--hvr-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
37716
+ '--focus-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
37717
+ '--c'?: csstype.Property.Color | undefined;
37718
+ '--hvr-c'?: csstype.Property.Color | undefined;
37719
+ '--focus-c'?: csstype.Property.Color | undefined;
37720
+ '--c-tablet'?: csstype.Property.Color | undefined;
37721
+ '--hvr-c-tablet'?: csstype.Property.Color | undefined;
37722
+ '--focus-c-tablet'?: csstype.Property.Color | undefined;
37723
+ '--c-mobile'?: csstype.Property.Color | undefined;
37724
+ '--hvr-c-mobile'?: csstype.Property.Color | undefined;
37725
+ '--focus-c-mobile'?: csstype.Property.Color | undefined;
37726
+ '--cg'?: csstype.Property.ColumnGap<string | number> | undefined;
37727
+ '--hvr-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
37728
+ '--focus-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
37729
+ '--cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
37730
+ '--hvr-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
37731
+ '--focus-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
37732
+ '--cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
37733
+ '--hvr-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
37734
+ '--focus-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
37735
+ '--d'?: csstype.Property.Display | undefined;
37736
+ '--hvr-d'?: csstype.Property.Display | undefined;
37737
+ '--focus-d'?: csstype.Property.Display | undefined;
37738
+ '--d-tablet'?: csstype.Property.Display | undefined;
37739
+ '--hvr-d-tablet'?: csstype.Property.Display | undefined;
37740
+ '--focus-d-tablet'?: csstype.Property.Display | undefined;
37741
+ '--d-mobile'?: csstype.Property.Display | undefined;
37742
+ '--hvr-d-mobile'?: csstype.Property.Display | undefined;
37743
+ '--focus-d-mobile'?: csstype.Property.Display | undefined;
37744
+ '--fd'?: csstype.Property.FlexDirection | undefined;
37745
+ '--hvr-fd'?: csstype.Property.FlexDirection | undefined;
37746
+ '--focus-fd'?: csstype.Property.FlexDirection | undefined;
37747
+ '--fd-tablet'?: csstype.Property.FlexDirection | undefined;
37748
+ '--hvr-fd-tablet'?: csstype.Property.FlexDirection | undefined;
37749
+ '--focus-fd-tablet'?: csstype.Property.FlexDirection | undefined;
37750
+ '--fd-mobile'?: csstype.Property.FlexDirection | undefined;
37751
+ '--hvr-fd-mobile'?: csstype.Property.FlexDirection | undefined;
37752
+ '--focus-fd-mobile'?: csstype.Property.FlexDirection | undefined;
37753
+ '--ff'?: csstype.Property.FontFamily | undefined;
37754
+ '--hvr-ff'?: csstype.Property.FontFamily | undefined;
37755
+ '--focus-ff'?: csstype.Property.FontFamily | undefined;
37756
+ '--ff-tablet'?: csstype.Property.FontFamily | undefined;
37757
+ '--hvr-ff-tablet'?: csstype.Property.FontFamily | undefined;
37758
+ '--focus-ff-tablet'?: csstype.Property.FontFamily | undefined;
37759
+ '--ff-mobile'?: csstype.Property.FontFamily | undefined;
37760
+ '--hvr-ff-mobile'?: csstype.Property.FontFamily | undefined;
37761
+ '--focus-ff-mobile'?: csstype.Property.FontFamily | undefined;
37762
+ '--size'?: csstype.Property.FontSize<string | number> | undefined;
37763
+ '--hvr-size'?: csstype.Property.FontSize<string | number> | undefined;
37764
+ '--focus-size'?: csstype.Property.FontSize<string | number> | undefined;
37765
+ '--size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
37766
+ '--hvr-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
37767
+ '--focus-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
37768
+ '--size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
37769
+ '--hvr-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
37770
+ '--focus-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
37771
+ '--weight'?: csstype.Property.FontWeight | undefined;
37772
+ '--hvr-weight'?: csstype.Property.FontWeight | undefined;
37773
+ '--focus-weight'?: csstype.Property.FontWeight | undefined;
37774
+ '--weight-tablet'?: csstype.Property.FontWeight | undefined;
37775
+ '--hvr-weight-tablet'?: csstype.Property.FontWeight | undefined;
37776
+ '--focus-weight-tablet'?: csstype.Property.FontWeight | undefined;
37777
+ '--weight-mobile'?: csstype.Property.FontWeight | undefined;
37778
+ '--hvr-weight-mobile'?: csstype.Property.FontWeight | undefined;
37779
+ '--focus-weight-mobile'?: csstype.Property.FontWeight | undefined;
37780
+ '--fs'?: csstype.Property.FontStyle | undefined;
37781
+ '--hvr-fs'?: csstype.Property.FontStyle | undefined;
37782
+ '--focus-fs'?: csstype.Property.FontStyle | undefined;
37783
+ '--fs-tablet'?: csstype.Property.FontStyle | undefined;
37784
+ '--hvr-fs-tablet'?: csstype.Property.FontStyle | undefined;
37785
+ '--focus-fs-tablet'?: csstype.Property.FontStyle | undefined;
37786
+ '--fs-mobile'?: csstype.Property.FontStyle | undefined;
37787
+ '--hvr-fs-mobile'?: csstype.Property.FontStyle | undefined;
37788
+ '--focus-fs-mobile'?: csstype.Property.FontStyle | undefined;
37789
+ '--gg'?: csstype.Property.GridGap<string | number> | undefined;
37790
+ '--hvr-gg'?: csstype.Property.GridGap<string | number> | undefined;
37791
+ '--focus-gg'?: csstype.Property.GridGap<string | number> | undefined;
37792
+ '--gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
37793
+ '--hvr-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
37794
+ '--focus-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
37795
+ '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
37796
+ '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
37797
+ '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
37798
+ '--gr'?: csstype.Property.GridRow | undefined;
37799
+ '--hvr-gr'?: csstype.Property.GridRow | undefined;
37800
+ '--focus-gr'?: csstype.Property.GridRow | undefined;
37801
+ '--gr-tablet'?: csstype.Property.GridRow | undefined;
37802
+ '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
37803
+ '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
37804
+ '--gr-mobile'?: csstype.Property.GridRow | undefined;
37805
+ '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
37806
+ '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
37807
+ '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
37808
+ '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
37809
+ '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
37810
+ '--gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
37811
+ '--hvr-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
37812
+ '--focus-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
37813
+ '--gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
37814
+ '--hvr-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
37815
+ '--focus-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
37816
+ '--gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
37817
+ '--hvr-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
37818
+ '--focus-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
37819
+ '--gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
37820
+ '--hvr-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
37821
+ '--focus-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
37822
+ '--gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
37823
+ '--hvr-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
37824
+ '--focus-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
37825
+ '--h'?: csstype.Property.Height<string | number> | undefined;
37826
+ '--hvr-h'?: csstype.Property.Height<string | number> | undefined;
37827
+ '--focus-h'?: csstype.Property.Height<string | number> | undefined;
37828
+ '--h-tablet'?: csstype.Property.Height<string | number> | undefined;
37829
+ '--hvr-h-tablet'?: csstype.Property.Height<string | number> | undefined;
37830
+ '--focus-h-tablet'?: csstype.Property.Height<string | number> | undefined;
37831
+ '--h-mobile'?: csstype.Property.Height<string | number> | undefined;
37832
+ '--hvr-h-mobile'?: csstype.Property.Height<string | number> | undefined;
37833
+ '--focus-h-mobile'?: csstype.Property.Height<string | number> | undefined;
37834
+ '--jc'?: csstype.Property.JustifyContent | undefined;
37835
+ '--hvr-jc'?: csstype.Property.JustifyContent | undefined;
37836
+ '--focus-jc'?: csstype.Property.JustifyContent | undefined;
37837
+ '--jc-tablet'?: csstype.Property.JustifyContent | undefined;
37838
+ '--hvr-jc-tablet'?: csstype.Property.JustifyContent | undefined;
37839
+ '--focus-jc-tablet'?: csstype.Property.JustifyContent | undefined;
37840
+ '--jc-mobile'?: csstype.Property.JustifyContent | undefined;
37841
+ '--hvr-jc-mobile'?: csstype.Property.JustifyContent | undefined;
37842
+ '--focus-jc-mobile'?: csstype.Property.JustifyContent | undefined;
37843
+ '--left'?: csstype.Property.Left<string | number> | undefined;
37844
+ '--hvr-left'?: csstype.Property.Left<string | number> | undefined;
37845
+ '--focus-left'?: csstype.Property.Left<string | number> | undefined;
37846
+ '--left-tablet'?: csstype.Property.Left<string | number> | undefined;
37847
+ '--hvr-left-tablet'?: csstype.Property.Left<string | number> | undefined;
37848
+ '--focus-left-tablet'?: csstype.Property.Left<string | number> | undefined;
37849
+ '--left-mobile'?: csstype.Property.Left<string | number> | undefined;
37850
+ '--hvr-left-mobile'?: csstype.Property.Left<string | number> | undefined;
37851
+ '--focus-left-mobile'?: csstype.Property.Left<string | number> | undefined;
37852
+ '--ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
37853
+ '--hvr-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
37854
+ '--focus-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
37855
+ '--ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
37856
+ '--hvr-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
37857
+ '--focus-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
37858
+ '--ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
37859
+ '--hvr-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
37860
+ '--focus-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
37861
+ '--line-clamp'?: any;
37862
+ '--hvr-line-clamp'?: any;
37863
+ '--focus-line-clamp'?: any;
37864
+ '--line-clamp-tablet'?: any;
37865
+ '--hvr-line-clamp-tablet'?: any;
37866
+ '--focus-line-clamp-tablet'?: any;
37867
+ '--line-clamp-mobile'?: any;
37868
+ '--hvr-line-clamp-mobile'?: any;
37869
+ '--focus-line-clamp-mobile'?: any;
37870
+ '--lh'?: csstype.Property.LineHeight<string | number> | undefined;
37871
+ '--hvr-lh'?: csstype.Property.LineHeight<string | number> | undefined;
37872
+ '--focus-lh'?: csstype.Property.LineHeight<string | number> | undefined;
37873
+ '--lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
37874
+ '--hvr-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
37875
+ '--focus-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
37876
+ '--lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
37877
+ '--hvr-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
37878
+ '--focus-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
37879
+ '--tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
37880
+ '--hvr-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
37881
+ '--focus-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
37882
+ '--tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
37883
+ '--hvr-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
37884
+ '--focus-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
37885
+ '--tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
37886
+ '--hvr-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
37887
+ '--focus-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
37888
+ '--tdc'?: csstype.Property.TextDecorationColor | undefined;
37889
+ '--hvr-tdc'?: csstype.Property.TextDecorationColor | undefined;
37890
+ '--focus-tdc'?: csstype.Property.TextDecorationColor | undefined;
37891
+ '--tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
37892
+ '--hvr-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
37893
+ '--focus-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
37894
+ '--tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
37895
+ '--hvr-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
37896
+ '--focus-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
37897
+ '--tdl'?: csstype.Property.TextDecorationLine | undefined;
37898
+ '--hvr-tdl'?: csstype.Property.TextDecorationLine | undefined;
37899
+ '--focus-tdl'?: csstype.Property.TextDecorationLine | undefined;
37900
+ '--tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
37901
+ '--hvr-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
37902
+ '--focus-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
37903
+ '--tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
37904
+ '--hvr-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
37905
+ '--focus-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
37906
+ '--m'?: csstype.Property.Margin<string | number> | undefined;
37907
+ '--hvr-m'?: csstype.Property.Margin<string | number> | undefined;
37908
+ '--focus-m'?: csstype.Property.Margin<string | number> | undefined;
37909
+ '--m-tablet'?: csstype.Property.Margin<string | number> | undefined;
37910
+ '--hvr-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
37911
+ '--focus-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
37912
+ '--m-mobile'?: csstype.Property.Margin<string | number> | undefined;
37913
+ '--hvr-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
37914
+ '--focus-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
37915
+ '--mb'?: csstype.Property.MarginBottom<string | number> | undefined;
37916
+ '--hvr-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
37917
+ '--focus-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
37918
+ '--mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
37919
+ '--hvr-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
37920
+ '--focus-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
37921
+ '--mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
37922
+ '--hvr-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
37923
+ '--focus-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
37924
+ '--ml'?: csstype.Property.MarginLeft<string | number> | undefined;
37925
+ '--hvr-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
37926
+ '--focus-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
37927
+ '--ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
37928
+ '--hvr-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
37929
+ '--focus-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
37930
+ '--ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
37931
+ '--hvr-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
37932
+ '--focus-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
37933
+ '--mr'?: csstype.Property.MarginRight<string | number> | undefined;
37934
+ '--hvr-mr'?: csstype.Property.MarginRight<string | number> | undefined;
37935
+ '--focus-mr'?: csstype.Property.MarginRight<string | number> | undefined;
37936
+ '--mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
37937
+ '--hvr-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
37938
+ '--focus-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
37939
+ '--mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
37940
+ '--hvr-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
37941
+ '--focus-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
37942
+ '--mt'?: csstype.Property.MarginTop<string | number> | undefined;
37943
+ '--hvr-mt'?: csstype.Property.MarginTop<string | number> | undefined;
37944
+ '--focus-mt'?: csstype.Property.MarginTop<string | number> | undefined;
37945
+ '--mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
37946
+ '--hvr-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
37947
+ '--focus-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
37948
+ '--mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
37949
+ '--hvr-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
37950
+ '--focus-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
37951
+ '--maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
37952
+ '--hvr-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
37953
+ '--focus-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
37954
+ '--maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
37955
+ '--hvr-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
37956
+ '--focus-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
37957
+ '--maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
37958
+ '--hvr-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
37959
+ '--focus-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
37960
+ '--maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
37961
+ '--hvr-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
37962
+ '--focus-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
37963
+ '--maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
37964
+ '--hvr-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
37965
+ '--focus-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
37966
+ '--maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
37967
+ '--hvr-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
37968
+ '--focus-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
37969
+ '--minh'?: csstype.Property.MinHeight<string | number> | undefined;
37970
+ '--hvr-minh'?: csstype.Property.MinHeight<string | number> | undefined;
37971
+ '--focus-minh'?: csstype.Property.MinHeight<string | number> | undefined;
37972
+ '--minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
37973
+ '--hvr-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
37974
+ '--focus-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
37975
+ '--minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
37976
+ '--hvr-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
37977
+ '--focus-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
37978
+ '--minw'?: csstype.Property.MinWidth<string | number> | undefined;
37979
+ '--hvr-minw'?: csstype.Property.MinWidth<string | number> | undefined;
37980
+ '--focus-minw'?: csstype.Property.MinWidth<string | number> | undefined;
37981
+ '--minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
37982
+ '--hvr-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
37983
+ '--focus-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
37984
+ '--minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
37985
+ '--hvr-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
37986
+ '--focus-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
37987
+ '--objf'?: csstype.Property.ObjectFit | undefined;
37988
+ '--hvr-objf'?: csstype.Property.ObjectFit | undefined;
37989
+ '--focus-objf'?: csstype.Property.ObjectFit | undefined;
37990
+ '--objf-tablet'?: csstype.Property.ObjectFit | undefined;
37991
+ '--hvr-objf-tablet'?: csstype.Property.ObjectFit | undefined;
37992
+ '--focus-objf-tablet'?: csstype.Property.ObjectFit | undefined;
37993
+ '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
37994
+ '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
37995
+ '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
37996
+ '--op'?: csstype.Property.Opacity | undefined;
37997
+ '--hvr-op'?: csstype.Property.Opacity | undefined;
37998
+ '--focus-op'?: csstype.Property.Opacity | undefined;
37999
+ '--op-tablet'?: csstype.Property.Opacity | undefined;
38000
+ '--hvr-op-tablet'?: csstype.Property.Opacity | undefined;
38001
+ '--focus-op-tablet'?: csstype.Property.Opacity | undefined;
38002
+ '--op-mobile'?: csstype.Property.Opacity | undefined;
38003
+ '--hvr-op-mobile'?: csstype.Property.Opacity | undefined;
38004
+ '--focus-op-mobile'?: csstype.Property.Opacity | undefined;
38005
+ '--o'?: csstype.Property.Order | undefined;
38006
+ '--hvr-o'?: csstype.Property.Order | undefined;
38007
+ '--focus-o'?: csstype.Property.Order | undefined;
38008
+ '--o-tablet'?: csstype.Property.Order | undefined;
38009
+ '--hvr-o-tablet'?: csstype.Property.Order | undefined;
38010
+ '--focus-o-tablet'?: csstype.Property.Order | undefined;
38011
+ '--o-mobile'?: csstype.Property.Order | undefined;
38012
+ '--hvr-o-mobile'?: csstype.Property.Order | undefined;
38013
+ '--focus-o-mobile'?: csstype.Property.Order | undefined;
38014
+ '--pc'?: csstype.Property.PlaceContent | undefined;
38015
+ '--hvr-pc'?: csstype.Property.PlaceContent | undefined;
38016
+ '--focus-pc'?: csstype.Property.PlaceContent | undefined;
38017
+ '--pc-tablet'?: csstype.Property.PlaceContent | undefined;
38018
+ '--hvr-pc-tablet'?: csstype.Property.PlaceContent | undefined;
38019
+ '--focus-pc-tablet'?: csstype.Property.PlaceContent | undefined;
38020
+ '--pc-mobile'?: csstype.Property.PlaceContent | undefined;
38021
+ '--hvr-pc-mobile'?: csstype.Property.PlaceContent | undefined;
38022
+ '--focus-pc-mobile'?: csstype.Property.PlaceContent | undefined;
38023
+ '--p'?: csstype.Property.Padding<string | number> | undefined;
38024
+ '--hvr-p'?: csstype.Property.Padding<string | number> | undefined;
38025
+ '--focus-p'?: csstype.Property.Padding<string | number> | undefined;
38026
+ '--p-tablet'?: csstype.Property.Padding<string | number> | undefined;
38027
+ '--hvr-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
38028
+ '--focus-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
38029
+ '--p-mobile'?: csstype.Property.Padding<string | number> | undefined;
38030
+ '--hvr-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
38031
+ '--focus-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
38032
+ '--pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
38033
+ '--hvr-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
38034
+ '--focus-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
38035
+ '--pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
38036
+ '--hvr-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
38037
+ '--focus-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
38038
+ '--pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
38039
+ '--hvr-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
38040
+ '--focus-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
38041
+ '--pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
38042
+ '--hvr-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
38043
+ '--focus-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
38044
+ '--pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
38045
+ '--hvr-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
38046
+ '--focus-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
38047
+ '--pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
38048
+ '--hvr-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
38049
+ '--focus-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
38050
+ '--pr'?: csstype.Property.PaddingRight<string | number> | undefined;
38051
+ '--hvr-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
38052
+ '--focus-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
38053
+ '--pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
38054
+ '--hvr-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
38055
+ '--focus-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
38056
+ '--pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
38057
+ '--hvr-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
38058
+ '--focus-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
38059
+ '--pt'?: csstype.Property.PaddingTop<string | number> | undefined;
38060
+ '--hvr-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
38061
+ '--focus-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
38062
+ '--pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
38063
+ '--hvr-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
38064
+ '--focus-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
38065
+ '--pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
38066
+ '--hvr-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
38067
+ '--focus-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
38068
+ '--pe'?: csstype.Property.PointerEvents | undefined;
38069
+ '--hvr-pe'?: csstype.Property.PointerEvents | undefined;
38070
+ '--focus-pe'?: csstype.Property.PointerEvents | undefined;
38071
+ '--pe-tablet'?: csstype.Property.PointerEvents | undefined;
38072
+ '--hvr-pe-tablet'?: csstype.Property.PointerEvents | undefined;
38073
+ '--focus-pe-tablet'?: csstype.Property.PointerEvents | undefined;
38074
+ '--pe-mobile'?: csstype.Property.PointerEvents | undefined;
38075
+ '--hvr-pe-mobile'?: csstype.Property.PointerEvents | undefined;
38076
+ '--focus-pe-mobile'?: csstype.Property.PointerEvents | undefined;
38077
+ '--pos'?: csstype.Property.Position | undefined;
38078
+ '--hvr-pos'?: csstype.Property.Position | undefined;
38079
+ '--focus-pos'?: csstype.Property.Position | undefined;
38080
+ '--pos-tablet'?: csstype.Property.Position | undefined;
38081
+ '--hvr-pos-tablet'?: csstype.Property.Position | undefined;
38082
+ '--focus-pos-tablet'?: csstype.Property.Position | undefined;
38083
+ '--pos-mobile'?: csstype.Property.Position | undefined;
38084
+ '--hvr-pos-mobile'?: csstype.Property.Position | undefined;
38085
+ '--focus-pos-mobile'?: csstype.Property.Position | undefined;
38086
+ '--right'?: csstype.Property.Right<string | number> | undefined;
38087
+ '--hvr-right'?: csstype.Property.Right<string | number> | undefined;
38088
+ '--focus-right'?: csstype.Property.Right<string | number> | undefined;
38089
+ '--right-tablet'?: csstype.Property.Right<string | number> | undefined;
38090
+ '--hvr-right-tablet'?: csstype.Property.Right<string | number> | undefined;
38091
+ '--focus-right-tablet'?: csstype.Property.Right<string | number> | undefined;
38092
+ '--right-mobile'?: csstype.Property.Right<string | number> | undefined;
38093
+ '--hvr-right-mobile'?: csstype.Property.Right<string | number> | undefined;
38094
+ '--focus-right-mobile'?: csstype.Property.Right<string | number> | undefined;
38095
+ '--rg'?: csstype.Property.RowGap<string | number> | undefined;
38096
+ '--hvr-rg'?: csstype.Property.RowGap<string | number> | undefined;
38097
+ '--focus-rg'?: csstype.Property.RowGap<string | number> | undefined;
38098
+ '--rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
38099
+ '--hvr-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
38100
+ '--focus-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
38101
+ '--rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
38102
+ '--hvr-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
38103
+ '--focus-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
38104
+ '--ta'?: csstype.Property.TextAlign | undefined;
38105
+ '--hvr-ta'?: csstype.Property.TextAlign | undefined;
38106
+ '--focus-ta'?: csstype.Property.TextAlign | undefined;
38107
+ '--ta-tablet'?: csstype.Property.TextAlign | undefined;
38108
+ '--hvr-ta-tablet'?: csstype.Property.TextAlign | undefined;
38109
+ '--focus-ta-tablet'?: csstype.Property.TextAlign | undefined;
38110
+ '--ta-mobile'?: csstype.Property.TextAlign | undefined;
38111
+ '--hvr-ta-mobile'?: csstype.Property.TextAlign | undefined;
38112
+ '--focus-ta-mobile'?: csstype.Property.TextAlign | undefined;
38113
+ '--ts'?: csstype.Property.TextShadow | undefined;
38114
+ '--hvr-ts'?: csstype.Property.TextShadow | undefined;
38115
+ '--focus-ts'?: csstype.Property.TextShadow | undefined;
38116
+ '--ts-tablet'?: csstype.Property.TextShadow | undefined;
38117
+ '--hvr-ts-tablet'?: csstype.Property.TextShadow | undefined;
38118
+ '--focus-ts-tablet'?: csstype.Property.TextShadow | undefined;
38119
+ '--ts-mobile'?: csstype.Property.TextShadow | undefined;
38120
+ '--hvr-ts-mobile'?: csstype.Property.TextShadow | undefined;
38121
+ '--focus-ts-mobile'?: csstype.Property.TextShadow | undefined;
38122
+ '--tt'?: csstype.Property.TextTransform | undefined;
38123
+ '--hvr-tt'?: csstype.Property.TextTransform | undefined;
38124
+ '--focus-tt'?: csstype.Property.TextTransform | undefined;
38125
+ '--tt-tablet'?: csstype.Property.TextTransform | undefined;
38126
+ '--hvr-tt-tablet'?: csstype.Property.TextTransform | undefined;
38127
+ '--focus-tt-tablet'?: csstype.Property.TextTransform | undefined;
38128
+ '--tt-mobile'?: csstype.Property.TextTransform | undefined;
38129
+ '--hvr-tt-mobile'?: csstype.Property.TextTransform | undefined;
38130
+ '--focus-tt-mobile'?: csstype.Property.TextTransform | undefined;
38131
+ '--top'?: csstype.Property.Top<string | number> | undefined;
38132
+ '--hvr-top'?: csstype.Property.Top<string | number> | undefined;
38133
+ '--focus-top'?: csstype.Property.Top<string | number> | undefined;
38134
+ '--top-tablet'?: csstype.Property.Top<string | number> | undefined;
38135
+ '--hvr-top-tablet'?: csstype.Property.Top<string | number> | undefined;
38136
+ '--focus-top-tablet'?: csstype.Property.Top<string | number> | undefined;
38137
+ '--top-mobile'?: csstype.Property.Top<string | number> | undefined;
38138
+ '--hvr-top-mobile'?: csstype.Property.Top<string | number> | undefined;
38139
+ '--focus-top-mobile'?: csstype.Property.Top<string | number> | undefined;
38140
+ '--t'?: csstype.Property.Transform | undefined;
38141
+ '--hvr-t'?: csstype.Property.Transform | undefined;
38142
+ '--focus-t'?: csstype.Property.Transform | undefined;
38143
+ '--t-tablet'?: csstype.Property.Transform | undefined;
38144
+ '--hvr-t-tablet'?: csstype.Property.Transform | undefined;
38145
+ '--focus-t-tablet'?: csstype.Property.Transform | undefined;
38146
+ '--t-mobile'?: csstype.Property.Transform | undefined;
38147
+ '--hvr-t-mobile'?: csstype.Property.Transform | undefined;
38148
+ '--focus-t-mobile'?: csstype.Property.Transform | undefined;
38149
+ '--v'?: csstype.Property.Visibility | undefined;
38150
+ '--hvr-v'?: csstype.Property.Visibility | undefined;
38151
+ '--focus-v'?: csstype.Property.Visibility | undefined;
38152
+ '--v-tablet'?: csstype.Property.Visibility | undefined;
38153
+ '--hvr-v-tablet'?: csstype.Property.Visibility | undefined;
38154
+ '--focus-v-tablet'?: csstype.Property.Visibility | undefined;
38155
+ '--v-mobile'?: csstype.Property.Visibility | undefined;
38156
+ '--hvr-v-mobile'?: csstype.Property.Visibility | undefined;
38157
+ '--focus-v-mobile'?: csstype.Property.Visibility | undefined;
38158
+ '--w'?: csstype.Property.Width<string | number> | undefined;
38159
+ '--hvr-w'?: csstype.Property.Width<string | number> | undefined;
38160
+ '--focus-w'?: csstype.Property.Width<string | number> | undefined;
38161
+ '--w-tablet'?: csstype.Property.Width<string | number> | undefined;
38162
+ '--hvr-w-tablet'?: csstype.Property.Width<string | number> | undefined;
38163
+ '--focus-w-tablet'?: csstype.Property.Width<string | number> | undefined;
38164
+ '--w-mobile'?: csstype.Property.Width<string | number> | undefined;
38165
+ '--hvr-w-mobile'?: csstype.Property.Width<string | number> | undefined;
38166
+ '--focus-w-mobile'?: csstype.Property.Width<string | number> | undefined;
38167
+ '--z'?: csstype.Property.ZIndex | undefined;
38168
+ '--hvr-z'?: csstype.Property.ZIndex | undefined;
38169
+ '--focus-z'?: csstype.Property.ZIndex | undefined;
38170
+ '--z-tablet'?: csstype.Property.ZIndex | undefined;
38171
+ '--hvr-z-tablet'?: csstype.Property.ZIndex | undefined;
38172
+ '--focus-z-tablet'?: csstype.Property.ZIndex | undefined;
38173
+ '--z-mobile'?: csstype.Property.ZIndex | undefined;
38174
+ '--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
38175
+ '--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
38176
+ '--wm'?: csstype.Property.WritingMode | undefined;
38177
+ '--hvr-wm'?: csstype.Property.WritingMode | undefined;
38178
+ '--focus-wm'?: csstype.Property.WritingMode | undefined;
38179
+ '--wm-tablet'?: csstype.Property.WritingMode | undefined;
38180
+ '--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
38181
+ '--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
38182
+ '--wm-mobile'?: csstype.Property.WritingMode | undefined;
38183
+ '--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
38184
+ '--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
38185
+ accentColor?: csstype.Property.AccentColor | undefined;
38186
+ alignContent?: csstype.Property.AlignContent | undefined;
38187
+ alignItems?: csstype.Property.AlignItems | undefined;
38188
+ alignSelf?: csstype.Property.AlignSelf | undefined;
38189
+ alignTracks?: csstype.Property.AlignTracks | undefined;
38190
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
38191
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
38192
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
38193
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
38194
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
38195
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
38196
+ animationName?: csstype.Property.AnimationName | undefined;
38197
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
38198
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
38199
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
38200
+ appearance?: csstype.Property.Appearance | undefined;
38201
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
38202
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
38203
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
38204
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
38205
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
38206
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
38207
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
38208
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
38209
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
38210
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
38211
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
38212
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
38213
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
38214
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
38215
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
38216
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
38217
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
38218
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
38219
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
38220
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
38221
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
38222
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
38223
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
38224
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
38225
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
38226
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
38227
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
38228
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
38229
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
38230
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
38231
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
38232
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
38233
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
38234
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
38235
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
38236
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
38237
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
38238
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
38239
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
38240
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
38241
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
38242
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
38243
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
38244
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
38245
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
38246
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
38247
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
38248
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
38249
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
38250
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
38251
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
38252
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
38253
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
38254
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
38255
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
38256
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
38257
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
38258
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
38259
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
38260
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
38261
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
38262
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
38263
+ boxShadow?: csstype.Property.BoxShadow | undefined;
38264
+ boxSizing?: csstype.Property.BoxSizing | undefined;
38265
+ breakAfter?: csstype.Property.BreakAfter | undefined;
38266
+ breakBefore?: csstype.Property.BreakBefore | undefined;
38267
+ breakInside?: csstype.Property.BreakInside | undefined;
38268
+ captionSide?: csstype.Property.CaptionSide | undefined;
38269
+ caretColor?: csstype.Property.CaretColor | undefined;
38270
+ caretShape?: csstype.Property.CaretShape | undefined;
38271
+ clear?: csstype.Property.Clear | undefined;
38272
+ clipPath?: csstype.Property.ClipPath | undefined;
38273
+ color?: csstype.Property.Color | undefined;
38274
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
38275
+ colorScheme?: csstype.Property.ColorScheme | undefined;
38276
+ columnCount?: csstype.Property.ColumnCount | undefined;
38277
+ columnFill?: csstype.Property.ColumnFill | undefined;
38278
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
38279
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
38280
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
38281
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
38282
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
38283
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
38284
+ contain?: csstype.Property.Contain | undefined;
38285
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
38286
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
38287
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
38288
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
38289
+ containerName?: csstype.Property.ContainerName | undefined;
38290
+ containerType?: csstype.Property.ContainerType | undefined;
38291
+ content?: csstype.Property.Content | undefined;
38292
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
38293
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
38294
+ counterReset?: csstype.Property.CounterReset | undefined;
38295
+ counterSet?: csstype.Property.CounterSet | undefined;
38296
+ cursor?: csstype.Property.Cursor | undefined;
38297
+ direction?: csstype.Property.Direction | undefined;
38298
+ display?: csstype.Property.Display | undefined;
38299
+ emptyCells?: csstype.Property.EmptyCells | undefined;
38300
+ filter?: csstype.Property.Filter | undefined;
38301
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
38302
+ flexDirection?: csstype.Property.FlexDirection | undefined;
38303
+ flexGrow?: csstype.Property.FlexGrow | undefined;
38304
+ flexShrink?: csstype.Property.FlexShrink | undefined;
38305
+ flexWrap?: csstype.Property.FlexWrap | undefined;
38306
+ float?: csstype.Property.Float | undefined;
38307
+ fontFamily?: csstype.Property.FontFamily | undefined;
38308
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
38309
+ fontKerning?: csstype.Property.FontKerning | undefined;
38310
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
38311
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
38312
+ fontPalette?: csstype.Property.FontPalette | undefined;
38313
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
38314
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
38315
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
38316
+ fontStretch?: csstype.Property.FontStretch | undefined;
38317
+ fontStyle?: csstype.Property.FontStyle | undefined;
38318
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
38319
+ fontVariant?: csstype.Property.FontVariant | undefined;
38320
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
38321
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
38322
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
38323
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
38324
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
38325
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
38326
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
38327
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
38328
+ fontWeight?: csstype.Property.FontWeight | undefined;
38329
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
38330
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
38331
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
38332
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
38333
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
38334
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
38335
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
38336
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
38337
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
38338
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
38339
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
38340
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
38341
+ height?: csstype.Property.Height<string | number> | undefined;
38342
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
38343
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
38344
+ hyphens?: csstype.Property.Hyphens | undefined;
38345
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
38346
+ imageRendering?: csstype.Property.ImageRendering | undefined;
38347
+ imageResolution?: csstype.Property.ImageResolution | undefined;
38348
+ initialLetter?: csstype.Property.InitialLetter | undefined;
38349
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
38350
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
38351
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
38352
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
38353
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
38354
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
38355
+ isolation?: csstype.Property.Isolation | undefined;
38356
+ justifyContent?: csstype.Property.JustifyContent | undefined;
38357
+ justifyItems?: csstype.Property.JustifyItems | undefined;
38358
+ justifySelf?: csstype.Property.JustifySelf | undefined;
38359
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
38360
+ left?: csstype.Property.Left<string | number> | undefined;
38361
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
38362
+ lineBreak?: csstype.Property.LineBreak | undefined;
38363
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
38364
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
38365
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
38366
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
38367
+ listStyleType?: csstype.Property.ListStyleType | undefined;
38368
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
38369
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
38370
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
38371
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
38372
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
38373
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
38374
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
38375
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
38376
+ marginTrim?: csstype.Property.MarginTrim | undefined;
38377
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
38378
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
38379
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
38380
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
38381
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
38382
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
38383
+ maskClip?: csstype.Property.MaskClip | undefined;
38384
+ maskComposite?: csstype.Property.MaskComposite | undefined;
38385
+ maskImage?: csstype.Property.MaskImage | undefined;
38386
+ maskMode?: csstype.Property.MaskMode | undefined;
38387
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
38388
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
38389
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
38390
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
38391
+ maskType?: csstype.Property.MaskType | undefined;
38392
+ mathDepth?: csstype.Property.MathDepth | undefined;
38393
+ mathShift?: csstype.Property.MathShift | undefined;
38394
+ mathStyle?: csstype.Property.MathStyle | undefined;
38395
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
38396
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
38397
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
38398
+ maxLines?: csstype.Property.MaxLines | undefined;
38399
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
38400
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
38401
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
38402
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
38403
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
38404
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
38405
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
38406
+ motionPath?: csstype.Property.OffsetPath | undefined;
38407
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
38408
+ objectFit?: csstype.Property.ObjectFit | undefined;
38409
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
38410
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
38411
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
38412
+ offsetPath?: csstype.Property.OffsetPath | undefined;
38413
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
38414
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
38415
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
38416
+ opacity?: csstype.Property.Opacity | undefined;
38417
+ order?: csstype.Property.Order | undefined;
38418
+ orphans?: csstype.Property.Orphans | undefined;
38419
+ outlineColor?: csstype.Property.OutlineColor | undefined;
38420
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
38421
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
38422
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
38423
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
38424
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
38425
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
38426
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
38427
+ overflowInline?: csstype.Property.OverflowInline | undefined;
38428
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
38429
+ overflowX?: csstype.Property.OverflowX | undefined;
38430
+ overflowY?: csstype.Property.OverflowY | undefined;
38431
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
38432
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
38433
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
38434
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
38435
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
38436
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
38437
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
38438
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
38439
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
38440
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
38441
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
38442
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
38443
+ page?: csstype.Property.Page | undefined;
38444
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
38445
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
38446
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
38447
+ paintOrder?: csstype.Property.PaintOrder | undefined;
38448
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
38449
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
38450
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
38451
+ position?: csstype.Property.Position | undefined;
38452
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
38453
+ quotes?: csstype.Property.Quotes | undefined;
38454
+ resize?: csstype.Property.Resize | undefined;
38455
+ right?: csstype.Property.Right<string | number> | undefined;
38456
+ rotate?: csstype.Property.Rotate | undefined;
38457
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
38458
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
38459
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
38460
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
38461
+ scale?: csstype.Property.Scale | undefined;
38462
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
38463
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
38464
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
38465
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
38466
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
38467
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
38468
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
38469
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
38470
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
38471
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
38472
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
38473
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
38474
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
38475
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
38476
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
38477
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
38478
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
38479
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
38480
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
38481
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
38482
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
38483
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
38484
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
38485
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
38486
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
38487
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
38488
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
38489
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
38490
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
38491
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
38492
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
38493
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
38494
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
38495
+ tableLayout?: csstype.Property.TableLayout | undefined;
38496
+ textAlign?: csstype.Property.TextAlign | undefined;
38497
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
38498
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
38499
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
38500
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
38501
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
38502
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
38503
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
38504
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
38505
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
38506
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
38507
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
38508
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
38509
+ textJustify?: csstype.Property.TextJustify | undefined;
38510
+ textOrientation?: csstype.Property.TextOrientation | undefined;
38511
+ textOverflow?: csstype.Property.TextOverflow | undefined;
38512
+ textRendering?: csstype.Property.TextRendering | undefined;
38513
+ textShadow?: csstype.Property.TextShadow | undefined;
38514
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
38515
+ textTransform?: csstype.Property.TextTransform | undefined;
38516
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
38517
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
38518
+ top?: csstype.Property.Top<string | number> | undefined;
38519
+ touchAction?: csstype.Property.TouchAction | undefined;
38520
+ transform?: csstype.Property.Transform | undefined;
38521
+ transformBox?: csstype.Property.TransformBox | undefined;
38522
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
38523
+ transformStyle?: csstype.Property.TransformStyle | undefined;
38524
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
38525
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
38526
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
38527
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
38528
+ translate?: csstype.Property.Translate<string | number> | undefined;
38529
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
38530
+ userSelect?: csstype.Property.UserSelect | undefined;
38531
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
38532
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
38533
+ visibility?: csstype.Property.Visibility | undefined;
38534
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
38535
+ widows?: csstype.Property.Widows | undefined;
38536
+ width?: csstype.Property.Width<string | number> | undefined;
38537
+ willChange?: csstype.Property.WillChange | undefined;
38538
+ wordBreak?: csstype.Property.WordBreak | undefined;
38539
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
38540
+ wordWrap?: csstype.Property.WordWrap | undefined;
38541
+ writingMode?: csstype.Property.WritingMode | undefined;
38542
+ zIndex?: csstype.Property.ZIndex | undefined;
38543
+ zoom?: csstype.Property.Zoom | undefined;
38544
+ all?: csstype.Globals | undefined;
38545
+ animation?: csstype.Property.Animation<string & {}> | undefined;
38546
+ background?: csstype.Property.Background<string | number> | undefined;
38547
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
38548
+ border?: csstype.Property.Border<string | number> | undefined;
38549
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
38550
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
38551
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
38552
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
38553
+ borderColor?: csstype.Property.BorderColor | undefined;
38554
+ borderImage?: csstype.Property.BorderImage | undefined;
38555
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
38556
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
38557
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
38558
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
38559
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
38560
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
38561
+ borderStyle?: csstype.Property.BorderStyle | undefined;
38562
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
38563
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
38564
+ caret?: csstype.Property.Caret | undefined;
38565
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
38566
+ columns?: csstype.Property.Columns<string | number> | undefined;
38567
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
38568
+ container?: csstype.Property.Container | undefined;
38569
+ flex?: csstype.Property.Flex<string | number> | undefined;
38570
+ flexFlow?: csstype.Property.FlexFlow | undefined;
38571
+ font?: csstype.Property.Font | undefined;
38572
+ gap?: csstype.Property.Gap<string | number> | undefined;
38573
+ grid?: csstype.Property.Grid | undefined;
38574
+ gridArea?: csstype.Property.GridArea | undefined;
38575
+ gridColumn?: csstype.Property.GridColumn | undefined;
38576
+ gridRow?: csstype.Property.GridRow | undefined;
38577
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
38578
+ inset?: csstype.Property.Inset<string | number> | undefined;
38579
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
38580
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
38581
+ lineClamp?: csstype.Property.LineClamp | undefined;
38582
+ listStyle?: csstype.Property.ListStyle | undefined;
38583
+ margin?: csstype.Property.Margin<string | number> | undefined;
38584
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
38585
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
38586
+ mask?: csstype.Property.Mask<string | number> | undefined;
38587
+ maskBorder?: csstype.Property.MaskBorder | undefined;
38588
+ motion?: csstype.Property.Offset<string | number> | undefined;
38589
+ offset?: csstype.Property.Offset<string | number> | undefined;
38590
+ outline?: csstype.Property.Outline<string | number> | undefined;
38591
+ overflow?: csstype.Property.Overflow | undefined;
38592
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
38593
+ padding?: csstype.Property.Padding<string | number> | undefined;
38594
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
38595
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
38596
+ placeContent?: csstype.Property.PlaceContent | undefined;
38597
+ placeItems?: csstype.Property.PlaceItems | undefined;
38598
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
38599
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
38600
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
38601
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
38602
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
38603
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
38604
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
38605
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
38606
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
38607
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
38608
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
38609
+ transition?: csstype.Property.Transition<string & {}> | undefined;
38610
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
38611
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
38612
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
38613
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
38614
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
38615
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
38616
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
38617
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
38618
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
38619
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
38620
+ MozBinding?: csstype.Property.MozBinding | undefined;
38621
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
38622
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
38623
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
38624
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
38625
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
38626
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
38627
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
38628
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
38629
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
38630
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
38631
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
38632
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
38633
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
38634
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
38635
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
38636
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
38637
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
38638
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
38639
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
38640
+ MozHyphens?: csstype.Property.Hyphens | undefined;
38641
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
38642
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
38643
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
38644
+ MozOrient?: csstype.Property.MozOrient | undefined;
38645
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
38646
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
38647
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
38648
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
38649
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
38650
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
38651
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
38652
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
38653
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
38654
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
38655
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
38656
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
38657
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
38658
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
38659
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
38660
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
38661
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
38662
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
38663
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
38664
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
38665
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
38666
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
38667
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
38668
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
38669
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
38670
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
38671
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
38672
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
38673
+ msFilter?: csstype.Property.MsFilter | undefined;
38674
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
38675
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
38676
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
38677
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
38678
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
38679
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
38680
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
38681
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
38682
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
38683
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
38684
+ msHyphens?: csstype.Property.Hyphens | undefined;
38685
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
38686
+ msLineBreak?: csstype.Property.LineBreak | undefined;
38687
+ msOrder?: csstype.Property.Order | undefined;
38688
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
38689
+ msOverflowX?: csstype.Property.OverflowX | undefined;
38690
+ msOverflowY?: csstype.Property.OverflowY | undefined;
38691
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
38692
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
38693
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
38694
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
38695
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
38696
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
38697
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
38698
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
38699
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
38700
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
38701
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
38702
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
38703
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
38704
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
38705
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
38706
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
38707
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
38708
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
38709
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
38710
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
38711
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
38712
+ msTouchAction?: csstype.Property.TouchAction | undefined;
38713
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
38714
+ msTransform?: csstype.Property.Transform | undefined;
38715
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
38716
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
38717
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
38718
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
38719
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
38720
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
38721
+ msWordBreak?: csstype.Property.WordBreak | undefined;
38722
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
38723
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
38724
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
38725
+ msWritingMode?: csstype.Property.WritingMode | undefined;
38726
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
38727
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
38728
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
38729
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
38730
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
38731
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
38732
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
38733
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
38734
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
38735
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
38736
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
38737
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
38738
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
38739
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
38740
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
38741
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
38742
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
38743
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
38744
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
38745
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
38746
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
38747
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
38748
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
38749
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
38750
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
38751
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
38752
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
38753
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
38754
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
38755
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
38756
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
38757
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
38758
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
38759
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
38760
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
38761
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
38762
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
38763
+ WebkitFilter?: csstype.Property.Filter | undefined;
38764
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
38765
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
38766
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
38767
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
38768
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
38769
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
38770
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
38771
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
38772
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
38773
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
38774
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
38775
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
38776
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
38777
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
38778
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
38779
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
38780
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
38781
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
38782
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
38783
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
38784
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
38785
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
38786
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
38787
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
38788
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
38789
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
38790
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
38791
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
38792
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
38793
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
38794
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
38795
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
38796
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
38797
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
38798
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
38799
+ WebkitOrder?: csstype.Property.Order | undefined;
38800
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
38801
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
38802
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
38803
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
38804
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
38805
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
38806
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
38807
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
38808
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
38809
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
38810
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
38811
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
38812
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
38813
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
38814
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
38815
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
38816
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
38817
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
38818
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
38819
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
38820
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
38821
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
38822
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
38823
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
38824
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
38825
+ WebkitTransform?: csstype.Property.Transform | undefined;
38826
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
38827
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
38828
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
38829
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
38830
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
38831
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
38832
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
38833
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
38834
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
38835
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
38836
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
38837
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
38838
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
38839
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
38840
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
38841
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
38842
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
38843
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
38844
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
38845
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
38846
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
38847
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
38848
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
38849
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
38850
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
38851
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
38852
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
38853
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
38854
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
38855
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
38856
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
38857
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
38858
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
38859
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
38860
+ azimuth?: csstype.Property.Azimuth | undefined;
38861
+ boxAlign?: csstype.Property.BoxAlign | undefined;
38862
+ boxDirection?: csstype.Property.BoxDirection | undefined;
38863
+ boxFlex?: csstype.Property.BoxFlex | undefined;
38864
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
38865
+ boxLines?: csstype.Property.BoxLines | undefined;
38866
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
38867
+ boxOrient?: csstype.Property.BoxOrient | undefined;
38868
+ boxPack?: csstype.Property.BoxPack | undefined;
38869
+ clip?: csstype.Property.Clip | undefined;
38870
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
38871
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
38872
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
38873
+ imeMode?: csstype.Property.ImeMode | undefined;
38874
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
38875
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
38876
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
38877
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
38878
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
38879
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
38880
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
38881
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
38882
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
38883
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
38884
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
38885
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
38886
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
38887
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
38888
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
38889
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
38890
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
38891
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
38892
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
38893
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
38894
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
38895
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
38896
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
38897
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
38898
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
38899
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
38900
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
38901
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
38902
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
38903
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
38904
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
38905
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
38906
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
38907
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
38908
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
38909
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
38910
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
38911
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
38912
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
38913
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
38914
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
38915
+ MozOpacity?: csstype.Property.Opacity | undefined;
38916
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
38917
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
38918
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
38919
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
38920
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
38921
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
38922
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
38923
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
38924
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
38925
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
38926
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
38927
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
38928
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
38929
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
38930
+ msImeMode?: csstype.Property.ImeMode | undefined;
38931
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
38932
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
38933
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
38934
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
38935
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
38936
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
38937
+ OAnimationName?: csstype.Property.AnimationName | undefined;
38938
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
38939
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
38940
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
38941
+ OBorderImage?: csstype.Property.BorderImage | undefined;
38942
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
38943
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
38944
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
38945
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
38946
+ OTransform?: csstype.Property.Transform | undefined;
38947
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
38948
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
38949
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
38950
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
38951
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
38952
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
38953
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
38954
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
38955
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
38956
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
38957
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
38958
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
38959
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
38960
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
38961
+ WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
38962
+ WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
38963
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
38964
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
38965
+ clipRule?: csstype.Property.ClipRule | undefined;
38966
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
38967
+ colorRendering?: csstype.Property.ColorRendering | undefined;
38968
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
38969
+ fill?: csstype.Property.Fill | undefined;
38970
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
38971
+ fillRule?: csstype.Property.FillRule | undefined;
38972
+ floodColor?: csstype.Property.FloodColor | undefined;
38973
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
38974
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
38975
+ lightingColor?: csstype.Property.LightingColor | undefined;
38976
+ marker?: csstype.Property.Marker | undefined;
38977
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
38978
+ markerMid?: csstype.Property.MarkerMid | undefined;
38979
+ markerStart?: csstype.Property.MarkerStart | undefined;
38980
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
38981
+ stopColor?: csstype.Property.StopColor | undefined;
38982
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
38983
+ stroke?: csstype.Property.Stroke | undefined;
38984
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
38985
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
38986
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
38987
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
38988
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
38989
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
38990
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
38991
+ textAnchor?: csstype.Property.TextAnchor | undefined;
38992
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
38993
+ };
38994
+ declare const getSeoTagFromTypo: (typo?: TypographySettingV2) => React.ElementType;
38995
+
38996
+ type Func$6 = ReturnType<typeof addToCartOperation>;
38997
+ type Response$6 = Awaited<ReturnType<Func$6>>;
38998
+ type Args$5 = Parameters<Func$6>[0];
38999
+ declare const useAddToCart: (options?: SWRMutationConfiguration<Response$6, any, Args$5, 'add-to-cart'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.AddCartLineInput, "add-to-cart">;
39000
+
39001
+ type Func$5 = ReturnType<typeof getCartOperation>;
39002
+ type Response$5 = Awaited<ReturnType<Func$5>>;
39003
+ declare const useCartData: (options?: SWRConfiguration<Response$5 | undefined, any>) => swr__internal.SWRResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined, any, Partial<swr__internal.PublicConfiguration<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined, any, (arg: "cart") => swr__internal.FetcherResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart | undefined>>> | undefined>;
39004
+
39005
+ type Func$4 = ReturnType<typeof cartDiscountCodesUpdateOperation>;
39006
+ type Response$4 = Awaited<ReturnType<Func$4>>;
39007
+ type Args$4 = Parameters<Func$4>[0];
39008
+ declare const useCartDiscountCodesUpdate: (options?: SWRMutationConfiguration<Response$4, any, Args$4, 'cart-discount-codes-update'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.CartDiscountCodesUpdateInput, "cart-discount-codes-update">;
39009
+
39010
+ type Func$3 = ReturnType<typeof cartNoteUpdateOperation>;
39011
+ type Response$3 = Awaited<ReturnType<Func$3>>;
39012
+ type Args$3 = Parameters<Func$3>[0];
39013
+ declare const useCartNoteUpdate: (options?: SWRMutationConfiguration<Response$3, any, Args$3, 'cart-note-update'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.CartNoteUpdateInput, "cart-note-update">;
39014
+
39015
+ type Func$2 = ReturnType<typeof createCartOperation>;
39016
+ type Response$2 = Awaited<ReturnType<Func$2>>;
39017
+ type Args$2 = Parameters<Func$2>[0];
39018
+ declare const useCreateCart: (options?: SWRMutationConfiguration<Response$2, any, Args$2, 'create-cart'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.CreateCartInput, "create-cart">;
39019
+
39020
+ type Func$1 = ReturnType<typeof removeCartItemOperation>;
39021
+ type Response$1 = Awaited<ReturnType<Func$1>>;
39022
+ type Args$1 = Parameters<Func$1>[0];
39023
+ declare const useRemoveCartItem: (options?: SWRMutationConfiguration<Response$1, any, Args$1, 'remove-cart-item'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.RemoveCartLineInput, "remove-cart-item">;
39024
+
39025
+ type Func = ReturnType<typeof updateCartLineOperation>;
39026
+ type Response = Awaited<ReturnType<Func>>;
39027
+ type Args = Parameters<Func>[0];
39028
+ declare const useUpdateCartItem: (options?: SWRMutationConfiguration<Response, any, Args, 'update-cart-item'>) => swr_mutation.SWRMutationResponse<_gem_sdk_adapter_common_dist_types_types_cart.Cart, any, _gem_sdk_adapter_common_dist_types_types_cart.UpdateCartLineInput, "update-cart-item">;
39029
+
39030
+ declare const useLocale: () => {
39031
+ locale: string | undefined;
39032
+ changeLocale: (locale: string) => void;
39033
+ };
39034
+ declare const useCurrency: () => {
39035
+ currency: string | undefined;
39036
+ changeCurrency: (currency: string) => void;
39037
+ };
39038
+ declare const useMoneyFormat: () => {
39039
+ moneyFormat: string | undefined;
39040
+ moneyWithCurrencyFormat: string | undefined;
39041
+ };
39042
+ declare const useSwatches: () => {
39043
+ swatches: GlobalSwatchesData[] | undefined;
39044
+ changeSwatches: (swatches: GlobalSwatchesData[]) => void;
39045
+ };
39046
+ declare const usePageType: () => PublishedThemePageType$1;
39047
+ declare const useStoreFront: () => {
39048
+ provider: "SHOPIFY" | "BIGCOMMERCE" | undefined;
39049
+ storefrontToken: string | undefined;
39050
+ storefrontUrl: string | undefined;
39051
+ };
39052
+ declare const usePluginEnable: () => string[] | undefined;
39053
+ declare const useEditorMode: () => RenderMode | undefined;
39054
+ declare const useMobileOnly: () => boolean | undefined;
39055
+ declare const useMatchMutate: () => <T = any>(matcher: RegExp, opts?: boolean | MutatorOptions<T> | undefined) => Promise<(T | undefined)[][]>;
39056
+ declare function useConnectedShopify(): boolean;
39057
+ declare function useIsSampleProduct(): boolean | undefined;
39058
+ declare function useIsStorefrontProduct(): boolean | undefined;
39059
+ declare function useCheckoutUrl(url?: string): string | undefined;
39060
+
39061
+ declare const useCollectionQuery: (args?: FetchCollectionArgs, options?: SWRConfiguration<CollectionDetailFilterQueryResponse>) => swr__internal.SWRResponse<CollectionDetailFilterQueryResponse, any, Partial<swr__internal.PublicConfiguration<CollectionDetailFilterQueryResponse, any, (arg: ["query/collection", FetchCollectionArgs]) => swr__internal.FetcherResponse<CollectionDetailFilterQueryResponse>>> | undefined>;
39062
+
39063
+ declare const useCollectionsQuery: (variable: CollectionsQueryVariables, options?: SWRConfiguration<CollectionsQueryResponse>) => swr__internal.SWRResponse<CollectionsQueryResponse, any, Partial<swr__internal.PublicConfiguration<CollectionsQueryResponse, any, (arg: ["query/collections", Exact$1<{
39064
+ after?: InputMaybe$1<string>;
39065
+ first?: InputMaybe$1<number>;
39066
+ before?: InputMaybe$1<string>;
39067
+ last?: InputMaybe$1<number>;
39068
+ where?: InputMaybe$1<CollectionWhereInput$1>;
39069
+ orderBy?: InputMaybe$1<CollectionOrder$1>;
39070
+ }>]) => swr__internal.FetcherResponse<CollectionsQueryResponse>>> | undefined>;
39071
+
39072
+ declare const useProductQuery: (productId?: string, options?: SWRConfiguration<ProductSelectFragment>, customFetcher?: FetchFunc) => swr__internal.SWRResponse<ProductSelectFragment, any, Partial<swr__internal.PublicConfiguration<ProductSelectFragment, any, (arg: ["query/product", FetchProductParams]) => swr__internal.FetcherResponse<ProductSelectFragment>>> | undefined>;
39073
+
39074
+ declare const useProductsQuery: (ids?: string[], options?: SWRConfiguration<ProductsQueryResponse>, params?: {
39075
+ defaultSelectedProductCount?: number;
39076
+ allStatus?: boolean;
39077
+ fetcher?: FetchFunc;
39078
+ }) => swr__internal.SWRResponse<ProductsQueryResponse, any, Partial<swr__internal.PublicConfiguration<ProductsQueryResponse, any, (arg: ["query/products", FetchProductsParams]) => swr__internal.FetcherResponse<ProductsQueryResponse>>> | undefined>;
39079
+ declare const useProductsQueryAll: (variable?: VariableRelatedStyles | undefined, options?: SWRConfiguration<ProductsQueryResponse>) => swr__internal.SWRResponse<ProductsQueryResponse, any, Partial<swr__internal.PublicConfiguration<ProductsQueryResponse, any, (arg: ["query/products", any]) => swr__internal.FetcherResponse<ProductsQueryResponse>>> | undefined>;
39080
+
39081
+ declare const useCurrentDevice: () => NameDevices$1;
39082
+
39083
+ declare const shopifyPriceRounding: (amount: number | string, precision?: number) => string;
39084
+ declare const formatMoney: (cents: string, format: any) => string;
39085
+ declare const useFormatMoney: (amount: number, withCurrency: boolean) => string;
39086
+
39087
+ declare const useLazyVideo: () => void;
39088
+
39089
+ declare const useCartId: () => {
39090
+ cartId: string | null | undefined;
39091
+ updateCartId: (val?: string | null) => void;
39092
+ clearCartId: () => void;
39093
+ };
39094
+
39095
+ declare const useCartLine: () => _gem_sdk_adapter_common_dist_types_types_cart.LineItem;
39096
+
39097
+ declare function useCartUI(): {
39098
+ isCartOpen: boolean | undefined;
39099
+ openCart: () => void;
39100
+ closeCart: () => void;
39101
+ };
39102
+
39103
+ declare const useCollection: () => CollectionSelectFragment | undefined;
39104
+
39105
+ declare const useIsomorphicLayoutEffect: typeof useLayoutEffect;
39106
+
39107
+ type LoadScriptParams = Parameters<typeof loadScript>;
39108
+ type ScriptState = 'loading' | 'done' | 'error';
39109
+ /**
39110
+ * The `useLoadScript` hook loads an external script tag on the client-side.
39111
+ */
39112
+ declare function useLoadScript(url: LoadScriptParams[0], options?: LoadScriptParams[1]): ScriptState;
39113
+
39114
+ type UseMoneyValue = {
39115
+ /**
39116
+ * The currency code from the `MoneyV2` object.
39117
+ */
39118
+ currencyCode: string;
39119
+ /**
39120
+ * The name for the currency code, returned by `Intl.NumberFormat`.
39121
+ */
39122
+ currencyName?: string;
39123
+ /**
39124
+ * The currency symbol returned by `Intl.NumberFormat`.
39125
+ */
39126
+ currencySymbol?: string;
39127
+ /**
39128
+ * The currency narrow symbol returned by `Intl.NumberFormat`.
39129
+ */
39130
+ currencyNarrowSymbol?: string;
37360
39131
  /**
37361
39132
  * The localized amount, without any currency symbols or non-number types from the `Intl.NumberFormat.formatToParts` parts.
37362
39133
  */
@@ -37527,6 +39298,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name'
37527
39298
  pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
37528
39299
  themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
37529
39300
  themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
39301
+ interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
37530
39302
  };
37531
39303
 
37532
39304
  declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
@@ -37545,4 +39317,18 @@ declare const getAppBlocks: (section: PublishedPageSection$1 & {
37545
39317
 
37546
39318
  declare const addAppBlockId: (component: Component) => Component;
37547
39319
 
37548
- export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, 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, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, 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, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, 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, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useInitialSwatchesOptions, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
39320
+ declare const useInteraction: () => {
39321
+ onListener: ({ event, selector }: {
39322
+ event: string;
39323
+ selector: string;
39324
+ }, callback: (data: any) => void) => void;
39325
+ trigger: ({ event, data, selector }: {
39326
+ event: string;
39327
+ data?: any;
39328
+ selector: string;
39329
+ }) => void;
39330
+ saveToElementInteractionData: (element: HTMLElement, key: string, value: string) => void;
39331
+ closeSelectOnPage: () => void;
39332
+ };
39333
+
39334
+ export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, 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, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, 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, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, 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, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResonsiveStyleShadow, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getSeoTagFromTypo, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };