jpf 3.0.21 → 4.0.0
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 +29 -0
- package/dist/View.js +96 -0
- package/dist/View.js.map +1 -0
- package/dist/ViewModel.d.ts +61 -0
- package/dist/ViewModel.js +404 -0
- package/dist/ViewModel.js.map +1 -0
- package/dist/attributes.d.ts +37 -0
- package/dist/attributes.js +3 -0
- package/dist/attributes.js.map +1 -0
- package/dist/event.d.ts +59 -0
- package/dist/event.js +29 -0
- package/dist/event.js.map +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/style.d.ts +330 -329
- package/dist/style.js +9 -1
- package/dist/style.js.map +1 -1
- package/dist/types.d.ts +1 -3
- package/dist/userAgent.js +6 -9
- package/dist/userAgent.js.map +1 -1
- package/package.json +12 -9
- package/dist/eventListener.d.ts +0 -30
- package/dist/eventListener.js +0 -13
- package/dist/eventListener.js.map +0 -1
- package/dist/uiElement.d.ts +0 -89
- package/dist/uiElement.js +0 -631
- package/dist/uiElement.js.map +0 -1
package/dist/style.d.ts
CHANGED
|
@@ -1,332 +1,6 @@
|
|
|
1
|
-
/// <reference types="knockout" />
|
|
2
1
|
import * as types from "./types";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
alignItems?: types.CssValue<types.AlignItems> | KnockoutObservable<types.CssValue<types.AlignItems>>;
|
|
6
|
-
alignSelf?: types.CssValue<types.AlignSelf> | KnockoutObservable<types.CssValue<types.AlignSelf>>;
|
|
7
|
-
alignmentAdjust?: any | KnockoutObservable<any>;
|
|
8
|
-
alignmentBaseline?: types.AlignmentBaseline | KnockoutObservable<types.AlignmentBaseline>;
|
|
9
|
-
animation?: types.CssValueString | KnockoutObservable<types.CssValueString>;
|
|
10
|
-
animationDelay?: any | KnockoutObservable<any>;
|
|
11
|
-
animationDirection?: types.CssGlobalValues | types.AnimationDirection | KnockoutObservable<types.CssGlobalValues | types.AnimationDirection>;
|
|
12
|
-
animationDuration?: types.CssValue<string> | KnockoutObservable<types.CssValue<string>>;
|
|
13
|
-
animationFillMode?: types.AnimationFillMode | KnockoutObservable<types.AnimationFillMode>;
|
|
14
|
-
animationIterationCount?: types.CssValue<number> | "infinite" | KnockoutObservable<types.CssValue<number> | "infinite">;
|
|
15
|
-
animationName?: types.CssValue<string> | KnockoutObservable<types.CssValue<string>>;
|
|
16
|
-
animationPlayState?: types.CssValue<types.CssAnimationPlayState> | KnockoutObservable<types.CssValue<types.CssAnimationPlayState>>;
|
|
17
|
-
animationTimingFunction?: types.CssValue<types.CssTimingFunction> | KnockoutObservable<types.CssValue<types.CssTimingFunction>>;
|
|
18
|
-
appearance?: types.CssValue<"auto" | "none"> | KnockoutObservable<types.CssValue<"auto" | "none">>;
|
|
19
|
-
backfaceVisibility?: types.CssGlobalValues | "visible" | "hidden" | KnockoutObservable<types.CssGlobalValues | "visible" | "hidden">;
|
|
20
|
-
background?: any | KnockoutObservable<any>;
|
|
21
|
-
backgroundAttachment?: types.BackgroundAttachment | KnockoutObservable<types.BackgroundAttachment>;
|
|
22
|
-
backgroundBlendMode?: types.CssValue<types.CssBlendMode> | KnockoutObservable<types.CssValue<types.CssBlendMode>>;
|
|
23
|
-
backgroundClip?: types.CssValue<types.CssBox | "text"> | KnockoutObservable<types.CssValue<types.CssBox | "text">>;
|
|
24
|
-
backgroundColor?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
25
|
-
backgroundComposite?: any | KnockoutObservable<any>;
|
|
26
|
-
backgroundImage?: types.CssValue<types.CssImage> | KnockoutObservable<types.CssValue<types.CssImage>>;
|
|
27
|
-
backgroundOrigin?: types.CssValue<types.CssBox> | KnockoutObservable<types.CssValue<types.CssBox>>;
|
|
28
|
-
backgroundPosition?: types.CssValue<types.CssPosition> | KnockoutObservable<types.CssValue<types.CssPosition>>;
|
|
29
|
-
backgroundRepeat?: types.CssValue<types.CssRepeatStyle | string> | KnockoutObservable<types.CssValue<types.CssRepeatStyle | string>>;
|
|
30
|
-
backgroundSize?: types.BackgroundSize | types.CssLength | types.CssPercentage | types.CssGlobalValues | KnockoutObservable<types.BackgroundSize | types.CssLength | types.CssPercentage | types.CssGlobalValues>;
|
|
31
|
-
baselineShift?: any | KnockoutObservable<any>;
|
|
32
|
-
behavior?: any | KnockoutObservable<any>;
|
|
33
|
-
border?: any | KnockoutObservable<any>;
|
|
34
|
-
borderBottom?: types.CssBorderShorthand | KnockoutObservable<types.CssBorderShorthand>;
|
|
35
|
-
borderBottomColor?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
36
|
-
borderBottomLeftRadius?: any | KnockoutObservable<any>;
|
|
37
|
-
borderBottomRightRadius?: any | KnockoutObservable<any>;
|
|
38
|
-
borderBottomStyle?: types.CssValue<types.CssLineStyle> | KnockoutObservable<types.CssValue<types.CssLineStyle>>;
|
|
39
|
-
borderBottomWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
40
|
-
borderCollapse?: any | KnockoutObservable<any>;
|
|
41
|
-
borderColor?: types.CssValue<types.CssColorSet> | KnockoutObservable<types.CssValue<types.CssColorSet>>;
|
|
42
|
-
borderCornerShape?: any | KnockoutObservable<any>;
|
|
43
|
-
borderImageSource?: types.CssValue<types.CssImage> | KnockoutObservable<types.CssValue<types.CssImage>>;
|
|
44
|
-
borderImageWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
45
|
-
borderLeft?: types.CssBorderShorthand | KnockoutObservable<types.CssBorderShorthand>;
|
|
46
|
-
borderLeftColor?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
47
|
-
borderLeftStyle?: types.CssValue<types.CssLineStyle> | KnockoutObservable<types.CssValue<types.CssLineStyle>>;
|
|
48
|
-
borderLeftWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
49
|
-
borderRadius?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
50
|
-
borderRight?: types.CssBorderShorthand | KnockoutObservable<types.CssBorderShorthand>;
|
|
51
|
-
borderRightColor?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
52
|
-
borderRightStyle?: types.CssValue<types.CssLineStyle> | KnockoutObservable<types.CssValue<types.CssLineStyle>>;
|
|
53
|
-
borderRightWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
54
|
-
borderSpacing?: types.CssLength | string | "inherit" | KnockoutObservable<types.CssLength | string | "inherit">;
|
|
55
|
-
borderStyle?: types.CssValue<types.CssLineStyleSet> | KnockoutObservable<types.CssValue<types.CssLineStyleSet>>;
|
|
56
|
-
borderTop?: types.CssBorderShorthand | KnockoutObservable<types.CssBorderShorthand>;
|
|
57
|
-
borderTopColor?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
58
|
-
borderTopLeftRadius?: any | KnockoutObservable<any>;
|
|
59
|
-
borderTopRightRadius?: any | KnockoutObservable<any>;
|
|
60
|
-
borderTopStyle?: types.CssValue<types.CssLineStyle> | KnockoutObservable<types.CssValue<types.CssLineStyle>>;
|
|
61
|
-
borderTopWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
62
|
-
borderWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
63
|
-
bottom?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | KnockoutObservable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
|
|
64
|
-
boxAlign?: any | KnockoutObservable<any>;
|
|
65
|
-
boxDecorationBreak?: any | KnockoutObservable<any>;
|
|
66
|
-
boxDirection?: any | KnockoutObservable<any>;
|
|
67
|
-
boxLineProgression?: any | KnockoutObservable<any>;
|
|
68
|
-
boxLines?: any | KnockoutObservable<any>;
|
|
69
|
-
boxOrdinalGroup?: any | KnockoutObservable<any>;
|
|
70
|
-
boxFlex?: number | KnockoutObservable<number>;
|
|
71
|
-
boxSizing?: types.CssGlobalValues | "content-box" | "border-box" | KnockoutObservable<types.CssGlobalValues | "content-box" | "border-box">;
|
|
72
|
-
boxShadow?: types.CssValueGeneral | KnockoutObservable<types.CssValueGeneral>;
|
|
73
|
-
boxFlexGroup?: number | KnockoutObservable<number>;
|
|
74
|
-
breakAfter?: types.BreakAfter | KnockoutObservable<types.BreakAfter>;
|
|
75
|
-
breakBefore?: types.BreakBefore | KnockoutObservable<types.BreakBefore>;
|
|
76
|
-
breakInside?: types.BreakInside | KnockoutObservable<types.BreakInside>;
|
|
77
|
-
captionSide?: types.CaptionSide | KnockoutObservable<types.CaptionSide>;
|
|
78
|
-
clear?: types.CssGlobalValues | "none" | "left" | "right" | "both" | KnockoutObservable<types.CssGlobalValues | "none" | "left" | "right" | "both">;
|
|
79
|
-
clip?: any | KnockoutObservable<any>;
|
|
80
|
-
clipRule?: any | KnockoutObservable<any>;
|
|
81
|
-
color?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
82
|
-
columnCount?: number | "auto" | "initial" | "inherit" | KnockoutObservable<number | "auto" | "initial" | "inherit">;
|
|
83
|
-
columnFill?: any | KnockoutObservable<any>;
|
|
84
|
-
columnGap?: any | KnockoutObservable<any>;
|
|
85
|
-
columnRule?: any | KnockoutObservable<any>;
|
|
86
|
-
columnRuleColor?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
87
|
-
columnRuleStyle?: types.CssValue<types.CssLineStyle> | KnockoutObservable<types.CssValue<types.CssLineStyle>>;
|
|
88
|
-
columnRuleWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
89
|
-
columnSpan?: any | KnockoutObservable<any>;
|
|
90
|
-
columnWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
91
|
-
columns?: any | KnockoutObservable<any>;
|
|
92
|
-
content?: types.CssValueString | KnockoutObservable<types.CssValueString>;
|
|
93
|
-
counterIncrement?: any | KnockoutObservable<any>;
|
|
94
|
-
counterReset?: any | KnockoutObservable<any>;
|
|
95
|
-
cue?: any | KnockoutObservable<any>;
|
|
96
|
-
cueAfter?: any | KnockoutObservable<any>;
|
|
97
|
-
cursor?: types.Cursor | KnockoutObservable<types.Cursor>;
|
|
98
|
-
direction?: types.CssGlobalValues | "ltr" | "rtl" | KnockoutObservable<types.CssGlobalValues | "ltr" | "rtl">;
|
|
99
|
-
display?: types.CssValue<types.CssGlobalValues | types.CssDisplay> | KnockoutObservable<types.CssValue<types.CssGlobalValues | types.CssDisplay>>;
|
|
100
|
-
dominantBaseline?: types.DominantBaseline | KnockoutObservable<types.DominantBaseline>;
|
|
101
|
-
emptyCells?: types.CssGlobalValues | "show" | "hide" | KnockoutObservable<types.CssGlobalValues | "show" | "hide">;
|
|
102
|
-
fill?: types.CssColor | "context-stroke" | "context-fill" | KnockoutObservable<types.CssColor | "context-stroke" | "context-fill">;
|
|
103
|
-
fillOpacity?: number | KnockoutObservable<number>;
|
|
104
|
-
fillRule?: "nonzero" | "evenodd" | KnockoutObservable<"nonzero" | "evenodd">;
|
|
105
|
-
filter?: string | KnockoutObservable<string>;
|
|
106
|
-
flex?: number | string | KnockoutObservable<number | string>;
|
|
107
|
-
flexAlign?: any | KnockoutObservable<any>;
|
|
108
|
-
flexBasis?: any | KnockoutObservable<any>;
|
|
109
|
-
flexDirection?: types.FlexDirection | KnockoutObservable<types.FlexDirection>;
|
|
110
|
-
flexFlow?: any | KnockoutObservable<any>;
|
|
111
|
-
flexGrow?: number | KnockoutObservable<number>;
|
|
112
|
-
flexItemAlign?: any | KnockoutObservable<any>;
|
|
113
|
-
flexLinePack?: any | KnockoutObservable<any>;
|
|
114
|
-
flexPositive?: any | KnockoutObservable<any>;
|
|
115
|
-
flexNegative?: any | KnockoutObservable<any>;
|
|
116
|
-
flexOrder?: any | KnockoutObservable<any>;
|
|
117
|
-
flexShrink?: number | KnockoutObservable<number>;
|
|
118
|
-
flexWrap?: types.FlexWrap | KnockoutObservable<types.FlexWrap>;
|
|
119
|
-
float?: types.CssGlobalValues | "left" | "right" | "none" | "inline-start" | "inline-end" | KnockoutObservable<types.CssGlobalValues | "left" | "right" | "none" | "inline-start" | "inline-end">;
|
|
120
|
-
flowFrom?: any | KnockoutObservable<any>;
|
|
121
|
-
font?: any | KnockoutObservable<any>;
|
|
122
|
-
fontFamily?: any | KnockoutObservable<any>;
|
|
123
|
-
fontKerning?: types.CssGlobalValues | "auto" | "normal" | "none" | KnockoutObservable<types.CssGlobalValues | "auto" | "normal" | "none">;
|
|
124
|
-
fontSize?: types.CssValue<types.CssFontSize> | KnockoutObservable<types.CssValue<types.CssFontSize>>;
|
|
125
|
-
fontSizeAdjust?: any | KnockoutObservable<any>;
|
|
126
|
-
fontStretch?: types.FontStretch | KnockoutObservable<types.FontStretch>;
|
|
127
|
-
fontStyle?: types.CssGlobalValues | "normal" | "italic" | "oblique" | KnockoutObservable<types.CssGlobalValues | "normal" | "italic" | "oblique">;
|
|
128
|
-
fontSynthesis?: any | KnockoutObservable<any>;
|
|
129
|
-
fontVariant?: any | KnockoutObservable<any>;
|
|
130
|
-
fontVariantAlternates?: any | KnockoutObservable<any>;
|
|
131
|
-
fontWeight?: types.CssFontWeight | KnockoutObservable<types.CssFontWeight>;
|
|
132
|
-
gridArea?: any | KnockoutObservable<any>;
|
|
133
|
-
gridAutoColumns?: any | KnockoutObservable<any>;
|
|
134
|
-
gridAutoFlow?: any | KnockoutObservable<any>;
|
|
135
|
-
gridAutoRows?: any | KnockoutObservable<any>;
|
|
136
|
-
gridColumn?: any | KnockoutObservable<any>;
|
|
137
|
-
gridColumnGap?: any | KnockoutObservable<any>;
|
|
138
|
-
gridColumnEnd?: any | KnockoutObservable<any>;
|
|
139
|
-
gridColumnStart?: any | KnockoutObservable<any>;
|
|
140
|
-
gridGap?: any | KnockoutObservable<any>;
|
|
141
|
-
gridRow?: any | KnockoutObservable<any>;
|
|
142
|
-
gridRowEnd?: any | KnockoutObservable<any>;
|
|
143
|
-
gridRowGap?: any | KnockoutObservable<any>;
|
|
144
|
-
gridRowStart?: any | KnockoutObservable<any>;
|
|
145
|
-
gridRowPosition?: any | KnockoutObservable<any>;
|
|
146
|
-
gridRowSpan?: any | KnockoutObservable<any>;
|
|
147
|
-
gridTemplate?: any | KnockoutObservable<any>;
|
|
148
|
-
gridTemplateAreas?: any | KnockoutObservable<any>;
|
|
149
|
-
gridTemplateColumns?: any | KnockoutObservable<any>;
|
|
150
|
-
gridTemplateRows?: any | KnockoutObservable<any>;
|
|
151
|
-
height?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | KnockoutObservable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
|
|
152
|
-
hyphenateLimitChars?: any | KnockoutObservable<any>;
|
|
153
|
-
hyphenateLimitLines?: any | KnockoutObservable<any>;
|
|
154
|
-
hyphenateLimitZone?: any | KnockoutObservable<any>;
|
|
155
|
-
hyphens?: types.CssGlobalValues | string | "none" | "manual" | "auto" | KnockoutObservable<types.CssGlobalValues | string | "none" | "manual" | "auto">;
|
|
156
|
-
imeMode?: types.CssGlobalValues | "auto" | "normal" | "active" | "inactive" | "disabled" | KnockoutObservable<types.CssGlobalValues | "auto" | "normal" | "active" | "inactive" | "disabled">;
|
|
157
|
-
justifyContent?: types.JustifyContent | KnockoutObservable<types.JustifyContent>;
|
|
158
|
-
justifyItems?: types.JustifyItems | KnockoutObservable<types.JustifyItems>;
|
|
159
|
-
justifySelf?: types.JustifySelf | KnockoutObservable<types.JustifySelf>;
|
|
160
|
-
layoutGrid?: any | KnockoutObservable<any>;
|
|
161
|
-
layoutGridChar?: any | KnockoutObservable<any>;
|
|
162
|
-
layoutGridLine?: any | KnockoutObservable<any>;
|
|
163
|
-
layoutGridMode?: any | KnockoutObservable<any>;
|
|
164
|
-
layoutGridType?: any | KnockoutObservable<any>;
|
|
165
|
-
left?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | KnockoutObservable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
|
|
166
|
-
letterSpacing?: any | KnockoutObservable<any>;
|
|
167
|
-
lineBreak?: any | KnockoutObservable<any>;
|
|
168
|
-
lineClamp?: number | KnockoutObservable<number>;
|
|
169
|
-
lineHeight?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
170
|
-
listStyle?: any | KnockoutObservable<any>;
|
|
171
|
-
listStyleImage?: any | KnockoutObservable<any>;
|
|
172
|
-
listStylePosition?: types.CssGlobalValues | "inside" | "outside" | KnockoutObservable<types.CssGlobalValues | "inside" | "outside">;
|
|
173
|
-
listStyleType?: any | KnockoutObservable<any>;
|
|
174
|
-
margin?: any | KnockoutObservable<any>;
|
|
175
|
-
marginBottom?: any | KnockoutObservable<any>;
|
|
176
|
-
marginLeft?: any | KnockoutObservable<any>;
|
|
177
|
-
marginRight?: any | KnockoutObservable<any>;
|
|
178
|
-
marginTop?: types.CssValueGeneral | KnockoutObservable<types.CssValueGeneral>;
|
|
179
|
-
marqueeDirection?: any | KnockoutObservable<any>;
|
|
180
|
-
marqueeStyle?: any | KnockoutObservable<any>;
|
|
181
|
-
mask?: any | KnockoutObservable<any>;
|
|
182
|
-
maskBorder?: any | KnockoutObservable<any>;
|
|
183
|
-
maskBorderRepeat?: any | KnockoutObservable<any>;
|
|
184
|
-
maskBorderSlice?: any | KnockoutObservable<any>;
|
|
185
|
-
maskBorderSource?: any | KnockoutObservable<any>;
|
|
186
|
-
maskBorderWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
187
|
-
maskClip?: any | KnockoutObservable<any>;
|
|
188
|
-
maskOrigin?: any | KnockoutObservable<any>;
|
|
189
|
-
maxFontSize?: any | KnockoutObservable<any>;
|
|
190
|
-
maxHeight?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
191
|
-
maxWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
192
|
-
minHeight?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
193
|
-
minWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
194
|
-
mixBlendMode?: types.CssValue<types.CssBlendMode> | KnockoutObservable<types.CssValue<types.CssBlendMode>>;
|
|
195
|
-
objectFit?: types.CssObjectFit | KnockoutObservable<types.CssObjectFit>;
|
|
196
|
-
objectPosition?: string | types.CssGlobalValues | KnockoutObservable<string | types.CssGlobalValues>;
|
|
197
|
-
opacity?: number | types.CssGlobalValues | KnockoutObservable<number | types.CssGlobalValues>;
|
|
198
|
-
order?: number | KnockoutObservable<number>;
|
|
199
|
-
orphans?: number | KnockoutObservable<number>;
|
|
200
|
-
outline?: any | KnockoutObservable<any>;
|
|
201
|
-
outlineColor?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
202
|
-
outlineStyle?: types.OutlineStyle | KnockoutObservable<types.OutlineStyle>;
|
|
203
|
-
outlineOffset?: any | KnockoutObservable<any>;
|
|
204
|
-
outlineWidth?: types.CssGlobalValues | "thin" | "medium" | "thick" | types.CssLength | KnockoutObservable<types.CssGlobalValues | "thin" | "medium" | "thick" | types.CssLength>;
|
|
205
|
-
overflow?: types.CssValue<types.CssOverflow> | KnockoutObservable<types.CssValue<types.CssOverflow>>;
|
|
206
|
-
overflowStyle?: any | KnockoutObservable<any>;
|
|
207
|
-
overflowWrap?: types.CssGlobalValues | "normal" | "break-word" | KnockoutObservable<types.CssGlobalValues | "normal" | "break-word">;
|
|
208
|
-
overflowX?: types.CssValue<types.CssOverflow> | KnockoutObservable<types.CssValue<types.CssOverflow>>;
|
|
209
|
-
overflowY?: types.CssValue<types.CssOverflow> | KnockoutObservable<types.CssValue<types.CssOverflow>>;
|
|
210
|
-
padding?: any | KnockoutObservable<any>;
|
|
211
|
-
paddingBottom?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
212
|
-
paddingLeft?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
213
|
-
paddingRight?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
214
|
-
paddingTop?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
215
|
-
pageBreakAfter?: types.PageBreakAfter | KnockoutObservable<types.PageBreakAfter>;
|
|
216
|
-
pageBreakBefore?: types.PageBreakBefore | KnockoutObservable<types.PageBreakBefore>;
|
|
217
|
-
pageBreakInside?: types.CssGlobalValues | "auto" | "avoid" | KnockoutObservable<types.CssGlobalValues | "auto" | "avoid">;
|
|
218
|
-
pause?: any | KnockoutObservable<any>;
|
|
219
|
-
pauseAfter?: any | KnockoutObservable<any>;
|
|
220
|
-
pauseBefore?: any | KnockoutObservable<any>;
|
|
221
|
-
perspective?: any | KnockoutObservable<any>;
|
|
222
|
-
perspectiveOrigin?: any | KnockoutObservable<any>;
|
|
223
|
-
pointerEvents?: types.PointerEvents | KnockoutObservable<types.PointerEvents>;
|
|
224
|
-
position?: types.PositionX | KnockoutObservable<types.PositionX>;
|
|
225
|
-
punctuationTrim?: any | KnockoutObservable<any>;
|
|
226
|
-
quotes?: any | KnockoutObservable<any>;
|
|
227
|
-
regionFragment?: any | KnockoutObservable<any>;
|
|
228
|
-
resize?: types.CssGlobalValues | "none" | "both " | "horizontal" | "vertical" | KnockoutObservable<types.CssGlobalValues | "none" | "both " | "horizontal" | "vertical">;
|
|
229
|
-
restAfter?: any | KnockoutObservable<any>;
|
|
230
|
-
restBefore?: any | KnockoutObservable<any>;
|
|
231
|
-
right?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | KnockoutObservable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
|
|
232
|
-
rubyAlign?: types.CssGlobalValues | "start" | "center" | "space-between" | "space-around" | KnockoutObservable<types.CssGlobalValues | "start" | "center" | "space-between" | "space-around">;
|
|
233
|
-
rubyPosition?: types.CssGlobalValues | "over" | "under" | "inter-character" | KnockoutObservable<types.CssGlobalValues | "over" | "under" | "inter-character">;
|
|
234
|
-
rx?: number | KnockoutObservable<number>;
|
|
235
|
-
ry?: number | KnockoutObservable<number>;
|
|
236
|
-
shapeImageThreshold?: any | KnockoutObservable<any>;
|
|
237
|
-
shapeInside?: any | KnockoutObservable<any>;
|
|
238
|
-
shapeMargin?: any | KnockoutObservable<any>;
|
|
239
|
-
shapeOutside?: any | KnockoutObservable<any>;
|
|
240
|
-
speak?: any | KnockoutObservable<any>;
|
|
241
|
-
speakAs?: any | KnockoutObservable<any>;
|
|
242
|
-
src?: types.CssValueString | KnockoutObservable<types.CssValueString>;
|
|
243
|
-
stroke?: string | KnockoutObservable<string>;
|
|
244
|
-
strokeDasharray?: number[] | KnockoutObservableArray<number>;
|
|
245
|
-
strokeDashoffset?: types.CssValue<types.CssGlobalValues | types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssGlobalValues | types.CssLength | types.CssPercentage>>;
|
|
246
|
-
strokeLinecap?: types.CssGlobalValues | "butt" | "round" | "square" | KnockoutObservable<types.CssGlobalValues | "butt" | "round" | "square">;
|
|
247
|
-
strokeOpacity?: number | KnockoutObservable<number>;
|
|
248
|
-
strokeWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
249
|
-
tabSize?: any | KnockoutObservable<any>;
|
|
250
|
-
tableLayout?: any | KnockoutObservable<any>;
|
|
251
|
-
textAnchor?: "start" | "middle" | "end" | "inherit" | KnockoutObservable<"start" | "middle" | "end" | "inherit">;
|
|
252
|
-
textAlign?: types.TextAlign | KnockoutObservable<types.TextAlign>;
|
|
253
|
-
textAlignLast?: types.TextAlignLast | KnockoutObservable<types.TextAlignLast>;
|
|
254
|
-
textDecoration?: any | KnockoutObservable<any>;
|
|
255
|
-
textDecorationColor?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
256
|
-
textDecorationLine?: any | KnockoutObservable<any>;
|
|
257
|
-
textDecorationLineThrough?: any | KnockoutObservable<any>;
|
|
258
|
-
textDecorationNone?: any | KnockoutObservable<any>;
|
|
259
|
-
textDecorationOverline?: any | KnockoutObservable<any>;
|
|
260
|
-
textDecorationSkip?: any | KnockoutObservable<any>;
|
|
261
|
-
textDecorationStyle?: types.CssGlobalValues | "solid" | "double" | "dotted" | "dashed" | "wavy" | KnockoutObservable<types.CssGlobalValues | "solid" | "double" | "dotted" | "dashed" | "wavy">;
|
|
262
|
-
textDecorationUnderline?: any | KnockoutObservable<any>;
|
|
263
|
-
textEmphasis?: any | KnockoutObservable<any>;
|
|
264
|
-
textEmphasisColor?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
265
|
-
textEmphasisStyle?: any | KnockoutObservable<any>;
|
|
266
|
-
textHeight?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
267
|
-
textIndent?: any | KnockoutObservable<any>;
|
|
268
|
-
textJustifyTrim?: any | KnockoutObservable<any>;
|
|
269
|
-
textKashidaSpace?: any | KnockoutObservable<any>;
|
|
270
|
-
textLineThrough?: any | KnockoutObservable<any>;
|
|
271
|
-
textLineThroughColor?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
272
|
-
textLineThroughMode?: any | KnockoutObservable<any>;
|
|
273
|
-
textLineThroughStyle?: any | KnockoutObservable<any>;
|
|
274
|
-
textLineThroughWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
275
|
-
textOverflow?: types.CssGlobalValues | "clip" | "ellipsis" | string | KnockoutObservable<types.CssGlobalValues | "clip" | "ellipsis" | string>;
|
|
276
|
-
textOverline?: any | KnockoutObservable<any>;
|
|
277
|
-
textOverlineColor?: types.CssValue<types.CssColor> | KnockoutObservable<types.CssValue<types.CssColor>>;
|
|
278
|
-
textOverlineMode?: any | KnockoutObservable<any>;
|
|
279
|
-
textOverlineStyle?: any | KnockoutObservable<any>;
|
|
280
|
-
textOverlineWidth?: types.CssValue<types.CssLength | types.CssPercentage> | KnockoutObservable<types.CssValue<types.CssLength | types.CssPercentage>>;
|
|
281
|
-
textRendering?: types.CssGlobalValues | "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision" | KnockoutObservable<types.CssGlobalValues | "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision">;
|
|
282
|
-
textScript?: any | KnockoutObservable<any>;
|
|
283
|
-
textShadow?: any | KnockoutObservable<any>;
|
|
284
|
-
textTransform?: types.TextTransform | KnockoutObservable<types.TextTransform>;
|
|
285
|
-
textUnderlinePosition?: any | KnockoutObservable<any>;
|
|
286
|
-
textUnderlineStyle?: any | KnockoutObservable<any>;
|
|
287
|
-
top?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | KnockoutObservable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
|
|
288
|
-
touchAction?: types.TouchAction | KnockoutObservable<types.TouchAction>;
|
|
289
|
-
transform?: types.CssTransformFunction | KnockoutObservable<types.CssTransformFunction>;
|
|
290
|
-
webKitTransform?: types.CssTransformFunction | KnockoutObservable<types.CssTransformFunction>;
|
|
291
|
-
msTransform?: types.CssTransformFunction | KnockoutObservable<types.CssTransformFunction>;
|
|
292
|
-
transformOrigin?: any | KnockoutObservable<any>;
|
|
293
|
-
transformOriginZ?: any | KnockoutObservable<any>;
|
|
294
|
-
transformStyle?: types.CssGlobalValues | "flat" | "preserve-3d" | KnockoutObservable<types.CssGlobalValues | "flat" | "preserve-3d">;
|
|
295
|
-
transition?: any | KnockoutObservable<any>;
|
|
296
|
-
transitionDelay?: any | KnockoutObservable<any>;
|
|
297
|
-
transitionDuration?: any | KnockoutObservable<any>;
|
|
298
|
-
transitionProperty?: types.CssValueString | KnockoutObservable<types.CssValueString>;
|
|
299
|
-
transitionTimingFunction?: types.CssTimingFunction | KnockoutObservable<types.CssTimingFunction>;
|
|
300
|
-
unicodeBidi?: any | KnockoutObservable<any>;
|
|
301
|
-
unicodeRange?: any | KnockoutObservable<any>;
|
|
302
|
-
userFocus?: any | KnockoutObservable<any>;
|
|
303
|
-
userInput?: any | KnockoutObservable<any>;
|
|
304
|
-
userSelect?: "auto" | "text" | "none" | "contain" | "all" | KnockoutObservable<"auto" | "text" | "none" | "contain" | "all">;
|
|
305
|
-
verticalAlign?: types.VerticalAlign | KnockoutObservable<types.VerticalAlign>;
|
|
306
|
-
visibility?: types.CssGlobalValues | "visible" | "hidden" | "collapse" | KnockoutObservable<types.CssGlobalValues | "visible" | "hidden" | "collapse">;
|
|
307
|
-
voiceBalance?: any | KnockoutObservable<any>;
|
|
308
|
-
voiceDuration?: any | KnockoutObservable<any>;
|
|
309
|
-
voiceFamily?: any | KnockoutObservable<any>;
|
|
310
|
-
voicePitch?: any | KnockoutObservable<any>;
|
|
311
|
-
voiceRange?: any | KnockoutObservable<any>;
|
|
312
|
-
voiceRate?: any | KnockoutObservable<any>;
|
|
313
|
-
voiceStress?: any | KnockoutObservable<any>;
|
|
314
|
-
voiceVolume?: any | KnockoutObservable<any>;
|
|
315
|
-
whiteSpace?: types.CssGlobalValues | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap" | KnockoutObservable<types.CssGlobalValues | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap">;
|
|
316
|
-
whiteSpaceTreatment?: any | KnockoutObservable<any>;
|
|
317
|
-
widows?: number | KnockoutObservable<number>;
|
|
318
|
-
width?: types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues> | KnockoutObservable<types.CssValue<"auto" | types.CssLength | types.CssPercentage | types.CssGlobalValues>>;
|
|
319
|
-
willChange?: types.CssValue<"auto" | "scroll-position" | "contents" | types.CssValueString> | KnockoutObservable<types.CssValue<"auto" | "scroll-position" | "contents" | types.CssValueString>>;
|
|
320
|
-
wordBreak?: types.CssGlobalValues | "normal" | "break-all" | "keep-all" | KnockoutObservable<types.CssGlobalValues | "normal" | "break-all" | "keep-all">;
|
|
321
|
-
wordSpacing?: types.CssGlobalValues | "normal" | types.CssLength | types.CssPercentage | KnockoutObservable<types.CssGlobalValues | "normal" | types.CssLength | types.CssPercentage>;
|
|
322
|
-
wordWrap?: types.CssGlobalValues | "normal" | "break-word" | KnockoutObservable<types.CssGlobalValues | "normal" | "break-word">;
|
|
323
|
-
wrapFlow?: any | KnockoutObservable<any>;
|
|
324
|
-
wrapMargin?: any | KnockoutObservable<any>;
|
|
325
|
-
wrapOption?: any | KnockoutObservable<any>;
|
|
326
|
-
writingMode?: types.WritingMode | KnockoutObservable<types.WritingMode>;
|
|
327
|
-
zIndex?: types.CssGlobalValues | "auto" | number | KnockoutObservable<types.CssGlobalValues | "auto" | number>;
|
|
328
|
-
zoom?: "auto" | number | KnockoutObservable<"auto" | number>;
|
|
329
|
-
}
|
|
2
|
+
import { Subscribable } from "knockout";
|
|
3
|
+
export declare function extendStyle(target: Style, source: Style): Style;
|
|
330
4
|
export interface Style {
|
|
331
5
|
alignContent?: types.AlignContent;
|
|
332
6
|
alignItems?: types.CssValue<types.AlignItems>;
|
|
@@ -482,7 +156,7 @@ export interface Style {
|
|
|
482
156
|
hyphens?: types.CssGlobalValues | string | "none" | "manual" | "auto";
|
|
483
157
|
imeMode?: types.CssGlobalValues | "auto" | "normal" | "active" | "inactive" | "disabled";
|
|
484
158
|
justifyContent?: types.JustifyContent;
|
|
485
|
-
justifyItems?: types.JustifyItems |
|
|
159
|
+
justifyItems?: types.JustifyItems | Subscribable<types.JustifyItems>;
|
|
486
160
|
justifySelf?: types.JustifySelf;
|
|
487
161
|
layoutGrid?: any;
|
|
488
162
|
layoutGridChar?: any;
|
|
@@ -654,4 +328,331 @@ export interface Style {
|
|
|
654
328
|
zIndex?: types.CssGlobalValues | "auto" | number;
|
|
655
329
|
zoom?: "auto" | number;
|
|
656
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
|
+
}
|
|
657
658
|
export declare const defaultStyle: Style;
|