@gem-sdk/core 2.0.0-staging.836 → 2.0.0-staging.860
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/types/index.d.ts
CHANGED
|
@@ -35257,9 +35257,9 @@ type ArticlesQueryVariables = Exact$1<{
|
|
|
35257
35257
|
where?: InputMaybe$1<ArticleWhereInput$1>;
|
|
35258
35258
|
}>;
|
|
35259
35259
|
type ArticlesQueryResponse = {
|
|
35260
|
-
articles?: Maybe$1<
|
|
35261
|
-
edges: Array<
|
|
35262
|
-
node?: Maybe$1<
|
|
35260
|
+
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
35261
|
+
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
35262
|
+
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
|
|
35263
35263
|
tags?: Maybe$1<Array<Maybe$1<Pick<Tag$1, 'name'>>>>;
|
|
35264
35264
|
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
35265
35265
|
blogs?: Maybe$1<{
|
|
@@ -35268,12 +35268,12 @@ type ArticlesQueryResponse = {
|
|
|
35268
35268
|
}>;
|
|
35269
35269
|
}>;
|
|
35270
35270
|
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
35271
|
-
}
|
|
35272
|
-
}
|
|
35271
|
+
}>;
|
|
35272
|
+
}>;
|
|
35273
35273
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
35274
|
-
}
|
|
35274
|
+
}>;
|
|
35275
35275
|
};
|
|
35276
|
-
declare const ArticlesDocument = "\n query articles($after: Cursor, $before: Cursor, $first: Int, $last: Int, $orderBy: ArticleOrder, $where: ArticleWhereInput) {\n articles(\n after: $after\n before: $before\n first: $first\n last: $last\n orderBy: $orderBy\n where: $where\n ) {\n edges {\n cursor\n node {\n id\n title\n handle\n description\n templateSuffix\n titleMeta\n descriptionMeta\n baseID\n platform\n tags {\n name\n }\n content {\n excerptHtml\n }\n isSample\n platformCreatedAt\n platformUpdatedAt\n publishedAt\n author\n blogs {\n edges {\n node {\n title\n handle\n }\n }\n }\n media {\n alt\n width\n src\n height\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}\n ";
|
|
35276
|
+
declare const ArticlesDocument = "\n query articles($after: Cursor, $before: Cursor, $first: Int, $last: Int, $orderBy: ArticleOrder, $where: ArticleWhereInput) {\n articles(\n after: $after\n before: $before\n first: $first\n last: $last\n orderBy: $orderBy\n where: $where\n ) {\n edges {\n cursor\n node {\n id\n title\n handle\n description\n templateSuffix\n titleMeta\n descriptionMeta\n baseID\n platform\n tags {\n name\n }\n content {\n excerptHtml\n html\n }\n isSample\n platformCreatedAt\n platformUpdatedAt\n publishedAt\n author\n blogs {\n edges {\n node {\n title\n handle\n }\n }\n }\n media {\n alt\n width\n src\n height\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}\n ";
|
|
35277
35277
|
|
|
35278
35278
|
type BlogsQueryVariables = Exact$1<{
|
|
35279
35279
|
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
@@ -36043,6 +36043,7 @@ type OptionValueControlType<T> = {
|
|
|
36043
36043
|
[K in keyof T]-?: Mapped$7<K, T[K]>;
|
|
36044
36044
|
}[keyof T];
|
|
36045
36045
|
|
|
36046
|
+
type TooltipPosition = 'top' | 'left' | 'right' | 'bottom' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end';
|
|
36046
36047
|
type Option$5<T> = {
|
|
36047
36048
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
36048
36049
|
label?: string | number;
|
|
@@ -36080,6 +36081,7 @@ type Mapped$6<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36080
36081
|
itemPerRow?: number;
|
|
36081
36082
|
itemSpacing?: 'large' | 'small';
|
|
36082
36083
|
enableTooltip?: boolean;
|
|
36084
|
+
tooltipPosition?: TooltipPosition;
|
|
36083
36085
|
} : {
|
|
36084
36086
|
id: K;
|
|
36085
36087
|
label: string;
|
|
@@ -36107,6 +36109,7 @@ type Mapped$6<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36107
36109
|
}[];
|
|
36108
36110
|
enableTooltip?: boolean;
|
|
36109
36111
|
default?: T;
|
|
36112
|
+
tooltipPosition?: TooltipPosition;
|
|
36110
36113
|
};
|
|
36111
36114
|
type OptionIllustrationControlType<T> = {
|
|
36112
36115
|
[K in keyof T]-?: Mapped$6<K, T[K]>;
|
|
@@ -38573,6 +38576,8 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
38573
38576
|
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
38574
38577
|
animationName?: csstype.Property.AnimationName | undefined;
|
|
38575
38578
|
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
38579
|
+
animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
|
|
38580
|
+
animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
|
|
38576
38581
|
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
38577
38582
|
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
38578
38583
|
appearance?: csstype.Property.Appearance | undefined;
|
|
@@ -38694,6 +38699,10 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
38694
38699
|
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
38695
38700
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
38696
38701
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
38702
|
+
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
38703
|
+
fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
|
|
38704
|
+
fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
|
|
38705
|
+
fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
|
|
38697
38706
|
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
38698
38707
|
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
38699
38708
|
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
@@ -38767,6 +38776,7 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
38767
38776
|
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
38768
38777
|
maskSize?: csstype.Property.MaskSize<string | number> | undefined;
|
|
38769
38778
|
maskType?: csstype.Property.MaskType | undefined;
|
|
38779
|
+
masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
|
|
38770
38780
|
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
38771
38781
|
mathShift?: csstype.Property.MathShift | undefined;
|
|
38772
38782
|
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
@@ -38806,6 +38816,7 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
38806
38816
|
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
38807
38817
|
overflowX?: csstype.Property.OverflowX | undefined;
|
|
38808
38818
|
overflowY?: csstype.Property.OverflowY | undefined;
|
|
38819
|
+
overlay?: csstype.Property.Overlay | undefined;
|
|
38809
38820
|
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
38810
38821
|
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
38811
38822
|
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
@@ -38893,12 +38904,15 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
38893
38904
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
38894
38905
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
38895
38906
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
38907
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
38908
|
+
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
38896
38909
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
38897
38910
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
38898
38911
|
transform?: csstype.Property.Transform | undefined;
|
|
38899
38912
|
transformBox?: csstype.Property.TransformBox | undefined;
|
|
38900
38913
|
transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
38901
38914
|
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
38915
|
+
transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
|
|
38902
38916
|
transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
38903
38917
|
transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
38904
38918
|
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
@@ -38907,9 +38921,14 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
38907
38921
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
38908
38922
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
38909
38923
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
38924
|
+
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
38925
|
+
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
38926
|
+
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
38910
38927
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
38911
38928
|
visibility?: csstype.Property.Visibility | undefined;
|
|
38912
38929
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
38930
|
+
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
38931
|
+
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
38913
38932
|
widows?: csstype.Property.Widows | undefined;
|
|
38914
38933
|
width?: csstype.Property.Width<string | number> | undefined;
|
|
38915
38934
|
willChange?: csstype.Property.WillChange | undefined;
|
|
@@ -38921,6 +38940,7 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
38921
38940
|
zoom?: csstype.Property.Zoom | undefined;
|
|
38922
38941
|
all?: csstype.Globals | undefined;
|
|
38923
38942
|
animation?: csstype.Property.Animation<string & {}> | undefined;
|
|
38943
|
+
animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
|
|
38924
38944
|
background?: csstype.Property.Background<string | number> | undefined;
|
|
38925
38945
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
38926
38946
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
@@ -38985,6 +39005,7 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
38985
39005
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
38986
39006
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
38987
39007
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
39008
|
+
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
38988
39009
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
38989
39010
|
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
38990
39011
|
MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -38994,7 +39015,6 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
38994
39015
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
38995
39016
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
38996
39017
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
38997
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
38998
39018
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
38999
39019
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
39000
39020
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -39021,20 +39041,16 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
39021
39041
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
39022
39042
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
39023
39043
|
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
39044
|
+
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
39045
|
+
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
39046
|
+
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
39047
|
+
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
39024
39048
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
39025
39049
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
39026
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
39027
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
39028
39050
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
39029
39051
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
39030
39052
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
39031
39053
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
39032
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
39033
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
39034
|
-
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
39035
|
-
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
39036
|
-
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
39037
|
-
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
39038
39054
|
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
39039
39055
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
39040
39056
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
@@ -39214,7 +39230,7 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
39214
39230
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
39215
39231
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
39216
39232
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
39217
|
-
|
|
39233
|
+
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
39218
39234
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
39219
39235
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
39220
39236
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -39272,6 +39288,7 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
39272
39288
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
39273
39289
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
39274
39290
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
39291
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
39275
39292
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
39276
39293
|
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
39277
39294
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
@@ -39293,17 +39310,22 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
39293
39310
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
39294
39311
|
MozOutline?: csstype.Property.Outline<string | number> | undefined;
|
|
39295
39312
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
39296
|
-
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
39297
|
-
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
39298
|
-
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
39299
|
-
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
39300
|
-
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
39301
39313
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
39302
39314
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
39315
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
39316
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
39303
39317
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
39304
39318
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
39305
39319
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
39306
39320
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
39321
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
39322
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
39323
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
39324
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
39325
|
+
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
39326
|
+
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
39327
|
+
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
39328
|
+
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
39307
39329
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
39308
39330
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
39309
39331
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -39336,8 +39358,6 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
39336
39358
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
39337
39359
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
39338
39360
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
39339
|
-
WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
39340
|
-
WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
39341
39361
|
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
39342
39362
|
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
39343
39363
|
clipRule?: csstype.Property.ClipRule | undefined;
|
|
@@ -40194,6 +40214,8 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40194
40214
|
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
40195
40215
|
animationName?: csstype.Property.AnimationName | undefined;
|
|
40196
40216
|
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
40217
|
+
animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
|
|
40218
|
+
animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
|
|
40197
40219
|
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
40198
40220
|
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
40199
40221
|
appearance?: csstype.Property.Appearance | undefined;
|
|
@@ -40315,6 +40337,10 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40315
40337
|
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
40316
40338
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
40317
40339
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
40340
|
+
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
40341
|
+
fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
|
|
40342
|
+
fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
|
|
40343
|
+
fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
|
|
40318
40344
|
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
40319
40345
|
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
40320
40346
|
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
@@ -40388,6 +40414,7 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40388
40414
|
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
40389
40415
|
maskSize?: csstype.Property.MaskSize<string | number> | undefined;
|
|
40390
40416
|
maskType?: csstype.Property.MaskType | undefined;
|
|
40417
|
+
masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
|
|
40391
40418
|
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
40392
40419
|
mathShift?: csstype.Property.MathShift | undefined;
|
|
40393
40420
|
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
@@ -40427,6 +40454,7 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40427
40454
|
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
40428
40455
|
overflowX?: csstype.Property.OverflowX | undefined;
|
|
40429
40456
|
overflowY?: csstype.Property.OverflowY | undefined;
|
|
40457
|
+
overlay?: csstype.Property.Overlay | undefined;
|
|
40430
40458
|
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
40431
40459
|
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
40432
40460
|
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
@@ -40514,12 +40542,15 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40514
40542
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
40515
40543
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
40516
40544
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
40545
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
40546
|
+
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
40517
40547
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
40518
40548
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
40519
40549
|
transform?: csstype.Property.Transform | undefined;
|
|
40520
40550
|
transformBox?: csstype.Property.TransformBox | undefined;
|
|
40521
40551
|
transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
40522
40552
|
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
40553
|
+
transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
|
|
40523
40554
|
transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
40524
40555
|
transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
40525
40556
|
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
@@ -40528,9 +40559,14 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40528
40559
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
40529
40560
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
40530
40561
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
40562
|
+
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
40563
|
+
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
40564
|
+
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
40531
40565
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
40532
40566
|
visibility?: csstype.Property.Visibility | undefined;
|
|
40533
40567
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
40568
|
+
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
40569
|
+
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
40534
40570
|
widows?: csstype.Property.Widows | undefined;
|
|
40535
40571
|
width?: csstype.Property.Width<string | number> | undefined;
|
|
40536
40572
|
willChange?: csstype.Property.WillChange | undefined;
|
|
@@ -40542,6 +40578,7 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40542
40578
|
zoom?: csstype.Property.Zoom | undefined;
|
|
40543
40579
|
all?: csstype.Globals | undefined;
|
|
40544
40580
|
animation?: csstype.Property.Animation<string & {}> | undefined;
|
|
40581
|
+
animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
|
|
40545
40582
|
background?: csstype.Property.Background<string | number> | undefined;
|
|
40546
40583
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
40547
40584
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
@@ -40606,6 +40643,7 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40606
40643
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
40607
40644
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
40608
40645
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
40646
|
+
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
40609
40647
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
40610
40648
|
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
40611
40649
|
MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -40615,7 +40653,6 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40615
40653
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
40616
40654
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
40617
40655
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
40618
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
40619
40656
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
40620
40657
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
40621
40658
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -40642,20 +40679,16 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40642
40679
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
40643
40680
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
40644
40681
|
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
40682
|
+
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
40683
|
+
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
40684
|
+
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
40685
|
+
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
40645
40686
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
40646
40687
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
40647
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
40648
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
40649
40688
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
40650
40689
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
40651
40690
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
40652
40691
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
40653
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
40654
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
40655
|
-
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
40656
|
-
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
40657
|
-
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
40658
|
-
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
40659
40692
|
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
40660
40693
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
40661
40694
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
@@ -40835,7 +40868,7 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40835
40868
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
40836
40869
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
40837
40870
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
40838
|
-
|
|
40871
|
+
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
40839
40872
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
40840
40873
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
40841
40874
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -40893,6 +40926,7 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40893
40926
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
40894
40927
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
40895
40928
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
40929
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
40896
40930
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
40897
40931
|
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
40898
40932
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
@@ -40914,17 +40948,22 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40914
40948
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
40915
40949
|
MozOutline?: csstype.Property.Outline<string | number> | undefined;
|
|
40916
40950
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
40917
|
-
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
40918
|
-
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
40919
|
-
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
40920
|
-
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
40921
|
-
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
40922
40951
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
40923
40952
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
40953
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
40954
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
40924
40955
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
40925
40956
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
40926
40957
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
40927
40958
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
40959
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
40960
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
40961
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
40962
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
40963
|
+
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
40964
|
+
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
40965
|
+
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
40966
|
+
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
40928
40967
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
40929
40968
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
40930
40969
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -40957,8 +40996,6 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
|
|
|
40957
40996
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
40958
40997
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
40959
40998
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
40960
|
-
WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
40961
|
-
WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
40962
40999
|
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
40963
41000
|
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
40964
41001
|
clipRule?: csstype.Property.ClipRule | undefined;
|
|
@@ -41816,6 +41853,8 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
41816
41853
|
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
41817
41854
|
animationName?: csstype.Property.AnimationName | undefined;
|
|
41818
41855
|
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
41856
|
+
animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
|
|
41857
|
+
animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
|
|
41819
41858
|
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
41820
41859
|
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
41821
41860
|
appearance?: csstype.Property.Appearance | undefined;
|
|
@@ -41937,6 +41976,10 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
41937
41976
|
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
41938
41977
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
41939
41978
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
41979
|
+
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
41980
|
+
fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
|
|
41981
|
+
fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
|
|
41982
|
+
fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
|
|
41940
41983
|
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
41941
41984
|
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
41942
41985
|
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
@@ -42010,6 +42053,7 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42010
42053
|
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
42011
42054
|
maskSize?: csstype.Property.MaskSize<string | number> | undefined;
|
|
42012
42055
|
maskType?: csstype.Property.MaskType | undefined;
|
|
42056
|
+
masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
|
|
42013
42057
|
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
42014
42058
|
mathShift?: csstype.Property.MathShift | undefined;
|
|
42015
42059
|
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
@@ -42049,6 +42093,7 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42049
42093
|
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
42050
42094
|
overflowX?: csstype.Property.OverflowX | undefined;
|
|
42051
42095
|
overflowY?: csstype.Property.OverflowY | undefined;
|
|
42096
|
+
overlay?: csstype.Property.Overlay | undefined;
|
|
42052
42097
|
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
42053
42098
|
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
42054
42099
|
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
@@ -42136,12 +42181,15 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42136
42181
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
42137
42182
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
42138
42183
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
42184
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
42185
|
+
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
42139
42186
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
42140
42187
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
42141
42188
|
transform?: csstype.Property.Transform | undefined;
|
|
42142
42189
|
transformBox?: csstype.Property.TransformBox | undefined;
|
|
42143
42190
|
transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
42144
42191
|
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
42192
|
+
transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
|
|
42145
42193
|
transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
42146
42194
|
transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
42147
42195
|
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
@@ -42150,9 +42198,14 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42150
42198
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
42151
42199
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
42152
42200
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
42201
|
+
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
42202
|
+
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
42203
|
+
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
42153
42204
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
42154
42205
|
visibility?: csstype.Property.Visibility | undefined;
|
|
42155
42206
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
42207
|
+
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
42208
|
+
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
42156
42209
|
widows?: csstype.Property.Widows | undefined;
|
|
42157
42210
|
width?: csstype.Property.Width<string | number> | undefined;
|
|
42158
42211
|
willChange?: csstype.Property.WillChange | undefined;
|
|
@@ -42164,6 +42217,7 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42164
42217
|
zoom?: csstype.Property.Zoom | undefined;
|
|
42165
42218
|
all?: csstype.Globals | undefined;
|
|
42166
42219
|
animation?: csstype.Property.Animation<string & {}> | undefined;
|
|
42220
|
+
animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
|
|
42167
42221
|
background?: csstype.Property.Background<string | number> | undefined;
|
|
42168
42222
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
42169
42223
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
@@ -42228,6 +42282,7 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42228
42282
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
42229
42283
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
42230
42284
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
42285
|
+
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
42231
42286
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
42232
42287
|
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
42233
42288
|
MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -42237,7 +42292,6 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42237
42292
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
42238
42293
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
42239
42294
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
42240
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
42241
42295
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
42242
42296
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
42243
42297
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -42264,20 +42318,16 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42264
42318
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
42265
42319
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
42266
42320
|
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
42321
|
+
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
42322
|
+
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
42323
|
+
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
42324
|
+
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
42267
42325
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
42268
42326
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
42269
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
42270
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
42271
42327
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
42272
42328
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
42273
42329
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
42274
42330
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
42275
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
42276
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
42277
|
-
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
42278
|
-
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
42279
|
-
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
42280
|
-
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
42281
42331
|
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
42282
42332
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
42283
42333
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
@@ -42457,7 +42507,7 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42457
42507
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
42458
42508
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
42459
42509
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
42460
|
-
|
|
42510
|
+
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
42461
42511
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
42462
42512
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
42463
42513
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -42515,6 +42565,7 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42515
42565
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
42516
42566
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
42517
42567
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
42568
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
42518
42569
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
42519
42570
|
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
42520
42571
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
@@ -42536,17 +42587,22 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42536
42587
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
42537
42588
|
MozOutline?: csstype.Property.Outline<string | number> | undefined;
|
|
42538
42589
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
42539
|
-
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
42540
|
-
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
42541
|
-
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
42542
|
-
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
42543
|
-
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
42544
42590
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
42545
42591
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
42592
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
42593
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
42546
42594
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
42547
42595
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
42548
42596
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
42549
42597
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
42598
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
42599
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
42600
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
42601
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
42602
|
+
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
42603
|
+
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
42604
|
+
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
42605
|
+
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
42550
42606
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
42551
42607
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
42552
42608
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -42579,8 +42635,6 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
|
|
|
42579
42635
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
42580
42636
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
42581
42637
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
42582
|
-
WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
42583
|
-
WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
42584
42638
|
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
42585
42639
|
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
42586
42640
|
clipRule?: csstype.Property.ClipRule | undefined;
|
|
@@ -43540,6 +43594,8 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
43540
43594
|
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
43541
43595
|
animationName?: csstype.Property.AnimationName | undefined;
|
|
43542
43596
|
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
43597
|
+
animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
|
|
43598
|
+
animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
|
|
43543
43599
|
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
43544
43600
|
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
43545
43601
|
appearance?: csstype.Property.Appearance | undefined;
|
|
@@ -43661,6 +43717,10 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
43661
43717
|
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
43662
43718
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
43663
43719
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
43720
|
+
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
43721
|
+
fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
|
|
43722
|
+
fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
|
|
43723
|
+
fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
|
|
43664
43724
|
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
43665
43725
|
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
43666
43726
|
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
@@ -43734,6 +43794,7 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
43734
43794
|
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
43735
43795
|
maskSize?: csstype.Property.MaskSize<string | number> | undefined;
|
|
43736
43796
|
maskType?: csstype.Property.MaskType | undefined;
|
|
43797
|
+
masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
|
|
43737
43798
|
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
43738
43799
|
mathShift?: csstype.Property.MathShift | undefined;
|
|
43739
43800
|
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
@@ -43773,6 +43834,7 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
43773
43834
|
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
43774
43835
|
overflowX?: csstype.Property.OverflowX | undefined;
|
|
43775
43836
|
overflowY?: csstype.Property.OverflowY | undefined;
|
|
43837
|
+
overlay?: csstype.Property.Overlay | undefined;
|
|
43776
43838
|
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
43777
43839
|
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
43778
43840
|
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
@@ -43860,12 +43922,15 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
43860
43922
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
43861
43923
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
43862
43924
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
43925
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
43926
|
+
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
43863
43927
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
43864
43928
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
43865
43929
|
transform?: csstype.Property.Transform | undefined;
|
|
43866
43930
|
transformBox?: csstype.Property.TransformBox | undefined;
|
|
43867
43931
|
transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
43868
43932
|
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
43933
|
+
transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
|
|
43869
43934
|
transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
43870
43935
|
transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
43871
43936
|
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
@@ -43874,9 +43939,14 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
43874
43939
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
43875
43940
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
43876
43941
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
43942
|
+
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
43943
|
+
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
43944
|
+
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
43877
43945
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
43878
43946
|
visibility?: csstype.Property.Visibility | undefined;
|
|
43879
43947
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
43948
|
+
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
43949
|
+
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
43880
43950
|
widows?: csstype.Property.Widows | undefined;
|
|
43881
43951
|
width?: csstype.Property.Width<string | number> | undefined;
|
|
43882
43952
|
willChange?: csstype.Property.WillChange | undefined;
|
|
@@ -43888,6 +43958,7 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
43888
43958
|
zoom?: csstype.Property.Zoom | undefined;
|
|
43889
43959
|
all?: csstype.Globals | undefined;
|
|
43890
43960
|
animation?: csstype.Property.Animation<string & {}> | undefined;
|
|
43961
|
+
animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
|
|
43891
43962
|
background?: csstype.Property.Background<string | number> | undefined;
|
|
43892
43963
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
43893
43964
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
@@ -43952,6 +44023,7 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
43952
44023
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
43953
44024
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
43954
44025
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
44026
|
+
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
43955
44027
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
43956
44028
|
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
43957
44029
|
MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -43961,7 +44033,6 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
43961
44033
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
43962
44034
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
43963
44035
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
43964
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
43965
44036
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
43966
44037
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
43967
44038
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -43988,20 +44059,16 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
43988
44059
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
43989
44060
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
43990
44061
|
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
44062
|
+
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
44063
|
+
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
44064
|
+
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
44065
|
+
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
43991
44066
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
43992
44067
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
43993
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
43994
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
43995
44068
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
43996
44069
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
43997
44070
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
43998
44071
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
43999
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
44000
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
44001
|
-
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
44002
|
-
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
44003
|
-
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
44004
|
-
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
44005
44072
|
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
44006
44073
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
44007
44074
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
@@ -44181,7 +44248,7 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
44181
44248
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
44182
44249
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
44183
44250
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
44184
|
-
|
|
44251
|
+
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
44185
44252
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
44186
44253
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
44187
44254
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -44239,6 +44306,7 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
44239
44306
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
44240
44307
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
44241
44308
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
44309
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
44242
44310
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
44243
44311
|
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
44244
44312
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
@@ -44260,17 +44328,22 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
44260
44328
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
44261
44329
|
MozOutline?: csstype.Property.Outline<string | number> | undefined;
|
|
44262
44330
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
44263
|
-
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
44264
|
-
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
44265
|
-
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
44266
|
-
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
44267
|
-
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
44268
44331
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
44269
44332
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
44333
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
44334
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
44270
44335
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
44271
44336
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
44272
44337
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
44273
44338
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
44339
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
44340
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
44341
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
44342
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
44343
|
+
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
44344
|
+
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
44345
|
+
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
44346
|
+
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
44274
44347
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
44275
44348
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
44276
44349
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -44303,8 +44376,6 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
|
|
|
44303
44376
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
44304
44377
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
44305
44378
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
44306
|
-
WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
44307
|
-
WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
44308
44379
|
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
44309
44380
|
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
44310
44381
|
clipRule?: csstype.Property.ClipRule | undefined;
|
|
@@ -45164,6 +45235,8 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45164
45235
|
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
45165
45236
|
animationName?: csstype.Property.AnimationName | undefined;
|
|
45166
45237
|
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
45238
|
+
animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
|
|
45239
|
+
animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
|
|
45167
45240
|
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
45168
45241
|
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
45169
45242
|
appearance?: csstype.Property.Appearance | undefined;
|
|
@@ -45285,6 +45358,10 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45285
45358
|
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
45286
45359
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
45287
45360
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
45361
|
+
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
45362
|
+
fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
|
|
45363
|
+
fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
|
|
45364
|
+
fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
|
|
45288
45365
|
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
45289
45366
|
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
45290
45367
|
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
@@ -45358,6 +45435,7 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45358
45435
|
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
45359
45436
|
maskSize?: csstype.Property.MaskSize<string | number> | undefined;
|
|
45360
45437
|
maskType?: csstype.Property.MaskType | undefined;
|
|
45438
|
+
masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
|
|
45361
45439
|
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
45362
45440
|
mathShift?: csstype.Property.MathShift | undefined;
|
|
45363
45441
|
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
@@ -45397,6 +45475,7 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45397
45475
|
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
45398
45476
|
overflowX?: csstype.Property.OverflowX | undefined;
|
|
45399
45477
|
overflowY?: csstype.Property.OverflowY | undefined;
|
|
45478
|
+
overlay?: csstype.Property.Overlay | undefined;
|
|
45400
45479
|
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
45401
45480
|
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
45402
45481
|
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
@@ -45484,12 +45563,15 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45484
45563
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
45485
45564
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
45486
45565
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
45566
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
45567
|
+
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
45487
45568
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
45488
45569
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
45489
45570
|
transform?: csstype.Property.Transform | undefined;
|
|
45490
45571
|
transformBox?: csstype.Property.TransformBox | undefined;
|
|
45491
45572
|
transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
45492
45573
|
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
45574
|
+
transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
|
|
45493
45575
|
transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
45494
45576
|
transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
45495
45577
|
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
@@ -45498,9 +45580,14 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45498
45580
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
45499
45581
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
45500
45582
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
45583
|
+
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
45584
|
+
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
45585
|
+
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
45501
45586
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
45502
45587
|
visibility?: csstype.Property.Visibility | undefined;
|
|
45503
45588
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
45589
|
+
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
45590
|
+
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
45504
45591
|
widows?: csstype.Property.Widows | undefined;
|
|
45505
45592
|
width?: csstype.Property.Width<string | number> | undefined;
|
|
45506
45593
|
willChange?: csstype.Property.WillChange | undefined;
|
|
@@ -45512,6 +45599,7 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45512
45599
|
zoom?: csstype.Property.Zoom | undefined;
|
|
45513
45600
|
all?: csstype.Globals | undefined;
|
|
45514
45601
|
animation?: csstype.Property.Animation<string & {}> | undefined;
|
|
45602
|
+
animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
|
|
45515
45603
|
background?: csstype.Property.Background<string | number> | undefined;
|
|
45516
45604
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
45517
45605
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
@@ -45576,6 +45664,7 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45576
45664
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
45577
45665
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
45578
45666
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
45667
|
+
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
45579
45668
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
45580
45669
|
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
45581
45670
|
MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -45585,7 +45674,6 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45585
45674
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
45586
45675
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
45587
45676
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
45588
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
45589
45677
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
45590
45678
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
45591
45679
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -45612,20 +45700,16 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45612
45700
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
45613
45701
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
45614
45702
|
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
45703
|
+
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
45704
|
+
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
45705
|
+
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
45706
|
+
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
45615
45707
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
45616
45708
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
45617
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
45618
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
45619
45709
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
45620
45710
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
45621
45711
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
45622
45712
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
45623
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
45624
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
45625
|
-
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
45626
|
-
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
45627
|
-
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
45628
|
-
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
45629
45713
|
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
45630
45714
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
45631
45715
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
@@ -45805,7 +45889,7 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45805
45889
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
45806
45890
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
45807
45891
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
45808
|
-
|
|
45892
|
+
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
45809
45893
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
45810
45894
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
45811
45895
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -45863,6 +45947,7 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45863
45947
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
45864
45948
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
45865
45949
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
45950
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
45866
45951
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
45867
45952
|
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
45868
45953
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
@@ -45884,17 +45969,22 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45884
45969
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
45885
45970
|
MozOutline?: csstype.Property.Outline<string | number> | undefined;
|
|
45886
45971
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
45887
|
-
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
45888
|
-
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
45889
|
-
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
45890
|
-
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
45891
|
-
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
45892
45972
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
45893
45973
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
45974
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
45975
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
45894
45976
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
45895
45977
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
45896
45978
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
45897
45979
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
45980
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
45981
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
45982
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
45983
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
45984
|
+
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
45985
|
+
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
45986
|
+
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
45987
|
+
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
45898
45988
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
45899
45989
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
45900
45990
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -45927,8 +46017,6 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
|
|
|
45927
46017
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
45928
46018
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
45929
46019
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
45930
|
-
WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
45931
|
-
WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
45932
46020
|
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
45933
46021
|
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
45934
46022
|
clipRule?: csstype.Property.ClipRule | undefined;
|
|
@@ -46843,6 +46931,8 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
46843
46931
|
animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
|
|
46844
46932
|
animationName?: csstype.Property.AnimationName | undefined;
|
|
46845
46933
|
animationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
46934
|
+
animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
|
|
46935
|
+
animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
|
|
46846
46936
|
animationTimeline?: csstype.Property.AnimationTimeline | undefined;
|
|
46847
46937
|
animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
46848
46938
|
appearance?: csstype.Property.Appearance | undefined;
|
|
@@ -46964,6 +47054,10 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
46964
47054
|
fontStretch?: csstype.Property.FontStretch | undefined;
|
|
46965
47055
|
fontStyle?: csstype.Property.FontStyle | undefined;
|
|
46966
47056
|
fontSynthesis?: csstype.Property.FontSynthesis | undefined;
|
|
47057
|
+
fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
|
|
47058
|
+
fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
|
|
47059
|
+
fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
|
|
47060
|
+
fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
|
|
46967
47061
|
fontVariant?: csstype.Property.FontVariant | undefined;
|
|
46968
47062
|
fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
|
|
46969
47063
|
fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
|
|
@@ -47037,6 +47131,7 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47037
47131
|
maskRepeat?: csstype.Property.MaskRepeat | undefined;
|
|
47038
47132
|
maskSize?: csstype.Property.MaskSize<string | number> | undefined;
|
|
47039
47133
|
maskType?: csstype.Property.MaskType | undefined;
|
|
47134
|
+
masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
|
|
47040
47135
|
mathDepth?: csstype.Property.MathDepth | undefined;
|
|
47041
47136
|
mathShift?: csstype.Property.MathShift | undefined;
|
|
47042
47137
|
mathStyle?: csstype.Property.MathStyle | undefined;
|
|
@@ -47076,6 +47171,7 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47076
47171
|
overflowWrap?: csstype.Property.OverflowWrap | undefined;
|
|
47077
47172
|
overflowX?: csstype.Property.OverflowX | undefined;
|
|
47078
47173
|
overflowY?: csstype.Property.OverflowY | undefined;
|
|
47174
|
+
overlay?: csstype.Property.Overlay | undefined;
|
|
47079
47175
|
overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
|
|
47080
47176
|
overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
|
|
47081
47177
|
overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
|
|
@@ -47163,12 +47259,15 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47163
47259
|
textTransform?: csstype.Property.TextTransform | undefined;
|
|
47164
47260
|
textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
|
|
47165
47261
|
textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
|
|
47262
|
+
textWrap?: csstype.Property.TextWrap | undefined;
|
|
47263
|
+
timelineScope?: csstype.Property.TimelineScope | undefined;
|
|
47166
47264
|
top?: csstype.Property.Top<string | number> | undefined;
|
|
47167
47265
|
touchAction?: csstype.Property.TouchAction | undefined;
|
|
47168
47266
|
transform?: csstype.Property.Transform | undefined;
|
|
47169
47267
|
transformBox?: csstype.Property.TransformBox | undefined;
|
|
47170
47268
|
transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
47171
47269
|
transformStyle?: csstype.Property.TransformStyle | undefined;
|
|
47270
|
+
transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
|
|
47172
47271
|
transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
47173
47272
|
transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
47174
47273
|
transitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
@@ -47177,9 +47276,14 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47177
47276
|
unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
|
|
47178
47277
|
userSelect?: csstype.Property.UserSelect | undefined;
|
|
47179
47278
|
verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
|
|
47279
|
+
viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
|
|
47280
|
+
viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
|
|
47281
|
+
viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
|
|
47180
47282
|
viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
|
|
47181
47283
|
visibility?: csstype.Property.Visibility | undefined;
|
|
47182
47284
|
whiteSpace?: csstype.Property.WhiteSpace | undefined;
|
|
47285
|
+
whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
|
|
47286
|
+
whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
|
|
47183
47287
|
widows?: csstype.Property.Widows | undefined;
|
|
47184
47288
|
width?: csstype.Property.Width<string | number> | undefined;
|
|
47185
47289
|
willChange?: csstype.Property.WillChange | undefined;
|
|
@@ -47191,6 +47295,7 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47191
47295
|
zoom?: csstype.Property.Zoom | undefined;
|
|
47192
47296
|
all?: csstype.Globals | undefined;
|
|
47193
47297
|
animation?: csstype.Property.Animation<string & {}> | undefined;
|
|
47298
|
+
animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
|
|
47194
47299
|
background?: csstype.Property.Background<string | number> | undefined;
|
|
47195
47300
|
backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
|
|
47196
47301
|
border?: csstype.Property.Border<string | number> | undefined;
|
|
@@ -47255,6 +47360,7 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47255
47360
|
textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
|
|
47256
47361
|
textEmphasis?: csstype.Property.TextEmphasis | undefined;
|
|
47257
47362
|
transition?: csstype.Property.Transition<string & {}> | undefined;
|
|
47363
|
+
viewTimeline?: csstype.Property.ViewTimeline | undefined;
|
|
47258
47364
|
MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
|
|
47259
47365
|
MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
|
|
47260
47366
|
MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -47264,7 +47370,6 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47264
47370
|
MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
|
|
47265
47371
|
MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
|
|
47266
47372
|
MozAppearance?: csstype.Property.MozAppearance | undefined;
|
|
47267
|
-
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
47268
47373
|
MozBinding?: csstype.Property.MozBinding | undefined;
|
|
47269
47374
|
MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
|
|
47270
47375
|
MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
|
|
@@ -47291,20 +47396,16 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47291
47396
|
MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
|
|
47292
47397
|
MozOrient?: csstype.Property.MozOrient | undefined;
|
|
47293
47398
|
MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
|
|
47399
|
+
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
47400
|
+
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
47401
|
+
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
47402
|
+
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
47294
47403
|
MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
|
|
47295
47404
|
MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
|
|
47296
|
-
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
47297
|
-
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
47298
47405
|
MozStackSizing?: csstype.Property.MozStackSizing | undefined;
|
|
47299
47406
|
MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
|
|
47300
47407
|
MozTextBlink?: csstype.Property.MozTextBlink | undefined;
|
|
47301
47408
|
MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
|
|
47302
|
-
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
47303
|
-
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
47304
|
-
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
47305
|
-
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
47306
|
-
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
47307
|
-
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
47308
47409
|
MozUserFocus?: csstype.Property.MozUserFocus | undefined;
|
|
47309
47410
|
MozUserModify?: csstype.Property.MozUserModify | undefined;
|
|
47310
47411
|
MozUserSelect?: csstype.Property.UserSelect | undefined;
|
|
@@ -47484,7 +47585,7 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47484
47585
|
MozBorderImage?: csstype.Property.BorderImage | undefined;
|
|
47485
47586
|
MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
|
|
47486
47587
|
MozColumns?: csstype.Property.Columns<string | number> | undefined;
|
|
47487
|
-
|
|
47588
|
+
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
47488
47589
|
msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
|
|
47489
47590
|
msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
|
|
47490
47591
|
msFlex?: csstype.Property.Flex<string | number> | undefined;
|
|
@@ -47542,6 +47643,7 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47542
47643
|
KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
|
|
47543
47644
|
KhtmlOpacity?: csstype.Property.Opacity | undefined;
|
|
47544
47645
|
KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
|
|
47646
|
+
MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
|
|
47545
47647
|
MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
|
|
47546
47648
|
MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
|
|
47547
47649
|
MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
|
|
@@ -47563,17 +47665,22 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47563
47665
|
MozOpacity?: csstype.Property.Opacity | undefined;
|
|
47564
47666
|
MozOutline?: csstype.Property.Outline<string | number> | undefined;
|
|
47565
47667
|
MozOutlineColor?: csstype.Property.OutlineColor | undefined;
|
|
47566
|
-
MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
|
|
47567
|
-
MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
47568
|
-
MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
47569
|
-
MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
47570
|
-
MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
47571
47668
|
MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
|
|
47572
47669
|
MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
|
|
47670
|
+
MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
|
|
47671
|
+
MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
|
|
47573
47672
|
MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
|
|
47574
47673
|
MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
|
|
47575
47674
|
MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
|
|
47576
47675
|
MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
|
|
47676
|
+
MozTransform?: csstype.Property.Transform | undefined;
|
|
47677
|
+
MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
|
|
47678
|
+
MozTransformStyle?: csstype.Property.TransformStyle | undefined;
|
|
47679
|
+
MozTransition?: csstype.Property.Transition<string & {}> | undefined;
|
|
47680
|
+
MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
|
|
47681
|
+
MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
|
|
47682
|
+
MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
|
|
47683
|
+
MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
|
|
47577
47684
|
MozUserInput?: csstype.Property.MozUserInput | undefined;
|
|
47578
47685
|
msImeMode?: csstype.Property.ImeMode | undefined;
|
|
47579
47686
|
OAnimation?: csstype.Property.Animation<string & {}> | undefined;
|
|
@@ -47606,8 +47713,6 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
|
|
|
47606
47713
|
WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
|
|
47607
47714
|
WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
|
|
47608
47715
|
WebkitBoxPack?: csstype.Property.BoxPack | undefined;
|
|
47609
|
-
WebkitScrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
|
|
47610
|
-
WebkitScrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
|
|
47611
47716
|
alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
|
|
47612
47717
|
baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
|
|
47613
47718
|
clipRule?: csstype.Property.ClipRule | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/core",
|
|
3
|
-
"version": "2.0.0-staging.
|
|
3
|
+
"version": "2.0.0-staging.860",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"zustand": "4.3.9"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"react": "^
|
|
45
|
-
"react-dom": "^
|
|
44
|
+
"react": "^18",
|
|
45
|
+
"react-dom": "^18"
|
|
46
46
|
},
|
|
47
47
|
"module": "dist/esm/index.js",
|
|
48
48
|
"types": "dist/types/index.d.ts",
|