dothtml 4.8.4 → 5.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/{jest.config.js → jest.config.ts} +19 -16
- package/lib/arg-callback-obj.d.ts +29 -0
- package/lib/built-in-components/nav-link.d.ts +8 -0
- package/lib/built-in-components/router.d.ts +57 -0
- package/lib/component.d.ts +73 -0
- package/lib/dot-component-legacy.d.ts +0 -0
- package/lib/dot-document.d.ts +0 -0
- package/lib/dot-util.d.ts +13 -0
- package/lib/dot.d.ts +5 -0
- package/lib/dothtml.d.ts +21 -0
- package/lib/dothtml.js +2 -0
- package/lib/dothtml.js.LICENSE.txt +1 -0
- package/lib/err.d.ts +2 -0
- package/lib/event-bus.d.ts +10 -0
- package/lib/i-dot.d.ts +674 -0
- package/lib/i-dotcss.d.ts +821 -0
- package/lib/node-polyfill.d.ts +2 -0
- package/lib/observable-array.d.ts +49 -0
- package/lib/style-builder.d.ts +3 -0
- package/package.json +11 -5
- package/readme.md +3 -2
- package/src/{arg-callback-obj.js → arg-callback-obj.ts} +18 -6
- package/src/built-in-components/nav-link.ts +21 -0
- package/src/built-in-components/router.ts +315 -0
- package/src/component.ts +369 -0
- package/src/dot-component-legacy.ts +79 -0
- package/src/dot-document.ts +0 -0
- package/src/dot-util.ts +33 -0
- package/src/dot.ts +1147 -0
- package/src/dothtml.ts +33 -0
- package/src/err.ts +22 -0
- package/src/event-bus.ts +39 -0
- package/src/i-dot.ts +787 -0
- package/src/i-dotcss.ts +911 -0
- package/src/node-polyfill.ts +11 -0
- package/src/{observable-array.js → observable-array.ts} +10 -5
- package/src/{style-builder.js → style-builder.ts} +219 -183
- package/tsconfig.json +99 -0
- package/unittests/advanced-bindings.test.ts +421 -0
- package/unittests/{array-evaluation.test.js → array-evaluation.test.ts} +1 -1
- package/unittests/{basic-functionality.test.js → basic-functionality.test.ts} +14 -10
- package/unittests/class-binding.test.ts +227 -0
- package/unittests/component-decorator.-.ts +14 -0
- package/unittests/components-data.test.ts +153 -0
- package/unittests/components.test.ts +257 -0
- package/unittests/computed.test.ts +35 -0
- package/unittests/{core.js → core.ts} +5 -2
- package/unittests/element-and-attribute-coverage.test.ts +472 -0
- package/unittests/hooks.test.ts +67 -0
- package/unittests/immutable-if.test.ts +19 -0
- package/unittests/input-bindings.test.ts +166 -0
- package/unittests/integration.test.ts +5 -0
- package/unittests/{iterations.test.js → iterations.test.ts} +5 -5
- package/unittests/logic.test.ts +18 -0
- package/unittests/refs.test.ts +36 -0
- package/unittests/routing.-.ts +56 -0
- package/unittests/{scopes.test.js → scopes.test.ts} +5 -5
- package/unittests/special-tags.test.ts +39 -0
- package/unittests/styles.test.ts +9 -0
- package/unittests/{testpage.js → testpage.ts} +2 -0
- package/unittests/{wait.test.js → wait.test.ts} +8 -5
- package/webpack.config.js +13 -1
- package/lib/dothtml.min.js +0 -1
- package/src/component.js +0 -305
- package/src/err.js +0 -20
- package/src/event-bus.js +0 -40
- package/src/index.js +0 -1453
- package/src/util.js +0 -13
- package/unittests/advanced-bindings.test.js +0 -386
- package/unittests/class-binding.test.js +0 -53
- package/unittests/components-data.test.js +0 -97
- package/unittests/components.test.js +0 -151
- package/unittests/computed.test.js +0 -36
- package/unittests/hooks.test.js +0 -57
- package/unittests/immutable-if.test.js +0 -15
- package/unittests/input-bindings.test.js +0 -155
- package/unittests/integration.test.js +0 -6
- package/unittests/logic.test.js +0 -18
- package/unittests/routing.-.js +0 -56
- package/unittests/special-tags.test.js +0 -32
package/src/i-dotcss.ts
ADDED
|
@@ -0,0 +1,911 @@
|
|
|
1
|
+
// Building blocks.
|
|
2
|
+
export declare type BasicCommonValues = "inherit"|"initial"|"unset";
|
|
3
|
+
export declare type AbsoluteUnits = "cm"|"mm"|"in"|"px"|"pt"|"pc";
|
|
4
|
+
export declare type RelativeUnits = "em"|"ex"|"ch"|"rem"|"vw"|"vh"|"vmin"|"vmax"|"%";
|
|
5
|
+
export declare type AllUnits = AbsoluteUnits|RelativeUnits;
|
|
6
|
+
export declare type OptionalWhitespace = ""|" ";
|
|
7
|
+
export declare type UrlType = `url('${string}')`;
|
|
8
|
+
|
|
9
|
+
// ts starts complaining about the complexity of the type :(
|
|
10
|
+
//export declare type DigitStr = "0"|"1"|"2"|"3"|"4"|"5"|"6"|"7"|"8"|"9";
|
|
11
|
+
// export declare type HexStr = DigitStr|"A"|"B"|"C"|"D"|"E"|"F"|"a"|"b"|"c"|"d"|"e"|"f";
|
|
12
|
+
|
|
13
|
+
// Types
|
|
14
|
+
export declare type BackgroundAttachmentValues = BasicCommonValues|"scroll"|"fixed"|"local"
|
|
15
|
+
export declare type BackgroundRepeatValues = BasicCommonValues|"no-repeat"|"repeat"|"space"|"round";
|
|
16
|
+
export declare type BackgroundOriginValues = BasicCommonValues|"padding-box"|"border-box"|"content-box";
|
|
17
|
+
export declare type BackgroundSizeValues = BasicCommonValues|"auto"|number|`${number}${AllUnits}`|"cover"|"contain";
|
|
18
|
+
export declare type BackfaceVisibilityValues = BasicCommonValues|"visible"|"hidden";
|
|
19
|
+
export declare type BorderStyles = BasicCommonValues|"dotted"|"dashed"|"solid"|"double"|"groove"|"ridge"|"inset"|"outset"|"none"|"hidden";
|
|
20
|
+
export declare type ColorName = BasicCommonValues|"aliceblue"|"antiquewhite"|"aqua"|"aquamarine"|"azure"|"beige"|"bisque"|"black"|"blanchedalmond"|"blue"|"blueviolet"|"brown"|"burlywood"|"cadetblue"|"chartreuse"|"chocolate"|"coral"|"cornflowerblue"|"cornsilk"|"crimson"|"cyan"|"darkblue"|"darkcyan"|"darkgoldenrod"|"darkgray"|"darkgrey"|"darkgreen"|"darkkhaki"|"darkmagenta"|"darkolivegreen"|"darkorange"|"darkorchid"|"darkred"|"darksalmon"|"darkseagreen"|"darkslateblue"|"darkslategray"|"darkslategrey"|"darkturquoise"|"darkviolet"|"deeppink"|"deepskyblue"|"dimgray"|"dimgrey"|"dodgerblue"|"firebrick"|"floralwhite"|"forestgreen"|"fuchsia"|"gainsboro"|"ghostwhite"|"gold"|"goldenrod"|"gray"|"grey"|"green"|"greenyellow"|"honeydew"|"hotpink"|"indianred"|"indigo"|"ivory"|"khaki"|"lavender"|"lavenderblush"|"lawngreen"|"lemonchiffon"|"lightblue"|"lightcoral"|"lightcyan"|"lightgoldenrodyellow"|"lightgray"|"lightgrey"|"lightgreen"|"lightpink"|"lightsalmon"|"lightseagreen"|"lightskyblue"|"lightslategray"|"lightslategrey"|"lightsteelblue"|"lightyellow"|"lime"|"limegreen"|"linen"|"magenta"|"maroon"|"mediumaquamarine"|"mediumblue"|"mediumorchid"|"mediumpurple"|"mediumseagreen"|"mediumslateblue"|"mediumspringgreen"|"mediumturquoise"|"mediumvioletred"|"midnightblue"|"mintcream"|"mistyrose"|"moccasin"|"navajowhite"|"navy"|"oldlace"|"olive"|"olivedrab"|"orange"|"orangered"|"orchid"|"palegoldenrod"|"palegreen"|"paleturquoise"|"palevioletred"|"papayawhip"|"peachpuff"|"peru"|"pink"|"plum"|"powderblue"|"purple"|"rebeccapurple"|"red"|"rosybrown"|"royalblue"|"saddlebrown"|"salmon"|"sandybrown"|"seagreen"|"seashell"|"sienna"|"silver"|"skyblue"|"slateblue"|"slategray"|"slategrey"|"snow"|"springgreen"|"steelblue"|"tan"|"teal"|"thistle"|"tomato"|"turquoise"|"violet"|"wheat"|"white"|"whitesmoke"|"yellow"|"yellowgreen";
|
|
21
|
+
export declare type LengthProp = BasicCommonValues|"maxHeight"|"minHeight"|"top"|"bottom"|"height"|"maxHidth"|"minWidth"|"right"|"left"|"width"|"margin"|"marginTop"|"marginBottom"|"marginLeft"|"marginRight"|"padding"|"paddingTop"|"paddingBottom"|"paddingLeft"|"paddingRight"|"lineHeight"|"fontSize";
|
|
22
|
+
export declare type PositionNames = BasicCommonValues|"static"|"relative"|"fixed"|"absolute"|"sticky";
|
|
23
|
+
|
|
24
|
+
// Advanced formatted types.
|
|
25
|
+
export declare type ColorFormat = BasicCommonValues|ColorName|number|`#${string}`|`rgb(${number},${OptionalWhitespace}${number},${OptionalWhitespace}${number})`|`rgba(${number},${OptionalWhitespace}${number},${OptionalWhitespace}${number},${OptionalWhitespace}${number})`|`hsl(${number},${OptionalWhitespace}${number}%,${OptionalWhitespace}${number}%)`|`hsla(${number},${OptionalWhitespace}${number}%,${OptionalWhitespace}${number}%,${OptionalWhitespace}${number})`;
|
|
26
|
+
|
|
27
|
+
export declare type BackgroundRepeatValues2d = BackgroundRepeatValues|"repeat-x"|"repeat-y"|`${BackgroundRepeatValues} ${BackgroundRepeatValues}`;
|
|
28
|
+
export declare type BorderShorthand = BasicCommonValues|`${number}${AllUnits} ${BorderStyles} ${ColorFormat}`;
|
|
29
|
+
export declare type BackgroundImageFormat = BasicCommonValues|UrlType|`${UrlType}, ${UrlType}`;
|
|
30
|
+
export declare type BackgroundPositionShorthand2D = BasicCommonValues|`${number} ${number}`|`${number}% ${number}%`|`${"left"|"right"|"center"} ${"top"|"center"|"bottom"}`;
|
|
31
|
+
export declare type BackgroundShorthand = BasicCommonValues|`${ColorFormat} ${UrlType} ${BackgroundRepeatValues} ${BackgroundPositionShorthand2D}`
|
|
32
|
+
|
|
33
|
+
export interface IDotcssProp{
|
|
34
|
+
angleToDeg(a: number|string);
|
|
35
|
+
matrixMultiply3D(a: Array<number>, b: Array<number>): Array<number>;
|
|
36
|
+
lengthToPx(l: string|number, prop?: LengthProp, element?: Element);
|
|
37
|
+
angleSubtract(a, b);
|
|
38
|
+
url(url: string);
|
|
39
|
+
rgb(r: number, g: number, b: number);
|
|
40
|
+
rgba(r: number, g: number, b: number, a: number);
|
|
41
|
+
buildTransform();
|
|
42
|
+
scopeToEl(el: HTMLElement);
|
|
43
|
+
cacheScopedStaticStyles(el: HTMLElement);
|
|
44
|
+
clearDynamicStyles(el: HTMLElement);
|
|
45
|
+
unscope();
|
|
46
|
+
formatNumberValue(value: number, unit?: string);
|
|
47
|
+
|
|
48
|
+
// Private.
|
|
49
|
+
//cacheScopedStaticStyles(el: HTMLElement);
|
|
50
|
+
//clearCachedStyles(el: HTMLElement);
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
// CSS PROPS!
|
|
54
|
+
// backgroundColor(values: string|Array<number>): IDotcssProp;
|
|
55
|
+
// backgroundColor(r: number, g: number, b: number, a?: number): IDotcssProp;
|
|
56
|
+
// color(values: string|Array<number>): IDotcssProp;
|
|
57
|
+
// color(r: number, g: number, b: number, a?: number): IDotcssProp;
|
|
58
|
+
|
|
59
|
+
// display(value: string): IDotcssProp;
|
|
60
|
+
// height: IDotcssAnimatable<string|number>;
|
|
61
|
+
// opacity: IDotcssAnimatable<string|number>;
|
|
62
|
+
// overflow(value: string): IDotcssProp;
|
|
63
|
+
// width: IDotcssAnimatable<string|number>;
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
//color:
|
|
70
|
+
color: IDotcssAnimatableColor;
|
|
71
|
+
backgroundColor: IDotcssAnimatableColor;
|
|
72
|
+
borderBottomColor: IDotcssAnimatableColor;
|
|
73
|
+
borderColor: IDotcssAnimatableColor;
|
|
74
|
+
borderLeftColor: IDotcssAnimatableColor;
|
|
75
|
+
borderRightColor: IDotcssAnimatableColor;
|
|
76
|
+
borderTopColor: IDotcssAnimatableColor;
|
|
77
|
+
textDecorationColor: IDotcssAnimatableColor;
|
|
78
|
+
outlineColor: IDotcssAnimatableColor;
|
|
79
|
+
columnRuleColor: IDotcssAnimatableColor;
|
|
80
|
+
|
|
81
|
+
//length:
|
|
82
|
+
backgroundSize: IDotcssAnimatable<BackgroundSizeValues>;
|
|
83
|
+
backgroundSizeCm: IDotcssAnimatable<number>;
|
|
84
|
+
backgroundSizeCh: IDotcssAnimatable<number>;
|
|
85
|
+
backgroundSizeEm: IDotcssAnimatable<number>;
|
|
86
|
+
backgroundSizeEx: IDotcssAnimatable<number>;
|
|
87
|
+
backgroundSizeIn: IDotcssAnimatable<number>;
|
|
88
|
+
backgroundSizeMm: IDotcssAnimatable<number>;
|
|
89
|
+
backgroundSizeP: IDotcssAnimatable<number>;
|
|
90
|
+
backgroundSizePc: IDotcssAnimatable<number>;
|
|
91
|
+
backgroundSizePt: IDotcssAnimatable<number>;
|
|
92
|
+
backgroundSizePx: IDotcssAnimatable<number>;
|
|
93
|
+
backgroundSizeRem: IDotcssAnimatable<number>;
|
|
94
|
+
backgroundSizeVh: IDotcssAnimatable<number>;
|
|
95
|
+
backgroundSizeVw: IDotcssAnimatable<number>;
|
|
96
|
+
backgroundSizeVMax: IDotcssAnimatable<number>;
|
|
97
|
+
backgroundSizeVMin: IDotcssAnimatable<number>;
|
|
98
|
+
|
|
99
|
+
borderBottomLeftRadius: IDotcssAnimatable<number|string>;
|
|
100
|
+
borderBottomLeftRadiusCm: IDotcssAnimatable<number>;
|
|
101
|
+
borderBottomLeftRadiusCh: IDotcssAnimatable<number>;
|
|
102
|
+
borderBottomLeftRadiusEm: IDotcssAnimatable<number>;
|
|
103
|
+
borderBottomLeftRadiusEx: IDotcssAnimatable<number>;
|
|
104
|
+
borderBottomLeftRadiusIn: IDotcssAnimatable<number>;
|
|
105
|
+
borderBottomLeftRadiusMm: IDotcssAnimatable<number>;
|
|
106
|
+
borderBottomLeftRadiusP: IDotcssAnimatable<number>;
|
|
107
|
+
borderBottomLeftRadiusPc: IDotcssAnimatable<number>;
|
|
108
|
+
borderBottomLeftRadiusPt: IDotcssAnimatable<number>;
|
|
109
|
+
borderBottomLeftRadiusPx: IDotcssAnimatable<number>;
|
|
110
|
+
borderBottomLeftRadiusRem: IDotcssAnimatable<number>;
|
|
111
|
+
borderBottomLeftRadiusVh: IDotcssAnimatable<number>;
|
|
112
|
+
borderBottomLeftRadiusVw: IDotcssAnimatable<number>;
|
|
113
|
+
borderBottomLeftRadiusVMax: IDotcssAnimatable<number>;
|
|
114
|
+
borderBottomLeftRadiusVMin: IDotcssAnimatable<number>;
|
|
115
|
+
|
|
116
|
+
borderBottomRightRadius: IDotcssAnimatable<number|string>;
|
|
117
|
+
borderBottomRightRadiusCm: IDotcssAnimatable<number>;
|
|
118
|
+
borderBottomRightRadiusCh: IDotcssAnimatable<number>;
|
|
119
|
+
borderBottomRightRadiusEm: IDotcssAnimatable<number>;
|
|
120
|
+
borderBottomRightRadiusEx: IDotcssAnimatable<number>;
|
|
121
|
+
borderBottomRightRadiusIn: IDotcssAnimatable<number>;
|
|
122
|
+
borderBottomRightRadiusMm: IDotcssAnimatable<number>;
|
|
123
|
+
borderBottomRightRadiusP: IDotcssAnimatable<number>;
|
|
124
|
+
borderBottomRightRadiusPc: IDotcssAnimatable<number>;
|
|
125
|
+
borderBottomRightRadiusPt: IDotcssAnimatable<number>;
|
|
126
|
+
borderBottomRightRadiusPx: IDotcssAnimatable<number>;
|
|
127
|
+
borderBottomRightRadiusRem: IDotcssAnimatable<number>;
|
|
128
|
+
borderBottomRightRadiusVh: IDotcssAnimatable<number>;
|
|
129
|
+
borderBottomRightRadiusVw: IDotcssAnimatable<number>;
|
|
130
|
+
borderBottomRightRadiusVMax: IDotcssAnimatable<number>;
|
|
131
|
+
borderBottomRightRadiusVMin: IDotcssAnimatable<number>;
|
|
132
|
+
|
|
133
|
+
borderBottomWidth: IDotcssAnimatable<number|string>;
|
|
134
|
+
borderBottomWidthCm: IDotcssAnimatable<number>;
|
|
135
|
+
borderBottomWidthCh: IDotcssAnimatable<number>;
|
|
136
|
+
borderBottomWidthEm: IDotcssAnimatable<number>;
|
|
137
|
+
borderBottomWidthEx: IDotcssAnimatable<number>;
|
|
138
|
+
borderBottomWidthIn: IDotcssAnimatable<number>;
|
|
139
|
+
borderBottomWidthMm: IDotcssAnimatable<number>;
|
|
140
|
+
borderBottomWidthP: IDotcssAnimatable<number>;
|
|
141
|
+
borderBottomWidthPc: IDotcssAnimatable<number>;
|
|
142
|
+
borderBottomWidthPt: IDotcssAnimatable<number>;
|
|
143
|
+
borderBottomWidthPx: IDotcssAnimatable<number>;
|
|
144
|
+
borderBottomWidthRem: IDotcssAnimatable<number>;
|
|
145
|
+
borderBottomWidthVh: IDotcssAnimatable<number>;
|
|
146
|
+
borderBottomWidthVw: IDotcssAnimatable<number>;
|
|
147
|
+
borderBottomWidthVMax: IDotcssAnimatable<number>;
|
|
148
|
+
borderBottomWidthVMin: IDotcssAnimatable<number>;
|
|
149
|
+
|
|
150
|
+
borderImageWidth: IDotcssAnimatable<number|string>;
|
|
151
|
+
borderImageWidthCm: IDotcssAnimatable<number>;
|
|
152
|
+
borderImageWidthCh: IDotcssAnimatable<number>;
|
|
153
|
+
borderImageWidthEm: IDotcssAnimatable<number>;
|
|
154
|
+
borderImageWidthEx: IDotcssAnimatable<number>;
|
|
155
|
+
borderImageWidthIn: IDotcssAnimatable<number>;
|
|
156
|
+
borderImageWidthMm: IDotcssAnimatable<number>;
|
|
157
|
+
borderImageWidthP: IDotcssAnimatable<number>;
|
|
158
|
+
borderImageWidthPc: IDotcssAnimatable<number>;
|
|
159
|
+
borderImageWidthPt: IDotcssAnimatable<number>;
|
|
160
|
+
borderImageWidthPx: IDotcssAnimatable<number>;
|
|
161
|
+
borderImageWidthRem: IDotcssAnimatable<number>;
|
|
162
|
+
borderImageWidthVh: IDotcssAnimatable<number>;
|
|
163
|
+
borderImageWidthVw: IDotcssAnimatable<number>;
|
|
164
|
+
borderImageWidthVMax: IDotcssAnimatable<number>;
|
|
165
|
+
borderImageWidthVMin: IDotcssAnimatable<number>;
|
|
166
|
+
|
|
167
|
+
borderLeftWidth: IDotcssAnimatable<number|string>;
|
|
168
|
+
borderLeftWidthCm: IDotcssAnimatable<number>;
|
|
169
|
+
borderLeftWidthCh: IDotcssAnimatable<number>;
|
|
170
|
+
borderLeftWidthEm: IDotcssAnimatable<number>;
|
|
171
|
+
borderLeftWidthEx: IDotcssAnimatable<number>;
|
|
172
|
+
borderLeftWidthIn: IDotcssAnimatable<number>;
|
|
173
|
+
borderLeftWidthMm: IDotcssAnimatable<number>;
|
|
174
|
+
borderLeftWidthP: IDotcssAnimatable<number>;
|
|
175
|
+
borderLeftWidthPc: IDotcssAnimatable<number>;
|
|
176
|
+
borderLeftWidthPt: IDotcssAnimatable<number>;
|
|
177
|
+
borderLeftWidthPx: IDotcssAnimatable<number>;
|
|
178
|
+
borderLeftWidthRem: IDotcssAnimatable<number>;
|
|
179
|
+
borderLeftWidthVh: IDotcssAnimatable<number>;
|
|
180
|
+
borderLeftWidthVw: IDotcssAnimatable<number>;
|
|
181
|
+
borderLeftWidthVMax: IDotcssAnimatable<number>;
|
|
182
|
+
borderLeftWidthVMin: IDotcssAnimatable<number>;
|
|
183
|
+
|
|
184
|
+
borderRadius: IDotcssAnimatable<number|string>;
|
|
185
|
+
borderRadiusCm: IDotcssAnimatable<number>;
|
|
186
|
+
borderRadiusCh: IDotcssAnimatable<number>;
|
|
187
|
+
borderRadiusEm: IDotcssAnimatable<number>;
|
|
188
|
+
borderRadiusEx: IDotcssAnimatable<number>;
|
|
189
|
+
borderRadiusIn: IDotcssAnimatable<number>;
|
|
190
|
+
borderRadiusMm: IDotcssAnimatable<number>;
|
|
191
|
+
borderRadiusP: IDotcssAnimatable<number>;
|
|
192
|
+
borderRadiusPc: IDotcssAnimatable<number>;
|
|
193
|
+
borderRadiusPt: IDotcssAnimatable<number>;
|
|
194
|
+
borderRadiusPx: IDotcssAnimatable<number>;
|
|
195
|
+
borderRadiusRem: IDotcssAnimatable<number>;
|
|
196
|
+
borderRadiusVh: IDotcssAnimatable<number>;
|
|
197
|
+
borderRadiusVw: IDotcssAnimatable<number>;
|
|
198
|
+
borderRadiusVMax: IDotcssAnimatable<number>;
|
|
199
|
+
borderRadiusVMin: IDotcssAnimatable<number>;
|
|
200
|
+
|
|
201
|
+
borderRightWidth: IDotcssAnimatable<number|string>;
|
|
202
|
+
borderRightWidthCm: IDotcssAnimatable<number>;
|
|
203
|
+
borderRightWidthCh: IDotcssAnimatable<number>;
|
|
204
|
+
borderRightWidthEm: IDotcssAnimatable<number>;
|
|
205
|
+
borderRightWidthEx: IDotcssAnimatable<number>;
|
|
206
|
+
borderRightWidthIn: IDotcssAnimatable<number>;
|
|
207
|
+
borderRightWidthMm: IDotcssAnimatable<number>;
|
|
208
|
+
borderRightWidthP: IDotcssAnimatable<number>;
|
|
209
|
+
borderRightWidthPc: IDotcssAnimatable<number>;
|
|
210
|
+
borderRightWidthPt: IDotcssAnimatable<number>;
|
|
211
|
+
borderRightWidthPx: IDotcssAnimatable<number>;
|
|
212
|
+
borderRightWidthRem: IDotcssAnimatable<number>;
|
|
213
|
+
borderRightWidthVh: IDotcssAnimatable<number>;
|
|
214
|
+
borderRightWidthVw: IDotcssAnimatable<number>;
|
|
215
|
+
borderRightWidthVMax: IDotcssAnimatable<number>;
|
|
216
|
+
borderRightWidthVMin: IDotcssAnimatable<number>;
|
|
217
|
+
|
|
218
|
+
borderTopLeftRadius: IDotcssAnimatable<number|string>;
|
|
219
|
+
borderTopLeftRadiusCm: IDotcssAnimatable<number>;
|
|
220
|
+
borderTopLeftRadiusCh: IDotcssAnimatable<number>;
|
|
221
|
+
borderTopLeftRadiusEm: IDotcssAnimatable<number>;
|
|
222
|
+
borderTopLeftRadiusEx: IDotcssAnimatable<number>;
|
|
223
|
+
borderTopLeftRadiusIn: IDotcssAnimatable<number>;
|
|
224
|
+
borderTopLeftRadiusMm: IDotcssAnimatable<number>;
|
|
225
|
+
borderTopLeftRadiusP: IDotcssAnimatable<number>;
|
|
226
|
+
borderTopLeftRadiusPc: IDotcssAnimatable<number>;
|
|
227
|
+
borderTopLeftRadiusPt: IDotcssAnimatable<number>;
|
|
228
|
+
borderTopLeftRadiusPx: IDotcssAnimatable<number>;
|
|
229
|
+
borderTopLeftRadiusRem: IDotcssAnimatable<number>;
|
|
230
|
+
borderTopLeftRadiusVh: IDotcssAnimatable<number>;
|
|
231
|
+
borderTopLeftRadiusVw: IDotcssAnimatable<number>;
|
|
232
|
+
borderTopLeftRadiusVMax: IDotcssAnimatable<number>;
|
|
233
|
+
borderTopLeftRadiusVMin: IDotcssAnimatable<number>;
|
|
234
|
+
|
|
235
|
+
borderTopRightRadius: IDotcssAnimatable<number|string>;
|
|
236
|
+
borderTopRightRadiusCm: IDotcssAnimatable<number>;
|
|
237
|
+
borderTopRightRadiusCh: IDotcssAnimatable<number>;
|
|
238
|
+
borderTopRightRadiusEm: IDotcssAnimatable<number>;
|
|
239
|
+
borderTopRightRadiusEx: IDotcssAnimatable<number>;
|
|
240
|
+
borderTopRightRadiusIn: IDotcssAnimatable<number>;
|
|
241
|
+
borderTopRightRadiusMm: IDotcssAnimatable<number>;
|
|
242
|
+
borderTopRightRadiusP: IDotcssAnimatable<number>;
|
|
243
|
+
borderTopRightRadiusPc: IDotcssAnimatable<number>;
|
|
244
|
+
borderTopRightRadiusPt: IDotcssAnimatable<number>;
|
|
245
|
+
borderTopRightRadiusPx: IDotcssAnimatable<number>;
|
|
246
|
+
borderTopRightRadiusRem: IDotcssAnimatable<number>;
|
|
247
|
+
borderTopRightRadiusVh: IDotcssAnimatable<number>;
|
|
248
|
+
borderTopRightRadiusVw: IDotcssAnimatable<number>;
|
|
249
|
+
borderTopRightRadiusVMax: IDotcssAnimatable<number>;
|
|
250
|
+
borderTopRightRadiusVMin: IDotcssAnimatable<number>;
|
|
251
|
+
|
|
252
|
+
borderTopWidth: IDotcssAnimatable<number|string>;
|
|
253
|
+
borderTopWidthCm: IDotcssAnimatable<number>;
|
|
254
|
+
borderTopWidthCh: IDotcssAnimatable<number>;
|
|
255
|
+
borderTopWidthEm: IDotcssAnimatable<number>;
|
|
256
|
+
borderTopWidthEx: IDotcssAnimatable<number>;
|
|
257
|
+
borderTopWidthIn: IDotcssAnimatable<number>;
|
|
258
|
+
borderTopWidthMm: IDotcssAnimatable<number>;
|
|
259
|
+
borderTopWidthP: IDotcssAnimatable<number>;
|
|
260
|
+
borderTopWidthPc: IDotcssAnimatable<number>;
|
|
261
|
+
borderTopWidthPt: IDotcssAnimatable<number>;
|
|
262
|
+
borderTopWidthPx: IDotcssAnimatable<number>;
|
|
263
|
+
borderTopWidthRem: IDotcssAnimatable<number>;
|
|
264
|
+
borderTopWidthVh: IDotcssAnimatable<number>;
|
|
265
|
+
borderTopWidthVw: IDotcssAnimatable<number>;
|
|
266
|
+
borderTopWidthVMax: IDotcssAnimatable<number>;
|
|
267
|
+
borderTopWidthVMin: IDotcssAnimatable<number>;
|
|
268
|
+
|
|
269
|
+
borderWidth: IDotcssAnimatable<number|string>;
|
|
270
|
+
borderWidthCm: IDotcssAnimatable<number>;
|
|
271
|
+
borderWidthCh: IDotcssAnimatable<number>;
|
|
272
|
+
borderWidthEm: IDotcssAnimatable<number>;
|
|
273
|
+
borderWidthEx: IDotcssAnimatable<number>;
|
|
274
|
+
borderWidthIn: IDotcssAnimatable<number>;
|
|
275
|
+
borderWidthMm: IDotcssAnimatable<number>;
|
|
276
|
+
borderWidthP: IDotcssAnimatable<number>;
|
|
277
|
+
borderWidthPc: IDotcssAnimatable<number>;
|
|
278
|
+
borderWidthPt: IDotcssAnimatable<number>;
|
|
279
|
+
borderWidthPx: IDotcssAnimatable<number>;
|
|
280
|
+
borderWidthRem: IDotcssAnimatable<number>;
|
|
281
|
+
borderWidthVh: IDotcssAnimatable<number>;
|
|
282
|
+
borderWidthVw: IDotcssAnimatable<number>;
|
|
283
|
+
borderWidthVMax: IDotcssAnimatable<number>;
|
|
284
|
+
borderWidthVMin: IDotcssAnimatable<number>;
|
|
285
|
+
|
|
286
|
+
bottom: IDotcssAnimatable<number|string>;
|
|
287
|
+
bottomCm: IDotcssAnimatable<number>;
|
|
288
|
+
bottomCh: IDotcssAnimatable<number>;
|
|
289
|
+
bottomEm: IDotcssAnimatable<number>;
|
|
290
|
+
bottomEx: IDotcssAnimatable<number>;
|
|
291
|
+
bottomIn: IDotcssAnimatable<number>;
|
|
292
|
+
bottomMm: IDotcssAnimatable<number>;
|
|
293
|
+
bottomP: IDotcssAnimatable<number>;
|
|
294
|
+
bottomPc: IDotcssAnimatable<number>;
|
|
295
|
+
bottomPt: IDotcssAnimatable<number>;
|
|
296
|
+
bottomPx: IDotcssAnimatable<number>;
|
|
297
|
+
bottomRem: IDotcssAnimatable<number>;
|
|
298
|
+
bottomVh: IDotcssAnimatable<number>;
|
|
299
|
+
bottomVw: IDotcssAnimatable<number>;
|
|
300
|
+
bottomVMax: IDotcssAnimatable<number>;
|
|
301
|
+
bottomVMin: IDotcssAnimatable<number>;
|
|
302
|
+
|
|
303
|
+
height: IDotcssAnimatable<number|string>;
|
|
304
|
+
heightCm: IDotcssAnimatable<number>;
|
|
305
|
+
heightCh: IDotcssAnimatable<number>;
|
|
306
|
+
heightEm: IDotcssAnimatable<number>;
|
|
307
|
+
heightEx: IDotcssAnimatable<number>;
|
|
308
|
+
heightIn: IDotcssAnimatable<number>;
|
|
309
|
+
heightMm: IDotcssAnimatable<number>;
|
|
310
|
+
heightP: IDotcssAnimatable<number>;
|
|
311
|
+
heightPc: IDotcssAnimatable<number>;
|
|
312
|
+
heightPt: IDotcssAnimatable<number>;
|
|
313
|
+
heightPx: IDotcssAnimatable<number>;
|
|
314
|
+
heightRem: IDotcssAnimatable<number>;
|
|
315
|
+
heightVh: IDotcssAnimatable<number>;
|
|
316
|
+
heightVw: IDotcssAnimatable<number>;
|
|
317
|
+
heightVMax: IDotcssAnimatable<number>;
|
|
318
|
+
heightVMin: IDotcssAnimatable<number>;
|
|
319
|
+
|
|
320
|
+
left: IDotcssAnimatable<number|string>;
|
|
321
|
+
leftCm: IDotcssAnimatable<number>;
|
|
322
|
+
leftCh: IDotcssAnimatable<number>;
|
|
323
|
+
leftEm: IDotcssAnimatable<number>;
|
|
324
|
+
leftEx: IDotcssAnimatable<number>;
|
|
325
|
+
leftIn: IDotcssAnimatable<number>;
|
|
326
|
+
leftMm: IDotcssAnimatable<number>;
|
|
327
|
+
leftP: IDotcssAnimatable<number>;
|
|
328
|
+
leftPc: IDotcssAnimatable<number>;
|
|
329
|
+
leftPt: IDotcssAnimatable<number>;
|
|
330
|
+
leftPx: IDotcssAnimatable<number>;
|
|
331
|
+
leftRem: IDotcssAnimatable<number>;
|
|
332
|
+
leftVh: IDotcssAnimatable<number>;
|
|
333
|
+
leftVw: IDotcssAnimatable<number>;
|
|
334
|
+
leftVMax: IDotcssAnimatable<number>;
|
|
335
|
+
leftVMin: IDotcssAnimatable<number>;
|
|
336
|
+
|
|
337
|
+
margin: IDotcssAnimatable<number|string>;
|
|
338
|
+
marginCm: IDotcssAnimatable<number>;
|
|
339
|
+
marginCh: IDotcssAnimatable<number>;
|
|
340
|
+
marginEm: IDotcssAnimatable<number>;
|
|
341
|
+
marginEx: IDotcssAnimatable<number>;
|
|
342
|
+
marginIn: IDotcssAnimatable<number>;
|
|
343
|
+
marginMm: IDotcssAnimatable<number>;
|
|
344
|
+
marginP: IDotcssAnimatable<number>;
|
|
345
|
+
marginPc: IDotcssAnimatable<number>;
|
|
346
|
+
marginPt: IDotcssAnimatable<number>;
|
|
347
|
+
marginPx: IDotcssAnimatable<number>;
|
|
348
|
+
marginRem: IDotcssAnimatable<number>;
|
|
349
|
+
marginVh: IDotcssAnimatable<number>;
|
|
350
|
+
marginVw: IDotcssAnimatable<number>;
|
|
351
|
+
marginVMax: IDotcssAnimatable<number>;
|
|
352
|
+
marginVMin: IDotcssAnimatable<number>;
|
|
353
|
+
|
|
354
|
+
marginBottom: IDotcssAnimatable<number|string>;
|
|
355
|
+
marginBottomCm: IDotcssAnimatable<number>;
|
|
356
|
+
marginBottomCh: IDotcssAnimatable<number>;
|
|
357
|
+
marginBottomEm: IDotcssAnimatable<number>;
|
|
358
|
+
marginBottomEx: IDotcssAnimatable<number>;
|
|
359
|
+
marginBottomIn: IDotcssAnimatable<number>;
|
|
360
|
+
marginBottomMm: IDotcssAnimatable<number>;
|
|
361
|
+
marginBottomP: IDotcssAnimatable<number>;
|
|
362
|
+
marginBottomPc: IDotcssAnimatable<number>;
|
|
363
|
+
marginBottomPt: IDotcssAnimatable<number>;
|
|
364
|
+
marginBottomPx: IDotcssAnimatable<number>;
|
|
365
|
+
marginBottomRem: IDotcssAnimatable<number>;
|
|
366
|
+
marginBottomVh: IDotcssAnimatable<number>;
|
|
367
|
+
marginBottomVw: IDotcssAnimatable<number>;
|
|
368
|
+
marginBottomVMax: IDotcssAnimatable<number>;
|
|
369
|
+
marginBottomVMin: IDotcssAnimatable<number>;
|
|
370
|
+
|
|
371
|
+
marginLeft: IDotcssAnimatable<number|string>;
|
|
372
|
+
marginLeftCm: IDotcssAnimatable<number>;
|
|
373
|
+
marginLeftCh: IDotcssAnimatable<number>;
|
|
374
|
+
marginLeftEm: IDotcssAnimatable<number>;
|
|
375
|
+
marginLeftEx: IDotcssAnimatable<number>;
|
|
376
|
+
marginLeftIn: IDotcssAnimatable<number>;
|
|
377
|
+
marginLeftMm: IDotcssAnimatable<number>;
|
|
378
|
+
marginLeftP: IDotcssAnimatable<number>;
|
|
379
|
+
marginLeftPc: IDotcssAnimatable<number>;
|
|
380
|
+
marginLeftPt: IDotcssAnimatable<number>;
|
|
381
|
+
marginLeftPx: IDotcssAnimatable<number>;
|
|
382
|
+
marginLeftRem: IDotcssAnimatable<number>;
|
|
383
|
+
marginLeftVh: IDotcssAnimatable<number>;
|
|
384
|
+
marginLeftVw: IDotcssAnimatable<number>;
|
|
385
|
+
marginLeftVMax: IDotcssAnimatable<number>;
|
|
386
|
+
marginLeftVMin: IDotcssAnimatable<number>;
|
|
387
|
+
|
|
388
|
+
marginRight: IDotcssAnimatable<number|string>;
|
|
389
|
+
marginRightCm: IDotcssAnimatable<number>;
|
|
390
|
+
marginRightCh: IDotcssAnimatable<number>;
|
|
391
|
+
marginRightEm: IDotcssAnimatable<number>;
|
|
392
|
+
marginRightEx: IDotcssAnimatable<number>;
|
|
393
|
+
marginRightIn: IDotcssAnimatable<number>;
|
|
394
|
+
marginRightMm: IDotcssAnimatable<number>;
|
|
395
|
+
marginRightP: IDotcssAnimatable<number>;
|
|
396
|
+
marginRightPc: IDotcssAnimatable<number>;
|
|
397
|
+
marginRightPt: IDotcssAnimatable<number>;
|
|
398
|
+
marginRightPx: IDotcssAnimatable<number>;
|
|
399
|
+
marginRightRem: IDotcssAnimatable<number>;
|
|
400
|
+
marginRightVh: IDotcssAnimatable<number>;
|
|
401
|
+
marginRightVw: IDotcssAnimatable<number>;
|
|
402
|
+
marginRightVMax: IDotcssAnimatable<number>;
|
|
403
|
+
marginRightVMin: IDotcssAnimatable<number>;
|
|
404
|
+
|
|
405
|
+
marginTop: IDotcssAnimatable<number|string>;
|
|
406
|
+
marginTopCm: IDotcssAnimatable<number>;
|
|
407
|
+
marginTopCh: IDotcssAnimatable<number>;
|
|
408
|
+
marginTopEm: IDotcssAnimatable<number>;
|
|
409
|
+
marginTopEx: IDotcssAnimatable<number>;
|
|
410
|
+
marginTopIn: IDotcssAnimatable<number>;
|
|
411
|
+
marginTopMm: IDotcssAnimatable<number>;
|
|
412
|
+
marginTopP: IDotcssAnimatable<number>;
|
|
413
|
+
marginTopPc: IDotcssAnimatable<number>;
|
|
414
|
+
marginTopPt: IDotcssAnimatable<number>;
|
|
415
|
+
marginTopPx: IDotcssAnimatable<number>;
|
|
416
|
+
marginTopRem: IDotcssAnimatable<number>;
|
|
417
|
+
marginTopVh: IDotcssAnimatable<number>;
|
|
418
|
+
marginTopVw: IDotcssAnimatable<number>;
|
|
419
|
+
marginTopVMax: IDotcssAnimatable<number>;
|
|
420
|
+
marginTopVMin: IDotcssAnimatable<number>;
|
|
421
|
+
|
|
422
|
+
maxHeight: IDotcssAnimatable<number|string>;
|
|
423
|
+
maxHeightCm: IDotcssAnimatable<number>;
|
|
424
|
+
maxHeightCh: IDotcssAnimatable<number>;
|
|
425
|
+
maxHeightEm: IDotcssAnimatable<number>;
|
|
426
|
+
maxHeightEx: IDotcssAnimatable<number>;
|
|
427
|
+
maxHeightIn: IDotcssAnimatable<number>;
|
|
428
|
+
maxHeightMm: IDotcssAnimatable<number>;
|
|
429
|
+
maxHeightP: IDotcssAnimatable<number>;
|
|
430
|
+
maxHeightPc: IDotcssAnimatable<number>;
|
|
431
|
+
maxHeightPt: IDotcssAnimatable<number>;
|
|
432
|
+
maxHeightPx: IDotcssAnimatable<number>;
|
|
433
|
+
maxHeightRem: IDotcssAnimatable<number>;
|
|
434
|
+
maxHeightVh: IDotcssAnimatable<number>;
|
|
435
|
+
maxHeightVw: IDotcssAnimatable<number>;
|
|
436
|
+
maxHeightVMax: IDotcssAnimatable<number>;
|
|
437
|
+
maxHeightVMin: IDotcssAnimatable<number>;
|
|
438
|
+
|
|
439
|
+
maxWidth: IDotcssAnimatable<number|string>;
|
|
440
|
+
maxWidthCm: IDotcssAnimatable<number>;
|
|
441
|
+
maxWidthCh: IDotcssAnimatable<number>;
|
|
442
|
+
maxWidthEm: IDotcssAnimatable<number>;
|
|
443
|
+
maxWidthEx: IDotcssAnimatable<number>;
|
|
444
|
+
maxWidthIn: IDotcssAnimatable<number>;
|
|
445
|
+
maxWidthMm: IDotcssAnimatable<number>;
|
|
446
|
+
maxWidthP: IDotcssAnimatable<number>;
|
|
447
|
+
maxWidthPc: IDotcssAnimatable<number>;
|
|
448
|
+
maxWidthPt: IDotcssAnimatable<number>;
|
|
449
|
+
maxWidthPx: IDotcssAnimatable<number>;
|
|
450
|
+
maxWidthRem: IDotcssAnimatable<number>;
|
|
451
|
+
maxWidthVh: IDotcssAnimatable<number>;
|
|
452
|
+
maxWidthVw: IDotcssAnimatable<number>;
|
|
453
|
+
maxWidthVMax: IDotcssAnimatable<number>;
|
|
454
|
+
maxWidthVMin: IDotcssAnimatable<number>;
|
|
455
|
+
|
|
456
|
+
minHeight: IDotcssAnimatable<number|string>;
|
|
457
|
+
minHeightCm: IDotcssAnimatable<number>;
|
|
458
|
+
minHeightCh: IDotcssAnimatable<number>;
|
|
459
|
+
minHeightEm: IDotcssAnimatable<number>;
|
|
460
|
+
minHeightEx: IDotcssAnimatable<number>;
|
|
461
|
+
minHeightIn: IDotcssAnimatable<number>;
|
|
462
|
+
minHeightMm: IDotcssAnimatable<number>;
|
|
463
|
+
minHeightP: IDotcssAnimatable<number>;
|
|
464
|
+
minHeightPc: IDotcssAnimatable<number>;
|
|
465
|
+
minHeightPt: IDotcssAnimatable<number>;
|
|
466
|
+
minHeightPx: IDotcssAnimatable<number>;
|
|
467
|
+
minHeightRem: IDotcssAnimatable<number>;
|
|
468
|
+
minHeightVh: IDotcssAnimatable<number>;
|
|
469
|
+
minHeightVw: IDotcssAnimatable<number>;
|
|
470
|
+
minHeightVMax: IDotcssAnimatable<number>;
|
|
471
|
+
minHeightVMin: IDotcssAnimatable<number>;
|
|
472
|
+
|
|
473
|
+
minWidth: IDotcssAnimatable<number|string>;
|
|
474
|
+
minWidthCm: IDotcssAnimatable<number>;
|
|
475
|
+
minWidthCh: IDotcssAnimatable<number>;
|
|
476
|
+
minWidthEm: IDotcssAnimatable<number>;
|
|
477
|
+
minWidthEx: IDotcssAnimatable<number>;
|
|
478
|
+
minWidthIn: IDotcssAnimatable<number>;
|
|
479
|
+
minWidthMm: IDotcssAnimatable<number>;
|
|
480
|
+
minWidthP: IDotcssAnimatable<number>;
|
|
481
|
+
minWidthPc: IDotcssAnimatable<number>;
|
|
482
|
+
minWidthPt: IDotcssAnimatable<number>;
|
|
483
|
+
minWidthPx: IDotcssAnimatable<number>;
|
|
484
|
+
minWidthRem: IDotcssAnimatable<number>;
|
|
485
|
+
minWidthVh: IDotcssAnimatable<number>;
|
|
486
|
+
minWidthVw: IDotcssAnimatable<number>;
|
|
487
|
+
minWidthVMax: IDotcssAnimatable<number>;
|
|
488
|
+
minWidthVMin: IDotcssAnimatable<number>;
|
|
489
|
+
|
|
490
|
+
padding: IDotcssAnimatable<number|string>;
|
|
491
|
+
paddingCm: IDotcssAnimatable<number>;
|
|
492
|
+
paddingCh: IDotcssAnimatable<number>;
|
|
493
|
+
paddingEm: IDotcssAnimatable<number>;
|
|
494
|
+
paddingEx: IDotcssAnimatable<number>;
|
|
495
|
+
paddingIn: IDotcssAnimatable<number>;
|
|
496
|
+
paddingMm: IDotcssAnimatable<number>;
|
|
497
|
+
paddingP: IDotcssAnimatable<number>;
|
|
498
|
+
paddingPc: IDotcssAnimatable<number>;
|
|
499
|
+
paddingPt: IDotcssAnimatable<number>;
|
|
500
|
+
paddingPx: IDotcssAnimatable<number>;
|
|
501
|
+
paddingRem: IDotcssAnimatable<number>;
|
|
502
|
+
paddingVh: IDotcssAnimatable<number>;
|
|
503
|
+
paddingVw: IDotcssAnimatable<number>;
|
|
504
|
+
paddingVMax: IDotcssAnimatable<number>;
|
|
505
|
+
paddingVMin: IDotcssAnimatable<number>;
|
|
506
|
+
|
|
507
|
+
paddingBottom: IDotcssAnimatable<number|string>;
|
|
508
|
+
paddingBottomCm: IDotcssAnimatable<number>;
|
|
509
|
+
paddingBottomCh: IDotcssAnimatable<number>;
|
|
510
|
+
paddingBottomEm: IDotcssAnimatable<number>;
|
|
511
|
+
paddingBottomEx: IDotcssAnimatable<number>;
|
|
512
|
+
paddingBottomIn: IDotcssAnimatable<number>;
|
|
513
|
+
paddingBottomMm: IDotcssAnimatable<number>;
|
|
514
|
+
paddingBottomP: IDotcssAnimatable<number>;
|
|
515
|
+
paddingBottomPc: IDotcssAnimatable<number>;
|
|
516
|
+
paddingBottomPt: IDotcssAnimatable<number>;
|
|
517
|
+
paddingBottomPx: IDotcssAnimatable<number>;
|
|
518
|
+
paddingBottomRem: IDotcssAnimatable<number>;
|
|
519
|
+
paddingBottomVh: IDotcssAnimatable<number>;
|
|
520
|
+
paddingBottomVw: IDotcssAnimatable<number>;
|
|
521
|
+
paddingBottomVMax: IDotcssAnimatable<number>;
|
|
522
|
+
paddingBottomVMin: IDotcssAnimatable<number>;
|
|
523
|
+
|
|
524
|
+
paddingLeft: IDotcssAnimatable<number|string>;
|
|
525
|
+
paddingLeftCm: IDotcssAnimatable<number>;
|
|
526
|
+
paddingLeftCh: IDotcssAnimatable<number>;
|
|
527
|
+
paddingLeftEm: IDotcssAnimatable<number>;
|
|
528
|
+
paddingLeftEx: IDotcssAnimatable<number>;
|
|
529
|
+
paddingLeftIn: IDotcssAnimatable<number>;
|
|
530
|
+
paddingLeftMm: IDotcssAnimatable<number>;
|
|
531
|
+
paddingLeftP: IDotcssAnimatable<number>;
|
|
532
|
+
paddingLeftPc: IDotcssAnimatable<number>;
|
|
533
|
+
paddingLeftPt: IDotcssAnimatable<number>;
|
|
534
|
+
paddingLeftPx: IDotcssAnimatable<number>;
|
|
535
|
+
paddingLeftRem: IDotcssAnimatable<number>;
|
|
536
|
+
paddingLeftVh: IDotcssAnimatable<number>;
|
|
537
|
+
paddingLeftVw: IDotcssAnimatable<number>;
|
|
538
|
+
paddingLeftVMax: IDotcssAnimatable<number>;
|
|
539
|
+
paddingLeftVMin: IDotcssAnimatable<number>;
|
|
540
|
+
|
|
541
|
+
paddingRight: IDotcssAnimatable<number|string>;
|
|
542
|
+
paddingRightCm: IDotcssAnimatable<number>;
|
|
543
|
+
paddingRightCh: IDotcssAnimatable<number>;
|
|
544
|
+
paddingRightEm: IDotcssAnimatable<number>;
|
|
545
|
+
paddingRightEx: IDotcssAnimatable<number>;
|
|
546
|
+
paddingRightIn: IDotcssAnimatable<number>;
|
|
547
|
+
paddingRightMm: IDotcssAnimatable<number>;
|
|
548
|
+
paddingRightP: IDotcssAnimatable<number>;
|
|
549
|
+
paddingRightPc: IDotcssAnimatable<number>;
|
|
550
|
+
paddingRightPt: IDotcssAnimatable<number>;
|
|
551
|
+
paddingRightPx: IDotcssAnimatable<number>;
|
|
552
|
+
paddingRightRem: IDotcssAnimatable<number>;
|
|
553
|
+
paddingRightVh: IDotcssAnimatable<number>;
|
|
554
|
+
paddingRightVw: IDotcssAnimatable<number>;
|
|
555
|
+
paddingRightVMax: IDotcssAnimatable<number>;
|
|
556
|
+
paddingRightVMin: IDotcssAnimatable<number>;
|
|
557
|
+
|
|
558
|
+
paddingTop: IDotcssAnimatable<number|string>;
|
|
559
|
+
paddingTopCm: IDotcssAnimatable<number>;
|
|
560
|
+
paddingTopCh: IDotcssAnimatable<number>;
|
|
561
|
+
paddingTopEm: IDotcssAnimatable<number>;
|
|
562
|
+
paddingTopEx: IDotcssAnimatable<number>;
|
|
563
|
+
paddingTopIn: IDotcssAnimatable<number>;
|
|
564
|
+
paddingTopMm: IDotcssAnimatable<number>;
|
|
565
|
+
paddingTopP: IDotcssAnimatable<number>;
|
|
566
|
+
paddingTopPc: IDotcssAnimatable<number>;
|
|
567
|
+
paddingTopPt: IDotcssAnimatable<number>;
|
|
568
|
+
paddingTopPx: IDotcssAnimatable<number>;
|
|
569
|
+
paddingTopRem: IDotcssAnimatable<number>;
|
|
570
|
+
paddingTopVh: IDotcssAnimatable<number>;
|
|
571
|
+
paddingTopVw: IDotcssAnimatable<number>;
|
|
572
|
+
paddingTopVMax: IDotcssAnimatable<number>;
|
|
573
|
+
paddingTopVMin: IDotcssAnimatable<number>;
|
|
574
|
+
|
|
575
|
+
right: IDotcssAnimatable<number|string>;
|
|
576
|
+
rightCm: IDotcssAnimatable<number>;
|
|
577
|
+
rightCh: IDotcssAnimatable<number>;
|
|
578
|
+
rightEm: IDotcssAnimatable<number>;
|
|
579
|
+
rightEx: IDotcssAnimatable<number>;
|
|
580
|
+
rightIn: IDotcssAnimatable<number>;
|
|
581
|
+
rightMm: IDotcssAnimatable<number>;
|
|
582
|
+
rightP: IDotcssAnimatable<number>;
|
|
583
|
+
rightPc: IDotcssAnimatable<number>;
|
|
584
|
+
rightPt: IDotcssAnimatable<number>;
|
|
585
|
+
rightPx: IDotcssAnimatable<number>;
|
|
586
|
+
rightRem: IDotcssAnimatable<number>;
|
|
587
|
+
rightVh: IDotcssAnimatable<number>;
|
|
588
|
+
rightVw: IDotcssAnimatable<number>;
|
|
589
|
+
rightVMax: IDotcssAnimatable<number>;
|
|
590
|
+
rightVMin: IDotcssAnimatable<number>;
|
|
591
|
+
|
|
592
|
+
top: IDotcssAnimatable<number|string>;
|
|
593
|
+
topCm: IDotcssAnimatable<number>;
|
|
594
|
+
topCh: IDotcssAnimatable<number>;
|
|
595
|
+
topEm: IDotcssAnimatable<number>;
|
|
596
|
+
topEx: IDotcssAnimatable<number>;
|
|
597
|
+
topIn: IDotcssAnimatable<number>;
|
|
598
|
+
topMm: IDotcssAnimatable<number>;
|
|
599
|
+
topP: IDotcssAnimatable<number>;
|
|
600
|
+
topPc: IDotcssAnimatable<number>;
|
|
601
|
+
topPt: IDotcssAnimatable<number>;
|
|
602
|
+
topPx: IDotcssAnimatable<number>;
|
|
603
|
+
topRem: IDotcssAnimatable<number>;
|
|
604
|
+
topVh: IDotcssAnimatable<number>;
|
|
605
|
+
topVw: IDotcssAnimatable<number>;
|
|
606
|
+
topVMax: IDotcssAnimatable<number>;
|
|
607
|
+
topVMin: IDotcssAnimatable<number>;
|
|
608
|
+
|
|
609
|
+
width: IDotcssAnimatable<number|string>;
|
|
610
|
+
widthCm: IDotcssAnimatable<number>;
|
|
611
|
+
widthCh: IDotcssAnimatable<number>;
|
|
612
|
+
widthEm: IDotcssAnimatable<number>;
|
|
613
|
+
widthEx: IDotcssAnimatable<number>;
|
|
614
|
+
widthIn: IDotcssAnimatable<number>;
|
|
615
|
+
widthMm: IDotcssAnimatable<number>;
|
|
616
|
+
widthP: IDotcssAnimatable<number>;
|
|
617
|
+
widthPc: IDotcssAnimatable<number>;
|
|
618
|
+
widthPt: IDotcssAnimatable<number>;
|
|
619
|
+
widthPx: IDotcssAnimatable<number>;
|
|
620
|
+
widthRem: IDotcssAnimatable<number>;
|
|
621
|
+
widthVh: IDotcssAnimatable<number>;
|
|
622
|
+
widthVw: IDotcssAnimatable<number>;
|
|
623
|
+
widthVMax: IDotcssAnimatable<number>;
|
|
624
|
+
widthVMin: IDotcssAnimatable<number>;
|
|
625
|
+
|
|
626
|
+
lineHeight: IDotcssAnimatable<number|string>;
|
|
627
|
+
lineHeightCm: IDotcssAnimatable<number>;
|
|
628
|
+
lineHeightCh: IDotcssAnimatable<number>;
|
|
629
|
+
lineHeightEm: IDotcssAnimatable<number>;
|
|
630
|
+
lineHeightEx: IDotcssAnimatable<number>;
|
|
631
|
+
lineHeightIn: IDotcssAnimatable<number>;
|
|
632
|
+
lineHeightMm: IDotcssAnimatable<number>;
|
|
633
|
+
lineHeightP: IDotcssAnimatable<number>;
|
|
634
|
+
lineHeightPc: IDotcssAnimatable<number>;
|
|
635
|
+
lineHeightPt: IDotcssAnimatable<number>;
|
|
636
|
+
lineHeightPx: IDotcssAnimatable<number>;
|
|
637
|
+
lineHeightRem: IDotcssAnimatable<number>;
|
|
638
|
+
lineHeightVh: IDotcssAnimatable<number>;
|
|
639
|
+
lineHeightVw: IDotcssAnimatable<number>;
|
|
640
|
+
lineHeightVMax: IDotcssAnimatable<number>;
|
|
641
|
+
lineHeightVMin: IDotcssAnimatable<number>;
|
|
642
|
+
|
|
643
|
+
fontSize: IDotcssAnimatable<number|string>;
|
|
644
|
+
fontSizeCm: IDotcssAnimatable<number>;
|
|
645
|
+
fontSizeCh: IDotcssAnimatable<number>;
|
|
646
|
+
fontSizeEm: IDotcssAnimatable<number>;
|
|
647
|
+
fontSizeEx: IDotcssAnimatable<number>;
|
|
648
|
+
fontSizeIn: IDotcssAnimatable<number>;
|
|
649
|
+
fontSizeMm: IDotcssAnimatable<number>;
|
|
650
|
+
fontSizeP: IDotcssAnimatable<number>;
|
|
651
|
+
fontSizePc: IDotcssAnimatable<number>;
|
|
652
|
+
fontSizePt: IDotcssAnimatable<number>;
|
|
653
|
+
fontSizePx: IDotcssAnimatable<number>;
|
|
654
|
+
fontSizeRem: IDotcssAnimatable<number>;
|
|
655
|
+
fontSizeVh: IDotcssAnimatable<number>;
|
|
656
|
+
fontSizeVw: IDotcssAnimatable<number>;
|
|
657
|
+
fontSizeVMax: IDotcssAnimatable<number>;
|
|
658
|
+
fontSizeVMin: IDotcssAnimatable<number>;
|
|
659
|
+
|
|
660
|
+
//url:
|
|
661
|
+
backgroundImage: (value: BackgroundImageFormat)=>IDotcssProp
|
|
662
|
+
borderImage: (value: BackgroundImageFormat)=>IDotcssProp
|
|
663
|
+
listStyleImage: (value: BackgroundImageFormat)=>IDotcssProp
|
|
664
|
+
content: (value: BasicCommonValues|UrlType)=>IDotcssProp
|
|
665
|
+
|
|
666
|
+
//transformation:
|
|
667
|
+
transformation
|
|
668
|
+
|
|
669
|
+
//misc numeric:
|
|
670
|
+
opacity: IDotcssAnimatable<number|string>;
|
|
671
|
+
|
|
672
|
+
//misc:
|
|
673
|
+
background: (value: string)=>IDotcssProp
|
|
674
|
+
backgroundAttachment: (value: BackgroundAttachmentValues)=>IDotcssProp
|
|
675
|
+
backgroundBlendMode: (value: string)=>IDotcssProp
|
|
676
|
+
backgroundPosition: (value: BackgroundPositionShorthand2D)=>IDotcssProp
|
|
677
|
+
backgroundRepeat: (value: BackgroundRepeatValues2d)=>IDotcssProp
|
|
678
|
+
backgroundClip: (value: string)=>IDotcssProp
|
|
679
|
+
backgroundOrigin: (value: BackgroundOriginValues)=>IDotcssProp
|
|
680
|
+
|
|
681
|
+
borderImageOutset: (value: string)=>IDotcssProp
|
|
682
|
+
borderImageRepeat: (value: BackgroundRepeatValues2d)=>IDotcssProp
|
|
683
|
+
borderImageSlice: (value: string)=>IDotcssProp
|
|
684
|
+
borderImageSource: (value: string)=>IDotcssProp
|
|
685
|
+
|
|
686
|
+
border: (value: BorderShorthand)=>IDotcssProp
|
|
687
|
+
borderBottom: (value: BorderShorthand)=>IDotcssProp
|
|
688
|
+
borderLeft: (value: BorderShorthand)=>IDotcssProp
|
|
689
|
+
borderRight: (value: BorderShorthand)=>IDotcssProp
|
|
690
|
+
borderTop: (value: BorderShorthand)=>IDotcssProp
|
|
691
|
+
|
|
692
|
+
borderBottomStyle: (value: BorderStyles)=>IDotcssProp
|
|
693
|
+
borderLeftStyle: (value: BorderStyles)=>IDotcssProp
|
|
694
|
+
borderRightStyle: (value: BorderStyles)=>IDotcssProp
|
|
695
|
+
borderStyle: (value: BorderStyles)=>IDotcssProp
|
|
696
|
+
borderTopStyle: (value: BorderStyles)=>IDotcssProp
|
|
697
|
+
|
|
698
|
+
boxDecorationBreak: (value: string)=>IDotcssProp
|
|
699
|
+
boxShadow: (value: string)=>IDotcssProp
|
|
700
|
+
clear: (value: string)=>IDotcssProp
|
|
701
|
+
clip: (value: string)=>IDotcssProp
|
|
702
|
+
display: (value: string)=>IDotcssProp
|
|
703
|
+
float: (value: string)=>IDotcssProp
|
|
704
|
+
overflow: (value: string)=>IDotcssProp
|
|
705
|
+
box: (value: string)=>IDotcssProp
|
|
706
|
+
overflowX: (value: string)=>IDotcssProp
|
|
707
|
+
overflowY: (value: string)=>IDotcssProp
|
|
708
|
+
position: (value: PositionNames)=>IDotcssProp
|
|
709
|
+
visibility: (value: string)=>IDotcssProp
|
|
710
|
+
verticalAlign: (value: string)=>IDotcssProp
|
|
711
|
+
zIndex: (value: string)=>IDotcssProp
|
|
712
|
+
alignContent: (value: string)=>IDotcssProp
|
|
713
|
+
alignItems: (value: string)=>IDotcssProp
|
|
714
|
+
alignSelf: (value: string)=>IDotcssProp
|
|
715
|
+
flex: (value: string)=>IDotcssProp
|
|
716
|
+
flexBasis: (value: string)=>IDotcssProp
|
|
717
|
+
flexDirection: (value: string)=>IDotcssProp
|
|
718
|
+
flexFlow: (value: string)=>IDotcssProp
|
|
719
|
+
flexGrow: (value: string)=>IDotcssProp
|
|
720
|
+
flexShrink: (value: string)=>IDotcssProp
|
|
721
|
+
flexWrap: (value: string)=>IDotcssProp
|
|
722
|
+
grid: (value: string)=>IDotcssProp
|
|
723
|
+
gridArea: (value: string)=>IDotcssProp
|
|
724
|
+
gridAutoColumns: (value: string)=>IDotcssProp
|
|
725
|
+
gridautoRows: (value: string)=>IDotcssProp
|
|
726
|
+
gridColumn: (value: string)=>IDotcssProp
|
|
727
|
+
gridColumnEnd: (value: string)=>IDotcssProp
|
|
728
|
+
gridColumnGap: (value: string)=>IDotcssProp
|
|
729
|
+
gridColumnStart: (value: string)=>IDotcssProp
|
|
730
|
+
gridGap: (value: string)=>IDotcssProp
|
|
731
|
+
gridRow: (value: string)=>IDotcssProp
|
|
732
|
+
gridRowEnd: (value: string)=>IDotcssProp
|
|
733
|
+
gridRowGap: (value: string)=>IDotcssProp
|
|
734
|
+
gridRowStart: (value: string)=>IDotcssProp
|
|
735
|
+
gridTemplate: (value: string)=>IDotcssProp
|
|
736
|
+
gridTemplateAreas: (value: string)=>IDotcssProp
|
|
737
|
+
gridTemplateColumns: (value: string)=>IDotcssProp
|
|
738
|
+
gridTemplateRows: (value: string)=>IDotcssProp
|
|
739
|
+
imageOrientation: (value: string)=>IDotcssProp
|
|
740
|
+
justifyContent: (value: string)=>IDotcssProp
|
|
741
|
+
order: (value: string)=>IDotcssProp
|
|
742
|
+
hangingPunctuation: (value: string)=>IDotcssProp
|
|
743
|
+
hyphens: (value: string)=>IDotcssProp
|
|
744
|
+
letterSpacing: (value: string)=>IDotcssProp
|
|
745
|
+
lineBreak: (value: string)=>IDotcssProp
|
|
746
|
+
overflowWrap: (value: string)=>IDotcssProp
|
|
747
|
+
tabSize: (value: string)=>IDotcssProp
|
|
748
|
+
textAlign: (value: string)=>IDotcssProp
|
|
749
|
+
textAlignLast: (value: string)=>IDotcssProp
|
|
750
|
+
textCombineUpright: (value: string)=>IDotcssProp
|
|
751
|
+
textIndent: (value: string)=>IDotcssProp
|
|
752
|
+
textJustify: (value: string)=>IDotcssProp
|
|
753
|
+
textTransform: (value: string)=>IDotcssProp
|
|
754
|
+
whiteSpace: (value: string)=>IDotcssProp
|
|
755
|
+
wordBreak: (value: string)=>IDotcssProp
|
|
756
|
+
wordSpacing: (value: string)=>IDotcssProp
|
|
757
|
+
wordWrap: (value: string)=>IDotcssProp
|
|
758
|
+
textDecoration: (value: string)=>IDotcssProp
|
|
759
|
+
textDecorationLine: (value: string)=>IDotcssProp
|
|
760
|
+
textDecorationStyle: (value: string)=>IDotcssProp
|
|
761
|
+
textShadow: (value: string)=>IDotcssProp
|
|
762
|
+
textUnderlinePosition: (value: string)=>IDotcssProp
|
|
763
|
+
font: (value: string)=>IDotcssProp
|
|
764
|
+
fontFamily: (value: string)=>IDotcssProp
|
|
765
|
+
fontFeatureSettings: (value: string)=>IDotcssProp
|
|
766
|
+
fontKerning: (value: string)=>IDotcssProp
|
|
767
|
+
fontLanguageOverride: (value: string)=>IDotcssProp
|
|
768
|
+
fontSizeAdjust: (value: string)=>IDotcssProp
|
|
769
|
+
fontStretch: (value: string)=>IDotcssProp
|
|
770
|
+
fontStyle: (value: string)=>IDotcssProp
|
|
771
|
+
fontSynthesis: (value: string)=>IDotcssProp
|
|
772
|
+
fontVariant: (value: string)=>IDotcssProp
|
|
773
|
+
fontVariantAlternates: (value: string)=>IDotcssProp
|
|
774
|
+
fontVariantCaps: (value: string)=>IDotcssProp
|
|
775
|
+
fontVariantEastAsian: (value: string)=>IDotcssProp
|
|
776
|
+
fontVariantLigatures: (value: string)=>IDotcssProp
|
|
777
|
+
fontVariantNumeric: (value: string)=>IDotcssProp
|
|
778
|
+
fontVariantPosition: (value: string)=>IDotcssProp
|
|
779
|
+
fontWeight: (value: string)=>IDotcssProp
|
|
780
|
+
direction: (value: string)=>IDotcssProp
|
|
781
|
+
textOrientation: (value: string)=>IDotcssProp
|
|
782
|
+
unicodeBidi: (value: string)=>IDotcssProp
|
|
783
|
+
userSelect: (value: string)=>IDotcssProp
|
|
784
|
+
writingMode: (value: string)=>IDotcssProp
|
|
785
|
+
borderCollapse: (value: string)=>IDotcssProp
|
|
786
|
+
borderSpacing: (value: string)=>IDotcssProp
|
|
787
|
+
captionSide: (value: string)=>IDotcssProp
|
|
788
|
+
emptyCells: (value: string)=>IDotcssProp
|
|
789
|
+
tableLayout: (value: string)=>IDotcssProp
|
|
790
|
+
counterIncrement: (value: string)=>IDotcssProp
|
|
791
|
+
counterReset: (value: string)=>IDotcssProp
|
|
792
|
+
listStyle: (value: string)=>IDotcssProp
|
|
793
|
+
listStylePosition: (value: string)=>IDotcssProp
|
|
794
|
+
listStyleType: (value: string)=>IDotcssProp
|
|
795
|
+
animation: (value: string)=>IDotcssProp
|
|
796
|
+
animationDelay: (value: string)=>IDotcssProp
|
|
797
|
+
animationDirection: (value: string)=>IDotcssProp
|
|
798
|
+
animationDuration: (value: string)=>IDotcssProp
|
|
799
|
+
animationFillMode: (value: string)=>IDotcssProp
|
|
800
|
+
animationIterationCount: (value: string)=>IDotcssProp
|
|
801
|
+
animationName: (value: string)=>IDotcssProp
|
|
802
|
+
animationPlayState: (value: string)=>IDotcssProp
|
|
803
|
+
animationTimingFunction: (value: string)=>IDotcssProp
|
|
804
|
+
backfaceVisibility: (value: BackfaceVisibilityValues)=>IDotcssProp
|
|
805
|
+
perspective2d: (value: string)=>IDotcssProp
|
|
806
|
+
perspectiveOrigin: (value: string)=>IDotcssProp
|
|
807
|
+
transformOrigin: (value: string)=>IDotcssProp
|
|
808
|
+
transformStyle: (value: string)=>IDotcssProp
|
|
809
|
+
transition: (value: string)=>IDotcssProp
|
|
810
|
+
transitionProperty: (value: string)=>IDotcssProp
|
|
811
|
+
transitionDuration: (value: string)=>IDotcssProp
|
|
812
|
+
transitionTimingFunction: (value: string)=>IDotcssProp
|
|
813
|
+
transitionDelay: (value: string)=>IDotcssProp
|
|
814
|
+
boxSizing: (value: string)=>IDotcssProp
|
|
815
|
+
cursor: (value: string)=>IDotcssProp
|
|
816
|
+
imeMode: (value: string)=>IDotcssProp
|
|
817
|
+
navDown: (value: string)=>IDotcssProp
|
|
818
|
+
navIndex: (value: string)=>IDotcssProp
|
|
819
|
+
navLeft: (value: string)=>IDotcssProp
|
|
820
|
+
navRight: (value: string)=>IDotcssProp
|
|
821
|
+
navUp: (value: string)=>IDotcssProp
|
|
822
|
+
outline: (value: string)=>IDotcssProp
|
|
823
|
+
outlineOffset: (value: string)=>IDotcssProp
|
|
824
|
+
outlineStyle: (value: string)=>IDotcssProp
|
|
825
|
+
outlineWidth: (value: string)=>IDotcssProp
|
|
826
|
+
resize: (value: string)=>IDotcssProp
|
|
827
|
+
textOverflow: (value: string)=>IDotcssProp
|
|
828
|
+
breakAfter: (value: string)=>IDotcssProp
|
|
829
|
+
breakBefore: (value: string)=>IDotcssProp
|
|
830
|
+
breakInside: (value: string)=>IDotcssProp
|
|
831
|
+
columnCount: (value: string)=>IDotcssProp
|
|
832
|
+
columnFill: (value: string)=>IDotcssProp
|
|
833
|
+
columnGap: (value: string)=>IDotcssProp
|
|
834
|
+
columnRule: (value: string)=>IDotcssProp
|
|
835
|
+
columnRuleStyle: (value: string)=>IDotcssProp
|
|
836
|
+
columnRuleWidth: (value: string)=>IDotcssProp
|
|
837
|
+
columnSpan: (value: string)=>IDotcssProp
|
|
838
|
+
columnWidth: (value: string)=>IDotcssProp
|
|
839
|
+
columns: (value: string)=>IDotcssProp
|
|
840
|
+
widows: (value: string)=>IDotcssProp
|
|
841
|
+
orphans: (value: string)=>IDotcssProp
|
|
842
|
+
pageBreakAfter: (value: string)=>IDotcssProp
|
|
843
|
+
pageBreakBefore: (value: string)=>IDotcssProp
|
|
844
|
+
pageBreakInside: (value: string)=>IDotcssProp
|
|
845
|
+
marks: (value: string)=>IDotcssProp
|
|
846
|
+
quotes: (value: string)=>IDotcssProp
|
|
847
|
+
filter: (value: string)=>IDotcssProp
|
|
848
|
+
imageRendering: (value: string)=>IDotcssProp
|
|
849
|
+
imageResolution: (value: string)=>IDotcssProp
|
|
850
|
+
objectFit: (value: string)=>IDotcssProp
|
|
851
|
+
objectPosition: (value: string)=>IDotcssProp
|
|
852
|
+
mask: (value: string)=>IDotcssProp
|
|
853
|
+
maskType: (value: string)=>IDotcssProp
|
|
854
|
+
mark: (value: string)=>IDotcssProp
|
|
855
|
+
markAfter: (value: string)=>IDotcssProp
|
|
856
|
+
markBefore: (value: string)=>IDotcssProp
|
|
857
|
+
phonemes: (value: string)=>IDotcssProp
|
|
858
|
+
rest: (value: string)=>IDotcssProp
|
|
859
|
+
restAfter: (value: string)=>IDotcssProp
|
|
860
|
+
restBefore: (value: string)=>IDotcssProp
|
|
861
|
+
voiceBalance: (value: string)=>IDotcssProp
|
|
862
|
+
voiceDuration: (value: string)=>IDotcssProp
|
|
863
|
+
voicePitch: (value: string)=>IDotcssProp
|
|
864
|
+
voicePitchRange: (value: string)=>IDotcssProp
|
|
865
|
+
voiceRate: (value: string)=>IDotcssProp
|
|
866
|
+
voiceStress: (value: string)=>IDotcssProp
|
|
867
|
+
voiceVolume: (value: string)=>IDotcssProp
|
|
868
|
+
marqueeDirection: (value: string)=>IDotcssProp
|
|
869
|
+
marqueePlayCount: (value: string)=>IDotcssProp
|
|
870
|
+
marqueeSpeed: (value: string)=>IDotcssProp
|
|
871
|
+
marqueeStyle: (value: string)=>IDotcssProp
|
|
872
|
+
pointerEvents: (value: string)=>IDotcssProp
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
export default interface IDotCss extends IDotcssProp{
|
|
876
|
+
(document?: Element|string): IDotcssProp;
|
|
877
|
+
|
|
878
|
+
version: string;
|
|
879
|
+
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
export interface IDotcssAnimatable<T> extends IDotcssProp{
|
|
883
|
+
(value: T): IDotcssProp;
|
|
884
|
+
|
|
885
|
+
animate(value: number, duration: number, style: "ease", complete: Function): IDotcssProp;
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
export interface IDotcssAnimatableColor extends IDotcssProp{
|
|
889
|
+
(value: ColorFormat|Array<number>): IDotcssProp;
|
|
890
|
+
(r: number, g: number, b: number, a?: number): IDotcssProp;
|
|
891
|
+
|
|
892
|
+
animate(value: ColorFormat|Array<number>, duration: number, style: "ease", complete: Function): IDotcssProp;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
export interface HideParams{
|
|
897
|
+
duration?: number,
|
|
898
|
+
complete?: Function,
|
|
899
|
+
hideStyle?: "normal"|"fade"|"shrink",
|
|
900
|
+
animationStyle?: "ease",
|
|
901
|
+
}
|
|
902
|
+
export interface ShowParams{
|
|
903
|
+
duration?: number,
|
|
904
|
+
display?: string, // TODO: potential to expand this.
|
|
905
|
+
complete?: Function,
|
|
906
|
+
opacity?: number,
|
|
907
|
+
width?: number,
|
|
908
|
+
height?: number,
|
|
909
|
+
showStyle?: "normal"|"fade"|"grow",
|
|
910
|
+
animationStyle?: "ease",
|
|
911
|
+
}
|