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