jpf 5.0.16 → 5.0.18

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.
@@ -1,66 +1,66 @@
1
- import * as types from "./types";
1
+ import * as css from "./css";
2
2
  import { ISubscribable } from "./observableInterfaces";
3
3
  export interface IStyle {
4
- alignContent?: types.AlignContent;
5
- alignItems?: types.CssValue<types.AlignItems>;
6
- alignSelf?: types.CssValue<types.AlignSelf>;
4
+ alignContent?: css.AlignContent;
5
+ alignItems?: css.CssValue<css.AlignItems>;
6
+ alignSelf?: css.CssValue<css.AlignSelf>;
7
7
  alignmentAdjust?: any;
8
- alignmentBaseline?: types.AlignmentBaseline;
9
- animation?: types.CssValueString;
8
+ alignmentBaseline?: css.AlignmentBaseline;
9
+ animation?: css.CssValueString;
10
10
  animationDelay?: any;
11
- animationDirection?: types.CssGlobalValues | types.AnimationDirection;
12
- animationDuration?: types.CssValue<string>;
13
- animationFillMode?: types.AnimationFillMode;
14
- animationIterationCount?: types.CssValue<number> | "infinite";
15
- animationName?: types.CssValue<string>;
16
- animationPlayState?: types.CssValue<types.CssAnimationPlayState>;
17
- animationTimingFunction?: types.CssValue<types.CssTimingFunction>;
18
- appearance?: types.CssValue<"auto" | "none">;
19
- backfaceVisibility?: types.CssGlobalValues | "visible" | "hidden";
11
+ animationDirection?: css.CssGlobalValues | css.AnimationDirection;
12
+ animationDuration?: css.CssValue<string>;
13
+ animationFillMode?: css.AnimationFillMode;
14
+ animationIterationCount?: css.CssValue<number> | "infinite";
15
+ animationName?: css.CssValue<string>;
16
+ animationPlayState?: css.CssValue<css.CssAnimationPlayState>;
17
+ animationTimingFunction?: css.CssValue<css.CssTimingFunction>;
18
+ appearance?: css.CssValue<"auto" | "none">;
19
+ backfaceVisibility?: css.CssGlobalValues | "visible" | "hidden";
20
20
  background?: any;
21
- backgroundAttachment?: types.BackgroundAttachment;
22
- backgroundBlendMode?: types.CssValue<types.CssBlendMode>;
23
- backgroundClip?: types.CssValue<types.CssBox | "text">;
24
- backgroundColor?: types.CssValue<types.CssColor>;
21
+ backgroundAttachment?: css.BackgroundAttachment;
22
+ backgroundBlendMode?: css.CssValue<css.CssBlendMode>;
23
+ backgroundClip?: css.CssValue<css.CssBox | "text">;
24
+ backgroundColor?: css.CssValue<css.CssColor>;
25
25
  backgroundComposite?: any;
26
- backgroundImage?: types.CssValue<types.CssImage>;
27
- backgroundOrigin?: types.CssValue<types.CssBox>;
28
- backgroundPosition?: types.CssValue<types.CssPosition>;
29
- backgroundRepeat?: types.CssValue<types.CssRepeatStyle | string>;
30
- backgroundSize?: types.BackgroundSize | types.CssLength | types.CssPercentage | types.CssGlobalValues;
26
+ backgroundImage?: css.CssValue<css.CssImage>;
27
+ backgroundOrigin?: css.CssValue<css.CssBox>;
28
+ backgroundPosition?: css.CssValue<css.CssPosition>;
29
+ backgroundRepeat?: css.CssValue<css.CssRepeatStyle | string>;
30
+ backgroundSize?: css.BackgroundSize | css.CssLength | css.CssPercentage | css.CssGlobalValues;
31
31
  baselineShift?: any;
32
32
  behavior?: any;
33
33
  border?: any;
34
- borderBottom?: types.CssBorderShorthand;
35
- borderBottomColor?: types.CssValue<types.CssColor>;
34
+ borderBottom?: css.CssBorderShorthand;
35
+ borderBottomColor?: css.CssValue<css.CssColor>;
36
36
  borderBottomLeftRadius?: any;
37
37
  borderBottomRightRadius?: any;
38
- borderBottomStyle?: types.CssValue<types.CssLineStyle>;
39
- borderBottomWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
38
+ borderBottomStyle?: css.CssValue<css.CssLineStyle>;
39
+ borderBottomWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
40
40
  borderCollapse?: any;
41
- borderColor?: types.CssValue<types.CssColorSet>;
41
+ borderColor?: css.CssValue<css.CssColorSet>;
42
42
  borderCornerShape?: any;
43
- borderImageSource?: types.CssValue<types.CssImage>;
44
- borderImageWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
45
- borderLeft?: types.CssBorderShorthand;
46
- borderLeftColor?: types.CssValue<types.CssColor>;
47
- borderLeftStyle?: types.CssValue<types.CssLineStyle>;
48
- borderLeftWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
49
- borderRadius?: types.CssValue<types.CssLength | types.CssPercentage>;
50
- borderRight?: types.CssBorderShorthand;
51
- borderRightColor?: types.CssValue<types.CssColor>;
52
- borderRightStyle?: types.CssValue<types.CssLineStyle>;
53
- borderRightWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
54
- borderSpacing?: types.CssLength | string | "inherit";
55
- borderStyle?: types.CssValue<types.CssLineStyleSet>;
56
- borderTop?: types.CssBorderShorthand;
57
- borderTopColor?: types.CssValue<types.CssColor>;
43
+ borderImageSource?: css.CssValue<css.CssImage>;
44
+ borderImageWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
45
+ borderLeft?: css.CssBorderShorthand;
46
+ borderLeftColor?: css.CssValue<css.CssColor>;
47
+ borderLeftStyle?: css.CssValue<css.CssLineStyle>;
48
+ borderLeftWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
49
+ borderRadius?: css.CssValue<css.CssLength | css.CssPercentage>;
50
+ borderRight?: css.CssBorderShorthand;
51
+ borderRightColor?: css.CssValue<css.CssColor>;
52
+ borderRightStyle?: css.CssValue<css.CssLineStyle>;
53
+ borderRightWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
54
+ borderSpacing?: css.CssLength | string | "inherit";
55
+ borderStyle?: css.CssValue<css.CssLineStyleSet>;
56
+ borderTop?: css.CssBorderShorthand;
57
+ borderTopColor?: css.CssValue<css.CssColor>;
58
58
  borderTopLeftRadius?: any;
59
59
  borderTopRightRadius?: any;
60
- borderTopStyle?: types.CssValue<types.CssLineStyle>;
61
- borderTopWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
62
- borderWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
63
- bottom?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>;
60
+ borderTopStyle?: css.CssValue<css.CssLineStyle>;
61
+ borderTopWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
62
+ borderWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
63
+ bottom?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>;
64
64
  boxAlign?: any;
65
65
  boxDecorationBreak?: any;
66
66
  boxDirection?: any;
@@ -68,45 +68,45 @@ export interface IStyle {
68
68
  boxLines?: any;
69
69
  boxOrdinalGroup?: any;
70
70
  boxFlex?: number;
71
- boxSizing?: types.CssGlobalValues | "content-box" | "border-box";
72
- boxShadow?: types.CssValueGeneral;
71
+ boxSizing?: css.CssGlobalValues | "content-box" | "border-box";
72
+ boxShadow?: css.CssValueGeneral;
73
73
  boxFlexGroup?: number;
74
- breakAfter?: types.BreakAfter;
75
- breakBefore?: types.BreakBefore;
76
- breakInside?: types.BreakInside;
77
- captionSide?: types.CaptionSide;
78
- clear?: types.CssGlobalValues | "none" | "left" | "right" | "both";
74
+ breakAfter?: css.BreakAfter;
75
+ breakBefore?: css.BreakBefore;
76
+ breakInside?: css.BreakInside;
77
+ captionSide?: css.CaptionSide;
78
+ clear?: css.CssGlobalValues | "none" | "left" | "right" | "both";
79
79
  clip?: any;
80
80
  clipRule?: any;
81
- color?: types.CssValue<types.CssColor>;
81
+ color?: css.CssValue<css.CssColor>;
82
82
  columnCount?: number | "auto" | "initial" | "inherit";
83
83
  columnFill?: any;
84
84
  columnGap?: any;
85
85
  columnRule?: any;
86
- columnRuleColor?: types.CssValue<types.CssColor>;
87
- columnRuleStyle?: types.CssValue<types.CssLineStyle>;
88
- columnRuleWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
86
+ columnRuleColor?: css.CssValue<css.CssColor>;
87
+ columnRuleStyle?: css.CssValue<css.CssLineStyle>;
88
+ columnRuleWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
89
89
  columnSpan?: any;
90
- columnWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
90
+ columnWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
91
91
  columns?: any;
92
- content?: types.CssValueString;
92
+ content?: css.CssValueString;
93
93
  counterIncrement?: any;
94
94
  counterReset?: any;
95
95
  cue?: any;
96
96
  cueAfter?: any;
97
- cursor?: types.Cursor;
98
- direction?: types.CssGlobalValues | "ltr" | "rtl";
99
- display?: types.CssValue<types.CssGlobalValues | types.CssDisplay>;
100
- dominantBaseline?: types.DominantBaseline;
101
- emptyCells?: types.CssGlobalValues | "show" | "hide";
102
- fill?: types.CssColor | "context-stroke" | "context-fill";
97
+ cursor?: css.Cursor;
98
+ direction?: css.CssGlobalValues | "ltr" | "rtl";
99
+ display?: css.CssValue<css.CssGlobalValues | css.CssDisplay>;
100
+ dominantBaseline?: css.DominantBaseline;
101
+ emptyCells?: css.CssGlobalValues | "show" | "hide";
102
+ fill?: css.CssColor | "context-stroke" | "context-fill";
103
103
  fillOpacity?: number;
104
104
  fillRule?: "nonzero" | "evenodd";
105
105
  filter?: string;
106
106
  flex?: number | string;
107
107
  flexAlign?: any;
108
108
  flexBasis?: any;
109
- flexDirection?: types.FlexDirection;
109
+ flexDirection?: css.FlexDirection;
110
110
  flexFlow?: any;
111
111
  flexGrow?: number;
112
112
  flexItemAlign?: any;
@@ -115,20 +115,20 @@ export interface IStyle {
115
115
  flexNegative?: any;
116
116
  flexOrder?: any;
117
117
  flexShrink?: number;
118
- flexWrap?: types.FlexWrap;
119
- float?: types.CssGlobalValues | "left" | "right" | "none" | "inline-start" | "inline-end";
118
+ flexWrap?: css.FlexWrap;
119
+ float?: css.CssGlobalValues | "left" | "right" | "none" | "inline-start" | "inline-end";
120
120
  flowFrom?: any;
121
121
  font?: any;
122
122
  fontFamily?: any;
123
- fontKerning?: types.CssGlobalValues | "auto" | "normal" | "none";
124
- fontSize?: types.CssValue<types.CssFontSize>;
123
+ fontKerning?: css.CssGlobalValues | "auto" | "normal" | "none";
124
+ fontSize?: css.CssValue<css.CssFontSize>;
125
125
  fontSizeAdjust?: any;
126
- fontStretch?: types.FontStretch;
127
- fontStyle?: types.CssGlobalValues | "normal" | "italic" | "oblique";
126
+ fontStretch?: css.FontStretch;
127
+ fontStyle?: css.CssGlobalValues | "normal" | "italic" | "oblique";
128
128
  fontSynthesis?: any;
129
129
  fontVariant?: any;
130
130
  fontVariantAlternates?: any;
131
- fontWeight?: types.CssFontWeight;
131
+ fontWeight?: css.CssFontWeight;
132
132
  gridArea?: any;
133
133
  gridAutoColumns?: any;
134
134
  gridAutoFlow?: any;
@@ -148,34 +148,34 @@ export interface IStyle {
148
148
  gridTemplateAreas?: any;
149
149
  gridTemplateColumns?: any;
150
150
  gridTemplateRows?: any;
151
- height?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>;
151
+ height?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>;
152
152
  hyphenateLimitChars?: any;
153
153
  hyphenateLimitLines?: any;
154
154
  hyphenateLimitZone?: any;
155
- hyphens?: types.CssGlobalValues | string | "none" | "manual" | "auto";
156
- imeMode?: types.CssGlobalValues | "auto" | "normal" | "active" | "inactive" | "disabled";
157
- justifyContent?: types.JustifyContent;
158
- justifyItems?: types.JustifyItems | ISubscribable<types.JustifyItems>;
159
- justifySelf?: types.JustifySelf;
155
+ hyphens?: css.CssGlobalValues | string | "none" | "manual" | "auto";
156
+ imeMode?: css.CssGlobalValues | "auto" | "normal" | "active" | "inactive" | "disabled";
157
+ justifyContent?: css.JustifyContent;
158
+ justifyItems?: css.JustifyItems | ISubscribable<css.JustifyItems>;
159
+ justifySelf?: css.JustifySelf;
160
160
  layoutGrid?: any;
161
161
  layoutGridChar?: any;
162
162
  layoutGridLine?: any;
163
163
  layoutGridMode?: any;
164
164
  layoutGridType?: any;
165
- left?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>;
165
+ left?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>;
166
166
  letterSpacing?: any;
167
167
  lineBreak?: any;
168
168
  lineClamp?: number;
169
- lineHeight?: types.CssValue<types.CssLength | types.CssPercentage>;
169
+ lineHeight?: css.CssValue<css.CssLength | css.CssPercentage>;
170
170
  listStyle?: any;
171
171
  listStyleImage?: any;
172
- listStylePosition?: types.CssGlobalValues | "inside" | "outside";
172
+ listStylePosition?: css.CssGlobalValues | "inside" | "outside";
173
173
  listStyleType?: any;
174
174
  margin?: any;
175
175
  marginBottom?: any;
176
176
  marginLeft?: any;
177
177
  marginRight?: any;
178
- marginTop?: types.CssValueGeneral;
178
+ marginTop?: css.CssValueGeneral;
179
179
  marqueeDirection?: any;
180
180
  marqueeStyle?: any;
181
181
  mask?: any;
@@ -183,54 +183,54 @@ export interface IStyle {
183
183
  maskBorderRepeat?: any;
184
184
  maskBorderSlice?: any;
185
185
  maskBorderSource?: any;
186
- maskBorderWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
186
+ maskBorderWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
187
187
  maskClip?: any;
188
188
  maskOrigin?: any;
189
189
  maxFontSize?: any;
190
- maxHeight?: types.CssValue<types.CssLength | types.CssPercentage>;
191
- maxWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
192
- minHeight?: types.CssValue<types.CssLength | types.CssPercentage>;
193
- minWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
194
- mixBlendMode?: types.CssValue<types.CssBlendMode>;
195
- objectFit?: types.CssObjectFit;
196
- objectPosition?: string | types.CssGlobalValues;
197
- opacity?: number | types.CssGlobalValues;
190
+ maxHeight?: css.CssValue<css.CssLength | css.CssPercentage>;
191
+ maxWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
192
+ minHeight?: css.CssValue<css.CssLength | css.CssPercentage>;
193
+ minWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
194
+ mixBlendMode?: css.CssValue<css.CssBlendMode>;
195
+ objectFit?: css.CssObjectFit;
196
+ objectPosition?: string | css.CssGlobalValues;
197
+ opacity?: number | css.CssGlobalValues;
198
198
  order?: number;
199
199
  orphans?: number;
200
200
  outline?: any;
201
- outlineColor?: types.CssValue<types.CssColor>;
202
- outlineStyle?: types.OutlineStyle;
201
+ outlineColor?: css.CssValue<css.CssColor>;
202
+ outlineStyle?: css.OutlineStyle;
203
203
  outlineOffset?: any;
204
- outlineWidth?: types.CssGlobalValues | "thin" | "medium" | "thick" | types.CssLength;
205
- overflow?: types.CssValue<types.CssOverflow>;
204
+ outlineWidth?: css.CssGlobalValues | "thin" | "medium" | "thick" | css.CssLength;
205
+ overflow?: css.CssValue<css.CssOverflow>;
206
206
  overflowStyle?: any;
207
- overflowWrap?: types.CssGlobalValues | "normal" | "break-word";
208
- overflowX?: types.CssValue<types.CssOverflow>;
209
- overflowY?: types.CssValue<types.CssOverflow>;
207
+ overflowWrap?: css.CssGlobalValues | "normal" | "break-word";
208
+ overflowX?: css.CssValue<css.CssOverflow>;
209
+ overflowY?: css.CssValue<css.CssOverflow>;
210
210
  padding?: any;
211
- paddingBottom?: types.CssValue<types.CssLength | types.CssPercentage>;
212
- paddingLeft?: types.CssValue<types.CssLength | types.CssPercentage>;
213
- paddingRight?: types.CssValue<types.CssLength | types.CssPercentage>;
214
- paddingTop?: types.CssValue<types.CssLength | types.CssPercentage>;
215
- pageBreakAfter?: types.PageBreakAfter;
216
- pageBreakBefore?: types.PageBreakBefore;
217
- pageBreakInside?: types.CssGlobalValues | "auto" | "avoid";
211
+ paddingBottom?: css.CssValue<css.CssLength | css.CssPercentage>;
212
+ paddingLeft?: css.CssValue<css.CssLength | css.CssPercentage>;
213
+ paddingRight?: css.CssValue<css.CssLength | css.CssPercentage>;
214
+ paddingTop?: css.CssValue<css.CssLength | css.CssPercentage>;
215
+ pageBreakAfter?: css.PageBreakAfter;
216
+ pageBreakBefore?: css.PageBreakBefore;
217
+ pageBreakInside?: css.CssGlobalValues | "auto" | "avoid";
218
218
  pause?: any;
219
219
  pauseAfter?: any;
220
220
  pauseBefore?: any;
221
221
  perspective?: any;
222
222
  perspectiveOrigin?: any;
223
- pointerEvents?: types.PointerEvents;
224
- position?: types.PositionX;
223
+ pointerEvents?: css.PointerEvents;
224
+ position?: css.PositionX;
225
225
  punctuationTrim?: any;
226
226
  quotes?: any;
227
227
  regionFragment?: any;
228
- resize?: types.CssGlobalValues | "none" | "both " | "horizontal" | "vertical";
228
+ resize?: css.CssGlobalValues | "none" | "both " | "horizontal" | "vertical";
229
229
  restAfter?: any;
230
230
  restBefore?: any;
231
- right?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>;
232
- rubyAlign?: types.CssGlobalValues | "start" | "center" | "space-between" | "space-around";
233
- rubyPosition?: types.CssGlobalValues | "over" | "under" | "inter-character";
231
+ right?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>;
232
+ rubyAlign?: css.CssGlobalValues | "start" | "center" | "space-between" | "space-around";
233
+ rubyPosition?: css.CssGlobalValues | "over" | "under" | "inter-character";
234
234
  rx?: number;
235
235
  ry?: number;
236
236
  shapeImageThreshold?: any;
@@ -239,71 +239,71 @@ export interface IStyle {
239
239
  shapeOutside?: any;
240
240
  speak?: any;
241
241
  speakAs?: any;
242
- src?: types.CssValueString;
242
+ src?: css.CssValueString;
243
243
  stroke?: string;
244
244
  strokeDasharray?: number[];
245
- strokeDashoffset?: types.CssValue<types.CssGlobalValues | types.CssLength | types.CssPercentage>;
246
- strokeLinecap?: types.CssGlobalValues | "butt" | "round" | "square";
245
+ strokeDashoffset?: css.CssValue<css.CssGlobalValues | css.CssLength | css.CssPercentage>;
246
+ strokeLinecap?: css.CssGlobalValues | "butt" | "round" | "square";
247
247
  strokeOpacity?: number;
248
- strokeWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
248
+ strokeWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
249
249
  tabSize?: any;
250
250
  tableLayout?: any;
251
251
  textAnchor?: "start" | "middle" | "end" | "inherit";
252
- textAlign?: types.TextAlign;
253
- textAlignLast?: types.TextAlignLast;
252
+ textAlign?: css.TextAlign;
253
+ textAlignLast?: css.TextAlignLast;
254
254
  textDecoration?: any;
255
- textDecorationColor?: types.CssValue<types.CssColor>;
255
+ textDecorationColor?: css.CssValue<css.CssColor>;
256
256
  textDecorationLine?: any;
257
257
  textDecorationLineThrough?: any;
258
258
  textDecorationNone?: any;
259
259
  textDecorationOverline?: any;
260
260
  textDecorationSkip?: any;
261
- textDecorationStyle?: types.CssGlobalValues | "solid" | "double" | "dotted" | "dashed" | "wavy";
261
+ textDecorationStyle?: css.CssGlobalValues | "solid" | "double" | "dotted" | "dashed" | "wavy";
262
262
  textDecorationUnderline?: any;
263
263
  textEmphasis?: any;
264
- textEmphasisColor?: types.CssValue<types.CssColor>;
264
+ textEmphasisColor?: css.CssValue<css.CssColor>;
265
265
  textEmphasisStyle?: any;
266
- textHeight?: types.CssValue<types.CssLength | types.CssPercentage>;
266
+ textHeight?: css.CssValue<css.CssLength | css.CssPercentage>;
267
267
  textIndent?: any;
268
268
  textJustifyTrim?: any;
269
269
  textKashidaSpace?: any;
270
270
  textLineThrough?: any;
271
- textLineThroughColor?: types.CssValue<types.CssColor>;
271
+ textLineThroughColor?: css.CssValue<css.CssColor>;
272
272
  textLineThroughMode?: any;
273
273
  textLineThroughStyle?: any;
274
- textLineThroughWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
275
- textOverflow?: types.CssGlobalValues | "clip" | "ellipsis" | string;
274
+ textLineThroughWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
275
+ textOverflow?: css.CssGlobalValues | "clip" | "ellipsis" | string;
276
276
  textOverline?: any;
277
- textOverlineColor?: types.CssValue<types.CssColor>;
277
+ textOverlineColor?: css.CssValue<css.CssColor>;
278
278
  textOverlineMode?: any;
279
279
  textOverlineStyle?: any;
280
- textOverlineWidth?: types.CssValue<types.CssLength | types.CssPercentage>;
281
- textRendering?: types.CssGlobalValues | "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision";
280
+ textOverlineWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
281
+ textRendering?: css.CssGlobalValues | "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision";
282
282
  textScript?: any;
283
283
  textShadow?: any;
284
- textTransform?: types.TextTransform;
284
+ textTransform?: css.TextTransform;
285
285
  textUnderlinePosition?: any;
286
286
  textUnderlineStyle?: any;
287
- top?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>;
288
- touchAction?: types.TouchAction;
289
- transform?: types.CssTransformFunction;
290
- webKitTransform?: types.CssTransformFunction;
291
- msTransform?: types.CssTransformFunction;
287
+ top?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>;
288
+ touchAction?: css.TouchAction;
289
+ transform?: css.CssTransformFunction;
290
+ webKitTransform?: css.CssTransformFunction;
291
+ msTransform?: css.CssTransformFunction;
292
292
  transformOrigin?: any;
293
293
  transformOriginZ?: any;
294
- transformStyle?: types.CssGlobalValues | "flat" | "preserve-3d";
294
+ transformStyle?: css.CssGlobalValues | "flat" | "preserve-3d";
295
295
  transition?: any;
296
296
  transitionDelay?: any;
297
297
  transitionDuration?: any;
298
- transitionProperty?: types.CssValueString;
299
- transitionTimingFunction?: types.CssTimingFunction;
298
+ transitionProperty?: css.CssValueString;
299
+ transitionTimingFunction?: css.CssTimingFunction;
300
300
  unicodeBidi?: any;
301
301
  unicodeRange?: any;
302
302
  userFocus?: any;
303
303
  userInput?: any;
304
304
  userSelect?: "auto" | "text" | "none" | "contain" | "all";
305
- verticalAlign?: types.VerticalAlign;
306
- visibility?: types.CssGlobalValues | "visible" | "hidden" | "collapse";
305
+ verticalAlign?: css.VerticalAlign;
306
+ visibility?: css.CssGlobalValues | "visible" | "hidden" | "collapse";
307
307
  voiceBalance?: any;
308
308
  voiceDuration?: any;
309
309
  voiceFamily?: any;
@@ -312,82 +312,82 @@ export interface IStyle {
312
312
  voiceRate?: any;
313
313
  voiceStress?: any;
314
314
  voiceVolume?: any;
315
- whiteSpace?: types.CssGlobalValues | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";
315
+ whiteSpace?: css.CssGlobalValues | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";
316
316
  whiteSpaceTreatment?: any;
317
317
  widows?: number;
318
- width?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>;
319
- willChange?: types.CssValue<"auto" | "scroll-position" | "contents" | types.CssValueString>;
320
- wordBreak?: types.CssGlobalValues | "normal" | "break-all" | "keep-all";
321
- wordSpacing?: types.CssGlobalValues | "normal" | types.CssLength | types.CssPercentage;
322
- wordWrap?: types.CssGlobalValues | "normal" | "break-word";
318
+ width?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>;
319
+ willChange?: css.CssValue<"auto" | "scroll-position" | "contents" | css.CssValueString>;
320
+ wordBreak?: css.CssGlobalValues | "normal" | "break-all" | "keep-all";
321
+ wordSpacing?: css.CssGlobalValues | "normal" | css.CssLength | css.CssPercentage;
322
+ wordWrap?: css.CssGlobalValues | "normal" | "break-word";
323
323
  wrapFlow?: any;
324
324
  wrapMargin?: any;
325
325
  wrapOption?: any;
326
- writingMode?: types.WritingMode;
327
- zIndex?: types.CssGlobalValues | "auto" | number;
326
+ writingMode?: css.WritingMode;
327
+ zIndex?: css.CssGlobalValues | "auto" | number;
328
328
  zoom?: "auto" | number;
329
329
  }
330
330
  export interface IStyleSubscribable {
331
- alignContent?: types.AlignContent | ISubscribable<types.AlignContent>;
332
- alignItems?: types.CssValue<types.AlignItems> | ISubscribable<types.CssValue<types.AlignItems>>;
333
- alignSelf?: types.CssValue<types.AlignSelf> | ISubscribable<types.CssValue<types.AlignSelf>>;
331
+ alignContent?: css.AlignContent | ISubscribable<css.AlignContent>;
332
+ alignItems?: css.CssValue<css.AlignItems> | ISubscribable<css.CssValue<css.AlignItems>>;
333
+ alignSelf?: css.CssValue<css.AlignSelf> | ISubscribable<css.CssValue<css.AlignSelf>>;
334
334
  alignmentAdjust?: any | ISubscribable<any>;
335
- alignmentBaseline?: types.AlignmentBaseline | ISubscribable<types.AlignmentBaseline>;
336
- animation?: types.CssValueString | ISubscribable<types.CssValueString>;
335
+ alignmentBaseline?: css.AlignmentBaseline | ISubscribable<css.AlignmentBaseline>;
336
+ animation?: css.CssValueString | ISubscribable<css.CssValueString>;
337
337
  animationDelay?: any | ISubscribable<any>;
338
- animationDirection?: types.CssGlobalValues | types.AnimationDirection | ISubscribable<types.CssGlobalValues | types.AnimationDirection>;
339
- animationDuration?: types.CssValue<string> | ISubscribable<types.CssValue<string>>;
340
- animationFillMode?: types.AnimationFillMode | ISubscribable<types.AnimationFillMode>;
341
- animationIterationCount?: types.CssValue<number> | "infinite" | ISubscribable<types.CssValue<number> | "infinite">;
342
- animationName?: types.CssValue<string> | ISubscribable<types.CssValue<string>>;
343
- animationPlayState?: types.CssValue<types.CssAnimationPlayState> | ISubscribable<types.CssValue<types.CssAnimationPlayState>>;
344
- animationTimingFunction?: types.CssValue<types.CssTimingFunction> | ISubscribable<types.CssValue<types.CssTimingFunction>>;
345
- appearance?: types.CssValue<"auto" | "none"> | ISubscribable<types.CssValue<"auto" | "none">>;
346
- backfaceVisibility?: types.CssGlobalValues | "visible" | "hidden" | ISubscribable<types.CssGlobalValues | "visible" | "hidden">;
338
+ animationDirection?: css.CssGlobalValues | css.AnimationDirection | ISubscribable<css.CssGlobalValues | css.AnimationDirection>;
339
+ animationDuration?: css.CssValue<string> | ISubscribable<css.CssValue<string>>;
340
+ animationFillMode?: css.AnimationFillMode | ISubscribable<css.AnimationFillMode>;
341
+ animationIterationCount?: css.CssValue<number> | "infinite" | ISubscribable<css.CssValue<number> | "infinite">;
342
+ animationName?: css.CssValue<string> | ISubscribable<css.CssValue<string>>;
343
+ animationPlayState?: css.CssValue<css.CssAnimationPlayState> | ISubscribable<css.CssValue<css.CssAnimationPlayState>>;
344
+ animationTimingFunction?: css.CssValue<css.CssTimingFunction> | ISubscribable<css.CssValue<css.CssTimingFunction>>;
345
+ appearance?: css.CssValue<"auto" | "none"> | ISubscribable<css.CssValue<"auto" | "none">>;
346
+ backfaceVisibility?: css.CssGlobalValues | "visible" | "hidden" | ISubscribable<css.CssGlobalValues | "visible" | "hidden">;
347
347
  background?: any | ISubscribable<any>;
348
- backgroundAttachment?: types.BackgroundAttachment | ISubscribable<types.BackgroundAttachment>;
349
- backgroundBlendMode?: types.CssValue<types.CssBlendMode> | ISubscribable<types.CssValue<types.CssBlendMode>>;
350
- backgroundClip?: types.CssValue<types.CssBox | "text"> | ISubscribable<types.CssValue<types.CssBox | "text">>;
351
- backgroundColor?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
348
+ backgroundAttachment?: css.BackgroundAttachment | ISubscribable<css.BackgroundAttachment>;
349
+ backgroundBlendMode?: css.CssValue<css.CssBlendMode> | ISubscribable<css.CssValue<css.CssBlendMode>>;
350
+ backgroundClip?: css.CssValue<css.CssBox | "text"> | ISubscribable<css.CssValue<css.CssBox | "text">>;
351
+ backgroundColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
352
352
  backgroundComposite?: any | ISubscribable<any>;
353
- backgroundImage?: types.CssValue<types.CssImage> | ISubscribable<types.CssValue<types.CssImage>>;
354
- backgroundOrigin?: types.CssValue<types.CssBox> | ISubscribable<types.CssValue<types.CssBox>>;
355
- backgroundPosition?: types.CssValue<types.CssPosition> | ISubscribable<types.CssValue<types.CssPosition>>;
356
- backgroundRepeat?: types.CssValue<types.CssRepeatStyle | string> | ISubscribable<types.CssValue<types.CssRepeatStyle | string>>;
357
- backgroundSize?: types.BackgroundSize | types.CssLength | types.CssPercentage | types.CssGlobalValues | ISubscribable<types.BackgroundSize | types.CssLength | types.CssPercentage | types.CssGlobalValues>;
353
+ backgroundImage?: css.CssValue<css.CssImage> | ISubscribable<css.CssValue<css.CssImage>>;
354
+ backgroundOrigin?: css.CssValue<css.CssBox> | ISubscribable<css.CssValue<css.CssBox>>;
355
+ backgroundPosition?: css.CssValue<css.CssPosition> | ISubscribable<css.CssValue<css.CssPosition>>;
356
+ backgroundRepeat?: css.CssValue<css.CssRepeatStyle | string> | ISubscribable<css.CssValue<css.CssRepeatStyle | string>>;
357
+ backgroundSize?: css.BackgroundSize | css.CssLength | css.CssPercentage | css.CssGlobalValues | ISubscribable<css.BackgroundSize | css.CssLength | css.CssPercentage | css.CssGlobalValues>;
358
358
  baselineShift?: any | ISubscribable<any>;
359
359
  behavior?: any | ISubscribable<any>;
360
360
  border?: any | ISubscribable<any>;
361
- borderBottom?: types.CssBorderShorthand | ISubscribable<types.CssBorderShorthand>;
362
- borderBottomColor?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
361
+ borderBottom?: css.CssBorderShorthand | ISubscribable<css.CssBorderShorthand>;
362
+ borderBottomColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
363
363
  borderBottomLeftRadius?: any | ISubscribable<any>;
364
364
  borderBottomRightRadius?: any | ISubscribable<any>;
365
- borderBottomStyle?: types.CssValue<types.CssLineStyle> | ISubscribable<types.CssValue<types.CssLineStyle>>;
366
- borderBottomWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
365
+ borderBottomStyle?: css.CssValue<css.CssLineStyle> | ISubscribable<css.CssValue<css.CssLineStyle>>;
366
+ borderBottomWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
367
367
  borderCollapse?: any | ISubscribable<any>;
368
- borderColor?: types.CssValue<types.CssColorSet> | ISubscribable<types.CssValue<types.CssColorSet>>;
368
+ borderColor?: css.CssValue<css.CssColorSet> | ISubscribable<css.CssValue<css.CssColorSet>>;
369
369
  borderCornerShape?: any | ISubscribable<any>;
370
- borderImageSource?: types.CssValue<types.CssImage> | ISubscribable<types.CssValue<types.CssImage>>;
371
- borderImageWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
372
- borderLeft?: types.CssBorderShorthand | ISubscribable<types.CssBorderShorthand>;
373
- borderLeftColor?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
374
- borderLeftStyle?: types.CssValue<types.CssLineStyle> | ISubscribable<types.CssValue<types.CssLineStyle>>;
375
- borderLeftWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
376
- borderRadius?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
377
- borderRight?: types.CssBorderShorthand | ISubscribable<types.CssBorderShorthand>;
378
- borderRightColor?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
379
- borderRightStyle?: types.CssValue<types.CssLineStyle> | ISubscribable<types.CssValue<types.CssLineStyle>>;
380
- borderRightWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
381
- borderSpacing?: types.CssLength | string | "inherit" | ISubscribable<types.CssLength | string | "inherit">;
382
- borderStyle?: types.CssValue<types.CssLineStyleSet> | ISubscribable<types.CssValue<types.CssLineStyleSet>>;
383
- borderTop?: types.CssBorderShorthand | ISubscribable<types.CssBorderShorthand>;
384
- borderTopColor?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
370
+ borderImageSource?: css.CssValue<css.CssImage> | ISubscribable<css.CssValue<css.CssImage>>;
371
+ borderImageWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
372
+ borderLeft?: css.CssBorderShorthand | ISubscribable<css.CssBorderShorthand>;
373
+ borderLeftColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
374
+ borderLeftStyle?: css.CssValue<css.CssLineStyle> | ISubscribable<css.CssValue<css.CssLineStyle>>;
375
+ borderLeftWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
376
+ borderRadius?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
377
+ borderRight?: css.CssBorderShorthand | ISubscribable<css.CssBorderShorthand>;
378
+ borderRightColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
379
+ borderRightStyle?: css.CssValue<css.CssLineStyle> | ISubscribable<css.CssValue<css.CssLineStyle>>;
380
+ borderRightWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
381
+ borderSpacing?: css.CssLength | string | "inherit" | ISubscribable<css.CssLength | string | "inherit">;
382
+ borderStyle?: css.CssValue<css.CssLineStyleSet> | ISubscribable<css.CssValue<css.CssLineStyleSet>>;
383
+ borderTop?: css.CssBorderShorthand | ISubscribable<css.CssBorderShorthand>;
384
+ borderTopColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
385
385
  borderTopLeftRadius?: any | ISubscribable<any>;
386
386
  borderTopRightRadius?: any | ISubscribable<any>;
387
- borderTopStyle?: types.CssValue<types.CssLineStyle> | ISubscribable<types.CssValue<types.CssLineStyle>>;
388
- borderTopWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
389
- borderWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
390
- bottom?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | ISubscribable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
387
+ borderTopStyle?: css.CssValue<css.CssLineStyle> | ISubscribable<css.CssValue<css.CssLineStyle>>;
388
+ borderTopWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
389
+ borderWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
390
+ bottom?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues> | ISubscribable<css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>>;
391
391
  boxAlign?: any | ISubscribable<any>;
392
392
  boxDecorationBreak?: any | ISubscribable<any>;
393
393
  boxDirection?: any | ISubscribable<any>;
@@ -395,45 +395,45 @@ export interface IStyleSubscribable {
395
395
  boxLines?: any | ISubscribable<any>;
396
396
  boxOrdinalGroup?: any | ISubscribable<any>;
397
397
  boxFlex?: number | ISubscribable<number>;
398
- boxSizing?: types.CssGlobalValues | "content-box" | "border-box" | ISubscribable<types.CssGlobalValues | "content-box" | "border-box">;
399
- boxShadow?: types.CssValueGeneral | ISubscribable<types.CssValueGeneral>;
398
+ boxSizing?: css.CssGlobalValues | "content-box" | "border-box" | ISubscribable<css.CssGlobalValues | "content-box" | "border-box">;
399
+ boxShadow?: css.CssValueGeneral | ISubscribable<css.CssValueGeneral>;
400
400
  boxFlexGroup?: number | ISubscribable<number>;
401
- breakAfter?: types.BreakAfter | ISubscribable<types.BreakAfter>;
402
- breakBefore?: types.BreakBefore | ISubscribable<types.BreakBefore>;
403
- breakInside?: types.BreakInside | ISubscribable<types.BreakInside>;
404
- captionSide?: types.CaptionSide | ISubscribable<types.CaptionSide>;
405
- clear?: types.CssGlobalValues | "none" | "left" | "right" | "both" | ISubscribable<types.CssGlobalValues | "none" | "left" | "right" | "both">;
401
+ breakAfter?: css.BreakAfter | ISubscribable<css.BreakAfter>;
402
+ breakBefore?: css.BreakBefore | ISubscribable<css.BreakBefore>;
403
+ breakInside?: css.BreakInside | ISubscribable<css.BreakInside>;
404
+ captionSide?: css.CaptionSide | ISubscribable<css.CaptionSide>;
405
+ clear?: css.CssGlobalValues | "none" | "left" | "right" | "both" | ISubscribable<css.CssGlobalValues | "none" | "left" | "right" | "both">;
406
406
  clip?: any | ISubscribable<any>;
407
407
  clipRule?: any | ISubscribable<any>;
408
- color?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
408
+ color?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
409
409
  columnCount?: number | "auto" | "initial" | "inherit" | ISubscribable<number | "auto" | "initial" | "inherit">;
410
410
  columnFill?: any | ISubscribable<any>;
411
411
  columnGap?: any | ISubscribable<any>;
412
412
  columnRule?: any | ISubscribable<any>;
413
- columnRuleColor?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
414
- columnRuleStyle?: types.CssValue<types.CssLineStyle> | ISubscribable<types.CssValue<types.CssLineStyle>>;
415
- columnRuleWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
413
+ columnRuleColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
414
+ columnRuleStyle?: css.CssValue<css.CssLineStyle> | ISubscribable<css.CssValue<css.CssLineStyle>>;
415
+ columnRuleWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
416
416
  columnSpan?: any | ISubscribable<any>;
417
- columnWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
417
+ columnWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
418
418
  columns?: any | ISubscribable<any>;
419
- content?: types.CssValueString | ISubscribable<types.CssValueString>;
419
+ content?: css.CssValueString | ISubscribable<css.CssValueString>;
420
420
  counterIncrement?: any | ISubscribable<any>;
421
421
  counterReset?: any | ISubscribable<any>;
422
422
  cue?: any | ISubscribable<any>;
423
423
  cueAfter?: any | ISubscribable<any>;
424
- cursor?: types.Cursor | ISubscribable<types.Cursor>;
425
- direction?: types.CssGlobalValues | "ltr" | "rtl" | ISubscribable<types.CssGlobalValues | "ltr" | "rtl">;
426
- display?: types.CssValue<types.CssGlobalValues | types.CssDisplay> | ISubscribable<types.CssValue<types.CssGlobalValues | types.CssDisplay>>;
427
- dominantBaseline?: types.DominantBaseline | ISubscribable<types.DominantBaseline>;
428
- emptyCells?: types.CssGlobalValues | "show" | "hide" | ISubscribable<types.CssGlobalValues | "show" | "hide">;
429
- fill?: types.CssColor | "context-stroke" | "context-fill" | ISubscribable<types.CssColor | "context-stroke" | "context-fill">;
424
+ cursor?: css.Cursor | ISubscribable<css.Cursor>;
425
+ direction?: css.CssGlobalValues | "ltr" | "rtl" | ISubscribable<css.CssGlobalValues | "ltr" | "rtl">;
426
+ display?: css.CssValue<css.CssGlobalValues | css.CssDisplay> | ISubscribable<css.CssValue<css.CssGlobalValues | css.CssDisplay>>;
427
+ dominantBaseline?: css.DominantBaseline | ISubscribable<css.DominantBaseline>;
428
+ emptyCells?: css.CssGlobalValues | "show" | "hide" | ISubscribable<css.CssGlobalValues | "show" | "hide">;
429
+ fill?: css.CssColor | "context-stroke" | "context-fill" | ISubscribable<css.CssColor | "context-stroke" | "context-fill">;
430
430
  fillOpacity?: number | ISubscribable<number>;
431
431
  fillRule?: "nonzero" | "evenodd" | ISubscribable<"nonzero" | "evenodd">;
432
432
  filter?: string | ISubscribable<string>;
433
433
  flex?: number | string | ISubscribable<number | string>;
434
434
  flexAlign?: any | ISubscribable<any>;
435
435
  flexBasis?: any | ISubscribable<any>;
436
- flexDirection?: types.FlexDirection | ISubscribable<types.FlexDirection>;
436
+ flexDirection?: css.FlexDirection | ISubscribable<css.FlexDirection>;
437
437
  flexFlow?: any | ISubscribable<any>;
438
438
  flexGrow?: number | ISubscribable<number>;
439
439
  flexItemAlign?: any | ISubscribable<any>;
@@ -442,20 +442,20 @@ export interface IStyleSubscribable {
442
442
  flexNegative?: any | ISubscribable<any>;
443
443
  flexOrder?: any | ISubscribable<any>;
444
444
  flexShrink?: number | ISubscribable<number>;
445
- flexWrap?: types.FlexWrap | ISubscribable<types.FlexWrap>;
446
- float?: types.CssGlobalValues | "left" | "right" | "none" | "inline-start" | "inline-end" | ISubscribable<types.CssGlobalValues | "left" | "right" | "none" | "inline-start" | "inline-end">;
445
+ flexWrap?: css.FlexWrap | ISubscribable<css.FlexWrap>;
446
+ float?: css.CssGlobalValues | "left" | "right" | "none" | "inline-start" | "inline-end" | ISubscribable<css.CssGlobalValues | "left" | "right" | "none" | "inline-start" | "inline-end">;
447
447
  flowFrom?: any | ISubscribable<any>;
448
448
  font?: any | ISubscribable<any>;
449
449
  fontFamily?: any | ISubscribable<any>;
450
- fontKerning?: types.CssGlobalValues | "auto" | "normal" | "none" | ISubscribable<types.CssGlobalValues | "auto" | "normal" | "none">;
451
- fontSize?: types.CssValue<types.CssFontSize> | ISubscribable<types.CssValue<types.CssFontSize>>;
450
+ fontKerning?: css.CssGlobalValues | "auto" | "normal" | "none" | ISubscribable<css.CssGlobalValues | "auto" | "normal" | "none">;
451
+ fontSize?: css.CssValue<css.CssFontSize> | ISubscribable<css.CssValue<css.CssFontSize>>;
452
452
  fontSizeAdjust?: any | ISubscribable<any>;
453
- fontStretch?: types.FontStretch | ISubscribable<types.FontStretch>;
454
- fontStyle?: types.CssGlobalValues | "normal" | "italic" | "oblique" | ISubscribable<types.CssGlobalValues | "normal" | "italic" | "oblique">;
453
+ fontStretch?: css.FontStretch | ISubscribable<css.FontStretch>;
454
+ fontStyle?: css.CssGlobalValues | "normal" | "italic" | "oblique" | ISubscribable<css.CssGlobalValues | "normal" | "italic" | "oblique">;
455
455
  fontSynthesis?: any | ISubscribable<any>;
456
456
  fontVariant?: any | ISubscribable<any>;
457
457
  fontVariantAlternates?: any | ISubscribable<any>;
458
- fontWeight?: types.CssFontWeight | ISubscribable<types.CssFontWeight>;
458
+ fontWeight?: css.CssFontWeight | ISubscribable<css.CssFontWeight>;
459
459
  gridArea?: any | ISubscribable<any>;
460
460
  gridAutoColumns?: any | ISubscribable<any>;
461
461
  gridAutoFlow?: any | ISubscribable<any>;
@@ -475,34 +475,34 @@ export interface IStyleSubscribable {
475
475
  gridTemplateAreas?: any | ISubscribable<any>;
476
476
  gridTemplateColumns?: any | ISubscribable<any>;
477
477
  gridTemplateRows?: any | ISubscribable<any>;
478
- height?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | ISubscribable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
478
+ height?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues> | ISubscribable<css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>>;
479
479
  hyphenateLimitChars?: any | ISubscribable<any>;
480
480
  hyphenateLimitLines?: any | ISubscribable<any>;
481
481
  hyphenateLimitZone?: any | ISubscribable<any>;
482
- hyphens?: types.CssGlobalValues | string | "none" | "manual" | "auto" | ISubscribable<types.CssGlobalValues | string | "none" | "manual" | "auto">;
483
- imeMode?: types.CssGlobalValues | "auto" | "normal" | "active" | "inactive" | "disabled" | ISubscribable<types.CssGlobalValues | "auto" | "normal" | "active" | "inactive" | "disabled">;
484
- justifyContent?: types.JustifyContent | ISubscribable<types.JustifyContent>;
485
- justifyItems?: types.JustifyItems | ISubscribable<types.JustifyItems>;
486
- justifySelf?: types.JustifySelf | ISubscribable<types.JustifySelf>;
482
+ hyphens?: css.CssGlobalValues | string | "none" | "manual" | "auto" | ISubscribable<css.CssGlobalValues | string | "none" | "manual" | "auto">;
483
+ imeMode?: css.CssGlobalValues | "auto" | "normal" | "active" | "inactive" | "disabled" | ISubscribable<css.CssGlobalValues | "auto" | "normal" | "active" | "inactive" | "disabled">;
484
+ justifyContent?: css.JustifyContent | ISubscribable<css.JustifyContent>;
485
+ justifyItems?: css.JustifyItems | ISubscribable<css.JustifyItems>;
486
+ justifySelf?: css.JustifySelf | ISubscribable<css.JustifySelf>;
487
487
  layoutGrid?: any | ISubscribable<any>;
488
488
  layoutGridChar?: any | ISubscribable<any>;
489
489
  layoutGridLine?: any | ISubscribable<any>;
490
490
  layoutGridMode?: any | ISubscribable<any>;
491
491
  layoutGridType?: any | ISubscribable<any>;
492
- left?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | ISubscribable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
492
+ left?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues> | ISubscribable<css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>>;
493
493
  letterSpacing?: any | ISubscribable<any>;
494
494
  lineBreak?: any | ISubscribable<any>;
495
495
  lineClamp?: number | ISubscribable<number>;
496
- lineHeight?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
496
+ lineHeight?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
497
497
  listStyle?: any | ISubscribable<any>;
498
498
  listStyleImage?: any | ISubscribable<any>;
499
- listStylePosition?: types.CssGlobalValues | "inside" | "outside" | ISubscribable<types.CssGlobalValues | "inside" | "outside">;
499
+ listStylePosition?: css.CssGlobalValues | "inside" | "outside" | ISubscribable<css.CssGlobalValues | "inside" | "outside">;
500
500
  listStyleType?: any | ISubscribable<any>;
501
501
  margin?: any | ISubscribable<any>;
502
502
  marginBottom?: any | ISubscribable<any>;
503
503
  marginLeft?: any | ISubscribable<any>;
504
504
  marginRight?: any | ISubscribable<any>;
505
- marginTop?: types.CssValueGeneral | ISubscribable<types.CssValueGeneral>;
505
+ marginTop?: css.CssValueGeneral | ISubscribable<css.CssValueGeneral>;
506
506
  marqueeDirection?: any | ISubscribable<any>;
507
507
  marqueeStyle?: any | ISubscribable<any>;
508
508
  mask?: any | ISubscribable<any>;
@@ -510,54 +510,54 @@ export interface IStyleSubscribable {
510
510
  maskBorderRepeat?: any | ISubscribable<any>;
511
511
  maskBorderSlice?: any | ISubscribable<any>;
512
512
  maskBorderSource?: any | ISubscribable<any>;
513
- maskBorderWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
513
+ maskBorderWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
514
514
  maskClip?: any | ISubscribable<any>;
515
515
  maskOrigin?: any | ISubscribable<any>;
516
516
  maxFontSize?: any | ISubscribable<any>;
517
- maxHeight?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
518
- maxWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
519
- minHeight?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
520
- minWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
521
- mixBlendMode?: types.CssValue<types.CssBlendMode> | ISubscribable<types.CssValue<types.CssBlendMode>>;
522
- objectFit?: types.CssObjectFit | ISubscribable<types.CssObjectFit>;
523
- objectPosition?: string | types.CssGlobalValues | ISubscribable<string | types.CssGlobalValues>;
524
- opacity?: number | types.CssGlobalValues | ISubscribable<number | types.CssGlobalValues>;
517
+ maxHeight?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
518
+ maxWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
519
+ minHeight?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
520
+ minWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
521
+ mixBlendMode?: css.CssValue<css.CssBlendMode> | ISubscribable<css.CssValue<css.CssBlendMode>>;
522
+ objectFit?: css.CssObjectFit | ISubscribable<css.CssObjectFit>;
523
+ objectPosition?: string | css.CssGlobalValues | ISubscribable<string | css.CssGlobalValues>;
524
+ opacity?: number | css.CssGlobalValues | ISubscribable<number | css.CssGlobalValues>;
525
525
  order?: number | ISubscribable<number>;
526
526
  orphans?: number | ISubscribable<number>;
527
527
  outline?: any | ISubscribable<any>;
528
- outlineColor?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
529
- outlineStyle?: types.OutlineStyle | ISubscribable<types.OutlineStyle>;
528
+ outlineColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
529
+ outlineStyle?: css.OutlineStyle | ISubscribable<css.OutlineStyle>;
530
530
  outlineOffset?: any | ISubscribable<any>;
531
- outlineWidth?: types.CssGlobalValues | "thin" | "medium" | "thick" | types.CssLength | ISubscribable<types.CssGlobalValues | "thin" | "medium" | "thick" | types.CssLength>;
532
- overflow?: types.CssValue<types.CssOverflow> | ISubscribable<types.CssValue<types.CssOverflow>>;
531
+ outlineWidth?: css.CssGlobalValues | "thin" | "medium" | "thick" | css.CssLength | ISubscribable<css.CssGlobalValues | "thin" | "medium" | "thick" | css.CssLength>;
532
+ overflow?: css.CssValue<css.CssOverflow> | ISubscribable<css.CssValue<css.CssOverflow>>;
533
533
  overflowStyle?: any | ISubscribable<any>;
534
- overflowWrap?: types.CssGlobalValues | "normal" | "break-word" | ISubscribable<types.CssGlobalValues | "normal" | "break-word">;
535
- overflowX?: types.CssValue<types.CssOverflow> | ISubscribable<types.CssValue<types.CssOverflow>>;
536
- overflowY?: types.CssValue<types.CssOverflow> | ISubscribable<types.CssValue<types.CssOverflow>>;
534
+ overflowWrap?: css.CssGlobalValues | "normal" | "break-word" | ISubscribable<css.CssGlobalValues | "normal" | "break-word">;
535
+ overflowX?: css.CssValue<css.CssOverflow> | ISubscribable<css.CssValue<css.CssOverflow>>;
536
+ overflowY?: css.CssValue<css.CssOverflow> | ISubscribable<css.CssValue<css.CssOverflow>>;
537
537
  padding?: any | ISubscribable<any>;
538
- paddingBottom?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
539
- paddingLeft?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
540
- paddingRight?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
541
- paddingTop?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
542
- pageBreakAfter?: types.PageBreakAfter | ISubscribable<types.PageBreakAfter>;
543
- pageBreakBefore?: types.PageBreakBefore | ISubscribable<types.PageBreakBefore>;
544
- pageBreakInside?: types.CssGlobalValues | "auto" | "avoid" | ISubscribable<types.CssGlobalValues | "auto" | "avoid">;
538
+ paddingBottom?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
539
+ paddingLeft?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
540
+ paddingRight?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
541
+ paddingTop?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
542
+ pageBreakAfter?: css.PageBreakAfter | ISubscribable<css.PageBreakAfter>;
543
+ pageBreakBefore?: css.PageBreakBefore | ISubscribable<css.PageBreakBefore>;
544
+ pageBreakInside?: css.CssGlobalValues | "auto" | "avoid" | ISubscribable<css.CssGlobalValues | "auto" | "avoid">;
545
545
  pause?: any | ISubscribable<any>;
546
546
  pauseAfter?: any | ISubscribable<any>;
547
547
  pauseBefore?: any | ISubscribable<any>;
548
548
  perspective?: any | ISubscribable<any>;
549
549
  perspectiveOrigin?: any | ISubscribable<any>;
550
- pointerEvents?: types.PointerEvents | ISubscribable<types.PointerEvents>;
551
- position?: types.PositionX | ISubscribable<types.PositionX>;
550
+ pointerEvents?: css.PointerEvents | ISubscribable<css.PointerEvents>;
551
+ position?: css.PositionX | ISubscribable<css.PositionX>;
552
552
  punctuationTrim?: any | ISubscribable<any>;
553
553
  quotes?: any | ISubscribable<any>;
554
554
  regionFragment?: any | ISubscribable<any>;
555
- resize?: types.CssGlobalValues | "none" | "both " | "horizontal" | "vertical" | ISubscribable<types.CssGlobalValues | "none" | "both " | "horizontal" | "vertical">;
555
+ resize?: css.CssGlobalValues | "none" | "both " | "horizontal" | "vertical" | ISubscribable<css.CssGlobalValues | "none" | "both " | "horizontal" | "vertical">;
556
556
  restAfter?: any | ISubscribable<any>;
557
557
  restBefore?: any | ISubscribable<any>;
558
- right?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | ISubscribable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
559
- rubyAlign?: types.CssGlobalValues | "start" | "center" | "space-between" | "space-around" | ISubscribable<types.CssGlobalValues | "start" | "center" | "space-between" | "space-around">;
560
- rubyPosition?: types.CssGlobalValues | "over" | "under" | "inter-character" | ISubscribable<types.CssGlobalValues | "over" | "under" | "inter-character">;
558
+ right?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues> | ISubscribable<css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>>;
559
+ rubyAlign?: css.CssGlobalValues | "start" | "center" | "space-between" | "space-around" | ISubscribable<css.CssGlobalValues | "start" | "center" | "space-between" | "space-around">;
560
+ rubyPosition?: css.CssGlobalValues | "over" | "under" | "inter-character" | ISubscribable<css.CssGlobalValues | "over" | "under" | "inter-character">;
561
561
  rx?: number | ISubscribable<number>;
562
562
  ry?: number | ISubscribable<number>;
563
563
  shapeImageThreshold?: any | ISubscribable<any>;
@@ -566,71 +566,71 @@ export interface IStyleSubscribable {
566
566
  shapeOutside?: any | ISubscribable<any>;
567
567
  speak?: any | ISubscribable<any>;
568
568
  speakAs?: any | ISubscribable<any>;
569
- src?: types.CssValueString | ISubscribable<types.CssValueString>;
569
+ src?: css.CssValueString | ISubscribable<css.CssValueString>;
570
570
  stroke?: string | ISubscribable<string>;
571
571
  strokeDasharray?: number[] | ISubscribable<number[]>;
572
- strokeDashoffset?: types.CssValue<types.CssGlobalValues | types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssGlobalValues | types.CssLength | types.CssPercentage>>;
573
- strokeLinecap?: types.CssGlobalValues | "butt" | "round" | "square" | ISubscribable<types.CssGlobalValues | "butt" | "round" | "square">;
572
+ strokeDashoffset?: css.CssValue<css.CssGlobalValues | css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssGlobalValues | css.CssLength | css.CssPercentage>>;
573
+ strokeLinecap?: css.CssGlobalValues | "butt" | "round" | "square" | ISubscribable<css.CssGlobalValues | "butt" | "round" | "square">;
574
574
  strokeOpacity?: number | ISubscribable<number>;
575
- strokeWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
575
+ strokeWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
576
576
  tabSize?: any | ISubscribable<any>;
577
577
  tableLayout?: any | ISubscribable<any>;
578
578
  textAnchor?: "start" | "middle" | "end" | "inherit" | ISubscribable<"start" | "middle" | "end" | "inherit">;
579
- textAlign?: types.TextAlign | ISubscribable<types.TextAlign>;
580
- textAlignLast?: types.TextAlignLast | ISubscribable<types.TextAlignLast>;
579
+ textAlign?: css.TextAlign | ISubscribable<css.TextAlign>;
580
+ textAlignLast?: css.TextAlignLast | ISubscribable<css.TextAlignLast>;
581
581
  textDecoration?: any | ISubscribable<any>;
582
- textDecorationColor?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
582
+ textDecorationColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
583
583
  textDecorationLine?: any | ISubscribable<any>;
584
584
  textDecorationLineThrough?: any | ISubscribable<any>;
585
585
  textDecorationNone?: any | ISubscribable<any>;
586
586
  textDecorationOverline?: any | ISubscribable<any>;
587
587
  textDecorationSkip?: any | ISubscribable<any>;
588
- textDecorationStyle?: types.CssGlobalValues | "solid" | "double" | "dotted" | "dashed" | "wavy" | ISubscribable<types.CssGlobalValues | "solid" | "double" | "dotted" | "dashed" | "wavy">;
588
+ textDecorationStyle?: css.CssGlobalValues | "solid" | "double" | "dotted" | "dashed" | "wavy" | ISubscribable<css.CssGlobalValues | "solid" | "double" | "dotted" | "dashed" | "wavy">;
589
589
  textDecorationUnderline?: any | ISubscribable<any>;
590
590
  textEmphasis?: any | ISubscribable<any>;
591
- textEmphasisColor?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
591
+ textEmphasisColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
592
592
  textEmphasisStyle?: any | ISubscribable<any>;
593
- textHeight?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
593
+ textHeight?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
594
594
  textIndent?: any | ISubscribable<any>;
595
595
  textJustifyTrim?: any | ISubscribable<any>;
596
596
  textKashidaSpace?: any | ISubscribable<any>;
597
597
  textLineThrough?: any | ISubscribable<any>;
598
- textLineThroughColor?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
598
+ textLineThroughColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
599
599
  textLineThroughMode?: any | ISubscribable<any>;
600
600
  textLineThroughStyle?: any | ISubscribable<any>;
601
- textLineThroughWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
602
- textOverflow?: types.CssGlobalValues | "clip" | "ellipsis" | string | ISubscribable<types.CssGlobalValues | "clip" | "ellipsis" | string>;
601
+ textLineThroughWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
602
+ textOverflow?: css.CssGlobalValues | "clip" | "ellipsis" | string | ISubscribable<css.CssGlobalValues | "clip" | "ellipsis" | string>;
603
603
  textOverline?: any | ISubscribable<any>;
604
- textOverlineColor?: types.CssValue<types.CssColor> | ISubscribable<types.CssValue<types.CssColor>>;
604
+ textOverlineColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
605
605
  textOverlineMode?: any | ISubscribable<any>;
606
606
  textOverlineStyle?: any | ISubscribable<any>;
607
- textOverlineWidth?: types.CssValue<types.CssLength | types.CssPercentage> | ISubscribable<types.CssValue<types.CssLength | types.CssPercentage>>;
608
- textRendering?: types.CssGlobalValues | "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision" | ISubscribable<types.CssGlobalValues | "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision">;
607
+ textOverlineWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
608
+ textRendering?: css.CssGlobalValues | "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision" | ISubscribable<css.CssGlobalValues | "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision">;
609
609
  textScript?: any | ISubscribable<any>;
610
610
  textShadow?: any | ISubscribable<any>;
611
- textTransform?: types.TextTransform | ISubscribable<types.TextTransform>;
611
+ textTransform?: css.TextTransform | ISubscribable<css.TextTransform>;
612
612
  textUnderlinePosition?: any | ISubscribable<any>;
613
613
  textUnderlineStyle?: any | ISubscribable<any>;
614
- top?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | ISubscribable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
615
- touchAction?: types.TouchAction | ISubscribable<types.TouchAction>;
616
- transform?: types.CssTransformFunction | ISubscribable<types.CssTransformFunction>;
617
- webKitTransform?: types.CssTransformFunction | ISubscribable<types.CssTransformFunction>;
618
- msTransform?: types.CssTransformFunction | ISubscribable<types.CssTransformFunction>;
614
+ top?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues> | ISubscribable<css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>>;
615
+ touchAction?: css.TouchAction | ISubscribable<css.TouchAction>;
616
+ transform?: css.CssTransformFunction | ISubscribable<css.CssTransformFunction>;
617
+ webKitTransform?: css.CssTransformFunction | ISubscribable<css.CssTransformFunction>;
618
+ msTransform?: css.CssTransformFunction | ISubscribable<css.CssTransformFunction>;
619
619
  transformOrigin?: any | ISubscribable<any>;
620
620
  transformOriginZ?: any | ISubscribable<any>;
621
- transformStyle?: types.CssGlobalValues | "flat" | "preserve-3d" | ISubscribable<types.CssGlobalValues | "flat" | "preserve-3d">;
621
+ transformStyle?: css.CssGlobalValues | "flat" | "preserve-3d" | ISubscribable<css.CssGlobalValues | "flat" | "preserve-3d">;
622
622
  transition?: any | ISubscribable<any>;
623
623
  transitionDelay?: any | ISubscribable<any>;
624
624
  transitionDuration?: any | ISubscribable<any>;
625
- transitionProperty?: types.CssValueString | ISubscribable<types.CssValueString>;
626
- transitionTimingFunction?: types.CssTimingFunction | ISubscribable<types.CssTimingFunction>;
625
+ transitionProperty?: css.CssValueString | ISubscribable<css.CssValueString>;
626
+ transitionTimingFunction?: css.CssTimingFunction | ISubscribable<css.CssTimingFunction>;
627
627
  unicodeBidi?: any | ISubscribable<any>;
628
628
  unicodeRange?: any | ISubscribable<any>;
629
629
  userFocus?: any | ISubscribable<any>;
630
630
  userInput?: any | ISubscribable<any>;
631
631
  userSelect?: "auto" | "text" | "none" | "contain" | "all" | ISubscribable<"auto" | "text" | "none" | "contain" | "all">;
632
- verticalAlign?: types.VerticalAlign | ISubscribable<types.VerticalAlign>;
633
- visibility?: types.CssGlobalValues | "visible" | "hidden" | "collapse" | ISubscribable<types.CssGlobalValues | "visible" | "hidden" | "collapse">;
632
+ verticalAlign?: css.VerticalAlign | ISubscribable<css.VerticalAlign>;
633
+ visibility?: css.CssGlobalValues | "visible" | "hidden" | "collapse" | ISubscribable<css.CssGlobalValues | "visible" | "hidden" | "collapse">;
634
634
  voiceBalance?: any | ISubscribable<any>;
635
635
  voiceDuration?: any | ISubscribable<any>;
636
636
  voiceFamily?: any | ISubscribable<any>;
@@ -639,19 +639,19 @@ export interface IStyleSubscribable {
639
639
  voiceRate?: any | ISubscribable<any>;
640
640
  voiceStress?: any | ISubscribable<any>;
641
641
  voiceVolume?: any | ISubscribable<any>;
642
- whiteSpace?: types.CssGlobalValues | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap" | ISubscribable<types.CssGlobalValues | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap">;
642
+ whiteSpace?: css.CssGlobalValues | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap" | ISubscribable<css.CssGlobalValues | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap">;
643
643
  whiteSpaceTreatment?: any | ISubscribable<any>;
644
644
  widows?: number | ISubscribable<number>;
645
- width?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | ISubscribable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
646
- willChange?: types.CssValue<"auto" | "scroll-position" | "contents" | types.CssValueString> | ISubscribable<types.CssValue<"auto" | "scroll-position" | "contents" | types.CssValueString>>;
647
- wordBreak?: types.CssGlobalValues | "normal" | "break-all" | "keep-all" | ISubscribable<types.CssGlobalValues | "normal" | "break-all" | "keep-all">;
648
- wordSpacing?: types.CssGlobalValues | "normal" | types.CssLength | types.CssPercentage | ISubscribable<types.CssGlobalValues | "normal" | types.CssLength | types.CssPercentage>;
649
- wordWrap?: types.CssGlobalValues | "normal" | "break-word" | ISubscribable<types.CssGlobalValues | "normal" | "break-word">;
645
+ width?: css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues> | ISubscribable<css.CssValue<"auto" | css.CssLength | css.CssPercentage | css.CssGlobalValues>>;
646
+ willChange?: css.CssValue<"auto" | "scroll-position" | "contents" | css.CssValueString> | ISubscribable<css.CssValue<"auto" | "scroll-position" | "contents" | css.CssValueString>>;
647
+ wordBreak?: css.CssGlobalValues | "normal" | "break-all" | "keep-all" | ISubscribable<css.CssGlobalValues | "normal" | "break-all" | "keep-all">;
648
+ wordSpacing?: css.CssGlobalValues | "normal" | css.CssLength | css.CssPercentage | ISubscribable<css.CssGlobalValues | "normal" | css.CssLength | css.CssPercentage>;
649
+ wordWrap?: css.CssGlobalValues | "normal" | "break-word" | ISubscribable<css.CssGlobalValues | "normal" | "break-word">;
650
650
  wrapFlow?: any | ISubscribable<any>;
651
651
  wrapMargin?: any | ISubscribable<any>;
652
652
  wrapOption?: any | ISubscribable<any>;
653
- writingMode?: types.WritingMode | ISubscribable<types.WritingMode>;
654
- zIndex?: types.CssGlobalValues | "auto" | number | ISubscribable<types.CssGlobalValues | "auto" | number>;
653
+ writingMode?: css.WritingMode | ISubscribable<css.WritingMode>;
654
+ zIndex?: css.CssGlobalValues | "auto" | number | ISubscribable<css.CssGlobalValues | "auto" | number>;
655
655
  zoom?: "auto" | number | ISubscribable<"auto" | number>;
656
656
  }
657
657
  export declare const defaultStyle: IStyle;