dothtml 4.8.6 → 5.0.2

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