@gem-sdk/core 2.0.0 → 2.0.2

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.
@@ -31619,6 +31619,7 @@ type ShopContextProps = {
31619
31619
  isStorefront?: boolean;
31620
31620
  createThemeSectionCount?: number;
31621
31621
  plan?: string;
31622
+ timezone?: string;
31622
31623
  generateContentLimitation?: {
31623
31624
  isAllow: boolean;
31624
31625
  maxGenerateCount?: number;
@@ -31974,6 +31975,14 @@ type PreviewThemePageQueryResponse = {
31974
31975
  };
31975
31976
  declare const PreviewThemePageDocument: string;
31976
31977
 
31978
+ type ShopShopifyQueryVariables = Exact$1<{
31979
+ [key: string]: never;
31980
+ }>;
31981
+ type ShopShopifyQueryResponse = {
31982
+ shopShopify?: Maybe$1<Pick<ShopShopify$1, 'timezone'>>;
31983
+ };
31984
+ declare const ShopShopifyDocument = "\n query shopShopify {\n shopShopify {\n timezone\n }\n}\n ";
31985
+
31977
31986
  type LibraryTemplateQueryVariables = Exact<{
31978
31987
  libraryTemplateId: Scalars['ID'];
31979
31988
  }>;
@@ -35323,7 +35332,8 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
35323
35332
  textAnchor?: csstype.Property.TextAnchor | undefined;
35324
35333
  vectorEffect?: csstype.Property.VectorEffect | undefined;
35325
35334
  };
35326
- declare const filterCornerInStyle: (style?: React.CSSProperties) => {
35335
+ declare const getCornerStyle: (advancedSetting?: Record<string, AdvanceValue>) => React.CSSProperties;
35336
+ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
35327
35337
  [x: string]: any;
35328
35338
  '--ai'?: csstype.Property.AlignItems | undefined;
35329
35339
  '--hvr-ai'?: csstype.Property.AlignItems | undefined;
@@ -36845,7 +36855,103 @@ declare const filterCornerInStyle: (style?: React.CSSProperties) => {
36845
36855
  textAnchor?: csstype.Property.TextAnchor | undefined;
36846
36856
  vectorEffect?: csstype.Property.VectorEffect | undefined;
36847
36857
  };
36848
- declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
36858
+
36859
+ declare const isLocalEnv: boolean;
36860
+ declare const baseAssetURL: string;
36861
+
36862
+ declare const convertHTML: (str: string) => string;
36863
+
36864
+ type PostionType = {
36865
+ wrapper?: Record<string, string | number>;
36866
+ content?: Record<string, string | number>;
36867
+ };
36868
+ declare const composePostionIconList: (lineHeight: string, position?: ObjectDevices<'center' | 'baseline'>, iconWidth?: ObjectDevices<number>) => PostionType;
36869
+ declare const composePositionLineHeight: ({ compose, lineHeight, device, position, iconWidth, }: {
36870
+ compose: PostionType;
36871
+ lineHeight: string;
36872
+ device: NameDevices;
36873
+ position?: Partial<Record<NameDevices$1, "center" | "baseline">> | undefined;
36874
+ iconWidth?: Partial<Record<NameDevices$1, number>> | undefined;
36875
+ }) => void;
36876
+
36877
+ declare function isDefined<T>(argument: T | undefined): argument is T;
36878
+
36879
+ declare const gridToArrayRegex: RegExp;
36880
+ declare const optionLayoutStyle: (column?: ObjectDevices<string | number>) => React.CSSProperties;
36881
+ declare const composeGridLayout: (layout?: ObjectDevices<ObjectLayoutValue>) => React.CSSProperties;
36882
+ declare const convertOldLayout: (layout?: ObjectDevices<string>) => ObjectDevices<ObjectLayoutValue>;
36883
+
36884
+ declare const convertTextAlignToJustify: (align: Partial<Record<NameDevices$1, AlignProp>> | undefined) => Record<string, boolean>;
36885
+
36886
+ declare function checkInStock(variant?: VariantSelectFragment, product?: ProductSelectFragment): boolean;
36887
+
36888
+ declare function getSelectedVariant(variants?: Maybe$1<VariantSelectFragment>[], choices?: Record<string, string>, variantId?: string | null): Maybe$1<VariantSelectFragment>;
36889
+ declare function parseSelectedOption(options: SelectedOption$1[]): SelectedOption$1 | undefined;
36890
+ declare function checkAvailableVariantInStock(variants: Maybe$1<VariantSelectFragment>[] | undefined, optionId: string, optionValue: string): boolean;
36891
+
36892
+ type OrderByType = 'TITLE_ASC' | 'TITLE_DESC' | 'CREATED_AT_ASC' | 'none' | 'CREATED_AT_DESC';
36893
+ type FetchCollectionArgs = {
36894
+ id?: string;
36895
+ numberOfProducts?: number;
36896
+ orderBy?: OrderByType;
36897
+ isSample?: boolean;
36898
+ isStorefront?: boolean;
36899
+ };
36900
+ declare const getCollection: (fetcher: FetchFunc, arg: FetchCollectionArgs) => Promise<CollectionDetailFilterQueryResponse>;
36901
+ declare const calculateFirstProduct: (numberOfProducts: number, currentPage: number, productsPerPage: number) => number;
36902
+
36903
+ type FetchProductParams = {
36904
+ id?: string;
36905
+ isSample?: boolean;
36906
+ isStorefront?: boolean;
36907
+ };
36908
+ declare const getProduct: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<ProductSelectFragment>;
36909
+ type RequiredCursorEdge<T> = {
36910
+ cursor: string;
36911
+ node?: T;
36912
+ };
36913
+ declare const fetchVariants: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<RequiredCursorEdge<VariantSelectFragment>[]>;
36914
+ declare const fetchMedias: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<(Pick<MediaEdge$1, "cursor"> & {
36915
+ node?: Maybe$1<Pick<Media$1, "id" | "width" | "height" | "src" | "alt" | "contentType" | "previewImage">>;
36916
+ })[]>;
36917
+
36918
+ type FetchProductsParams = {
36919
+ ids: string[];
36920
+ isSample?: boolean;
36921
+ isStorefront?: boolean;
36922
+ defaultSelectedProductCount?: number;
36923
+ allStatus?: boolean;
36924
+ };
36925
+
36926
+ declare const generateProductQueryKey: (args: FetchProductParams) => ['query/product', FetchProductParams];
36927
+ declare const generateCollectionQueryKey: (args: FetchCollectionArgs) => ['query/collection', FetchCollectionArgs];
36928
+ declare const generateProductsQueryKey: (args: FetchProductsParams) => ['query/products', FetchProductsParams];
36929
+
36930
+ declare const getCornerCSSFromGlobal: (corner?: CornerRadius) => React.CSSProperties;
36931
+ declare const getRadiusCSSFromGlobal: (state: StateType, key?: RoundedSize, device?: NameDevices$1) => React.CSSProperties;
36932
+ declare const getCustomRadius: (state: StateType, radius?: CornerRadius, device?: NameDevices$1) => React.CSSProperties;
36933
+ declare const composeRadius: (value?: StateProp<CornerRadius> | ResponsiveStateProp<CornerRadius>) => React.CSSProperties;
36934
+ declare const composeRadiusResponsive: (radiusValue?: ObjectDevices<CornerRadius>) => React.CSSProperties;
36935
+ declare const getRadiusStyleActiveState: (radiusValue?: StateProp<CornerRadius>) => React.CSSProperties;
36936
+ declare const composeCornerCss: (value?: CornerRadius | undefined, important?: boolean) => string | undefined;
36937
+
36938
+ type CallbackCondition = () => string;
36939
+ declare const RenderIf: (c: boolean | null | undefined, t: string | CallbackCondition, f?: string | CallbackCondition) => string;
36940
+ declare const props: (strings: any, ...keys: any[]) => string;
36941
+ declare const styles: (strings: any, ...keys: any[]) => string;
36942
+ declare const dataStringify: (obj: object) => string;
36943
+ declare const template: (strings: any, ...keys: any[]) => string;
36944
+ declare const composeMemo: <T>(fn: () => T, _?: any[]) => T;
36945
+ declare const removeUndefinedValuesFromObject: (obj: Record<string, string>) => Record<string, string>;
36946
+
36947
+ declare const parseValueWithUnit: (valueWithUnit: string) => any;
36948
+ declare const getStyleShadow: (shadowStyle: ShadowStyle & {
36949
+ screen?: string;
36950
+ }, isActiveState?: boolean) => {
36951
+ [x: string]: string;
36952
+ };
36953
+ declare const getStyleShadowState: (shadow?: StateProp<ShadowProps>, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: StateProp<boolean>, screen?: string) => React.CSSProperties;
36954
+ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: any) => {
36849
36955
  [x: string]: any;
36850
36956
  '--ai'?: csstype.Property.AlignItems | undefined;
36851
36957
  '--hvr-ai'?: csstype.Property.AlignItems | undefined;
@@ -38366,104 +38472,58 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
38366
38472
  strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
38367
38473
  textAnchor?: csstype.Property.TextAnchor | undefined;
38368
38474
  vectorEffect?: csstype.Property.VectorEffect | undefined;
38369
- };
38370
-
38371
- declare const isLocalEnv: boolean;
38372
- declare const baseAssetURL: string;
38373
-
38374
- declare const convertHTML: (str: string) => string;
38375
-
38376
- type PostionType = {
38377
- wrapper?: Record<string, string | number>;
38378
- content?: Record<string, string | number>;
38379
- };
38380
- declare const composePostionIconList: (lineHeight: string, position?: ObjectDevices<'center' | 'baseline'>, iconWidth?: ObjectDevices<number>) => PostionType;
38381
- declare const composePositionLineHeight: ({ compose, lineHeight, device, position, iconWidth, }: {
38382
- compose: PostionType;
38383
- lineHeight: string;
38384
- device: NameDevices;
38385
- position?: Partial<Record<NameDevices$1, "center" | "baseline">> | undefined;
38386
- iconWidth?: Partial<Record<NameDevices$1, number>> | undefined;
38387
- }) => void;
38388
-
38389
- declare function isDefined<T>(argument: T | undefined): argument is T;
38390
-
38391
- declare const gridToArrayRegex: RegExp;
38392
- declare const optionLayoutStyle: (column?: ObjectDevices<string | number>) => React.CSSProperties;
38393
- declare const composeGridLayout: (layout?: ObjectDevices<ObjectLayoutValue>) => React.CSSProperties;
38394
- declare const convertOldLayout: (layout?: ObjectDevices<string>) => ObjectDevices<ObjectLayoutValue>;
38395
-
38396
- declare const convertTextAlignToJustify: (align: Partial<Record<NameDevices$1, AlignProp>> | undefined) => Record<string, boolean>;
38397
-
38398
- declare function checkInStock(variant?: VariantSelectFragment, product?: ProductSelectFragment): boolean;
38399
-
38400
- declare function getSelectedVariant(variants?: Maybe$1<VariantSelectFragment>[], choices?: Record<string, string>, variantId?: string | null): Maybe$1<VariantSelectFragment>;
38401
- declare function parseSelectedOption(options: SelectedOption$1[]): SelectedOption$1 | undefined;
38402
- declare function checkAvailableVariantInStock(variants: Maybe$1<VariantSelectFragment>[] | undefined, optionId: string, optionValue: string): boolean;
38403
-
38404
- type OrderByType = 'TITLE_ASC' | 'TITLE_DESC' | 'CREATED_AT_ASC' | 'none' | 'CREATED_AT_DESC';
38405
- type FetchCollectionArgs = {
38406
- id?: string;
38407
- numberOfProducts?: number;
38408
- orderBy?: OrderByType;
38409
- isSample?: boolean;
38410
- isStorefront?: boolean;
38411
- };
38412
- declare const getCollection: (fetcher: FetchFunc, arg: FetchCollectionArgs) => Promise<CollectionDetailFilterQueryResponse>;
38413
- declare const calculateFirstProduct: (numberOfProducts: number, currentPage: number, productsPerPage: number) => number;
38475
+ } | undefined;
38476
+ declare const composeShadowCss: ({ hasBoxShadow, boxShadowValue, important, }: {
38477
+ hasBoxShadow?: boolean | undefined;
38478
+ boxShadowValue?: ShadowProps | undefined;
38479
+ important?: boolean | undefined;
38480
+ }) => string | undefined;
38414
38481
 
38415
- type FetchProductParams = {
38416
- id?: string;
38417
- isSample?: boolean;
38418
- isStorefront?: boolean;
38482
+ declare const composeSize: (size?: ObjectDevices<SizeProps>) => React.CSSProperties;
38483
+ declare function genSizeClass(name: string): string;
38484
+ declare const composeSizeCss: (spacing?: SizeSetting) => string | undefined;
38485
+ declare const makeGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
38486
+ width: Record<ResponsiveKey<"w">, string | number>;
38487
+ height: Record<ResponsiveKey<"h">, string | number>;
38488
+ padding: React.CSSProperties;
38489
+ gap: {
38490
+ '--gg': string | undefined;
38491
+ '--gg-tablet': string | undefined;
38492
+ '--gg-mobile': string | undefined;
38493
+ };
38419
38494
  };
38420
- declare const getProduct: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<ProductSelectFragment>;
38421
- type RequiredCursorEdge<T> = {
38422
- cursor: string;
38423
- node?: T;
38495
+ declare const makeGlobalSizeIcon: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
38496
+ width: Record<ResponsiveKey<"w">, string | number>;
38497
+ height: Record<ResponsiveKey<"h">, string | number>;
38498
+ minWidth: Record<ResponsiveKey<"minw">, string | number>;
38499
+ padding: React.CSSProperties;
38424
38500
  };
38425
- declare const fetchVariants: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<RequiredCursorEdge<VariantSelectFragment>[]>;
38426
- declare const fetchMedias: (fetcher: FetchFunc, { id, isSample, isStorefront }: FetchProductParams) => Promise<(Pick<MediaEdge$1, "cursor"> & {
38427
- node?: Maybe$1<Pick<Media$1, "id" | "width" | "height" | "src" | "alt" | "contentType" | "previewImage">>;
38428
- })[]>;
38429
-
38430
- type FetchProductsParams = {
38431
- ids: string[];
38432
- isSample?: boolean;
38433
- isStorefront?: boolean;
38434
- defaultSelectedProductCount?: number;
38435
- allStatus?: boolean;
38501
+ declare const getGlobalSizeGap: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
38502
+ '--gg': string | undefined;
38503
+ '--gg-tablet': string | undefined;
38504
+ '--gg-mobile': string | undefined;
38436
38505
  };
38506
+ declare const makeStyleWithDefault: <T extends ShortHandProperty, K>(name: T, value?: Partial<Record<NameDevices$1, K>> | undefined, defaultVal?: Partial<Record<NameDevices$1, K>> | undefined) => Record<ResponsiveKey<T>, K>;
38507
+ declare const getWidthHeightGlobalSize: (type: 'width' | 'height', globalSize?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string | number>>;
38508
+ declare const getHeightByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string>>;
38509
+ declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean, defaultFull?: boolean) => Partial<Record<NameDevices$1, string>>;
38510
+ declare const getAspectRatioGlobalSize: (shape?: ObjectDevices<SizeSettingGlobal>) => ObjectDevices<string>;
38511
+ declare const getPaddingGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => React.CSSProperties;
38512
+ declare const getValueByDevice: <T>(value: any, device: NameDevices$1) => T;
38437
38513
 
38438
- declare const generateProductQueryKey: (args: FetchProductParams) => ['query/product', FetchProductParams];
38439
- declare const generateCollectionQueryKey: (args: FetchCollectionArgs) => ['query/collection', FetchCollectionArgs];
38440
- declare const generateProductsQueryKey: (args: FetchProductsParams) => ['query/products', FetchProductsParams];
38441
-
38442
- declare const getCornerCSSFromGlobal: (corner?: CornerRadius) => React.CSSProperties;
38443
- declare const getRadiusCSSFromGlobal: (state: StateType, key?: RoundedSize, device?: NameDevices$1) => React.CSSProperties;
38444
- declare const getCustomRadius: (state: StateType, radius?: CornerRadius, device?: NameDevices$1) => React.CSSProperties;
38445
- declare const composeRadius: (value?: StateProp<CornerRadius> | ResponsiveStateProp<CornerRadius>) => React.CSSProperties;
38446
- declare const composeRadiusResponsive: (radiusValue?: ObjectDevices<CornerRadius>) => React.CSSProperties;
38447
- declare const getRadiusStyleActiveState: (radiusValue?: StateProp<CornerRadius>) => React.CSSProperties;
38448
- declare const composeCornerCss: (value?: CornerRadius | undefined, important?: boolean) => string | undefined;
38449
-
38450
- type CallbackCondition = () => string;
38451
- declare const RenderIf: (c: boolean | null | undefined, t: string | CallbackCondition, f?: string | CallbackCondition) => string;
38452
- declare const props: (strings: any, ...keys: any[]) => string;
38453
- declare const styles: (strings: any, ...keys: any[]) => string;
38454
- declare const dataStringify: (obj: object) => string;
38455
- declare const template: (strings: any, ...keys: any[]) => string;
38456
- declare const composeMemo: <T>(fn: () => T, _?: any[]) => T;
38457
- declare const removeUndefinedValuesFromObject: (obj: Record<string, string>) => Record<string, string>;
38458
-
38459
- declare const parseValueWithUnit: (valueWithUnit: string) => any;
38460
- declare const getStyleShadow: (shadowStyle: ShadowStyle & {
38461
- screen?: string;
38462
- }, isActiveState?: boolean) => {
38463
- [x: string]: string;
38464
- };
38465
- declare const getStyleShadowState: (shadow?: StateProp<ShadowProps>, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: StateProp<boolean>, screen?: string) => React.CSSProperties;
38466
- declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: any) => {
38514
+ type TypographyClass = `gp-g-${TypographyType}`;
38515
+ declare const genTypoClass: (name: TypographyType) => TypographyClass;
38516
+ declare const composeTypographyCss: (typography: TypographySetting | undefined) => string;
38517
+ declare const composeTypographyV2Css: (typography: TypographySettingV2 | undefined, isImportant?: boolean) => string;
38518
+ declare const composeTypography: (typography?: ObjectDevices<TypographyProps>) => React.CSSProperties;
38519
+ declare const composeTypographyV2: (value?: TypographyV2Props, attrs?: TypographyV2Attrs) => React.CSSProperties;
38520
+ declare const composeFontFamilyTypographyV2: (value?: TypographyV2Props & {
38521
+ type?: string;
38522
+ }) => string | undefined;
38523
+ declare const composeTypographyAttr: (attrs?: TypographyV2Attrs) => React.CSSProperties;
38524
+ declare const composeTypographyClassName: (typo?: TypographySettingV2, typography?: TypographySetting) => "" | "gp-g-heading-1" | "gp-g-heading-2" | "gp-g-heading-3" | "gp-g-subheading-1" | "gp-g-subheading-2" | "gp-g-subheading-3" | "gp-g-paragraph-1" | "gp-g-paragraph-2" | "gp-g-paragraph-3" | undefined;
38525
+ declare const composeFallbackTypographyStyle: (tag: string) => "var(--g-font-heading, heading)" | "var(--g-font-body, body)";
38526
+ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?: TypographySetting, disableAttr?: boolean) => {
38467
38527
  [x: string]: any;
38468
38528
  '--ai'?: csstype.Property.AlignItems | undefined;
38469
38529
  '--hvr-ai'?: csstype.Property.AlignItems | undefined;
@@ -39984,1579 +40044,7 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
39984
40044
  strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
39985
40045
  textAnchor?: csstype.Property.TextAnchor | undefined;
39986
40046
  vectorEffect?: csstype.Property.VectorEffect | undefined;
39987
- } | undefined;
39988
- declare const composeShadowCss: ({ hasBoxShadow, boxShadowValue, important, }: {
39989
- hasBoxShadow?: boolean | undefined;
39990
- boxShadowValue?: ShadowProps | undefined;
39991
- important?: boolean | undefined;
39992
- }) => string | undefined;
39993
-
39994
- declare const composeSize: (size?: ObjectDevices<SizeProps>) => React.CSSProperties;
39995
- declare function genSizeClass(name: string): string;
39996
- declare const composeSizeCss: (spacing?: SizeSetting) => string | undefined;
39997
- declare const makeGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
39998
- width: Record<ResponsiveKey<"w">, string | number>;
39999
- height: Record<ResponsiveKey<"h">, string | number>;
40000
- padding: React.CSSProperties;
40001
- gap: {
40002
- '--gg': string | undefined;
40003
- '--gg-tablet': string | undefined;
40004
- '--gg-mobile': string | undefined;
40005
- };
40006
- };
40007
- declare const makeGlobalSizeIcon: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
40008
- width: Record<ResponsiveKey<"w">, string | number>;
40009
- height: Record<ResponsiveKey<"h">, string | number>;
40010
- minWidth: Record<ResponsiveKey<"minw">, string | number>;
40011
- padding: React.CSSProperties;
40012
- };
40013
- declare const getGlobalSizeGap: (globalSize?: ObjectDevices<SizeSettingGlobal>) => {
40014
- '--gg': string | undefined;
40015
- '--gg-tablet': string | undefined;
40016
- '--gg-mobile': string | undefined;
40017
- };
40018
- declare const makeStyleWithDefault: <T extends ShortHandProperty, K>(name: T, value?: Partial<Record<NameDevices$1, K>> | undefined, defaultVal?: Partial<Record<NameDevices$1, K>> | undefined) => Record<ResponsiveKey<T>, K>;
40019
- declare const getWidthHeightGlobalSize: (type: 'width' | 'height', globalSize?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string | number>>;
40020
- declare const getHeightByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>) => Partial<Record<NameDevices$1, string>>;
40021
- declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean, defaultFull?: boolean) => Partial<Record<NameDevices$1, string>>;
40022
- declare const getAspectRatioGlobalSize: (shape?: ObjectDevices<SizeSettingGlobal>) => ObjectDevices<string>;
40023
- declare const getPaddingGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => React.CSSProperties;
40024
- declare const getValueByDevice: <T>(value: any, device: NameDevices$1) => T;
40025
-
40026
- type TypographyClass = `gp-g-${TypographyType}`;
40027
- declare const genTypoClass: (name: TypographyType) => TypographyClass;
40028
- declare const composeTypographyCss: (typography: TypographySetting | undefined) => string;
40029
- declare const composeTypographyV2Css: (typography: TypographySettingV2 | undefined, isImportant?: boolean) => string;
40030
- declare const composeTypography: (typography?: ObjectDevices<TypographyProps>) => React.CSSProperties;
40031
- declare const composeTypographyV2: (value?: TypographyV2Props, attrs?: TypographyV2Attrs) => React.CSSProperties;
40032
- declare const composeFontFamilyTypographyV2: (value?: TypographyV2Props & {
40033
- type?: string;
40034
- }) => string | undefined;
40035
- declare const composeTypographyAttr: (attrs?: TypographyV2Attrs) => React.CSSProperties;
40036
- declare const composeTypographyClassName: (typo?: TypographySettingV2, typography?: TypographySetting) => "" | "gp-g-heading-1" | "gp-g-heading-2" | "gp-g-heading-3" | "gp-g-subheading-1" | "gp-g-subheading-2" | "gp-g-subheading-3" | "gp-g-paragraph-1" | "gp-g-paragraph-2" | "gp-g-paragraph-3" | undefined;
40037
- declare const composeFallbackTypographyStyle: (tag: string) => "var(--g-font-heading, heading)" | "var(--g-font-body, body)";
40038
- declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?: TypographySetting, disableAttr?: boolean) => {
40039
- [x: string]: any;
40040
- '--ai'?: csstype.Property.AlignItems | undefined;
40041
- '--hvr-ai'?: csstype.Property.AlignItems | undefined;
40042
- '--focus-ai'?: csstype.Property.AlignItems | undefined;
40043
- '--ai-tablet'?: csstype.Property.AlignItems | undefined;
40044
- '--hvr-ai-tablet'?: csstype.Property.AlignItems | undefined;
40045
- '--focus-ai-tablet'?: csstype.Property.AlignItems | undefined;
40046
- '--ai-mobile'?: csstype.Property.AlignItems | undefined;
40047
- '--hvr-ai-mobile'?: csstype.Property.AlignItems | undefined;
40048
- '--focus-ai-mobile'?: csstype.Property.AlignItems | undefined;
40049
- '--aspect'?: csstype.Property.AspectRatio | undefined;
40050
- '--hvr-aspect'?: csstype.Property.AspectRatio | undefined;
40051
- '--focus-aspect'?: csstype.Property.AspectRatio | undefined;
40052
- '--aspect-tablet'?: csstype.Property.AspectRatio | undefined;
40053
- '--hvr-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
40054
- '--focus-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
40055
- '--aspect-mobile'?: csstype.Property.AspectRatio | undefined;
40056
- '--hvr-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
40057
- '--focus-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
40058
- '--bg'?: csstype.Property.Background<string | number> | undefined;
40059
- '--hvr-bg'?: csstype.Property.Background<string | number> | undefined;
40060
- '--focus-bg'?: csstype.Property.Background<string | number> | undefined;
40061
- '--bg-tablet'?: csstype.Property.Background<string | number> | undefined;
40062
- '--hvr-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
40063
- '--focus-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
40064
- '--bg-mobile'?: csstype.Property.Background<string | number> | undefined;
40065
- '--hvr-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
40066
- '--focus-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
40067
- '--bga'?: csstype.Property.BackgroundAttachment | undefined;
40068
- '--hvr-bga'?: csstype.Property.BackgroundAttachment | undefined;
40069
- '--focus-bga'?: csstype.Property.BackgroundAttachment | undefined;
40070
- '--bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
40071
- '--hvr-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
40072
- '--focus-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
40073
- '--bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
40074
- '--hvr-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
40075
- '--focus-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
40076
- '--bgc'?: csstype.Property.BackgroundColor | undefined;
40077
- '--hvr-bgc'?: csstype.Property.BackgroundColor | undefined;
40078
- '--focus-bgc'?: csstype.Property.BackgroundColor | undefined;
40079
- '--bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
40080
- '--hvr-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
40081
- '--focus-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
40082
- '--bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
40083
- '--hvr-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
40084
- '--focus-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
40085
- '--bgi'?: csstype.Property.BackgroundImage | undefined;
40086
- '--hvr-bgi'?: csstype.Property.BackgroundImage | undefined;
40087
- '--focus-bgi'?: csstype.Property.BackgroundImage | undefined;
40088
- '--bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
40089
- '--hvr-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
40090
- '--focus-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
40091
- '--bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
40092
- '--hvr-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
40093
- '--focus-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
40094
- '--bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40095
- '--hvr-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40096
- '--focus-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40097
- '--bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40098
- '--hvr-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40099
- '--focus-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40100
- '--bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40101
- '--hvr-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40102
- '--focus-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
40103
- '--bgr'?: csstype.Property.BackgroundRepeat | undefined;
40104
- '--hvr-bgr'?: csstype.Property.BackgroundRepeat | undefined;
40105
- '--focus-bgr'?: csstype.Property.BackgroundRepeat | undefined;
40106
- '--bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
40107
- '--hvr-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
40108
- '--focus-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
40109
- '--bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
40110
- '--hvr-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
40111
- '--focus-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
40112
- '--bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
40113
- '--hvr-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
40114
- '--focus-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
40115
- '--bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
40116
- '--hvr-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
40117
- '--focus-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
40118
- '--bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
40119
- '--hvr-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
40120
- '--focus-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
40121
- '--b'?: csstype.Property.Border<string | number> | undefined;
40122
- '--hvr-b'?: csstype.Property.Border<string | number> | undefined;
40123
- '--focus-b'?: csstype.Property.Border<string | number> | undefined;
40124
- '--b-tablet'?: csstype.Property.Border<string | number> | undefined;
40125
- '--hvr-b-tablet'?: csstype.Property.Border<string | number> | undefined;
40126
- '--focus-b-tablet'?: csstype.Property.Border<string | number> | undefined;
40127
- '--b-mobile'?: csstype.Property.Border<string | number> | undefined;
40128
- '--hvr-b-mobile'?: csstype.Property.Border<string | number> | undefined;
40129
- '--focus-b-mobile'?: csstype.Property.Border<string | number> | undefined;
40130
- '--bb'?: csstype.Property.BorderBottom<string | number> | undefined;
40131
- '--hvr-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
40132
- '--focus-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
40133
- '--bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
40134
- '--hvr-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
40135
- '--focus-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
40136
- '--bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
40137
- '--hvr-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
40138
- '--focus-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
40139
- '--bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40140
- '--hvr-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40141
- '--focus-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40142
- '--bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40143
- '--hvr-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40144
- '--focus-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40145
- '--bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40146
- '--hvr-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40147
- '--focus-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40148
- '--bbc'?: csstype.Property.BorderBottomColor | undefined;
40149
- '--hvr-bbc'?: csstype.Property.BorderBottomColor | undefined;
40150
- '--focus-bbc'?: csstype.Property.BorderBottomColor | undefined;
40151
- '--bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
40152
- '--hvr-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
40153
- '--focus-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
40154
- '--bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
40155
- '--hvr-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
40156
- '--focus-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
40157
- '--bc'?: csstype.Property.BorderColor | undefined;
40158
- '--hvr-bc'?: csstype.Property.BorderColor | undefined;
40159
- '--focus-bc'?: csstype.Property.BorderColor | undefined;
40160
- '--bc-tablet'?: csstype.Property.BorderColor | undefined;
40161
- '--hvr-bc-tablet'?: csstype.Property.BorderColor | undefined;
40162
- '--focus-bc-tablet'?: csstype.Property.BorderColor | undefined;
40163
- '--bc-mobile'?: csstype.Property.BorderColor | undefined;
40164
- '--hvr-bc-mobile'?: csstype.Property.BorderColor | undefined;
40165
- '--focus-bc-mobile'?: csstype.Property.BorderColor | undefined;
40166
- '--bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40167
- '--hvr-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40168
- '--focus-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40169
- '--bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40170
- '--hvr-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40171
- '--focus-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40172
- '--bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40173
- '--hvr-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40174
- '--focus-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40175
- '--bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40176
- '--hvr-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40177
- '--focus-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40178
- '--bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40179
- '--hvr-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40180
- '--focus-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40181
- '--bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40182
- '--hvr-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40183
- '--focus-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40184
- '--bl'?: csstype.Property.BorderLeft<string | number> | undefined;
40185
- '--hvr-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
40186
- '--focus-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
40187
- '--bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
40188
- '--hvr-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
40189
- '--focus-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
40190
- '--bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
40191
- '--hvr-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
40192
- '--focus-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
40193
- '--radius'?: csstype.Property.BorderRadius<string | number> | undefined;
40194
- '--hvr-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
40195
- '--focus-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
40196
- '--radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
40197
- '--hvr-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
40198
- '--focus-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
40199
- '--radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
40200
- '--hvr-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
40201
- '--focus-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
40202
- '--br'?: csstype.Property.BorderRight<string | number> | undefined;
40203
- '--hvr-br'?: csstype.Property.BorderRight<string | number> | undefined;
40204
- '--focus-br'?: csstype.Property.BorderRight<string | number> | undefined;
40205
- '--br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
40206
- '--hvr-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
40207
- '--focus-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
40208
- '--br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
40209
- '--hvr-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
40210
- '--focus-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
40211
- '--bs'?: csstype.Property.BorderStyle | undefined;
40212
- '--hvr-bs'?: csstype.Property.BorderStyle | undefined;
40213
- '--focus-bs'?: csstype.Property.BorderStyle | undefined;
40214
- '--bs-tablet'?: csstype.Property.BorderStyle | undefined;
40215
- '--hvr-bs-tablet'?: csstype.Property.BorderStyle | undefined;
40216
- '--focus-bs-tablet'?: csstype.Property.BorderStyle | undefined;
40217
- '--bs-mobile'?: csstype.Property.BorderStyle | undefined;
40218
- '--hvr-bs-mobile'?: csstype.Property.BorderStyle | undefined;
40219
- '--focus-bs-mobile'?: csstype.Property.BorderStyle | undefined;
40220
- '--bt'?: csstype.Property.BorderTop<string | number> | undefined;
40221
- '--hvr-bt'?: csstype.Property.BorderTop<string | number> | undefined;
40222
- '--focus-bt'?: csstype.Property.BorderTop<string | number> | undefined;
40223
- '--bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
40224
- '--hvr-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
40225
- '--focus-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
40226
- '--bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
40227
- '--hvr-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
40228
- '--focus-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
40229
- '--btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40230
- '--hvr-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40231
- '--focus-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40232
- '--btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40233
- '--hvr-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40234
- '--focus-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40235
- '--btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40236
- '--hvr-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40237
- '--focus-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40238
- '--btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40239
- '--hvr-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40240
- '--focus-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40241
- '--btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40242
- '--hvr-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40243
- '--focus-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40244
- '--btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40245
- '--hvr-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40246
- '--focus-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40247
- '--bw'?: csstype.Property.BorderWidth<string | number> | undefined;
40248
- '--hvr-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
40249
- '--focus-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
40250
- '--bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
40251
- '--hvr-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
40252
- '--focus-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
40253
- '--bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
40254
- '--hvr-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
40255
- '--focus-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
40256
- '--bottom'?: csstype.Property.Bottom<string | number> | undefined;
40257
- '--hvr-bottom'?: csstype.Property.Bottom<string | number> | undefined;
40258
- '--focus-bottom'?: csstype.Property.Bottom<string | number> | undefined;
40259
- '--bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
40260
- '--hvr-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
40261
- '--focus-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
40262
- '--bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
40263
- '--hvr-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
40264
- '--focus-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
40265
- '--shadow'?: csstype.Property.BoxShadow | undefined;
40266
- '--hvr-shadow'?: csstype.Property.BoxShadow | undefined;
40267
- '--focus-shadow'?: csstype.Property.BoxShadow | undefined;
40268
- '--shadow-tablet'?: csstype.Property.BoxShadow | undefined;
40269
- '--hvr-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
40270
- '--focus-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
40271
- '--shadow-mobile'?: csstype.Property.BoxShadow | undefined;
40272
- '--hvr-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
40273
- '--focus-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
40274
- '--c'?: csstype.Property.Color | undefined;
40275
- '--hvr-c'?: csstype.Property.Color | undefined;
40276
- '--focus-c'?: csstype.Property.Color | undefined;
40277
- '--c-tablet'?: csstype.Property.Color | undefined;
40278
- '--hvr-c-tablet'?: csstype.Property.Color | undefined;
40279
- '--focus-c-tablet'?: csstype.Property.Color | undefined;
40280
- '--c-mobile'?: csstype.Property.Color | undefined;
40281
- '--hvr-c-mobile'?: csstype.Property.Color | undefined;
40282
- '--focus-c-mobile'?: csstype.Property.Color | undefined;
40283
- '--cg'?: csstype.Property.ColumnGap<string | number> | undefined;
40284
- '--hvr-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
40285
- '--focus-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
40286
- '--cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
40287
- '--hvr-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
40288
- '--focus-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
40289
- '--cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
40290
- '--hvr-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
40291
- '--focus-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
40292
- '--d'?: csstype.Property.Display | undefined;
40293
- '--hvr-d'?: csstype.Property.Display | undefined;
40294
- '--focus-d'?: csstype.Property.Display | undefined;
40295
- '--d-tablet'?: csstype.Property.Display | undefined;
40296
- '--hvr-d-tablet'?: csstype.Property.Display | undefined;
40297
- '--focus-d-tablet'?: csstype.Property.Display | undefined;
40298
- '--d-mobile'?: csstype.Property.Display | undefined;
40299
- '--hvr-d-mobile'?: csstype.Property.Display | undefined;
40300
- '--focus-d-mobile'?: csstype.Property.Display | undefined;
40301
- '--fd'?: csstype.Property.FlexDirection | undefined;
40302
- '--hvr-fd'?: csstype.Property.FlexDirection | undefined;
40303
- '--focus-fd'?: csstype.Property.FlexDirection | undefined;
40304
- '--fd-tablet'?: csstype.Property.FlexDirection | undefined;
40305
- '--hvr-fd-tablet'?: csstype.Property.FlexDirection | undefined;
40306
- '--focus-fd-tablet'?: csstype.Property.FlexDirection | undefined;
40307
- '--fd-mobile'?: csstype.Property.FlexDirection | undefined;
40308
- '--hvr-fd-mobile'?: csstype.Property.FlexDirection | undefined;
40309
- '--focus-fd-mobile'?: csstype.Property.FlexDirection | undefined;
40310
- '--ff'?: csstype.Property.FontFamily | undefined;
40311
- '--hvr-ff'?: csstype.Property.FontFamily | undefined;
40312
- '--focus-ff'?: csstype.Property.FontFamily | undefined;
40313
- '--ff-tablet'?: csstype.Property.FontFamily | undefined;
40314
- '--hvr-ff-tablet'?: csstype.Property.FontFamily | undefined;
40315
- '--focus-ff-tablet'?: csstype.Property.FontFamily | undefined;
40316
- '--ff-mobile'?: csstype.Property.FontFamily | undefined;
40317
- '--hvr-ff-mobile'?: csstype.Property.FontFamily | undefined;
40318
- '--focus-ff-mobile'?: csstype.Property.FontFamily | undefined;
40319
- '--size'?: csstype.Property.FontSize<string | number> | undefined;
40320
- '--hvr-size'?: csstype.Property.FontSize<string | number> | undefined;
40321
- '--focus-size'?: csstype.Property.FontSize<string | number> | undefined;
40322
- '--size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
40323
- '--hvr-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
40324
- '--focus-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
40325
- '--size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
40326
- '--hvr-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
40327
- '--focus-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
40328
- '--weight'?: csstype.Property.FontWeight | undefined;
40329
- '--hvr-weight'?: csstype.Property.FontWeight | undefined;
40330
- '--focus-weight'?: csstype.Property.FontWeight | undefined;
40331
- '--weight-tablet'?: csstype.Property.FontWeight | undefined;
40332
- '--hvr-weight-tablet'?: csstype.Property.FontWeight | undefined;
40333
- '--focus-weight-tablet'?: csstype.Property.FontWeight | undefined;
40334
- '--weight-mobile'?: csstype.Property.FontWeight | undefined;
40335
- '--hvr-weight-mobile'?: csstype.Property.FontWeight | undefined;
40336
- '--focus-weight-mobile'?: csstype.Property.FontWeight | undefined;
40337
- '--fs'?: csstype.Property.FontStyle | undefined;
40338
- '--hvr-fs'?: csstype.Property.FontStyle | undefined;
40339
- '--focus-fs'?: csstype.Property.FontStyle | undefined;
40340
- '--fs-tablet'?: csstype.Property.FontStyle | undefined;
40341
- '--hvr-fs-tablet'?: csstype.Property.FontStyle | undefined;
40342
- '--focus-fs-tablet'?: csstype.Property.FontStyle | undefined;
40343
- '--fs-mobile'?: csstype.Property.FontStyle | undefined;
40344
- '--hvr-fs-mobile'?: csstype.Property.FontStyle | undefined;
40345
- '--focus-fs-mobile'?: csstype.Property.FontStyle | undefined;
40346
- '--gg'?: csstype.Property.GridGap<string | number> | undefined;
40347
- '--hvr-gg'?: csstype.Property.GridGap<string | number> | undefined;
40348
- '--focus-gg'?: csstype.Property.GridGap<string | number> | undefined;
40349
- '--gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
40350
- '--hvr-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
40351
- '--focus-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
40352
- '--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
40353
- '--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
40354
- '--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
40355
- '--gr'?: csstype.Property.GridRow | undefined;
40356
- '--hvr-gr'?: csstype.Property.GridRow | undefined;
40357
- '--focus-gr'?: csstype.Property.GridRow | undefined;
40358
- '--gr-tablet'?: csstype.Property.GridRow | undefined;
40359
- '--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
40360
- '--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
40361
- '--gr-mobile'?: csstype.Property.GridRow | undefined;
40362
- '--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
40363
- '--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
40364
- '--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40365
- '--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40366
- '--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40367
- '--gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40368
- '--hvr-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40369
- '--focus-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40370
- '--gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40371
- '--hvr-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40372
- '--focus-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40373
- '--gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40374
- '--hvr-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40375
- '--focus-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40376
- '--gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40377
- '--hvr-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40378
- '--focus-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40379
- '--gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40380
- '--hvr-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40381
- '--focus-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
40382
- '--h'?: csstype.Property.Height<string | number> | undefined;
40383
- '--hvr-h'?: csstype.Property.Height<string | number> | undefined;
40384
- '--focus-h'?: csstype.Property.Height<string | number> | undefined;
40385
- '--h-tablet'?: csstype.Property.Height<string | number> | undefined;
40386
- '--hvr-h-tablet'?: csstype.Property.Height<string | number> | undefined;
40387
- '--focus-h-tablet'?: csstype.Property.Height<string | number> | undefined;
40388
- '--h-mobile'?: csstype.Property.Height<string | number> | undefined;
40389
- '--hvr-h-mobile'?: csstype.Property.Height<string | number> | undefined;
40390
- '--focus-h-mobile'?: csstype.Property.Height<string | number> | undefined;
40391
- '--jc'?: csstype.Property.JustifyContent | undefined;
40392
- '--hvr-jc'?: csstype.Property.JustifyContent | undefined;
40393
- '--focus-jc'?: csstype.Property.JustifyContent | undefined;
40394
- '--jc-tablet'?: csstype.Property.JustifyContent | undefined;
40395
- '--hvr-jc-tablet'?: csstype.Property.JustifyContent | undefined;
40396
- '--focus-jc-tablet'?: csstype.Property.JustifyContent | undefined;
40397
- '--jc-mobile'?: csstype.Property.JustifyContent | undefined;
40398
- '--hvr-jc-mobile'?: csstype.Property.JustifyContent | undefined;
40399
- '--focus-jc-mobile'?: csstype.Property.JustifyContent | undefined;
40400
- '--left'?: csstype.Property.Left<string | number> | undefined;
40401
- '--hvr-left'?: csstype.Property.Left<string | number> | undefined;
40402
- '--focus-left'?: csstype.Property.Left<string | number> | undefined;
40403
- '--left-tablet'?: csstype.Property.Left<string | number> | undefined;
40404
- '--hvr-left-tablet'?: csstype.Property.Left<string | number> | undefined;
40405
- '--focus-left-tablet'?: csstype.Property.Left<string | number> | undefined;
40406
- '--left-mobile'?: csstype.Property.Left<string | number> | undefined;
40407
- '--hvr-left-mobile'?: csstype.Property.Left<string | number> | undefined;
40408
- '--focus-left-mobile'?: csstype.Property.Left<string | number> | undefined;
40409
- '--ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
40410
- '--hvr-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
40411
- '--focus-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
40412
- '--ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
40413
- '--hvr-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
40414
- '--focus-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
40415
- '--ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
40416
- '--hvr-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
40417
- '--focus-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
40418
- '--line-clamp'?: any;
40419
- '--hvr-line-clamp'?: any;
40420
- '--focus-line-clamp'?: any;
40421
- '--line-clamp-tablet'?: any;
40422
- '--hvr-line-clamp-tablet'?: any;
40423
- '--focus-line-clamp-tablet'?: any;
40424
- '--line-clamp-mobile'?: any;
40425
- '--hvr-line-clamp-mobile'?: any;
40426
- '--focus-line-clamp-mobile'?: any;
40427
- '--lh'?: csstype.Property.LineHeight<string | number> | undefined;
40428
- '--hvr-lh'?: csstype.Property.LineHeight<string | number> | undefined;
40429
- '--focus-lh'?: csstype.Property.LineHeight<string | number> | undefined;
40430
- '--lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
40431
- '--hvr-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
40432
- '--focus-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
40433
- '--lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
40434
- '--hvr-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
40435
- '--focus-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
40436
- '--tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40437
- '--hvr-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40438
- '--focus-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40439
- '--tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40440
- '--hvr-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40441
- '--focus-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40442
- '--tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40443
- '--hvr-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40444
- '--focus-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
40445
- '--tdc'?: csstype.Property.TextDecorationColor | undefined;
40446
- '--hvr-tdc'?: csstype.Property.TextDecorationColor | undefined;
40447
- '--focus-tdc'?: csstype.Property.TextDecorationColor | undefined;
40448
- '--tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
40449
- '--hvr-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
40450
- '--focus-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
40451
- '--tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
40452
- '--hvr-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
40453
- '--focus-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
40454
- '--tdl'?: csstype.Property.TextDecorationLine | undefined;
40455
- '--hvr-tdl'?: csstype.Property.TextDecorationLine | undefined;
40456
- '--focus-tdl'?: csstype.Property.TextDecorationLine | undefined;
40457
- '--tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
40458
- '--hvr-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
40459
- '--focus-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
40460
- '--tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
40461
- '--hvr-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
40462
- '--focus-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
40463
- '--m'?: csstype.Property.Margin<string | number> | undefined;
40464
- '--hvr-m'?: csstype.Property.Margin<string | number> | undefined;
40465
- '--focus-m'?: csstype.Property.Margin<string | number> | undefined;
40466
- '--m-tablet'?: csstype.Property.Margin<string | number> | undefined;
40467
- '--hvr-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
40468
- '--focus-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
40469
- '--m-mobile'?: csstype.Property.Margin<string | number> | undefined;
40470
- '--hvr-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
40471
- '--focus-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
40472
- '--mb'?: csstype.Property.MarginBottom<string | number> | undefined;
40473
- '--hvr-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
40474
- '--focus-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
40475
- '--mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
40476
- '--hvr-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
40477
- '--focus-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
40478
- '--mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
40479
- '--hvr-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
40480
- '--focus-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
40481
- '--ml'?: csstype.Property.MarginLeft<string | number> | undefined;
40482
- '--hvr-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
40483
- '--focus-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
40484
- '--ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
40485
- '--hvr-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
40486
- '--focus-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
40487
- '--ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
40488
- '--hvr-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
40489
- '--focus-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
40490
- '--mr'?: csstype.Property.MarginRight<string | number> | undefined;
40491
- '--hvr-mr'?: csstype.Property.MarginRight<string | number> | undefined;
40492
- '--focus-mr'?: csstype.Property.MarginRight<string | number> | undefined;
40493
- '--mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
40494
- '--hvr-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
40495
- '--focus-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
40496
- '--mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
40497
- '--hvr-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
40498
- '--focus-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
40499
- '--mt'?: csstype.Property.MarginTop<string | number> | undefined;
40500
- '--hvr-mt'?: csstype.Property.MarginTop<string | number> | undefined;
40501
- '--focus-mt'?: csstype.Property.MarginTop<string | number> | undefined;
40502
- '--mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
40503
- '--hvr-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
40504
- '--focus-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
40505
- '--mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
40506
- '--hvr-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
40507
- '--focus-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
40508
- '--maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
40509
- '--hvr-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
40510
- '--focus-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
40511
- '--maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
40512
- '--hvr-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
40513
- '--focus-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
40514
- '--maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
40515
- '--hvr-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
40516
- '--focus-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
40517
- '--maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
40518
- '--hvr-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
40519
- '--focus-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
40520
- '--maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
40521
- '--hvr-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
40522
- '--focus-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
40523
- '--maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
40524
- '--hvr-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
40525
- '--focus-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
40526
- '--minh'?: csstype.Property.MinHeight<string | number> | undefined;
40527
- '--hvr-minh'?: csstype.Property.MinHeight<string | number> | undefined;
40528
- '--focus-minh'?: csstype.Property.MinHeight<string | number> | undefined;
40529
- '--minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
40530
- '--hvr-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
40531
- '--focus-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
40532
- '--minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
40533
- '--hvr-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
40534
- '--focus-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
40535
- '--minw'?: csstype.Property.MinWidth<string | number> | undefined;
40536
- '--hvr-minw'?: csstype.Property.MinWidth<string | number> | undefined;
40537
- '--focus-minw'?: csstype.Property.MinWidth<string | number> | undefined;
40538
- '--minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
40539
- '--hvr-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
40540
- '--focus-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
40541
- '--minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
40542
- '--hvr-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
40543
- '--focus-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
40544
- '--objf'?: csstype.Property.ObjectFit | undefined;
40545
- '--hvr-objf'?: csstype.Property.ObjectFit | undefined;
40546
- '--focus-objf'?: csstype.Property.ObjectFit | undefined;
40547
- '--objf-tablet'?: csstype.Property.ObjectFit | undefined;
40548
- '--hvr-objf-tablet'?: csstype.Property.ObjectFit | undefined;
40549
- '--focus-objf-tablet'?: csstype.Property.ObjectFit | undefined;
40550
- '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
40551
- '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
40552
- '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
40553
- '--op'?: csstype.Property.Opacity | undefined;
40554
- '--hvr-op'?: csstype.Property.Opacity | undefined;
40555
- '--focus-op'?: csstype.Property.Opacity | undefined;
40556
- '--op-tablet'?: csstype.Property.Opacity | undefined;
40557
- '--hvr-op-tablet'?: csstype.Property.Opacity | undefined;
40558
- '--focus-op-tablet'?: csstype.Property.Opacity | undefined;
40559
- '--op-mobile'?: csstype.Property.Opacity | undefined;
40560
- '--hvr-op-mobile'?: csstype.Property.Opacity | undefined;
40561
- '--focus-op-mobile'?: csstype.Property.Opacity | undefined;
40562
- '--o'?: csstype.Property.Order | undefined;
40563
- '--hvr-o'?: csstype.Property.Order | undefined;
40564
- '--focus-o'?: csstype.Property.Order | undefined;
40565
- '--o-tablet'?: csstype.Property.Order | undefined;
40566
- '--hvr-o-tablet'?: csstype.Property.Order | undefined;
40567
- '--focus-o-tablet'?: csstype.Property.Order | undefined;
40568
- '--o-mobile'?: csstype.Property.Order | undefined;
40569
- '--hvr-o-mobile'?: csstype.Property.Order | undefined;
40570
- '--focus-o-mobile'?: csstype.Property.Order | undefined;
40571
- '--pc'?: csstype.Property.PlaceContent | undefined;
40572
- '--hvr-pc'?: csstype.Property.PlaceContent | undefined;
40573
- '--focus-pc'?: csstype.Property.PlaceContent | undefined;
40574
- '--pc-tablet'?: csstype.Property.PlaceContent | undefined;
40575
- '--hvr-pc-tablet'?: csstype.Property.PlaceContent | undefined;
40576
- '--focus-pc-tablet'?: csstype.Property.PlaceContent | undefined;
40577
- '--pc-mobile'?: csstype.Property.PlaceContent | undefined;
40578
- '--hvr-pc-mobile'?: csstype.Property.PlaceContent | undefined;
40579
- '--focus-pc-mobile'?: csstype.Property.PlaceContent | undefined;
40580
- '--p'?: csstype.Property.Padding<string | number> | undefined;
40581
- '--hvr-p'?: csstype.Property.Padding<string | number> | undefined;
40582
- '--focus-p'?: csstype.Property.Padding<string | number> | undefined;
40583
- '--p-tablet'?: csstype.Property.Padding<string | number> | undefined;
40584
- '--hvr-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
40585
- '--focus-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
40586
- '--p-mobile'?: csstype.Property.Padding<string | number> | undefined;
40587
- '--hvr-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
40588
- '--focus-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
40589
- '--pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
40590
- '--hvr-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
40591
- '--focus-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
40592
- '--pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
40593
- '--hvr-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
40594
- '--focus-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
40595
- '--pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
40596
- '--hvr-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
40597
- '--focus-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
40598
- '--pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
40599
- '--hvr-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
40600
- '--focus-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
40601
- '--pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
40602
- '--hvr-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
40603
- '--focus-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
40604
- '--pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
40605
- '--hvr-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
40606
- '--focus-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
40607
- '--pr'?: csstype.Property.PaddingRight<string | number> | undefined;
40608
- '--hvr-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
40609
- '--focus-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
40610
- '--pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
40611
- '--hvr-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
40612
- '--focus-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
40613
- '--pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
40614
- '--hvr-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
40615
- '--focus-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
40616
- '--pt'?: csstype.Property.PaddingTop<string | number> | undefined;
40617
- '--hvr-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
40618
- '--focus-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
40619
- '--pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
40620
- '--hvr-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
40621
- '--focus-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
40622
- '--pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
40623
- '--hvr-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
40624
- '--focus-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
40625
- '--pe'?: csstype.Property.PointerEvents | undefined;
40626
- '--hvr-pe'?: csstype.Property.PointerEvents | undefined;
40627
- '--focus-pe'?: csstype.Property.PointerEvents | undefined;
40628
- '--pe-tablet'?: csstype.Property.PointerEvents | undefined;
40629
- '--hvr-pe-tablet'?: csstype.Property.PointerEvents | undefined;
40630
- '--focus-pe-tablet'?: csstype.Property.PointerEvents | undefined;
40631
- '--pe-mobile'?: csstype.Property.PointerEvents | undefined;
40632
- '--hvr-pe-mobile'?: csstype.Property.PointerEvents | undefined;
40633
- '--focus-pe-mobile'?: csstype.Property.PointerEvents | undefined;
40634
- '--pos'?: csstype.Property.Position | undefined;
40635
- '--hvr-pos'?: csstype.Property.Position | undefined;
40636
- '--focus-pos'?: csstype.Property.Position | undefined;
40637
- '--pos-tablet'?: csstype.Property.Position | undefined;
40638
- '--hvr-pos-tablet'?: csstype.Property.Position | undefined;
40639
- '--focus-pos-tablet'?: csstype.Property.Position | undefined;
40640
- '--pos-mobile'?: csstype.Property.Position | undefined;
40641
- '--hvr-pos-mobile'?: csstype.Property.Position | undefined;
40642
- '--focus-pos-mobile'?: csstype.Property.Position | undefined;
40643
- '--right'?: csstype.Property.Right<string | number> | undefined;
40644
- '--hvr-right'?: csstype.Property.Right<string | number> | undefined;
40645
- '--focus-right'?: csstype.Property.Right<string | number> | undefined;
40646
- '--right-tablet'?: csstype.Property.Right<string | number> | undefined;
40647
- '--hvr-right-tablet'?: csstype.Property.Right<string | number> | undefined;
40648
- '--focus-right-tablet'?: csstype.Property.Right<string | number> | undefined;
40649
- '--right-mobile'?: csstype.Property.Right<string | number> | undefined;
40650
- '--hvr-right-mobile'?: csstype.Property.Right<string | number> | undefined;
40651
- '--focus-right-mobile'?: csstype.Property.Right<string | number> | undefined;
40652
- '--rg'?: csstype.Property.RowGap<string | number> | undefined;
40653
- '--hvr-rg'?: csstype.Property.RowGap<string | number> | undefined;
40654
- '--focus-rg'?: csstype.Property.RowGap<string | number> | undefined;
40655
- '--rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
40656
- '--hvr-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
40657
- '--focus-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
40658
- '--rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
40659
- '--hvr-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
40660
- '--focus-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
40661
- '--ta'?: csstype.Property.TextAlign | undefined;
40662
- '--hvr-ta'?: csstype.Property.TextAlign | undefined;
40663
- '--focus-ta'?: csstype.Property.TextAlign | undefined;
40664
- '--ta-tablet'?: csstype.Property.TextAlign | undefined;
40665
- '--hvr-ta-tablet'?: csstype.Property.TextAlign | undefined;
40666
- '--focus-ta-tablet'?: csstype.Property.TextAlign | undefined;
40667
- '--ta-mobile'?: csstype.Property.TextAlign | undefined;
40668
- '--hvr-ta-mobile'?: csstype.Property.TextAlign | undefined;
40669
- '--focus-ta-mobile'?: csstype.Property.TextAlign | undefined;
40670
- '--ts'?: csstype.Property.TextShadow | undefined;
40671
- '--hvr-ts'?: csstype.Property.TextShadow | undefined;
40672
- '--focus-ts'?: csstype.Property.TextShadow | undefined;
40673
- '--ts-tablet'?: csstype.Property.TextShadow | undefined;
40674
- '--hvr-ts-tablet'?: csstype.Property.TextShadow | undefined;
40675
- '--focus-ts-tablet'?: csstype.Property.TextShadow | undefined;
40676
- '--ts-mobile'?: csstype.Property.TextShadow | undefined;
40677
- '--hvr-ts-mobile'?: csstype.Property.TextShadow | undefined;
40678
- '--focus-ts-mobile'?: csstype.Property.TextShadow | undefined;
40679
- '--tt'?: csstype.Property.TextTransform | undefined;
40680
- '--hvr-tt'?: csstype.Property.TextTransform | undefined;
40681
- '--focus-tt'?: csstype.Property.TextTransform | undefined;
40682
- '--tt-tablet'?: csstype.Property.TextTransform | undefined;
40683
- '--hvr-tt-tablet'?: csstype.Property.TextTransform | undefined;
40684
- '--focus-tt-tablet'?: csstype.Property.TextTransform | undefined;
40685
- '--tt-mobile'?: csstype.Property.TextTransform | undefined;
40686
- '--hvr-tt-mobile'?: csstype.Property.TextTransform | undefined;
40687
- '--focus-tt-mobile'?: csstype.Property.TextTransform | undefined;
40688
- '--top'?: csstype.Property.Top<string | number> | undefined;
40689
- '--hvr-top'?: csstype.Property.Top<string | number> | undefined;
40690
- '--focus-top'?: csstype.Property.Top<string | number> | undefined;
40691
- '--top-tablet'?: csstype.Property.Top<string | number> | undefined;
40692
- '--hvr-top-tablet'?: csstype.Property.Top<string | number> | undefined;
40693
- '--focus-top-tablet'?: csstype.Property.Top<string | number> | undefined;
40694
- '--top-mobile'?: csstype.Property.Top<string | number> | undefined;
40695
- '--hvr-top-mobile'?: csstype.Property.Top<string | number> | undefined;
40696
- '--focus-top-mobile'?: csstype.Property.Top<string | number> | undefined;
40697
- '--t'?: csstype.Property.Transform | undefined;
40698
- '--hvr-t'?: csstype.Property.Transform | undefined;
40699
- '--focus-t'?: csstype.Property.Transform | undefined;
40700
- '--t-tablet'?: csstype.Property.Transform | undefined;
40701
- '--hvr-t-tablet'?: csstype.Property.Transform | undefined;
40702
- '--focus-t-tablet'?: csstype.Property.Transform | undefined;
40703
- '--t-mobile'?: csstype.Property.Transform | undefined;
40704
- '--hvr-t-mobile'?: csstype.Property.Transform | undefined;
40705
- '--focus-t-mobile'?: csstype.Property.Transform | undefined;
40706
- '--v'?: csstype.Property.Visibility | undefined;
40707
- '--hvr-v'?: csstype.Property.Visibility | undefined;
40708
- '--focus-v'?: csstype.Property.Visibility | undefined;
40709
- '--v-tablet'?: csstype.Property.Visibility | undefined;
40710
- '--hvr-v-tablet'?: csstype.Property.Visibility | undefined;
40711
- '--focus-v-tablet'?: csstype.Property.Visibility | undefined;
40712
- '--v-mobile'?: csstype.Property.Visibility | undefined;
40713
- '--hvr-v-mobile'?: csstype.Property.Visibility | undefined;
40714
- '--focus-v-mobile'?: csstype.Property.Visibility | undefined;
40715
- '--ws'?: csstype.Property.WhiteSpace | undefined;
40716
- '--hvr-ws'?: csstype.Property.WhiteSpace | undefined;
40717
- '--focus-ws'?: csstype.Property.WhiteSpace | undefined;
40718
- '--ws-tablet'?: csstype.Property.WhiteSpace | undefined;
40719
- '--hvr-ws-tablet'?: csstype.Property.WhiteSpace | undefined;
40720
- '--focus-ws-tablet'?: csstype.Property.WhiteSpace | undefined;
40721
- '--ws-mobile'?: csstype.Property.WhiteSpace | undefined;
40722
- '--hvr-ws-mobile'?: csstype.Property.WhiteSpace | undefined;
40723
- '--focus-ws-mobile'?: csstype.Property.WhiteSpace | undefined;
40724
- '--w'?: csstype.Property.Width<string | number> | undefined;
40725
- '--hvr-w'?: csstype.Property.Width<string | number> | undefined;
40726
- '--focus-w'?: csstype.Property.Width<string | number> | undefined;
40727
- '--w-tablet'?: csstype.Property.Width<string | number> | undefined;
40728
- '--hvr-w-tablet'?: csstype.Property.Width<string | number> | undefined;
40729
- '--focus-w-tablet'?: csstype.Property.Width<string | number> | undefined;
40730
- '--w-mobile'?: csstype.Property.Width<string | number> | undefined;
40731
- '--hvr-w-mobile'?: csstype.Property.Width<string | number> | undefined;
40732
- '--focus-w-mobile'?: csstype.Property.Width<string | number> | undefined;
40733
- '--z'?: csstype.Property.ZIndex | undefined;
40734
- '--hvr-z'?: csstype.Property.ZIndex | undefined;
40735
- '--focus-z'?: csstype.Property.ZIndex | undefined;
40736
- '--z-tablet'?: csstype.Property.ZIndex | undefined;
40737
- '--hvr-z-tablet'?: csstype.Property.ZIndex | undefined;
40738
- '--focus-z-tablet'?: csstype.Property.ZIndex | undefined;
40739
- '--z-mobile'?: csstype.Property.ZIndex | undefined;
40740
- '--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
40741
- '--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
40742
- '--wm'?: csstype.Property.WritingMode | undefined;
40743
- '--hvr-wm'?: csstype.Property.WritingMode | undefined;
40744
- '--focus-wm'?: csstype.Property.WritingMode | undefined;
40745
- '--wm-tablet'?: csstype.Property.WritingMode | undefined;
40746
- '--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
40747
- '--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
40748
- '--wm-mobile'?: csstype.Property.WritingMode | undefined;
40749
- '--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
40750
- '--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
40751
- accentColor?: csstype.Property.AccentColor | undefined;
40752
- alignContent?: csstype.Property.AlignContent | undefined;
40753
- alignItems?: csstype.Property.AlignItems | undefined;
40754
- alignSelf?: csstype.Property.AlignSelf | undefined;
40755
- alignTracks?: csstype.Property.AlignTracks | undefined;
40756
- animationComposition?: csstype.Property.AnimationComposition | undefined;
40757
- animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
40758
- animationDirection?: csstype.Property.AnimationDirection | undefined;
40759
- animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
40760
- animationFillMode?: csstype.Property.AnimationFillMode | undefined;
40761
- animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
40762
- animationName?: csstype.Property.AnimationName | undefined;
40763
- animationPlayState?: csstype.Property.AnimationPlayState | undefined;
40764
- animationTimeline?: csstype.Property.AnimationTimeline | undefined;
40765
- animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
40766
- appearance?: csstype.Property.Appearance | undefined;
40767
- aspectRatio?: csstype.Property.AspectRatio | undefined;
40768
- backdropFilter?: csstype.Property.BackdropFilter | undefined;
40769
- backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
40770
- backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
40771
- backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
40772
- backgroundClip?: csstype.Property.BackgroundClip | undefined;
40773
- backgroundColor?: csstype.Property.BackgroundColor | undefined;
40774
- backgroundImage?: csstype.Property.BackgroundImage | undefined;
40775
- backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
40776
- backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
40777
- backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
40778
- backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
40779
- backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
40780
- blockOverflow?: csstype.Property.BlockOverflow | undefined;
40781
- blockSize?: csstype.Property.BlockSize<string | number> | undefined;
40782
- borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
40783
- borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
40784
- borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
40785
- borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
40786
- borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
40787
- borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
40788
- borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
40789
- borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
40790
- borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
40791
- borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
40792
- borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
40793
- borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
40794
- borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
40795
- borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
40796
- borderCollapse?: csstype.Property.BorderCollapse | undefined;
40797
- borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
40798
- borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
40799
- borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
40800
- borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
40801
- borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
40802
- borderImageSource?: csstype.Property.BorderImageSource | undefined;
40803
- borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
40804
- borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
40805
- borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
40806
- borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
40807
- borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
40808
- borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
40809
- borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
40810
- borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
40811
- borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
40812
- borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
40813
- borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
40814
- borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
40815
- borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
40816
- borderRightColor?: csstype.Property.BorderRightColor | undefined;
40817
- borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
40818
- borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
40819
- borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
40820
- borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
40821
- borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
40822
- borderTopColor?: csstype.Property.BorderTopColor | undefined;
40823
- borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
40824
- borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
40825
- borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
40826
- borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
40827
- bottom?: csstype.Property.Bottom<string | number> | undefined;
40828
- boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
40829
- boxShadow?: csstype.Property.BoxShadow | undefined;
40830
- boxSizing?: csstype.Property.BoxSizing | undefined;
40831
- breakAfter?: csstype.Property.BreakAfter | undefined;
40832
- breakBefore?: csstype.Property.BreakBefore | undefined;
40833
- breakInside?: csstype.Property.BreakInside | undefined;
40834
- captionSide?: csstype.Property.CaptionSide | undefined;
40835
- caretColor?: csstype.Property.CaretColor | undefined;
40836
- caretShape?: csstype.Property.CaretShape | undefined;
40837
- clear?: csstype.Property.Clear | undefined;
40838
- clipPath?: csstype.Property.ClipPath | undefined;
40839
- color?: csstype.Property.Color | undefined;
40840
- colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
40841
- colorScheme?: csstype.Property.ColorScheme | undefined;
40842
- columnCount?: csstype.Property.ColumnCount | undefined;
40843
- columnFill?: csstype.Property.ColumnFill | undefined;
40844
- columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
40845
- columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
40846
- columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
40847
- columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
40848
- columnSpan?: csstype.Property.ColumnSpan | undefined;
40849
- columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
40850
- contain?: csstype.Property.Contain | undefined;
40851
- containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
40852
- containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
40853
- containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
40854
- containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
40855
- containerName?: csstype.Property.ContainerName | undefined;
40856
- containerType?: csstype.Property.ContainerType | undefined;
40857
- content?: csstype.Property.Content | undefined;
40858
- contentVisibility?: csstype.Property.ContentVisibility | undefined;
40859
- counterIncrement?: csstype.Property.CounterIncrement | undefined;
40860
- counterReset?: csstype.Property.CounterReset | undefined;
40861
- counterSet?: csstype.Property.CounterSet | undefined;
40862
- cursor?: csstype.Property.Cursor | undefined;
40863
- direction?: csstype.Property.Direction | undefined;
40864
- display?: csstype.Property.Display | undefined;
40865
- emptyCells?: csstype.Property.EmptyCells | undefined;
40866
- filter?: csstype.Property.Filter | undefined;
40867
- flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
40868
- flexDirection?: csstype.Property.FlexDirection | undefined;
40869
- flexGrow?: csstype.Property.FlexGrow | undefined;
40870
- flexShrink?: csstype.Property.FlexShrink | undefined;
40871
- flexWrap?: csstype.Property.FlexWrap | undefined;
40872
- float?: csstype.Property.Float | undefined;
40873
- fontFamily?: csstype.Property.FontFamily | undefined;
40874
- fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
40875
- fontKerning?: csstype.Property.FontKerning | undefined;
40876
- fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
40877
- fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
40878
- fontPalette?: csstype.Property.FontPalette | undefined;
40879
- fontSize?: csstype.Property.FontSize<string | number> | undefined;
40880
- fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
40881
- fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
40882
- fontStretch?: csstype.Property.FontStretch | undefined;
40883
- fontStyle?: csstype.Property.FontStyle | undefined;
40884
- fontSynthesis?: csstype.Property.FontSynthesis | undefined;
40885
- fontVariant?: csstype.Property.FontVariant | undefined;
40886
- fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
40887
- fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
40888
- fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
40889
- fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
40890
- fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
40891
- fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
40892
- fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
40893
- fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
40894
- fontWeight?: csstype.Property.FontWeight | undefined;
40895
- forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
40896
- gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
40897
- gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
40898
- gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
40899
- gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
40900
- gridColumnStart?: csstype.Property.GridColumnStart | undefined;
40901
- gridRowEnd?: csstype.Property.GridRowEnd | undefined;
40902
- gridRowStart?: csstype.Property.GridRowStart | undefined;
40903
- gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
40904
- gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
40905
- gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
40906
- hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
40907
- height?: csstype.Property.Height<string | number> | undefined;
40908
- hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
40909
- hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
40910
- hyphens?: csstype.Property.Hyphens | undefined;
40911
- imageOrientation?: csstype.Property.ImageOrientation | undefined;
40912
- imageRendering?: csstype.Property.ImageRendering | undefined;
40913
- imageResolution?: csstype.Property.ImageResolution | undefined;
40914
- initialLetter?: csstype.Property.InitialLetter | undefined;
40915
- inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
40916
- inputSecurity?: csstype.Property.InputSecurity | undefined;
40917
- insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
40918
- insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
40919
- insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
40920
- insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
40921
- isolation?: csstype.Property.Isolation | undefined;
40922
- justifyContent?: csstype.Property.JustifyContent | undefined;
40923
- justifyItems?: csstype.Property.JustifyItems | undefined;
40924
- justifySelf?: csstype.Property.JustifySelf | undefined;
40925
- justifyTracks?: csstype.Property.JustifyTracks | undefined;
40926
- left?: csstype.Property.Left<string | number> | undefined;
40927
- letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
40928
- lineBreak?: csstype.Property.LineBreak | undefined;
40929
- lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
40930
- lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
40931
- listStyleImage?: csstype.Property.ListStyleImage | undefined;
40932
- listStylePosition?: csstype.Property.ListStylePosition | undefined;
40933
- listStyleType?: csstype.Property.ListStyleType | undefined;
40934
- marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
40935
- marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
40936
- marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
40937
- marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
40938
- marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
40939
- marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
40940
- marginRight?: csstype.Property.MarginRight<string | number> | undefined;
40941
- marginTop?: csstype.Property.MarginTop<string | number> | undefined;
40942
- marginTrim?: csstype.Property.MarginTrim | undefined;
40943
- maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
40944
- maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
40945
- maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
40946
- maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
40947
- maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
40948
- maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
40949
- maskClip?: csstype.Property.MaskClip | undefined;
40950
- maskComposite?: csstype.Property.MaskComposite | undefined;
40951
- maskImage?: csstype.Property.MaskImage | undefined;
40952
- maskMode?: csstype.Property.MaskMode | undefined;
40953
- maskOrigin?: csstype.Property.MaskOrigin | undefined;
40954
- maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
40955
- maskRepeat?: csstype.Property.MaskRepeat | undefined;
40956
- maskSize?: csstype.Property.MaskSize<string | number> | undefined;
40957
- maskType?: csstype.Property.MaskType | undefined;
40958
- mathDepth?: csstype.Property.MathDepth | undefined;
40959
- mathShift?: csstype.Property.MathShift | undefined;
40960
- mathStyle?: csstype.Property.MathStyle | undefined;
40961
- maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
40962
- maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
40963
- maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
40964
- maxLines?: csstype.Property.MaxLines | undefined;
40965
- maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
40966
- minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
40967
- minHeight?: csstype.Property.MinHeight<string | number> | undefined;
40968
- minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
40969
- minWidth?: csstype.Property.MinWidth<string | number> | undefined;
40970
- mixBlendMode?: csstype.Property.MixBlendMode | undefined;
40971
- motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
40972
- motionPath?: csstype.Property.OffsetPath | undefined;
40973
- motionRotation?: csstype.Property.OffsetRotate | undefined;
40974
- objectFit?: csstype.Property.ObjectFit | undefined;
40975
- objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
40976
- offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
40977
- offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
40978
- offsetPath?: csstype.Property.OffsetPath | undefined;
40979
- offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
40980
- offsetRotate?: csstype.Property.OffsetRotate | undefined;
40981
- offsetRotation?: csstype.Property.OffsetRotate | undefined;
40982
- opacity?: csstype.Property.Opacity | undefined;
40983
- order?: csstype.Property.Order | undefined;
40984
- orphans?: csstype.Property.Orphans | undefined;
40985
- outlineColor?: csstype.Property.OutlineColor | undefined;
40986
- outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
40987
- outlineStyle?: csstype.Property.OutlineStyle | undefined;
40988
- outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
40989
- overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
40990
- overflowBlock?: csstype.Property.OverflowBlock | undefined;
40991
- overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
40992
- overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
40993
- overflowInline?: csstype.Property.OverflowInline | undefined;
40994
- overflowWrap?: csstype.Property.OverflowWrap | undefined;
40995
- overflowX?: csstype.Property.OverflowX | undefined;
40996
- overflowY?: csstype.Property.OverflowY | undefined;
40997
- overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
40998
- overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
40999
- overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
41000
- overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
41001
- paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
41002
- paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
41003
- paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
41004
- paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
41005
- paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
41006
- paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
41007
- paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
41008
- paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
41009
- page?: csstype.Property.Page | undefined;
41010
- pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
41011
- pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
41012
- pageBreakInside?: csstype.Property.PageBreakInside | undefined;
41013
- paintOrder?: csstype.Property.PaintOrder | undefined;
41014
- perspective?: csstype.Property.Perspective<string | number> | undefined;
41015
- perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
41016
- pointerEvents?: csstype.Property.PointerEvents | undefined;
41017
- position?: csstype.Property.Position | undefined;
41018
- printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
41019
- quotes?: csstype.Property.Quotes | undefined;
41020
- resize?: csstype.Property.Resize | undefined;
41021
- right?: csstype.Property.Right<string | number> | undefined;
41022
- rotate?: csstype.Property.Rotate | undefined;
41023
- rowGap?: csstype.Property.RowGap<string | number> | undefined;
41024
- rubyAlign?: csstype.Property.RubyAlign | undefined;
41025
- rubyMerge?: csstype.Property.RubyMerge | undefined;
41026
- rubyPosition?: csstype.Property.RubyPosition | undefined;
41027
- scale?: csstype.Property.Scale | undefined;
41028
- scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
41029
- scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
41030
- scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
41031
- scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
41032
- scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
41033
- scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
41034
- scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
41035
- scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
41036
- scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
41037
- scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
41038
- scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
41039
- scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
41040
- scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
41041
- scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
41042
- scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
41043
- scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
41044
- scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
41045
- scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
41046
- scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
41047
- scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
41048
- scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
41049
- scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
41050
- scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
41051
- scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
41052
- scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
41053
- scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
41054
- scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
41055
- scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
41056
- scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
41057
- shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
41058
- shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
41059
- shapeOutside?: csstype.Property.ShapeOutside | undefined;
41060
- tabSize?: csstype.Property.TabSize<string | number> | undefined;
41061
- tableLayout?: csstype.Property.TableLayout | undefined;
41062
- textAlign?: csstype.Property.TextAlign | undefined;
41063
- textAlignLast?: csstype.Property.TextAlignLast | undefined;
41064
- textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
41065
- textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
41066
- textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
41067
- textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
41068
- textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
41069
- textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
41070
- textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
41071
- textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
41072
- textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
41073
- textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
41074
- textIndent?: csstype.Property.TextIndent<string | number> | undefined;
41075
- textJustify?: csstype.Property.TextJustify | undefined;
41076
- textOrientation?: csstype.Property.TextOrientation | undefined;
41077
- textOverflow?: csstype.Property.TextOverflow | undefined;
41078
- textRendering?: csstype.Property.TextRendering | undefined;
41079
- textShadow?: csstype.Property.TextShadow | undefined;
41080
- textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
41081
- textTransform?: csstype.Property.TextTransform | undefined;
41082
- textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
41083
- textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
41084
- top?: csstype.Property.Top<string | number> | undefined;
41085
- touchAction?: csstype.Property.TouchAction | undefined;
41086
- transform?: csstype.Property.Transform | undefined;
41087
- transformBox?: csstype.Property.TransformBox | undefined;
41088
- transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
41089
- transformStyle?: csstype.Property.TransformStyle | undefined;
41090
- transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
41091
- transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
41092
- transitionProperty?: csstype.Property.TransitionProperty | undefined;
41093
- transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
41094
- translate?: csstype.Property.Translate<string | number> | undefined;
41095
- unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
41096
- userSelect?: csstype.Property.UserSelect | undefined;
41097
- verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
41098
- viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
41099
- visibility?: csstype.Property.Visibility | undefined;
41100
- whiteSpace?: csstype.Property.WhiteSpace | undefined;
41101
- widows?: csstype.Property.Widows | undefined;
41102
- width?: csstype.Property.Width<string | number> | undefined;
41103
- willChange?: csstype.Property.WillChange | undefined;
41104
- wordBreak?: csstype.Property.WordBreak | undefined;
41105
- wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
41106
- wordWrap?: csstype.Property.WordWrap | undefined;
41107
- writingMode?: csstype.Property.WritingMode | undefined;
41108
- zIndex?: csstype.Property.ZIndex | undefined;
41109
- zoom?: csstype.Property.Zoom | undefined;
41110
- all?: csstype.Globals | undefined;
41111
- animation?: csstype.Property.Animation<string & {}> | undefined;
41112
- background?: csstype.Property.Background<string | number> | undefined;
41113
- backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
41114
- border?: csstype.Property.Border<string | number> | undefined;
41115
- borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
41116
- borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
41117
- borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
41118
- borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
41119
- borderColor?: csstype.Property.BorderColor | undefined;
41120
- borderImage?: csstype.Property.BorderImage | undefined;
41121
- borderInline?: csstype.Property.BorderInline<string | number> | undefined;
41122
- borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
41123
- borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
41124
- borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
41125
- borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
41126
- borderRight?: csstype.Property.BorderRight<string | number> | undefined;
41127
- borderStyle?: csstype.Property.BorderStyle | undefined;
41128
- borderTop?: csstype.Property.BorderTop<string | number> | undefined;
41129
- borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
41130
- caret?: csstype.Property.Caret | undefined;
41131
- columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
41132
- columns?: csstype.Property.Columns<string | number> | undefined;
41133
- containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
41134
- container?: csstype.Property.Container | undefined;
41135
- flex?: csstype.Property.Flex<string | number> | undefined;
41136
- flexFlow?: csstype.Property.FlexFlow | undefined;
41137
- font?: csstype.Property.Font | undefined;
41138
- gap?: csstype.Property.Gap<string | number> | undefined;
41139
- grid?: csstype.Property.Grid | undefined;
41140
- gridArea?: csstype.Property.GridArea | undefined;
41141
- gridColumn?: csstype.Property.GridColumn | undefined;
41142
- gridRow?: csstype.Property.GridRow | undefined;
41143
- gridTemplate?: csstype.Property.GridTemplate | undefined;
41144
- inset?: csstype.Property.Inset<string | number> | undefined;
41145
- insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
41146
- insetInline?: csstype.Property.InsetInline<string | number> | undefined;
41147
- lineClamp?: csstype.Property.LineClamp | undefined;
41148
- listStyle?: csstype.Property.ListStyle | undefined;
41149
- margin?: csstype.Property.Margin<string | number> | undefined;
41150
- marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
41151
- marginInline?: csstype.Property.MarginInline<string | number> | undefined;
41152
- mask?: csstype.Property.Mask<string | number> | undefined;
41153
- maskBorder?: csstype.Property.MaskBorder | undefined;
41154
- motion?: csstype.Property.Offset<string | number> | undefined;
41155
- offset?: csstype.Property.Offset<string | number> | undefined;
41156
- outline?: csstype.Property.Outline<string | number> | undefined;
41157
- overflow?: csstype.Property.Overflow | undefined;
41158
- overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
41159
- padding?: csstype.Property.Padding<string | number> | undefined;
41160
- paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
41161
- paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
41162
- placeContent?: csstype.Property.PlaceContent | undefined;
41163
- placeItems?: csstype.Property.PlaceItems | undefined;
41164
- placeSelf?: csstype.Property.PlaceSelf | undefined;
41165
- scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
41166
- scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
41167
- scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
41168
- scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
41169
- scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
41170
- scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
41171
- scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
41172
- scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
41173
- textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
41174
- textEmphasis?: csstype.Property.TextEmphasis | undefined;
41175
- transition?: csstype.Property.Transition<string & {}> | undefined;
41176
- MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
41177
- MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
41178
- MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
41179
- MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
41180
- MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
41181
- MozAnimationName?: csstype.Property.AnimationName | undefined;
41182
- MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
41183
- MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
41184
- MozAppearance?: csstype.Property.MozAppearance | undefined;
41185
- MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
41186
- MozBinding?: csstype.Property.MozBinding | undefined;
41187
- MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
41188
- MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
41189
- MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
41190
- MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
41191
- MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
41192
- MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
41193
- MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
41194
- MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
41195
- MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
41196
- MozBoxSizing?: csstype.Property.BoxSizing | undefined;
41197
- MozColumnCount?: csstype.Property.ColumnCount | undefined;
41198
- MozColumnFill?: csstype.Property.ColumnFill | undefined;
41199
- MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
41200
- MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
41201
- MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
41202
- MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
41203
- MozContextProperties?: csstype.Property.MozContextProperties | undefined;
41204
- MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
41205
- MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
41206
- MozHyphens?: csstype.Property.Hyphens | undefined;
41207
- MozImageRegion?: csstype.Property.MozImageRegion | undefined;
41208
- MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
41209
- MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
41210
- MozOrient?: csstype.Property.MozOrient | undefined;
41211
- MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
41212
- MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
41213
- MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
41214
- MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
41215
- MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
41216
- MozStackSizing?: csstype.Property.MozStackSizing | undefined;
41217
- MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
41218
- MozTextBlink?: csstype.Property.MozTextBlink | undefined;
41219
- MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
41220
- MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
41221
- MozTransformStyle?: csstype.Property.TransformStyle | undefined;
41222
- MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
41223
- MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
41224
- MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
41225
- MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
41226
- MozUserFocus?: csstype.Property.MozUserFocus | undefined;
41227
- MozUserModify?: csstype.Property.MozUserModify | undefined;
41228
- MozUserSelect?: csstype.Property.UserSelect | undefined;
41229
- MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
41230
- MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
41231
- msAccelerator?: csstype.Property.MsAccelerator | undefined;
41232
- msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
41233
- msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
41234
- msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
41235
- msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
41236
- msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
41237
- msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
41238
- msContentZooming?: csstype.Property.MsContentZooming | undefined;
41239
- msFilter?: csstype.Property.MsFilter | undefined;
41240
- msFlexDirection?: csstype.Property.FlexDirection | undefined;
41241
- msFlexPositive?: csstype.Property.FlexGrow | undefined;
41242
- msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
41243
- msFlowInto?: csstype.Property.MsFlowInto | undefined;
41244
- msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
41245
- msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
41246
- msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
41247
- msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
41248
- msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
41249
- msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
41250
- msHyphens?: csstype.Property.Hyphens | undefined;
41251
- msImeAlign?: csstype.Property.MsImeAlign | undefined;
41252
- msLineBreak?: csstype.Property.LineBreak | undefined;
41253
- msOrder?: csstype.Property.Order | undefined;
41254
- msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
41255
- msOverflowX?: csstype.Property.OverflowX | undefined;
41256
- msOverflowY?: csstype.Property.OverflowY | undefined;
41257
- msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
41258
- msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
41259
- msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
41260
- msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
41261
- msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
41262
- msScrollRails?: csstype.Property.MsScrollRails | undefined;
41263
- msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
41264
- msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
41265
- msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
41266
- msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
41267
- msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
41268
- msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
41269
- msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
41270
- msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
41271
- msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
41272
- msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
41273
- msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
41274
- msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
41275
- msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
41276
- msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
41277
- msTextOverflow?: csstype.Property.TextOverflow | undefined;
41278
- msTouchAction?: csstype.Property.TouchAction | undefined;
41279
- msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
41280
- msTransform?: csstype.Property.Transform | undefined;
41281
- msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
41282
- msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
41283
- msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
41284
- msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
41285
- msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
41286
- msUserSelect?: csstype.Property.MsUserSelect | undefined;
41287
- msWordBreak?: csstype.Property.WordBreak | undefined;
41288
- msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
41289
- msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
41290
- msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
41291
- msWritingMode?: csstype.Property.WritingMode | undefined;
41292
- WebkitAlignContent?: csstype.Property.AlignContent | undefined;
41293
- WebkitAlignItems?: csstype.Property.AlignItems | undefined;
41294
- WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
41295
- WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
41296
- WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
41297
- WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
41298
- WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
41299
- WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
41300
- WebkitAnimationName?: csstype.Property.AnimationName | undefined;
41301
- WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
41302
- WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
41303
- WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
41304
- WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
41305
- WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
41306
- WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
41307
- WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
41308
- WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
41309
- WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
41310
- WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
41311
- WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
41312
- WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
41313
- WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
41314
- WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
41315
- WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
41316
- WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
41317
- WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
41318
- WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
41319
- WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
41320
- WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
41321
- WebkitClipPath?: csstype.Property.ClipPath | undefined;
41322
- WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
41323
- WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
41324
- WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
41325
- WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
41326
- WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
41327
- WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
41328
- WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
41329
- WebkitFilter?: csstype.Property.Filter | undefined;
41330
- WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
41331
- WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
41332
- WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
41333
- WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
41334
- WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
41335
- WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
41336
- WebkitFontKerning?: csstype.Property.FontKerning | undefined;
41337
- WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
41338
- WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
41339
- WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
41340
- WebkitHyphens?: csstype.Property.Hyphens | undefined;
41341
- WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
41342
- WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
41343
- WebkitLineBreak?: csstype.Property.LineBreak | undefined;
41344
- WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
41345
- WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
41346
- WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
41347
- WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
41348
- WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
41349
- WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
41350
- WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
41351
- WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
41352
- WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
41353
- WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
41354
- WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
41355
- WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
41356
- WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
41357
- WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
41358
- WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
41359
- WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
41360
- WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
41361
- WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
41362
- WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
41363
- WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
41364
- WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
41365
- WebkitOrder?: csstype.Property.Order | undefined;
41366
- WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
41367
- WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
41368
- WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
41369
- WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
41370
- WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
41371
- WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
41372
- WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
41373
- WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
41374
- WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
41375
- WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
41376
- WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
41377
- WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
41378
- WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
41379
- WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
41380
- WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
41381
- WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
41382
- WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
41383
- WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
41384
- WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
41385
- WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
41386
- WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
41387
- WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
41388
- WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
41389
- WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
41390
- WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
41391
- WebkitTransform?: csstype.Property.Transform | undefined;
41392
- WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
41393
- WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
41394
- WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
41395
- WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
41396
- WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
41397
- WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
41398
- WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
41399
- WebkitUserSelect?: csstype.Property.UserSelect | undefined;
41400
- WebkitWritingMode?: csstype.Property.WritingMode | undefined;
41401
- MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
41402
- MozBorderImage?: csstype.Property.BorderImage | undefined;
41403
- MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
41404
- MozColumns?: csstype.Property.Columns<string | number> | undefined;
41405
- MozTransition?: csstype.Property.Transition<string & {}> | undefined;
41406
- msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
41407
- msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
41408
- msFlex?: csstype.Property.Flex<string | number> | undefined;
41409
- msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
41410
- msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
41411
- msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
41412
- msTransition?: csstype.Property.Transition<string & {}> | undefined;
41413
- WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
41414
- WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
41415
- WebkitBorderImage?: csstype.Property.BorderImage | undefined;
41416
- WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
41417
- WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
41418
- WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
41419
- WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
41420
- WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
41421
- WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
41422
- WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
41423
- WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
41424
- WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
41425
- WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
41426
- azimuth?: csstype.Property.Azimuth | undefined;
41427
- boxAlign?: csstype.Property.BoxAlign | undefined;
41428
- boxDirection?: csstype.Property.BoxDirection | undefined;
41429
- boxFlex?: csstype.Property.BoxFlex | undefined;
41430
- boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
41431
- boxLines?: csstype.Property.BoxLines | undefined;
41432
- boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
41433
- boxOrient?: csstype.Property.BoxOrient | undefined;
41434
- boxPack?: csstype.Property.BoxPack | undefined;
41435
- clip?: csstype.Property.Clip | undefined;
41436
- gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
41437
- gridGap?: csstype.Property.GridGap<string | number> | undefined;
41438
- gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
41439
- imeMode?: csstype.Property.ImeMode | undefined;
41440
- offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
41441
- offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
41442
- offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
41443
- offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
41444
- offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
41445
- offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
41446
- scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
41447
- scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
41448
- scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
41449
- scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
41450
- scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
41451
- scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
41452
- KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
41453
- KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
41454
- KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
41455
- KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
41456
- KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
41457
- KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
41458
- KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
41459
- KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
41460
- KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
41461
- KhtmlOpacity?: csstype.Property.Opacity | undefined;
41462
- KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
41463
- MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
41464
- MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
41465
- MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
41466
- MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
41467
- MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
41468
- MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
41469
- MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
41470
- MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
41471
- MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
41472
- MozBoxAlign?: csstype.Property.BoxAlign | undefined;
41473
- MozBoxDirection?: csstype.Property.BoxDirection | undefined;
41474
- MozBoxFlex?: csstype.Property.BoxFlex | undefined;
41475
- MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
41476
- MozBoxOrient?: csstype.Property.BoxOrient | undefined;
41477
- MozBoxPack?: csstype.Property.BoxPack | undefined;
41478
- MozBoxShadow?: csstype.Property.BoxShadow | undefined;
41479
- MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
41480
- MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
41481
- MozOpacity?: csstype.Property.Opacity | undefined;
41482
- MozOutline?: csstype.Property.Outline<string | number> | undefined;
41483
- MozOutlineColor?: csstype.Property.OutlineColor | undefined;
41484
- MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
41485
- MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
41486
- MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
41487
- MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
41488
- MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
41489
- MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
41490
- MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
41491
- MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
41492
- MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
41493
- MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
41494
- MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
41495
- MozUserInput?: csstype.Property.MozUserInput | undefined;
41496
- msImeMode?: csstype.Property.ImeMode | undefined;
41497
- OAnimation?: csstype.Property.Animation<string & {}> | undefined;
41498
- OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
41499
- OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
41500
- OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
41501
- OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
41502
- OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
41503
- OAnimationName?: csstype.Property.AnimationName | undefined;
41504
- OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
41505
- OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
41506
- OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
41507
- OBorderImage?: csstype.Property.BorderImage | undefined;
41508
- OObjectFit?: csstype.Property.ObjectFit | undefined;
41509
- OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
41510
- OTabSize?: csstype.Property.TabSize<string | number> | undefined;
41511
- OTextOverflow?: csstype.Property.TextOverflow | undefined;
41512
- OTransform?: csstype.Property.Transform | undefined;
41513
- OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
41514
- OTransition?: csstype.Property.Transition<string & {}> | undefined;
41515
- OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
41516
- OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
41517
- OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
41518
- OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
41519
- WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
41520
- WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
41521
- WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
41522
- WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
41523
- WebkitBoxLines?: csstype.Property.BoxLines | undefined;
41524
- WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
41525
- WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
41526
- WebkitBoxPack?: csstype.Property.BoxPack | undefined;
41527
- WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
41528
- WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
41529
- alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
41530
- baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
41531
- clipRule?: csstype.Property.ClipRule | undefined;
41532
- colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
41533
- colorRendering?: csstype.Property.ColorRendering | undefined;
41534
- dominantBaseline?: csstype.Property.DominantBaseline | undefined;
41535
- fill?: csstype.Property.Fill | undefined;
41536
- fillOpacity?: csstype.Property.FillOpacity | undefined;
41537
- fillRule?: csstype.Property.FillRule | undefined;
41538
- floodColor?: csstype.Property.FloodColor | undefined;
41539
- floodOpacity?: csstype.Property.FloodOpacity | undefined;
41540
- glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
41541
- lightingColor?: csstype.Property.LightingColor | undefined;
41542
- marker?: csstype.Property.Marker | undefined;
41543
- markerEnd?: csstype.Property.MarkerEnd | undefined;
41544
- markerMid?: csstype.Property.MarkerMid | undefined;
41545
- markerStart?: csstype.Property.MarkerStart | undefined;
41546
- shapeRendering?: csstype.Property.ShapeRendering | undefined;
41547
- stopColor?: csstype.Property.StopColor | undefined;
41548
- stopOpacity?: csstype.Property.StopOpacity | undefined;
41549
- stroke?: csstype.Property.Stroke | undefined;
41550
- strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
41551
- strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
41552
- strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
41553
- strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
41554
- strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
41555
- strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
41556
- strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
41557
- textAnchor?: csstype.Property.TextAnchor | undefined;
41558
- vectorEffect?: csstype.Property.VectorEffect | undefined;
41559
- };
40047
+ };
41560
40048
 
41561
40049
  type ArticlesQueryVariables = Exact$1<{
41562
40050
  after?: InputMaybe$1<Scalars$2['Cursor']>;
@@ -41569,7 +40057,7 @@ type ArticlesQueryVariables = Exact$1<{
41569
40057
  type ArticlesQueryResponse = {
41570
40058
  articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
41571
40059
  edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
41572
- node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
40060
+ node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'author'> & {
41573
40061
  tags: Array<never>;
41574
40062
  content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
41575
40063
  blogs?: Maybe$1<{
@@ -41594,12 +40082,12 @@ type BlogsQueryVariables = Exact$1<{
41594
40082
  articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
41595
40083
  }>;
41596
40084
  type BlogsQueryResponse = {
41597
- blogs?: Maybe$1<(Pick<BlogConnection$1, 'totalCount'> & {
41598
- edges: Array<(Pick<BlogEdge$1, 'cursor'> & {
41599
- node?: Maybe$1<(Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
41600
- articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
41601
- edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
41602
- node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
40085
+ blogs?: Maybe$1<Pick<BlogConnection$1, 'totalCount'> & {
40086
+ edges: Array<Pick<BlogEdge$1, 'cursor'> & {
40087
+ node?: Maybe$1<Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
40088
+ articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
40089
+ edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
40090
+ node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'author'> & {
41603
40091
  tags: Array<never>;
41604
40092
  content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
41605
40093
  blogs?: Maybe$1<{
@@ -41608,13 +40096,13 @@ type BlogsQueryResponse = {
41608
40096
  }>;
41609
40097
  }>;
41610
40098
  media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
41611
- })>;
41612
- })>;
41613
- })>;
41614
- })>;
41615
- })>;
40099
+ }>;
40100
+ }>;
40101
+ }>;
40102
+ }>;
40103
+ }>;
41616
40104
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
41617
- })>;
40105
+ }>;
41618
40106
  };
41619
40107
 
41620
40108
  declare const useArticlesQuery: (variables: ArticlesQueryVariables | null, options?: SWRConfiguration<ArticlesQueryResponse>) => swr__internal.SWRResponse<ArticlesQueryResponse, any, Partial<swr__internal.PublicConfiguration<ArticlesQueryResponse, any, (arg: ["query/articles", any]) => swr__internal.FetcherResponse<ArticlesQueryResponse>>> | undefined>;
@@ -41662,6 +40150,9 @@ declare const useCurrency: () => {
41662
40150
  currency: string | undefined;
41663
40151
  changeCurrency: (currency: string) => void;
41664
40152
  };
40153
+ declare const useTimezone: () => {
40154
+ timezone: string | undefined;
40155
+ };
41665
40156
  declare const useMoneyFormat: () => {
41666
40157
  moneyFormat: string | undefined;
41667
40158
  moneyWithCurrencyFormat: string | undefined;
@@ -41922,4 +40413,4 @@ declare const useInteraction: () => {
41922
40413
  interactionListenerLoaded: (callback: () => void) => void;
41923
40414
  };
41924
40415
 
41925
- export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, LooxReviewsWidgetTypeV2, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStyleShadow, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
40416
+ export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, LooxReviewsWidgetTypeV2, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStyleShadow, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };