@gem-sdk/core 1.48.0-dev.6 → 1.48.0-dev.61
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 +2 -2
- 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/background.js +1 -1
- package/dist/cjs/helpers/compose-advance-style.js +6 -3
- package/dist/cjs/helpers/shadow.js +15 -3
- package/dist/cjs/helpers/third-party/appConfig.js +35 -0
- package/dist/cjs/helpers/third-party/appSetting.js +47 -0
- package/dist/cjs/helpers/third-party/constant.js +6 -1
- package/dist/cjs/helpers/typography.js +9 -14
- package/dist/cjs/index.js +1 -0
- package/dist/esm/components/InteractionSuffix.js +2 -2
- package/dist/esm/components/Render.liquid.js +2 -2
- 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/background.js +1 -1
- package/dist/esm/helpers/compose-advance-style.js +7 -4
- package/dist/esm/helpers/shadow.js +15 -4
- package/dist/esm/helpers/third-party/appConfig.js +31 -1
- package/dist/esm/helpers/third-party/appSetting.js +47 -0
- package/dist/esm/helpers/third-party/constant.js +7 -2
- package/dist/esm/helpers/typography.js +9 -14
- package/dist/esm/index.js +1 -1
- package/dist/types/index.d.ts +1754 -8
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -6909,7 +6909,7 @@ 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
6913
|
|
|
6914
6914
|
type ResponsiveConfig<T> = {
|
|
6915
6915
|
desktop: {
|
|
@@ -7334,6 +7334,7 @@ type Option$2<T> = {
|
|
|
7334
7334
|
tooltip?: string;
|
|
7335
7335
|
type?: string;
|
|
7336
7336
|
note?: string;
|
|
7337
|
+
maxOption?: number;
|
|
7337
7338
|
};
|
|
7338
7339
|
type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
7339
7340
|
id: K;
|
|
@@ -7442,14 +7443,14 @@ type BehaviorStateControlType<T> = {
|
|
|
7442
7443
|
|
|
7443
7444
|
type BoxShadowControlType<T> = SharedControlType<T> & {
|
|
7444
7445
|
id?: string;
|
|
7445
|
-
type: '
|
|
7446
|
+
type: 'box-shadow';
|
|
7446
7447
|
hideOptions?: string[];
|
|
7447
7448
|
popup?: boolean;
|
|
7448
7449
|
};
|
|
7449
7450
|
|
|
7450
7451
|
type TextShadowControlType<T> = SharedControlType<T> & {
|
|
7451
7452
|
id?: string;
|
|
7452
|
-
type: '
|
|
7453
|
+
type: 'text-shadow';
|
|
7453
7454
|
popup?: boolean;
|
|
7454
7455
|
};
|
|
7455
7456
|
|
|
@@ -8032,8 +8033,79 @@ type ShapeSelectorControlType<T> = SharedControlType<T> & {
|
|
|
8032
8033
|
type: 'shape-selector';
|
|
8033
8034
|
};
|
|
8034
8035
|
|
|
8036
|
+
declare enum CompareType {
|
|
8037
|
+
EXACT = "exact",
|
|
8038
|
+
ABOVE = "above",
|
|
8039
|
+
BELOW = "below",
|
|
8040
|
+
EXACT_OR_ABOVE = "exact_or_above",
|
|
8041
|
+
EXACT_OR_BELOW = "exact_or_below",
|
|
8042
|
+
BETWEEN = "between"
|
|
8043
|
+
}
|
|
8044
|
+
declare enum TriggerType {
|
|
8045
|
+
INVENTORY_STATUS = "inventory_status",
|
|
8046
|
+
DISCOUNT_PRICE = "discount_price",
|
|
8047
|
+
PRICE_RANGE = "price_range",
|
|
8048
|
+
PRODUCT_TAGS = "product_tags",
|
|
8049
|
+
CREATION_DATE = "creation_date"
|
|
8050
|
+
}
|
|
8051
|
+
declare enum InventoryStatus {
|
|
8052
|
+
IN_STOCK = "in_stock",
|
|
8053
|
+
OUT_OF_STOCK = "out_of_stock"
|
|
8054
|
+
}
|
|
8055
|
+
declare enum CreationDateType {
|
|
8056
|
+
DURATION = "duration",
|
|
8057
|
+
EXACT_DATE = "exact_date",
|
|
8058
|
+
BETWEEN_DATES = "between_dates"
|
|
8059
|
+
}
|
|
8060
|
+
declare enum DiscountType {
|
|
8061
|
+
PERCENT = "percent",
|
|
8062
|
+
FIXED = "fixed"
|
|
8063
|
+
}
|
|
8064
|
+
type InventoryStatusTrigger = {
|
|
8065
|
+
triggerEvent: TriggerType.INVENTORY_STATUS;
|
|
8066
|
+
type: InventoryStatus;
|
|
8067
|
+
quantityType: CompareType;
|
|
8068
|
+
from: string;
|
|
8069
|
+
to?: string;
|
|
8070
|
+
priority: number;
|
|
8071
|
+
conditionType?: CompareType;
|
|
8072
|
+
};
|
|
8073
|
+
type DiscountPriceTrigger = {
|
|
8074
|
+
triggerEvent: TriggerType.DISCOUNT_PRICE;
|
|
8075
|
+
type: CompareType;
|
|
8076
|
+
amount?: string;
|
|
8077
|
+
from?: string;
|
|
8078
|
+
to?: string;
|
|
8079
|
+
priority: number;
|
|
8080
|
+
conditionType?: CompareType;
|
|
8081
|
+
discountType?: DiscountType;
|
|
8082
|
+
};
|
|
8083
|
+
type PriceRangeTrigger = {
|
|
8084
|
+
triggerEvent: TriggerType.PRICE_RANGE;
|
|
8085
|
+
from: string;
|
|
8086
|
+
to: string;
|
|
8087
|
+
priority: number;
|
|
8088
|
+
conditionType?: CompareType;
|
|
8089
|
+
};
|
|
8090
|
+
type CreationDateTrigger = {
|
|
8091
|
+
triggerEvent: TriggerType.CREATION_DATE;
|
|
8092
|
+
type: CreationDateType;
|
|
8093
|
+
days: string;
|
|
8094
|
+
from: string;
|
|
8095
|
+
to: string;
|
|
8096
|
+
priority: number;
|
|
8097
|
+
conditionType?: CompareType;
|
|
8098
|
+
};
|
|
8099
|
+
type ProductTagTrigger = {
|
|
8100
|
+
triggerEvent: TriggerType.PRODUCT_TAGS;
|
|
8101
|
+
searchTag: string[];
|
|
8102
|
+
priority: number;
|
|
8103
|
+
conditionType?: CompareType;
|
|
8104
|
+
};
|
|
8105
|
+
type TDisplayTrigger = InventoryStatusTrigger | DiscountPriceTrigger | PriceRangeTrigger | ProductTagTrigger | CreationDateTrigger;
|
|
8035
8106
|
type DisplayTriggerControlType<T> = SharedControlType<T> & {
|
|
8036
8107
|
type: 'display-trigger-badge';
|
|
8108
|
+
default: TDisplayTrigger[];
|
|
8037
8109
|
};
|
|
8038
8110
|
|
|
8039
8111
|
type CustomPositionControlType<T> = SharedControlType<T> & {
|
|
@@ -8060,7 +8132,116 @@ type SelectProductBundleControlType<T> = SharedControlType<T> & {
|
|
|
8060
8132
|
hide?: boolean;
|
|
8061
8133
|
};
|
|
8062
8134
|
|
|
8063
|
-
type
|
|
8135
|
+
type SettingStateType = 'normal' | 'hover' | 'focus' | 'active' | 'price' | 'compareAtPrice';
|
|
8136
|
+
type LangKey = 'en' | 'vi';
|
|
8137
|
+
type LabelWithLang = {
|
|
8138
|
+
[P in keyof Record<LangKey, ''>]?: string;
|
|
8139
|
+
};
|
|
8140
|
+
type SettingMediaType = 'image' | 'youtubeVideoID';
|
|
8141
|
+
type SettingUIHelpType = {
|
|
8142
|
+
content: string;
|
|
8143
|
+
button?: {
|
|
8144
|
+
label: string;
|
|
8145
|
+
link: string;
|
|
8146
|
+
};
|
|
8147
|
+
media?: {
|
|
8148
|
+
value: string;
|
|
8149
|
+
type: SettingMediaType;
|
|
8150
|
+
};
|
|
8151
|
+
};
|
|
8152
|
+
type LinkWithSetting = {
|
|
8153
|
+
name: string;
|
|
8154
|
+
state?: string;
|
|
8155
|
+
field?: string;
|
|
8156
|
+
getLinkValue?: boolean;
|
|
8157
|
+
};
|
|
8158
|
+
type ControlConfig = ControlProp<any> & {
|
|
8159
|
+
linkWithSetting?: LinkWithSetting;
|
|
8160
|
+
};
|
|
8161
|
+
type Plan = 'trial' | 'build' | 'starter' | 'optimize' | 'advanced' | 'trial2022' | 'enterprise' | 'development' | 'professional';
|
|
8162
|
+
type SettingUIControl = {
|
|
8163
|
+
id?: string;
|
|
8164
|
+
controlConfig?: ControlConfig;
|
|
8165
|
+
isCompo?: boolean;
|
|
8166
|
+
layout?: 'vertical' | 'horizontal';
|
|
8167
|
+
toggleGroupId?: string;
|
|
8168
|
+
label?: LabelWithLang;
|
|
8169
|
+
conditionDisplay?: string;
|
|
8170
|
+
conditionEnable?: string;
|
|
8171
|
+
options?: {
|
|
8172
|
+
hideLabel?: boolean;
|
|
8173
|
+
hideOnDevices?: Record<NameDevices$1, boolean>;
|
|
8174
|
+
fullWidth?: boolean;
|
|
8175
|
+
onlyShowInTags?: string[];
|
|
8176
|
+
target?: 'tab';
|
|
8177
|
+
disableMessage?: string;
|
|
8178
|
+
nearestSupportedPlan?: Plan;
|
|
8179
|
+
lockedOnPlans?: Plan[];
|
|
8180
|
+
labelVariant?: 'primary' | 'secondary';
|
|
8181
|
+
labelInsideControl?: boolean;
|
|
8182
|
+
};
|
|
8183
|
+
setting?: {
|
|
8184
|
+
id: string;
|
|
8185
|
+
state?: SettingStateType;
|
|
8186
|
+
};
|
|
8187
|
+
searchKeyword?: string;
|
|
8188
|
+
} & SettingUICompo;
|
|
8189
|
+
type SettingUICompo = {
|
|
8190
|
+
controls?: SettingUIControl[];
|
|
8191
|
+
iconName?: string;
|
|
8192
|
+
getValueFromSettingID?: string;
|
|
8193
|
+
fixedValue?: string;
|
|
8194
|
+
placeholder?: string;
|
|
8195
|
+
help?: SettingUIHelpType;
|
|
8196
|
+
};
|
|
8197
|
+
type SettingUIMoreSetting = {
|
|
8198
|
+
label?: LabelWithLang;
|
|
8199
|
+
labelAction?: LabelWithLang;
|
|
8200
|
+
controls?: SettingUIControl[];
|
|
8201
|
+
help?: SettingUIHelpType;
|
|
8202
|
+
};
|
|
8203
|
+
type SettingUIToggleGroup = {
|
|
8204
|
+
label?: LabelWithLang;
|
|
8205
|
+
id?: string;
|
|
8206
|
+
controls?: SettingUIControl[];
|
|
8207
|
+
};
|
|
8208
|
+
type SettingUIToggleSettings = {
|
|
8209
|
+
type: 'control' | 'toggleGroup';
|
|
8210
|
+
controls?: SettingUIControl[];
|
|
8211
|
+
isActiveDefault?: boolean;
|
|
8212
|
+
} & SettingUIControl & SettingUIToggleGroup;
|
|
8213
|
+
type SettingUIGroup = {
|
|
8214
|
+
label?: LabelWithLang;
|
|
8215
|
+
message?: string;
|
|
8216
|
+
disableToggle?: boolean;
|
|
8217
|
+
conditionDisplay?: string;
|
|
8218
|
+
conditionEnable?: string;
|
|
8219
|
+
controls?: SettingUIControl[];
|
|
8220
|
+
moreSettings?: SettingUIMoreSetting;
|
|
8221
|
+
toggleSettings?: SettingUIToggleSettings[];
|
|
8222
|
+
help?: SettingUIHelpType;
|
|
8223
|
+
options?: {
|
|
8224
|
+
disableMessage?: string;
|
|
8225
|
+
};
|
|
8226
|
+
};
|
|
8227
|
+
|
|
8228
|
+
type FontWeight<T> = SharedControlType<T> & {
|
|
8229
|
+
type: 'font-weight';
|
|
8230
|
+
};
|
|
8231
|
+
|
|
8232
|
+
type LetterSpacing<T> = SharedControlType<T> & {
|
|
8233
|
+
type: 'letter-spacing';
|
|
8234
|
+
};
|
|
8235
|
+
|
|
8236
|
+
type TextTransform<T> = SharedControlType<T> & {
|
|
8237
|
+
type: 'text-transform';
|
|
8238
|
+
};
|
|
8239
|
+
|
|
8240
|
+
type LineHeight<T> = SharedControlType<T> & {
|
|
8241
|
+
type: 'line-height';
|
|
8242
|
+
};
|
|
8243
|
+
|
|
8244
|
+
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>;
|
|
8064
8245
|
type ControlTriggerAction = {
|
|
8065
8246
|
controlId: string;
|
|
8066
8247
|
newValue?: any;
|
|
@@ -8131,6 +8312,7 @@ type ComponentSetting<P extends BaseProps> = {
|
|
|
8131
8312
|
};
|
|
8132
8313
|
};
|
|
8133
8314
|
ui?: ControlUI[];
|
|
8315
|
+
uiV2?: SettingUIGroup[];
|
|
8134
8316
|
presets?: ComponentPreset[];
|
|
8135
8317
|
locales?: Record<string, any>;
|
|
8136
8318
|
};
|
|
@@ -28415,6 +28597,7 @@ type TypographyProps = {
|
|
|
28415
28597
|
fallbackFontFamily?: string;
|
|
28416
28598
|
textShadow?: ShadowProps;
|
|
28417
28599
|
hasShadowText?: boolean;
|
|
28600
|
+
isCustom?: boolean;
|
|
28418
28601
|
};
|
|
28419
28602
|
type TypographyV2Props = Omit<TypographyProps, 'fontSize' | 'lineHeight'> & {
|
|
28420
28603
|
fontSize?: ObjectDevices<string>;
|
|
@@ -28823,7 +29006,7 @@ type ProductListProviderProps = ProductListContextProps & {
|
|
|
28823
29006
|
declare const ProductListProvider: React.FC<ProductListProviderProps>;
|
|
28824
29007
|
declare const useProductListStore: <U>(selector: (state: ExtractState<StoreApi<ProductListContextProps>>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined) => U;
|
|
28825
29008
|
|
|
28826
|
-
type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
|
|
29009
|
+
type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
|
|
28827
29010
|
collections?: Maybe$1<{
|
|
28828
29011
|
edges: Array<{
|
|
28829
29012
|
node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
|
|
@@ -29187,6 +29370,7 @@ type PublishedThemePagesQueryResponse = {
|
|
|
29187
29370
|
themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
29188
29371
|
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
29189
29372
|
themePageCustomFonts?: Maybe$1<Array<Maybe$1<CustomFont$1>>>;
|
|
29373
|
+
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
29190
29374
|
}>>>;
|
|
29191
29375
|
};
|
|
29192
29376
|
declare const PublishedThemePagesDocument: string;
|
|
@@ -29264,6 +29448,7 @@ type PreviewPageQueryResponse = {
|
|
|
29264
29448
|
pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
|
|
29265
29449
|
themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
29266
29450
|
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
29451
|
+
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
29267
29452
|
}>;
|
|
29268
29453
|
};
|
|
29269
29454
|
declare const PreviewPageDocument: string;
|
|
@@ -29883,6 +30068,15 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
29883
30068
|
'--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
29884
30069
|
'--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
29885
30070
|
'--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
30071
|
+
'--gr'?: csstype.Property.GridRow | undefined;
|
|
30072
|
+
'--hvr-gr'?: csstype.Property.GridRow | undefined;
|
|
30073
|
+
'--focus-gr'?: csstype.Property.GridRow | undefined;
|
|
30074
|
+
'--gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
30075
|
+
'--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
30076
|
+
'--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
30077
|
+
'--gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
30078
|
+
'--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
30079
|
+
'--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
29886
30080
|
'--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
29887
30081
|
'--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
29888
30082
|
'--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
@@ -31387,6 +31581,15 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
31387
31581
|
'--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
31388
31582
|
'--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
31389
31583
|
'--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
31584
|
+
'--gr'?: csstype.Property.GridRow | undefined;
|
|
31585
|
+
'--hvr-gr'?: csstype.Property.GridRow | undefined;
|
|
31586
|
+
'--focus-gr'?: csstype.Property.GridRow | undefined;
|
|
31587
|
+
'--gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
31588
|
+
'--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
31589
|
+
'--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
31590
|
+
'--gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
31591
|
+
'--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
31592
|
+
'--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
31390
31593
|
'--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
31391
31594
|
'--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
31392
31595
|
'--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
@@ -32891,6 +33094,15 @@ declare const filterCornerInStyle: (style?: React.CSSProperties) => {
|
|
|
32891
33094
|
'--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
32892
33095
|
'--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
32893
33096
|
'--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
33097
|
+
'--gr'?: csstype.Property.GridRow | undefined;
|
|
33098
|
+
'--hvr-gr'?: csstype.Property.GridRow | undefined;
|
|
33099
|
+
'--focus-gr'?: csstype.Property.GridRow | undefined;
|
|
33100
|
+
'--gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
33101
|
+
'--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
33102
|
+
'--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
33103
|
+
'--gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
33104
|
+
'--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
33105
|
+
'--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
32894
33106
|
'--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
32895
33107
|
'--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
32896
33108
|
'--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
@@ -34395,6 +34607,15 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
34395
34607
|
'--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
34396
34608
|
'--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
34397
34609
|
'--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
34610
|
+
'--gr'?: csstype.Property.GridRow | undefined;
|
|
34611
|
+
'--hvr-gr'?: csstype.Property.GridRow | undefined;
|
|
34612
|
+
'--focus-gr'?: csstype.Property.GridRow | undefined;
|
|
34613
|
+
'--gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
34614
|
+
'--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
34615
|
+
'--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
34616
|
+
'--gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
34617
|
+
'--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
34618
|
+
'--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
34398
34619
|
'--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
34399
34620
|
'--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
34400
34621
|
'--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
@@ -35670,10 +35891,1525 @@ declare const composeMemo: <T>(fn: () => T, _?: any[]) => T;
|
|
|
35670
35891
|
declare const removeUndefinedValuesFromObject: (obj: Record<string, string>) => Record<string, string>;
|
|
35671
35892
|
|
|
35672
35893
|
declare const parseValueWithUnit: (valueWithUnit: string) => any;
|
|
35673
|
-
declare const getStyleShadow: (shadowStyle: ShadowStyle
|
|
35894
|
+
declare const getStyleShadow: (shadowStyle: ShadowStyle & {
|
|
35895
|
+
screen?: string;
|
|
35896
|
+
}, isActiveState?: boolean) => {
|
|
35674
35897
|
[x: string]: string;
|
|
35675
35898
|
};
|
|
35676
|
-
declare const getStyleShadowState: (shadow?: StateProp<ShadowProps>, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: StateProp<boolean
|
|
35899
|
+
declare const getStyleShadowState: (shadow?: StateProp<ShadowProps>, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: StateProp<boolean>, screen?: string) => React.CSSProperties;
|
|
35900
|
+
declare const getResonsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowStyleApplied, isEnableShadow?: any) => {
|
|
35901
|
+
[x: string]: any;
|
|
35902
|
+
'--ai'?: csstype.Property.AlignItems | undefined;
|
|
35903
|
+
'--hvr-ai'?: csstype.Property.AlignItems | undefined;
|
|
35904
|
+
'--focus-ai'?: csstype.Property.AlignItems | undefined;
|
|
35905
|
+
'--ai-tablet'?: csstype.Property.AlignItems | undefined;
|
|
35906
|
+
'--hvr-ai-tablet'?: csstype.Property.AlignItems | undefined;
|
|
35907
|
+
'--focus-ai-tablet'?: csstype.Property.AlignItems | undefined;
|
|
35908
|
+
'--ai-mobile'?: csstype.Property.AlignItems | undefined;
|
|
35909
|
+
'--hvr-ai-mobile'?: csstype.Property.AlignItems | undefined;
|
|
35910
|
+
'--focus-ai-mobile'?: csstype.Property.AlignItems | undefined;
|
|
35911
|
+
'--aspect'?: csstype.Property.AspectRatio | undefined;
|
|
35912
|
+
'--hvr-aspect'?: csstype.Property.AspectRatio | undefined;
|
|
35913
|
+
'--focus-aspect'?: csstype.Property.AspectRatio | undefined;
|
|
35914
|
+
'--aspect-tablet'?: csstype.Property.AspectRatio | undefined;
|
|
35915
|
+
'--hvr-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
|
|
35916
|
+
'--focus-aspect-tablet'?: csstype.Property.AspectRatio | undefined;
|
|
35917
|
+
'--aspect-mobile'?: csstype.Property.AspectRatio | undefined;
|
|
35918
|
+
'--hvr-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
|
|
35919
|
+
'--focus-aspect-mobile'?: csstype.Property.AspectRatio | undefined;
|
|
35920
|
+
'--bg'?: csstype.Property.Background<string | number> | undefined;
|
|
35921
|
+
'--hvr-bg'?: csstype.Property.Background<string | number> | undefined;
|
|
35922
|
+
'--focus-bg'?: csstype.Property.Background<string | number> | undefined;
|
|
35923
|
+
'--bg-tablet'?: csstype.Property.Background<string | number> | undefined;
|
|
35924
|
+
'--hvr-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
|
|
35925
|
+
'--focus-bg-tablet'?: csstype.Property.Background<string | number> | undefined;
|
|
35926
|
+
'--bg-mobile'?: csstype.Property.Background<string | number> | undefined;
|
|
35927
|
+
'--hvr-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
|
|
35928
|
+
'--focus-bg-mobile'?: csstype.Property.Background<string | number> | undefined;
|
|
35929
|
+
'--bga'?: csstype.Property.BackgroundAttachment | undefined;
|
|
35930
|
+
'--hvr-bga'?: csstype.Property.BackgroundAttachment | undefined;
|
|
35931
|
+
'--focus-bga'?: csstype.Property.BackgroundAttachment | undefined;
|
|
35932
|
+
'--bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
|
|
35933
|
+
'--hvr-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
|
|
35934
|
+
'--focus-bga-tablet'?: csstype.Property.BackgroundAttachment | undefined;
|
|
35935
|
+
'--bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
|
|
35936
|
+
'--hvr-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
|
|
35937
|
+
'--focus-bga-mobile'?: csstype.Property.BackgroundAttachment | undefined;
|
|
35938
|
+
'--bgc'?: csstype.Property.BackgroundColor | undefined;
|
|
35939
|
+
'--hvr-bgc'?: csstype.Property.BackgroundColor | undefined;
|
|
35940
|
+
'--focus-bgc'?: csstype.Property.BackgroundColor | undefined;
|
|
35941
|
+
'--bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
|
|
35942
|
+
'--hvr-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
|
|
35943
|
+
'--focus-bgc-tablet'?: csstype.Property.BackgroundColor | undefined;
|
|
35944
|
+
'--bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
|
|
35945
|
+
'--hvr-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
|
|
35946
|
+
'--focus-bgc-mobile'?: csstype.Property.BackgroundColor | undefined;
|
|
35947
|
+
'--bgi'?: csstype.Property.BackgroundImage | undefined;
|
|
35948
|
+
'--hvr-bgi'?: csstype.Property.BackgroundImage | undefined;
|
|
35949
|
+
'--focus-bgi'?: csstype.Property.BackgroundImage | undefined;
|
|
35950
|
+
'--bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
|
|
35951
|
+
'--hvr-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
|
|
35952
|
+
'--focus-bgi-tablet'?: csstype.Property.BackgroundImage | undefined;
|
|
35953
|
+
'--bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
|
|
35954
|
+
'--hvr-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
|
|
35955
|
+
'--focus-bgi-mobile'?: csstype.Property.BackgroundImage | undefined;
|
|
35956
|
+
'--bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
35957
|
+
'--hvr-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
35958
|
+
'--focus-bgp'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
35959
|
+
'--bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
35960
|
+
'--hvr-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
35961
|
+
'--focus-bgp-tablet'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
35962
|
+
'--bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
35963
|
+
'--hvr-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
35964
|
+
'--focus-bgp-mobile'?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
35965
|
+
'--bgr'?: csstype.Property.BackgroundRepeat | undefined;
|
|
35966
|
+
'--hvr-bgr'?: csstype.Property.BackgroundRepeat | undefined;
|
|
35967
|
+
'--focus-bgr'?: csstype.Property.BackgroundRepeat | undefined;
|
|
35968
|
+
'--bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
|
|
35969
|
+
'--hvr-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
|
|
35970
|
+
'--focus-bgr-tablet'?: csstype.Property.BackgroundRepeat | undefined;
|
|
35971
|
+
'--bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
|
|
35972
|
+
'--hvr-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
|
|
35973
|
+
'--focus-bgr-mobile'?: csstype.Property.BackgroundRepeat | undefined;
|
|
35974
|
+
'--bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
35975
|
+
'--hvr-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
35976
|
+
'--focus-bgs'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
35977
|
+
'--bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
35978
|
+
'--hvr-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
35979
|
+
'--focus-bgs-tablet'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
35980
|
+
'--bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
35981
|
+
'--hvr-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
35982
|
+
'--focus-bgs-mobile'?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
35983
|
+
'--b'?: csstype.Property.Border<string | number> | undefined;
|
|
35984
|
+
'--hvr-b'?: csstype.Property.Border<string | number> | undefined;
|
|
35985
|
+
'--focus-b'?: csstype.Property.Border<string | number> | undefined;
|
|
35986
|
+
'--b-tablet'?: csstype.Property.Border<string | number> | undefined;
|
|
35987
|
+
'--hvr-b-tablet'?: csstype.Property.Border<string | number> | undefined;
|
|
35988
|
+
'--focus-b-tablet'?: csstype.Property.Border<string | number> | undefined;
|
|
35989
|
+
'--b-mobile'?: csstype.Property.Border<string | number> | undefined;
|
|
35990
|
+
'--hvr-b-mobile'?: csstype.Property.Border<string | number> | undefined;
|
|
35991
|
+
'--focus-b-mobile'?: csstype.Property.Border<string | number> | undefined;
|
|
35992
|
+
'--bb'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
35993
|
+
'--hvr-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
35994
|
+
'--focus-bb'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
35995
|
+
'--bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
35996
|
+
'--hvr-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
35997
|
+
'--focus-bb-tablet'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
35998
|
+
'--bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
35999
|
+
'--hvr-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
36000
|
+
'--focus-bb-mobile'?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
36001
|
+
'--bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
36002
|
+
'--hvr-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
36003
|
+
'--focus-bbw'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
36004
|
+
'--bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
36005
|
+
'--hvr-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
36006
|
+
'--focus-bbw-tablet'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
36007
|
+
'--bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
36008
|
+
'--hvr-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
36009
|
+
'--focus-bbw-mobile'?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
36010
|
+
'--bbc'?: csstype.Property.BorderBottomColor | undefined;
|
|
36011
|
+
'--hvr-bbc'?: csstype.Property.BorderBottomColor | undefined;
|
|
36012
|
+
'--focus-bbc'?: csstype.Property.BorderBottomColor | undefined;
|
|
36013
|
+
'--bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
|
|
36014
|
+
'--hvr-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
|
|
36015
|
+
'--focus-bbc-tablet'?: csstype.Property.BorderBottomColor | undefined;
|
|
36016
|
+
'--bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
|
|
36017
|
+
'--hvr-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
|
|
36018
|
+
'--focus-bbc-mobile'?: csstype.Property.BorderBottomColor | undefined;
|
|
36019
|
+
'--bc'?: csstype.Property.BorderColor | undefined;
|
|
36020
|
+
'--hvr-bc'?: csstype.Property.BorderColor | undefined;
|
|
36021
|
+
'--focus-bc'?: csstype.Property.BorderColor | undefined;
|
|
36022
|
+
'--bc-tablet'?: csstype.Property.BorderColor | undefined;
|
|
36023
|
+
'--hvr-bc-tablet'?: csstype.Property.BorderColor | undefined;
|
|
36024
|
+
'--focus-bc-tablet'?: csstype.Property.BorderColor | undefined;
|
|
36025
|
+
'--bc-mobile'?: csstype.Property.BorderColor | undefined;
|
|
36026
|
+
'--hvr-bc-mobile'?: csstype.Property.BorderColor | undefined;
|
|
36027
|
+
'--focus-bc-mobile'?: csstype.Property.BorderColor | undefined;
|
|
36028
|
+
'--bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
36029
|
+
'--hvr-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
36030
|
+
'--focus-bblr'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
36031
|
+
'--bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
36032
|
+
'--hvr-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
36033
|
+
'--focus-bblr-tablet'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
36034
|
+
'--bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
36035
|
+
'--hvr-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
36036
|
+
'--focus-bblr-mobile'?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
36037
|
+
'--bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
36038
|
+
'--hvr-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
36039
|
+
'--focus-bbrr'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
36040
|
+
'--bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
36041
|
+
'--hvr-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
36042
|
+
'--focus-bbrr-tablet'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
36043
|
+
'--bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
36044
|
+
'--hvr-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
36045
|
+
'--focus-bbrr-mobile'?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
36046
|
+
'--bl'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
36047
|
+
'--hvr-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
36048
|
+
'--focus-bl'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
36049
|
+
'--bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
36050
|
+
'--hvr-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
36051
|
+
'--focus-bl-tablet'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
36052
|
+
'--bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
36053
|
+
'--hvr-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
36054
|
+
'--focus-bl-mobile'?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
36055
|
+
'--radius'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
36056
|
+
'--hvr-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
36057
|
+
'--focus-radius'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
36058
|
+
'--radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
36059
|
+
'--hvr-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
36060
|
+
'--focus-radius-tablet'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
36061
|
+
'--radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
36062
|
+
'--hvr-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
36063
|
+
'--focus-radius-mobile'?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
36064
|
+
'--br'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
36065
|
+
'--hvr-br'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
36066
|
+
'--focus-br'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
36067
|
+
'--br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
36068
|
+
'--hvr-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
36069
|
+
'--focus-br-tablet'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
36070
|
+
'--br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
36071
|
+
'--hvr-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
36072
|
+
'--focus-br-mobile'?: csstype.Property.BorderRight<string | number> | undefined;
|
|
36073
|
+
'--bs'?: csstype.Property.BorderStyle | undefined;
|
|
36074
|
+
'--hvr-bs'?: csstype.Property.BorderStyle | undefined;
|
|
36075
|
+
'--focus-bs'?: csstype.Property.BorderStyle | undefined;
|
|
36076
|
+
'--bs-tablet'?: csstype.Property.BorderStyle | undefined;
|
|
36077
|
+
'--hvr-bs-tablet'?: csstype.Property.BorderStyle | undefined;
|
|
36078
|
+
'--focus-bs-tablet'?: csstype.Property.BorderStyle | undefined;
|
|
36079
|
+
'--bs-mobile'?: csstype.Property.BorderStyle | undefined;
|
|
36080
|
+
'--hvr-bs-mobile'?: csstype.Property.BorderStyle | undefined;
|
|
36081
|
+
'--focus-bs-mobile'?: csstype.Property.BorderStyle | undefined;
|
|
36082
|
+
'--bt'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
36083
|
+
'--hvr-bt'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
36084
|
+
'--focus-bt'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
36085
|
+
'--bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
36086
|
+
'--hvr-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
36087
|
+
'--focus-bt-tablet'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
36088
|
+
'--bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
36089
|
+
'--hvr-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
36090
|
+
'--focus-bt-mobile'?: csstype.Property.BorderTop<string | number> | undefined;
|
|
36091
|
+
'--btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
36092
|
+
'--hvr-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
36093
|
+
'--focus-btlr'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
36094
|
+
'--btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
36095
|
+
'--hvr-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
36096
|
+
'--focus-btlr-tablet'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
36097
|
+
'--btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
36098
|
+
'--hvr-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
36099
|
+
'--focus-btlr-mobile'?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
36100
|
+
'--btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
36101
|
+
'--hvr-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
36102
|
+
'--focus-btrr'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
36103
|
+
'--btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
36104
|
+
'--hvr-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
36105
|
+
'--focus-btrr-tablet'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
36106
|
+
'--btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
36107
|
+
'--hvr-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
36108
|
+
'--focus-btrr-mobile'?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
36109
|
+
'--bw'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
36110
|
+
'--hvr-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
36111
|
+
'--focus-bw'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
36112
|
+
'--bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
36113
|
+
'--hvr-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
36114
|
+
'--focus-bw-tablet'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
36115
|
+
'--bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
36116
|
+
'--hvr-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
36117
|
+
'--focus-bw-mobile'?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
36118
|
+
'--bottom'?: csstype.Property.Bottom<string | number> | undefined;
|
|
36119
|
+
'--hvr-bottom'?: csstype.Property.Bottom<string | number> | undefined;
|
|
36120
|
+
'--focus-bottom'?: csstype.Property.Bottom<string | number> | undefined;
|
|
36121
|
+
'--bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
|
|
36122
|
+
'--hvr-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
|
|
36123
|
+
'--focus-bottom-tablet'?: csstype.Property.Bottom<string | number> | undefined;
|
|
36124
|
+
'--bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
|
|
36125
|
+
'--hvr-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
|
|
36126
|
+
'--focus-bottom-mobile'?: csstype.Property.Bottom<string | number> | undefined;
|
|
36127
|
+
'--shadow'?: csstype.Property.BoxShadow | undefined;
|
|
36128
|
+
'--hvr-shadow'?: csstype.Property.BoxShadow | undefined;
|
|
36129
|
+
'--focus-shadow'?: csstype.Property.BoxShadow | undefined;
|
|
36130
|
+
'--shadow-tablet'?: csstype.Property.BoxShadow | undefined;
|
|
36131
|
+
'--hvr-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
|
|
36132
|
+
'--focus-shadow-tablet'?: csstype.Property.BoxShadow | undefined;
|
|
36133
|
+
'--shadow-mobile'?: csstype.Property.BoxShadow | undefined;
|
|
36134
|
+
'--hvr-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
|
|
36135
|
+
'--focus-shadow-mobile'?: csstype.Property.BoxShadow | undefined;
|
|
36136
|
+
'--c'?: csstype.Property.Color | undefined;
|
|
36137
|
+
'--hvr-c'?: csstype.Property.Color | undefined;
|
|
36138
|
+
'--focus-c'?: csstype.Property.Color | undefined;
|
|
36139
|
+
'--c-tablet'?: csstype.Property.Color | undefined;
|
|
36140
|
+
'--hvr-c-tablet'?: csstype.Property.Color | undefined;
|
|
36141
|
+
'--focus-c-tablet'?: csstype.Property.Color | undefined;
|
|
36142
|
+
'--c-mobile'?: csstype.Property.Color | undefined;
|
|
36143
|
+
'--hvr-c-mobile'?: csstype.Property.Color | undefined;
|
|
36144
|
+
'--focus-c-mobile'?: csstype.Property.Color | undefined;
|
|
36145
|
+
'--cg'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
36146
|
+
'--hvr-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
36147
|
+
'--focus-cg'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
36148
|
+
'--cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
36149
|
+
'--hvr-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
36150
|
+
'--focus-cg-tablet'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
36151
|
+
'--cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
36152
|
+
'--hvr-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
36153
|
+
'--focus-cg-mobile'?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
36154
|
+
'--d'?: csstype.Property.Display | undefined;
|
|
36155
|
+
'--hvr-d'?: csstype.Property.Display | undefined;
|
|
36156
|
+
'--focus-d'?: csstype.Property.Display | undefined;
|
|
36157
|
+
'--d-tablet'?: csstype.Property.Display | undefined;
|
|
36158
|
+
'--hvr-d-tablet'?: csstype.Property.Display | undefined;
|
|
36159
|
+
'--focus-d-tablet'?: csstype.Property.Display | undefined;
|
|
36160
|
+
'--d-mobile'?: csstype.Property.Display | undefined;
|
|
36161
|
+
'--hvr-d-mobile'?: csstype.Property.Display | undefined;
|
|
36162
|
+
'--focus-d-mobile'?: csstype.Property.Display | undefined;
|
|
36163
|
+
'--fd'?: csstype.Property.FlexDirection | undefined;
|
|
36164
|
+
'--hvr-fd'?: csstype.Property.FlexDirection | undefined;
|
|
36165
|
+
'--focus-fd'?: csstype.Property.FlexDirection | undefined;
|
|
36166
|
+
'--fd-tablet'?: csstype.Property.FlexDirection | undefined;
|
|
36167
|
+
'--hvr-fd-tablet'?: csstype.Property.FlexDirection | undefined;
|
|
36168
|
+
'--focus-fd-tablet'?: csstype.Property.FlexDirection | undefined;
|
|
36169
|
+
'--fd-mobile'?: csstype.Property.FlexDirection | undefined;
|
|
36170
|
+
'--hvr-fd-mobile'?: csstype.Property.FlexDirection | undefined;
|
|
36171
|
+
'--focus-fd-mobile'?: csstype.Property.FlexDirection | undefined;
|
|
36172
|
+
'--ff'?: csstype.Property.FontFamily | undefined;
|
|
36173
|
+
'--hvr-ff'?: csstype.Property.FontFamily | undefined;
|
|
36174
|
+
'--focus-ff'?: csstype.Property.FontFamily | undefined;
|
|
36175
|
+
'--ff-tablet'?: csstype.Property.FontFamily | undefined;
|
|
36176
|
+
'--hvr-ff-tablet'?: csstype.Property.FontFamily | undefined;
|
|
36177
|
+
'--focus-ff-tablet'?: csstype.Property.FontFamily | undefined;
|
|
36178
|
+
'--ff-mobile'?: csstype.Property.FontFamily | undefined;
|
|
36179
|
+
'--hvr-ff-mobile'?: csstype.Property.FontFamily | undefined;
|
|
36180
|
+
'--focus-ff-mobile'?: csstype.Property.FontFamily | undefined;
|
|
36181
|
+
'--size'?: csstype.Property.FontSize<string | number> | undefined;
|
|
36182
|
+
'--hvr-size'?: csstype.Property.FontSize<string | number> | undefined;
|
|
36183
|
+
'--focus-size'?: csstype.Property.FontSize<string | number> | undefined;
|
|
36184
|
+
'--size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
|
|
36185
|
+
'--hvr-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
|
|
36186
|
+
'--focus-size-tablet'?: csstype.Property.FontSize<string | number> | undefined;
|
|
36187
|
+
'--size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
|
|
36188
|
+
'--hvr-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
|
|
36189
|
+
'--focus-size-mobile'?: csstype.Property.FontSize<string | number> | undefined;
|
|
36190
|
+
'--weight'?: csstype.Property.FontWeight | undefined;
|
|
36191
|
+
'--hvr-weight'?: csstype.Property.FontWeight | undefined;
|
|
36192
|
+
'--focus-weight'?: csstype.Property.FontWeight | undefined;
|
|
36193
|
+
'--weight-tablet'?: csstype.Property.FontWeight | undefined;
|
|
36194
|
+
'--hvr-weight-tablet'?: csstype.Property.FontWeight | undefined;
|
|
36195
|
+
'--focus-weight-tablet'?: csstype.Property.FontWeight | undefined;
|
|
36196
|
+
'--weight-mobile'?: csstype.Property.FontWeight | undefined;
|
|
36197
|
+
'--hvr-weight-mobile'?: csstype.Property.FontWeight | undefined;
|
|
36198
|
+
'--focus-weight-mobile'?: csstype.Property.FontWeight | undefined;
|
|
36199
|
+
'--fs'?: csstype.Property.FontStyle | undefined;
|
|
36200
|
+
'--hvr-fs'?: csstype.Property.FontStyle | undefined;
|
|
36201
|
+
'--focus-fs'?: csstype.Property.FontStyle | undefined;
|
|
36202
|
+
'--fs-tablet'?: csstype.Property.FontStyle | undefined;
|
|
36203
|
+
'--hvr-fs-tablet'?: csstype.Property.FontStyle | undefined;
|
|
36204
|
+
'--focus-fs-tablet'?: csstype.Property.FontStyle | undefined;
|
|
36205
|
+
'--fs-mobile'?: csstype.Property.FontStyle | undefined;
|
|
36206
|
+
'--hvr-fs-mobile'?: csstype.Property.FontStyle | undefined;
|
|
36207
|
+
'--focus-fs-mobile'?: csstype.Property.FontStyle | undefined;
|
|
36208
|
+
'--gg'?: csstype.Property.GridGap<string | number> | undefined;
|
|
36209
|
+
'--hvr-gg'?: csstype.Property.GridGap<string | number> | undefined;
|
|
36210
|
+
'--focus-gg'?: csstype.Property.GridGap<string | number> | undefined;
|
|
36211
|
+
'--gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
|
|
36212
|
+
'--hvr-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
|
|
36213
|
+
'--focus-gg-tablet'?: csstype.Property.GridGap<string | number> | undefined;
|
|
36214
|
+
'--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
36215
|
+
'--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
36216
|
+
'--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
36217
|
+
'--gr'?: csstype.Property.GridRow | undefined;
|
|
36218
|
+
'--hvr-gr'?: csstype.Property.GridRow | undefined;
|
|
36219
|
+
'--focus-gr'?: csstype.Property.GridRow | undefined;
|
|
36220
|
+
'--gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
36221
|
+
'--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
36222
|
+
'--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
36223
|
+
'--gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
36224
|
+
'--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
36225
|
+
'--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
36226
|
+
'--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36227
|
+
'--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36228
|
+
'--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36229
|
+
'--gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36230
|
+
'--hvr-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36231
|
+
'--focus-gtc-tablet'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36232
|
+
'--gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36233
|
+
'--hvr-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36234
|
+
'--focus-gtc-mobile'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36235
|
+
'--gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
36236
|
+
'--hvr-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
36237
|
+
'--focus-gtr'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
36238
|
+
'--gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
36239
|
+
'--hvr-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
36240
|
+
'--focus-gtr-tablet'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
36241
|
+
'--gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
36242
|
+
'--hvr-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
36243
|
+
'--focus-gtr-mobile'?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
36244
|
+
'--h'?: csstype.Property.Height<string | number> | undefined;
|
|
36245
|
+
'--hvr-h'?: csstype.Property.Height<string | number> | undefined;
|
|
36246
|
+
'--focus-h'?: csstype.Property.Height<string | number> | undefined;
|
|
36247
|
+
'--h-tablet'?: csstype.Property.Height<string | number> | undefined;
|
|
36248
|
+
'--hvr-h-tablet'?: csstype.Property.Height<string | number> | undefined;
|
|
36249
|
+
'--focus-h-tablet'?: csstype.Property.Height<string | number> | undefined;
|
|
36250
|
+
'--h-mobile'?: csstype.Property.Height<string | number> | undefined;
|
|
36251
|
+
'--hvr-h-mobile'?: csstype.Property.Height<string | number> | undefined;
|
|
36252
|
+
'--focus-h-mobile'?: csstype.Property.Height<string | number> | undefined;
|
|
36253
|
+
'--jc'?: csstype.Property.JustifyContent | undefined;
|
|
36254
|
+
'--hvr-jc'?: csstype.Property.JustifyContent | undefined;
|
|
36255
|
+
'--focus-jc'?: csstype.Property.JustifyContent | undefined;
|
|
36256
|
+
'--jc-tablet'?: csstype.Property.JustifyContent | undefined;
|
|
36257
|
+
'--hvr-jc-tablet'?: csstype.Property.JustifyContent | undefined;
|
|
36258
|
+
'--focus-jc-tablet'?: csstype.Property.JustifyContent | undefined;
|
|
36259
|
+
'--jc-mobile'?: csstype.Property.JustifyContent | undefined;
|
|
36260
|
+
'--hvr-jc-mobile'?: csstype.Property.JustifyContent | undefined;
|
|
36261
|
+
'--focus-jc-mobile'?: csstype.Property.JustifyContent | undefined;
|
|
36262
|
+
'--left'?: csstype.Property.Left<string | number> | undefined;
|
|
36263
|
+
'--hvr-left'?: csstype.Property.Left<string | number> | undefined;
|
|
36264
|
+
'--focus-left'?: csstype.Property.Left<string | number> | undefined;
|
|
36265
|
+
'--left-tablet'?: csstype.Property.Left<string | number> | undefined;
|
|
36266
|
+
'--hvr-left-tablet'?: csstype.Property.Left<string | number> | undefined;
|
|
36267
|
+
'--focus-left-tablet'?: csstype.Property.Left<string | number> | undefined;
|
|
36268
|
+
'--left-mobile'?: csstype.Property.Left<string | number> | undefined;
|
|
36269
|
+
'--hvr-left-mobile'?: csstype.Property.Left<string | number> | undefined;
|
|
36270
|
+
'--focus-left-mobile'?: csstype.Property.Left<string | number> | undefined;
|
|
36271
|
+
'--ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
36272
|
+
'--hvr-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
36273
|
+
'--focus-ls'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
36274
|
+
'--ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
36275
|
+
'--hvr-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
36276
|
+
'--focus-ls-tablet'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
36277
|
+
'--ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
36278
|
+
'--hvr-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
36279
|
+
'--focus-ls-mobile'?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
36280
|
+
'--line-clamp'?: any;
|
|
36281
|
+
'--hvr-line-clamp'?: any;
|
|
36282
|
+
'--focus-line-clamp'?: any;
|
|
36283
|
+
'--line-clamp-tablet'?: any;
|
|
36284
|
+
'--hvr-line-clamp-tablet'?: any;
|
|
36285
|
+
'--focus-line-clamp-tablet'?: any;
|
|
36286
|
+
'--line-clamp-mobile'?: any;
|
|
36287
|
+
'--hvr-line-clamp-mobile'?: any;
|
|
36288
|
+
'--focus-line-clamp-mobile'?: any;
|
|
36289
|
+
'--lh'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
36290
|
+
'--hvr-lh'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
36291
|
+
'--focus-lh'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
36292
|
+
'--lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
36293
|
+
'--hvr-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
36294
|
+
'--focus-lh-tablet'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
36295
|
+
'--lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
36296
|
+
'--hvr-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
36297
|
+
'--focus-lh-mobile'?: csstype.Property.LineHeight<string | number> | undefined;
|
|
36298
|
+
'--tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
36299
|
+
'--hvr-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
36300
|
+
'--focus-tdt'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
36301
|
+
'--tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
36302
|
+
'--hvr-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
36303
|
+
'--focus-tdt-tablet'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
36304
|
+
'--tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
36305
|
+
'--hvr-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
36306
|
+
'--focus-tdt-mobile'?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
36307
|
+
'--tdc'?: csstype.Property.TextDecorationColor | undefined;
|
|
36308
|
+
'--hvr-tdc'?: csstype.Property.TextDecorationColor | undefined;
|
|
36309
|
+
'--focus-tdc'?: csstype.Property.TextDecorationColor | undefined;
|
|
36310
|
+
'--tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
|
|
36311
|
+
'--hvr-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
|
|
36312
|
+
'--focus-tdc-tablet'?: csstype.Property.TextDecorationColor | undefined;
|
|
36313
|
+
'--tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
|
|
36314
|
+
'--hvr-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
|
|
36315
|
+
'--focus-tdc-mobile'?: csstype.Property.TextDecorationColor | undefined;
|
|
36316
|
+
'--tdl'?: csstype.Property.TextDecorationLine | undefined;
|
|
36317
|
+
'--hvr-tdl'?: csstype.Property.TextDecorationLine | undefined;
|
|
36318
|
+
'--focus-tdl'?: csstype.Property.TextDecorationLine | undefined;
|
|
36319
|
+
'--tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
|
|
36320
|
+
'--hvr-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
|
|
36321
|
+
'--focus-tdl-tablet'?: csstype.Property.TextDecorationLine | undefined;
|
|
36322
|
+
'--tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
|
|
36323
|
+
'--hvr-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
|
|
36324
|
+
'--focus-tdl-mobile'?: csstype.Property.TextDecorationLine | undefined;
|
|
36325
|
+
'--m'?: csstype.Property.Margin<string | number> | undefined;
|
|
36326
|
+
'--hvr-m'?: csstype.Property.Margin<string | number> | undefined;
|
|
36327
|
+
'--focus-m'?: csstype.Property.Margin<string | number> | undefined;
|
|
36328
|
+
'--m-tablet'?: csstype.Property.Margin<string | number> | undefined;
|
|
36329
|
+
'--hvr-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
|
|
36330
|
+
'--focus-m-tablet'?: csstype.Property.Margin<string | number> | undefined;
|
|
36331
|
+
'--m-mobile'?: csstype.Property.Margin<string | number> | undefined;
|
|
36332
|
+
'--hvr-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
|
|
36333
|
+
'--focus-m-mobile'?: csstype.Property.Margin<string | number> | undefined;
|
|
36334
|
+
'--mb'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
36335
|
+
'--hvr-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
36336
|
+
'--focus-mb'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
36337
|
+
'--mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
36338
|
+
'--hvr-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
36339
|
+
'--focus-mb-tablet'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
36340
|
+
'--mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
36341
|
+
'--hvr-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
36342
|
+
'--focus-mb-mobile'?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
36343
|
+
'--ml'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
36344
|
+
'--hvr-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
36345
|
+
'--focus-ml'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
36346
|
+
'--ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
36347
|
+
'--hvr-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
36348
|
+
'--focus-ml-tablet'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
36349
|
+
'--ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
36350
|
+
'--hvr-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
36351
|
+
'--focus-ml-mobile'?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
36352
|
+
'--mr'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
36353
|
+
'--hvr-mr'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
36354
|
+
'--focus-mr'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
36355
|
+
'--mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
36356
|
+
'--hvr-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
36357
|
+
'--focus-mr-tablet'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
36358
|
+
'--mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
36359
|
+
'--hvr-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
36360
|
+
'--focus-mr-mobile'?: csstype.Property.MarginRight<string | number> | undefined;
|
|
36361
|
+
'--mt'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
36362
|
+
'--hvr-mt'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
36363
|
+
'--focus-mt'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
36364
|
+
'--mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
36365
|
+
'--hvr-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
36366
|
+
'--focus-mt-tablet'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
36367
|
+
'--mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
36368
|
+
'--hvr-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
36369
|
+
'--focus-mt-mobile'?: csstype.Property.MarginTop<string | number> | undefined;
|
|
36370
|
+
'--maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
36371
|
+
'--hvr-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
36372
|
+
'--focus-maxh'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
36373
|
+
'--maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
36374
|
+
'--hvr-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
36375
|
+
'--focus-maxh-tablet'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
36376
|
+
'--maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
36377
|
+
'--hvr-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
36378
|
+
'--focus-maxh-mobile'?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
36379
|
+
'--maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
36380
|
+
'--hvr-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
36381
|
+
'--focus-maxw'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
36382
|
+
'--maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
36383
|
+
'--hvr-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
36384
|
+
'--focus-maxw-tablet'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
36385
|
+
'--maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
36386
|
+
'--hvr-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
36387
|
+
'--focus-maxw-mobile'?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
36388
|
+
'--minh'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
36389
|
+
'--hvr-minh'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
36390
|
+
'--focus-minh'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
36391
|
+
'--minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
36392
|
+
'--hvr-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
36393
|
+
'--focus-minh-tablet'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
36394
|
+
'--minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
36395
|
+
'--hvr-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
36396
|
+
'--focus-minh-mobile'?: csstype.Property.MinHeight<string | number> | undefined;
|
|
36397
|
+
'--minw'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
36398
|
+
'--hvr-minw'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
36399
|
+
'--focus-minw'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
36400
|
+
'--minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
36401
|
+
'--hvr-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
36402
|
+
'--focus-minw-tablet'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
36403
|
+
'--minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
36404
|
+
'--hvr-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
36405
|
+
'--focus-minw-mobile'?: csstype.Property.MinWidth<string | number> | undefined;
|
|
36406
|
+
'--objf'?: csstype.Property.ObjectFit | undefined;
|
|
36407
|
+
'--hvr-objf'?: csstype.Property.ObjectFit | undefined;
|
|
36408
|
+
'--focus-objf'?: csstype.Property.ObjectFit | undefined;
|
|
36409
|
+
'--objf-tablet'?: csstype.Property.ObjectFit | undefined;
|
|
36410
|
+
'--hvr-objf-tablet'?: csstype.Property.ObjectFit | undefined;
|
|
36411
|
+
'--focus-objf-tablet'?: csstype.Property.ObjectFit | undefined;
|
|
36412
|
+
'--objf-mobile'?: csstype.Property.ObjectFit | undefined;
|
|
36413
|
+
'--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
|
|
36414
|
+
'--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
|
|
36415
|
+
'--op'?: csstype.Property.Opacity | undefined;
|
|
36416
|
+
'--hvr-op'?: csstype.Property.Opacity | undefined;
|
|
36417
|
+
'--focus-op'?: csstype.Property.Opacity | undefined;
|
|
36418
|
+
'--op-tablet'?: csstype.Property.Opacity | undefined;
|
|
36419
|
+
'--hvr-op-tablet'?: csstype.Property.Opacity | undefined;
|
|
36420
|
+
'--focus-op-tablet'?: csstype.Property.Opacity | undefined;
|
|
36421
|
+
'--op-mobile'?: csstype.Property.Opacity | undefined;
|
|
36422
|
+
'--hvr-op-mobile'?: csstype.Property.Opacity | undefined;
|
|
36423
|
+
'--focus-op-mobile'?: csstype.Property.Opacity | undefined;
|
|
36424
|
+
'--o'?: csstype.Property.Order | undefined;
|
|
36425
|
+
'--hvr-o'?: csstype.Property.Order | undefined;
|
|
36426
|
+
'--focus-o'?: csstype.Property.Order | undefined;
|
|
36427
|
+
'--o-tablet'?: csstype.Property.Order | undefined;
|
|
36428
|
+
'--hvr-o-tablet'?: csstype.Property.Order | undefined;
|
|
36429
|
+
'--focus-o-tablet'?: csstype.Property.Order | undefined;
|
|
36430
|
+
'--o-mobile'?: csstype.Property.Order | undefined;
|
|
36431
|
+
'--hvr-o-mobile'?: csstype.Property.Order | undefined;
|
|
36432
|
+
'--focus-o-mobile'?: csstype.Property.Order | undefined;
|
|
36433
|
+
'--pc'?: csstype.Property.PlaceContent | undefined;
|
|
36434
|
+
'--hvr-pc'?: csstype.Property.PlaceContent | undefined;
|
|
36435
|
+
'--focus-pc'?: csstype.Property.PlaceContent | undefined;
|
|
36436
|
+
'--pc-tablet'?: csstype.Property.PlaceContent | undefined;
|
|
36437
|
+
'--hvr-pc-tablet'?: csstype.Property.PlaceContent | undefined;
|
|
36438
|
+
'--focus-pc-tablet'?: csstype.Property.PlaceContent | undefined;
|
|
36439
|
+
'--pc-mobile'?: csstype.Property.PlaceContent | undefined;
|
|
36440
|
+
'--hvr-pc-mobile'?: csstype.Property.PlaceContent | undefined;
|
|
36441
|
+
'--focus-pc-mobile'?: csstype.Property.PlaceContent | undefined;
|
|
36442
|
+
'--p'?: csstype.Property.Padding<string | number> | undefined;
|
|
36443
|
+
'--hvr-p'?: csstype.Property.Padding<string | number> | undefined;
|
|
36444
|
+
'--focus-p'?: csstype.Property.Padding<string | number> | undefined;
|
|
36445
|
+
'--p-tablet'?: csstype.Property.Padding<string | number> | undefined;
|
|
36446
|
+
'--hvr-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
|
|
36447
|
+
'--focus-p-tablet'?: csstype.Property.Padding<string | number> | undefined;
|
|
36448
|
+
'--p-mobile'?: csstype.Property.Padding<string | number> | undefined;
|
|
36449
|
+
'--hvr-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
|
|
36450
|
+
'--focus-p-mobile'?: csstype.Property.Padding<string | number> | undefined;
|
|
36451
|
+
'--pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
36452
|
+
'--hvr-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
36453
|
+
'--focus-pb'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
36454
|
+
'--pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
36455
|
+
'--hvr-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
36456
|
+
'--focus-pb-tablet'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
36457
|
+
'--pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
36458
|
+
'--hvr-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
36459
|
+
'--focus-pb-mobile'?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
36460
|
+
'--pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
36461
|
+
'--hvr-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
36462
|
+
'--focus-pl'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
36463
|
+
'--pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
36464
|
+
'--hvr-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
36465
|
+
'--focus-pl-tablet'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
36466
|
+
'--pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
36467
|
+
'--hvr-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
36468
|
+
'--focus-pl-mobile'?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
36469
|
+
'--pr'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
36470
|
+
'--hvr-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
36471
|
+
'--focus-pr'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
36472
|
+
'--pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
36473
|
+
'--hvr-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
36474
|
+
'--focus-pr-tablet'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
36475
|
+
'--pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
36476
|
+
'--hvr-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
36477
|
+
'--focus-pr-mobile'?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
36478
|
+
'--pt'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
36479
|
+
'--hvr-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
36480
|
+
'--focus-pt'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
36481
|
+
'--pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
36482
|
+
'--hvr-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
36483
|
+
'--focus-pt-tablet'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
36484
|
+
'--pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
36485
|
+
'--hvr-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
36486
|
+
'--focus-pt-mobile'?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
36487
|
+
'--pe'?: csstype.Property.PointerEvents | undefined;
|
|
36488
|
+
'--hvr-pe'?: csstype.Property.PointerEvents | undefined;
|
|
36489
|
+
'--focus-pe'?: csstype.Property.PointerEvents | undefined;
|
|
36490
|
+
'--pe-tablet'?: csstype.Property.PointerEvents | undefined;
|
|
36491
|
+
'--hvr-pe-tablet'?: csstype.Property.PointerEvents | undefined;
|
|
36492
|
+
'--focus-pe-tablet'?: csstype.Property.PointerEvents | undefined;
|
|
36493
|
+
'--pe-mobile'?: csstype.Property.PointerEvents | undefined;
|
|
36494
|
+
'--hvr-pe-mobile'?: csstype.Property.PointerEvents | undefined;
|
|
36495
|
+
'--focus-pe-mobile'?: csstype.Property.PointerEvents | undefined;
|
|
36496
|
+
'--pos'?: csstype.Property.Position | undefined;
|
|
36497
|
+
'--hvr-pos'?: csstype.Property.Position | undefined;
|
|
36498
|
+
'--focus-pos'?: csstype.Property.Position | undefined;
|
|
36499
|
+
'--pos-tablet'?: csstype.Property.Position | undefined;
|
|
36500
|
+
'--hvr-pos-tablet'?: csstype.Property.Position | undefined;
|
|
36501
|
+
'--focus-pos-tablet'?: csstype.Property.Position | undefined;
|
|
36502
|
+
'--pos-mobile'?: csstype.Property.Position | undefined;
|
|
36503
|
+
'--hvr-pos-mobile'?: csstype.Property.Position | undefined;
|
|
36504
|
+
'--focus-pos-mobile'?: csstype.Property.Position | undefined;
|
|
36505
|
+
'--right'?: csstype.Property.Right<string | number> | undefined;
|
|
36506
|
+
'--hvr-right'?: csstype.Property.Right<string | number> | undefined;
|
|
36507
|
+
'--focus-right'?: csstype.Property.Right<string | number> | undefined;
|
|
36508
|
+
'--right-tablet'?: csstype.Property.Right<string | number> | undefined;
|
|
36509
|
+
'--hvr-right-tablet'?: csstype.Property.Right<string | number> | undefined;
|
|
36510
|
+
'--focus-right-tablet'?: csstype.Property.Right<string | number> | undefined;
|
|
36511
|
+
'--right-mobile'?: csstype.Property.Right<string | number> | undefined;
|
|
36512
|
+
'--hvr-right-mobile'?: csstype.Property.Right<string | number> | undefined;
|
|
36513
|
+
'--focus-right-mobile'?: csstype.Property.Right<string | number> | undefined;
|
|
36514
|
+
'--rg'?: csstype.Property.RowGap<string | number> | undefined;
|
|
36515
|
+
'--hvr-rg'?: csstype.Property.RowGap<string | number> | undefined;
|
|
36516
|
+
'--focus-rg'?: csstype.Property.RowGap<string | number> | undefined;
|
|
36517
|
+
'--rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
|
|
36518
|
+
'--hvr-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
|
|
36519
|
+
'--focus-rg-tablet'?: csstype.Property.RowGap<string | number> | undefined;
|
|
36520
|
+
'--rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
|
|
36521
|
+
'--hvr-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
|
|
36522
|
+
'--focus-rg-mobile'?: csstype.Property.RowGap<string | number> | undefined;
|
|
36523
|
+
'--ta'?: csstype.Property.TextAlign | undefined;
|
|
36524
|
+
'--hvr-ta'?: csstype.Property.TextAlign | undefined;
|
|
36525
|
+
'--focus-ta'?: csstype.Property.TextAlign | undefined;
|
|
36526
|
+
'--ta-tablet'?: csstype.Property.TextAlign | undefined;
|
|
36527
|
+
'--hvr-ta-tablet'?: csstype.Property.TextAlign | undefined;
|
|
36528
|
+
'--focus-ta-tablet'?: csstype.Property.TextAlign | undefined;
|
|
36529
|
+
'--ta-mobile'?: csstype.Property.TextAlign | undefined;
|
|
36530
|
+
'--hvr-ta-mobile'?: csstype.Property.TextAlign | undefined;
|
|
36531
|
+
'--focus-ta-mobile'?: csstype.Property.TextAlign | undefined;
|
|
36532
|
+
'--ts'?: csstype.Property.TextShadow | undefined;
|
|
36533
|
+
'--hvr-ts'?: csstype.Property.TextShadow | undefined;
|
|
36534
|
+
'--focus-ts'?: csstype.Property.TextShadow | undefined;
|
|
36535
|
+
'--ts-tablet'?: csstype.Property.TextShadow | undefined;
|
|
36536
|
+
'--hvr-ts-tablet'?: csstype.Property.TextShadow | undefined;
|
|
36537
|
+
'--focus-ts-tablet'?: csstype.Property.TextShadow | undefined;
|
|
36538
|
+
'--ts-mobile'?: csstype.Property.TextShadow | undefined;
|
|
36539
|
+
'--hvr-ts-mobile'?: csstype.Property.TextShadow | undefined;
|
|
36540
|
+
'--focus-ts-mobile'?: csstype.Property.TextShadow | undefined;
|
|
36541
|
+
'--tt'?: csstype.Property.TextTransform | undefined;
|
|
36542
|
+
'--hvr-tt'?: csstype.Property.TextTransform | undefined;
|
|
36543
|
+
'--focus-tt'?: csstype.Property.TextTransform | undefined;
|
|
36544
|
+
'--tt-tablet'?: csstype.Property.TextTransform | undefined;
|
|
36545
|
+
'--hvr-tt-tablet'?: csstype.Property.TextTransform | undefined;
|
|
36546
|
+
'--focus-tt-tablet'?: csstype.Property.TextTransform | undefined;
|
|
36547
|
+
'--tt-mobile'?: csstype.Property.TextTransform | undefined;
|
|
36548
|
+
'--hvr-tt-mobile'?: csstype.Property.TextTransform | undefined;
|
|
36549
|
+
'--focus-tt-mobile'?: csstype.Property.TextTransform | undefined;
|
|
36550
|
+
'--top'?: csstype.Property.Top<string | number> | undefined;
|
|
36551
|
+
'--hvr-top'?: csstype.Property.Top<string | number> | undefined;
|
|
36552
|
+
'--focus-top'?: csstype.Property.Top<string | number> | undefined;
|
|
36553
|
+
'--top-tablet'?: csstype.Property.Top<string | number> | undefined;
|
|
36554
|
+
'--hvr-top-tablet'?: csstype.Property.Top<string | number> | undefined;
|
|
36555
|
+
'--focus-top-tablet'?: csstype.Property.Top<string | number> | undefined;
|
|
36556
|
+
'--top-mobile'?: csstype.Property.Top<string | number> | undefined;
|
|
36557
|
+
'--hvr-top-mobile'?: csstype.Property.Top<string | number> | undefined;
|
|
36558
|
+
'--focus-top-mobile'?: csstype.Property.Top<string | number> | undefined;
|
|
36559
|
+
'--t'?: csstype.Property.Transform | undefined;
|
|
36560
|
+
'--hvr-t'?: csstype.Property.Transform | undefined;
|
|
36561
|
+
'--focus-t'?: csstype.Property.Transform | undefined;
|
|
36562
|
+
'--t-tablet'?: csstype.Property.Transform | undefined;
|
|
36563
|
+
'--hvr-t-tablet'?: csstype.Property.Transform | undefined;
|
|
36564
|
+
'--focus-t-tablet'?: csstype.Property.Transform | undefined;
|
|
36565
|
+
'--t-mobile'?: csstype.Property.Transform | undefined;
|
|
36566
|
+
'--hvr-t-mobile'?: csstype.Property.Transform | undefined;
|
|
36567
|
+
'--focus-t-mobile'?: csstype.Property.Transform | undefined;
|
|
36568
|
+
'--v'?: csstype.Property.Visibility | undefined;
|
|
36569
|
+
'--hvr-v'?: csstype.Property.Visibility | undefined;
|
|
36570
|
+
'--focus-v'?: csstype.Property.Visibility | undefined;
|
|
36571
|
+
'--v-tablet'?: csstype.Property.Visibility | undefined;
|
|
36572
|
+
'--hvr-v-tablet'?: csstype.Property.Visibility | undefined;
|
|
36573
|
+
'--focus-v-tablet'?: csstype.Property.Visibility | undefined;
|
|
36574
|
+
'--v-mobile'?: csstype.Property.Visibility | undefined;
|
|
36575
|
+
'--hvr-v-mobile'?: csstype.Property.Visibility | undefined;
|
|
36576
|
+
'--focus-v-mobile'?: csstype.Property.Visibility | undefined;
|
|
36577
|
+
'--w'?: csstype.Property.Width<string | number> | undefined;
|
|
36578
|
+
'--hvr-w'?: csstype.Property.Width<string | number> | undefined;
|
|
36579
|
+
'--focus-w'?: csstype.Property.Width<string | number> | undefined;
|
|
36580
|
+
'--w-tablet'?: csstype.Property.Width<string | number> | undefined;
|
|
36581
|
+
'--hvr-w-tablet'?: csstype.Property.Width<string | number> | undefined;
|
|
36582
|
+
'--focus-w-tablet'?: csstype.Property.Width<string | number> | undefined;
|
|
36583
|
+
'--w-mobile'?: csstype.Property.Width<string | number> | undefined;
|
|
36584
|
+
'--hvr-w-mobile'?: csstype.Property.Width<string | number> | undefined;
|
|
36585
|
+
'--focus-w-mobile'?: csstype.Property.Width<string | number> | undefined;
|
|
36586
|
+
'--z'?: csstype.Property.ZIndex | undefined;
|
|
36587
|
+
'--hvr-z'?: csstype.Property.ZIndex | undefined;
|
|
36588
|
+
'--focus-z'?: csstype.Property.ZIndex | undefined;
|
|
36589
|
+
'--z-tablet'?: csstype.Property.ZIndex | undefined;
|
|
36590
|
+
'--hvr-z-tablet'?: csstype.Property.ZIndex | undefined;
|
|
36591
|
+
'--focus-z-tablet'?: csstype.Property.ZIndex | undefined;
|
|
36592
|
+
'--z-mobile'?: csstype.Property.ZIndex | undefined;
|
|
36593
|
+
'--hvr-z-mobile'?: csstype.Property.ZIndex | undefined;
|
|
36594
|
+
'--focus-z-mobile'?: csstype.Property.ZIndex | undefined;
|
|
36595
|
+
'--wm'?: csstype.Property.WritingMode | undefined;
|
|
36596
|
+
'--hvr-wm'?: csstype.Property.WritingMode | undefined;
|
|
36597
|
+
'--focus-wm'?: csstype.Property.WritingMode | undefined;
|
|
36598
|
+
'--wm-tablet'?: csstype.Property.WritingMode | undefined;
|
|
36599
|
+
'--hvr-wm-tablet'?: csstype.Property.WritingMode | undefined;
|
|
36600
|
+
'--focus-wm-tablet'?: csstype.Property.WritingMode | undefined;
|
|
36601
|
+
'--wm-mobile'?: csstype.Property.WritingMode | undefined;
|
|
36602
|
+
'--hvr-wm-mobile'?: csstype.Property.WritingMode | undefined;
|
|
36603
|
+
'--focus-wm-mobile'?: csstype.Property.WritingMode | undefined;
|
|
36604
|
+
accentColor?: csstype.Property.AccentColor | undefined;
|
|
36605
|
+
alignContent?: csstype.Property.AlignContent | undefined;
|
|
36606
|
+
alignItems?: csstype.Property.AlignItems | undefined;
|
|
36607
|
+
alignSelf?: csstype.Property.AlignSelf | undefined;
|
|
36608
|
+
alignTracks?: csstype.Property.AlignTracks | undefined;
|
|
36609
|
+
animationComposition?: csstype.Property.AnimationComposition | undefined;
|
|
36610
|
+
animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
36611
|
+
animationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
36612
|
+
animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
36613
|
+
animationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
36614
|
+
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
36615
|
+
animationName?: csstype.Property.AnimationName | undefined;
|
|
36616
|
+
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
36617
|
+
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
36618
|
+
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
36619
|
+
appearance?: csstype.Property.Appearance | undefined;
|
|
36620
|
+
aspectRatio?: csstype.Property.AspectRatio | undefined;
|
|
36621
|
+
backdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
36622
|
+
backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
36623
|
+
backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
|
|
36624
|
+
backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
|
|
36625
|
+
backgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
36626
|
+
backgroundColor?: csstype.Property.BackgroundColor | undefined;
|
|
36627
|
+
backgroundImage?: csstype.Property.BackgroundImage | undefined;
|
|
36628
|
+
backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
36629
|
+
backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
|
|
36630
|
+
backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
|
|
36631
|
+
backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
|
|
36632
|
+
backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
36633
|
+
blockOverflow?: csstype.Property.BlockOverflow | undefined;
|
|
36634
|
+
blockSize?: csstype.Property.BlockSize<string | number> | undefined;
|
|
36635
|
+
borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
|
|
36636
|
+
borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
|
|
36637
|
+
borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
|
|
36638
|
+
borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
|
|
36639
|
+
borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
|
|
36640
|
+
borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
|
|
36641
|
+
borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
|
|
36642
|
+
borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
|
|
36643
|
+
borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
|
|
36644
|
+
borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
|
|
36645
|
+
borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
36646
|
+
borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
36647
|
+
borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
|
|
36648
|
+
borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
|
|
36649
|
+
borderCollapse?: csstype.Property.BorderCollapse | undefined;
|
|
36650
|
+
borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
|
|
36651
|
+
borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
|
|
36652
|
+
borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
|
|
36653
|
+
borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
|
|
36654
|
+
borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
36655
|
+
borderImageSource?: csstype.Property.BorderImageSource | undefined;
|
|
36656
|
+
borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
|
|
36657
|
+
borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
|
|
36658
|
+
borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
36659
|
+
borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
36660
|
+
borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
36661
|
+
borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
36662
|
+
borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
36663
|
+
borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
|
|
36664
|
+
borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
|
|
36665
|
+
borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
|
|
36666
|
+
borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
|
|
36667
|
+
borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
|
|
36668
|
+
borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
|
|
36669
|
+
borderRightColor?: csstype.Property.BorderRightColor | undefined;
|
|
36670
|
+
borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
|
|
36671
|
+
borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
|
|
36672
|
+
borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
|
|
36673
|
+
borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
|
|
36674
|
+
borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
|
|
36675
|
+
borderTopColor?: csstype.Property.BorderTopColor | undefined;
|
|
36676
|
+
borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
36677
|
+
borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
36678
|
+
borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
|
|
36679
|
+
borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
|
|
36680
|
+
bottom?: csstype.Property.Bottom<string | number> | undefined;
|
|
36681
|
+
boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
36682
|
+
boxShadow?: csstype.Property.BoxShadow | undefined;
|
|
36683
|
+
boxSizing?: csstype.Property.BoxSizing | undefined;
|
|
36684
|
+
breakAfter?: csstype.Property.BreakAfter | undefined;
|
|
36685
|
+
breakBefore?: csstype.Property.BreakBefore | undefined;
|
|
36686
|
+
breakInside?: csstype.Property.BreakInside | undefined;
|
|
36687
|
+
captionSide?: csstype.Property.CaptionSide | undefined;
|
|
36688
|
+
caretColor?: csstype.Property.CaretColor | undefined;
|
|
36689
|
+
caretShape?: csstype.Property.CaretShape | undefined;
|
|
36690
|
+
clear?: csstype.Property.Clear | undefined;
|
|
36691
|
+
clipPath?: csstype.Property.ClipPath | undefined;
|
|
36692
|
+
color?: csstype.Property.Color | undefined;
|
|
36693
|
+
colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
36694
|
+
colorScheme?: csstype.Property.ColorScheme | undefined;
|
|
36695
|
+
columnCount?: csstype.Property.ColumnCount | undefined;
|
|
36696
|
+
columnFill?: csstype.Property.ColumnFill | undefined;
|
|
36697
|
+
columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
|
|
36698
|
+
columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
36699
|
+
columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
36700
|
+
columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
36701
|
+
columnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
36702
|
+
columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
|
|
36703
|
+
contain?: csstype.Property.Contain | undefined;
|
|
36704
|
+
containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
36705
|
+
containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
36706
|
+
containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
36707
|
+
containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
36708
|
+
containerName?: csstype.Property.ContainerName | undefined;
|
|
36709
|
+
containerType?: csstype.Property.ContainerType | undefined;
|
|
36710
|
+
content?: csstype.Property.Content | undefined;
|
|
36711
|
+
contentVisibility?: csstype.Property.ContentVisibility | undefined;
|
|
36712
|
+
counterIncrement?: csstype.Property.CounterIncrement | undefined;
|
|
36713
|
+
counterReset?: csstype.Property.CounterReset | undefined;
|
|
36714
|
+
counterSet?: csstype.Property.CounterSet | undefined;
|
|
36715
|
+
cursor?: csstype.Property.Cursor | undefined;
|
|
36716
|
+
direction?: csstype.Property.Direction | undefined;
|
|
36717
|
+
display?: csstype.Property.Display | undefined;
|
|
36718
|
+
emptyCells?: csstype.Property.EmptyCells | undefined;
|
|
36719
|
+
filter?: csstype.Property.Filter | undefined;
|
|
36720
|
+
flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
36721
|
+
flexDirection?: csstype.Property.FlexDirection | undefined;
|
|
36722
|
+
flexGrow?: csstype.Property.FlexGrow | undefined;
|
|
36723
|
+
flexShrink?: csstype.Property.FlexShrink | undefined;
|
|
36724
|
+
flexWrap?: csstype.Property.FlexWrap | undefined;
|
|
36725
|
+
float?: csstype.Property.Float | undefined;
|
|
36726
|
+
fontFamily?: csstype.Property.FontFamily | undefined;
|
|
36727
|
+
fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
36728
|
+
fontKerning?: csstype.Property.FontKerning | undefined;
|
|
36729
|
+
fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
36730
|
+
fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
|
|
36731
|
+
fontPalette?: csstype.Property.FontPalette | undefined;
|
|
36732
|
+
fontSize?: csstype.Property.FontSize<string | number> | undefined;
|
|
36733
|
+
fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
|
|
36734
|
+
fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
36735
|
+
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
36736
|
+
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
36737
|
+
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
36738
|
+
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
36739
|
+
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
36740
|
+
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
36741
|
+
fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
|
|
36742
|
+
fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
|
|
36743
|
+
fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
36744
|
+
fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
|
|
36745
|
+
fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
|
|
36746
|
+
fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
|
|
36747
|
+
fontWeight?: csstype.Property.FontWeight | undefined;
|
|
36748
|
+
forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
|
|
36749
|
+
gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
|
|
36750
|
+
gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
|
|
36751
|
+
gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
|
|
36752
|
+
gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
|
|
36753
|
+
gridColumnStart?: csstype.Property.GridColumnStart | undefined;
|
|
36754
|
+
gridRowEnd?: csstype.Property.GridRowEnd | undefined;
|
|
36755
|
+
gridRowStart?: csstype.Property.GridRowStart | undefined;
|
|
36756
|
+
gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
|
|
36757
|
+
gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36758
|
+
gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
|
|
36759
|
+
hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
|
|
36760
|
+
height?: csstype.Property.Height<string | number> | undefined;
|
|
36761
|
+
hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
36762
|
+
hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
|
|
36763
|
+
hyphens?: csstype.Property.Hyphens | undefined;
|
|
36764
|
+
imageOrientation?: csstype.Property.ImageOrientation | undefined;
|
|
36765
|
+
imageRendering?: csstype.Property.ImageRendering | undefined;
|
|
36766
|
+
imageResolution?: csstype.Property.ImageResolution | undefined;
|
|
36767
|
+
initialLetter?: csstype.Property.InitialLetter | undefined;
|
|
36768
|
+
inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
|
|
36769
|
+
inputSecurity?: csstype.Property.InputSecurity | undefined;
|
|
36770
|
+
insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
36771
|
+
insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
36772
|
+
insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
36773
|
+
insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
36774
|
+
isolation?: csstype.Property.Isolation | undefined;
|
|
36775
|
+
justifyContent?: csstype.Property.JustifyContent | undefined;
|
|
36776
|
+
justifyItems?: csstype.Property.JustifyItems | undefined;
|
|
36777
|
+
justifySelf?: csstype.Property.JustifySelf | undefined;
|
|
36778
|
+
justifyTracks?: csstype.Property.JustifyTracks | undefined;
|
|
36779
|
+
left?: csstype.Property.Left<string | number> | undefined;
|
|
36780
|
+
letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
|
|
36781
|
+
lineBreak?: csstype.Property.LineBreak | undefined;
|
|
36782
|
+
lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
|
|
36783
|
+
lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
|
|
36784
|
+
listStyleImage?: csstype.Property.ListStyleImage | undefined;
|
|
36785
|
+
listStylePosition?: csstype.Property.ListStylePosition | undefined;
|
|
36786
|
+
listStyleType?: csstype.Property.ListStyleType | undefined;
|
|
36787
|
+
marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
|
|
36788
|
+
marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
|
|
36789
|
+
marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
|
|
36790
|
+
marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
36791
|
+
marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
36792
|
+
marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
|
|
36793
|
+
marginRight?: csstype.Property.MarginRight<string | number> | undefined;
|
|
36794
|
+
marginTop?: csstype.Property.MarginTop<string | number> | undefined;
|
|
36795
|
+
marginTrim?: csstype.Property.MarginTrim | undefined;
|
|
36796
|
+
maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
|
|
36797
|
+
maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
36798
|
+
maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
36799
|
+
maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
36800
|
+
maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
|
|
36801
|
+
maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
|
|
36802
|
+
maskClip?: csstype.Property.MaskClip | undefined;
|
|
36803
|
+
maskComposite?: csstype.Property.MaskComposite | undefined;
|
|
36804
|
+
maskImage?: csstype.Property.MaskImage | undefined;
|
|
36805
|
+
maskMode?: csstype.Property.MaskMode | undefined;
|
|
36806
|
+
maskOrigin?: csstype.Property.MaskOrigin | undefined;
|
|
36807
|
+
maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
|
|
36808
|
+
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
36809
|
+
maskSize?: csstype.Property.MaskSize<string | number> | undefined;
|
|
36810
|
+
maskType?: csstype.Property.MaskType | undefined;
|
|
36811
|
+
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
36812
|
+
mathShift?: csstype.Property.MathShift | undefined;
|
|
36813
|
+
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
36814
|
+
maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
|
|
36815
|
+
maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
|
|
36816
|
+
maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
|
|
36817
|
+
maxLines?: csstype.Property.MaxLines | undefined;
|
|
36818
|
+
maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
|
|
36819
|
+
minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
|
|
36820
|
+
minHeight?: csstype.Property.MinHeight<string | number> | undefined;
|
|
36821
|
+
minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
|
|
36822
|
+
minWidth?: csstype.Property.MinWidth<string | number> | undefined;
|
|
36823
|
+
mixBlendMode?: csstype.Property.MixBlendMode | undefined;
|
|
36824
|
+
motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
36825
|
+
motionPath?: csstype.Property.OffsetPath | undefined;
|
|
36826
|
+
motionRotation?: csstype.Property.OffsetRotate | undefined;
|
|
36827
|
+
objectFit?: csstype.Property.ObjectFit | undefined;
|
|
36828
|
+
objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
36829
|
+
offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
|
|
36830
|
+
offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
|
|
36831
|
+
offsetPath?: csstype.Property.OffsetPath | undefined;
|
|
36832
|
+
offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
|
|
36833
|
+
offsetRotate?: csstype.Property.OffsetRotate | undefined;
|
|
36834
|
+
offsetRotation?: csstype.Property.OffsetRotate | undefined;
|
|
36835
|
+
opacity?: csstype.Property.Opacity | undefined;
|
|
36836
|
+
order?: csstype.Property.Order | undefined;
|
|
36837
|
+
orphans?: csstype.Property.Orphans | undefined;
|
|
36838
|
+
outlineColor?: csstype.Property.OutlineColor | undefined;
|
|
36839
|
+
outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
|
|
36840
|
+
outlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
36841
|
+
outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
36842
|
+
overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
|
|
36843
|
+
overflowBlock?: csstype.Property.OverflowBlock | undefined;
|
|
36844
|
+
overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
|
|
36845
|
+
overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
|
|
36846
|
+
overflowInline?: csstype.Property.OverflowInline | undefined;
|
|
36847
|
+
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
36848
|
+
overflowX?: csstype.Property.OverflowX | undefined;
|
|
36849
|
+
overflowY?: csstype.Property.OverflowY | undefined;
|
|
36850
|
+
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
36851
|
+
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
36852
|
+
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
36853
|
+
overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
|
|
36854
|
+
paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
|
|
36855
|
+
paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
|
|
36856
|
+
paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
|
|
36857
|
+
paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
36858
|
+
paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
36859
|
+
paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
|
|
36860
|
+
paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
|
|
36861
|
+
paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
|
|
36862
|
+
page?: csstype.Property.Page | undefined;
|
|
36863
|
+
pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
|
|
36864
|
+
pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
|
|
36865
|
+
pageBreakInside?: csstype.Property.PageBreakInside | undefined;
|
|
36866
|
+
paintOrder?: csstype.Property.PaintOrder | undefined;
|
|
36867
|
+
perspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
36868
|
+
perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
36869
|
+
pointerEvents?: csstype.Property.PointerEvents | undefined;
|
|
36870
|
+
position?: csstype.Property.Position | undefined;
|
|
36871
|
+
printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
36872
|
+
quotes?: csstype.Property.Quotes | undefined;
|
|
36873
|
+
resize?: csstype.Property.Resize | undefined;
|
|
36874
|
+
right?: csstype.Property.Right<string | number> | undefined;
|
|
36875
|
+
rotate?: csstype.Property.Rotate | undefined;
|
|
36876
|
+
rowGap?: csstype.Property.RowGap<string | number> | undefined;
|
|
36877
|
+
rubyAlign?: csstype.Property.RubyAlign | undefined;
|
|
36878
|
+
rubyMerge?: csstype.Property.RubyMerge | undefined;
|
|
36879
|
+
rubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
36880
|
+
scale?: csstype.Property.Scale | undefined;
|
|
36881
|
+
scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
|
|
36882
|
+
scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
36883
|
+
scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
36884
|
+
scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
36885
|
+
scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
36886
|
+
scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
36887
|
+
scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
|
|
36888
|
+
scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
|
|
36889
|
+
scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
|
|
36890
|
+
scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
36891
|
+
scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
36892
|
+
scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
|
|
36893
|
+
scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
36894
|
+
scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
36895
|
+
scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
|
|
36896
|
+
scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
|
|
36897
|
+
scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
|
|
36898
|
+
scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
|
|
36899
|
+
scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
|
|
36900
|
+
scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
|
|
36901
|
+
scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
|
|
36902
|
+
scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
|
|
36903
|
+
scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
|
|
36904
|
+
scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
36905
|
+
scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
|
|
36906
|
+
scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
|
|
36907
|
+
scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
|
|
36908
|
+
scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
|
|
36909
|
+
scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
|
|
36910
|
+
shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
|
|
36911
|
+
shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
36912
|
+
shapeOutside?: csstype.Property.ShapeOutside | undefined;
|
|
36913
|
+
tabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
36914
|
+
tableLayout?: csstype.Property.TableLayout | undefined;
|
|
36915
|
+
textAlign?: csstype.Property.TextAlign | undefined;
|
|
36916
|
+
textAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
36917
|
+
textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
|
|
36918
|
+
textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
36919
|
+
textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
36920
|
+
textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
36921
|
+
textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
|
|
36922
|
+
textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
36923
|
+
textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
|
|
36924
|
+
textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
36925
|
+
textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
36926
|
+
textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
36927
|
+
textIndent?: csstype.Property.TextIndent<string | number> | undefined;
|
|
36928
|
+
textJustify?: csstype.Property.TextJustify | undefined;
|
|
36929
|
+
textOrientation?: csstype.Property.TextOrientation | undefined;
|
|
36930
|
+
textOverflow?: csstype.Property.TextOverflow | undefined;
|
|
36931
|
+
textRendering?: csstype.Property.TextRendering | undefined;
|
|
36932
|
+
textShadow?: csstype.Property.TextShadow | undefined;
|
|
36933
|
+
textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
36934
|
+
textTransform?: csstype.Property.TextTransform | undefined;
|
|
36935
|
+
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
36936
|
+
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
36937
|
+
top?: csstype.Property.Top<string | number> | undefined;
|
|
36938
|
+
touchAction?: csstype.Property.TouchAction | undefined;
|
|
36939
|
+
transform?: csstype.Property.Transform | undefined;
|
|
36940
|
+
transformBox?: csstype.Property.TransformBox | undefined;
|
|
36941
|
+
transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
36942
|
+
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
36943
|
+
transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
36944
|
+
transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
36945
|
+
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
36946
|
+
transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
36947
|
+
translate?: csstype.Property.Translate<string | number> | undefined;
|
|
36948
|
+
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
36949
|
+
userSelect?: csstype.Property.UserSelect | undefined;
|
|
36950
|
+
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
36951
|
+
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
36952
|
+
visibility?: csstype.Property.Visibility | undefined;
|
|
36953
|
+
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
36954
|
+
widows?: csstype.Property.Widows | undefined;
|
|
36955
|
+
width?: csstype.Property.Width<string | number> | undefined;
|
|
36956
|
+
willChange?: csstype.Property.WillChange | undefined;
|
|
36957
|
+
wordBreak?: csstype.Property.WordBreak | undefined;
|
|
36958
|
+
wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
|
|
36959
|
+
wordWrap?: csstype.Property.WordWrap | undefined;
|
|
36960
|
+
writingMode?: csstype.Property.WritingMode | undefined;
|
|
36961
|
+
zIndex?: csstype.Property.ZIndex | undefined;
|
|
36962
|
+
zoom?: csstype.Property.Zoom | undefined;
|
|
36963
|
+
all?: csstype.Globals | undefined;
|
|
36964
|
+
animation?: csstype.Property.Animation<string & {}> | undefined;
|
|
36965
|
+
background?: csstype.Property.Background<string | number> | undefined;
|
|
36966
|
+
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
36967
|
+
border?: csstype.Property.Border<string | number> | undefined;
|
|
36968
|
+
borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
|
|
36969
|
+
borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
|
|
36970
|
+
borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
|
|
36971
|
+
borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
|
|
36972
|
+
borderColor?: csstype.Property.BorderColor | undefined;
|
|
36973
|
+
borderImage?: csstype.Property.BorderImage | undefined;
|
|
36974
|
+
borderInline?: csstype.Property.BorderInline<string | number> | undefined;
|
|
36975
|
+
borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
|
|
36976
|
+
borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
|
|
36977
|
+
borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
|
|
36978
|
+
borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
36979
|
+
borderRight?: csstype.Property.BorderRight<string | number> | undefined;
|
|
36980
|
+
borderStyle?: csstype.Property.BorderStyle | undefined;
|
|
36981
|
+
borderTop?: csstype.Property.BorderTop<string | number> | undefined;
|
|
36982
|
+
borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
|
|
36983
|
+
caret?: csstype.Property.Caret | undefined;
|
|
36984
|
+
columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
36985
|
+
columns?: csstype.Property.Columns<string | number> | undefined;
|
|
36986
|
+
containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
|
|
36987
|
+
container?: csstype.Property.Container | undefined;
|
|
36988
|
+
flex?: csstype.Property.Flex<string | number> | undefined;
|
|
36989
|
+
flexFlow?: csstype.Property.FlexFlow | undefined;
|
|
36990
|
+
font?: csstype.Property.Font | undefined;
|
|
36991
|
+
gap?: csstype.Property.Gap<string | number> | undefined;
|
|
36992
|
+
grid?: csstype.Property.Grid | undefined;
|
|
36993
|
+
gridArea?: csstype.Property.GridArea | undefined;
|
|
36994
|
+
gridColumn?: csstype.Property.GridColumn | undefined;
|
|
36995
|
+
gridRow?: csstype.Property.GridRow | undefined;
|
|
36996
|
+
gridTemplate?: csstype.Property.GridTemplate | undefined;
|
|
36997
|
+
inset?: csstype.Property.Inset<string | number> | undefined;
|
|
36998
|
+
insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
36999
|
+
insetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
37000
|
+
lineClamp?: csstype.Property.LineClamp | undefined;
|
|
37001
|
+
listStyle?: csstype.Property.ListStyle | undefined;
|
|
37002
|
+
margin?: csstype.Property.Margin<string | number> | undefined;
|
|
37003
|
+
marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
|
|
37004
|
+
marginInline?: csstype.Property.MarginInline<string | number> | undefined;
|
|
37005
|
+
mask?: csstype.Property.Mask<string | number> | undefined;
|
|
37006
|
+
maskBorder?: csstype.Property.MaskBorder | undefined;
|
|
37007
|
+
motion?: csstype.Property.Offset<string | number> | undefined;
|
|
37008
|
+
offset?: csstype.Property.Offset<string | number> | undefined;
|
|
37009
|
+
outline?: csstype.Property.Outline<string | number> | undefined;
|
|
37010
|
+
overflow?: csstype.Property.Overflow | undefined;
|
|
37011
|
+
overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
|
|
37012
|
+
padding?: csstype.Property.Padding<string | number> | undefined;
|
|
37013
|
+
paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
|
|
37014
|
+
paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
|
|
37015
|
+
placeContent?: csstype.Property.PlaceContent | undefined;
|
|
37016
|
+
placeItems?: csstype.Property.PlaceItems | undefined;
|
|
37017
|
+
placeSelf?: csstype.Property.PlaceSelf | undefined;
|
|
37018
|
+
scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
37019
|
+
scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
|
|
37020
|
+
scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
|
|
37021
|
+
scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
|
|
37022
|
+
scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
|
|
37023
|
+
scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
|
|
37024
|
+
scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
|
|
37025
|
+
scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
|
|
37026
|
+
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
37027
|
+
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
37028
|
+
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
37029
|
+
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
37030
|
+
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
37031
|
+
MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
37032
|
+
MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
37033
|
+
MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
37034
|
+
MozAnimationName?: csstype.Property.AnimationName | undefined;
|
|
37035
|
+
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
37036
|
+
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
37037
|
+
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
37038
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
37039
|
+
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
37040
|
+
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
37041
|
+
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
37042
|
+
MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
|
|
37043
|
+
MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
|
|
37044
|
+
MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
|
|
37045
|
+
MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
|
|
37046
|
+
MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
|
|
37047
|
+
MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
|
|
37048
|
+
MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
|
|
37049
|
+
MozBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
37050
|
+
MozColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
37051
|
+
MozColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
37052
|
+
MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
37053
|
+
MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
37054
|
+
MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
37055
|
+
MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
|
|
37056
|
+
MozContextProperties?: csstype.Property.MozContextProperties | undefined;
|
|
37057
|
+
MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
37058
|
+
MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
|
|
37059
|
+
MozHyphens?: csstype.Property.Hyphens | undefined;
|
|
37060
|
+
MozImageRegion?: csstype.Property.MozImageRegion | undefined;
|
|
37061
|
+
MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
37062
|
+
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
37063
|
+
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
37064
|
+
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
37065
|
+
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
37066
|
+
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
37067
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
37068
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
37069
|
+
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
37070
|
+
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
37071
|
+
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
37072
|
+
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
37073
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
37074
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
37075
|
+
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
37076
|
+
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
37077
|
+
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
37078
|
+
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
37079
|
+
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
37080
|
+
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
37081
|
+
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
37082
|
+
MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
|
|
37083
|
+
MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
|
|
37084
|
+
msAccelerator?: csstype.Property.MsAccelerator | undefined;
|
|
37085
|
+
msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
|
|
37086
|
+
msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
|
|
37087
|
+
msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
|
|
37088
|
+
msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
|
|
37089
|
+
msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
|
|
37090
|
+
msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
|
|
37091
|
+
msContentZooming?: csstype.Property.MsContentZooming | undefined;
|
|
37092
|
+
msFilter?: csstype.Property.MsFilter | undefined;
|
|
37093
|
+
msFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
37094
|
+
msFlexPositive?: csstype.Property.FlexGrow | undefined;
|
|
37095
|
+
msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
|
|
37096
|
+
msFlowInto?: csstype.Property.MsFlowInto | undefined;
|
|
37097
|
+
msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
|
|
37098
|
+
msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
|
|
37099
|
+
msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
|
|
37100
|
+
msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
|
|
37101
|
+
msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
|
|
37102
|
+
msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
37103
|
+
msHyphens?: csstype.Property.Hyphens | undefined;
|
|
37104
|
+
msImeAlign?: csstype.Property.MsImeAlign | undefined;
|
|
37105
|
+
msLineBreak?: csstype.Property.LineBreak | undefined;
|
|
37106
|
+
msOrder?: csstype.Property.Order | undefined;
|
|
37107
|
+
msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
|
|
37108
|
+
msOverflowX?: csstype.Property.OverflowX | undefined;
|
|
37109
|
+
msOverflowY?: csstype.Property.OverflowY | undefined;
|
|
37110
|
+
msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
|
|
37111
|
+
msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
|
|
37112
|
+
msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
|
|
37113
|
+
msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
|
|
37114
|
+
msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
|
|
37115
|
+
msScrollRails?: csstype.Property.MsScrollRails | undefined;
|
|
37116
|
+
msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
|
|
37117
|
+
msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
|
|
37118
|
+
msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
|
|
37119
|
+
msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
|
|
37120
|
+
msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
|
|
37121
|
+
msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
|
|
37122
|
+
msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
|
|
37123
|
+
msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
|
|
37124
|
+
msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
|
|
37125
|
+
msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
|
|
37126
|
+
msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
|
|
37127
|
+
msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
|
|
37128
|
+
msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
|
|
37129
|
+
msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
|
|
37130
|
+
msTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
37131
|
+
msTouchAction?: csstype.Property.TouchAction | undefined;
|
|
37132
|
+
msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
|
|
37133
|
+
msTransform?: csstype.Property.Transform | undefined;
|
|
37134
|
+
msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
37135
|
+
msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
37136
|
+
msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
37137
|
+
msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
37138
|
+
msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
37139
|
+
msUserSelect?: csstype.Property.MsUserSelect | undefined;
|
|
37140
|
+
msWordBreak?: csstype.Property.WordBreak | undefined;
|
|
37141
|
+
msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
|
|
37142
|
+
msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
|
|
37143
|
+
msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
|
|
37144
|
+
msWritingMode?: csstype.Property.WritingMode | undefined;
|
|
37145
|
+
WebkitAlignContent?: csstype.Property.AlignContent | undefined;
|
|
37146
|
+
WebkitAlignItems?: csstype.Property.AlignItems | undefined;
|
|
37147
|
+
WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
|
|
37148
|
+
WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
37149
|
+
WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
37150
|
+
WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
37151
|
+
WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
37152
|
+
WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
37153
|
+
WebkitAnimationName?: csstype.Property.AnimationName | undefined;
|
|
37154
|
+
WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
37155
|
+
WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
37156
|
+
WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
|
|
37157
|
+
WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
|
|
37158
|
+
WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
37159
|
+
WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
37160
|
+
WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
37161
|
+
WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
37162
|
+
WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
|
|
37163
|
+
WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
|
|
37164
|
+
WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
|
|
37165
|
+
WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
37166
|
+
WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
37167
|
+
WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
|
|
37168
|
+
WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
37169
|
+
WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
37170
|
+
WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
|
|
37171
|
+
WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
|
|
37172
|
+
WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
37173
|
+
WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
|
|
37174
|
+
WebkitClipPath?: csstype.Property.ClipPath | undefined;
|
|
37175
|
+
WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
|
|
37176
|
+
WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
|
|
37177
|
+
WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
|
|
37178
|
+
WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
|
|
37179
|
+
WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
|
|
37180
|
+
WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
|
|
37181
|
+
WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
|
|
37182
|
+
WebkitFilter?: csstype.Property.Filter | undefined;
|
|
37183
|
+
WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
|
|
37184
|
+
WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
|
|
37185
|
+
WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
|
|
37186
|
+
WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
|
|
37187
|
+
WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
|
|
37188
|
+
WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
|
|
37189
|
+
WebkitFontKerning?: csstype.Property.FontKerning | undefined;
|
|
37190
|
+
WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
37191
|
+
WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
|
|
37192
|
+
WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
|
|
37193
|
+
WebkitHyphens?: csstype.Property.Hyphens | undefined;
|
|
37194
|
+
WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
|
|
37195
|
+
WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
|
|
37196
|
+
WebkitLineBreak?: csstype.Property.LineBreak | undefined;
|
|
37197
|
+
WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
|
|
37198
|
+
WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
|
|
37199
|
+
WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
37200
|
+
WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
|
|
37201
|
+
WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
|
|
37202
|
+
WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
|
|
37203
|
+
WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
|
|
37204
|
+
WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
|
|
37205
|
+
WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
|
|
37206
|
+
WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
|
|
37207
|
+
WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
|
|
37208
|
+
WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
|
|
37209
|
+
WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
|
|
37210
|
+
WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
|
|
37211
|
+
WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
|
|
37212
|
+
WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
|
|
37213
|
+
WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
|
|
37214
|
+
WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
|
|
37215
|
+
WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
|
|
37216
|
+
WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
|
|
37217
|
+
WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
|
|
37218
|
+
WebkitOrder?: csstype.Property.Order | undefined;
|
|
37219
|
+
WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
|
|
37220
|
+
WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
37221
|
+
WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
37222
|
+
WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
37223
|
+
WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
37224
|
+
WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
|
|
37225
|
+
WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
|
|
37226
|
+
WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
|
|
37227
|
+
WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
|
|
37228
|
+
WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
|
|
37229
|
+
WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
|
|
37230
|
+
WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
37231
|
+
WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
37232
|
+
WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
|
|
37233
|
+
WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
37234
|
+
WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
|
|
37235
|
+
WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
|
|
37236
|
+
WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
|
|
37237
|
+
WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
|
|
37238
|
+
WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
|
|
37239
|
+
WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
37240
|
+
WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
|
|
37241
|
+
WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
|
|
37242
|
+
WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
37243
|
+
WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
|
|
37244
|
+
WebkitTransform?: csstype.Property.Transform | undefined;
|
|
37245
|
+
WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
37246
|
+
WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
37247
|
+
WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
37248
|
+
WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
37249
|
+
WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
37250
|
+
WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
37251
|
+
WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
|
|
37252
|
+
WebkitUserSelect?: csstype.Property.UserSelect | undefined;
|
|
37253
|
+
WebkitWritingMode?: csstype.Property.WritingMode | undefined;
|
|
37254
|
+
MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
37255
|
+
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
37256
|
+
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
37257
|
+
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
37258
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
37259
|
+
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
37260
|
+
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
37261
|
+
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
37262
|
+
msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
|
|
37263
|
+
msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
|
|
37264
|
+
msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
|
|
37265
|
+
msTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
37266
|
+
WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
37267
|
+
WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
|
|
37268
|
+
WebkitBorderImage?: csstype.Property.BorderImage | undefined;
|
|
37269
|
+
WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
37270
|
+
WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
37271
|
+
WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
37272
|
+
WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
37273
|
+
WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
|
|
37274
|
+
WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
|
|
37275
|
+
WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
|
|
37276
|
+
WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
37277
|
+
WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
|
|
37278
|
+
WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
37279
|
+
azimuth?: csstype.Property.Azimuth | undefined;
|
|
37280
|
+
boxAlign?: csstype.Property.BoxAlign | undefined;
|
|
37281
|
+
boxDirection?: csstype.Property.BoxDirection | undefined;
|
|
37282
|
+
boxFlex?: csstype.Property.BoxFlex | undefined;
|
|
37283
|
+
boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
37284
|
+
boxLines?: csstype.Property.BoxLines | undefined;
|
|
37285
|
+
boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
37286
|
+
boxOrient?: csstype.Property.BoxOrient | undefined;
|
|
37287
|
+
boxPack?: csstype.Property.BoxPack | undefined;
|
|
37288
|
+
clip?: csstype.Property.Clip | undefined;
|
|
37289
|
+
gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
|
|
37290
|
+
gridGap?: csstype.Property.GridGap<string | number> | undefined;
|
|
37291
|
+
gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
|
|
37292
|
+
imeMode?: csstype.Property.ImeMode | undefined;
|
|
37293
|
+
offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
|
|
37294
|
+
offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
|
|
37295
|
+
offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
|
|
37296
|
+
offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
|
|
37297
|
+
offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
|
|
37298
|
+
offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
|
|
37299
|
+
scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
37300
|
+
scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
|
|
37301
|
+
scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
37302
|
+
scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
37303
|
+
scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
|
|
37304
|
+
scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
|
|
37305
|
+
KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
37306
|
+
KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
37307
|
+
KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
37308
|
+
KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
37309
|
+
KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
|
|
37310
|
+
KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
37311
|
+
KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
37312
|
+
KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
|
|
37313
|
+
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
37314
|
+
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
37315
|
+
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
37316
|
+
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
37317
|
+
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
37318
|
+
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
37319
|
+
MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
37320
|
+
MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
|
|
37321
|
+
MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
37322
|
+
MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
|
|
37323
|
+
MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
|
|
37324
|
+
MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
|
|
37325
|
+
MozBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
37326
|
+
MozBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
37327
|
+
MozBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
37328
|
+
MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
37329
|
+
MozBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
37330
|
+
MozBoxPack?: csstype.Property.BoxPack | undefined;
|
|
37331
|
+
MozBoxShadow?: csstype.Property.BoxShadow | undefined;
|
|
37332
|
+
MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
|
|
37333
|
+
MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
|
|
37334
|
+
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
37335
|
+
MozOutline?: csstype.Property.Outline<string | number> | undefined;
|
|
37336
|
+
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
37337
|
+
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
37338
|
+
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
37339
|
+
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
37340
|
+
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
37341
|
+
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
37342
|
+
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
37343
|
+
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
37344
|
+
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
37345
|
+
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
37346
|
+
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
37347
|
+
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
37348
|
+
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
37349
|
+
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
37350
|
+
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
37351
|
+
OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
37352
|
+
OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
37353
|
+
OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
37354
|
+
OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
|
|
37355
|
+
OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
37356
|
+
OAnimationName?: csstype.Property.AnimationName | undefined;
|
|
37357
|
+
OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
37358
|
+
OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
37359
|
+
OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
|
|
37360
|
+
OBorderImage?: csstype.Property.BorderImage | undefined;
|
|
37361
|
+
OObjectFit?: csstype.Property.ObjectFit | undefined;
|
|
37362
|
+
OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
|
|
37363
|
+
OTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
37364
|
+
OTextOverflow?: csstype.Property.TextOverflow | undefined;
|
|
37365
|
+
OTransform?: csstype.Property.Transform | undefined;
|
|
37366
|
+
OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
37367
|
+
OTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
37368
|
+
OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
37369
|
+
OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
37370
|
+
OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
37371
|
+
OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
37372
|
+
WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
|
|
37373
|
+
WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
|
|
37374
|
+
WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
|
|
37375
|
+
WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
|
|
37376
|
+
WebkitBoxLines?: csstype.Property.BoxLines | undefined;
|
|
37377
|
+
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
37378
|
+
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
37379
|
+
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
37380
|
+
WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
37381
|
+
WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
37382
|
+
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
37383
|
+
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
37384
|
+
clipRule?: csstype.Property.ClipRule | undefined;
|
|
37385
|
+
colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
|
|
37386
|
+
colorRendering?: csstype.Property.ColorRendering | undefined;
|
|
37387
|
+
dominantBaseline?: csstype.Property.DominantBaseline | undefined;
|
|
37388
|
+
fill?: csstype.Property.Fill | undefined;
|
|
37389
|
+
fillOpacity?: csstype.Property.FillOpacity | undefined;
|
|
37390
|
+
fillRule?: csstype.Property.FillRule | undefined;
|
|
37391
|
+
floodColor?: csstype.Property.FloodColor | undefined;
|
|
37392
|
+
floodOpacity?: csstype.Property.FloodOpacity | undefined;
|
|
37393
|
+
glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
|
|
37394
|
+
lightingColor?: csstype.Property.LightingColor | undefined;
|
|
37395
|
+
marker?: csstype.Property.Marker | undefined;
|
|
37396
|
+
markerEnd?: csstype.Property.MarkerEnd | undefined;
|
|
37397
|
+
markerMid?: csstype.Property.MarkerMid | undefined;
|
|
37398
|
+
markerStart?: csstype.Property.MarkerStart | undefined;
|
|
37399
|
+
shapeRendering?: csstype.Property.ShapeRendering | undefined;
|
|
37400
|
+
stopColor?: csstype.Property.StopColor | undefined;
|
|
37401
|
+
stopOpacity?: csstype.Property.StopOpacity | undefined;
|
|
37402
|
+
stroke?: csstype.Property.Stroke | undefined;
|
|
37403
|
+
strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
|
|
37404
|
+
strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
|
|
37405
|
+
strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
|
|
37406
|
+
strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
|
|
37407
|
+
strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
|
|
37408
|
+
strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
|
|
37409
|
+
strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
|
|
37410
|
+
textAnchor?: csstype.Property.TextAnchor | undefined;
|
|
37411
|
+
vectorEffect?: csstype.Property.VectorEffect | undefined;
|
|
37412
|
+
} | undefined;
|
|
35677
37413
|
declare const composeShadowCss: ({ hasBoxShadow, boxShadowValue, important, }: {
|
|
35678
37414
|
hasBoxShadow?: boolean | undefined;
|
|
35679
37415
|
boxShadowValue?: ShadowProps | undefined;
|
|
@@ -36039,6 +37775,15 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
36039
37775
|
'--gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
36040
37776
|
'--hvr-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
36041
37777
|
'--focus-gg-mobile'?: csstype.Property.GridGap<string | number> | undefined;
|
|
37778
|
+
'--gr'?: csstype.Property.GridRow | undefined;
|
|
37779
|
+
'--hvr-gr'?: csstype.Property.GridRow | undefined;
|
|
37780
|
+
'--focus-gr'?: csstype.Property.GridRow | undefined;
|
|
37781
|
+
'--gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
37782
|
+
'--hvr-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
37783
|
+
'--focus-gr-tablet'?: csstype.Property.GridRow | undefined;
|
|
37784
|
+
'--gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
37785
|
+
'--hvr-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
37786
|
+
'--focus-gr-mobile'?: csstype.Property.GridRow | undefined;
|
|
36042
37787
|
'--gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36043
37788
|
'--hvr-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
36044
37789
|
'--focus-gtc'?: csstype.Property.GridTemplateColumns<string | number> | undefined;
|
|
@@ -37532,6 +39277,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name'
|
|
|
37532
39277
|
pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
|
|
37533
39278
|
themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
37534
39279
|
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
39280
|
+
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
37535
39281
|
};
|
|
37536
39282
|
|
|
37537
39283
|
declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
|
|
@@ -37550,4 +39296,4 @@ declare const getAppBlocks: (section: PublishedPageSection$1 & {
|
|
|
37550
39296
|
|
|
37551
39297
|
declare const addAppBlockId: (component: Component) => Component;
|
|
37552
39298
|
|
|
37553
|
-
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useInitialSwatchesOptions, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|
|
39299
|
+
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResonsiveStyleShadow, getResponsiveStateValue, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFormatMoney, useInitialSwatchesOptions, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|