@gem-sdk/core 1.12.0-next.4 → 1.12.0-next.45

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.
@@ -2,6 +2,7 @@ import { StoreApi } from 'zustand';
2
2
  import { Cart as Cart$1, addToCartOperation, getCartOperation, cartDiscountCodesUpdateOperation, cartNoteUpdateOperation, createCartOperation, removeCartItemOperation, updateCartLineOperation } from '@gem-sdk/adapter-shopify';
3
3
  import { SWRConfig, SWRConfiguration, MutatorOptions } from 'swr';
4
4
  import { ShortHandProperty } from '@gem-sdk/styles';
5
+ import * as csstype from 'csstype';
5
6
  import * as swr_mutation from 'swr/mutation';
6
7
  import { SWRMutationConfiguration } from 'swr/mutation';
7
8
  import * as _gem_sdk_adapter_common_dist_types_types_cart from '@gem-sdk/adapter-common/dist/types/types/cart';
@@ -25,13 +26,21 @@ type Props$1 = {
25
26
  };
26
27
  declare const RenderPreviewMemo: React.NamedExoticComponent<Props$1>;
27
28
 
29
+ type ExtraFiles = {
30
+ [fileName: string]: string;
31
+ };
28
32
  type Props = {
29
33
  uid: string;
30
34
  builder: Record<string, any>;
31
35
  components: Record<string, any>;
36
+ extraFiles?: ExtraFiles;
32
37
  [key: string]: any;
33
38
  };
34
- declare const Render: ({ uid, builder, components, parentId, ...passProps }: Props) => string | null;
39
+ declare const Render: ({ uid, builder, components, parentId, extraFiles, ...passProps }: Props) => {
40
+ liquid: string;
41
+ extraFiles: ExtraFiles;
42
+ };
43
+ declare const RenderChildren: (props: Props) => string;
35
44
 
36
45
  type AddonContextProps = {
37
46
  components: Record<string, React.ComponentType<any>>;
@@ -98,6 +107,10 @@ type InitComponentType<T = any> = {
98
107
  };
99
108
 
100
109
  type AlignProp = 'left' | 'center' | 'right' | 'justify';
110
+ type Ratio$1 = {
111
+ width?: string;
112
+ height?: string;
113
+ };
101
114
  type FlexDirectionProp = 'row' | 'column' | 'row-reverse' | 'column-reverse';
102
115
  type TransformProp = 'default' | 'capitalize' | 'uppercase' | 'lowercase' | 'none';
103
116
  type BaseProps<Setting = unknown, Style = unknown, Advanced = unknown> = {
@@ -160,14 +173,6 @@ type HyperlinkInfo = {
160
173
  link?: string;
161
174
  modal?: CommonModalApp;
162
175
  };
163
- type LinkData = {
164
- value: string | number | boolean | null | undefined;
165
- control: {
166
- ids: string[];
167
- show?: true;
168
- hide?: true;
169
- };
170
- };
171
176
  type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
172
177
  id: K;
173
178
  label?: string;
@@ -179,6 +184,7 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
179
184
  mobileOnly?: boolean;
180
185
  };
181
186
  hide?: boolean;
187
+ ignoreReRender?: boolean;
182
188
  hideOnState?: {
183
189
  normal?: boolean;
184
190
  hover?: boolean;
@@ -190,8 +196,6 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
190
196
  tablet?: boolean;
191
197
  mobile?: boolean;
192
198
  };
193
- links?: LinkData[];
194
- allowReset?: boolean;
195
199
  lazyUpdate?: boolean;
196
200
  state?: {
197
201
  normal?: boolean;
@@ -211,6 +215,7 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
211
215
  mobileOnly?: boolean;
212
216
  };
213
217
  hide?: boolean;
218
+ ignoreReRender?: boolean;
214
219
  hideOnState?: {
215
220
  normal?: boolean;
216
221
  hover?: boolean;
@@ -222,8 +227,6 @@ type Mapped$4<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
222
227
  tablet?: boolean;
223
228
  mobile?: boolean;
224
229
  };
225
- links?: LinkData[];
226
- allowReset?: boolean;
227
230
  lazyUpdate?: boolean;
228
231
  state?: {
229
232
  normal?: boolean;
@@ -260,8 +263,6 @@ type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
260
263
  };
261
264
  info?: string;
262
265
  hide?: boolean;
263
- links?: LinkData[];
264
- allowReset?: boolean;
265
266
  state?: {
266
267
  normal?: boolean;
267
268
  hover?: boolean;
@@ -280,8 +281,6 @@ type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
280
281
  responsive?: boolean;
281
282
  mobileOnly?: boolean;
282
283
  };
283
- links?: LinkData[];
284
- allowReset?: boolean;
285
284
  state?: {
286
285
  normal?: boolean;
287
286
  hover?: boolean;
@@ -359,6 +358,9 @@ type InputControlType<T> = SharedControlType<T> & {
359
358
  value: any;
360
359
  }[];
361
360
  readonly?: boolean;
361
+ action?: {
362
+ clear?: boolean;
363
+ };
362
364
  };
363
365
 
364
366
  type InputFixContentControlType<T> = SharedControlType<T> & {
@@ -375,13 +377,13 @@ type InputNumberControlType<T> = SharedControlType<T> & {
375
377
  readonly?: boolean;
376
378
  };
377
379
 
378
- type SizeUnit = '%' | 'cm' | 'mm' | 'Q' | 'in' | 'pc' | 'pt' | 'px' | 'em' | 'cap' | 'ex' | 'ch' | 'ic' | 'rem' | 'lh' | 'rlh' | 'vw' | 'vh' | 'vi' | 'vb' | 'vmin' | 'vmax';
380
+ type SizeUnit$2 = 's' | '%' | 'cm' | 'mm' | 'Q' | 'in' | 'pc' | 'pt' | 'px' | 'em' | 'cap' | 'ex' | 'ch' | 'ic' | 'rem' | 'lh' | 'rlh' | 'vw' | 'vh' | 'vi' | 'vb' | 'vmin' | 'vmax';
379
381
  type InputUnitControlType<T> = SharedControlType<T> & {
380
382
  type: 'input:unit';
381
383
  placeholder?: string;
382
384
  min?: number;
383
385
  max?: number;
384
- units: SizeUnit[];
386
+ units: SizeUnit$2[];
385
387
  readonly?: boolean;
386
388
  useOnlyUnitInit?: boolean;
387
389
  };
@@ -418,7 +420,7 @@ type RangeControlType<T> = SharedControlType<T> & {
418
420
  readonly?: boolean;
419
421
  units?: string[];
420
422
  disableOnChange?: boolean;
421
- ignoreUnit?: boolean;
423
+ useOnlyUnitInit?: boolean;
422
424
  hideUnit?: boolean;
423
425
  };
424
426
 
@@ -437,8 +439,6 @@ type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
437
439
  responsive?: boolean;
438
440
  mobileOnly?: boolean;
439
441
  };
440
- links?: LinkData[];
441
- allowReset?: boolean;
442
442
  disableToggle?: boolean;
443
443
  state?: {
444
444
  normal?: boolean;
@@ -460,8 +460,6 @@ type Mapped$2<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
460
460
  responsive?: boolean;
461
461
  mobileOnly?: boolean;
462
462
  };
463
- links?: LinkData[];
464
- allowReset?: boolean;
465
463
  disableToggle?: boolean;
466
464
  state?: {
467
465
  normal?: boolean;
@@ -494,8 +492,6 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
494
492
  mobileOnly?: boolean;
495
493
  };
496
494
  hide?: boolean;
497
- links?: LinkData[];
498
- allowReset?: boolean;
499
495
  state?: {
500
496
  normal?: boolean;
501
497
  hover?: boolean;
@@ -516,8 +512,6 @@ type Mapped$1<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
516
512
  mobileOnly?: boolean;
517
513
  };
518
514
  hide?: boolean;
519
- links?: LinkData[];
520
- allowReset?: boolean;
521
515
  state?: {
522
516
  normal?: boolean;
523
517
  hover?: boolean;
@@ -539,6 +533,7 @@ type TextareaControlType<T> = SharedControlType<T> & {
539
533
  readonly?: boolean;
540
534
  minHeight?: number;
541
535
  maxWidth?: number;
536
+ autoHeight?: boolean;
542
537
  };
543
538
 
544
539
  type TextEditorControlType<T> = SharedControlType<T> & {
@@ -745,8 +740,6 @@ type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
745
740
  responsive?: boolean;
746
741
  mobileOnly?: boolean;
747
742
  };
748
- links?: LinkData[];
749
- allowReset?: boolean;
750
743
  disableToggle?: boolean;
751
744
  state?: {
752
745
  normal?: boolean;
@@ -767,8 +760,6 @@ type Mapped<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
767
760
  responsive?: boolean;
768
761
  mobileOnly?: boolean;
769
762
  };
770
- links?: LinkData[];
771
- allowReset?: boolean;
772
763
  disableToggle?: boolean;
773
764
  state?: {
774
765
  normal?: boolean;
@@ -816,7 +807,46 @@ type ProductListControlType<T> = SharedControlType<T> & {
816
807
  isMultiple?: boolean;
817
808
  };
818
809
 
819
- type ControlProp<T> = AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputUnitControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | SelectControlType<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<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> | CustomCodeEditor | LayoutSegmentControlType<T> | InputSpacing<T> | UniqueIdControlType<T> | PositionSquareControlType<T> | CustomCodeEditor | LayoutControlType<T> | SwatchesLinkControlType<T> | ProductListControlType<T> | CollectionBannerControlType<T>;
810
+ type SizeUnit$1 = '%' | 'cm' | 'mm' | 'Q' | 'in' | 'pc' | 'pt' | 'px' | 'em' | 'cap' | 'ex' | 'ch' | 'ic' | 'rem' | 'lh' | 'rlh' | 'vw' | 'vh' | 'vi' | 'vb' | 'vmin' | 'vmax';
811
+ type InputUnitSpacingControlType<T> = SharedControlType<T> & {
812
+ type: 'input:unit-spacing';
813
+ placeholder?: string;
814
+ min?: number;
815
+ max?: number;
816
+ units: SizeUnit$1[];
817
+ readonly?: boolean;
818
+ useOnlyUnitInit?: boolean;
819
+ };
820
+
821
+ type SizeUnit = '%' | 'cm' | 'mm' | 'Q' | 'in' | 'pc' | 'pt' | 'px' | 'em' | 'cap' | 'ex' | 'ch' | 'ic' | 'rem' | 'lh' | 'rlh' | 'vw' | 'vh' | 'vi' | 'vb' | 'vmin' | 'vmax';
822
+ type InputUnitWidthControlType<T> = SharedControlType<T> & {
823
+ type: 'input:unit-width';
824
+ placeholder?: string;
825
+ min?: number;
826
+ max?: number;
827
+ units: SizeUnit[];
828
+ readonly?: boolean;
829
+ useOnlyUnitInit?: boolean;
830
+ };
831
+
832
+ type Ratio<T> = SharedControlType<T> & {
833
+ type: 'ratio';
834
+ placeholder?: string;
835
+ min?: number;
836
+ max?: number;
837
+ useUnit?: boolean;
838
+ useLink?: boolean;
839
+ readonly?: boolean;
840
+ };
841
+
842
+ type TypographyV2ControlType<T> = SharedControlType<T> & {
843
+ type: 'typography-v2';
844
+ hiddenSetting?: {
845
+ color?: boolean;
846
+ };
847
+ };
848
+
849
+ type ControlProp<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> | 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> | SwatchesLinkControlType<T> | ProductListControlType<T> | CollectionBannerControlType<T> | Ratio<T>;
820
850
  type Setting<P extends BaseProps> = {
821
851
  id: 'setting';
822
852
  note?: string;
@@ -892,16 +922,22 @@ type ControlUI = {
892
922
  state?: StateType;
893
923
  };
894
924
  options?: {
925
+ styleControl?: Record<string, string>;
926
+ labelPosition?: 'start' | 'end';
927
+ justifyContent?: 'start' | 'end' | 'between' | 'around';
895
928
  label?: 'medium' | 'large';
896
929
  info?: 'near' | 'far';
930
+ labelSpacing?: 'small' | 'medium' | 'large';
897
931
  removeSpacing?: boolean;
898
932
  hideOnDevices?: {
899
933
  desktop?: boolean;
900
934
  tablet?: boolean;
901
935
  mobile?: boolean;
902
936
  };
937
+ hideOnPages?: PageType[];
903
938
  };
904
939
  };
940
+ type PageType = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'GP_ARTICLE' | 'GP_BLOG' | 'GP_COLLECTION' | 'GP_INDEX' | 'GP_PRODUCT' | 'GP_STATIC' | 'PRODUCT' | 'STATIC';
905
941
  type ComponentPreset = {
906
942
  id: string;
907
943
  name: {
@@ -6923,10 +6959,18 @@ type ExtractState<S> = S extends {
6923
6959
  getState: () => infer T;
6924
6960
  } ? T : never;
6925
6961
 
6962
+ /**
6963
+ * @deprecated Please use `TypographySettingV2`
6964
+ */
6926
6965
  type TypographySetting = {
6927
6966
  type?: TypographyType;
6928
6967
  custom?: ObjectDevices<TypographyProps>;
6929
6968
  };
6969
+ type TypographySettingV2 = {
6970
+ type?: TypographyType;
6971
+ custom?: TypographyV2Props;
6972
+ attrs?: TypographyV2Attrs;
6973
+ };
6930
6974
  type SizeSetting = {
6931
6975
  type?: SizeType;
6932
6976
  custom?: ObjectDevices<SizeProps>;
@@ -6944,6 +6988,17 @@ type TypographyProps = {
6944
6988
  lineHeight?: string;
6945
6989
  letterSpacing?: string;
6946
6990
  };
6991
+ type TypographyV2Props = Omit<TypographyProps, 'fontSize' | 'lineHeight'> & {
6992
+ fontSize?: ObjectDevices<string>;
6993
+ lineHeight?: string;
6994
+ };
6995
+ type TypographyV2Attrs = {
6996
+ bold?: boolean;
6997
+ italic?: boolean;
6998
+ underline?: boolean;
6999
+ color?: ColorValueType;
7000
+ transform?: string;
7001
+ };
6947
7002
  type CornerRadius = {
6948
7003
  btlr?: string;
6949
7004
  btrr?: string;
@@ -7029,12 +7084,16 @@ type ShadowProps = {
7029
7084
  };
7030
7085
  type Border = {
7031
7086
  borderType?: BorderTypeName;
7032
- border?: string;
7087
+ border?: BorderStyle$1;
7033
7088
  color?: ColorValueType;
7034
7089
  width?: string;
7035
7090
  isCustom?: boolean;
7091
+ position?: BorderPosition;
7092
+ borderWidth?: string;
7036
7093
  };
7037
7094
  type BorderTypeName = 'none' | 'style-1' | 'style-2' | 'style-3';
7095
+ type BorderStyle$1 = 'none' | 'solid' | 'dotted' | 'dashed';
7096
+ type BorderPosition = 'top' | 'left' | 'right' | 'bottom' | 'all';
7038
7097
  type SwatchesOptionType = 'radio_buttons' | 'dropdown' | 'color' | 'image' | 'rectangle_list' | string;
7039
7098
  declare const OptionNormalStyle: string[];
7040
7099
  declare const OptionSpecialStyle: string[];
@@ -7287,6 +7346,8 @@ type ShopContextProps = {
7287
7346
  locale?: string;
7288
7347
  pageType?: PublishedThemePageType;
7289
7348
  currency?: string;
7349
+ moneyFormat?: string;
7350
+ moneyWithCurrencyFormat?: string;
7290
7351
  plugins?: string[];
7291
7352
  storefrontUrl?: string;
7292
7353
  storefrontToken?: string;
@@ -7599,6 +7660,7 @@ declare function isBrowser(): boolean;
7599
7660
  declare const isEmptyChildren: (children: React.ReactNode) => boolean;
7600
7661
 
7601
7662
  type ResponsiveKey<T extends ShortHandProperty> = `--${T}` | `--${T}-tablet` | `--${T}-mobile`;
7663
+ declare const removeNullUndefined: <T extends Record<string, any>>(obj: T) => T;
7602
7664
  declare const makeStyle: <T extends ShortHandProperty, K>(style: Record<T, K>) => {
7603
7665
  [k: string]: Record<`--${T}`, K>;
7604
7666
  };
@@ -7664,6 +7726,1487 @@ declare const composeTextColorCss: (color?: ColorValueType) => string;
7664
7726
  type TypographyClass = `g-${TypographyType}`;
7665
7727
  declare const genTypoClass: (name: TypographyType) => TypographyClass;
7666
7728
  declare const composeTypographyCss: (typography: TypographySetting | undefined) => string;
7729
+ declare const composeTypography: (typography?: ObjectDevices<TypographyProps>) => React.CSSProperties;
7730
+ declare const composeTypographyV2: (value?: TypographyV2Props, attrs?: TypographyV2Attrs) => React.CSSProperties;
7731
+ declare const composeTypographyAttr: (attrs?: TypographyV2Attrs) => React.CSSProperties;
7732
+ declare const composeTypographyClassName: (typo?: TypographySettingV2, typography?: TypographySetting) => "" | "g-heading-1" | "g-heading-2" | "g-heading-3" | "g-subheading-1" | "g-subheading-2" | "g-subheading-3" | "g-paragraph-1" | "g-paragraph-2" | "g-paragraph-3" | undefined;
7733
+ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?: TypographySetting, disableAttr?: boolean) => {
7734
+ [x: string]: any;
7735
+ '--ai'?: csstype.Property.AlignItems | undefined;
7736
+ '--hvr-ai'?: csstype.Property.AlignItems | undefined;
7737
+ '--focus-ai'?: csstype.Property.AlignItems | undefined;
7738
+ '--ai-tablet'?: csstype.Property.AlignItems | undefined;
7739
+ '--hvr-ai-tablet'?: csstype.Property.AlignItems | undefined;
7740
+ '--focus-ai-tablet'?: csstype.Property.AlignItems | undefined;
7741
+ '--ai-mobile'?: csstype.Property.AlignItems | undefined;
7742
+ '--hvr-ai-mobile'?: csstype.Property.AlignItems | undefined;
7743
+ '--focus-ai-mobile'?: csstype.Property.AlignItems | undefined;
7744
+ '--aspect'?: csstype.Property.AspectRatio | undefined;
7745
+ '--hvr-aspect'?: csstype.Property.AspectRatio | undefined;
7746
+ '--focus-aspect'?: csstype.Property.AspectRatio | undefined;
7747
+ '--aspect-tablet'?: csstype.Property.AspectRatio | undefined;
7748
+ '--hvr-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
7749
+ '--focus-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
7750
+ '--aspect-mobile'?: csstype.Property.AspectRatio | undefined;
7751
+ '--hvr-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
7752
+ '--focus-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
7753
+ '--bg'?: string | number | undefined;
7754
+ '--hvr-bg'?: string | number | undefined;
7755
+ '--focus-bg'?: string | number | undefined;
7756
+ '--bg-tablet'?: string | number | undefined;
7757
+ '--hvr-bg-tablet'?: string | number | undefined;
7758
+ '--focus-bg-tablet'?: string | number | undefined;
7759
+ '--bg-mobile'?: string | number | undefined;
7760
+ '--hvr-bg-mobile'?: string | number | undefined;
7761
+ '--focus-bg-mobile'?: string | number | undefined;
7762
+ '--bga'?: csstype.Property.BackgroundAttachment | undefined;
7763
+ '--hvr-bga'?: csstype.Property.BackgroundAttachment | undefined;
7764
+ '--focus-bga'?: csstype.Property.BackgroundAttachment | undefined;
7765
+ '--bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
7766
+ '--hvr-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
7767
+ '--focus-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
7768
+ '--bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
7769
+ '--hvr-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
7770
+ '--focus-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
7771
+ '--bgc'?: csstype.Property.BackgroundColor | undefined;
7772
+ '--hvr-bgc'?: csstype.Property.BackgroundColor | undefined;
7773
+ '--focus-bgc'?: csstype.Property.BackgroundColor | undefined;
7774
+ '--bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
7775
+ '--hvr-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
7776
+ '--focus-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
7777
+ '--bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
7778
+ '--hvr-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
7779
+ '--focus-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
7780
+ '--bgi'?: csstype.Property.BackgroundImage | undefined;
7781
+ '--hvr-bgi'?: csstype.Property.BackgroundImage | undefined;
7782
+ '--focus-bgi'?: csstype.Property.BackgroundImage | undefined;
7783
+ '--bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
7784
+ '--hvr-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
7785
+ '--focus-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
7786
+ '--bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
7787
+ '--hvr-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
7788
+ '--focus-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
7789
+ '--bgp'?: string | number | undefined;
7790
+ '--hvr-bgp'?: string | number | undefined;
7791
+ '--focus-bgp'?: string | number | undefined;
7792
+ '--bgp-tablet'?: string | number | undefined;
7793
+ '--hvr-bgp-tablet'?: string | number | undefined;
7794
+ '--focus-bgp-tablet'?: string | number | undefined;
7795
+ '--bgp-mobile'?: string | number | undefined;
7796
+ '--hvr-bgp-mobile'?: string | number | undefined;
7797
+ '--focus-bgp-mobile'?: string | number | undefined;
7798
+ '--bgr'?: csstype.Property.BackgroundRepeat | undefined;
7799
+ '--hvr-bgr'?: csstype.Property.BackgroundRepeat | undefined;
7800
+ '--focus-bgr'?: csstype.Property.BackgroundRepeat | undefined;
7801
+ '--bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
7802
+ '--hvr-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
7803
+ '--focus-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
7804
+ '--bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
7805
+ '--hvr-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
7806
+ '--focus-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
7807
+ '--bgs'?: string | number | undefined;
7808
+ '--hvr-bgs'?: string | number | undefined;
7809
+ '--focus-bgs'?: string | number | undefined;
7810
+ '--bgs-tablet'?: string | number | undefined;
7811
+ '--hvr-bgs-tablet'?: string | number | undefined;
7812
+ '--focus-bgs-tablet'?: string | number | undefined;
7813
+ '--bgs-mobile'?: string | number | undefined;
7814
+ '--hvr-bgs-mobile'?: string | number | undefined;
7815
+ '--focus-bgs-mobile'?: string | number | undefined;
7816
+ '--b'?: string | number | undefined;
7817
+ '--hvr-b'?: string | number | undefined;
7818
+ '--focus-b'?: string | number | undefined;
7819
+ '--b-tablet'?: string | number | undefined;
7820
+ '--hvr-b-tablet'?: string | number | undefined;
7821
+ '--focus-b-tablet'?: string | number | undefined;
7822
+ '--b-mobile'?: string | number | undefined;
7823
+ '--hvr-b-mobile'?: string | number | undefined;
7824
+ '--focus-b-mobile'?: string | number | undefined;
7825
+ '--bb'?: string | number | undefined;
7826
+ '--hvr-bb'?: string | number | undefined;
7827
+ '--focus-bb'?: string | number | undefined;
7828
+ '--bb-tablet'?: string | number | undefined;
7829
+ '--hvr-bb-tablet'?: string | number | undefined;
7830
+ '--focus-bb-tablet'?: string | number | undefined;
7831
+ '--bb-mobile'?: string | number | undefined;
7832
+ '--hvr-bb-mobile'?: string | number | undefined;
7833
+ '--focus-bb-mobile'?: string | number | undefined;
7834
+ '--bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
7835
+ '--hvr-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
7836
+ '--focus-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
7837
+ '--bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
7838
+ '--hvr-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
7839
+ '--focus-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
7840
+ '--bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
7841
+ '--hvr-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
7842
+ '--focus-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
7843
+ '--bbc'?: csstype.Property.BorderBottomColor | undefined;
7844
+ '--hvr-bbc'?: csstype.Property.BorderBottomColor | undefined;
7845
+ '--focus-bbc'?: csstype.Property.BorderBottomColor | undefined;
7846
+ '--bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
7847
+ '--hvr-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
7848
+ '--focus-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
7849
+ '--bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
7850
+ '--hvr-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
7851
+ '--focus-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
7852
+ '--bc'?: csstype.Property.BorderColor | undefined;
7853
+ '--hvr-bc'?: csstype.Property.BorderColor | undefined;
7854
+ '--focus-bc'?: csstype.Property.BorderColor | undefined;
7855
+ '--bc-tablet'?: csstype.Property.BorderColor | undefined;
7856
+ '--hvr-bc-tablet'?: csstype.Property.BorderColor | undefined;
7857
+ '--focus-bc-tablet'?: csstype.Property.BorderColor | undefined;
7858
+ '--bc-mobile'?: csstype.Property.BorderColor | undefined;
7859
+ '--hvr-bc-mobile'?: csstype.Property.BorderColor | undefined;
7860
+ '--focus-bc-mobile'?: csstype.Property.BorderColor | undefined;
7861
+ '--bblr'?: string | number | undefined;
7862
+ '--hvr-bblr'?: string | number | undefined;
7863
+ '--focus-bblr'?: string | number | undefined;
7864
+ '--bblr-tablet'?: string | number | undefined;
7865
+ '--hvr-bblr-tablet'?: string | number | undefined;
7866
+ '--focus-bblr-tablet'?: string | number | undefined;
7867
+ '--bblr-mobile'?: string | number | undefined;
7868
+ '--hvr-bblr-mobile'?: string | number | undefined;
7869
+ '--focus-bblr-mobile'?: string | number | undefined;
7870
+ '--bbrr'?: string | number | undefined;
7871
+ '--hvr-bbrr'?: string | number | undefined;
7872
+ '--focus-bbrr'?: string | number | undefined;
7873
+ '--bbrr-tablet'?: string | number | undefined;
7874
+ '--hvr-bbrr-tablet'?: string | number | undefined;
7875
+ '--focus-bbrr-tablet'?: string | number | undefined;
7876
+ '--bbrr-mobile'?: string | number | undefined;
7877
+ '--hvr-bbrr-mobile'?: string | number | undefined;
7878
+ '--focus-bbrr-mobile'?: string | number | undefined;
7879
+ '--bl'?: string | number | undefined;
7880
+ '--hvr-bl'?: string | number | undefined;
7881
+ '--focus-bl'?: string | number | undefined;
7882
+ '--bl-tablet'?: string | number | undefined;
7883
+ '--hvr-bl-tablet'?: string | number | undefined;
7884
+ '--focus-bl-tablet'?: string | number | undefined;
7885
+ '--bl-mobile'?: string | number | undefined;
7886
+ '--hvr-bl-mobile'?: string | number | undefined;
7887
+ '--focus-bl-mobile'?: string | number | undefined;
7888
+ '--radius'?: string | number | undefined;
7889
+ '--hvr-radius'?: string | number | undefined;
7890
+ '--focus-radius'?: string | number | undefined;
7891
+ '--radius-tablet'?: string | number | undefined;
7892
+ '--hvr-radius-tablet'?: string | number | undefined;
7893
+ '--focus-radius-tablet'?: string | number | undefined;
7894
+ '--radius-mobile'?: string | number | undefined;
7895
+ '--hvr-radius-mobile'?: string | number | undefined;
7896
+ '--focus-radius-mobile'?: string | number | undefined;
7897
+ '--br'?: string | number | undefined;
7898
+ '--hvr-br'?: string | number | undefined;
7899
+ '--focus-br'?: string | number | undefined;
7900
+ '--br-tablet'?: string | number | undefined;
7901
+ '--hvr-br-tablet'?: string | number | undefined;
7902
+ '--focus-br-tablet'?: string | number | undefined;
7903
+ '--br-mobile'?: string | number | undefined;
7904
+ '--hvr-br-mobile'?: string | number | undefined;
7905
+ '--focus-br-mobile'?: string | number | undefined;
7906
+ '--bs'?: csstype.Property.BorderStyle | undefined;
7907
+ '--hvr-bs'?: csstype.Property.BorderStyle | undefined;
7908
+ '--focus-bs'?: csstype.Property.BorderStyle | undefined;
7909
+ '--bs-tablet'?: csstype.Property.BorderStyle | undefined;
7910
+ '--hvr-bs-tablet'?: csstype.Property.BorderStyle | undefined;
7911
+ '--focus-bs-tablet'?: csstype.Property.BorderStyle | undefined;
7912
+ '--bs-mobile'?: csstype.Property.BorderStyle | undefined;
7913
+ '--hvr-bs-mobile'?: csstype.Property.BorderStyle | undefined;
7914
+ '--focus-bs-mobile'?: csstype.Property.BorderStyle | undefined;
7915
+ '--bt'?: string | number | undefined;
7916
+ '--hvr-bt'?: string | number | undefined;
7917
+ '--focus-bt'?: string | number | undefined;
7918
+ '--bt-tablet'?: string | number | undefined;
7919
+ '--hvr-bt-tablet'?: string | number | undefined;
7920
+ '--focus-bt-tablet'?: string | number | undefined;
7921
+ '--bt-mobile'?: string | number | undefined;
7922
+ '--hvr-bt-mobile'?: string | number | undefined;
7923
+ '--focus-bt-mobile'?: string | number | undefined;
7924
+ '--btlr'?: string | number | undefined;
7925
+ '--hvr-btlr'?: string | number | undefined;
7926
+ '--focus-btlr'?: string | number | undefined;
7927
+ '--btlr-tablet'?: string | number | undefined;
7928
+ '--hvr-btlr-tablet'?: string | number | undefined;
7929
+ '--focus-btlr-tablet'?: string | number | undefined;
7930
+ '--btlr-mobile'?: string | number | undefined;
7931
+ '--hvr-btlr-mobile'?: string | number | undefined;
7932
+ '--focus-btlr-mobile'?: string | number | undefined;
7933
+ '--btrr'?: string | number | undefined;
7934
+ '--hvr-btrr'?: string | number | undefined;
7935
+ '--focus-btrr'?: string | number | undefined;
7936
+ '--btrr-tablet'?: string | number | undefined;
7937
+ '--hvr-btrr-tablet'?: string | number | undefined;
7938
+ '--focus-btrr-tablet'?: string | number | undefined;
7939
+ '--btrr-mobile'?: string | number | undefined;
7940
+ '--hvr-btrr-mobile'?: string | number | undefined;
7941
+ '--focus-btrr-mobile'?: string | number | undefined;
7942
+ '--bw'?: string | number | undefined;
7943
+ '--hvr-bw'?: string | number | undefined;
7944
+ '--focus-bw'?: string | number | undefined;
7945
+ '--bw-tablet'?: string | number | undefined;
7946
+ '--hvr-bw-tablet'?: string | number | undefined;
7947
+ '--focus-bw-tablet'?: string | number | undefined;
7948
+ '--bw-mobile'?: string | number | undefined;
7949
+ '--hvr-bw-mobile'?: string | number | undefined;
7950
+ '--focus-bw-mobile'?: string | number | undefined;
7951
+ '--bottom'?: string | number | undefined;
7952
+ '--hvr-bottom'?: string | number | undefined;
7953
+ '--focus-bottom'?: string | number | undefined;
7954
+ '--bottom-tablet'?: string | number | undefined;
7955
+ '--hvr-bottom-tablet'?: string | number | undefined;
7956
+ '--focus-bottom-tablet'?: string | number | undefined;
7957
+ '--bottom-mobile'?: string | number | undefined;
7958
+ '--hvr-bottom-mobile'?: string | number | undefined;
7959
+ '--focus-bottom-mobile'?: string | number | undefined;
7960
+ '--shadow'?: csstype.Property.BoxShadow | undefined;
7961
+ '--hvr-shadow'?: csstype.Property.BoxShadow | undefined;
7962
+ '--focus-shadow'?: csstype.Property.BoxShadow | undefined;
7963
+ '--shadow-tablet'?: csstype.Property.BoxShadow | undefined;
7964
+ '--hvr-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
7965
+ '--focus-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
7966
+ '--shadow-mobile'?: csstype.Property.BoxShadow | undefined;
7967
+ '--hvr-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
7968
+ '--focus-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
7969
+ '--c'?: csstype.Property.Color | undefined;
7970
+ '--hvr-c'?: csstype.Property.Color | undefined;
7971
+ '--focus-c'?: csstype.Property.Color | undefined;
7972
+ '--c-tablet'?: csstype.Property.Color | undefined;
7973
+ '--hvr-c-tablet'?: csstype.Property.Color | undefined;
7974
+ '--focus-c-tablet'?: csstype.Property.Color | undefined;
7975
+ '--c-mobile'?: csstype.Property.Color | undefined;
7976
+ '--hvr-c-mobile'?: csstype.Property.Color | undefined;
7977
+ '--focus-c-mobile'?: csstype.Property.Color | undefined;
7978
+ '--cg'?: string | number | undefined;
7979
+ '--hvr-cg'?: string | number | undefined;
7980
+ '--focus-cg'?: string | number | undefined;
7981
+ '--cg-tablet'?: string | number | undefined;
7982
+ '--hvr-cg-tablet'?: string | number | undefined;
7983
+ '--focus-cg-tablet'?: string | number | undefined;
7984
+ '--cg-mobile'?: string | number | undefined;
7985
+ '--hvr-cg-mobile'?: string | number | undefined;
7986
+ '--focus-cg-mobile'?: string | number | undefined;
7987
+ '--d'?: csstype.Property.Display | undefined;
7988
+ '--hvr-d'?: csstype.Property.Display | undefined;
7989
+ '--focus-d'?: csstype.Property.Display | undefined;
7990
+ '--d-tablet'?: csstype.Property.Display | undefined;
7991
+ '--hvr-d-tablet'?: csstype.Property.Display | undefined;
7992
+ '--focus-d-tablet'?: csstype.Property.Display | undefined;
7993
+ '--d-mobile'?: csstype.Property.Display | undefined;
7994
+ '--hvr-d-mobile'?: csstype.Property.Display | undefined;
7995
+ '--focus-d-mobile'?: csstype.Property.Display | undefined;
7996
+ '--fd'?: csstype.Property.FlexDirection | undefined;
7997
+ '--hvr-fd'?: csstype.Property.FlexDirection | undefined;
7998
+ '--focus-fd'?: csstype.Property.FlexDirection | undefined;
7999
+ '--fd-tablet'?: csstype.Property.FlexDirection | undefined;
8000
+ '--hvr-fd-tablet'?: csstype.Property.FlexDirection | undefined;
8001
+ '--focus-fd-tablet'?: csstype.Property.FlexDirection | undefined;
8002
+ '--fd-mobile'?: csstype.Property.FlexDirection | undefined;
8003
+ '--hvr-fd-mobile'?: csstype.Property.FlexDirection | undefined;
8004
+ '--focus-fd-mobile'?: csstype.Property.FlexDirection | undefined;
8005
+ '--ff'?: csstype.Property.FontFamily | undefined;
8006
+ '--hvr-ff'?: csstype.Property.FontFamily | undefined;
8007
+ '--focus-ff'?: csstype.Property.FontFamily | undefined;
8008
+ '--ff-tablet'?: csstype.Property.FontFamily | undefined;
8009
+ '--hvr-ff-tablet'?: csstype.Property.FontFamily | undefined;
8010
+ '--focus-ff-tablet'?: csstype.Property.FontFamily | undefined;
8011
+ '--ff-mobile'?: csstype.Property.FontFamily | undefined;
8012
+ '--hvr-ff-mobile'?: csstype.Property.FontFamily | undefined;
8013
+ '--focus-ff-mobile'?: csstype.Property.FontFamily | undefined;
8014
+ '--size'?: string | number | undefined;
8015
+ '--hvr-size'?: string | number | undefined;
8016
+ '--focus-size'?: string | number | undefined;
8017
+ '--size-tablet'?: string | number | undefined;
8018
+ '--hvr-size-tablet'?: string | number | undefined;
8019
+ '--focus-size-tablet'?: string | number | undefined;
8020
+ '--size-mobile'?: string | number | undefined;
8021
+ '--hvr-size-mobile'?: string | number | undefined;
8022
+ '--focus-size-mobile'?: string | number | undefined;
8023
+ '--weight'?: csstype.Property.FontWeight | undefined;
8024
+ '--hvr-weight'?: csstype.Property.FontWeight | undefined;
8025
+ '--focus-weight'?: csstype.Property.FontWeight | undefined;
8026
+ '--weight-tablet'?: csstype.Property.FontWeight | undefined;
8027
+ '--hvr-weight-tablet'?: csstype.Property.FontWeight | undefined;
8028
+ '--focus-weight-tablet'?: csstype.Property.FontWeight | undefined;
8029
+ '--weight-mobile'?: csstype.Property.FontWeight | undefined;
8030
+ '--hvr-weight-mobile'?: csstype.Property.FontWeight | undefined;
8031
+ '--focus-weight-mobile'?: csstype.Property.FontWeight | undefined;
8032
+ '--fs'?: csstype.Property.FontStyle | undefined;
8033
+ '--hvr-fs'?: csstype.Property.FontStyle | undefined;
8034
+ '--focus-fs'?: csstype.Property.FontStyle | undefined;
8035
+ '--fs-tablet'?: csstype.Property.FontStyle | undefined;
8036
+ '--hvr-fs-tablet'?: csstype.Property.FontStyle | undefined;
8037
+ '--focus-fs-tablet'?: csstype.Property.FontStyle | undefined;
8038
+ '--fs-mobile'?: csstype.Property.FontStyle | undefined;
8039
+ '--hvr-fs-mobile'?: csstype.Property.FontStyle | undefined;
8040
+ '--focus-fs-mobile'?: csstype.Property.FontStyle | undefined;
8041
+ '--gg'?: string | number | undefined;
8042
+ '--hvr-gg'?: string | number | undefined;
8043
+ '--focus-gg'?: string | number | undefined;
8044
+ '--gg-tablet'?: string | number | undefined;
8045
+ '--hvr-gg-tablet'?: string | number | undefined;
8046
+ '--focus-gg-tablet'?: string | number | undefined;
8047
+ '--gg-mobile'?: string | number | undefined;
8048
+ '--hvr-gg-mobile'?: string | number | undefined;
8049
+ '--focus-gg-mobile'?: string | number | undefined;
8050
+ '--gtc'?: string | number | undefined;
8051
+ '--hvr-gtc'?: string | number | undefined;
8052
+ '--focus-gtc'?: string | number | undefined;
8053
+ '--gtc-tablet'?: string | number | undefined;
8054
+ '--hvr-gtc-tablet'?: string | number | undefined;
8055
+ '--focus-gtc-tablet'?: string | number | undefined;
8056
+ '--gtc-mobile'?: string | number | undefined;
8057
+ '--hvr-gtc-mobile'?: string | number | undefined;
8058
+ '--focus-gtc-mobile'?: string | number | undefined;
8059
+ '--h'?: string | number | undefined;
8060
+ '--hvr-h'?: string | number | undefined;
8061
+ '--focus-h'?: string | number | undefined;
8062
+ '--h-tablet'?: string | number | undefined;
8063
+ '--hvr-h-tablet'?: string | number | undefined;
8064
+ '--focus-h-tablet'?: string | number | undefined;
8065
+ '--h-mobile'?: string | number | undefined;
8066
+ '--hvr-h-mobile'?: string | number | undefined;
8067
+ '--focus-h-mobile'?: string | number | undefined;
8068
+ '--jc'?: csstype.Property.JustifyContent | undefined;
8069
+ '--hvr-jc'?: csstype.Property.JustifyContent | undefined;
8070
+ '--focus-jc'?: csstype.Property.JustifyContent | undefined;
8071
+ '--jc-tablet'?: csstype.Property.JustifyContent | undefined;
8072
+ '--hvr-jc-tablet'?: csstype.Property.JustifyContent | undefined;
8073
+ '--focus-jc-tablet'?: csstype.Property.JustifyContent | undefined;
8074
+ '--jc-mobile'?: csstype.Property.JustifyContent | undefined;
8075
+ '--hvr-jc-mobile'?: csstype.Property.JustifyContent | undefined;
8076
+ '--focus-jc-mobile'?: csstype.Property.JustifyContent | undefined;
8077
+ '--left'?: string | number | undefined;
8078
+ '--hvr-left'?: string | number | undefined;
8079
+ '--focus-left'?: string | number | undefined;
8080
+ '--left-tablet'?: string | number | undefined;
8081
+ '--hvr-left-tablet'?: string | number | undefined;
8082
+ '--focus-left-tablet'?: string | number | undefined;
8083
+ '--left-mobile'?: string | number | undefined;
8084
+ '--hvr-left-mobile'?: string | number | undefined;
8085
+ '--focus-left-mobile'?: string | number | undefined;
8086
+ '--ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
8087
+ '--hvr-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
8088
+ '--focus-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
8089
+ '--ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
8090
+ '--hvr-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
8091
+ '--focus-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
8092
+ '--ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
8093
+ '--hvr-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
8094
+ '--focus-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
8095
+ '--line-clamp'?: any;
8096
+ '--hvr-line-clamp'?: any;
8097
+ '--focus-line-clamp'?: any;
8098
+ '--line-clamp-tablet'?: any;
8099
+ '--hvr-line-clamp-tablet'?: any;
8100
+ '--focus-line-clamp-tablet'?: any;
8101
+ '--line-clamp-mobile'?: any;
8102
+ '--hvr-line-clamp-mobile'?: any;
8103
+ '--focus-line-clamp-mobile'?: any;
8104
+ '--lh'?: string | number | undefined;
8105
+ '--hvr-lh'?: string | number | undefined;
8106
+ '--focus-lh'?: string | number | undefined;
8107
+ '--lh-tablet'?: string | number | undefined;
8108
+ '--hvr-lh-tablet'?: string | number | undefined;
8109
+ '--focus-lh-tablet'?: string | number | undefined;
8110
+ '--lh-mobile'?: string | number | undefined;
8111
+ '--hvr-lh-mobile'?: string | number | undefined;
8112
+ '--focus-lh-mobile'?: string | number | undefined;
8113
+ '--tdt'?: string | number | undefined;
8114
+ '--hvr-tdt'?: string | number | undefined;
8115
+ '--focus-tdt'?: string | number | undefined;
8116
+ '--tdt-tablet'?: string | number | undefined;
8117
+ '--hvr-tdt-tablet'?: string | number | undefined;
8118
+ '--focus-tdt-tablet'?: string | number | undefined;
8119
+ '--tdt-mobile'?: string | number | undefined;
8120
+ '--hvr-tdt-mobile'?: string | number | undefined;
8121
+ '--focus-tdt-mobile'?: string | number | undefined;
8122
+ '--tdc'?: csstype.Property.TextDecorationColor | undefined;
8123
+ '--hvr-tdc'?: csstype.Property.TextDecorationColor | undefined;
8124
+ '--focus-tdc'?: csstype.Property.TextDecorationColor | undefined;
8125
+ '--tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
8126
+ '--hvr-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
8127
+ '--focus-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
8128
+ '--tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
8129
+ '--hvr-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
8130
+ '--focus-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
8131
+ '--tdl'?: csstype.Property.TextDecorationLine | undefined;
8132
+ '--hvr-tdl'?: csstype.Property.TextDecorationLine | undefined;
8133
+ '--focus-tdl'?: csstype.Property.TextDecorationLine | undefined;
8134
+ '--tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
8135
+ '--hvr-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
8136
+ '--focus-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
8137
+ '--tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
8138
+ '--hvr-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
8139
+ '--focus-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
8140
+ '--m'?: string | number | undefined;
8141
+ '--hvr-m'?: string | number | undefined;
8142
+ '--focus-m'?: string | number | undefined;
8143
+ '--m-tablet'?: string | number | undefined;
8144
+ '--hvr-m-tablet'?: string | number | undefined;
8145
+ '--focus-m-tablet'?: string | number | undefined;
8146
+ '--m-mobile'?: string | number | undefined;
8147
+ '--hvr-m-mobile'?: string | number | undefined;
8148
+ '--focus-m-mobile'?: string | number | undefined;
8149
+ '--mb'?: string | number | undefined;
8150
+ '--hvr-mb'?: string | number | undefined;
8151
+ '--focus-mb'?: string | number | undefined;
8152
+ '--mb-tablet'?: string | number | undefined;
8153
+ '--hvr-mb-tablet'?: string | number | undefined;
8154
+ '--focus-mb-tablet'?: string | number | undefined;
8155
+ '--mb-mobile'?: string | number | undefined;
8156
+ '--hvr-mb-mobile'?: string | number | undefined;
8157
+ '--focus-mb-mobile'?: string | number | undefined;
8158
+ '--ml'?: string | number | undefined;
8159
+ '--hvr-ml'?: string | number | undefined;
8160
+ '--focus-ml'?: string | number | undefined;
8161
+ '--ml-tablet'?: string | number | undefined;
8162
+ '--hvr-ml-tablet'?: string | number | undefined;
8163
+ '--focus-ml-tablet'?: string | number | undefined;
8164
+ '--ml-mobile'?: string | number | undefined;
8165
+ '--hvr-ml-mobile'?: string | number | undefined;
8166
+ '--focus-ml-mobile'?: string | number | undefined;
8167
+ '--mr'?: string | number | undefined;
8168
+ '--hvr-mr'?: string | number | undefined;
8169
+ '--focus-mr'?: string | number | undefined;
8170
+ '--mr-tablet'?: string | number | undefined;
8171
+ '--hvr-mr-tablet'?: string | number | undefined;
8172
+ '--focus-mr-tablet'?: string | number | undefined;
8173
+ '--mr-mobile'?: string | number | undefined;
8174
+ '--hvr-mr-mobile'?: string | number | undefined;
8175
+ '--focus-mr-mobile'?: string | number | undefined;
8176
+ '--mt'?: string | number | undefined;
8177
+ '--hvr-mt'?: string | number | undefined;
8178
+ '--focus-mt'?: string | number | undefined;
8179
+ '--mt-tablet'?: string | number | undefined;
8180
+ '--hvr-mt-tablet'?: string | number | undefined;
8181
+ '--focus-mt-tablet'?: string | number | undefined;
8182
+ '--mt-mobile'?: string | number | undefined;
8183
+ '--hvr-mt-mobile'?: string | number | undefined;
8184
+ '--focus-mt-mobile'?: string | number | undefined;
8185
+ '--maxh'?: string | number | undefined;
8186
+ '--hvr-maxh'?: string | number | undefined;
8187
+ '--focus-maxh'?: string | number | undefined;
8188
+ '--maxh-tablet'?: string | number | undefined;
8189
+ '--hvr-maxh-tablet'?: string | number | undefined;
8190
+ '--focus-maxh-tablet'?: string | number | undefined;
8191
+ '--maxh-mobile'?: string | number | undefined;
8192
+ '--hvr-maxh-mobile'?: string | number | undefined;
8193
+ '--focus-maxh-mobile'?: string | number | undefined;
8194
+ '--maxw'?: string | number | undefined;
8195
+ '--hvr-maxw'?: string | number | undefined;
8196
+ '--focus-maxw'?: string | number | undefined;
8197
+ '--maxw-tablet'?: string | number | undefined;
8198
+ '--hvr-maxw-tablet'?: string | number | undefined;
8199
+ '--focus-maxw-tablet'?: string | number | undefined;
8200
+ '--maxw-mobile'?: string | number | undefined;
8201
+ '--hvr-maxw-mobile'?: string | number | undefined;
8202
+ '--focus-maxw-mobile'?: string | number | undefined;
8203
+ '--minh'?: string | number | undefined;
8204
+ '--hvr-minh'?: string | number | undefined;
8205
+ '--focus-minh'?: string | number | undefined;
8206
+ '--minh-tablet'?: string | number | undefined;
8207
+ '--hvr-minh-tablet'?: string | number | undefined;
8208
+ '--focus-minh-tablet'?: string | number | undefined;
8209
+ '--minh-mobile'?: string | number | undefined;
8210
+ '--hvr-minh-mobile'?: string | number | undefined;
8211
+ '--focus-minh-mobile'?: string | number | undefined;
8212
+ '--minw'?: string | number | undefined;
8213
+ '--hvr-minw'?: string | number | undefined;
8214
+ '--focus-minw'?: string | number | undefined;
8215
+ '--minw-tablet'?: string | number | undefined;
8216
+ '--hvr-minw-tablet'?: string | number | undefined;
8217
+ '--focus-minw-tablet'?: string | number | undefined;
8218
+ '--minw-mobile'?: string | number | undefined;
8219
+ '--hvr-minw-mobile'?: string | number | undefined;
8220
+ '--focus-minw-mobile'?: string | number | undefined;
8221
+ '--objf'?: csstype.Property.ObjectFit | undefined;
8222
+ '--hvr-objf'?: csstype.Property.ObjectFit | undefined;
8223
+ '--focus-objf'?: csstype.Property.ObjectFit | undefined;
8224
+ '--objf-tablet'?: csstype.Property.ObjectFit | undefined;
8225
+ '--hvr-objf-tablet'?: csstype.Property.ObjectFit | undefined;
8226
+ '--focus-objf-tablet'?: csstype.Property.ObjectFit | undefined;
8227
+ '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
8228
+ '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
8229
+ '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
8230
+ '--op'?: csstype.Property.Opacity | undefined;
8231
+ '--hvr-op'?: csstype.Property.Opacity | undefined;
8232
+ '--focus-op'?: csstype.Property.Opacity | undefined;
8233
+ '--op-tablet'?: csstype.Property.Opacity | undefined;
8234
+ '--hvr-op-tablet'?: csstype.Property.Opacity | undefined;
8235
+ '--focus-op-tablet'?: csstype.Property.Opacity | undefined;
8236
+ '--op-mobile'?: csstype.Property.Opacity | undefined;
8237
+ '--hvr-op-mobile'?: csstype.Property.Opacity | undefined;
8238
+ '--focus-op-mobile'?: csstype.Property.Opacity | undefined;
8239
+ '--o'?: csstype.Property.Order | undefined;
8240
+ '--hvr-o'?: csstype.Property.Order | undefined;
8241
+ '--focus-o'?: csstype.Property.Order | undefined;
8242
+ '--o-tablet'?: csstype.Property.Order | undefined;
8243
+ '--hvr-o-tablet'?: csstype.Property.Order | undefined;
8244
+ '--focus-o-tablet'?: csstype.Property.Order | undefined;
8245
+ '--o-mobile'?: csstype.Property.Order | undefined;
8246
+ '--hvr-o-mobile'?: csstype.Property.Order | undefined;
8247
+ '--focus-o-mobile'?: csstype.Property.Order | undefined;
8248
+ '--pc'?: csstype.Property.PlaceContent | undefined;
8249
+ '--hvr-pc'?: csstype.Property.PlaceContent | undefined;
8250
+ '--focus-pc'?: csstype.Property.PlaceContent | undefined;
8251
+ '--pc-tablet'?: csstype.Property.PlaceContent | undefined;
8252
+ '--hvr-pc-tablet'?: csstype.Property.PlaceContent | undefined;
8253
+ '--focus-pc-tablet'?: csstype.Property.PlaceContent | undefined;
8254
+ '--pc-mobile'?: csstype.Property.PlaceContent | undefined;
8255
+ '--hvr-pc-mobile'?: csstype.Property.PlaceContent | undefined;
8256
+ '--focus-pc-mobile'?: csstype.Property.PlaceContent | undefined;
8257
+ '--p'?: string | number | undefined;
8258
+ '--hvr-p'?: string | number | undefined;
8259
+ '--focus-p'?: string | number | undefined;
8260
+ '--p-tablet'?: string | number | undefined;
8261
+ '--hvr-p-tablet'?: string | number | undefined;
8262
+ '--focus-p-tablet'?: string | number | undefined;
8263
+ '--p-mobile'?: string | number | undefined;
8264
+ '--hvr-p-mobile'?: string | number | undefined;
8265
+ '--focus-p-mobile'?: string | number | undefined;
8266
+ '--pb'?: string | number | undefined;
8267
+ '--hvr-pb'?: string | number | undefined;
8268
+ '--focus-pb'?: string | number | undefined;
8269
+ '--pb-tablet'?: string | number | undefined;
8270
+ '--hvr-pb-tablet'?: string | number | undefined;
8271
+ '--focus-pb-tablet'?: string | number | undefined;
8272
+ '--pb-mobile'?: string | number | undefined;
8273
+ '--hvr-pb-mobile'?: string | number | undefined;
8274
+ '--focus-pb-mobile'?: string | number | undefined;
8275
+ '--pl'?: string | number | undefined;
8276
+ '--hvr-pl'?: string | number | undefined;
8277
+ '--focus-pl'?: string | number | undefined;
8278
+ '--pl-tablet'?: string | number | undefined;
8279
+ '--hvr-pl-tablet'?: string | number | undefined;
8280
+ '--focus-pl-tablet'?: string | number | undefined;
8281
+ '--pl-mobile'?: string | number | undefined;
8282
+ '--hvr-pl-mobile'?: string | number | undefined;
8283
+ '--focus-pl-mobile'?: string | number | undefined;
8284
+ '--pr'?: string | number | undefined;
8285
+ '--hvr-pr'?: string | number | undefined;
8286
+ '--focus-pr'?: string | number | undefined;
8287
+ '--pr-tablet'?: string | number | undefined;
8288
+ '--hvr-pr-tablet'?: string | number | undefined;
8289
+ '--focus-pr-tablet'?: string | number | undefined;
8290
+ '--pr-mobile'?: string | number | undefined;
8291
+ '--hvr-pr-mobile'?: string | number | undefined;
8292
+ '--focus-pr-mobile'?: string | number | undefined;
8293
+ '--pt'?: string | number | undefined;
8294
+ '--hvr-pt'?: string | number | undefined;
8295
+ '--focus-pt'?: string | number | undefined;
8296
+ '--pt-tablet'?: string | number | undefined;
8297
+ '--hvr-pt-tablet'?: string | number | undefined;
8298
+ '--focus-pt-tablet'?: string | number | undefined;
8299
+ '--pt-mobile'?: string | number | undefined;
8300
+ '--hvr-pt-mobile'?: string | number | undefined;
8301
+ '--focus-pt-mobile'?: string | number | undefined;
8302
+ '--pos'?: csstype.Property.Position | undefined;
8303
+ '--hvr-pos'?: csstype.Property.Position | undefined;
8304
+ '--focus-pos'?: csstype.Property.Position | undefined;
8305
+ '--pos-tablet'?: csstype.Property.Position | undefined;
8306
+ '--hvr-pos-tablet'?: csstype.Property.Position | undefined;
8307
+ '--focus-pos-tablet'?: csstype.Property.Position | undefined;
8308
+ '--pos-mobile'?: csstype.Property.Position | undefined;
8309
+ '--hvr-pos-mobile'?: csstype.Property.Position | undefined;
8310
+ '--focus-pos-mobile'?: csstype.Property.Position | undefined;
8311
+ '--right'?: string | number | undefined;
8312
+ '--hvr-right'?: string | number | undefined;
8313
+ '--focus-right'?: string | number | undefined;
8314
+ '--right-tablet'?: string | number | undefined;
8315
+ '--hvr-right-tablet'?: string | number | undefined;
8316
+ '--focus-right-tablet'?: string | number | undefined;
8317
+ '--right-mobile'?: string | number | undefined;
8318
+ '--hvr-right-mobile'?: string | number | undefined;
8319
+ '--focus-right-mobile'?: string | number | undefined;
8320
+ '--rg'?: string | number | undefined;
8321
+ '--hvr-rg'?: string | number | undefined;
8322
+ '--focus-rg'?: string | number | undefined;
8323
+ '--rg-tablet'?: string | number | undefined;
8324
+ '--hvr-rg-tablet'?: string | number | undefined;
8325
+ '--focus-rg-tablet'?: string | number | undefined;
8326
+ '--rg-mobile'?: string | number | undefined;
8327
+ '--hvr-rg-mobile'?: string | number | undefined;
8328
+ '--focus-rg-mobile'?: string | number | undefined;
8329
+ '--ta'?: csstype.Property.TextAlign | undefined;
8330
+ '--hvr-ta'?: csstype.Property.TextAlign | undefined;
8331
+ '--focus-ta'?: csstype.Property.TextAlign | undefined;
8332
+ '--ta-tablet'?: csstype.Property.TextAlign | undefined;
8333
+ '--hvr-ta-tablet'?: csstype.Property.TextAlign | undefined;
8334
+ '--focus-ta-tablet'?: csstype.Property.TextAlign | undefined;
8335
+ '--ta-mobile'?: csstype.Property.TextAlign | undefined;
8336
+ '--hvr-ta-mobile'?: csstype.Property.TextAlign | undefined;
8337
+ '--focus-ta-mobile'?: csstype.Property.TextAlign | undefined;
8338
+ '--ts'?: csstype.Property.TextShadow | undefined;
8339
+ '--hvr-ts'?: csstype.Property.TextShadow | undefined;
8340
+ '--focus-ts'?: csstype.Property.TextShadow | undefined;
8341
+ '--ts-tablet'?: csstype.Property.TextShadow | undefined;
8342
+ '--hvr-ts-tablet'?: csstype.Property.TextShadow | undefined;
8343
+ '--focus-ts-tablet'?: csstype.Property.TextShadow | undefined;
8344
+ '--ts-mobile'?: csstype.Property.TextShadow | undefined;
8345
+ '--hvr-ts-mobile'?: csstype.Property.TextShadow | undefined;
8346
+ '--focus-ts-mobile'?: csstype.Property.TextShadow | undefined;
8347
+ '--tt'?: csstype.Property.TextTransform | undefined;
8348
+ '--hvr-tt'?: csstype.Property.TextTransform | undefined;
8349
+ '--focus-tt'?: csstype.Property.TextTransform | undefined;
8350
+ '--tt-tablet'?: csstype.Property.TextTransform | undefined;
8351
+ '--hvr-tt-tablet'?: csstype.Property.TextTransform | undefined;
8352
+ '--focus-tt-tablet'?: csstype.Property.TextTransform | undefined;
8353
+ '--tt-mobile'?: csstype.Property.TextTransform | undefined;
8354
+ '--hvr-tt-mobile'?: csstype.Property.TextTransform | undefined;
8355
+ '--focus-tt-mobile'?: csstype.Property.TextTransform | undefined;
8356
+ '--top'?: string | number | undefined;
8357
+ '--hvr-top'?: string | number | undefined;
8358
+ '--focus-top'?: string | number | undefined;
8359
+ '--top-tablet'?: string | number | undefined;
8360
+ '--hvr-top-tablet'?: string | number | undefined;
8361
+ '--focus-top-tablet'?: string | number | undefined;
8362
+ '--top-mobile'?: string | number | undefined;
8363
+ '--hvr-top-mobile'?: string | number | undefined;
8364
+ '--focus-top-mobile'?: string | number | undefined;
8365
+ '--t'?: csstype.Property.Transform | undefined;
8366
+ '--hvr-t'?: csstype.Property.Transform | undefined;
8367
+ '--focus-t'?: csstype.Property.Transform | undefined;
8368
+ '--t-tablet'?: csstype.Property.Transform | undefined;
8369
+ '--hvr-t-tablet'?: csstype.Property.Transform | undefined;
8370
+ '--focus-t-tablet'?: csstype.Property.Transform | undefined;
8371
+ '--t-mobile'?: csstype.Property.Transform | undefined;
8372
+ '--hvr-t-mobile'?: csstype.Property.Transform | undefined;
8373
+ '--focus-t-mobile'?: csstype.Property.Transform | undefined;
8374
+ '--v'?: csstype.Property.Visibility | undefined;
8375
+ '--hvr-v'?: csstype.Property.Visibility | undefined;
8376
+ '--focus-v'?: csstype.Property.Visibility | undefined;
8377
+ '--v-tablet'?: csstype.Property.Visibility | undefined;
8378
+ '--hvr-v-tablet'?: csstype.Property.Visibility | undefined;
8379
+ '--focus-v-tablet'?: csstype.Property.Visibility | undefined;
8380
+ '--v-mobile'?: csstype.Property.Visibility | undefined;
8381
+ '--hvr-v-mobile'?: csstype.Property.Visibility | undefined;
8382
+ '--focus-v-mobile'?: csstype.Property.Visibility | undefined;
8383
+ '--w'?: string | number | undefined;
8384
+ '--hvr-w'?: string | number | undefined;
8385
+ '--focus-w'?: string | number | undefined;
8386
+ '--w-tablet'?: string | number | undefined;
8387
+ '--hvr-w-tablet'?: string | number | undefined;
8388
+ '--focus-w-tablet'?: string | number | undefined;
8389
+ '--w-mobile'?: string | number | undefined;
8390
+ '--hvr-w-mobile'?: string | number | undefined;
8391
+ '--focus-w-mobile'?: string | number | undefined;
8392
+ '--z'?: csstype.Property.ZIndex | undefined;
8393
+ '--hvr-z'?: csstype.Property.ZIndex | undefined;
8394
+ '--focus-z'?: csstype.Property.ZIndex | undefined;
8395
+ '--z-tablet'?: csstype.Property.ZIndex | undefined;
8396
+ '--hvr-z-tablet'?: csstype.Property.ZIndex | undefined;
8397
+ '--focus-z-tablet'?: csstype.Property.ZIndex | undefined;
8398
+ '--z-mobile'?: csstype.Property.ZIndex | undefined;
8399
+ '--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
8400
+ '--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
8401
+ accentColor?: csstype.Property.AccentColor | undefined;
8402
+ alignContent?: csstype.Property.AlignContent | undefined;
8403
+ alignItems?: csstype.Property.AlignItems | undefined;
8404
+ alignSelf?: csstype.Property.AlignSelf | undefined;
8405
+ alignTracks?: csstype.Property.AlignTracks | undefined;
8406
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
8407
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
8408
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
8409
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
8410
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
8411
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
8412
+ animationName?: csstype.Property.AnimationName | undefined;
8413
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
8414
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
8415
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
8416
+ appearance?: csstype.Property.Appearance | undefined;
8417
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
8418
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
8419
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
8420
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
8421
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
8422
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
8423
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
8424
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
8425
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
8426
+ backgroundPositionX?: string | number | undefined;
8427
+ backgroundPositionY?: string | number | undefined;
8428
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
8429
+ backgroundSize?: string | number | undefined;
8430
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
8431
+ blockSize?: string | number | undefined;
8432
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
8433
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
8434
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
8435
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
8436
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
8437
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
8438
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
8439
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
8440
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
8441
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
8442
+ borderBottomLeftRadius?: string | number | undefined;
8443
+ borderBottomRightRadius?: string | number | undefined;
8444
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
8445
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
8446
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
8447
+ borderEndEndRadius?: string | number | undefined;
8448
+ borderEndStartRadius?: string | number | undefined;
8449
+ borderImageOutset?: string | number | undefined;
8450
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
8451
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
8452
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
8453
+ borderImageWidth?: string | number | undefined;
8454
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
8455
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
8456
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
8457
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
8458
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
8459
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
8460
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
8461
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
8462
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
8463
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
8464
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
8465
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
8466
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
8467
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
8468
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
8469
+ borderSpacing?: string | number | undefined;
8470
+ borderStartEndRadius?: string | number | undefined;
8471
+ borderStartStartRadius?: string | number | undefined;
8472
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
8473
+ borderTopLeftRadius?: string | number | undefined;
8474
+ borderTopRightRadius?: string | number | undefined;
8475
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
8476
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
8477
+ bottom?: string | number | undefined;
8478
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
8479
+ boxShadow?: csstype.Property.BoxShadow | undefined;
8480
+ boxSizing?: csstype.Property.BoxSizing | undefined;
8481
+ breakAfter?: csstype.Property.BreakAfter | undefined;
8482
+ breakBefore?: csstype.Property.BreakBefore | undefined;
8483
+ breakInside?: csstype.Property.BreakInside | undefined;
8484
+ captionSide?: csstype.Property.CaptionSide | undefined;
8485
+ caretColor?: csstype.Property.CaretColor | undefined;
8486
+ caretShape?: csstype.Property.CaretShape | undefined;
8487
+ clear?: csstype.Property.Clear | undefined;
8488
+ clipPath?: csstype.Property.ClipPath | undefined;
8489
+ color?: csstype.Property.Color | undefined;
8490
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
8491
+ colorScheme?: csstype.Property.ColorScheme | undefined;
8492
+ columnCount?: csstype.Property.ColumnCount | undefined;
8493
+ columnFill?: csstype.Property.ColumnFill | undefined;
8494
+ columnGap?: string | number | undefined;
8495
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
8496
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
8497
+ columnRuleWidth?: string | number | undefined;
8498
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
8499
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
8500
+ contain?: csstype.Property.Contain | undefined;
8501
+ containIntrinsicBlockSize?: string | number | undefined;
8502
+ containIntrinsicHeight?: string | number | undefined;
8503
+ containIntrinsicInlineSize?: string | number | undefined;
8504
+ containIntrinsicWidth?: string | number | undefined;
8505
+ containerName?: csstype.Property.ContainerName | undefined;
8506
+ containerType?: csstype.Property.ContainerType | undefined;
8507
+ content?: csstype.Property.Content | undefined;
8508
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
8509
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
8510
+ counterReset?: csstype.Property.CounterReset | undefined;
8511
+ counterSet?: csstype.Property.CounterSet | undefined;
8512
+ cursor?: csstype.Property.Cursor | undefined;
8513
+ direction?: csstype.Property.Direction | undefined;
8514
+ display?: csstype.Property.Display | undefined;
8515
+ emptyCells?: csstype.Property.EmptyCells | undefined;
8516
+ filter?: csstype.Property.Filter | undefined;
8517
+ flexBasis?: string | number | undefined;
8518
+ flexDirection?: csstype.Property.FlexDirection | undefined;
8519
+ flexGrow?: csstype.Property.FlexGrow | undefined;
8520
+ flexShrink?: csstype.Property.FlexShrink | undefined;
8521
+ flexWrap?: csstype.Property.FlexWrap | undefined;
8522
+ float?: csstype.Property.Float | undefined;
8523
+ fontFamily?: csstype.Property.FontFamily | undefined;
8524
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
8525
+ fontKerning?: csstype.Property.FontKerning | undefined;
8526
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
8527
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
8528
+ fontPalette?: csstype.Property.FontPalette | undefined;
8529
+ fontSize?: string | number | undefined;
8530
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
8531
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
8532
+ fontStretch?: csstype.Property.FontStretch | undefined;
8533
+ fontStyle?: csstype.Property.FontStyle | undefined;
8534
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
8535
+ fontVariant?: csstype.Property.FontVariant | undefined;
8536
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
8537
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
8538
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
8539
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
8540
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
8541
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
8542
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
8543
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
8544
+ fontWeight?: csstype.Property.FontWeight | undefined;
8545
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
8546
+ gridAutoColumns?: string | number | undefined;
8547
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
8548
+ gridAutoRows?: string | number | undefined;
8549
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
8550
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
8551
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
8552
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
8553
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
8554
+ gridTemplateColumns?: string | number | undefined;
8555
+ gridTemplateRows?: string | number | undefined;
8556
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
8557
+ height?: string | number | undefined;
8558
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
8559
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
8560
+ hyphens?: csstype.Property.Hyphens | undefined;
8561
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
8562
+ imageRendering?: csstype.Property.ImageRendering | undefined;
8563
+ imageResolution?: csstype.Property.ImageResolution | undefined;
8564
+ initialLetter?: csstype.Property.InitialLetter | undefined;
8565
+ inlineSize?: string | number | undefined;
8566
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
8567
+ insetBlockEnd?: string | number | undefined;
8568
+ insetBlockStart?: string | number | undefined;
8569
+ insetInlineEnd?: string | number | undefined;
8570
+ insetInlineStart?: string | number | undefined;
8571
+ isolation?: csstype.Property.Isolation | undefined;
8572
+ justifyContent?: csstype.Property.JustifyContent | undefined;
8573
+ justifyItems?: csstype.Property.JustifyItems | undefined;
8574
+ justifySelf?: csstype.Property.JustifySelf | undefined;
8575
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
8576
+ left?: string | number | undefined;
8577
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
8578
+ lineBreak?: csstype.Property.LineBreak | undefined;
8579
+ lineHeight?: string | number | undefined;
8580
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
8581
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
8582
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
8583
+ listStyleType?: csstype.Property.ListStyleType | undefined;
8584
+ marginBlockEnd?: string | number | undefined;
8585
+ marginBlockStart?: string | number | undefined;
8586
+ marginBottom?: string | number | undefined;
8587
+ marginInlineEnd?: string | number | undefined;
8588
+ marginInlineStart?: string | number | undefined;
8589
+ marginLeft?: string | number | undefined;
8590
+ marginRight?: string | number | undefined;
8591
+ marginTop?: string | number | undefined;
8592
+ marginTrim?: csstype.Property.MarginTrim | undefined;
8593
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
8594
+ maskBorderOutset?: string | number | undefined;
8595
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
8596
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
8597
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
8598
+ maskBorderWidth?: string | number | undefined;
8599
+ maskClip?: csstype.Property.MaskClip | undefined;
8600
+ maskComposite?: csstype.Property.MaskComposite | undefined;
8601
+ maskImage?: csstype.Property.MaskImage | undefined;
8602
+ maskMode?: csstype.Property.MaskMode | undefined;
8603
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
8604
+ maskPosition?: string | number | undefined;
8605
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
8606
+ maskSize?: string | number | undefined;
8607
+ maskType?: csstype.Property.MaskType | undefined;
8608
+ mathDepth?: csstype.Property.MathDepth | undefined;
8609
+ mathShift?: csstype.Property.MathShift | undefined;
8610
+ mathStyle?: csstype.Property.MathStyle | undefined;
8611
+ maxBlockSize?: string | number | undefined;
8612
+ maxHeight?: string | number | undefined;
8613
+ maxInlineSize?: string | number | undefined;
8614
+ maxLines?: csstype.Property.MaxLines | undefined;
8615
+ maxWidth?: string | number | undefined;
8616
+ minBlockSize?: string | number | undefined;
8617
+ minHeight?: string | number | undefined;
8618
+ minInlineSize?: string | number | undefined;
8619
+ minWidth?: string | number | undefined;
8620
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
8621
+ motionDistance?: string | number | undefined;
8622
+ motionPath?: csstype.Property.OffsetPath | undefined;
8623
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
8624
+ objectFit?: csstype.Property.ObjectFit | undefined;
8625
+ objectPosition?: string | number | undefined;
8626
+ offsetAnchor?: string | number | undefined;
8627
+ offsetDistance?: string | number | undefined;
8628
+ offsetPath?: csstype.Property.OffsetPath | undefined;
8629
+ offsetPosition?: string | number | undefined;
8630
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
8631
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
8632
+ opacity?: csstype.Property.Opacity | undefined;
8633
+ order?: csstype.Property.Order | undefined;
8634
+ orphans?: csstype.Property.Orphans | undefined;
8635
+ outlineColor?: csstype.Property.OutlineColor | undefined;
8636
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
8637
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
8638
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
8639
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
8640
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
8641
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
8642
+ overflowClipMargin?: string | number | undefined;
8643
+ overflowInline?: csstype.Property.OverflowInline | undefined;
8644
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
8645
+ overflowX?: csstype.Property.OverflowX | undefined;
8646
+ overflowY?: csstype.Property.OverflowY | undefined;
8647
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
8648
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
8649
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
8650
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
8651
+ paddingBlockEnd?: string | number | undefined;
8652
+ paddingBlockStart?: string | number | undefined;
8653
+ paddingBottom?: string | number | undefined;
8654
+ paddingInlineEnd?: string | number | undefined;
8655
+ paddingInlineStart?: string | number | undefined;
8656
+ paddingLeft?: string | number | undefined;
8657
+ paddingRight?: string | number | undefined;
8658
+ paddingTop?: string | number | undefined;
8659
+ page?: csstype.Property.Page | undefined;
8660
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
8661
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
8662
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
8663
+ paintOrder?: csstype.Property.PaintOrder | undefined;
8664
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
8665
+ perspectiveOrigin?: string | number | undefined;
8666
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
8667
+ position?: csstype.Property.Position | undefined;
8668
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
8669
+ quotes?: csstype.Property.Quotes | undefined;
8670
+ resize?: csstype.Property.Resize | undefined;
8671
+ right?: string | number | undefined;
8672
+ rotate?: csstype.Property.Rotate | undefined;
8673
+ rowGap?: string | number | undefined;
8674
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
8675
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
8676
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
8677
+ scale?: csstype.Property.Scale | undefined;
8678
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
8679
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
8680
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
8681
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
8682
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
8683
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
8684
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
8685
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
8686
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
8687
+ scrollPaddingBlockEnd?: string | number | undefined;
8688
+ scrollPaddingBlockStart?: string | number | undefined;
8689
+ scrollPaddingBottom?: string | number | undefined;
8690
+ scrollPaddingInlineEnd?: string | number | undefined;
8691
+ scrollPaddingInlineStart?: string | number | undefined;
8692
+ scrollPaddingLeft?: string | number | undefined;
8693
+ scrollPaddingRight?: string | number | undefined;
8694
+ scrollPaddingTop?: string | number | undefined;
8695
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
8696
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
8697
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
8698
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
8699
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
8700
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
8701
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
8702
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
8703
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
8704
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
8705
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
8706
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
8707
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
8708
+ shapeMargin?: string | number | undefined;
8709
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
8710
+ tabSize?: string | number | undefined;
8711
+ tableLayout?: csstype.Property.TableLayout | undefined;
8712
+ textAlign?: csstype.Property.TextAlign | undefined;
8713
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
8714
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
8715
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
8716
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
8717
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
8718
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
8719
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
8720
+ textDecorationThickness?: string | number | undefined;
8721
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
8722
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
8723
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
8724
+ textIndent?: string | number | undefined;
8725
+ textJustify?: csstype.Property.TextJustify | undefined;
8726
+ textOrientation?: csstype.Property.TextOrientation | undefined;
8727
+ textOverflow?: csstype.Property.TextOverflow | undefined;
8728
+ textRendering?: csstype.Property.TextRendering | undefined;
8729
+ textShadow?: csstype.Property.TextShadow | undefined;
8730
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
8731
+ textTransform?: csstype.Property.TextTransform | undefined;
8732
+ textUnderlineOffset?: string | number | undefined;
8733
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
8734
+ top?: string | number | undefined;
8735
+ touchAction?: csstype.Property.TouchAction | undefined;
8736
+ transform?: csstype.Property.Transform | undefined;
8737
+ transformBox?: csstype.Property.TransformBox | undefined;
8738
+ transformOrigin?: string | number | undefined;
8739
+ transformStyle?: csstype.Property.TransformStyle | undefined;
8740
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
8741
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
8742
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
8743
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
8744
+ translate?: string | number | undefined;
8745
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
8746
+ userSelect?: csstype.Property.UserSelect | undefined;
8747
+ verticalAlign?: string | number | undefined;
8748
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
8749
+ visibility?: csstype.Property.Visibility | undefined;
8750
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
8751
+ widows?: csstype.Property.Widows | undefined;
8752
+ width?: string | number | undefined;
8753
+ willChange?: csstype.Property.WillChange | undefined;
8754
+ wordBreak?: csstype.Property.WordBreak | undefined;
8755
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
8756
+ wordWrap?: csstype.Property.WordWrap | undefined;
8757
+ writingMode?: csstype.Property.WritingMode | undefined;
8758
+ zIndex?: csstype.Property.ZIndex | undefined;
8759
+ zoom?: csstype.Property.Zoom | undefined;
8760
+ all?: csstype.Globals | undefined;
8761
+ animation?: csstype.Property.Animation<string & {}> | undefined;
8762
+ background?: string | number | undefined;
8763
+ backgroundPosition?: string | number | undefined;
8764
+ border?: string | number | undefined;
8765
+ borderBlock?: string | number | undefined;
8766
+ borderBlockEnd?: string | number | undefined;
8767
+ borderBlockStart?: string | number | undefined;
8768
+ borderBottom?: string | number | undefined;
8769
+ borderColor?: csstype.Property.BorderColor | undefined;
8770
+ borderImage?: csstype.Property.BorderImage | undefined;
8771
+ borderInline?: string | number | undefined;
8772
+ borderInlineEnd?: string | number | undefined;
8773
+ borderInlineStart?: string | number | undefined;
8774
+ borderLeft?: string | number | undefined;
8775
+ borderRadius?: string | number | undefined;
8776
+ borderRight?: string | number | undefined;
8777
+ borderStyle?: csstype.Property.BorderStyle | undefined;
8778
+ borderTop?: string | number | undefined;
8779
+ borderWidth?: string | number | undefined;
8780
+ caret?: csstype.Property.Caret | undefined;
8781
+ columnRule?: string | number | undefined;
8782
+ columns?: string | number | undefined;
8783
+ containIntrinsicSize?: string | number | undefined;
8784
+ container?: csstype.Property.Container | undefined;
8785
+ flex?: string | number | undefined;
8786
+ flexFlow?: csstype.Property.FlexFlow | undefined;
8787
+ font?: csstype.Property.Font | undefined;
8788
+ gap?: string | number | undefined;
8789
+ grid?: csstype.Property.Grid | undefined;
8790
+ gridArea?: csstype.Property.GridArea | undefined;
8791
+ gridColumn?: csstype.Property.GridColumn | undefined;
8792
+ gridRow?: csstype.Property.GridRow | undefined;
8793
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
8794
+ inset?: string | number | undefined;
8795
+ insetBlock?: string | number | undefined;
8796
+ insetInline?: string | number | undefined;
8797
+ lineClamp?: csstype.Property.LineClamp | undefined;
8798
+ listStyle?: csstype.Property.ListStyle | undefined;
8799
+ margin?: string | number | undefined;
8800
+ marginBlock?: string | number | undefined;
8801
+ marginInline?: string | number | undefined;
8802
+ mask?: string | number | undefined;
8803
+ maskBorder?: csstype.Property.MaskBorder | undefined;
8804
+ motion?: string | number | undefined;
8805
+ offset?: string | number | undefined;
8806
+ outline?: string | number | undefined;
8807
+ overflow?: csstype.Property.Overflow | undefined;
8808
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
8809
+ padding?: string | number | undefined;
8810
+ paddingBlock?: string | number | undefined;
8811
+ paddingInline?: string | number | undefined;
8812
+ placeContent?: csstype.Property.PlaceContent | undefined;
8813
+ placeItems?: csstype.Property.PlaceItems | undefined;
8814
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
8815
+ scrollMargin?: string | number | undefined;
8816
+ scrollMarginBlock?: string | number | undefined;
8817
+ scrollMarginInline?: string | number | undefined;
8818
+ scrollPadding?: string | number | undefined;
8819
+ scrollPaddingBlock?: string | number | undefined;
8820
+ scrollPaddingInline?: string | number | undefined;
8821
+ scrollSnapMargin?: string | number | undefined;
8822
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
8823
+ textDecoration?: string | number | undefined;
8824
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
8825
+ transition?: csstype.Property.Transition<string & {}> | undefined;
8826
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
8827
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
8828
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
8829
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
8830
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
8831
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
8832
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
8833
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
8834
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
8835
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
8836
+ MozBinding?: csstype.Property.MozBinding | undefined;
8837
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
8838
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
8839
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
8840
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
8841
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
8842
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
8843
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
8844
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
8845
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
8846
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
8847
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
8848
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
8849
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
8850
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
8851
+ MozColumnRuleWidth?: string | number | undefined;
8852
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
8853
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
8854
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
8855
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
8856
+ MozHyphens?: csstype.Property.Hyphens | undefined;
8857
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
8858
+ MozMarginEnd?: string | number | undefined;
8859
+ MozMarginStart?: string | number | undefined;
8860
+ MozOrient?: csstype.Property.MozOrient | undefined;
8861
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
8862
+ MozPaddingEnd?: string | number | undefined;
8863
+ MozPaddingStart?: string | number | undefined;
8864
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
8865
+ MozPerspectiveOrigin?: string | number | undefined;
8866
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
8867
+ MozTabSize?: string | number | undefined;
8868
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
8869
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
8870
+ MozTransformOrigin?: string | number | undefined;
8871
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
8872
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
8873
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
8874
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
8875
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
8876
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
8877
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
8878
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
8879
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
8880
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
8881
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
8882
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
8883
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
8884
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
8885
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
8886
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
8887
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
8888
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
8889
+ msFilter?: csstype.Property.MsFilter | undefined;
8890
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
8891
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
8892
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
8893
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
8894
+ msGridColumns?: string | number | undefined;
8895
+ msGridRows?: string | number | undefined;
8896
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
8897
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
8898
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
8899
+ msHyphenateLimitZone?: string | number | undefined;
8900
+ msHyphens?: csstype.Property.Hyphens | undefined;
8901
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
8902
+ msLineBreak?: csstype.Property.LineBreak | undefined;
8903
+ msOrder?: csstype.Property.Order | undefined;
8904
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
8905
+ msOverflowX?: csstype.Property.OverflowX | undefined;
8906
+ msOverflowY?: csstype.Property.OverflowY | undefined;
8907
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
8908
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
8909
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
8910
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
8911
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
8912
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
8913
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
8914
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
8915
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
8916
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
8917
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
8918
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
8919
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
8920
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
8921
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
8922
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
8923
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
8924
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
8925
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
8926
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
8927
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
8928
+ msTouchAction?: csstype.Property.TouchAction | undefined;
8929
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
8930
+ msTransform?: csstype.Property.Transform | undefined;
8931
+ msTransformOrigin?: string | number | undefined;
8932
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
8933
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
8934
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
8935
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
8936
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
8937
+ msWordBreak?: csstype.Property.WordBreak | undefined;
8938
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
8939
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
8940
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
8941
+ msWritingMode?: csstype.Property.WritingMode | undefined;
8942
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
8943
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
8944
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
8945
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
8946
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
8947
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
8948
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
8949
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
8950
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
8951
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
8952
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
8953
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
8954
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
8955
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
8956
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
8957
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
8958
+ WebkitBackgroundSize?: string | number | undefined;
8959
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
8960
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
8961
+ WebkitBorderBeforeWidth?: string | number | undefined;
8962
+ WebkitBorderBottomLeftRadius?: string | number | undefined;
8963
+ WebkitBorderBottomRightRadius?: string | number | undefined;
8964
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
8965
+ WebkitBorderTopLeftRadius?: string | number | undefined;
8966
+ WebkitBorderTopRightRadius?: string | number | undefined;
8967
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
8968
+ WebkitBoxReflect?: string | number | undefined;
8969
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
8970
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
8971
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
8972
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
8973
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
8974
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
8975
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
8976
+ WebkitColumnRuleWidth?: string | number | undefined;
8977
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
8978
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
8979
+ WebkitFilter?: csstype.Property.Filter | undefined;
8980
+ WebkitFlexBasis?: string | number | undefined;
8981
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
8982
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
8983
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
8984
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
8985
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
8986
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
8987
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
8988
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
8989
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
8990
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
8991
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
8992
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
8993
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
8994
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
8995
+ WebkitMarginEnd?: string | number | undefined;
8996
+ WebkitMarginStart?: string | number | undefined;
8997
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
8998
+ WebkitMaskBoxImageOutset?: string | number | undefined;
8999
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
9000
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
9001
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
9002
+ WebkitMaskBoxImageWidth?: string | number | undefined;
9003
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
9004
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
9005
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
9006
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
9007
+ WebkitMaskPosition?: string | number | undefined;
9008
+ WebkitMaskPositionX?: string | number | undefined;
9009
+ WebkitMaskPositionY?: string | number | undefined;
9010
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
9011
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
9012
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
9013
+ WebkitMaskSize?: string | number | undefined;
9014
+ WebkitMaxInlineSize?: string | number | undefined;
9015
+ WebkitOrder?: csstype.Property.Order | undefined;
9016
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
9017
+ WebkitPaddingEnd?: string | number | undefined;
9018
+ WebkitPaddingStart?: string | number | undefined;
9019
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
9020
+ WebkitPerspectiveOrigin?: string | number | undefined;
9021
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
9022
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
9023
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
9024
+ WebkitShapeMargin?: string | number | undefined;
9025
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
9026
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
9027
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
9028
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
9029
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
9030
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
9031
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
9032
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
9033
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
9034
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
9035
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
9036
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
9037
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
9038
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
9039
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
9040
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
9041
+ WebkitTransform?: csstype.Property.Transform | undefined;
9042
+ WebkitTransformOrigin?: string | number | undefined;
9043
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
9044
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
9045
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
9046
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
9047
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
9048
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
9049
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
9050
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
9051
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
9052
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
9053
+ MozColumnRule?: string | number | undefined;
9054
+ MozColumns?: string | number | undefined;
9055
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
9056
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
9057
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
9058
+ msFlex?: string | number | undefined;
9059
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
9060
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
9061
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
9062
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
9063
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
9064
+ WebkitBorderBefore?: string | number | undefined;
9065
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
9066
+ WebkitBorderRadius?: string | number | undefined;
9067
+ WebkitColumnRule?: string | number | undefined;
9068
+ WebkitColumns?: string | number | undefined;
9069
+ WebkitFlex?: string | number | undefined;
9070
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
9071
+ WebkitMask?: string | number | undefined;
9072
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
9073
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
9074
+ WebkitTextStroke?: string | number | undefined;
9075
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
9076
+ azimuth?: csstype.Property.Azimuth | undefined;
9077
+ boxAlign?: csstype.Property.BoxAlign | undefined;
9078
+ boxDirection?: csstype.Property.BoxDirection | undefined;
9079
+ boxFlex?: csstype.Property.BoxFlex | undefined;
9080
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
9081
+ boxLines?: csstype.Property.BoxLines | undefined;
9082
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
9083
+ boxOrient?: csstype.Property.BoxOrient | undefined;
9084
+ boxPack?: csstype.Property.BoxPack | undefined;
9085
+ clip?: csstype.Property.Clip | undefined;
9086
+ gridColumnGap?: string | number | undefined;
9087
+ gridGap?: string | number | undefined;
9088
+ gridRowGap?: string | number | undefined;
9089
+ imeMode?: csstype.Property.ImeMode | undefined;
9090
+ offsetBlock?: string | number | undefined;
9091
+ offsetBlockEnd?: string | number | undefined;
9092
+ offsetBlockStart?: string | number | undefined;
9093
+ offsetInline?: string | number | undefined;
9094
+ offsetInlineEnd?: string | number | undefined;
9095
+ offsetInlineStart?: string | number | undefined;
9096
+ scrollSnapCoordinate?: string | number | undefined;
9097
+ scrollSnapDestination?: string | number | undefined;
9098
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
9099
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
9100
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
9101
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
9102
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
9103
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
9104
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
9105
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
9106
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
9107
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
9108
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
9109
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
9110
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
9111
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
9112
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
9113
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
9114
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
9115
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
9116
+ MozBackgroundSize?: string | number | undefined;
9117
+ MozBorderRadius?: string | number | undefined;
9118
+ MozBorderRadiusBottomleft?: string | number | undefined;
9119
+ MozBorderRadiusBottomright?: string | number | undefined;
9120
+ MozBorderRadiusTopleft?: string | number | undefined;
9121
+ MozBorderRadiusTopright?: string | number | undefined;
9122
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
9123
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
9124
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
9125
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
9126
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
9127
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
9128
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
9129
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
9130
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
9131
+ MozOpacity?: csstype.Property.Opacity | undefined;
9132
+ MozOutline?: string | number | undefined;
9133
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
9134
+ MozOutlineRadius?: string | number | undefined;
9135
+ MozOutlineRadiusBottomleft?: string | number | undefined;
9136
+ MozOutlineRadiusBottomright?: string | number | undefined;
9137
+ MozOutlineRadiusTopleft?: string | number | undefined;
9138
+ MozOutlineRadiusTopright?: string | number | undefined;
9139
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
9140
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
9141
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
9142
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
9143
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
9144
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
9145
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
9146
+ msImeMode?: csstype.Property.ImeMode | undefined;
9147
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
9148
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
9149
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
9150
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
9151
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
9152
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
9153
+ OAnimationName?: csstype.Property.AnimationName | undefined;
9154
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
9155
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
9156
+ OBackgroundSize?: string | number | undefined;
9157
+ OBorderImage?: csstype.Property.BorderImage | undefined;
9158
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
9159
+ OObjectPosition?: string | number | undefined;
9160
+ OTabSize?: string | number | undefined;
9161
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
9162
+ OTransform?: csstype.Property.Transform | undefined;
9163
+ OTransformOrigin?: string | number | undefined;
9164
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
9165
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
9166
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
9167
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
9168
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
9169
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
9170
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
9171
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
9172
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
9173
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
9174
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
9175
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
9176
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
9177
+ WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
9178
+ WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
9179
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
9180
+ baselineShift?: string | number | undefined;
9181
+ clipRule?: csstype.Property.ClipRule | undefined;
9182
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
9183
+ colorRendering?: csstype.Property.ColorRendering | undefined;
9184
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
9185
+ fill?: csstype.Property.Fill | undefined;
9186
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
9187
+ fillRule?: csstype.Property.FillRule | undefined;
9188
+ floodColor?: csstype.Property.FloodColor | undefined;
9189
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
9190
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
9191
+ lightingColor?: csstype.Property.LightingColor | undefined;
9192
+ marker?: csstype.Property.Marker | undefined;
9193
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
9194
+ markerMid?: csstype.Property.MarkerMid | undefined;
9195
+ markerStart?: csstype.Property.MarkerStart | undefined;
9196
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
9197
+ stopColor?: csstype.Property.StopColor | undefined;
9198
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
9199
+ stroke?: csstype.Property.Stroke | undefined;
9200
+ strokeDasharray?: string | number | undefined;
9201
+ strokeDashoffset?: string | number | undefined;
9202
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
9203
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
9204
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
9205
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
9206
+ strokeWidth?: string | number | undefined;
9207
+ textAnchor?: csstype.Property.TextAnchor | undefined;
9208
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
9209
+ };
7667
9210
 
7668
9211
  declare const getCornerCSSFromGlobal: (corner: CornerRadius) => React.CSSProperties;
7669
9212
  declare const getRadiusCSSFromGlobal: (state: StateType, key?: RoundedSize, device?: NameDevices) => React.CSSProperties;
@@ -7735,7 +9278,9 @@ type CallbackCondition = () => string;
7735
9278
  declare const RenderIf: (c: boolean | null | undefined, t: string | CallbackCondition, f?: string | CallbackCondition) => string;
7736
9279
  declare const props: (strings: any, ...keys: any[]) => string;
7737
9280
  declare const styles: (strings: any, ...keys: any[]) => string;
9281
+ declare const dataStringify: (obj: object) => string;
7738
9282
  declare const template: (strings: any, ...keys: any[]) => string;
9283
+ declare const composeMemo: <T>(fn: () => T, _?: any[]) => T;
7739
9284
 
7740
9285
  declare const isLocalEnv: boolean;
7741
9286
  declare const baseAssetURL: string;
@@ -7842,6 +9387,10 @@ declare const useCurrency: () => {
7842
9387
  currency: string | undefined;
7843
9388
  changeCurrency: (currency: string) => void;
7844
9389
  };
9390
+ declare const useMoneyFormat: () => {
9391
+ moneyFormat: string | undefined;
9392
+ moneyWithCurrencyFormat: string | undefined;
9393
+ };
7845
9394
  declare const useSwatches: () => {
7846
9395
  swatches: GlobalSwatchesData[] | undefined;
7847
9396
  changeSwatches: (swatches: GlobalSwatchesData[]) => void;
@@ -7878,6 +9427,8 @@ declare const useProductsQuery: (ids?: string[], options?: SWRConfiguration<Prod
7878
9427
 
7879
9428
  declare const useCurrentDevice: () => NameDevices;
7880
9429
 
9430
+ declare const useFormatMoney: (amount: number, withCurrency: boolean) => string;
9431
+
7881
9432
  declare const useLazyVideo: () => void;
7882
9433
 
7883
9434
  declare const useCartId: () => {
@@ -7896,10 +9447,6 @@ declare function useCartUI(): {
7896
9447
 
7897
9448
  declare const useCollection: () => CollectionSelectFragment | undefined;
7898
9449
 
7899
- declare const useFormatMoney: () => {
7900
- formatMoney: (value: number, options?: Intl.NumberFormatOptions & Required<Pick<Intl.NumberFormatOptions, 'currency'>>) => string;
7901
- };
7902
-
7903
9450
  declare const useIsomorphicLayoutEffect: typeof useLayoutEffect;
7904
9451
 
7905
9452
  type LoadScriptParams = Parameters<typeof loadScript>;
@@ -7909,14 +9456,50 @@ type ScriptState = 'loading' | 'done' | 'error';
7909
9456
  */
7910
9457
  declare function useLoadScript(url: LoadScriptParams[0], options?: LoadScriptParams[1]): ScriptState;
7911
9458
 
7912
- declare const useMoney: (money: number) => {
7913
- currencyCode: string | undefined;
7914
- currencyName: string | undefined;
7915
- currencyNarrowSymbol: string;
9459
+ type UseMoneyValue = {
9460
+ /**
9461
+ * The currency code from the `MoneyV2` object.
9462
+ */
9463
+ currencyCode: string;
9464
+ /**
9465
+ * The name for the currency code, returned by `Intl.NumberFormat`.
9466
+ */
9467
+ currencyName?: string;
9468
+ /**
9469
+ * The currency symbol returned by `Intl.NumberFormat`.
9470
+ */
9471
+ currencySymbol?: string;
9472
+ /**
9473
+ * The currency narrow symbol returned by `Intl.NumberFormat`.
9474
+ */
9475
+ currencyNarrowSymbol?: string;
9476
+ /**
9477
+ * The localized amount, without any currency symbols or non-number types from the `Intl.NumberFormat.formatToParts` parts.
9478
+ */
9479
+ amount: string;
9480
+ /**
9481
+ * All parts returned by `Intl.NumberFormat.formatToParts`.
9482
+ */
7916
9483
  parts: Intl.NumberFormatPart[];
9484
+ /**
9485
+ * A string returned by `new Intl.NumberFormat` for the amount and currency code,
9486
+ * using the `locale` value in the [`LocalizationProvider` component](https://shopify.dev/api/hydrogen/components/localization/localizationprovider).
9487
+ */
7917
9488
  localizedString: string;
7918
- amount: string;
7919
- };
9489
+ /**
9490
+ * A string with trailing zeros removed from the fractional part, if any exist. If there are no trailing zeros, then the fractional part remains.
9491
+ * For example, `$640.00` turns into `$640`.
9492
+ * `$640.42` remains `$640.42`.
9493
+ */
9494
+ withoutTrailingZeros: string;
9495
+ /**
9496
+ * A string without currency and without trailing zeros removed from the fractional part, if any exist. If there are no trailing zeros, then the fractional part remains.
9497
+ * For example, `$640.00` turns into `640`.
9498
+ * `$640.42` turns into `640.42`.
9499
+ */
9500
+ withoutTrailingZerosAndCurrency: string;
9501
+ };
9502
+ declare const useMoney: (amount: number) => UseMoneyValue;
7920
9503
 
7921
9504
  declare const usePrevious: <T>(value: T) => T | undefined;
7922
9505
 
@@ -7996,4 +9579,4 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage, 'id' | 'name' |
7996
9579
 
7997
9580
  declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
7998
9581
 
7999
- export { AddOn, AddonProvider, AddonProviderProps, AlignItemProp, AlignProp, Background, BaseProps, BasePropsWrap, BlockEntity, 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, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, ExtractState, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, HSLAColorType, HSLColorType, HexColorType, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OptionNormalStyle, OptionSpecialStyle, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, RenderMemo as Render, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SectionData, SectionEntity, SectionProvider, SectionProviderProps, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeType, SpacingType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TransformProp, TypographyProps, TypographySetting, TypographyType, VariantSelectFragment, WiserWidgetType, baseAssetURL, calculateFirstProduct, cls, composeAdvanceStyle, composeBackgroundCss, composeBorderCss, composeCornerCss, composeGridLayout, composeRadius, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypographyCss, convertOldLayout, fetchMedias, fetchVariants, flattenConnection, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getBorderStyle, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleShadow, getStyleShadowState, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isDefined, isEmptyChildren, isLocalEnv, loadScript, makeAspectRatio, makeHeight, makeLineClamp, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, 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, useIsSampleProduct, useIsStorefrontProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
9582
+ export { AddOn, AddonProvider, AddonProviderProps, AlignItemProp, AlignProp, Background, BaseProps, BasePropsWrap, BlockEntity, 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, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, ExtractState, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, HSLAColorType, HSLColorType, HexColorType, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OptionNormalStyle, OptionSpecialStyle, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SectionData, SectionEntity, SectionProvider, SectionProviderProps, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeType, SpacingType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TransformProp, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, VariantSelectFragment, WiserWidgetType, baseAssetURL, calculateFirstProduct, cls, composeAdvanceStyle, composeBackgroundCss, composeBorderCss, composeCornerCss, composeGridLayout, composeMemo, composeRadius, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, convertOldLayout, dataStringify, fetchMedias, fetchVariants, flattenConnection, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getBorderStyle, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleShadow, getStyleShadowState, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isDefined, isEmptyChildren, isLocalEnv, loadScript, makeAspectRatio, makeHeight, makeLineClamp, makeStyle, makeStyleResponsive, makeStyleResponsiveState, makeStyleState, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeNullUndefined, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, 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, useIsSampleProduct, useIsStorefrontProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };