happy-dom 6.0.4 → 7.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.

Potentially problematic release.


This version of happy-dom might be problematic. Click here for more details.

Files changed (179) hide show
  1. package/lib/css/CSSParser.js +12 -6
  2. package/lib/css/CSSParser.js.map +1 -1
  3. package/lib/css/CSSRule.d.ts +15 -13
  4. package/lib/css/CSSRule.js +18 -13
  5. package/lib/css/CSSRule.js.map +1 -1
  6. package/lib/css/CSSRuleTypeEnum.d.ts +17 -0
  7. package/lib/css/CSSRuleTypeEnum.js +21 -0
  8. package/lib/css/CSSRuleTypeEnum.js.map +1 -0
  9. package/lib/css/CSSStyleSheet.d.ts +6 -16
  10. package/lib/css/CSSStyleSheet.js +11 -19
  11. package/lib/css/CSSStyleSheet.js.map +1 -1
  12. package/lib/css/declaration/AbstractCSSStyleDeclaration.d.ts +76 -0
  13. package/lib/css/declaration/AbstractCSSStyleDeclaration.js +182 -0
  14. package/lib/css/declaration/AbstractCSSStyleDeclaration.js.map +1 -0
  15. package/lib/css/declaration/CSSStyleDeclaration.d.ts +1194 -0
  16. package/lib/css/declaration/CSSStyleDeclaration.js +3566 -0
  17. package/lib/css/declaration/CSSStyleDeclaration.js.map +1 -0
  18. package/lib/css/declaration/utilities/CSSStyleDeclarationCSSParser.d.ts +12 -0
  19. package/lib/css/declaration/utilities/CSSStyleDeclarationCSSParser.js +34 -0
  20. package/lib/css/declaration/utilities/CSSStyleDeclarationCSSParser.js.map +1 -0
  21. package/lib/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.d.ts +131 -0
  22. package/lib/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.js +133 -0
  23. package/lib/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.js.map +1 -0
  24. package/lib/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.d.ts +40 -0
  25. package/lib/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.js +42 -0
  26. package/lib/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.js.map +1 -0
  27. package/lib/css/declaration/utilities/CSSStyleDeclarationElementStyle.d.ts +49 -0
  28. package/lib/css/declaration/utilities/CSSStyleDeclarationElementStyle.js +244 -0
  29. package/lib/css/declaration/utilities/CSSStyleDeclarationElementStyle.js.map +1 -0
  30. package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.d.ts +167 -0
  31. package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.js +537 -0
  32. package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.js.map +1 -0
  33. package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyManager.d.ts +65 -0
  34. package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyManager.js +565 -0
  35. package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyManager.js.map +1 -0
  36. package/lib/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.d.ts +809 -0
  37. package/lib/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.js +2303 -0
  38. package/lib/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.js.map +1 -0
  39. package/lib/css/declaration/utilities/CSSStyleDeclarationValueParser.d.ts +127 -0
  40. package/lib/css/declaration/utilities/CSSStyleDeclarationValueParser.js +411 -0
  41. package/lib/css/declaration/utilities/CSSStyleDeclarationValueParser.js.map +1 -0
  42. package/lib/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.d.ts +4 -0
  43. package/lib/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.js +3 -0
  44. package/lib/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.js.map +1 -0
  45. package/lib/css/rules/CSSContainerRule.d.ts +15 -0
  46. package/lib/css/rules/CSSContainerRule.js +31 -0
  47. package/lib/css/rules/CSSContainerRule.js.map +1 -0
  48. package/lib/css/rules/CSSFontFaceRule.d.ts +10 -3
  49. package/lib/css/rules/CSSFontFaceRule.js +16 -0
  50. package/lib/css/rules/CSSFontFaceRule.js.map +1 -1
  51. package/lib/css/rules/CSSKeyframeRule.d.ts +10 -3
  52. package/lib/css/rules/CSSKeyframeRule.js +16 -0
  53. package/lib/css/rules/CSSKeyframeRule.js.map +1 -1
  54. package/lib/css/rules/CSSKeyframesRule.d.ts +1 -1
  55. package/lib/css/rules/CSSKeyframesRule.js +1 -1
  56. package/lib/css/rules/CSSKeyframesRule.js.map +1 -1
  57. package/lib/css/rules/CSSMediaRule.d.ts +1 -1
  58. package/lib/css/rules/CSSStyleRule.d.ts +10 -3
  59. package/lib/css/rules/CSSStyleRule.js +16 -0
  60. package/lib/css/rules/CSSStyleRule.js.map +1 -1
  61. package/lib/event/Event.d.ts +2 -3
  62. package/lib/event/Event.js.map +1 -1
  63. package/lib/event/events/IMediaQueryListInit.d.ts +5 -0
  64. package/lib/event/events/IMediaQueryListInit.js +3 -0
  65. package/lib/event/events/IMediaQueryListInit.js.map +1 -0
  66. package/lib/event/events/MediaQueryListEvent.d.ts +16 -0
  67. package/lib/event/events/MediaQueryListEvent.js +28 -0
  68. package/lib/event/events/MediaQueryListEvent.js.map +1 -0
  69. package/lib/exception/DOMException.js +5 -3
  70. package/lib/exception/DOMException.js.map +1 -1
  71. package/lib/exception/DOMExceptionNameEnum.d.ts +2 -1
  72. package/lib/exception/DOMExceptionNameEnum.js +1 -0
  73. package/lib/exception/DOMExceptionNameEnum.js.map +1 -1
  74. package/lib/file/Blob.d.ts +9 -0
  75. package/lib/file/Blob.js +14 -0
  76. package/lib/file/Blob.js.map +1 -1
  77. package/lib/index.d.ts +9 -2
  78. package/lib/index.js +16 -2
  79. package/lib/index.js.map +1 -1
  80. package/lib/match-media/MediaQueryList.d.ts +19 -8
  81. package/lib/match-media/MediaQueryList.js +56 -13
  82. package/lib/match-media/MediaQueryList.js.map +1 -1
  83. package/lib/{attribute → nodes/attr}/Attr.d.ts +8 -7
  84. package/lib/{attribute → nodes/attr}/Attr.js +12 -5
  85. package/lib/nodes/attr/Attr.js.map +1 -0
  86. package/lib/nodes/attr/IAttr.d.ts +14 -0
  87. package/lib/nodes/attr/IAttr.js +3 -0
  88. package/lib/nodes/attr/IAttr.js.map +1 -0
  89. package/lib/nodes/child-node/ChildNodeUtility.js +2 -1
  90. package/lib/nodes/child-node/ChildNodeUtility.js.map +1 -1
  91. package/lib/nodes/document/Document.d.ts +4 -4
  92. package/lib/nodes/document/Document.js +5 -8
  93. package/lib/nodes/document/Document.js.map +1 -1
  94. package/lib/nodes/document/IDocument.d.ts +3 -3
  95. package/lib/nodes/element/Element.d.ts +11 -9
  96. package/lib/nodes/element/Element.js +2 -1
  97. package/lib/nodes/element/Element.js.map +1 -1
  98. package/lib/nodes/element/IElement.d.ts +10 -8
  99. package/lib/nodes/html-element/HTMLElement.d.ts +21 -5
  100. package/lib/nodes/html-element/HTMLElement.js +74 -11
  101. package/lib/nodes/html-element/HTMLElement.js.map +1 -1
  102. package/lib/nodes/html-element/IHTMLElement.d.ts +5 -1
  103. package/lib/nodes/html-link-element/HTMLLinkElement.d.ts +2 -2
  104. package/lib/nodes/html-link-element/HTMLLinkElement.js.map +1 -1
  105. package/lib/nodes/html-script-element/HTMLScriptElement.d.ts +2 -2
  106. package/lib/nodes/html-script-element/HTMLScriptElement.js.map +1 -1
  107. package/lib/nodes/html-select-element/HTMLSelectElement.js +1 -1
  108. package/lib/nodes/html-select-element/HTMLSelectElement.js.map +1 -1
  109. package/lib/nodes/html-style-element/HTMLStyleElement.js +1 -1
  110. package/lib/nodes/html-style-element/HTMLStyleElement.js.map +1 -1
  111. package/lib/nodes/node/INode.d.ts +2 -0
  112. package/lib/nodes/node/Node.d.ts +5 -1
  113. package/lib/nodes/node/Node.js +7 -1
  114. package/lib/nodes/node/Node.js.map +1 -1
  115. package/lib/nodes/node/NodeTypeEnum.d.ts +2 -0
  116. package/lib/nodes/node/NodeTypeEnum.js +2 -0
  117. package/lib/nodes/node/NodeTypeEnum.js.map +1 -1
  118. package/lib/nodes/svg-element/ISVGElement.d.ts +1 -1
  119. package/lib/nodes/svg-element/SVGElement.d.ts +4 -4
  120. package/lib/nodes/svg-element/SVGElement.js +2 -2
  121. package/lib/nodes/svg-element/SVGElement.js.map +1 -1
  122. package/lib/window/IWindow.d.ts +23 -3
  123. package/lib/window/Window.d.ts +35 -6
  124. package/lib/window/Window.js +58 -23
  125. package/lib/window/Window.js.map +1 -1
  126. package/package.json +2 -2
  127. package/src/css/CSSParser.ts +14 -6
  128. package/src/css/CSSRule.ts +15 -13
  129. package/src/css/CSSRuleTypeEnum.ts +18 -0
  130. package/src/css/CSSStyleSheet.ts +12 -22
  131. package/src/css/declaration/AbstractCSSStyleDeclaration.ts +202 -0
  132. package/src/css/declaration/CSSStyleDeclaration.ts +4743 -0
  133. package/src/css/declaration/utilities/CSSStyleDeclarationCSSParser.ts +35 -0
  134. package/src/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.ts +130 -0
  135. package/src/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.ts +39 -0
  136. package/src/css/declaration/utilities/CSSStyleDeclarationElementStyle.ts +282 -0
  137. package/src/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.ts +743 -0
  138. package/src/css/declaration/utilities/CSSStyleDeclarationPropertyManager.ts +592 -0
  139. package/src/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.ts +3026 -0
  140. package/src/css/declaration/utilities/CSSStyleDeclarationValueParser.ts +437 -0
  141. package/src/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.ts +4 -0
  142. package/src/css/rules/CSSContainerRule.ts +23 -0
  143. package/src/css/rules/CSSFontFaceRule.ts +17 -2
  144. package/src/css/rules/CSSKeyframeRule.ts +17 -2
  145. package/src/css/rules/CSSKeyframesRule.ts +1 -1
  146. package/src/css/rules/CSSStyleRule.ts +17 -2
  147. package/src/event/Event.ts +2 -3
  148. package/src/event/events/IMediaQueryListInit.ts +6 -0
  149. package/src/event/events/MediaQueryListEvent.ts +25 -0
  150. package/src/exception/DOMException.ts +3 -3
  151. package/src/exception/DOMExceptionNameEnum.ts +2 -1
  152. package/src/file/Blob.ts +16 -0
  153. package/src/index.ts +15 -1
  154. package/src/match-media/MediaQueryList.ts +63 -10
  155. package/src/{attribute → nodes/attr}/Attr.ts +11 -8
  156. package/src/nodes/attr/IAttr.ts +15 -0
  157. package/src/nodes/child-node/ChildNodeUtility.ts +2 -1
  158. package/src/nodes/document/Document.ts +8 -10
  159. package/src/nodes/document/IDocument.ts +3 -3
  160. package/src/nodes/element/Element.ts +13 -10
  161. package/src/nodes/element/IElement.ts +8 -8
  162. package/src/nodes/html-element/HTMLElement.ts +94 -16
  163. package/src/nodes/html-element/IHTMLElement.ts +3 -1
  164. package/src/nodes/html-link-element/HTMLLinkElement.ts +2 -2
  165. package/src/nodes/html-script-element/HTMLScriptElement.ts +2 -2
  166. package/src/nodes/html-select-element/HTMLSelectElement.ts +1 -1
  167. package/src/nodes/html-style-element/HTMLStyleElement.ts +1 -1
  168. package/src/nodes/node/INode.ts +2 -0
  169. package/src/nodes/node/Node.ts +7 -1
  170. package/src/nodes/node/NodeTypeEnum.ts +2 -0
  171. package/src/nodes/svg-element/ISVGElement.ts +1 -1
  172. package/src/nodes/svg-element/SVGElement.ts +5 -5
  173. package/src/window/IWindow.ts +23 -3
  174. package/src/window/Window.ts +51 -11
  175. package/lib/attribute/Attr.js.map +0 -1
  176. package/lib/css/CSSStyleDeclaration.d.ts +0 -3017
  177. package/lib/css/CSSStyleDeclaration.js +0 -4643
  178. package/lib/css/CSSStyleDeclaration.js.map +0 -1
  179. package/src/css/CSSStyleDeclaration.ts +0 -5026
@@ -1,3017 +0,0 @@
1
- import Attr from '../attribute/Attr';
2
- import CSSRule from './CSSRule';
3
- /**
4
- * CSS Style Declaration.
5
- */
6
- export default class CSSStyleDeclaration {
7
- readonly length = 0;
8
- readonly parentRule: CSSRule;
9
- private _attributes;
10
- private _computedStyleElement;
11
- /**
12
- * Constructor.
13
- *
14
- * @param [attributes] Attributes.
15
- * @param [computedStyleElement] Computed style element.
16
- * @param computedStyleElement.isConnected
17
- */
18
- constructor(attributes?: {
19
- [k: string]: Attr;
20
- }, computedStyleElement?: {
21
- isConnected: boolean;
22
- });
23
- /**
24
- *
25
- */
26
- get alignContent(): string;
27
- /**
28
- *
29
- */
30
- set alignContent(alignContent: string);
31
- /**
32
- *
33
- */
34
- get alignItems(): string;
35
- /**
36
- *
37
- */
38
- set alignItems(alignItems: string);
39
- /**
40
- *
41
- */
42
- get alignSelf(): string;
43
- /**
44
- *
45
- */
46
- set alignSelf(alignSelf: string);
47
- /**
48
- *
49
- */
50
- get alignmentBaseline(): string;
51
- /**
52
- *
53
- */
54
- set alignmentBaseline(alignmentBaseline: string);
55
- /**
56
- *
57
- */
58
- get all(): string;
59
- /**
60
- *
61
- */
62
- set all(all: string);
63
- /**
64
- *
65
- */
66
- get animation(): string;
67
- /**
68
- *
69
- */
70
- set animation(animation: string);
71
- /**
72
- *
73
- */
74
- get animationDelay(): string;
75
- /**
76
- *
77
- */
78
- set animationDelay(animationDelay: string);
79
- /**
80
- *
81
- */
82
- get animationDirection(): string;
83
- /**
84
- *
85
- */
86
- set animationDirection(animationDirection: string);
87
- /**
88
- *
89
- */
90
- get animationDuration(): string;
91
- /**
92
- *
93
- */
94
- set animationDuration(animationDuration: string);
95
- /**
96
- *
97
- */
98
- get animationFillMode(): string;
99
- /**
100
- *
101
- */
102
- set animationFillMode(animationFillMode: string);
103
- /**
104
- *
105
- */
106
- get animationIterationCount(): string;
107
- /**
108
- *
109
- */
110
- set animationIterationCount(animationIterationCount: string);
111
- /**
112
- *
113
- */
114
- get animationName(): string;
115
- /**
116
- *
117
- */
118
- set animationName(animationName: string);
119
- /**
120
- *
121
- */
122
- get animationPlayState(): string;
123
- /**
124
- *
125
- */
126
- set animationPlayState(animationPlayState: string);
127
- /**
128
- *
129
- */
130
- get animationTimingFunction(): string;
131
- /**
132
- *
133
- */
134
- set animationTimingFunction(animationTimingFunction: string);
135
- /**
136
- *
137
- */
138
- get appearance(): string;
139
- /**
140
- *
141
- */
142
- set appearance(appearance: string);
143
- /**
144
- *
145
- */
146
- get backdropFilter(): string;
147
- /**
148
- *
149
- */
150
- set backdropFilter(backdropFilter: string);
151
- /**
152
- *
153
- */
154
- get backfaceVisibility(): string;
155
- /**
156
- *
157
- */
158
- set backfaceVisibility(backfaceVisibility: string);
159
- /**
160
- *
161
- */
162
- get background(): string;
163
- /**
164
- *
165
- */
166
- set background(background: string);
167
- /**
168
- *
169
- */
170
- get backgroundAttachment(): string;
171
- /**
172
- *
173
- */
174
- set backgroundAttachment(backgroundAttachment: string);
175
- /**
176
- *
177
- */
178
- get backgroundBlendMode(): string;
179
- /**
180
- *
181
- */
182
- set backgroundBlendMode(backgroundBlendMode: string);
183
- /**
184
- *
185
- */
186
- get backgroundClip(): string;
187
- /**
188
- *
189
- */
190
- set backgroundClip(backgroundClip: string);
191
- /**
192
- *
193
- */
194
- get backgroundColor(): string;
195
- /**
196
- *
197
- */
198
- set backgroundColor(backgroundColor: string);
199
- /**
200
- *
201
- */
202
- get backgroundImage(): string;
203
- /**
204
- *
205
- */
206
- set backgroundImage(backgroundImage: string);
207
- /**
208
- *
209
- */
210
- get backgroundOrigin(): string;
211
- /**
212
- *
213
- */
214
- set backgroundOrigin(backgroundOrigin: string);
215
- /**
216
- *
217
- */
218
- get backgroundPosition(): string;
219
- /**
220
- *
221
- */
222
- set backgroundPosition(backgroundPosition: string);
223
- /**
224
- *
225
- */
226
- get backgroundPositionX(): string;
227
- /**
228
- *
229
- */
230
- set backgroundPositionX(backgroundPositionX: string);
231
- /**
232
- *
233
- */
234
- get backgroundPositionY(): string;
235
- /**
236
- *
237
- */
238
- set backgroundPositionY(backgroundPositionY: string);
239
- /**
240
- *
241
- */
242
- get backgroundRepeat(): string;
243
- /**
244
- *
245
- */
246
- set backgroundRepeat(backgroundRepeat: string);
247
- /**
248
- *
249
- */
250
- get backgroundRepeatX(): string;
251
- /**
252
- *
253
- */
254
- set backgroundRepeatX(backgroundRepeatX: string);
255
- /**
256
- *
257
- */
258
- get backgroundRepeatY(): string;
259
- /**
260
- *
261
- */
262
- set backgroundRepeatY(backgroundRepeatY: string);
263
- /**
264
- *
265
- */
266
- get backgroundSize(): string;
267
- /**
268
- *
269
- */
270
- set backgroundSize(backgroundSize: string);
271
- /**
272
- *
273
- */
274
- get baselineShift(): string;
275
- /**
276
- *
277
- */
278
- set baselineShift(baselineShift: string);
279
- /**
280
- *
281
- */
282
- get blockSize(): string;
283
- /**
284
- *
285
- */
286
- set blockSize(blockSize: string);
287
- /**
288
- *
289
- */
290
- get border(): string;
291
- /**
292
- *
293
- */
294
- set border(border: string);
295
- /**
296
- *
297
- */
298
- get borderBlockEnd(): string;
299
- /**
300
- *
301
- */
302
- set borderBlockEnd(borderBlockEnd: string);
303
- /**
304
- *
305
- */
306
- get borderBlockEndColor(): string;
307
- /**
308
- *
309
- */
310
- set borderBlockEndColor(borderBlockEndColor: string);
311
- /**
312
- *
313
- */
314
- get borderBlockEndStyle(): string;
315
- /**
316
- *
317
- */
318
- set borderBlockEndStyle(borderBlockEndStyle: string);
319
- /**
320
- *
321
- */
322
- get borderBlockEndWidth(): string;
323
- /**
324
- *
325
- */
326
- set borderBlockEndWidth(borderBlockEndWidth: string);
327
- /**
328
- *
329
- */
330
- get borderBlockStart(): string;
331
- /**
332
- *
333
- */
334
- set borderBlockStart(borderBlockStart: string);
335
- /**
336
- *
337
- */
338
- get borderBlockStartColor(): string;
339
- /**
340
- *
341
- */
342
- set borderBlockStartColor(borderBlockStartColor: string);
343
- /**
344
- *
345
- */
346
- get borderBlockStartStyle(): string;
347
- /**
348
- *
349
- */
350
- set borderBlockStartStyle(borderBlockStartStyle: string);
351
- /**
352
- *
353
- */
354
- get borderBlockStartWidth(): string;
355
- /**
356
- *
357
- */
358
- set borderBlockStartWidth(borderBlockStartWidth: string);
359
- /**
360
- *
361
- */
362
- get borderBottom(): string;
363
- /**
364
- *
365
- */
366
- set borderBottom(borderBottom: string);
367
- /**
368
- *
369
- */
370
- get borderBottomColor(): string;
371
- /**
372
- *
373
- */
374
- set borderBottomColor(borderBottomColor: string);
375
- /**
376
- *
377
- */
378
- get borderBottomLeftRadius(): string;
379
- /**
380
- *
381
- */
382
- set borderBottomLeftRadius(borderBottomLeftRadius: string);
383
- /**
384
- *
385
- */
386
- get borderBottomRightRadius(): string;
387
- /**
388
- *
389
- */
390
- set borderBottomRightRadius(borderBottomRightRadius: string);
391
- /**
392
- *
393
- */
394
- get borderBottomStyle(): string;
395
- /**
396
- *
397
- */
398
- set borderBottomStyle(borderBottomStyle: string);
399
- /**
400
- *
401
- */
402
- get borderBottomWidth(): string;
403
- /**
404
- *
405
- */
406
- set borderBottomWidth(borderBottomWidth: string);
407
- /**
408
- *
409
- */
410
- get borderCollapse(): string;
411
- /**
412
- *
413
- */
414
- set borderCollapse(borderCollapse: string);
415
- /**
416
- *
417
- */
418
- get borderColor(): string;
419
- /**
420
- *
421
- */
422
- set borderColor(borderColor: string);
423
- /**
424
- *
425
- */
426
- get borderImage(): string;
427
- /**
428
- *
429
- */
430
- set borderImage(borderImage: string);
431
- /**
432
- *
433
- */
434
- get borderImageOutset(): string;
435
- /**
436
- *
437
- */
438
- set borderImageOutset(borderImageOutset: string);
439
- /**
440
- *
441
- */
442
- get borderImageRepeat(): string;
443
- /**
444
- *
445
- */
446
- set borderImageRepeat(borderImageRepeat: string);
447
- /**
448
- *
449
- */
450
- get borderImageSlice(): string;
451
- /**
452
- *
453
- */
454
- set borderImageSlice(borderImageSlice: string);
455
- /**
456
- *
457
- */
458
- get borderImageSource(): string;
459
- /**
460
- *
461
- */
462
- set borderImageSource(borderImageSource: string);
463
- /**
464
- *
465
- */
466
- get borderImageWidth(): string;
467
- /**
468
- *
469
- */
470
- set borderImageWidth(borderImageWidth: string);
471
- /**
472
- *
473
- */
474
- get borderInlineEnd(): string;
475
- /**
476
- *
477
- */
478
- set borderInlineEnd(borderInlineEnd: string);
479
- /**
480
- *
481
- */
482
- get borderInlineEndColor(): string;
483
- /**
484
- *
485
- */
486
- set borderInlineEndColor(borderInlineEndColor: string);
487
- /**
488
- *
489
- */
490
- get borderInlineEndStyle(): string;
491
- /**
492
- *
493
- */
494
- set borderInlineEndStyle(borderInlineEndStyle: string);
495
- /**
496
- *
497
- */
498
- get borderInlineEndWidth(): string;
499
- /**
500
- *
501
- */
502
- set borderInlineEndWidth(borderInlineEndWidth: string);
503
- /**
504
- *
505
- */
506
- get borderInlineStart(): string;
507
- /**
508
- *
509
- */
510
- set borderInlineStart(borderInlineStart: string);
511
- /**
512
- *
513
- */
514
- get borderInlineStartColor(): string;
515
- /**
516
- *
517
- */
518
- set borderInlineStartColor(borderInlineStartColor: string);
519
- /**
520
- *
521
- */
522
- get borderInlineStartStyle(): string;
523
- /**
524
- *
525
- */
526
- set borderInlineStartStyle(borderInlineStartStyle: string);
527
- /**
528
- *
529
- */
530
- get borderInlineStartWidth(): string;
531
- /**
532
- *
533
- */
534
- set borderInlineStartWidth(borderInlineStartWidth: string);
535
- /**
536
- *
537
- */
538
- get borderLeft(): string;
539
- /**
540
- *
541
- */
542
- set borderLeft(borderLeft: string);
543
- /**
544
- *
545
- */
546
- get borderLeftColor(): string;
547
- /**
548
- *
549
- */
550
- set borderLeftColor(borderLeftColor: string);
551
- /**
552
- *
553
- */
554
- get borderLeftStyle(): string;
555
- /**
556
- *
557
- */
558
- set borderLeftStyle(borderLeftStyle: string);
559
- /**
560
- *
561
- */
562
- get borderLeftWidth(): string;
563
- /**
564
- *
565
- */
566
- set borderLeftWidth(borderLeftWidth: string);
567
- /**
568
- *
569
- */
570
- get borderRadius(): string;
571
- /**
572
- *
573
- */
574
- set borderRadius(borderRadius: string);
575
- /**
576
- *
577
- */
578
- get borderRight(): string;
579
- /**
580
- *
581
- */
582
- set borderRight(borderRight: string);
583
- /**
584
- *
585
- */
586
- get borderRightColor(): string;
587
- /**
588
- *
589
- */
590
- set borderRightColor(borderRightColor: string);
591
- /**
592
- *
593
- */
594
- get borderRightStyle(): string;
595
- /**
596
- *
597
- */
598
- set borderRightStyle(borderRightStyle: string);
599
- /**
600
- *
601
- */
602
- get borderRightWidth(): string;
603
- /**
604
- *
605
- */
606
- set borderRightWidth(borderRightWidth: string);
607
- /**
608
- *
609
- */
610
- get borderSpacing(): string;
611
- /**
612
- *
613
- */
614
- set borderSpacing(borderSpacing: string);
615
- /**
616
- *
617
- */
618
- get borderStyle(): string;
619
- /**
620
- *
621
- */
622
- set borderStyle(borderStyle: string);
623
- /**
624
- *
625
- */
626
- get borderTop(): string;
627
- /**
628
- *
629
- */
630
- set borderTop(borderTop: string);
631
- /**
632
- *
633
- */
634
- get borderTopColor(): string;
635
- /**
636
- *
637
- */
638
- set borderTopColor(borderTopColor: string);
639
- /**
640
- *
641
- */
642
- get borderTopLeftRadius(): string;
643
- /**
644
- *
645
- */
646
- set borderTopLeftRadius(borderTopLeftRadius: string);
647
- /**
648
- *
649
- */
650
- get borderTopRightRadius(): string;
651
- /**
652
- *
653
- */
654
- set borderTopRightRadius(borderTopRightRadius: string);
655
- /**
656
- *
657
- */
658
- get borderTopStyle(): string;
659
- /**
660
- *
661
- */
662
- set borderTopStyle(borderTopStyle: string);
663
- /**
664
- *
665
- */
666
- get borderTopWidth(): string;
667
- /**
668
- *
669
- */
670
- set borderTopWidth(borderTopWidth: string);
671
- /**
672
- *
673
- */
674
- get borderWidth(): string;
675
- /**
676
- *
677
- */
678
- set borderWidth(borderWidth: string);
679
- /**
680
- *
681
- */
682
- get bottom(): string;
683
- /**
684
- *
685
- */
686
- set bottom(bottom: string);
687
- /**
688
- *
689
- */
690
- get boxShadow(): string;
691
- /**
692
- *
693
- */
694
- set boxShadow(boxShadow: string);
695
- /**
696
- *
697
- */
698
- get boxSizing(): string;
699
- /**
700
- *
701
- */
702
- set boxSizing(boxSizing: string);
703
- /**
704
- *
705
- */
706
- get breakAfter(): string;
707
- /**
708
- *
709
- */
710
- set breakAfter(breakAfter: string);
711
- /**
712
- *
713
- */
714
- get breakBefore(): string;
715
- /**
716
- *
717
- */
718
- set breakBefore(breakBefore: string);
719
- /**
720
- *
721
- */
722
- get breakInside(): string;
723
- /**
724
- *
725
- */
726
- set breakInside(breakInside: string);
727
- /**
728
- *
729
- */
730
- get bufferedRendering(): string;
731
- /**
732
- *
733
- */
734
- set bufferedRendering(bufferedRendering: string);
735
- /**
736
- *
737
- */
738
- get captionSide(): string;
739
- /**
740
- *
741
- */
742
- set captionSide(captionSide: string);
743
- /**
744
- *
745
- */
746
- get caretColor(): string;
747
- /**
748
- *
749
- */
750
- set caretColor(caretColor: string);
751
- /**
752
- *
753
- */
754
- get clear(): string;
755
- /**
756
- *
757
- */
758
- set clear(clear: string);
759
- /**
760
- *
761
- */
762
- get clip(): string;
763
- /**
764
- *
765
- */
766
- set clip(clip: string);
767
- /**
768
- *
769
- */
770
- get clipPath(): string;
771
- /**
772
- *
773
- */
774
- set clipPath(clipPath: string);
775
- /**
776
- *
777
- */
778
- get clipRule(): string;
779
- /**
780
- *
781
- */
782
- set clipRule(clipRule: string);
783
- /**
784
- *
785
- */
786
- get color(): string;
787
- /**
788
- *
789
- */
790
- set color(color: string);
791
- /**
792
- *
793
- */
794
- get colorInterpolation(): string;
795
- /**
796
- *
797
- */
798
- set colorInterpolation(colorInterpolation: string);
799
- /**
800
- *
801
- */
802
- get colorInterpolationFilters(): string;
803
- /**
804
- *
805
- */
806
- set colorInterpolationFilters(colorInterpolationFilters: string);
807
- /**
808
- *
809
- */
810
- get colorRendering(): string;
811
- /**
812
- *
813
- */
814
- set colorRendering(colorRendering: string);
815
- /**
816
- *
817
- */
818
- get colorScheme(): string;
819
- /**
820
- *
821
- */
822
- set colorScheme(colorScheme: string);
823
- /**
824
- *
825
- */
826
- get columnCount(): string;
827
- /**
828
- *
829
- */
830
- set columnCount(columnCount: string);
831
- /**
832
- *
833
- */
834
- get columnFill(): string;
835
- /**
836
- *
837
- */
838
- set columnFill(columnFill: string);
839
- /**
840
- *
841
- */
842
- get columnGap(): string;
843
- /**
844
- *
845
- */
846
- set columnGap(columnGap: string);
847
- /**
848
- *
849
- */
850
- get columnRule(): string;
851
- /**
852
- *
853
- */
854
- set columnRule(columnRule: string);
855
- /**
856
- *
857
- */
858
- get columnRuleColor(): string;
859
- /**
860
- *
861
- */
862
- set columnRuleColor(columnRuleColor: string);
863
- /**
864
- *
865
- */
866
- get columnRuleStyle(): string;
867
- /**
868
- *
869
- */
870
- set columnRuleStyle(columnRuleStyle: string);
871
- /**
872
- *
873
- */
874
- get columnRuleWidth(): string;
875
- /**
876
- *
877
- */
878
- set columnRuleWidth(columnRuleWidth: string);
879
- /**
880
- *
881
- */
882
- get columnSpan(): string;
883
- /**
884
- *
885
- */
886
- set columnSpan(columnSpan: string);
887
- /**
888
- *
889
- */
890
- get columnWidth(): string;
891
- /**
892
- *
893
- */
894
- set columnWidth(columnWidth: string);
895
- /**
896
- *
897
- */
898
- get columns(): string;
899
- /**
900
- *
901
- */
902
- set columns(columns: string);
903
- /**
904
- *
905
- */
906
- get contain(): string;
907
- /**
908
- *
909
- */
910
- set contain(contain: string);
911
- /**
912
- *
913
- */
914
- get containIntrinsicSize(): string;
915
- /**
916
- *
917
- */
918
- set containIntrinsicSize(containIntrinsicSize: string);
919
- /**
920
- *
921
- */
922
- get content(): string;
923
- /**
924
- *
925
- */
926
- set content(content: string);
927
- /**
928
- *
929
- */
930
- get contentVisibility(): string;
931
- /**
932
- *
933
- */
934
- set contentVisibility(contentVisibility: string);
935
- /**
936
- *
937
- */
938
- get counterIncrement(): string;
939
- /**
940
- *
941
- */
942
- set counterIncrement(counterIncrement: string);
943
- /**
944
- *
945
- */
946
- get counterReset(): string;
947
- /**
948
- *
949
- */
950
- set counterReset(counterReset: string);
951
- /**
952
- *
953
- */
954
- get counterSet(): string;
955
- /**
956
- *
957
- */
958
- set counterSet(counterSet: string);
959
- /**
960
- *
961
- */
962
- get cssFloat(): string;
963
- /**
964
- *
965
- */
966
- set cssFloat(cssFloat: string);
967
- /**
968
- *
969
- */
970
- get cursor(): string;
971
- /**
972
- *
973
- */
974
- set cursor(cursor: string);
975
- /**
976
- *
977
- */
978
- get cx(): string;
979
- /**
980
- *
981
- */
982
- set cx(cx: string);
983
- /**
984
- *
985
- */
986
- get cy(): string;
987
- /**
988
- *
989
- */
990
- set cy(cy: string);
991
- /**
992
- *
993
- */
994
- get d(): string;
995
- /**
996
- *
997
- */
998
- set d(d: string);
999
- /**
1000
- *
1001
- */
1002
- get direction(): string;
1003
- /**
1004
- *
1005
- */
1006
- set direction(direction: string);
1007
- /**
1008
- *
1009
- */
1010
- get display(): string;
1011
- /**
1012
- *
1013
- */
1014
- set display(display: string);
1015
- /**
1016
- *
1017
- */
1018
- get dominantBaseline(): string;
1019
- /**
1020
- *
1021
- */
1022
- set dominantBaseline(dominantBaseline: string);
1023
- /**
1024
- *
1025
- */
1026
- get emptyCells(): string;
1027
- /**
1028
- *
1029
- */
1030
- set emptyCells(emptyCells: string);
1031
- /**
1032
- *
1033
- */
1034
- get fill(): string;
1035
- /**
1036
- *
1037
- */
1038
- set fill(fill: string);
1039
- /**
1040
- *
1041
- */
1042
- get fillOpacity(): string;
1043
- /**
1044
- *
1045
- */
1046
- set fillOpacity(fillOpacity: string);
1047
- /**
1048
- *
1049
- */
1050
- get fillRule(): string;
1051
- /**
1052
- *
1053
- */
1054
- set fillRule(fillRule: string);
1055
- /**
1056
- *
1057
- */
1058
- get filter(): string;
1059
- /**
1060
- *
1061
- */
1062
- set filter(filter: string);
1063
- /**
1064
- *
1065
- */
1066
- get flex(): string;
1067
- /**
1068
- *
1069
- */
1070
- set flex(flex: string);
1071
- /**
1072
- *
1073
- */
1074
- get flexBasis(): string;
1075
- /**
1076
- *
1077
- */
1078
- set flexBasis(flexBasis: string);
1079
- /**
1080
- *
1081
- */
1082
- get flexDirection(): string;
1083
- /**
1084
- *
1085
- */
1086
- set flexDirection(flexDirection: string);
1087
- /**
1088
- *
1089
- */
1090
- get flexFlow(): string;
1091
- /**
1092
- *
1093
- */
1094
- set flexFlow(flexFlow: string);
1095
- /**
1096
- *
1097
- */
1098
- get flexGrow(): string;
1099
- /**
1100
- *
1101
- */
1102
- set flexGrow(flexGrow: string);
1103
- /**
1104
- *
1105
- */
1106
- get flexShrink(): string;
1107
- /**
1108
- *
1109
- */
1110
- set flexShrink(flexShrink: string);
1111
- /**
1112
- *
1113
- */
1114
- get flexWrap(): string;
1115
- /**
1116
- *
1117
- */
1118
- set flexWrap(flexWrap: string);
1119
- /**
1120
- *
1121
- */
1122
- get float(): string;
1123
- /**
1124
- *
1125
- */
1126
- set float(float: string);
1127
- /**
1128
- *
1129
- */
1130
- get floodColor(): string;
1131
- /**
1132
- *
1133
- */
1134
- set floodColor(floodColor: string);
1135
- /**
1136
- *
1137
- */
1138
- get floodOpacity(): string;
1139
- /**
1140
- *
1141
- */
1142
- set floodOpacity(floodOpacity: string);
1143
- /**
1144
- *
1145
- */
1146
- get font(): string;
1147
- /**
1148
- *
1149
- */
1150
- set font(font: string);
1151
- /**
1152
- *
1153
- */
1154
- get fontDisplay(): string;
1155
- /**
1156
- *
1157
- */
1158
- set fontDisplay(fontDisplay: string);
1159
- /**
1160
- *
1161
- */
1162
- get fontFamily(): string;
1163
- /**
1164
- *
1165
- */
1166
- set fontFamily(fontFamily: string);
1167
- /**
1168
- *
1169
- */
1170
- get fontFeatureSettings(): string;
1171
- /**
1172
- *
1173
- */
1174
- set fontFeatureSettings(fontFeatureSettings: string);
1175
- /**
1176
- *
1177
- */
1178
- get fontKerning(): string;
1179
- /**
1180
- *
1181
- */
1182
- set fontKerning(fontKerning: string);
1183
- /**
1184
- *
1185
- */
1186
- get fontOpticalSizing(): string;
1187
- /**
1188
- *
1189
- */
1190
- set fontOpticalSizing(fontOpticalSizing: string);
1191
- /**
1192
- *
1193
- */
1194
- get fontSize(): string;
1195
- /**
1196
- *
1197
- */
1198
- set fontSize(fontSize: string);
1199
- /**
1200
- *
1201
- */
1202
- get fontStretch(): string;
1203
- /**
1204
- *
1205
- */
1206
- set fontStretch(fontStretch: string);
1207
- /**
1208
- *
1209
- */
1210
- get fontStyle(): string;
1211
- /**
1212
- *
1213
- */
1214
- set fontStyle(fontStyle: string);
1215
- /**
1216
- *
1217
- */
1218
- get fontVariant(): string;
1219
- /**
1220
- *
1221
- */
1222
- set fontVariant(fontVariant: string);
1223
- /**
1224
- *
1225
- */
1226
- get fontVariantCaps(): string;
1227
- /**
1228
- *
1229
- */
1230
- set fontVariantCaps(fontVariantCaps: string);
1231
- /**
1232
- *
1233
- */
1234
- get fontVariantEastAsian(): string;
1235
- /**
1236
- *
1237
- */
1238
- set fontVariantEastAsian(fontVariantEastAsian: string);
1239
- /**
1240
- *
1241
- */
1242
- get fontVariantLigatures(): string;
1243
- /**
1244
- *
1245
- */
1246
- set fontVariantLigatures(fontVariantLigatures: string);
1247
- /**
1248
- *
1249
- */
1250
- get fontVariantNumeric(): string;
1251
- /**
1252
- *
1253
- */
1254
- set fontVariantNumeric(fontVariantNumeric: string);
1255
- /**
1256
- *
1257
- */
1258
- get fontVariationSettings(): string;
1259
- /**
1260
- *
1261
- */
1262
- set fontVariationSettings(fontVariationSettings: string);
1263
- /**
1264
- *
1265
- */
1266
- get fontWeight(): string;
1267
- /**
1268
- *
1269
- */
1270
- set fontWeight(fontWeight: string);
1271
- /**
1272
- *
1273
- */
1274
- get gap(): string;
1275
- /**
1276
- *
1277
- */
1278
- set gap(gap: string);
1279
- /**
1280
- *
1281
- */
1282
- get grid(): string;
1283
- /**
1284
- *
1285
- */
1286
- set grid(grid: string);
1287
- /**
1288
- *
1289
- */
1290
- get gridArea(): string;
1291
- /**
1292
- *
1293
- */
1294
- set gridArea(gridArea: string);
1295
- /**
1296
- *
1297
- */
1298
- get gridAutoColumns(): string;
1299
- /**
1300
- *
1301
- */
1302
- set gridAutoColumns(gridAutoColumns: string);
1303
- /**
1304
- *
1305
- */
1306
- get gridAutoFlow(): string;
1307
- /**
1308
- *
1309
- */
1310
- set gridAutoFlow(gridAutoFlow: string);
1311
- /**
1312
- *
1313
- */
1314
- get gridAutoRows(): string;
1315
- /**
1316
- *
1317
- */
1318
- set gridAutoRows(gridAutoRows: string);
1319
- /**
1320
- *
1321
- */
1322
- get gridColumn(): string;
1323
- /**
1324
- *
1325
- */
1326
- set gridColumn(gridColumn: string);
1327
- /**
1328
- *
1329
- */
1330
- get gridColumnEnd(): string;
1331
- /**
1332
- *
1333
- */
1334
- set gridColumnEnd(gridColumnEnd: string);
1335
- /**
1336
- *
1337
- */
1338
- get gridColumnGap(): string;
1339
- /**
1340
- *
1341
- */
1342
- set gridColumnGap(gridColumnGap: string);
1343
- /**
1344
- *
1345
- */
1346
- get gridColumnStart(): string;
1347
- /**
1348
- *
1349
- */
1350
- set gridColumnStart(gridColumnStart: string);
1351
- /**
1352
- *
1353
- */
1354
- get gridGap(): string;
1355
- /**
1356
- *
1357
- */
1358
- set gridGap(gridGap: string);
1359
- /**
1360
- *
1361
- */
1362
- get gridRow(): string;
1363
- /**
1364
- *
1365
- */
1366
- set gridRow(gridRow: string);
1367
- /**
1368
- *
1369
- */
1370
- get gridRowEnd(): string;
1371
- /**
1372
- *
1373
- */
1374
- set gridRowEnd(gridRowEnd: string);
1375
- /**
1376
- *
1377
- */
1378
- get gridRowGap(): string;
1379
- /**
1380
- *
1381
- */
1382
- set gridRowGap(gridRowGap: string);
1383
- /**
1384
- *
1385
- */
1386
- get gridRowStart(): string;
1387
- /**
1388
- *
1389
- */
1390
- set gridRowStart(gridRowStart: string);
1391
- /**
1392
- *
1393
- */
1394
- get gridTemplate(): string;
1395
- /**
1396
- *
1397
- */
1398
- set gridTemplate(gridTemplate: string);
1399
- /**
1400
- *
1401
- */
1402
- get gridTemplateAreas(): string;
1403
- /**
1404
- *
1405
- */
1406
- set gridTemplateAreas(gridTemplateAreas: string);
1407
- /**
1408
- *
1409
- */
1410
- get gridTemplateColumns(): string;
1411
- /**
1412
- *
1413
- */
1414
- set gridTemplateColumns(gridTemplateColumns: string);
1415
- /**
1416
- *
1417
- */
1418
- get gridTemplateRows(): string;
1419
- /**
1420
- *
1421
- */
1422
- set gridTemplateRows(gridTemplateRows: string);
1423
- /**
1424
- *
1425
- */
1426
- get height(): string;
1427
- /**
1428
- *
1429
- */
1430
- set height(height: string);
1431
- /**
1432
- *
1433
- */
1434
- get hyphens(): string;
1435
- /**
1436
- *
1437
- */
1438
- set hyphens(hyphens: string);
1439
- /**
1440
- *
1441
- */
1442
- get imageOrientation(): string;
1443
- /**
1444
- *
1445
- */
1446
- set imageOrientation(imageOrientation: string);
1447
- /**
1448
- *
1449
- */
1450
- get imageRendering(): string;
1451
- /**
1452
- *
1453
- */
1454
- set imageRendering(imageRendering: string);
1455
- /**
1456
- *
1457
- */
1458
- get inherits(): string;
1459
- /**
1460
- *
1461
- */
1462
- set inherits(inherits: string);
1463
- /**
1464
- *
1465
- */
1466
- get initialValue(): string;
1467
- /**
1468
- *
1469
- */
1470
- set initialValue(initialValue: string);
1471
- /**
1472
- *
1473
- */
1474
- get inlineSize(): string;
1475
- /**
1476
- *
1477
- */
1478
- set inlineSize(inlineSize: string);
1479
- /**
1480
- *
1481
- */
1482
- get isolation(): string;
1483
- /**
1484
- *
1485
- */
1486
- set isolation(isolation: string);
1487
- /**
1488
- *
1489
- */
1490
- get justifyContent(): string;
1491
- /**
1492
- *
1493
- */
1494
- set justifyContent(justifyContent: string);
1495
- /**
1496
- *
1497
- */
1498
- get justifyItems(): string;
1499
- /**
1500
- *
1501
- */
1502
- set justifyItems(justifyItems: string);
1503
- /**
1504
- *
1505
- */
1506
- get justifySelf(): string;
1507
- /**
1508
- *
1509
- */
1510
- set justifySelf(justifySelf: string);
1511
- /**
1512
- *
1513
- */
1514
- get left(): string;
1515
- /**
1516
- *
1517
- */
1518
- set left(left: string);
1519
- /**
1520
- *
1521
- */
1522
- get letterSpacing(): string;
1523
- /**
1524
- *
1525
- */
1526
- set letterSpacing(letterSpacing: string);
1527
- /**
1528
- *
1529
- */
1530
- get lightingColor(): string;
1531
- /**
1532
- *
1533
- */
1534
- set lightingColor(lightingColor: string);
1535
- /**
1536
- *
1537
- */
1538
- get lineBreak(): string;
1539
- /**
1540
- *
1541
- */
1542
- set lineBreak(lineBreak: string);
1543
- /**
1544
- *
1545
- */
1546
- get lineHeight(): string;
1547
- /**
1548
- *
1549
- */
1550
- set lineHeight(lineHeight: string);
1551
- /**
1552
- *
1553
- */
1554
- get listStyle(): string;
1555
- /**
1556
- *
1557
- */
1558
- set listStyle(listStyle: string);
1559
- /**
1560
- *
1561
- */
1562
- get listStyleImage(): string;
1563
- /**
1564
- *
1565
- */
1566
- set listStyleImage(listStyleImage: string);
1567
- /**
1568
- *
1569
- */
1570
- get listStylePosition(): string;
1571
- /**
1572
- *
1573
- */
1574
- set listStylePosition(listStylePosition: string);
1575
- /**
1576
- *
1577
- */
1578
- get listStyleType(): string;
1579
- /**
1580
- *
1581
- */
1582
- set listStyleType(listStyleType: string);
1583
- /**
1584
- *
1585
- */
1586
- get margin(): string;
1587
- /**
1588
- *
1589
- */
1590
- set margin(margin: string);
1591
- /**
1592
- *
1593
- */
1594
- get marginBlockEnd(): string;
1595
- /**
1596
- *
1597
- */
1598
- set marginBlockEnd(marginBlockEnd: string);
1599
- /**
1600
- *
1601
- */
1602
- get marginBlockStart(): string;
1603
- /**
1604
- *
1605
- */
1606
- set marginBlockStart(marginBlockStart: string);
1607
- /**
1608
- *
1609
- */
1610
- get marginBottom(): string;
1611
- /**
1612
- *
1613
- */
1614
- set marginBottom(marginBottom: string);
1615
- /**
1616
- *
1617
- */
1618
- get marginInlineEnd(): string;
1619
- /**
1620
- *
1621
- */
1622
- set marginInlineEnd(marginInlineEnd: string);
1623
- /**
1624
- *
1625
- */
1626
- get marginInlineStart(): string;
1627
- /**
1628
- *
1629
- */
1630
- set marginInlineStart(marginInlineStart: string);
1631
- /**
1632
- *
1633
- */
1634
- get marginLeft(): string;
1635
- /**
1636
- *
1637
- */
1638
- set marginLeft(marginLeft: string);
1639
- /**
1640
- *
1641
- */
1642
- get marginRight(): string;
1643
- /**
1644
- *
1645
- */
1646
- set marginRight(marginRight: string);
1647
- /**
1648
- *
1649
- */
1650
- get marginTop(): string;
1651
- /**
1652
- *
1653
- */
1654
- set marginTop(marginTop: string);
1655
- /**
1656
- *
1657
- */
1658
- get marker(): string;
1659
- /**
1660
- *
1661
- */
1662
- set marker(marker: string);
1663
- /**
1664
- *
1665
- */
1666
- get markerEnd(): string;
1667
- /**
1668
- *
1669
- */
1670
- set markerEnd(markerEnd: string);
1671
- /**
1672
- *
1673
- */
1674
- get markerMid(): string;
1675
- /**
1676
- *
1677
- */
1678
- set markerMid(markerMid: string);
1679
- /**
1680
- *
1681
- */
1682
- get markerStart(): string;
1683
- /**
1684
- *
1685
- */
1686
- set markerStart(markerStart: string);
1687
- /**
1688
- *
1689
- */
1690
- get mask(): string;
1691
- /**
1692
- *
1693
- */
1694
- set mask(mask: string);
1695
- /**
1696
- *
1697
- */
1698
- get maskType(): string;
1699
- /**
1700
- *
1701
- */
1702
- set maskType(maskType: string);
1703
- /**
1704
- *
1705
- */
1706
- get maxBlockSize(): string;
1707
- /**
1708
- *
1709
- */
1710
- set maxBlockSize(maxBlockSize: string);
1711
- /**
1712
- *
1713
- */
1714
- get maxHeight(): string;
1715
- /**
1716
- *
1717
- */
1718
- set maxHeight(maxHeight: string);
1719
- /**
1720
- *
1721
- */
1722
- get maxInlineSize(): string;
1723
- /**
1724
- *
1725
- */
1726
- set maxInlineSize(maxInlineSize: string);
1727
- /**
1728
- *
1729
- */
1730
- get maxWidth(): string;
1731
- /**
1732
- *
1733
- */
1734
- set maxWidth(maxWidth: string);
1735
- /**
1736
- *
1737
- */
1738
- get maxZoom(): string;
1739
- /**
1740
- *
1741
- */
1742
- set maxZoom(maxZoom: string);
1743
- /**
1744
- *
1745
- */
1746
- get minBlockSize(): string;
1747
- /**
1748
- *
1749
- */
1750
- set minBlockSize(minBlockSize: string);
1751
- /**
1752
- *
1753
- */
1754
- get minHeight(): string;
1755
- /**
1756
- *
1757
- */
1758
- set minHeight(minHeight: string);
1759
- /**
1760
- *
1761
- */
1762
- get minInlineSize(): string;
1763
- /**
1764
- *
1765
- */
1766
- set minInlineSize(minInlineSize: string);
1767
- /**
1768
- *
1769
- */
1770
- get minWidth(): string;
1771
- /**
1772
- *
1773
- */
1774
- set minWidth(minWidth: string);
1775
- /**
1776
- *
1777
- */
1778
- get minZoom(): string;
1779
- /**
1780
- *
1781
- */
1782
- set minZoom(minZoom: string);
1783
- /**
1784
- *
1785
- */
1786
- get mixBlendMode(): string;
1787
- /**
1788
- *
1789
- */
1790
- set mixBlendMode(mixBlendMode: string);
1791
- /**
1792
- *
1793
- */
1794
- get objectFit(): string;
1795
- /**
1796
- *
1797
- */
1798
- set objectFit(objectFit: string);
1799
- /**
1800
- *
1801
- */
1802
- get objectPosition(): string;
1803
- /**
1804
- *
1805
- */
1806
- set objectPosition(objectPosition: string);
1807
- /**
1808
- *
1809
- */
1810
- get offset(): string;
1811
- /**
1812
- *
1813
- */
1814
- set offset(offset: string);
1815
- /**
1816
- *
1817
- */
1818
- get offsetDistance(): string;
1819
- /**
1820
- *
1821
- */
1822
- set offsetDistance(offsetDistance: string);
1823
- /**
1824
- *
1825
- */
1826
- get offsetPath(): string;
1827
- /**
1828
- *
1829
- */
1830
- set offsetPath(offsetPath: string);
1831
- /**
1832
- *
1833
- */
1834
- get offsetRotate(): string;
1835
- /**
1836
- *
1837
- */
1838
- set offsetRotate(offsetRotate: string);
1839
- /**
1840
- *
1841
- */
1842
- get opacity(): string;
1843
- /**
1844
- *
1845
- */
1846
- set opacity(opacity: string);
1847
- /**
1848
- *
1849
- */
1850
- get order(): string;
1851
- /**
1852
- *
1853
- */
1854
- set order(order: string);
1855
- /**
1856
- *
1857
- */
1858
- get orientation(): string;
1859
- /**
1860
- *
1861
- */
1862
- set orientation(orientation: string);
1863
- /**
1864
- *
1865
- */
1866
- get orphans(): string;
1867
- /**
1868
- *
1869
- */
1870
- set orphans(orphans: string);
1871
- /**
1872
- *
1873
- */
1874
- get outline(): string;
1875
- /**
1876
- *
1877
- */
1878
- set outline(outline: string);
1879
- /**
1880
- *
1881
- */
1882
- get outlineColor(): string;
1883
- /**
1884
- *
1885
- */
1886
- set outlineColor(outlineColor: string);
1887
- /**
1888
- *
1889
- */
1890
- get outlineOffset(): string;
1891
- /**
1892
- *
1893
- */
1894
- set outlineOffset(outlineOffset: string);
1895
- /**
1896
- *
1897
- */
1898
- get outlineStyle(): string;
1899
- /**
1900
- *
1901
- */
1902
- set outlineStyle(outlineStyle: string);
1903
- /**
1904
- *
1905
- */
1906
- get outlineWidth(): string;
1907
- /**
1908
- *
1909
- */
1910
- set outlineWidth(outlineWidth: string);
1911
- /**
1912
- *
1913
- */
1914
- get overflow(): string;
1915
- /**
1916
- *
1917
- */
1918
- set overflow(overflow: string);
1919
- /**
1920
- *
1921
- */
1922
- get overflowAnchor(): string;
1923
- /**
1924
- *
1925
- */
1926
- set overflowAnchor(overflowAnchor: string);
1927
- /**
1928
- *
1929
- */
1930
- get overflowWrap(): string;
1931
- /**
1932
- *
1933
- */
1934
- set overflowWrap(overflowWrap: string);
1935
- /**
1936
- *
1937
- */
1938
- get overflowX(): string;
1939
- /**
1940
- *
1941
- */
1942
- set overflowX(overflowX: string);
1943
- /**
1944
- *
1945
- */
1946
- get overflowY(): string;
1947
- /**
1948
- *
1949
- */
1950
- set overflowY(overflowY: string);
1951
- /**
1952
- *
1953
- */
1954
- get overscrollBehavior(): string;
1955
- /**
1956
- *
1957
- */
1958
- set overscrollBehavior(overscrollBehavior: string);
1959
- /**
1960
- *
1961
- */
1962
- get overscrollBehaviorBlock(): string;
1963
- /**
1964
- *
1965
- */
1966
- set overscrollBehaviorBlock(overscrollBehaviorBlock: string);
1967
- /**
1968
- *
1969
- */
1970
- get overscrollBehaviorInline(): string;
1971
- /**
1972
- *
1973
- */
1974
- set overscrollBehaviorInline(overscrollBehaviorInline: string);
1975
- /**
1976
- *
1977
- */
1978
- get overscrollBehaviorX(): string;
1979
- /**
1980
- *
1981
- */
1982
- set overscrollBehaviorX(overscrollBehaviorX: string);
1983
- /**
1984
- *
1985
- */
1986
- get overscrollBehaviorY(): string;
1987
- /**
1988
- *
1989
- */
1990
- set overscrollBehaviorY(overscrollBehaviorY: string);
1991
- /**
1992
- *
1993
- */
1994
- get padding(): string;
1995
- /**
1996
- *
1997
- */
1998
- set padding(padding: string);
1999
- /**
2000
- *
2001
- */
2002
- get paddingBlockEnd(): string;
2003
- /**
2004
- *
2005
- */
2006
- set paddingBlockEnd(paddingBlockEnd: string);
2007
- /**
2008
- *
2009
- */
2010
- get paddingBlockStart(): string;
2011
- /**
2012
- *
2013
- */
2014
- set paddingBlockStart(paddingBlockStart: string);
2015
- /**
2016
- *
2017
- */
2018
- get paddingBottom(): string;
2019
- /**
2020
- *
2021
- */
2022
- set paddingBottom(paddingBottom: string);
2023
- /**
2024
- *
2025
- */
2026
- get paddingInlineEnd(): string;
2027
- /**
2028
- *
2029
- */
2030
- set paddingInlineEnd(paddingInlineEnd: string);
2031
- /**
2032
- *
2033
- */
2034
- get paddingInlineStart(): string;
2035
- /**
2036
- *
2037
- */
2038
- set paddingInlineStart(paddingInlineStart: string);
2039
- /**
2040
- *
2041
- */
2042
- get paddingLeft(): string;
2043
- /**
2044
- *
2045
- */
2046
- set paddingLeft(paddingLeft: string);
2047
- /**
2048
- *
2049
- */
2050
- get paddingRight(): string;
2051
- /**
2052
- *
2053
- */
2054
- set paddingRight(paddingRight: string);
2055
- /**
2056
- *
2057
- */
2058
- get paddingTop(): string;
2059
- /**
2060
- *
2061
- */
2062
- set paddingTop(paddingTop: string);
2063
- /**
2064
- *
2065
- */
2066
- get page(): string;
2067
- /**
2068
- *
2069
- */
2070
- set page(page: string);
2071
- /**
2072
- *
2073
- */
2074
- get pageBreakAfter(): string;
2075
- /**
2076
- *
2077
- */
2078
- set pageBreakAfter(pageBreakAfter: string);
2079
- /**
2080
- *
2081
- */
2082
- get pageBreakBefore(): string;
2083
- /**
2084
- *
2085
- */
2086
- set pageBreakBefore(pageBreakBefore: string);
2087
- /**
2088
- *
2089
- */
2090
- get pageBreakInside(): string;
2091
- /**
2092
- *
2093
- */
2094
- set pageBreakInside(pageBreakInside: string);
2095
- /**
2096
- *
2097
- */
2098
- get pageOrientation(): string;
2099
- /**
2100
- *
2101
- */
2102
- set pageOrientation(pageOrientation: string);
2103
- /**
2104
- *
2105
- */
2106
- get paintOrder(): string;
2107
- /**
2108
- *
2109
- */
2110
- set paintOrder(paintOrder: string);
2111
- /**
2112
- *
2113
- */
2114
- get perspective(): string;
2115
- /**
2116
- *
2117
- */
2118
- set perspective(perspective: string);
2119
- /**
2120
- *
2121
- */
2122
- get perspectiveOrigin(): string;
2123
- /**
2124
- *
2125
- */
2126
- set perspectiveOrigin(perspectiveOrigin: string);
2127
- /**
2128
- *
2129
- */
2130
- get placeContent(): string;
2131
- /**
2132
- *
2133
- */
2134
- set placeContent(placeContent: string);
2135
- /**
2136
- *
2137
- */
2138
- get placeItems(): string;
2139
- /**
2140
- *
2141
- */
2142
- set placeItems(placeItems: string);
2143
- /**
2144
- *
2145
- */
2146
- get placeSelf(): string;
2147
- /**
2148
- *
2149
- */
2150
- set placeSelf(placeSelf: string);
2151
- /**
2152
- *
2153
- */
2154
- get pointerEvents(): string;
2155
- /**
2156
- *
2157
- */
2158
- set pointerEvents(pointerEvents: string);
2159
- /**
2160
- *
2161
- */
2162
- get position(): string;
2163
- /**
2164
- *
2165
- */
2166
- set position(position: string);
2167
- /**
2168
- *
2169
- */
2170
- get quotes(): string;
2171
- /**
2172
- *
2173
- */
2174
- set quotes(quotes: string);
2175
- /**
2176
- *
2177
- */
2178
- get r(): string;
2179
- /**
2180
- *
2181
- */
2182
- set r(r: string);
2183
- /**
2184
- *
2185
- */
2186
- get resize(): string;
2187
- /**
2188
- *
2189
- */
2190
- set resize(resize: string);
2191
- /**
2192
- *
2193
- */
2194
- get right(): string;
2195
- /**
2196
- *
2197
- */
2198
- set right(right: string);
2199
- /**
2200
- *
2201
- */
2202
- get rowGap(): string;
2203
- /**
2204
- *
2205
- */
2206
- set rowGap(rowGap: string);
2207
- /**
2208
- *
2209
- */
2210
- get rubyPosition(): string;
2211
- /**
2212
- *
2213
- */
2214
- set rubyPosition(rubyPosition: string);
2215
- /**
2216
- *
2217
- */
2218
- get rx(): string;
2219
- /**
2220
- *
2221
- */
2222
- set rx(rx: string);
2223
- /**
2224
- *
2225
- */
2226
- get ry(): string;
2227
- /**
2228
- *
2229
- */
2230
- set ry(ry: string);
2231
- /**
2232
- *
2233
- */
2234
- get scrollBehavior(): string;
2235
- /**
2236
- *
2237
- */
2238
- set scrollBehavior(scrollBehavior: string);
2239
- /**
2240
- *
2241
- */
2242
- get scrollMargin(): string;
2243
- /**
2244
- *
2245
- */
2246
- set scrollMargin(scrollMargin: string);
2247
- /**
2248
- *
2249
- */
2250
- get scrollMarginBlock(): string;
2251
- /**
2252
- *
2253
- */
2254
- set scrollMarginBlock(scrollMarginBlock: string);
2255
- /**
2256
- *
2257
- */
2258
- get scrollMarginBlockEnd(): string;
2259
- /**
2260
- *
2261
- */
2262
- set scrollMarginBlockEnd(scrollMarginBlockEnd: string);
2263
- /**
2264
- *
2265
- */
2266
- get scrollMarginBlockStart(): string;
2267
- /**
2268
- *
2269
- */
2270
- set scrollMarginBlockStart(scrollMarginBlockStart: string);
2271
- /**
2272
- *
2273
- */
2274
- get scrollMarginBottom(): string;
2275
- /**
2276
- *
2277
- */
2278
- set scrollMarginBottom(scrollMarginBottom: string);
2279
- /**
2280
- *
2281
- */
2282
- get scrollMarginInline(): string;
2283
- /**
2284
- *
2285
- */
2286
- set scrollMarginInline(scrollMarginInline: string);
2287
- /**
2288
- *
2289
- */
2290
- get scrollMarginInlineEnd(): string;
2291
- /**
2292
- *
2293
- */
2294
- set scrollMarginInlineEnd(scrollMarginInlineEnd: string);
2295
- /**
2296
- *
2297
- */
2298
- get scrollMarginInlineStart(): string;
2299
- /**
2300
- *
2301
- */
2302
- set scrollMarginInlineStart(scrollMarginInlineStart: string);
2303
- /**
2304
- *
2305
- */
2306
- get scrollMarginLeft(): string;
2307
- /**
2308
- *
2309
- */
2310
- set scrollMarginLeft(scrollMarginLeft: string);
2311
- /**
2312
- *
2313
- */
2314
- get scrollMarginRight(): string;
2315
- /**
2316
- *
2317
- */
2318
- set scrollMarginRight(scrollMarginRight: string);
2319
- /**
2320
- *
2321
- */
2322
- get scrollMarginTop(): string;
2323
- /**
2324
- *
2325
- */
2326
- set scrollMarginTop(scrollMarginTop: string);
2327
- /**
2328
- *
2329
- */
2330
- get scrollPadding(): string;
2331
- /**
2332
- *
2333
- */
2334
- set scrollPadding(scrollPadding: string);
2335
- /**
2336
- *
2337
- */
2338
- get scrollPaddingBlock(): string;
2339
- /**
2340
- *
2341
- */
2342
- set scrollPaddingBlock(scrollPaddingBlock: string);
2343
- /**
2344
- *
2345
- */
2346
- get scrollPaddingBlockEnd(): string;
2347
- /**
2348
- *
2349
- */
2350
- set scrollPaddingBlockEnd(scrollPaddingBlockEnd: string);
2351
- /**
2352
- *
2353
- */
2354
- get scrollPaddingBlockStart(): string;
2355
- /**
2356
- *
2357
- */
2358
- set scrollPaddingBlockStart(scrollPaddingBlockStart: string);
2359
- /**
2360
- *
2361
- */
2362
- get scrollPaddingBottom(): string;
2363
- /**
2364
- *
2365
- */
2366
- set scrollPaddingBottom(scrollPaddingBottom: string);
2367
- /**
2368
- *
2369
- */
2370
- get scrollPaddingInline(): string;
2371
- /**
2372
- *
2373
- */
2374
- set scrollPaddingInline(scrollPaddingInline: string);
2375
- /**
2376
- *
2377
- */
2378
- get scrollPaddingInlineEnd(): string;
2379
- /**
2380
- *
2381
- */
2382
- set scrollPaddingInlineEnd(scrollPaddingInlineEnd: string);
2383
- /**
2384
- *
2385
- */
2386
- get scrollPaddingInlineStart(): string;
2387
- /**
2388
- *
2389
- */
2390
- set scrollPaddingInlineStart(scrollPaddingInlineStart: string);
2391
- /**
2392
- *
2393
- */
2394
- get scrollPaddingLeft(): string;
2395
- /**
2396
- *
2397
- */
2398
- set scrollPaddingLeft(scrollPaddingLeft: string);
2399
- /**
2400
- *
2401
- */
2402
- get scrollPaddingRight(): string;
2403
- /**
2404
- *
2405
- */
2406
- set scrollPaddingRight(scrollPaddingRight: string);
2407
- /**
2408
- *
2409
- */
2410
- get scrollPaddingTop(): string;
2411
- /**
2412
- *
2413
- */
2414
- set scrollPaddingTop(scrollPaddingTop: string);
2415
- /**
2416
- *
2417
- */
2418
- get scrollSnapAlign(): string;
2419
- /**
2420
- *
2421
- */
2422
- set scrollSnapAlign(scrollSnapAlign: string);
2423
- /**
2424
- *
2425
- */
2426
- get scrollSnapStop(): string;
2427
- /**
2428
- *
2429
- */
2430
- set scrollSnapStop(scrollSnapStop: string);
2431
- /**
2432
- *
2433
- */
2434
- get scrollSnapType(): string;
2435
- /**
2436
- *
2437
- */
2438
- set scrollSnapType(scrollSnapType: string);
2439
- /**
2440
- *
2441
- */
2442
- get shapeImageThreshold(): string;
2443
- /**
2444
- *
2445
- */
2446
- set shapeImageThreshold(shapeImageThreshold: string);
2447
- /**
2448
- *
2449
- */
2450
- get shapeMargin(): string;
2451
- /**
2452
- *
2453
- */
2454
- set shapeMargin(shapeMargin: string);
2455
- /**
2456
- *
2457
- */
2458
- get shapeOutside(): string;
2459
- /**
2460
- *
2461
- */
2462
- set shapeOutside(shapeOutside: string);
2463
- /**
2464
- *
2465
- */
2466
- get shapeRendering(): string;
2467
- /**
2468
- *
2469
- */
2470
- set shapeRendering(shapeRendering: string);
2471
- /**
2472
- *
2473
- */
2474
- get size(): string;
2475
- /**
2476
- *
2477
- */
2478
- set size(size: string);
2479
- /**
2480
- *
2481
- */
2482
- get speak(): string;
2483
- /**
2484
- *
2485
- */
2486
- set speak(speak: string);
2487
- /**
2488
- *
2489
- */
2490
- get src(): string;
2491
- /**
2492
- *
2493
- */
2494
- set src(src: string);
2495
- /**
2496
- *
2497
- */
2498
- get stopColor(): string;
2499
- /**
2500
- *
2501
- */
2502
- set stopColor(stopColor: string);
2503
- /**
2504
- *
2505
- */
2506
- get stopOpacity(): string;
2507
- /**
2508
- *
2509
- */
2510
- set stopOpacity(stopOpacity: string);
2511
- /**
2512
- *
2513
- */
2514
- get stroke(): string;
2515
- /**
2516
- *
2517
- */
2518
- set stroke(stroke: string);
2519
- /**
2520
- *
2521
- */
2522
- get strokeDasharray(): string;
2523
- /**
2524
- *
2525
- */
2526
- set strokeDasharray(strokeDasharray: string);
2527
- /**
2528
- *
2529
- */
2530
- get strokeDashoffset(): string;
2531
- /**
2532
- *
2533
- */
2534
- set strokeDashoffset(strokeDashoffset: string);
2535
- /**
2536
- *
2537
- */
2538
- get strokeLinecap(): string;
2539
- /**
2540
- *
2541
- */
2542
- set strokeLinecap(strokeLinecap: string);
2543
- /**
2544
- *
2545
- */
2546
- get strokeLinejoin(): string;
2547
- /**
2548
- *
2549
- */
2550
- set strokeLinejoin(strokeLinejoin: string);
2551
- /**
2552
- *
2553
- */
2554
- get strokeMiterlimit(): string;
2555
- /**
2556
- *
2557
- */
2558
- set strokeMiterlimit(strokeMiterlimit: string);
2559
- /**
2560
- *
2561
- */
2562
- get strokeOpacity(): string;
2563
- /**
2564
- *
2565
- */
2566
- set strokeOpacity(strokeOpacity: string);
2567
- /**
2568
- *
2569
- */
2570
- get strokeWidth(): string;
2571
- /**
2572
- *
2573
- */
2574
- set strokeWidth(strokeWidth: string);
2575
- /**
2576
- *
2577
- */
2578
- get syntax(): string;
2579
- /**
2580
- *
2581
- */
2582
- set syntax(syntax: string);
2583
- /**
2584
- *
2585
- */
2586
- get tabSize(): string;
2587
- /**
2588
- *
2589
- */
2590
- set tabSize(tabSize: string);
2591
- /**
2592
- *
2593
- */
2594
- get tableLayout(): string;
2595
- /**
2596
- *
2597
- */
2598
- set tableLayout(tableLayout: string);
2599
- /**
2600
- *
2601
- */
2602
- get textAlign(): string;
2603
- /**
2604
- *
2605
- */
2606
- set textAlign(textAlign: string);
2607
- /**
2608
- *
2609
- */
2610
- get textAlignLast(): string;
2611
- /**
2612
- *
2613
- */
2614
- set textAlignLast(textAlignLast: string);
2615
- /**
2616
- *
2617
- */
2618
- get textAnchor(): string;
2619
- /**
2620
- *
2621
- */
2622
- set textAnchor(textAnchor: string);
2623
- /**
2624
- *
2625
- */
2626
- get textCombineUpright(): string;
2627
- /**
2628
- *
2629
- */
2630
- set textCombineUpright(textCombineUpright: string);
2631
- /**
2632
- *
2633
- */
2634
- get textDecoration(): string;
2635
- /**
2636
- *
2637
- */
2638
- set textDecoration(textDecoration: string);
2639
- /**
2640
- *
2641
- */
2642
- get textDecorationColor(): string;
2643
- /**
2644
- *
2645
- */
2646
- set textDecorationColor(textDecorationColor: string);
2647
- /**
2648
- *
2649
- */
2650
- get textDecorationLine(): string;
2651
- /**
2652
- *
2653
- */
2654
- set textDecorationLine(textDecorationLine: string);
2655
- /**
2656
- *
2657
- */
2658
- get textDecorationSkipInk(): string;
2659
- /**
2660
- *
2661
- */
2662
- set textDecorationSkipInk(textDecorationSkipInk: string);
2663
- /**
2664
- *
2665
- */
2666
- get textDecorationStyle(): string;
2667
- /**
2668
- *
2669
- */
2670
- set textDecorationStyle(textDecorationStyle: string);
2671
- /**
2672
- *
2673
- */
2674
- get textIndent(): string;
2675
- /**
2676
- *
2677
- */
2678
- set textIndent(textIndent: string);
2679
- /**
2680
- *
2681
- */
2682
- get textOrientation(): string;
2683
- /**
2684
- *
2685
- */
2686
- set textOrientation(textOrientation: string);
2687
- /**
2688
- *
2689
- */
2690
- get textOverflow(): string;
2691
- /**
2692
- *
2693
- */
2694
- set textOverflow(textOverflow: string);
2695
- /**
2696
- *
2697
- */
2698
- get textRendering(): string;
2699
- /**
2700
- *
2701
- */
2702
- set textRendering(textRendering: string);
2703
- /**
2704
- *
2705
- */
2706
- get textShadow(): string;
2707
- /**
2708
- *
2709
- */
2710
- set textShadow(textShadow: string);
2711
- /**
2712
- *
2713
- */
2714
- get textSizeAdjust(): string;
2715
- /**
2716
- *
2717
- */
2718
- set textSizeAdjust(textSizeAdjust: string);
2719
- /**
2720
- *
2721
- */
2722
- get textTransform(): string;
2723
- /**
2724
- *
2725
- */
2726
- set textTransform(textTransform: string);
2727
- /**
2728
- *
2729
- */
2730
- get textUnderlinePosition(): string;
2731
- /**
2732
- *
2733
- */
2734
- set textUnderlinePosition(textUnderlinePosition: string);
2735
- /**
2736
- *
2737
- */
2738
- get top(): string;
2739
- /**
2740
- *
2741
- */
2742
- set top(top: string);
2743
- /**
2744
- *
2745
- */
2746
- get touchAction(): string;
2747
- /**
2748
- *
2749
- */
2750
- set touchAction(touchAction: string);
2751
- /**
2752
- *
2753
- */
2754
- get transform(): string;
2755
- /**
2756
- *
2757
- */
2758
- set transform(transform: string);
2759
- /**
2760
- *
2761
- */
2762
- get transformBox(): string;
2763
- /**
2764
- *
2765
- */
2766
- set transformBox(transformBox: string);
2767
- /**
2768
- *
2769
- */
2770
- get transformOrigin(): string;
2771
- /**
2772
- *
2773
- */
2774
- set transformOrigin(transformOrigin: string);
2775
- /**
2776
- *
2777
- */
2778
- get transformStyle(): string;
2779
- /**
2780
- *
2781
- */
2782
- set transformStyle(transformStyle: string);
2783
- /**
2784
- *
2785
- */
2786
- get transition(): string;
2787
- /**
2788
- *
2789
- */
2790
- set transition(transition: string);
2791
- /**
2792
- *
2793
- */
2794
- get transitionDelay(): string;
2795
- /**
2796
- *
2797
- */
2798
- set transitionDelay(transitionDelay: string);
2799
- /**
2800
- *
2801
- */
2802
- get transitionDuration(): string;
2803
- /**
2804
- *
2805
- */
2806
- set transitionDuration(transitionDuration: string);
2807
- /**
2808
- *
2809
- */
2810
- get transitionProperty(): string;
2811
- /**
2812
- *
2813
- */
2814
- set transitionProperty(transitionProperty: string);
2815
- /**
2816
- *
2817
- */
2818
- get transitionTimingFunction(): string;
2819
- /**
2820
- *
2821
- */
2822
- set transitionTimingFunction(transitionTimingFunction: string);
2823
- /**
2824
- *
2825
- */
2826
- get unicodeBidi(): string;
2827
- /**
2828
- *
2829
- */
2830
- set unicodeBidi(unicodeBidi: string);
2831
- /**
2832
- *
2833
- */
2834
- get unicodeRange(): string;
2835
- /**
2836
- *
2837
- */
2838
- set unicodeRange(unicodeRange: string);
2839
- /**
2840
- *
2841
- */
2842
- get userSelect(): string;
2843
- /**
2844
- *
2845
- */
2846
- set userSelect(userSelect: string);
2847
- /**
2848
- *
2849
- */
2850
- get userZoom(): string;
2851
- /**
2852
- *
2853
- */
2854
- set userZoom(userZoom: string);
2855
- /**
2856
- *
2857
- */
2858
- get vectorEffect(): string;
2859
- /**
2860
- *
2861
- */
2862
- set vectorEffect(vectorEffect: string);
2863
- /**
2864
- *
2865
- */
2866
- get verticalAlign(): string;
2867
- /**
2868
- *
2869
- */
2870
- set verticalAlign(verticalAlign: string);
2871
- /**
2872
- *
2873
- */
2874
- get visibility(): string;
2875
- /**
2876
- *
2877
- */
2878
- set visibility(visibility: string);
2879
- /**
2880
- *
2881
- */
2882
- get whiteSpace(): string;
2883
- /**
2884
- *
2885
- */
2886
- set whiteSpace(whiteSpace: string);
2887
- /**
2888
- *
2889
- */
2890
- get widows(): string;
2891
- /**
2892
- *
2893
- */
2894
- set widows(widows: string);
2895
- /**
2896
- *
2897
- */
2898
- get width(): string;
2899
- /**
2900
- *
2901
- */
2902
- set width(width: string);
2903
- /**
2904
- *
2905
- */
2906
- get willChange(): string;
2907
- /**
2908
- *
2909
- */
2910
- set willChange(willChange: string);
2911
- /**
2912
- *
2913
- */
2914
- get wordBreak(): string;
2915
- /**
2916
- *
2917
- */
2918
- set wordBreak(wordBreak: string);
2919
- /**
2920
- *
2921
- */
2922
- get wordSpacing(): string;
2923
- /**
2924
- *
2925
- */
2926
- set wordSpacing(wordSpacing: string);
2927
- /**
2928
- *
2929
- */
2930
- get wordWrap(): string;
2931
- /**
2932
- *
2933
- */
2934
- set wordWrap(wordWrap: string);
2935
- /**
2936
- *
2937
- */
2938
- get writingMode(): string;
2939
- /**
2940
- *
2941
- */
2942
- set writingMode(writingMode: string);
2943
- /**
2944
- *
2945
- */
2946
- get x(): string;
2947
- /**
2948
- *
2949
- */
2950
- set x(x: string);
2951
- /**
2952
- *
2953
- */
2954
- get y(): string;
2955
- /**
2956
- *
2957
- */
2958
- set y(y: string);
2959
- /**
2960
- *
2961
- */
2962
- get zIndex(): string;
2963
- /**
2964
- *
2965
- */
2966
- set zIndex(zIndex: string);
2967
- /**
2968
- *
2969
- */
2970
- get zoom(): string;
2971
- /**
2972
- *
2973
- */
2974
- set zoom(zoom: string);
2975
- /**
2976
- * Returns the style decleration as a CSS text.
2977
- *
2978
- * @returns CSS text.
2979
- */
2980
- get cssText(): string;
2981
- /**
2982
- * Sets CSS text.
2983
- *
2984
- * @param cssText CSS text.
2985
- */
2986
- set cssText(cssText: string);
2987
- /**
2988
- * Returns item.
2989
- *
2990
- * @param index Index.
2991
- * @returns Item.
2992
- */
2993
- item(index: number): string;
2994
- /**
2995
- * Set a property.
2996
- *
2997
- * @param propertyName Property name.
2998
- * @param value Value. Must not contain "!important" as that should be set using the priority parameter.
2999
- * @param [priority] Can be "important", or an empty string.
3000
- */
3001
- setProperty(propertyName: string, value: string, priority?: string): void;
3002
- /**
3003
- * Removes a property.
3004
- *
3005
- * @param propertyName Property name in kebab case.
3006
- * @param value Value. Must not contain "!important" as that should be set using the priority parameter.
3007
- * @param [priority] Can be "important", or an empty string.
3008
- */
3009
- removeProperty(propertyName: string): void;
3010
- /**
3011
- * Returns a property.
3012
- *
3013
- * @param propertyName Property name in kebab case.
3014
- * @returns Property value.
3015
- */
3016
- getPropertyValue(propertyName: string): string;
3017
- }