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