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.
- package/dist/controls/svg/Pattern/Pattern.d.ts +1 -1
- package/dist/controls/svg/Svg/Svg.d.ts +1 -1
- package/dist/framework/attributes.d.ts +1 -1
- package/dist/framework/css.js +2 -0
- package/dist/framework/css.js.map +1 -0
- package/dist/framework/observableInterfaces.d.ts +1 -1
- package/dist/framework/style.d.ts +297 -297
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/controls/svg/Pattern/Pattern.ts +1 -1
- package/src/controls/svg/Svg/Svg.ts +1 -1
- package/src/framework/attributes.ts +1 -1
- package/src/framework/{types.ts → css.ts} +1 -1
- package/src/framework/observableInterfaces.ts +1 -1
- package/src/framework/style.ts +297 -297
- package/src/index.ts +2 -2
- package/dist/framework/types.js +0 -2
- package/dist/framework/types.js.map +0 -1
- /package/dist/framework/{types.d.ts → css.d.ts} +0 -0
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as css from "./css";
|
|
2
2
|
import { ISubscribable } from "./observableInterfaces";
|
|
3
3
|
export interface IStyle {
|
|
4
|
-
alignContent?:
|
|
5
|
-
alignItems?:
|
|
6
|
-
alignSelf?:
|
|
4
|
+
alignContent?: css.AlignContent;
|
|
5
|
+
alignItems?: css.CssValue<css.AlignItems>;
|
|
6
|
+
alignSelf?: css.CssValue<css.AlignSelf>;
|
|
7
7
|
alignmentAdjust?: any;
|
|
8
|
-
alignmentBaseline?:
|
|
9
|
-
animation?:
|
|
8
|
+
alignmentBaseline?: css.AlignmentBaseline;
|
|
9
|
+
animation?: css.CssValueString;
|
|
10
10
|
animationDelay?: any;
|
|
11
|
-
animationDirection?:
|
|
12
|
-
animationDuration?:
|
|
13
|
-
animationFillMode?:
|
|
14
|
-
animationIterationCount?:
|
|
15
|
-
animationName?:
|
|
16
|
-
animationPlayState?:
|
|
17
|
-
animationTimingFunction?:
|
|
18
|
-
appearance?:
|
|
19
|
-
backfaceVisibility?:
|
|
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?:
|
|
22
|
-
backgroundBlendMode?:
|
|
23
|
-
backgroundClip?:
|
|
24
|
-
backgroundColor?:
|
|
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?:
|
|
27
|
-
backgroundOrigin?:
|
|
28
|
-
backgroundPosition?:
|
|
29
|
-
backgroundRepeat?:
|
|
30
|
-
backgroundSize?:
|
|
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?:
|
|
35
|
-
borderBottomColor?:
|
|
34
|
+
borderBottom?: css.CssBorderShorthand;
|
|
35
|
+
borderBottomColor?: css.CssValue<css.CssColor>;
|
|
36
36
|
borderBottomLeftRadius?: any;
|
|
37
37
|
borderBottomRightRadius?: any;
|
|
38
|
-
borderBottomStyle?:
|
|
39
|
-
borderBottomWidth?:
|
|
38
|
+
borderBottomStyle?: css.CssValue<css.CssLineStyle>;
|
|
39
|
+
borderBottomWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
|
|
40
40
|
borderCollapse?: any;
|
|
41
|
-
borderColor?:
|
|
41
|
+
borderColor?: css.CssValue<css.CssColorSet>;
|
|
42
42
|
borderCornerShape?: any;
|
|
43
|
-
borderImageSource?:
|
|
44
|
-
borderImageWidth?:
|
|
45
|
-
borderLeft?:
|
|
46
|
-
borderLeftColor?:
|
|
47
|
-
borderLeftStyle?:
|
|
48
|
-
borderLeftWidth?:
|
|
49
|
-
borderRadius?:
|
|
50
|
-
borderRight?:
|
|
51
|
-
borderRightColor?:
|
|
52
|
-
borderRightStyle?:
|
|
53
|
-
borderRightWidth?:
|
|
54
|
-
borderSpacing?:
|
|
55
|
-
borderStyle?:
|
|
56
|
-
borderTop?:
|
|
57
|
-
borderTopColor?:
|
|
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?:
|
|
61
|
-
borderTopWidth?:
|
|
62
|
-
borderWidth?:
|
|
63
|
-
bottom?:
|
|
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?:
|
|
72
|
-
boxShadow?:
|
|
71
|
+
boxSizing?: css.CssGlobalValues | "content-box" | "border-box";
|
|
72
|
+
boxShadow?: css.CssValueGeneral;
|
|
73
73
|
boxFlexGroup?: number;
|
|
74
|
-
breakAfter?:
|
|
75
|
-
breakBefore?:
|
|
76
|
-
breakInside?:
|
|
77
|
-
captionSide?:
|
|
78
|
-
clear?:
|
|
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?:
|
|
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?:
|
|
87
|
-
columnRuleStyle?:
|
|
88
|
-
columnRuleWidth?:
|
|
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?:
|
|
90
|
+
columnWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
|
|
91
91
|
columns?: any;
|
|
92
|
-
content?:
|
|
92
|
+
content?: css.CssValueString;
|
|
93
93
|
counterIncrement?: any;
|
|
94
94
|
counterReset?: any;
|
|
95
95
|
cue?: any;
|
|
96
96
|
cueAfter?: any;
|
|
97
|
-
cursor?:
|
|
98
|
-
direction?:
|
|
99
|
-
display?:
|
|
100
|
-
dominantBaseline?:
|
|
101
|
-
emptyCells?:
|
|
102
|
-
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?:
|
|
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?:
|
|
119
|
-
float?:
|
|
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?:
|
|
124
|
-
fontSize?:
|
|
123
|
+
fontKerning?: css.CssGlobalValues | "auto" | "normal" | "none";
|
|
124
|
+
fontSize?: css.CssValue<css.CssFontSize>;
|
|
125
125
|
fontSizeAdjust?: any;
|
|
126
|
-
fontStretch?:
|
|
127
|
-
fontStyle?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
156
|
-
imeMode?:
|
|
157
|
-
justifyContent?:
|
|
158
|
-
justifyItems?:
|
|
159
|
-
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?:
|
|
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?:
|
|
169
|
+
lineHeight?: css.CssValue<css.CssLength | css.CssPercentage>;
|
|
170
170
|
listStyle?: any;
|
|
171
171
|
listStyleImage?: any;
|
|
172
|
-
listStylePosition?:
|
|
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?:
|
|
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?:
|
|
186
|
+
maskBorderWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
|
|
187
187
|
maskClip?: any;
|
|
188
188
|
maskOrigin?: any;
|
|
189
189
|
maxFontSize?: any;
|
|
190
|
-
maxHeight?:
|
|
191
|
-
maxWidth?:
|
|
192
|
-
minHeight?:
|
|
193
|
-
minWidth?:
|
|
194
|
-
mixBlendMode?:
|
|
195
|
-
objectFit?:
|
|
196
|
-
objectPosition?: string |
|
|
197
|
-
opacity?: number |
|
|
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?:
|
|
202
|
-
outlineStyle?:
|
|
201
|
+
outlineColor?: css.CssValue<css.CssColor>;
|
|
202
|
+
outlineStyle?: css.OutlineStyle;
|
|
203
203
|
outlineOffset?: any;
|
|
204
|
-
outlineWidth?:
|
|
205
|
-
overflow?:
|
|
204
|
+
outlineWidth?: css.CssGlobalValues | "thin" | "medium" | "thick" | css.CssLength;
|
|
205
|
+
overflow?: css.CssValue<css.CssOverflow>;
|
|
206
206
|
overflowStyle?: any;
|
|
207
|
-
overflowWrap?:
|
|
208
|
-
overflowX?:
|
|
209
|
-
overflowY?:
|
|
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?:
|
|
212
|
-
paddingLeft?:
|
|
213
|
-
paddingRight?:
|
|
214
|
-
paddingTop?:
|
|
215
|
-
pageBreakAfter?:
|
|
216
|
-
pageBreakBefore?:
|
|
217
|
-
pageBreakInside?:
|
|
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?:
|
|
224
|
-
position?:
|
|
223
|
+
pointerEvents?: css.PointerEvents;
|
|
224
|
+
position?: css.PositionX;
|
|
225
225
|
punctuationTrim?: any;
|
|
226
226
|
quotes?: any;
|
|
227
227
|
regionFragment?: any;
|
|
228
|
-
resize?:
|
|
228
|
+
resize?: css.CssGlobalValues | "none" | "both " | "horizontal" | "vertical";
|
|
229
229
|
restAfter?: any;
|
|
230
230
|
restBefore?: any;
|
|
231
|
-
right?:
|
|
232
|
-
rubyAlign?:
|
|
233
|
-
rubyPosition?:
|
|
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?:
|
|
242
|
+
src?: css.CssValueString;
|
|
243
243
|
stroke?: string;
|
|
244
244
|
strokeDasharray?: number[];
|
|
245
|
-
strokeDashoffset?:
|
|
246
|
-
strokeLinecap?:
|
|
245
|
+
strokeDashoffset?: css.CssValue<css.CssGlobalValues | css.CssLength | css.CssPercentage>;
|
|
246
|
+
strokeLinecap?: css.CssGlobalValues | "butt" | "round" | "square";
|
|
247
247
|
strokeOpacity?: number;
|
|
248
|
-
strokeWidth?:
|
|
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?:
|
|
253
|
-
textAlignLast?:
|
|
252
|
+
textAlign?: css.TextAlign;
|
|
253
|
+
textAlignLast?: css.TextAlignLast;
|
|
254
254
|
textDecoration?: any;
|
|
255
|
-
textDecorationColor?:
|
|
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?:
|
|
261
|
+
textDecorationStyle?: css.CssGlobalValues | "solid" | "double" | "dotted" | "dashed" | "wavy";
|
|
262
262
|
textDecorationUnderline?: any;
|
|
263
263
|
textEmphasis?: any;
|
|
264
|
-
textEmphasisColor?:
|
|
264
|
+
textEmphasisColor?: css.CssValue<css.CssColor>;
|
|
265
265
|
textEmphasisStyle?: any;
|
|
266
|
-
textHeight?:
|
|
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?:
|
|
271
|
+
textLineThroughColor?: css.CssValue<css.CssColor>;
|
|
272
272
|
textLineThroughMode?: any;
|
|
273
273
|
textLineThroughStyle?: any;
|
|
274
|
-
textLineThroughWidth?:
|
|
275
|
-
textOverflow?:
|
|
274
|
+
textLineThroughWidth?: css.CssValue<css.CssLength | css.CssPercentage>;
|
|
275
|
+
textOverflow?: css.CssGlobalValues | "clip" | "ellipsis" | string;
|
|
276
276
|
textOverline?: any;
|
|
277
|
-
textOverlineColor?:
|
|
277
|
+
textOverlineColor?: css.CssValue<css.CssColor>;
|
|
278
278
|
textOverlineMode?: any;
|
|
279
279
|
textOverlineStyle?: any;
|
|
280
|
-
textOverlineWidth?:
|
|
281
|
-
textRendering?:
|
|
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?:
|
|
284
|
+
textTransform?: css.TextTransform;
|
|
285
285
|
textUnderlinePosition?: any;
|
|
286
286
|
textUnderlineStyle?: any;
|
|
287
|
-
top?:
|
|
288
|
-
touchAction?:
|
|
289
|
-
transform?:
|
|
290
|
-
webKitTransform?:
|
|
291
|
-
msTransform?:
|
|
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?:
|
|
294
|
+
transformStyle?: css.CssGlobalValues | "flat" | "preserve-3d";
|
|
295
295
|
transition?: any;
|
|
296
296
|
transitionDelay?: any;
|
|
297
297
|
transitionDuration?: any;
|
|
298
|
-
transitionProperty?:
|
|
299
|
-
transitionTimingFunction?:
|
|
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?:
|
|
306
|
-
visibility?:
|
|
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?:
|
|
315
|
+
whiteSpace?: css.CssGlobalValues | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";
|
|
316
316
|
whiteSpaceTreatment?: any;
|
|
317
317
|
widows?: number;
|
|
318
|
-
width?:
|
|
319
|
-
willChange?:
|
|
320
|
-
wordBreak?:
|
|
321
|
-
wordSpacing?:
|
|
322
|
-
wordWrap?:
|
|
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?:
|
|
327
|
-
zIndex?:
|
|
326
|
+
writingMode?: css.WritingMode;
|
|
327
|
+
zIndex?: css.CssGlobalValues | "auto" | number;
|
|
328
328
|
zoom?: "auto" | number;
|
|
329
329
|
}
|
|
330
330
|
export interface IStyleSubscribable {
|
|
331
|
-
alignContent?:
|
|
332
|
-
alignItems?:
|
|
333
|
-
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?:
|
|
336
|
-
animation?:
|
|
335
|
+
alignmentBaseline?: css.AlignmentBaseline | ISubscribable<css.AlignmentBaseline>;
|
|
336
|
+
animation?: css.CssValueString | ISubscribable<css.CssValueString>;
|
|
337
337
|
animationDelay?: any | ISubscribable<any>;
|
|
338
|
-
animationDirection?:
|
|
339
|
-
animationDuration?:
|
|
340
|
-
animationFillMode?:
|
|
341
|
-
animationIterationCount?:
|
|
342
|
-
animationName?:
|
|
343
|
-
animationPlayState?:
|
|
344
|
-
animationTimingFunction?:
|
|
345
|
-
appearance?:
|
|
346
|
-
backfaceVisibility?:
|
|
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?:
|
|
349
|
-
backgroundBlendMode?:
|
|
350
|
-
backgroundClip?:
|
|
351
|
-
backgroundColor?:
|
|
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?:
|
|
354
|
-
backgroundOrigin?:
|
|
355
|
-
backgroundPosition?:
|
|
356
|
-
backgroundRepeat?:
|
|
357
|
-
backgroundSize?:
|
|
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?:
|
|
362
|
-
borderBottomColor?:
|
|
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?:
|
|
366
|
-
borderBottomWidth?:
|
|
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?:
|
|
368
|
+
borderColor?: css.CssValue<css.CssColorSet> | ISubscribable<css.CssValue<css.CssColorSet>>;
|
|
369
369
|
borderCornerShape?: any | ISubscribable<any>;
|
|
370
|
-
borderImageSource?:
|
|
371
|
-
borderImageWidth?:
|
|
372
|
-
borderLeft?:
|
|
373
|
-
borderLeftColor?:
|
|
374
|
-
borderLeftStyle?:
|
|
375
|
-
borderLeftWidth?:
|
|
376
|
-
borderRadius?:
|
|
377
|
-
borderRight?:
|
|
378
|
-
borderRightColor?:
|
|
379
|
-
borderRightStyle?:
|
|
380
|
-
borderRightWidth?:
|
|
381
|
-
borderSpacing?:
|
|
382
|
-
borderStyle?:
|
|
383
|
-
borderTop?:
|
|
384
|
-
borderTopColor?:
|
|
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?:
|
|
388
|
-
borderTopWidth?:
|
|
389
|
-
borderWidth?:
|
|
390
|
-
bottom?:
|
|
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?:
|
|
399
|
-
boxShadow?:
|
|
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?:
|
|
402
|
-
breakBefore?:
|
|
403
|
-
breakInside?:
|
|
404
|
-
captionSide?:
|
|
405
|
-
clear?:
|
|
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?:
|
|
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?:
|
|
414
|
-
columnRuleStyle?:
|
|
415
|
-
columnRuleWidth?:
|
|
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?:
|
|
417
|
+
columnWidth?: css.CssValue<css.CssLength | css.CssPercentage> | ISubscribable<css.CssValue<css.CssLength | css.CssPercentage>>;
|
|
418
418
|
columns?: any | ISubscribable<any>;
|
|
419
|
-
content?:
|
|
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?:
|
|
425
|
-
direction?:
|
|
426
|
-
display?:
|
|
427
|
-
dominantBaseline?:
|
|
428
|
-
emptyCells?:
|
|
429
|
-
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?:
|
|
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?:
|
|
446
|
-
float?:
|
|
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?:
|
|
451
|
-
fontSize?:
|
|
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?:
|
|
454
|
-
fontStyle?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
483
|
-
imeMode?:
|
|
484
|
-
justifyContent?:
|
|
485
|
-
justifyItems?:
|
|
486
|
-
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?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
518
|
-
maxWidth?:
|
|
519
|
-
minHeight?:
|
|
520
|
-
minWidth?:
|
|
521
|
-
mixBlendMode?:
|
|
522
|
-
objectFit?:
|
|
523
|
-
objectPosition?: string |
|
|
524
|
-
opacity?: number |
|
|
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?:
|
|
529
|
-
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?:
|
|
532
|
-
overflow?:
|
|
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?:
|
|
535
|
-
overflowX?:
|
|
536
|
-
overflowY?:
|
|
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?:
|
|
539
|
-
paddingLeft?:
|
|
540
|
-
paddingRight?:
|
|
541
|
-
paddingTop?:
|
|
542
|
-
pageBreakAfter?:
|
|
543
|
-
pageBreakBefore?:
|
|
544
|
-
pageBreakInside?:
|
|
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?:
|
|
551
|
-
position?:
|
|
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?:
|
|
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?:
|
|
559
|
-
rubyAlign?:
|
|
560
|
-
rubyPosition?:
|
|
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?:
|
|
569
|
+
src?: css.CssValueString | ISubscribable<css.CssValueString>;
|
|
570
570
|
stroke?: string | ISubscribable<string>;
|
|
571
571
|
strokeDasharray?: number[] | ISubscribable<number[]>;
|
|
572
|
-
strokeDashoffset?:
|
|
573
|
-
strokeLinecap?:
|
|
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?:
|
|
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?:
|
|
580
|
-
textAlignLast?:
|
|
579
|
+
textAlign?: css.TextAlign | ISubscribable<css.TextAlign>;
|
|
580
|
+
textAlignLast?: css.TextAlignLast | ISubscribable<css.TextAlignLast>;
|
|
581
581
|
textDecoration?: any | ISubscribable<any>;
|
|
582
|
-
textDecorationColor?:
|
|
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?:
|
|
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?:
|
|
591
|
+
textEmphasisColor?: css.CssValue<css.CssColor> | ISubscribable<css.CssValue<css.CssColor>>;
|
|
592
592
|
textEmphasisStyle?: any | ISubscribable<any>;
|
|
593
|
-
textHeight?:
|
|
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?:
|
|
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?:
|
|
602
|
-
textOverflow?:
|
|
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?:
|
|
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?:
|
|
608
|
-
textRendering?:
|
|
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?:
|
|
611
|
+
textTransform?: css.TextTransform | ISubscribable<css.TextTransform>;
|
|
612
612
|
textUnderlinePosition?: any | ISubscribable<any>;
|
|
613
613
|
textUnderlineStyle?: any | ISubscribable<any>;
|
|
614
|
-
top?:
|
|
615
|
-
touchAction?:
|
|
616
|
-
transform?:
|
|
617
|
-
webKitTransform?:
|
|
618
|
-
msTransform?:
|
|
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?:
|
|
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?:
|
|
626
|
-
transitionTimingFunction?:
|
|
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?:
|
|
633
|
-
visibility?:
|
|
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?:
|
|
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?:
|
|
646
|
-
willChange?:
|
|
647
|
-
wordBreak?:
|
|
648
|
-
wordSpacing?:
|
|
649
|
-
wordWrap?:
|
|
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?:
|
|
654
|
-
zIndex?:
|
|
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;
|