happy-dom 6.0.3 → 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.
- package/lib/css/CSSParser.js +12 -6
- package/lib/css/CSSParser.js.map +1 -1
- package/lib/css/CSSRule.d.ts +15 -13
- package/lib/css/CSSRule.js +18 -13
- package/lib/css/CSSRule.js.map +1 -1
- package/lib/css/CSSRuleTypeEnum.d.ts +17 -0
- package/lib/css/CSSRuleTypeEnum.js +21 -0
- package/lib/css/CSSRuleTypeEnum.js.map +1 -0
- package/lib/css/CSSStyleSheet.d.ts +6 -16
- package/lib/css/CSSStyleSheet.js +11 -19
- package/lib/css/CSSStyleSheet.js.map +1 -1
- package/lib/css/declaration/AbstractCSSStyleDeclaration.d.ts +76 -0
- package/lib/css/declaration/AbstractCSSStyleDeclaration.js +182 -0
- package/lib/css/declaration/AbstractCSSStyleDeclaration.js.map +1 -0
- package/lib/css/declaration/CSSStyleDeclaration.d.ts +1194 -0
- package/lib/css/declaration/CSSStyleDeclaration.js +3566 -0
- package/lib/css/declaration/CSSStyleDeclaration.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationCSSParser.d.ts +12 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationCSSParser.js +34 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationCSSParser.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.d.ts +131 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.js +133 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.d.ts +40 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.js +42 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementStyle.d.ts +49 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementStyle.js +244 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationElementStyle.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.d.ts +167 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.js +537 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyManager.d.ts +65 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyManager.js +565 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertyManager.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.d.ts +809 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.js +2303 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.js.map +1 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationValueParser.d.ts +127 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationValueParser.js +411 -0
- package/lib/css/declaration/utilities/CSSStyleDeclarationValueParser.js.map +1 -0
- package/lib/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.d.ts +4 -0
- package/lib/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.js +3 -0
- package/lib/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.js.map +1 -0
- package/lib/css/rules/CSSContainerRule.d.ts +15 -0
- package/lib/css/rules/CSSContainerRule.js +31 -0
- package/lib/css/rules/CSSContainerRule.js.map +1 -0
- package/lib/css/rules/CSSFontFaceRule.d.ts +10 -3
- package/lib/css/rules/CSSFontFaceRule.js +16 -0
- package/lib/css/rules/CSSFontFaceRule.js.map +1 -1
- package/lib/css/rules/CSSKeyframeRule.d.ts +10 -3
- package/lib/css/rules/CSSKeyframeRule.js +16 -0
- package/lib/css/rules/CSSKeyframeRule.js.map +1 -1
- package/lib/css/rules/CSSKeyframesRule.d.ts +1 -1
- package/lib/css/rules/CSSKeyframesRule.js +1 -1
- package/lib/css/rules/CSSKeyframesRule.js.map +1 -1
- package/lib/css/rules/CSSMediaRule.d.ts +1 -1
- package/lib/css/rules/CSSStyleRule.d.ts +10 -3
- package/lib/css/rules/CSSStyleRule.js +16 -0
- package/lib/css/rules/CSSStyleRule.js.map +1 -1
- package/lib/event/Event.d.ts +2 -3
- package/lib/event/Event.js.map +1 -1
- package/lib/event/events/IMediaQueryListInit.d.ts +5 -0
- package/lib/event/events/IMediaQueryListInit.js +3 -0
- package/lib/event/events/IMediaQueryListInit.js.map +1 -0
- package/lib/event/events/MediaQueryListEvent.d.ts +16 -0
- package/lib/event/events/MediaQueryListEvent.js +28 -0
- package/lib/event/events/MediaQueryListEvent.js.map +1 -0
- package/lib/exception/DOMException.js +5 -3
- package/lib/exception/DOMException.js.map +1 -1
- package/lib/exception/DOMExceptionNameEnum.d.ts +2 -1
- package/lib/exception/DOMExceptionNameEnum.js +1 -0
- package/lib/exception/DOMExceptionNameEnum.js.map +1 -1
- package/lib/fetch/Response.d.ts +4 -1
- package/lib/fetch/Response.js +5 -2
- package/lib/fetch/Response.js.map +1 -1
- package/lib/file/Blob.d.ts +9 -0
- package/lib/file/Blob.js +14 -0
- package/lib/file/Blob.js.map +1 -1
- package/lib/index.d.ts +9 -2
- package/lib/index.js +16 -2
- package/lib/index.js.map +1 -1
- package/lib/match-media/MediaQueryList.d.ts +19 -8
- package/lib/match-media/MediaQueryList.js +56 -13
- package/lib/match-media/MediaQueryList.js.map +1 -1
- package/lib/{attribute → nodes/attr}/Attr.d.ts +8 -7
- package/lib/{attribute → nodes/attr}/Attr.js +12 -5
- package/lib/nodes/attr/Attr.js.map +1 -0
- package/lib/nodes/attr/IAttr.d.ts +14 -0
- package/lib/nodes/attr/IAttr.js +3 -0
- package/lib/nodes/attr/IAttr.js.map +1 -0
- package/lib/nodes/child-node/ChildNodeUtility.js +2 -1
- package/lib/nodes/child-node/ChildNodeUtility.js.map +1 -1
- package/lib/nodes/document/Document.d.ts +4 -4
- package/lib/nodes/document/Document.js +5 -8
- package/lib/nodes/document/Document.js.map +1 -1
- package/lib/nodes/document/IDocument.d.ts +3 -3
- package/lib/nodes/element/Element.d.ts +11 -9
- package/lib/nodes/element/Element.js +2 -1
- package/lib/nodes/element/Element.js.map +1 -1
- package/lib/nodes/element/IElement.d.ts +10 -8
- package/lib/nodes/html-element/HTMLElement.d.ts +21 -5
- package/lib/nodes/html-element/HTMLElement.js +74 -11
- package/lib/nodes/html-element/HTMLElement.js.map +1 -1
- package/lib/nodes/html-element/IHTMLElement.d.ts +5 -1
- package/lib/nodes/html-link-element/HTMLLinkElement.d.ts +2 -2
- package/lib/nodes/html-link-element/HTMLLinkElement.js.map +1 -1
- package/lib/nodes/html-script-element/HTMLScriptElement.d.ts +2 -2
- package/lib/nodes/html-script-element/HTMLScriptElement.js.map +1 -1
- package/lib/nodes/html-select-element/HTMLSelectElement.js +1 -1
- package/lib/nodes/html-select-element/HTMLSelectElement.js.map +1 -1
- package/lib/nodes/html-style-element/HTMLStyleElement.js +1 -1
- package/lib/nodes/html-style-element/HTMLStyleElement.js.map +1 -1
- package/lib/nodes/node/INode.d.ts +2 -0
- package/lib/nodes/node/Node.d.ts +5 -1
- package/lib/nodes/node/Node.js +7 -1
- package/lib/nodes/node/Node.js.map +1 -1
- package/lib/nodes/node/NodeTypeEnum.d.ts +2 -0
- package/lib/nodes/node/NodeTypeEnum.js +2 -0
- package/lib/nodes/node/NodeTypeEnum.js.map +1 -1
- package/lib/nodes/svg-element/ISVGElement.d.ts +1 -1
- package/lib/nodes/svg-element/SVGElement.d.ts +4 -4
- package/lib/nodes/svg-element/SVGElement.js +2 -2
- package/lib/nodes/svg-element/SVGElement.js.map +1 -1
- package/lib/window/IWindow.d.ts +23 -3
- package/lib/window/Window.d.ts +35 -6
- package/lib/window/Window.js +58 -23
- package/lib/window/Window.js.map +1 -1
- package/package.json +2 -2
- package/src/css/CSSParser.ts +14 -6
- package/src/css/CSSRule.ts +15 -13
- package/src/css/CSSRuleTypeEnum.ts +18 -0
- package/src/css/CSSStyleSheet.ts +12 -22
- package/src/css/declaration/AbstractCSSStyleDeclaration.ts +202 -0
- package/src/css/declaration/CSSStyleDeclaration.ts +4743 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationCSSParser.ts +35 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationElementDefaultCSS.ts +130 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationElementInheritedProperties.ts +39 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationElementStyle.ts +282 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationPropertyGetParser.ts +743 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationPropertyManager.ts +592 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationPropertySetParser.ts +3026 -0
- package/src/css/declaration/utilities/CSSStyleDeclarationValueParser.ts +437 -0
- package/src/css/declaration/utilities/ICSSStyleDeclarationPropertyValue.ts +4 -0
- package/src/css/rules/CSSContainerRule.ts +23 -0
- package/src/css/rules/CSSFontFaceRule.ts +17 -2
- package/src/css/rules/CSSKeyframeRule.ts +17 -2
- package/src/css/rules/CSSKeyframesRule.ts +1 -1
- package/src/css/rules/CSSStyleRule.ts +17 -2
- package/src/event/Event.ts +2 -3
- package/src/event/events/IMediaQueryListInit.ts +6 -0
- package/src/event/events/MediaQueryListEvent.ts +25 -0
- package/src/exception/DOMException.ts +3 -3
- package/src/exception/DOMExceptionNameEnum.ts +2 -1
- package/src/fetch/Response.ts +5 -2
- package/src/file/Blob.ts +16 -0
- package/src/index.ts +15 -1
- package/src/match-media/MediaQueryList.ts +63 -10
- package/src/{attribute → nodes/attr}/Attr.ts +11 -8
- package/src/nodes/attr/IAttr.ts +15 -0
- package/src/nodes/child-node/ChildNodeUtility.ts +2 -1
- package/src/nodes/document/Document.ts +8 -10
- package/src/nodes/document/IDocument.ts +3 -3
- package/src/nodes/element/Element.ts +13 -10
- package/src/nodes/element/IElement.ts +8 -8
- package/src/nodes/html-element/HTMLElement.ts +94 -16
- package/src/nodes/html-element/IHTMLElement.ts +3 -1
- package/src/nodes/html-link-element/HTMLLinkElement.ts +2 -2
- package/src/nodes/html-script-element/HTMLScriptElement.ts +2 -2
- package/src/nodes/html-select-element/HTMLSelectElement.ts +1 -1
- package/src/nodes/html-style-element/HTMLStyleElement.ts +1 -1
- package/src/nodes/node/INode.ts +2 -0
- package/src/nodes/node/Node.ts +7 -1
- package/src/nodes/node/NodeTypeEnum.ts +2 -0
- package/src/nodes/svg-element/ISVGElement.ts +1 -1
- package/src/nodes/svg-element/SVGElement.ts +5 -5
- package/src/window/IWindow.ts +23 -3
- package/src/window/Window.ts +51 -11
- package/lib/attribute/Attr.js.map +0 -1
- package/lib/css/CSSStyleDeclaration.d.ts +0 -3017
- package/lib/css/CSSStyleDeclaration.js +0 -4643
- package/lib/css/CSSStyleDeclaration.js.map +0 -1
- package/src/css/CSSStyleDeclaration.ts +0 -5026
@@ -1,5026 +0,0 @@
|
|
1
|
-
import Attr from '../attribute/Attr';
|
2
|
-
import CSSRule from './CSSRule';
|
3
|
-
|
4
|
-
/**
|
5
|
-
* CSS Style Declaration.
|
6
|
-
*/
|
7
|
-
export default class CSSStyleDeclaration {
|
8
|
-
public readonly length = 0;
|
9
|
-
public readonly parentRule: CSSRule = null;
|
10
|
-
private _attributes: { [k: string]: Attr } = null;
|
11
|
-
private _computedStyleElement: { isConnected: boolean } = null;
|
12
|
-
|
13
|
-
/**
|
14
|
-
* Constructor.
|
15
|
-
*
|
16
|
-
* @param [attributes] Attributes.
|
17
|
-
* @param [computedStyleElement] Computed style element.
|
18
|
-
* @param computedStyleElement.isConnected
|
19
|
-
*/
|
20
|
-
constructor(
|
21
|
-
attributes: { [k: string]: Attr } = {},
|
22
|
-
computedStyleElement: { isConnected: boolean } = null
|
23
|
-
) {
|
24
|
-
const style = attributes['style'];
|
25
|
-
let index = 0;
|
26
|
-
|
27
|
-
this._attributes = attributes;
|
28
|
-
this._computedStyleElement = computedStyleElement;
|
29
|
-
|
30
|
-
if (style && style.value) {
|
31
|
-
const parts = style.value.split(';');
|
32
|
-
for (const part of parts) {
|
33
|
-
if (part) {
|
34
|
-
const [name] = part.trim().split(':');
|
35
|
-
this[index] = name;
|
36
|
-
index++;
|
37
|
-
}
|
38
|
-
}
|
39
|
-
}
|
40
|
-
|
41
|
-
(<number>this.length) = index;
|
42
|
-
}
|
43
|
-
|
44
|
-
/**
|
45
|
-
*
|
46
|
-
*/
|
47
|
-
public get alignContent(): string {
|
48
|
-
return this.getPropertyValue('align-content');
|
49
|
-
}
|
50
|
-
/**
|
51
|
-
*
|
52
|
-
*/
|
53
|
-
public set alignContent(alignContent: string) {
|
54
|
-
this.setProperty('align-content', alignContent);
|
55
|
-
}
|
56
|
-
|
57
|
-
/**
|
58
|
-
*
|
59
|
-
*/
|
60
|
-
public get alignItems(): string {
|
61
|
-
return this.getPropertyValue('align-items');
|
62
|
-
}
|
63
|
-
/**
|
64
|
-
*
|
65
|
-
*/
|
66
|
-
public set alignItems(alignItems: string) {
|
67
|
-
this.setProperty('align-items', alignItems);
|
68
|
-
}
|
69
|
-
|
70
|
-
/**
|
71
|
-
*
|
72
|
-
*/
|
73
|
-
public get alignSelf(): string {
|
74
|
-
return this.getPropertyValue('align-self');
|
75
|
-
}
|
76
|
-
/**
|
77
|
-
*
|
78
|
-
*/
|
79
|
-
public set alignSelf(alignSelf: string) {
|
80
|
-
this.setProperty('align-self', alignSelf);
|
81
|
-
}
|
82
|
-
|
83
|
-
/**
|
84
|
-
*
|
85
|
-
*/
|
86
|
-
public get alignmentBaseline(): string {
|
87
|
-
return this.getPropertyValue('alignment-baseline');
|
88
|
-
}
|
89
|
-
/**
|
90
|
-
*
|
91
|
-
*/
|
92
|
-
public set alignmentBaseline(alignmentBaseline: string) {
|
93
|
-
this.setProperty('alignment-baseline', alignmentBaseline);
|
94
|
-
}
|
95
|
-
|
96
|
-
/**
|
97
|
-
*
|
98
|
-
*/
|
99
|
-
public get all(): string {
|
100
|
-
return this.getPropertyValue('all');
|
101
|
-
}
|
102
|
-
/**
|
103
|
-
*
|
104
|
-
*/
|
105
|
-
public set all(all: string) {
|
106
|
-
this.setProperty('all', all);
|
107
|
-
}
|
108
|
-
|
109
|
-
/**
|
110
|
-
*
|
111
|
-
*/
|
112
|
-
public get animation(): string {
|
113
|
-
return this.getPropertyValue('animation');
|
114
|
-
}
|
115
|
-
/**
|
116
|
-
*
|
117
|
-
*/
|
118
|
-
public set animation(animation: string) {
|
119
|
-
this.setProperty('animation', animation);
|
120
|
-
}
|
121
|
-
|
122
|
-
/**
|
123
|
-
*
|
124
|
-
*/
|
125
|
-
public get animationDelay(): string {
|
126
|
-
return this.getPropertyValue('animation-delay');
|
127
|
-
}
|
128
|
-
/**
|
129
|
-
*
|
130
|
-
*/
|
131
|
-
public set animationDelay(animationDelay: string) {
|
132
|
-
this.setProperty('animation-delay', animationDelay);
|
133
|
-
}
|
134
|
-
|
135
|
-
/**
|
136
|
-
*
|
137
|
-
*/
|
138
|
-
public get animationDirection(): string {
|
139
|
-
return this.getPropertyValue('animation-direction');
|
140
|
-
}
|
141
|
-
/**
|
142
|
-
*
|
143
|
-
*/
|
144
|
-
public set animationDirection(animationDirection: string) {
|
145
|
-
this.setProperty('animation-direction', animationDirection);
|
146
|
-
}
|
147
|
-
|
148
|
-
/**
|
149
|
-
*
|
150
|
-
*/
|
151
|
-
public get animationDuration(): string {
|
152
|
-
return this.getPropertyValue('animation-duration');
|
153
|
-
}
|
154
|
-
/**
|
155
|
-
*
|
156
|
-
*/
|
157
|
-
public set animationDuration(animationDuration: string) {
|
158
|
-
this.setProperty('animation-duration', animationDuration);
|
159
|
-
}
|
160
|
-
|
161
|
-
/**
|
162
|
-
*
|
163
|
-
*/
|
164
|
-
public get animationFillMode(): string {
|
165
|
-
return this.getPropertyValue('animation-fill-mode');
|
166
|
-
}
|
167
|
-
/**
|
168
|
-
*
|
169
|
-
*/
|
170
|
-
public set animationFillMode(animationFillMode: string) {
|
171
|
-
this.setProperty('animation-fill-mode', animationFillMode);
|
172
|
-
}
|
173
|
-
|
174
|
-
/**
|
175
|
-
*
|
176
|
-
*/
|
177
|
-
public get animationIterationCount(): string {
|
178
|
-
return this.getPropertyValue('animation-iteration-count');
|
179
|
-
}
|
180
|
-
/**
|
181
|
-
*
|
182
|
-
*/
|
183
|
-
public set animationIterationCount(animationIterationCount: string) {
|
184
|
-
this.setProperty('animation-iteration-count', animationIterationCount);
|
185
|
-
}
|
186
|
-
|
187
|
-
/**
|
188
|
-
*
|
189
|
-
*/
|
190
|
-
public get animationName(): string {
|
191
|
-
return this.getPropertyValue('animation-name');
|
192
|
-
}
|
193
|
-
/**
|
194
|
-
*
|
195
|
-
*/
|
196
|
-
public set animationName(animationName: string) {
|
197
|
-
this.setProperty('animation-name', animationName);
|
198
|
-
}
|
199
|
-
|
200
|
-
/**
|
201
|
-
*
|
202
|
-
*/
|
203
|
-
public get animationPlayState(): string {
|
204
|
-
return this.getPropertyValue('animation-play-state');
|
205
|
-
}
|
206
|
-
/**
|
207
|
-
*
|
208
|
-
*/
|
209
|
-
public set animationPlayState(animationPlayState: string) {
|
210
|
-
this.setProperty('animation-play-state', animationPlayState);
|
211
|
-
}
|
212
|
-
|
213
|
-
/**
|
214
|
-
*
|
215
|
-
*/
|
216
|
-
public get animationTimingFunction(): string {
|
217
|
-
return this.getPropertyValue('animation-timing-function');
|
218
|
-
}
|
219
|
-
/**
|
220
|
-
*
|
221
|
-
*/
|
222
|
-
public set animationTimingFunction(animationTimingFunction: string) {
|
223
|
-
this.setProperty('animation-timing-function', animationTimingFunction);
|
224
|
-
}
|
225
|
-
|
226
|
-
/**
|
227
|
-
*
|
228
|
-
*/
|
229
|
-
public get appearance(): string {
|
230
|
-
return this.getPropertyValue('appearance');
|
231
|
-
}
|
232
|
-
/**
|
233
|
-
*
|
234
|
-
*/
|
235
|
-
public set appearance(appearance: string) {
|
236
|
-
this.setProperty('appearance', appearance);
|
237
|
-
}
|
238
|
-
|
239
|
-
/**
|
240
|
-
*
|
241
|
-
*/
|
242
|
-
public get backdropFilter(): string {
|
243
|
-
return this.getPropertyValue('backdrop-filter');
|
244
|
-
}
|
245
|
-
/**
|
246
|
-
*
|
247
|
-
*/
|
248
|
-
public set backdropFilter(backdropFilter: string) {
|
249
|
-
this.setProperty('backdrop-filter', backdropFilter);
|
250
|
-
}
|
251
|
-
|
252
|
-
/**
|
253
|
-
*
|
254
|
-
*/
|
255
|
-
public get backfaceVisibility(): string {
|
256
|
-
return this.getPropertyValue('backface-visibility');
|
257
|
-
}
|
258
|
-
/**
|
259
|
-
*
|
260
|
-
*/
|
261
|
-
public set backfaceVisibility(backfaceVisibility: string) {
|
262
|
-
this.setProperty('backface-visibility', backfaceVisibility);
|
263
|
-
}
|
264
|
-
|
265
|
-
/**
|
266
|
-
*
|
267
|
-
*/
|
268
|
-
public get background(): string {
|
269
|
-
return this.getPropertyValue('background');
|
270
|
-
}
|
271
|
-
/**
|
272
|
-
*
|
273
|
-
*/
|
274
|
-
public set background(background: string) {
|
275
|
-
this.setProperty('background', background);
|
276
|
-
}
|
277
|
-
|
278
|
-
/**
|
279
|
-
*
|
280
|
-
*/
|
281
|
-
public get backgroundAttachment(): string {
|
282
|
-
return this.getPropertyValue('background-attachment');
|
283
|
-
}
|
284
|
-
/**
|
285
|
-
*
|
286
|
-
*/
|
287
|
-
public set backgroundAttachment(backgroundAttachment: string) {
|
288
|
-
this.setProperty('background-attachment', backgroundAttachment);
|
289
|
-
}
|
290
|
-
|
291
|
-
/**
|
292
|
-
*
|
293
|
-
*/
|
294
|
-
public get backgroundBlendMode(): string {
|
295
|
-
return this.getPropertyValue('background-blend-mode');
|
296
|
-
}
|
297
|
-
/**
|
298
|
-
*
|
299
|
-
*/
|
300
|
-
public set backgroundBlendMode(backgroundBlendMode: string) {
|
301
|
-
this.setProperty('background-blend-mode', backgroundBlendMode);
|
302
|
-
}
|
303
|
-
|
304
|
-
/**
|
305
|
-
*
|
306
|
-
*/
|
307
|
-
public get backgroundClip(): string {
|
308
|
-
return this.getPropertyValue('background-clip');
|
309
|
-
}
|
310
|
-
/**
|
311
|
-
*
|
312
|
-
*/
|
313
|
-
public set backgroundClip(backgroundClip: string) {
|
314
|
-
this.setProperty('background-clip', backgroundClip);
|
315
|
-
}
|
316
|
-
|
317
|
-
/**
|
318
|
-
*
|
319
|
-
*/
|
320
|
-
public get backgroundColor(): string {
|
321
|
-
return this.getPropertyValue('background-color');
|
322
|
-
}
|
323
|
-
/**
|
324
|
-
*
|
325
|
-
*/
|
326
|
-
public set backgroundColor(backgroundColor: string) {
|
327
|
-
this.setProperty('background-color', backgroundColor);
|
328
|
-
}
|
329
|
-
|
330
|
-
/**
|
331
|
-
*
|
332
|
-
*/
|
333
|
-
public get backgroundImage(): string {
|
334
|
-
return this.getPropertyValue('background-image');
|
335
|
-
}
|
336
|
-
/**
|
337
|
-
*
|
338
|
-
*/
|
339
|
-
public set backgroundImage(backgroundImage: string) {
|
340
|
-
this.setProperty('background-image', backgroundImage);
|
341
|
-
}
|
342
|
-
|
343
|
-
/**
|
344
|
-
*
|
345
|
-
*/
|
346
|
-
public get backgroundOrigin(): string {
|
347
|
-
return this.getPropertyValue('background-origin');
|
348
|
-
}
|
349
|
-
/**
|
350
|
-
*
|
351
|
-
*/
|
352
|
-
public set backgroundOrigin(backgroundOrigin: string) {
|
353
|
-
this.setProperty('background-origin', backgroundOrigin);
|
354
|
-
}
|
355
|
-
|
356
|
-
/**
|
357
|
-
*
|
358
|
-
*/
|
359
|
-
public get backgroundPosition(): string {
|
360
|
-
return this.getPropertyValue('background-position');
|
361
|
-
}
|
362
|
-
/**
|
363
|
-
*
|
364
|
-
*/
|
365
|
-
public set backgroundPosition(backgroundPosition: string) {
|
366
|
-
this.setProperty('background-position', backgroundPosition);
|
367
|
-
}
|
368
|
-
|
369
|
-
/**
|
370
|
-
*
|
371
|
-
*/
|
372
|
-
public get backgroundPositionX(): string {
|
373
|
-
return this.getPropertyValue('background-position-x');
|
374
|
-
}
|
375
|
-
/**
|
376
|
-
*
|
377
|
-
*/
|
378
|
-
public set backgroundPositionX(backgroundPositionX: string) {
|
379
|
-
this.setProperty('background-position-x', backgroundPositionX);
|
380
|
-
}
|
381
|
-
|
382
|
-
/**
|
383
|
-
*
|
384
|
-
*/
|
385
|
-
public get backgroundPositionY(): string {
|
386
|
-
return this.getPropertyValue('background-position-y');
|
387
|
-
}
|
388
|
-
/**
|
389
|
-
*
|
390
|
-
*/
|
391
|
-
public set backgroundPositionY(backgroundPositionY: string) {
|
392
|
-
this.setProperty('background-position-y', backgroundPositionY);
|
393
|
-
}
|
394
|
-
|
395
|
-
/**
|
396
|
-
*
|
397
|
-
*/
|
398
|
-
public get backgroundRepeat(): string {
|
399
|
-
return this.getPropertyValue('background-repeat');
|
400
|
-
}
|
401
|
-
/**
|
402
|
-
*
|
403
|
-
*/
|
404
|
-
public set backgroundRepeat(backgroundRepeat: string) {
|
405
|
-
this.setProperty('background-repeat', backgroundRepeat);
|
406
|
-
}
|
407
|
-
|
408
|
-
/**
|
409
|
-
*
|
410
|
-
*/
|
411
|
-
public get backgroundRepeatX(): string {
|
412
|
-
return this.getPropertyValue('background-repeat-x');
|
413
|
-
}
|
414
|
-
/**
|
415
|
-
*
|
416
|
-
*/
|
417
|
-
public set backgroundRepeatX(backgroundRepeatX: string) {
|
418
|
-
this.setProperty('background-repeat-x', backgroundRepeatX);
|
419
|
-
}
|
420
|
-
|
421
|
-
/**
|
422
|
-
*
|
423
|
-
*/
|
424
|
-
public get backgroundRepeatY(): string {
|
425
|
-
return this.getPropertyValue('background-repeat-y');
|
426
|
-
}
|
427
|
-
/**
|
428
|
-
*
|
429
|
-
*/
|
430
|
-
public set backgroundRepeatY(backgroundRepeatY: string) {
|
431
|
-
this.setProperty('background-repeat-y', backgroundRepeatY);
|
432
|
-
}
|
433
|
-
|
434
|
-
/**
|
435
|
-
*
|
436
|
-
*/
|
437
|
-
public get backgroundSize(): string {
|
438
|
-
return this.getPropertyValue('background-size');
|
439
|
-
}
|
440
|
-
/**
|
441
|
-
*
|
442
|
-
*/
|
443
|
-
public set backgroundSize(backgroundSize: string) {
|
444
|
-
this.setProperty('background-size', backgroundSize);
|
445
|
-
}
|
446
|
-
|
447
|
-
/**
|
448
|
-
*
|
449
|
-
*/
|
450
|
-
public get baselineShift(): string {
|
451
|
-
return this.getPropertyValue('baseline-shift');
|
452
|
-
}
|
453
|
-
/**
|
454
|
-
*
|
455
|
-
*/
|
456
|
-
public set baselineShift(baselineShift: string) {
|
457
|
-
this.setProperty('baseline-shift', baselineShift);
|
458
|
-
}
|
459
|
-
|
460
|
-
/**
|
461
|
-
*
|
462
|
-
*/
|
463
|
-
public get blockSize(): string {
|
464
|
-
return this.getPropertyValue('block-size');
|
465
|
-
}
|
466
|
-
/**
|
467
|
-
*
|
468
|
-
*/
|
469
|
-
public set blockSize(blockSize: string) {
|
470
|
-
this.setProperty('block-size', blockSize);
|
471
|
-
}
|
472
|
-
|
473
|
-
/**
|
474
|
-
*
|
475
|
-
*/
|
476
|
-
public get border(): string {
|
477
|
-
return this.getPropertyValue('border');
|
478
|
-
}
|
479
|
-
/**
|
480
|
-
*
|
481
|
-
*/
|
482
|
-
public set border(border: string) {
|
483
|
-
this.setProperty('border', border);
|
484
|
-
}
|
485
|
-
|
486
|
-
/**
|
487
|
-
*
|
488
|
-
*/
|
489
|
-
public get borderBlockEnd(): string {
|
490
|
-
return this.getPropertyValue('border-block-end');
|
491
|
-
}
|
492
|
-
/**
|
493
|
-
*
|
494
|
-
*/
|
495
|
-
public set borderBlockEnd(borderBlockEnd: string) {
|
496
|
-
this.setProperty('border-block-end', borderBlockEnd);
|
497
|
-
}
|
498
|
-
|
499
|
-
/**
|
500
|
-
*
|
501
|
-
*/
|
502
|
-
public get borderBlockEndColor(): string {
|
503
|
-
return this.getPropertyValue('border-block-end-color');
|
504
|
-
}
|
505
|
-
/**
|
506
|
-
*
|
507
|
-
*/
|
508
|
-
public set borderBlockEndColor(borderBlockEndColor: string) {
|
509
|
-
this.setProperty('border-block-end-color', borderBlockEndColor);
|
510
|
-
}
|
511
|
-
|
512
|
-
/**
|
513
|
-
*
|
514
|
-
*/
|
515
|
-
public get borderBlockEndStyle(): string {
|
516
|
-
return this.getPropertyValue('border-block-end-style');
|
517
|
-
}
|
518
|
-
/**
|
519
|
-
*
|
520
|
-
*/
|
521
|
-
public set borderBlockEndStyle(borderBlockEndStyle: string) {
|
522
|
-
this.setProperty('border-block-end-style', borderBlockEndStyle);
|
523
|
-
}
|
524
|
-
|
525
|
-
/**
|
526
|
-
*
|
527
|
-
*/
|
528
|
-
public get borderBlockEndWidth(): string {
|
529
|
-
return this.getPropertyValue('border-block-end-width');
|
530
|
-
}
|
531
|
-
/**
|
532
|
-
*
|
533
|
-
*/
|
534
|
-
public set borderBlockEndWidth(borderBlockEndWidth: string) {
|
535
|
-
this.setProperty('border-block-end-width', borderBlockEndWidth);
|
536
|
-
}
|
537
|
-
|
538
|
-
/**
|
539
|
-
*
|
540
|
-
*/
|
541
|
-
public get borderBlockStart(): string {
|
542
|
-
return this.getPropertyValue('border-block-start');
|
543
|
-
}
|
544
|
-
/**
|
545
|
-
*
|
546
|
-
*/
|
547
|
-
public set borderBlockStart(borderBlockStart: string) {
|
548
|
-
this.setProperty('border-block-start', borderBlockStart);
|
549
|
-
}
|
550
|
-
|
551
|
-
/**
|
552
|
-
*
|
553
|
-
*/
|
554
|
-
public get borderBlockStartColor(): string {
|
555
|
-
return this.getPropertyValue('border-block-start-color');
|
556
|
-
}
|
557
|
-
/**
|
558
|
-
*
|
559
|
-
*/
|
560
|
-
public set borderBlockStartColor(borderBlockStartColor: string) {
|
561
|
-
this.setProperty('border-block-start-color', borderBlockStartColor);
|
562
|
-
}
|
563
|
-
|
564
|
-
/**
|
565
|
-
*
|
566
|
-
*/
|
567
|
-
public get borderBlockStartStyle(): string {
|
568
|
-
return this.getPropertyValue('border-block-start-style');
|
569
|
-
}
|
570
|
-
/**
|
571
|
-
*
|
572
|
-
*/
|
573
|
-
public set borderBlockStartStyle(borderBlockStartStyle: string) {
|
574
|
-
this.setProperty('border-block-start-style', borderBlockStartStyle);
|
575
|
-
}
|
576
|
-
|
577
|
-
/**
|
578
|
-
*
|
579
|
-
*/
|
580
|
-
public get borderBlockStartWidth(): string {
|
581
|
-
return this.getPropertyValue('border-block-start-width');
|
582
|
-
}
|
583
|
-
/**
|
584
|
-
*
|
585
|
-
*/
|
586
|
-
public set borderBlockStartWidth(borderBlockStartWidth: string) {
|
587
|
-
this.setProperty('border-block-start-width', borderBlockStartWidth);
|
588
|
-
}
|
589
|
-
|
590
|
-
/**
|
591
|
-
*
|
592
|
-
*/
|
593
|
-
public get borderBottom(): string {
|
594
|
-
return this.getPropertyValue('border-bottom');
|
595
|
-
}
|
596
|
-
/**
|
597
|
-
*
|
598
|
-
*/
|
599
|
-
public set borderBottom(borderBottom: string) {
|
600
|
-
this.setProperty('border-bottom', borderBottom);
|
601
|
-
}
|
602
|
-
|
603
|
-
/**
|
604
|
-
*
|
605
|
-
*/
|
606
|
-
public get borderBottomColor(): string {
|
607
|
-
return this.getPropertyValue('border-bottom-color');
|
608
|
-
}
|
609
|
-
/**
|
610
|
-
*
|
611
|
-
*/
|
612
|
-
public set borderBottomColor(borderBottomColor: string) {
|
613
|
-
this.setProperty('border-bottom-color', borderBottomColor);
|
614
|
-
}
|
615
|
-
|
616
|
-
/**
|
617
|
-
*
|
618
|
-
*/
|
619
|
-
public get borderBottomLeftRadius(): string {
|
620
|
-
return this.getPropertyValue('border-bottom-left-radius');
|
621
|
-
}
|
622
|
-
/**
|
623
|
-
*
|
624
|
-
*/
|
625
|
-
public set borderBottomLeftRadius(borderBottomLeftRadius: string) {
|
626
|
-
this.setProperty('border-bottom-left-radius', borderBottomLeftRadius);
|
627
|
-
}
|
628
|
-
|
629
|
-
/**
|
630
|
-
*
|
631
|
-
*/
|
632
|
-
public get borderBottomRightRadius(): string {
|
633
|
-
return this.getPropertyValue('border-bottom-right-radius');
|
634
|
-
}
|
635
|
-
/**
|
636
|
-
*
|
637
|
-
*/
|
638
|
-
public set borderBottomRightRadius(borderBottomRightRadius: string) {
|
639
|
-
this.setProperty('border-bottom-right-radius', borderBottomRightRadius);
|
640
|
-
}
|
641
|
-
|
642
|
-
/**
|
643
|
-
*
|
644
|
-
*/
|
645
|
-
public get borderBottomStyle(): string {
|
646
|
-
return this.getPropertyValue('border-bottom-style');
|
647
|
-
}
|
648
|
-
/**
|
649
|
-
*
|
650
|
-
*/
|
651
|
-
public set borderBottomStyle(borderBottomStyle: string) {
|
652
|
-
this.setProperty('border-bottom-style', borderBottomStyle);
|
653
|
-
}
|
654
|
-
|
655
|
-
/**
|
656
|
-
*
|
657
|
-
*/
|
658
|
-
public get borderBottomWidth(): string {
|
659
|
-
return this.getPropertyValue('border-bottom-width');
|
660
|
-
}
|
661
|
-
/**
|
662
|
-
*
|
663
|
-
*/
|
664
|
-
public set borderBottomWidth(borderBottomWidth: string) {
|
665
|
-
this.setProperty('border-bottom-width', borderBottomWidth);
|
666
|
-
}
|
667
|
-
|
668
|
-
/**
|
669
|
-
*
|
670
|
-
*/
|
671
|
-
public get borderCollapse(): string {
|
672
|
-
return this.getPropertyValue('border-collapse');
|
673
|
-
}
|
674
|
-
/**
|
675
|
-
*
|
676
|
-
*/
|
677
|
-
public set borderCollapse(borderCollapse: string) {
|
678
|
-
this.setProperty('border-collapse', borderCollapse);
|
679
|
-
}
|
680
|
-
|
681
|
-
/**
|
682
|
-
*
|
683
|
-
*/
|
684
|
-
public get borderColor(): string {
|
685
|
-
return this.getPropertyValue('border-color');
|
686
|
-
}
|
687
|
-
/**
|
688
|
-
*
|
689
|
-
*/
|
690
|
-
public set borderColor(borderColor: string) {
|
691
|
-
this.setProperty('border-color', borderColor);
|
692
|
-
}
|
693
|
-
|
694
|
-
/**
|
695
|
-
*
|
696
|
-
*/
|
697
|
-
public get borderImage(): string {
|
698
|
-
return this.getPropertyValue('border-image');
|
699
|
-
}
|
700
|
-
/**
|
701
|
-
*
|
702
|
-
*/
|
703
|
-
public set borderImage(borderImage: string) {
|
704
|
-
this.setProperty('border-image', borderImage);
|
705
|
-
}
|
706
|
-
|
707
|
-
/**
|
708
|
-
*
|
709
|
-
*/
|
710
|
-
public get borderImageOutset(): string {
|
711
|
-
return this.getPropertyValue('border-image-outset');
|
712
|
-
}
|
713
|
-
/**
|
714
|
-
*
|
715
|
-
*/
|
716
|
-
public set borderImageOutset(borderImageOutset: string) {
|
717
|
-
this.setProperty('border-image-outset', borderImageOutset);
|
718
|
-
}
|
719
|
-
|
720
|
-
/**
|
721
|
-
*
|
722
|
-
*/
|
723
|
-
public get borderImageRepeat(): string {
|
724
|
-
return this.getPropertyValue('border-image-repeat');
|
725
|
-
}
|
726
|
-
/**
|
727
|
-
*
|
728
|
-
*/
|
729
|
-
public set borderImageRepeat(borderImageRepeat: string) {
|
730
|
-
this.setProperty('border-image-repeat', borderImageRepeat);
|
731
|
-
}
|
732
|
-
|
733
|
-
/**
|
734
|
-
*
|
735
|
-
*/
|
736
|
-
public get borderImageSlice(): string {
|
737
|
-
return this.getPropertyValue('border-image-slice');
|
738
|
-
}
|
739
|
-
/**
|
740
|
-
*
|
741
|
-
*/
|
742
|
-
public set borderImageSlice(borderImageSlice: string) {
|
743
|
-
this.setProperty('border-image-slice', borderImageSlice);
|
744
|
-
}
|
745
|
-
|
746
|
-
/**
|
747
|
-
*
|
748
|
-
*/
|
749
|
-
public get borderImageSource(): string {
|
750
|
-
return this.getPropertyValue('border-image-source');
|
751
|
-
}
|
752
|
-
/**
|
753
|
-
*
|
754
|
-
*/
|
755
|
-
public set borderImageSource(borderImageSource: string) {
|
756
|
-
this.setProperty('border-image-source', borderImageSource);
|
757
|
-
}
|
758
|
-
|
759
|
-
/**
|
760
|
-
*
|
761
|
-
*/
|
762
|
-
public get borderImageWidth(): string {
|
763
|
-
return this.getPropertyValue('border-image-width');
|
764
|
-
}
|
765
|
-
/**
|
766
|
-
*
|
767
|
-
*/
|
768
|
-
public set borderImageWidth(borderImageWidth: string) {
|
769
|
-
this.setProperty('border-image-width', borderImageWidth);
|
770
|
-
}
|
771
|
-
|
772
|
-
/**
|
773
|
-
*
|
774
|
-
*/
|
775
|
-
public get borderInlineEnd(): string {
|
776
|
-
return this.getPropertyValue('border-inline-end');
|
777
|
-
}
|
778
|
-
/**
|
779
|
-
*
|
780
|
-
*/
|
781
|
-
public set borderInlineEnd(borderInlineEnd: string) {
|
782
|
-
this.setProperty('border-inline-end', borderInlineEnd);
|
783
|
-
}
|
784
|
-
|
785
|
-
/**
|
786
|
-
*
|
787
|
-
*/
|
788
|
-
public get borderInlineEndColor(): string {
|
789
|
-
return this.getPropertyValue('border-inline-end-color');
|
790
|
-
}
|
791
|
-
/**
|
792
|
-
*
|
793
|
-
*/
|
794
|
-
public set borderInlineEndColor(borderInlineEndColor: string) {
|
795
|
-
this.setProperty('border-inline-end-color', borderInlineEndColor);
|
796
|
-
}
|
797
|
-
|
798
|
-
/**
|
799
|
-
*
|
800
|
-
*/
|
801
|
-
public get borderInlineEndStyle(): string {
|
802
|
-
return this.getPropertyValue('border-inline-end-style');
|
803
|
-
}
|
804
|
-
/**
|
805
|
-
*
|
806
|
-
*/
|
807
|
-
public set borderInlineEndStyle(borderInlineEndStyle: string) {
|
808
|
-
this.setProperty('border-inline-end-style', borderInlineEndStyle);
|
809
|
-
}
|
810
|
-
|
811
|
-
/**
|
812
|
-
*
|
813
|
-
*/
|
814
|
-
public get borderInlineEndWidth(): string {
|
815
|
-
return this.getPropertyValue('border-inline-end-width');
|
816
|
-
}
|
817
|
-
/**
|
818
|
-
*
|
819
|
-
*/
|
820
|
-
public set borderInlineEndWidth(borderInlineEndWidth: string) {
|
821
|
-
this.setProperty('border-inline-end-width', borderInlineEndWidth);
|
822
|
-
}
|
823
|
-
|
824
|
-
/**
|
825
|
-
*
|
826
|
-
*/
|
827
|
-
public get borderInlineStart(): string {
|
828
|
-
return this.getPropertyValue('border-inline-start');
|
829
|
-
}
|
830
|
-
/**
|
831
|
-
*
|
832
|
-
*/
|
833
|
-
public set borderInlineStart(borderInlineStart: string) {
|
834
|
-
this.setProperty('border-inline-start', borderInlineStart);
|
835
|
-
}
|
836
|
-
|
837
|
-
/**
|
838
|
-
*
|
839
|
-
*/
|
840
|
-
public get borderInlineStartColor(): string {
|
841
|
-
return this.getPropertyValue('border-inline-start-color');
|
842
|
-
}
|
843
|
-
/**
|
844
|
-
*
|
845
|
-
*/
|
846
|
-
public set borderInlineStartColor(borderInlineStartColor: string) {
|
847
|
-
this.setProperty('border-inline-start-color', borderInlineStartColor);
|
848
|
-
}
|
849
|
-
|
850
|
-
/**
|
851
|
-
*
|
852
|
-
*/
|
853
|
-
public get borderInlineStartStyle(): string {
|
854
|
-
return this.getPropertyValue('border-inline-start-style');
|
855
|
-
}
|
856
|
-
/**
|
857
|
-
*
|
858
|
-
*/
|
859
|
-
public set borderInlineStartStyle(borderInlineStartStyle: string) {
|
860
|
-
this.setProperty('border-inline-start-style', borderInlineStartStyle);
|
861
|
-
}
|
862
|
-
|
863
|
-
/**
|
864
|
-
*
|
865
|
-
*/
|
866
|
-
public get borderInlineStartWidth(): string {
|
867
|
-
return this.getPropertyValue('border-inline-start-width');
|
868
|
-
}
|
869
|
-
/**
|
870
|
-
*
|
871
|
-
*/
|
872
|
-
public set borderInlineStartWidth(borderInlineStartWidth: string) {
|
873
|
-
this.setProperty('border-inline-start-width', borderInlineStartWidth);
|
874
|
-
}
|
875
|
-
|
876
|
-
/**
|
877
|
-
*
|
878
|
-
*/
|
879
|
-
public get borderLeft(): string {
|
880
|
-
return this.getPropertyValue('border-left');
|
881
|
-
}
|
882
|
-
/**
|
883
|
-
*
|
884
|
-
*/
|
885
|
-
public set borderLeft(borderLeft: string) {
|
886
|
-
this.setProperty('border-left', borderLeft);
|
887
|
-
}
|
888
|
-
|
889
|
-
/**
|
890
|
-
*
|
891
|
-
*/
|
892
|
-
public get borderLeftColor(): string {
|
893
|
-
return this.getPropertyValue('border-left-color');
|
894
|
-
}
|
895
|
-
/**
|
896
|
-
*
|
897
|
-
*/
|
898
|
-
public set borderLeftColor(borderLeftColor: string) {
|
899
|
-
this.setProperty('border-left-color', borderLeftColor);
|
900
|
-
}
|
901
|
-
|
902
|
-
/**
|
903
|
-
*
|
904
|
-
*/
|
905
|
-
public get borderLeftStyle(): string {
|
906
|
-
return this.getPropertyValue('border-left-style');
|
907
|
-
}
|
908
|
-
/**
|
909
|
-
*
|
910
|
-
*/
|
911
|
-
public set borderLeftStyle(borderLeftStyle: string) {
|
912
|
-
this.setProperty('border-left-style', borderLeftStyle);
|
913
|
-
}
|
914
|
-
|
915
|
-
/**
|
916
|
-
*
|
917
|
-
*/
|
918
|
-
public get borderLeftWidth(): string {
|
919
|
-
return this.getPropertyValue('border-left-width');
|
920
|
-
}
|
921
|
-
/**
|
922
|
-
*
|
923
|
-
*/
|
924
|
-
public set borderLeftWidth(borderLeftWidth: string) {
|
925
|
-
this.setProperty('border-left-width', borderLeftWidth);
|
926
|
-
}
|
927
|
-
|
928
|
-
/**
|
929
|
-
*
|
930
|
-
*/
|
931
|
-
public get borderRadius(): string {
|
932
|
-
return this.getPropertyValue('border-radius');
|
933
|
-
}
|
934
|
-
/**
|
935
|
-
*
|
936
|
-
*/
|
937
|
-
public set borderRadius(borderRadius: string) {
|
938
|
-
this.setProperty('border-radius', borderRadius);
|
939
|
-
}
|
940
|
-
|
941
|
-
/**
|
942
|
-
*
|
943
|
-
*/
|
944
|
-
public get borderRight(): string {
|
945
|
-
return this.getPropertyValue('border-right');
|
946
|
-
}
|
947
|
-
/**
|
948
|
-
*
|
949
|
-
*/
|
950
|
-
public set borderRight(borderRight: string) {
|
951
|
-
this.setProperty('border-right', borderRight);
|
952
|
-
}
|
953
|
-
|
954
|
-
/**
|
955
|
-
*
|
956
|
-
*/
|
957
|
-
public get borderRightColor(): string {
|
958
|
-
return this.getPropertyValue('border-right-color');
|
959
|
-
}
|
960
|
-
/**
|
961
|
-
*
|
962
|
-
*/
|
963
|
-
public set borderRightColor(borderRightColor: string) {
|
964
|
-
this.setProperty('border-right-color', borderRightColor);
|
965
|
-
}
|
966
|
-
|
967
|
-
/**
|
968
|
-
*
|
969
|
-
*/
|
970
|
-
public get borderRightStyle(): string {
|
971
|
-
return this.getPropertyValue('border-right-style');
|
972
|
-
}
|
973
|
-
/**
|
974
|
-
*
|
975
|
-
*/
|
976
|
-
public set borderRightStyle(borderRightStyle: string) {
|
977
|
-
this.setProperty('border-right-style', borderRightStyle);
|
978
|
-
}
|
979
|
-
|
980
|
-
/**
|
981
|
-
*
|
982
|
-
*/
|
983
|
-
public get borderRightWidth(): string {
|
984
|
-
return this.getPropertyValue('border-right-width');
|
985
|
-
}
|
986
|
-
/**
|
987
|
-
*
|
988
|
-
*/
|
989
|
-
public set borderRightWidth(borderRightWidth: string) {
|
990
|
-
this.setProperty('border-right-width', borderRightWidth);
|
991
|
-
}
|
992
|
-
|
993
|
-
/**
|
994
|
-
*
|
995
|
-
*/
|
996
|
-
public get borderSpacing(): string {
|
997
|
-
return this.getPropertyValue('border-spacing');
|
998
|
-
}
|
999
|
-
/**
|
1000
|
-
*
|
1001
|
-
*/
|
1002
|
-
public set borderSpacing(borderSpacing: string) {
|
1003
|
-
this.setProperty('border-spacing', borderSpacing);
|
1004
|
-
}
|
1005
|
-
|
1006
|
-
/**
|
1007
|
-
*
|
1008
|
-
*/
|
1009
|
-
public get borderStyle(): string {
|
1010
|
-
return this.getPropertyValue('border-style');
|
1011
|
-
}
|
1012
|
-
/**
|
1013
|
-
*
|
1014
|
-
*/
|
1015
|
-
public set borderStyle(borderStyle: string) {
|
1016
|
-
this.setProperty('border-style', borderStyle);
|
1017
|
-
}
|
1018
|
-
|
1019
|
-
/**
|
1020
|
-
*
|
1021
|
-
*/
|
1022
|
-
public get borderTop(): string {
|
1023
|
-
return this.getPropertyValue('border-top');
|
1024
|
-
}
|
1025
|
-
/**
|
1026
|
-
*
|
1027
|
-
*/
|
1028
|
-
public set borderTop(borderTop: string) {
|
1029
|
-
this.setProperty('border-top', borderTop);
|
1030
|
-
}
|
1031
|
-
|
1032
|
-
/**
|
1033
|
-
*
|
1034
|
-
*/
|
1035
|
-
public get borderTopColor(): string {
|
1036
|
-
return this.getPropertyValue('border-top-color');
|
1037
|
-
}
|
1038
|
-
/**
|
1039
|
-
*
|
1040
|
-
*/
|
1041
|
-
public set borderTopColor(borderTopColor: string) {
|
1042
|
-
this.setProperty('border-top-color', borderTopColor);
|
1043
|
-
}
|
1044
|
-
|
1045
|
-
/**
|
1046
|
-
*
|
1047
|
-
*/
|
1048
|
-
public get borderTopLeftRadius(): string {
|
1049
|
-
return this.getPropertyValue('border-top-left-radius');
|
1050
|
-
}
|
1051
|
-
/**
|
1052
|
-
*
|
1053
|
-
*/
|
1054
|
-
public set borderTopLeftRadius(borderTopLeftRadius: string) {
|
1055
|
-
this.setProperty('border-top-left-radius', borderTopLeftRadius);
|
1056
|
-
}
|
1057
|
-
|
1058
|
-
/**
|
1059
|
-
*
|
1060
|
-
*/
|
1061
|
-
public get borderTopRightRadius(): string {
|
1062
|
-
return this.getPropertyValue('border-top-right-radius');
|
1063
|
-
}
|
1064
|
-
/**
|
1065
|
-
*
|
1066
|
-
*/
|
1067
|
-
public set borderTopRightRadius(borderTopRightRadius: string) {
|
1068
|
-
this.setProperty('border-top-right-radius', borderTopRightRadius);
|
1069
|
-
}
|
1070
|
-
|
1071
|
-
/**
|
1072
|
-
*
|
1073
|
-
*/
|
1074
|
-
public get borderTopStyle(): string {
|
1075
|
-
return this.getPropertyValue('border-top-style');
|
1076
|
-
}
|
1077
|
-
/**
|
1078
|
-
*
|
1079
|
-
*/
|
1080
|
-
public set borderTopStyle(borderTopStyle: string) {
|
1081
|
-
this.setProperty('border-top-style', borderTopStyle);
|
1082
|
-
}
|
1083
|
-
|
1084
|
-
/**
|
1085
|
-
*
|
1086
|
-
*/
|
1087
|
-
public get borderTopWidth(): string {
|
1088
|
-
return this.getPropertyValue('border-top-width');
|
1089
|
-
}
|
1090
|
-
/**
|
1091
|
-
*
|
1092
|
-
*/
|
1093
|
-
public set borderTopWidth(borderTopWidth: string) {
|
1094
|
-
this.setProperty('border-top-width', borderTopWidth);
|
1095
|
-
}
|
1096
|
-
|
1097
|
-
/**
|
1098
|
-
*
|
1099
|
-
*/
|
1100
|
-
public get borderWidth(): string {
|
1101
|
-
return this.getPropertyValue('border-width');
|
1102
|
-
}
|
1103
|
-
/**
|
1104
|
-
*
|
1105
|
-
*/
|
1106
|
-
public set borderWidth(borderWidth: string) {
|
1107
|
-
this.setProperty('border-width', borderWidth);
|
1108
|
-
}
|
1109
|
-
|
1110
|
-
/**
|
1111
|
-
*
|
1112
|
-
*/
|
1113
|
-
public get bottom(): string {
|
1114
|
-
return this.getPropertyValue('bottom');
|
1115
|
-
}
|
1116
|
-
/**
|
1117
|
-
*
|
1118
|
-
*/
|
1119
|
-
public set bottom(bottom: string) {
|
1120
|
-
this.setProperty('bottom', bottom);
|
1121
|
-
}
|
1122
|
-
|
1123
|
-
/**
|
1124
|
-
*
|
1125
|
-
*/
|
1126
|
-
public get boxShadow(): string {
|
1127
|
-
return this.getPropertyValue('box-shadow');
|
1128
|
-
}
|
1129
|
-
/**
|
1130
|
-
*
|
1131
|
-
*/
|
1132
|
-
public set boxShadow(boxShadow: string) {
|
1133
|
-
this.setProperty('box-shadow', boxShadow);
|
1134
|
-
}
|
1135
|
-
|
1136
|
-
/**
|
1137
|
-
*
|
1138
|
-
*/
|
1139
|
-
public get boxSizing(): string {
|
1140
|
-
return this.getPropertyValue('box-sizing');
|
1141
|
-
}
|
1142
|
-
/**
|
1143
|
-
*
|
1144
|
-
*/
|
1145
|
-
public set boxSizing(boxSizing: string) {
|
1146
|
-
this.setProperty('box-sizing', boxSizing);
|
1147
|
-
}
|
1148
|
-
|
1149
|
-
/**
|
1150
|
-
*
|
1151
|
-
*/
|
1152
|
-
public get breakAfter(): string {
|
1153
|
-
return this.getPropertyValue('break-after');
|
1154
|
-
}
|
1155
|
-
/**
|
1156
|
-
*
|
1157
|
-
*/
|
1158
|
-
public set breakAfter(breakAfter: string) {
|
1159
|
-
this.setProperty('break-after', breakAfter);
|
1160
|
-
}
|
1161
|
-
|
1162
|
-
/**
|
1163
|
-
*
|
1164
|
-
*/
|
1165
|
-
public get breakBefore(): string {
|
1166
|
-
return this.getPropertyValue('break-before');
|
1167
|
-
}
|
1168
|
-
/**
|
1169
|
-
*
|
1170
|
-
*/
|
1171
|
-
public set breakBefore(breakBefore: string) {
|
1172
|
-
this.setProperty('break-before', breakBefore);
|
1173
|
-
}
|
1174
|
-
|
1175
|
-
/**
|
1176
|
-
*
|
1177
|
-
*/
|
1178
|
-
public get breakInside(): string {
|
1179
|
-
return this.getPropertyValue('break-inside');
|
1180
|
-
}
|
1181
|
-
/**
|
1182
|
-
*
|
1183
|
-
*/
|
1184
|
-
public set breakInside(breakInside: string) {
|
1185
|
-
this.setProperty('break-inside', breakInside);
|
1186
|
-
}
|
1187
|
-
|
1188
|
-
/**
|
1189
|
-
*
|
1190
|
-
*/
|
1191
|
-
public get bufferedRendering(): string {
|
1192
|
-
return this.getPropertyValue('buffered-rendering');
|
1193
|
-
}
|
1194
|
-
/**
|
1195
|
-
*
|
1196
|
-
*/
|
1197
|
-
public set bufferedRendering(bufferedRendering: string) {
|
1198
|
-
this.setProperty('buffered-rendering', bufferedRendering);
|
1199
|
-
}
|
1200
|
-
|
1201
|
-
/**
|
1202
|
-
*
|
1203
|
-
*/
|
1204
|
-
public get captionSide(): string {
|
1205
|
-
return this.getPropertyValue('caption-side');
|
1206
|
-
}
|
1207
|
-
/**
|
1208
|
-
*
|
1209
|
-
*/
|
1210
|
-
public set captionSide(captionSide: string) {
|
1211
|
-
this.setProperty('caption-side', captionSide);
|
1212
|
-
}
|
1213
|
-
|
1214
|
-
/**
|
1215
|
-
*
|
1216
|
-
*/
|
1217
|
-
public get caretColor(): string {
|
1218
|
-
return this.getPropertyValue('caret-color');
|
1219
|
-
}
|
1220
|
-
/**
|
1221
|
-
*
|
1222
|
-
*/
|
1223
|
-
public set caretColor(caretColor: string) {
|
1224
|
-
this.setProperty('caret-color', caretColor);
|
1225
|
-
}
|
1226
|
-
|
1227
|
-
/**
|
1228
|
-
*
|
1229
|
-
*/
|
1230
|
-
public get clear(): string {
|
1231
|
-
return this.getPropertyValue('clear');
|
1232
|
-
}
|
1233
|
-
/**
|
1234
|
-
*
|
1235
|
-
*/
|
1236
|
-
public set clear(clear: string) {
|
1237
|
-
this.setProperty('clear', clear);
|
1238
|
-
}
|
1239
|
-
|
1240
|
-
/**
|
1241
|
-
*
|
1242
|
-
*/
|
1243
|
-
public get clip(): string {
|
1244
|
-
return this.getPropertyValue('clip');
|
1245
|
-
}
|
1246
|
-
/**
|
1247
|
-
*
|
1248
|
-
*/
|
1249
|
-
public set clip(clip: string) {
|
1250
|
-
this.setProperty('clip', clip);
|
1251
|
-
}
|
1252
|
-
|
1253
|
-
/**
|
1254
|
-
*
|
1255
|
-
*/
|
1256
|
-
public get clipPath(): string {
|
1257
|
-
return this.getPropertyValue('clip-path');
|
1258
|
-
}
|
1259
|
-
/**
|
1260
|
-
*
|
1261
|
-
*/
|
1262
|
-
public set clipPath(clipPath: string) {
|
1263
|
-
this.setProperty('clip-path', clipPath);
|
1264
|
-
}
|
1265
|
-
|
1266
|
-
/**
|
1267
|
-
*
|
1268
|
-
*/
|
1269
|
-
public get clipRule(): string {
|
1270
|
-
return this.getPropertyValue('clip-rule');
|
1271
|
-
}
|
1272
|
-
/**
|
1273
|
-
*
|
1274
|
-
*/
|
1275
|
-
public set clipRule(clipRule: string) {
|
1276
|
-
this.setProperty('clip-rule', clipRule);
|
1277
|
-
}
|
1278
|
-
|
1279
|
-
/**
|
1280
|
-
*
|
1281
|
-
*/
|
1282
|
-
public get color(): string {
|
1283
|
-
return this.getPropertyValue('color');
|
1284
|
-
}
|
1285
|
-
/**
|
1286
|
-
*
|
1287
|
-
*/
|
1288
|
-
public set color(color: string) {
|
1289
|
-
this.setProperty('color', color);
|
1290
|
-
}
|
1291
|
-
|
1292
|
-
/**
|
1293
|
-
*
|
1294
|
-
*/
|
1295
|
-
public get colorInterpolation(): string {
|
1296
|
-
return this.getPropertyValue('color-interpolation');
|
1297
|
-
}
|
1298
|
-
/**
|
1299
|
-
*
|
1300
|
-
*/
|
1301
|
-
public set colorInterpolation(colorInterpolation: string) {
|
1302
|
-
this.setProperty('color-interpolation', colorInterpolation);
|
1303
|
-
}
|
1304
|
-
|
1305
|
-
/**
|
1306
|
-
*
|
1307
|
-
*/
|
1308
|
-
public get colorInterpolationFilters(): string {
|
1309
|
-
return this.getPropertyValue('color-interpolation-filters');
|
1310
|
-
}
|
1311
|
-
/**
|
1312
|
-
*
|
1313
|
-
*/
|
1314
|
-
public set colorInterpolationFilters(colorInterpolationFilters: string) {
|
1315
|
-
this.setProperty('color-interpolation-filters', colorInterpolationFilters);
|
1316
|
-
}
|
1317
|
-
|
1318
|
-
/**
|
1319
|
-
*
|
1320
|
-
*/
|
1321
|
-
public get colorRendering(): string {
|
1322
|
-
return this.getPropertyValue('color-rendering');
|
1323
|
-
}
|
1324
|
-
/**
|
1325
|
-
*
|
1326
|
-
*/
|
1327
|
-
public set colorRendering(colorRendering: string) {
|
1328
|
-
this.setProperty('color-rendering', colorRendering);
|
1329
|
-
}
|
1330
|
-
|
1331
|
-
/**
|
1332
|
-
*
|
1333
|
-
*/
|
1334
|
-
public get colorScheme(): string {
|
1335
|
-
return this.getPropertyValue('color-scheme');
|
1336
|
-
}
|
1337
|
-
/**
|
1338
|
-
*
|
1339
|
-
*/
|
1340
|
-
public set colorScheme(colorScheme: string) {
|
1341
|
-
this.setProperty('color-scheme', colorScheme);
|
1342
|
-
}
|
1343
|
-
|
1344
|
-
/**
|
1345
|
-
*
|
1346
|
-
*/
|
1347
|
-
public get columnCount(): string {
|
1348
|
-
return this.getPropertyValue('column-count');
|
1349
|
-
}
|
1350
|
-
/**
|
1351
|
-
*
|
1352
|
-
*/
|
1353
|
-
public set columnCount(columnCount: string) {
|
1354
|
-
this.setProperty('column-count', columnCount);
|
1355
|
-
}
|
1356
|
-
|
1357
|
-
/**
|
1358
|
-
*
|
1359
|
-
*/
|
1360
|
-
public get columnFill(): string {
|
1361
|
-
return this.getPropertyValue('column-fill');
|
1362
|
-
}
|
1363
|
-
/**
|
1364
|
-
*
|
1365
|
-
*/
|
1366
|
-
public set columnFill(columnFill: string) {
|
1367
|
-
this.setProperty('column-fill', columnFill);
|
1368
|
-
}
|
1369
|
-
|
1370
|
-
/**
|
1371
|
-
*
|
1372
|
-
*/
|
1373
|
-
public get columnGap(): string {
|
1374
|
-
return this.getPropertyValue('column-gap');
|
1375
|
-
}
|
1376
|
-
/**
|
1377
|
-
*
|
1378
|
-
*/
|
1379
|
-
public set columnGap(columnGap: string) {
|
1380
|
-
this.setProperty('column-gap', columnGap);
|
1381
|
-
}
|
1382
|
-
|
1383
|
-
/**
|
1384
|
-
*
|
1385
|
-
*/
|
1386
|
-
public get columnRule(): string {
|
1387
|
-
return this.getPropertyValue('column-rule');
|
1388
|
-
}
|
1389
|
-
/**
|
1390
|
-
*
|
1391
|
-
*/
|
1392
|
-
public set columnRule(columnRule: string) {
|
1393
|
-
this.setProperty('column-rule', columnRule);
|
1394
|
-
}
|
1395
|
-
|
1396
|
-
/**
|
1397
|
-
*
|
1398
|
-
*/
|
1399
|
-
public get columnRuleColor(): string {
|
1400
|
-
return this.getPropertyValue('column-rule-color');
|
1401
|
-
}
|
1402
|
-
/**
|
1403
|
-
*
|
1404
|
-
*/
|
1405
|
-
public set columnRuleColor(columnRuleColor: string) {
|
1406
|
-
this.setProperty('column-rule-color', columnRuleColor);
|
1407
|
-
}
|
1408
|
-
|
1409
|
-
/**
|
1410
|
-
*
|
1411
|
-
*/
|
1412
|
-
public get columnRuleStyle(): string {
|
1413
|
-
return this.getPropertyValue('column-rule-style');
|
1414
|
-
}
|
1415
|
-
/**
|
1416
|
-
*
|
1417
|
-
*/
|
1418
|
-
public set columnRuleStyle(columnRuleStyle: string) {
|
1419
|
-
this.setProperty('column-rule-style', columnRuleStyle);
|
1420
|
-
}
|
1421
|
-
|
1422
|
-
/**
|
1423
|
-
*
|
1424
|
-
*/
|
1425
|
-
public get columnRuleWidth(): string {
|
1426
|
-
return this.getPropertyValue('column-rule-width');
|
1427
|
-
}
|
1428
|
-
/**
|
1429
|
-
*
|
1430
|
-
*/
|
1431
|
-
public set columnRuleWidth(columnRuleWidth: string) {
|
1432
|
-
this.setProperty('column-rule-width', columnRuleWidth);
|
1433
|
-
}
|
1434
|
-
|
1435
|
-
/**
|
1436
|
-
*
|
1437
|
-
*/
|
1438
|
-
public get columnSpan(): string {
|
1439
|
-
return this.getPropertyValue('column-span');
|
1440
|
-
}
|
1441
|
-
/**
|
1442
|
-
*
|
1443
|
-
*/
|
1444
|
-
public set columnSpan(columnSpan: string) {
|
1445
|
-
this.setProperty('column-span', columnSpan);
|
1446
|
-
}
|
1447
|
-
|
1448
|
-
/**
|
1449
|
-
*
|
1450
|
-
*/
|
1451
|
-
public get columnWidth(): string {
|
1452
|
-
return this.getPropertyValue('column-width');
|
1453
|
-
}
|
1454
|
-
/**
|
1455
|
-
*
|
1456
|
-
*/
|
1457
|
-
public set columnWidth(columnWidth: string) {
|
1458
|
-
this.setProperty('column-width', columnWidth);
|
1459
|
-
}
|
1460
|
-
|
1461
|
-
/**
|
1462
|
-
*
|
1463
|
-
*/
|
1464
|
-
public get columns(): string {
|
1465
|
-
return this.getPropertyValue('columns');
|
1466
|
-
}
|
1467
|
-
/**
|
1468
|
-
*
|
1469
|
-
*/
|
1470
|
-
public set columns(columns: string) {
|
1471
|
-
this.setProperty('columns', columns);
|
1472
|
-
}
|
1473
|
-
|
1474
|
-
/**
|
1475
|
-
*
|
1476
|
-
*/
|
1477
|
-
public get contain(): string {
|
1478
|
-
return this.getPropertyValue('contain');
|
1479
|
-
}
|
1480
|
-
/**
|
1481
|
-
*
|
1482
|
-
*/
|
1483
|
-
public set contain(contain: string) {
|
1484
|
-
this.setProperty('contain', contain);
|
1485
|
-
}
|
1486
|
-
|
1487
|
-
/**
|
1488
|
-
*
|
1489
|
-
*/
|
1490
|
-
public get containIntrinsicSize(): string {
|
1491
|
-
return this.getPropertyValue('contain-intrinsic-size');
|
1492
|
-
}
|
1493
|
-
/**
|
1494
|
-
*
|
1495
|
-
*/
|
1496
|
-
public set containIntrinsicSize(containIntrinsicSize: string) {
|
1497
|
-
this.setProperty('contain-intrinsic-size', containIntrinsicSize);
|
1498
|
-
}
|
1499
|
-
|
1500
|
-
/**
|
1501
|
-
*
|
1502
|
-
*/
|
1503
|
-
public get content(): string {
|
1504
|
-
return this.getPropertyValue('content');
|
1505
|
-
}
|
1506
|
-
/**
|
1507
|
-
*
|
1508
|
-
*/
|
1509
|
-
public set content(content: string) {
|
1510
|
-
this.setProperty('content', content);
|
1511
|
-
}
|
1512
|
-
|
1513
|
-
/**
|
1514
|
-
*
|
1515
|
-
*/
|
1516
|
-
public get contentVisibility(): string {
|
1517
|
-
return this.getPropertyValue('content-visibility');
|
1518
|
-
}
|
1519
|
-
/**
|
1520
|
-
*
|
1521
|
-
*/
|
1522
|
-
public set contentVisibility(contentVisibility: string) {
|
1523
|
-
this.setProperty('content-visibility', contentVisibility);
|
1524
|
-
}
|
1525
|
-
|
1526
|
-
/**
|
1527
|
-
*
|
1528
|
-
*/
|
1529
|
-
public get counterIncrement(): string {
|
1530
|
-
return this.getPropertyValue('counter-increment');
|
1531
|
-
}
|
1532
|
-
/**
|
1533
|
-
*
|
1534
|
-
*/
|
1535
|
-
public set counterIncrement(counterIncrement: string) {
|
1536
|
-
this.setProperty('counter-increment', counterIncrement);
|
1537
|
-
}
|
1538
|
-
|
1539
|
-
/**
|
1540
|
-
*
|
1541
|
-
*/
|
1542
|
-
public get counterReset(): string {
|
1543
|
-
return this.getPropertyValue('counter-reset');
|
1544
|
-
}
|
1545
|
-
/**
|
1546
|
-
*
|
1547
|
-
*/
|
1548
|
-
public set counterReset(counterReset: string) {
|
1549
|
-
this.setProperty('counter-reset', counterReset);
|
1550
|
-
}
|
1551
|
-
|
1552
|
-
/**
|
1553
|
-
*
|
1554
|
-
*/
|
1555
|
-
public get counterSet(): string {
|
1556
|
-
return this.getPropertyValue('counter-set');
|
1557
|
-
}
|
1558
|
-
/**
|
1559
|
-
*
|
1560
|
-
*/
|
1561
|
-
public set counterSet(counterSet: string) {
|
1562
|
-
this.setProperty('counter-set', counterSet);
|
1563
|
-
}
|
1564
|
-
|
1565
|
-
/**
|
1566
|
-
*
|
1567
|
-
*/
|
1568
|
-
public get cssFloat(): string {
|
1569
|
-
return this.getPropertyValue('css-float');
|
1570
|
-
}
|
1571
|
-
/**
|
1572
|
-
*
|
1573
|
-
*/
|
1574
|
-
public set cssFloat(cssFloat: string) {
|
1575
|
-
this.setProperty('css-float', cssFloat);
|
1576
|
-
}
|
1577
|
-
|
1578
|
-
/**
|
1579
|
-
*
|
1580
|
-
*/
|
1581
|
-
public get cursor(): string {
|
1582
|
-
return this.getPropertyValue('cursor');
|
1583
|
-
}
|
1584
|
-
/**
|
1585
|
-
*
|
1586
|
-
*/
|
1587
|
-
public set cursor(cursor: string) {
|
1588
|
-
this.setProperty('cursor', cursor);
|
1589
|
-
}
|
1590
|
-
|
1591
|
-
/**
|
1592
|
-
*
|
1593
|
-
*/
|
1594
|
-
public get cx(): string {
|
1595
|
-
return this.getPropertyValue('cx');
|
1596
|
-
}
|
1597
|
-
/**
|
1598
|
-
*
|
1599
|
-
*/
|
1600
|
-
public set cx(cx: string) {
|
1601
|
-
this.setProperty('cx', cx);
|
1602
|
-
}
|
1603
|
-
|
1604
|
-
/**
|
1605
|
-
*
|
1606
|
-
*/
|
1607
|
-
public get cy(): string {
|
1608
|
-
return this.getPropertyValue('cy');
|
1609
|
-
}
|
1610
|
-
/**
|
1611
|
-
*
|
1612
|
-
*/
|
1613
|
-
public set cy(cy: string) {
|
1614
|
-
this.setProperty('cy', cy);
|
1615
|
-
}
|
1616
|
-
|
1617
|
-
/**
|
1618
|
-
*
|
1619
|
-
*/
|
1620
|
-
public get d(): string {
|
1621
|
-
return this.getPropertyValue('d');
|
1622
|
-
}
|
1623
|
-
/**
|
1624
|
-
*
|
1625
|
-
*/
|
1626
|
-
public set d(d: string) {
|
1627
|
-
this.setProperty('d', d);
|
1628
|
-
}
|
1629
|
-
|
1630
|
-
/**
|
1631
|
-
*
|
1632
|
-
*/
|
1633
|
-
public get direction(): string {
|
1634
|
-
return this.getPropertyValue('direction');
|
1635
|
-
}
|
1636
|
-
/**
|
1637
|
-
*
|
1638
|
-
*/
|
1639
|
-
public set direction(direction: string) {
|
1640
|
-
this.setProperty('direction', direction);
|
1641
|
-
}
|
1642
|
-
|
1643
|
-
/**
|
1644
|
-
*
|
1645
|
-
*/
|
1646
|
-
public get display(): string {
|
1647
|
-
return this.getPropertyValue('display');
|
1648
|
-
}
|
1649
|
-
/**
|
1650
|
-
*
|
1651
|
-
*/
|
1652
|
-
public set display(display: string) {
|
1653
|
-
this.setProperty('display', display);
|
1654
|
-
}
|
1655
|
-
|
1656
|
-
/**
|
1657
|
-
*
|
1658
|
-
*/
|
1659
|
-
public get dominantBaseline(): string {
|
1660
|
-
return this.getPropertyValue('dominant-baseline');
|
1661
|
-
}
|
1662
|
-
/**
|
1663
|
-
*
|
1664
|
-
*/
|
1665
|
-
public set dominantBaseline(dominantBaseline: string) {
|
1666
|
-
this.setProperty('dominant-baseline', dominantBaseline);
|
1667
|
-
}
|
1668
|
-
|
1669
|
-
/**
|
1670
|
-
*
|
1671
|
-
*/
|
1672
|
-
public get emptyCells(): string {
|
1673
|
-
return this.getPropertyValue('empty-cells');
|
1674
|
-
}
|
1675
|
-
/**
|
1676
|
-
*
|
1677
|
-
*/
|
1678
|
-
public set emptyCells(emptyCells: string) {
|
1679
|
-
this.setProperty('empty-cells', emptyCells);
|
1680
|
-
}
|
1681
|
-
|
1682
|
-
/**
|
1683
|
-
*
|
1684
|
-
*/
|
1685
|
-
public get fill(): string {
|
1686
|
-
return this.getPropertyValue('fill');
|
1687
|
-
}
|
1688
|
-
/**
|
1689
|
-
*
|
1690
|
-
*/
|
1691
|
-
public set fill(fill: string) {
|
1692
|
-
this.setProperty('fill', fill);
|
1693
|
-
}
|
1694
|
-
|
1695
|
-
/**
|
1696
|
-
*
|
1697
|
-
*/
|
1698
|
-
public get fillOpacity(): string {
|
1699
|
-
return this.getPropertyValue('fill-opacity');
|
1700
|
-
}
|
1701
|
-
/**
|
1702
|
-
*
|
1703
|
-
*/
|
1704
|
-
public set fillOpacity(fillOpacity: string) {
|
1705
|
-
this.setProperty('fill-opacity', fillOpacity);
|
1706
|
-
}
|
1707
|
-
|
1708
|
-
/**
|
1709
|
-
*
|
1710
|
-
*/
|
1711
|
-
public get fillRule(): string {
|
1712
|
-
return this.getPropertyValue('fill-rule');
|
1713
|
-
}
|
1714
|
-
/**
|
1715
|
-
*
|
1716
|
-
*/
|
1717
|
-
public set fillRule(fillRule: string) {
|
1718
|
-
this.setProperty('fill-rule', fillRule);
|
1719
|
-
}
|
1720
|
-
|
1721
|
-
/**
|
1722
|
-
*
|
1723
|
-
*/
|
1724
|
-
public get filter(): string {
|
1725
|
-
return this.getPropertyValue('filter');
|
1726
|
-
}
|
1727
|
-
/**
|
1728
|
-
*
|
1729
|
-
*/
|
1730
|
-
public set filter(filter: string) {
|
1731
|
-
this.setProperty('filter', filter);
|
1732
|
-
}
|
1733
|
-
|
1734
|
-
/**
|
1735
|
-
*
|
1736
|
-
*/
|
1737
|
-
public get flex(): string {
|
1738
|
-
return this.getPropertyValue('flex');
|
1739
|
-
}
|
1740
|
-
/**
|
1741
|
-
*
|
1742
|
-
*/
|
1743
|
-
public set flex(flex: string) {
|
1744
|
-
this.setProperty('flex', flex);
|
1745
|
-
}
|
1746
|
-
|
1747
|
-
/**
|
1748
|
-
*
|
1749
|
-
*/
|
1750
|
-
public get flexBasis(): string {
|
1751
|
-
return this.getPropertyValue('flex-basis');
|
1752
|
-
}
|
1753
|
-
/**
|
1754
|
-
*
|
1755
|
-
*/
|
1756
|
-
public set flexBasis(flexBasis: string) {
|
1757
|
-
this.setProperty('flex-basis', flexBasis);
|
1758
|
-
}
|
1759
|
-
|
1760
|
-
/**
|
1761
|
-
*
|
1762
|
-
*/
|
1763
|
-
public get flexDirection(): string {
|
1764
|
-
return this.getPropertyValue('flex-direction');
|
1765
|
-
}
|
1766
|
-
/**
|
1767
|
-
*
|
1768
|
-
*/
|
1769
|
-
public set flexDirection(flexDirection: string) {
|
1770
|
-
this.setProperty('flex-direction', flexDirection);
|
1771
|
-
}
|
1772
|
-
|
1773
|
-
/**
|
1774
|
-
*
|
1775
|
-
*/
|
1776
|
-
public get flexFlow(): string {
|
1777
|
-
return this.getPropertyValue('flex-flow');
|
1778
|
-
}
|
1779
|
-
/**
|
1780
|
-
*
|
1781
|
-
*/
|
1782
|
-
public set flexFlow(flexFlow: string) {
|
1783
|
-
this.setProperty('flex-flow', flexFlow);
|
1784
|
-
}
|
1785
|
-
|
1786
|
-
/**
|
1787
|
-
*
|
1788
|
-
*/
|
1789
|
-
public get flexGrow(): string {
|
1790
|
-
return this.getPropertyValue('flex-grow');
|
1791
|
-
}
|
1792
|
-
/**
|
1793
|
-
*
|
1794
|
-
*/
|
1795
|
-
public set flexGrow(flexGrow: string) {
|
1796
|
-
this.setProperty('flex-grow', flexGrow);
|
1797
|
-
}
|
1798
|
-
|
1799
|
-
/**
|
1800
|
-
*
|
1801
|
-
*/
|
1802
|
-
public get flexShrink(): string {
|
1803
|
-
return this.getPropertyValue('flex-shrink');
|
1804
|
-
}
|
1805
|
-
/**
|
1806
|
-
*
|
1807
|
-
*/
|
1808
|
-
public set flexShrink(flexShrink: string) {
|
1809
|
-
this.setProperty('flex-shrink', flexShrink);
|
1810
|
-
}
|
1811
|
-
|
1812
|
-
/**
|
1813
|
-
*
|
1814
|
-
*/
|
1815
|
-
public get flexWrap(): string {
|
1816
|
-
return this.getPropertyValue('flex-wrap');
|
1817
|
-
}
|
1818
|
-
/**
|
1819
|
-
*
|
1820
|
-
*/
|
1821
|
-
public set flexWrap(flexWrap: string) {
|
1822
|
-
this.setProperty('flex-wrap', flexWrap);
|
1823
|
-
}
|
1824
|
-
|
1825
|
-
/**
|
1826
|
-
*
|
1827
|
-
*/
|
1828
|
-
public get float(): string {
|
1829
|
-
return this.getPropertyValue('float');
|
1830
|
-
}
|
1831
|
-
/**
|
1832
|
-
*
|
1833
|
-
*/
|
1834
|
-
public set float(float: string) {
|
1835
|
-
this.setProperty('float', float);
|
1836
|
-
}
|
1837
|
-
|
1838
|
-
/**
|
1839
|
-
*
|
1840
|
-
*/
|
1841
|
-
public get floodColor(): string {
|
1842
|
-
return this.getPropertyValue('flood-color');
|
1843
|
-
}
|
1844
|
-
/**
|
1845
|
-
*
|
1846
|
-
*/
|
1847
|
-
public set floodColor(floodColor: string) {
|
1848
|
-
this.setProperty('flood-color', floodColor);
|
1849
|
-
}
|
1850
|
-
|
1851
|
-
/**
|
1852
|
-
*
|
1853
|
-
*/
|
1854
|
-
public get floodOpacity(): string {
|
1855
|
-
return this.getPropertyValue('flood-opacity');
|
1856
|
-
}
|
1857
|
-
/**
|
1858
|
-
*
|
1859
|
-
*/
|
1860
|
-
public set floodOpacity(floodOpacity: string) {
|
1861
|
-
this.setProperty('flood-opacity', floodOpacity);
|
1862
|
-
}
|
1863
|
-
|
1864
|
-
/**
|
1865
|
-
*
|
1866
|
-
*/
|
1867
|
-
public get font(): string {
|
1868
|
-
return this.getPropertyValue('font');
|
1869
|
-
}
|
1870
|
-
/**
|
1871
|
-
*
|
1872
|
-
*/
|
1873
|
-
public set font(font: string) {
|
1874
|
-
this.setProperty('font', font);
|
1875
|
-
}
|
1876
|
-
|
1877
|
-
/**
|
1878
|
-
*
|
1879
|
-
*/
|
1880
|
-
public get fontDisplay(): string {
|
1881
|
-
return this.getPropertyValue('font-display');
|
1882
|
-
}
|
1883
|
-
/**
|
1884
|
-
*
|
1885
|
-
*/
|
1886
|
-
public set fontDisplay(fontDisplay: string) {
|
1887
|
-
this.setProperty('font-display', fontDisplay);
|
1888
|
-
}
|
1889
|
-
|
1890
|
-
/**
|
1891
|
-
*
|
1892
|
-
*/
|
1893
|
-
public get fontFamily(): string {
|
1894
|
-
return this.getPropertyValue('font-family');
|
1895
|
-
}
|
1896
|
-
/**
|
1897
|
-
*
|
1898
|
-
*/
|
1899
|
-
public set fontFamily(fontFamily: string) {
|
1900
|
-
this.setProperty('font-family', fontFamily);
|
1901
|
-
}
|
1902
|
-
|
1903
|
-
/**
|
1904
|
-
*
|
1905
|
-
*/
|
1906
|
-
public get fontFeatureSettings(): string {
|
1907
|
-
return this.getPropertyValue('font-feature-settings');
|
1908
|
-
}
|
1909
|
-
/**
|
1910
|
-
*
|
1911
|
-
*/
|
1912
|
-
public set fontFeatureSettings(fontFeatureSettings: string) {
|
1913
|
-
this.setProperty('font-feature-settings', fontFeatureSettings);
|
1914
|
-
}
|
1915
|
-
|
1916
|
-
/**
|
1917
|
-
*
|
1918
|
-
*/
|
1919
|
-
public get fontKerning(): string {
|
1920
|
-
return this.getPropertyValue('font-kerning');
|
1921
|
-
}
|
1922
|
-
/**
|
1923
|
-
*
|
1924
|
-
*/
|
1925
|
-
public set fontKerning(fontKerning: string) {
|
1926
|
-
this.setProperty('font-kerning', fontKerning);
|
1927
|
-
}
|
1928
|
-
|
1929
|
-
/**
|
1930
|
-
*
|
1931
|
-
*/
|
1932
|
-
public get fontOpticalSizing(): string {
|
1933
|
-
return this.getPropertyValue('font-optical-sizing');
|
1934
|
-
}
|
1935
|
-
/**
|
1936
|
-
*
|
1937
|
-
*/
|
1938
|
-
public set fontOpticalSizing(fontOpticalSizing: string) {
|
1939
|
-
this.setProperty('font-optical-sizing', fontOpticalSizing);
|
1940
|
-
}
|
1941
|
-
|
1942
|
-
/**
|
1943
|
-
*
|
1944
|
-
*/
|
1945
|
-
public get fontSize(): string {
|
1946
|
-
return this.getPropertyValue('font-size');
|
1947
|
-
}
|
1948
|
-
/**
|
1949
|
-
*
|
1950
|
-
*/
|
1951
|
-
public set fontSize(fontSize: string) {
|
1952
|
-
this.setProperty('font-size', fontSize);
|
1953
|
-
}
|
1954
|
-
|
1955
|
-
/**
|
1956
|
-
*
|
1957
|
-
*/
|
1958
|
-
public get fontStretch(): string {
|
1959
|
-
return this.getPropertyValue('font-stretch');
|
1960
|
-
}
|
1961
|
-
/**
|
1962
|
-
*
|
1963
|
-
*/
|
1964
|
-
public set fontStretch(fontStretch: string) {
|
1965
|
-
this.setProperty('font-stretch', fontStretch);
|
1966
|
-
}
|
1967
|
-
|
1968
|
-
/**
|
1969
|
-
*
|
1970
|
-
*/
|
1971
|
-
public get fontStyle(): string {
|
1972
|
-
return this.getPropertyValue('font-style');
|
1973
|
-
}
|
1974
|
-
/**
|
1975
|
-
*
|
1976
|
-
*/
|
1977
|
-
public set fontStyle(fontStyle: string) {
|
1978
|
-
this.setProperty('font-style', fontStyle);
|
1979
|
-
}
|
1980
|
-
|
1981
|
-
/**
|
1982
|
-
*
|
1983
|
-
*/
|
1984
|
-
public get fontVariant(): string {
|
1985
|
-
return this.getPropertyValue('font-variant');
|
1986
|
-
}
|
1987
|
-
/**
|
1988
|
-
*
|
1989
|
-
*/
|
1990
|
-
public set fontVariant(fontVariant: string) {
|
1991
|
-
this.setProperty('font-variant', fontVariant);
|
1992
|
-
}
|
1993
|
-
|
1994
|
-
/**
|
1995
|
-
*
|
1996
|
-
*/
|
1997
|
-
public get fontVariantCaps(): string {
|
1998
|
-
return this.getPropertyValue('font-variant-caps');
|
1999
|
-
}
|
2000
|
-
/**
|
2001
|
-
*
|
2002
|
-
*/
|
2003
|
-
public set fontVariantCaps(fontVariantCaps: string) {
|
2004
|
-
this.setProperty('font-variant-caps', fontVariantCaps);
|
2005
|
-
}
|
2006
|
-
|
2007
|
-
/**
|
2008
|
-
*
|
2009
|
-
*/
|
2010
|
-
public get fontVariantEastAsian(): string {
|
2011
|
-
return this.getPropertyValue('font-variant-east-asian');
|
2012
|
-
}
|
2013
|
-
/**
|
2014
|
-
*
|
2015
|
-
*/
|
2016
|
-
public set fontVariantEastAsian(fontVariantEastAsian: string) {
|
2017
|
-
this.setProperty('font-variant-east-asian', fontVariantEastAsian);
|
2018
|
-
}
|
2019
|
-
|
2020
|
-
/**
|
2021
|
-
*
|
2022
|
-
*/
|
2023
|
-
public get fontVariantLigatures(): string {
|
2024
|
-
return this.getPropertyValue('font-variant-ligatures');
|
2025
|
-
}
|
2026
|
-
/**
|
2027
|
-
*
|
2028
|
-
*/
|
2029
|
-
public set fontVariantLigatures(fontVariantLigatures: string) {
|
2030
|
-
this.setProperty('font-variant-ligatures', fontVariantLigatures);
|
2031
|
-
}
|
2032
|
-
|
2033
|
-
/**
|
2034
|
-
*
|
2035
|
-
*/
|
2036
|
-
public get fontVariantNumeric(): string {
|
2037
|
-
return this.getPropertyValue('font-variant-numeric');
|
2038
|
-
}
|
2039
|
-
/**
|
2040
|
-
*
|
2041
|
-
*/
|
2042
|
-
public set fontVariantNumeric(fontVariantNumeric: string) {
|
2043
|
-
this.setProperty('font-variant-numeric', fontVariantNumeric);
|
2044
|
-
}
|
2045
|
-
|
2046
|
-
/**
|
2047
|
-
*
|
2048
|
-
*/
|
2049
|
-
public get fontVariationSettings(): string {
|
2050
|
-
return this.getPropertyValue('font-variation-settings');
|
2051
|
-
}
|
2052
|
-
/**
|
2053
|
-
*
|
2054
|
-
*/
|
2055
|
-
public set fontVariationSettings(fontVariationSettings: string) {
|
2056
|
-
this.setProperty('font-variation-settings', fontVariationSettings);
|
2057
|
-
}
|
2058
|
-
|
2059
|
-
/**
|
2060
|
-
*
|
2061
|
-
*/
|
2062
|
-
public get fontWeight(): string {
|
2063
|
-
return this.getPropertyValue('font-weight');
|
2064
|
-
}
|
2065
|
-
/**
|
2066
|
-
*
|
2067
|
-
*/
|
2068
|
-
public set fontWeight(fontWeight: string) {
|
2069
|
-
this.setProperty('font-weight', fontWeight);
|
2070
|
-
}
|
2071
|
-
|
2072
|
-
/**
|
2073
|
-
*
|
2074
|
-
*/
|
2075
|
-
public get gap(): string {
|
2076
|
-
return this.getPropertyValue('gap');
|
2077
|
-
}
|
2078
|
-
/**
|
2079
|
-
*
|
2080
|
-
*/
|
2081
|
-
public set gap(gap: string) {
|
2082
|
-
this.setProperty('gap', gap);
|
2083
|
-
}
|
2084
|
-
|
2085
|
-
/**
|
2086
|
-
*
|
2087
|
-
*/
|
2088
|
-
public get grid(): string {
|
2089
|
-
return this.getPropertyValue('grid');
|
2090
|
-
}
|
2091
|
-
/**
|
2092
|
-
*
|
2093
|
-
*/
|
2094
|
-
public set grid(grid: string) {
|
2095
|
-
this.setProperty('grid', grid);
|
2096
|
-
}
|
2097
|
-
|
2098
|
-
/**
|
2099
|
-
*
|
2100
|
-
*/
|
2101
|
-
public get gridArea(): string {
|
2102
|
-
return this.getPropertyValue('grid-area');
|
2103
|
-
}
|
2104
|
-
/**
|
2105
|
-
*
|
2106
|
-
*/
|
2107
|
-
public set gridArea(gridArea: string) {
|
2108
|
-
this.setProperty('grid-area', gridArea);
|
2109
|
-
}
|
2110
|
-
|
2111
|
-
/**
|
2112
|
-
*
|
2113
|
-
*/
|
2114
|
-
public get gridAutoColumns(): string {
|
2115
|
-
return this.getPropertyValue('grid-auto-columns');
|
2116
|
-
}
|
2117
|
-
/**
|
2118
|
-
*
|
2119
|
-
*/
|
2120
|
-
public set gridAutoColumns(gridAutoColumns: string) {
|
2121
|
-
this.setProperty('grid-auto-columns', gridAutoColumns);
|
2122
|
-
}
|
2123
|
-
|
2124
|
-
/**
|
2125
|
-
*
|
2126
|
-
*/
|
2127
|
-
public get gridAutoFlow(): string {
|
2128
|
-
return this.getPropertyValue('grid-auto-flow');
|
2129
|
-
}
|
2130
|
-
/**
|
2131
|
-
*
|
2132
|
-
*/
|
2133
|
-
public set gridAutoFlow(gridAutoFlow: string) {
|
2134
|
-
this.setProperty('grid-auto-flow', gridAutoFlow);
|
2135
|
-
}
|
2136
|
-
|
2137
|
-
/**
|
2138
|
-
*
|
2139
|
-
*/
|
2140
|
-
public get gridAutoRows(): string {
|
2141
|
-
return this.getPropertyValue('grid-auto-rows');
|
2142
|
-
}
|
2143
|
-
/**
|
2144
|
-
*
|
2145
|
-
*/
|
2146
|
-
public set gridAutoRows(gridAutoRows: string) {
|
2147
|
-
this.setProperty('grid-auto-rows', gridAutoRows);
|
2148
|
-
}
|
2149
|
-
|
2150
|
-
/**
|
2151
|
-
*
|
2152
|
-
*/
|
2153
|
-
public get gridColumn(): string {
|
2154
|
-
return this.getPropertyValue('grid-column');
|
2155
|
-
}
|
2156
|
-
/**
|
2157
|
-
*
|
2158
|
-
*/
|
2159
|
-
public set gridColumn(gridColumn: string) {
|
2160
|
-
this.setProperty('grid-column', gridColumn);
|
2161
|
-
}
|
2162
|
-
|
2163
|
-
/**
|
2164
|
-
*
|
2165
|
-
*/
|
2166
|
-
public get gridColumnEnd(): string {
|
2167
|
-
return this.getPropertyValue('grid-column-end');
|
2168
|
-
}
|
2169
|
-
/**
|
2170
|
-
*
|
2171
|
-
*/
|
2172
|
-
public set gridColumnEnd(gridColumnEnd: string) {
|
2173
|
-
this.setProperty('grid-column-end', gridColumnEnd);
|
2174
|
-
}
|
2175
|
-
|
2176
|
-
/**
|
2177
|
-
*
|
2178
|
-
*/
|
2179
|
-
public get gridColumnGap(): string {
|
2180
|
-
return this.getPropertyValue('grid-column-gap');
|
2181
|
-
}
|
2182
|
-
/**
|
2183
|
-
*
|
2184
|
-
*/
|
2185
|
-
public set gridColumnGap(gridColumnGap: string) {
|
2186
|
-
this.setProperty('grid-column-gap', gridColumnGap);
|
2187
|
-
}
|
2188
|
-
|
2189
|
-
/**
|
2190
|
-
*
|
2191
|
-
*/
|
2192
|
-
public get gridColumnStart(): string {
|
2193
|
-
return this.getPropertyValue('grid-column-start');
|
2194
|
-
}
|
2195
|
-
/**
|
2196
|
-
*
|
2197
|
-
*/
|
2198
|
-
public set gridColumnStart(gridColumnStart: string) {
|
2199
|
-
this.setProperty('grid-column-start', gridColumnStart);
|
2200
|
-
}
|
2201
|
-
|
2202
|
-
/**
|
2203
|
-
*
|
2204
|
-
*/
|
2205
|
-
public get gridGap(): string {
|
2206
|
-
return this.getPropertyValue('grid-gap');
|
2207
|
-
}
|
2208
|
-
/**
|
2209
|
-
*
|
2210
|
-
*/
|
2211
|
-
public set gridGap(gridGap: string) {
|
2212
|
-
this.setProperty('grid-gap', gridGap);
|
2213
|
-
}
|
2214
|
-
|
2215
|
-
/**
|
2216
|
-
*
|
2217
|
-
*/
|
2218
|
-
public get gridRow(): string {
|
2219
|
-
return this.getPropertyValue('grid-row');
|
2220
|
-
}
|
2221
|
-
/**
|
2222
|
-
*
|
2223
|
-
*/
|
2224
|
-
public set gridRow(gridRow: string) {
|
2225
|
-
this.setProperty('grid-row', gridRow);
|
2226
|
-
}
|
2227
|
-
|
2228
|
-
/**
|
2229
|
-
*
|
2230
|
-
*/
|
2231
|
-
public get gridRowEnd(): string {
|
2232
|
-
return this.getPropertyValue('grid-row-end');
|
2233
|
-
}
|
2234
|
-
/**
|
2235
|
-
*
|
2236
|
-
*/
|
2237
|
-
public set gridRowEnd(gridRowEnd: string) {
|
2238
|
-
this.setProperty('grid-row-end', gridRowEnd);
|
2239
|
-
}
|
2240
|
-
|
2241
|
-
/**
|
2242
|
-
*
|
2243
|
-
*/
|
2244
|
-
public get gridRowGap(): string {
|
2245
|
-
return this.getPropertyValue('grid-row-gap');
|
2246
|
-
}
|
2247
|
-
/**
|
2248
|
-
*
|
2249
|
-
*/
|
2250
|
-
public set gridRowGap(gridRowGap: string) {
|
2251
|
-
this.setProperty('grid-row-gap', gridRowGap);
|
2252
|
-
}
|
2253
|
-
|
2254
|
-
/**
|
2255
|
-
*
|
2256
|
-
*/
|
2257
|
-
public get gridRowStart(): string {
|
2258
|
-
return this.getPropertyValue('grid-row-start');
|
2259
|
-
}
|
2260
|
-
/**
|
2261
|
-
*
|
2262
|
-
*/
|
2263
|
-
public set gridRowStart(gridRowStart: string) {
|
2264
|
-
this.setProperty('grid-row-start', gridRowStart);
|
2265
|
-
}
|
2266
|
-
|
2267
|
-
/**
|
2268
|
-
*
|
2269
|
-
*/
|
2270
|
-
public get gridTemplate(): string {
|
2271
|
-
return this.getPropertyValue('grid-template');
|
2272
|
-
}
|
2273
|
-
/**
|
2274
|
-
*
|
2275
|
-
*/
|
2276
|
-
public set gridTemplate(gridTemplate: string) {
|
2277
|
-
this.setProperty('grid-template', gridTemplate);
|
2278
|
-
}
|
2279
|
-
|
2280
|
-
/**
|
2281
|
-
*
|
2282
|
-
*/
|
2283
|
-
public get gridTemplateAreas(): string {
|
2284
|
-
return this.getPropertyValue('grid-template-areas');
|
2285
|
-
}
|
2286
|
-
/**
|
2287
|
-
*
|
2288
|
-
*/
|
2289
|
-
public set gridTemplateAreas(gridTemplateAreas: string) {
|
2290
|
-
this.setProperty('grid-template-areas', gridTemplateAreas);
|
2291
|
-
}
|
2292
|
-
|
2293
|
-
/**
|
2294
|
-
*
|
2295
|
-
*/
|
2296
|
-
public get gridTemplateColumns(): string {
|
2297
|
-
return this.getPropertyValue('grid-template-columns');
|
2298
|
-
}
|
2299
|
-
/**
|
2300
|
-
*
|
2301
|
-
*/
|
2302
|
-
public set gridTemplateColumns(gridTemplateColumns: string) {
|
2303
|
-
this.setProperty('grid-template-columns', gridTemplateColumns);
|
2304
|
-
}
|
2305
|
-
|
2306
|
-
/**
|
2307
|
-
*
|
2308
|
-
*/
|
2309
|
-
public get gridTemplateRows(): string {
|
2310
|
-
return this.getPropertyValue('grid-template-rows');
|
2311
|
-
}
|
2312
|
-
/**
|
2313
|
-
*
|
2314
|
-
*/
|
2315
|
-
public set gridTemplateRows(gridTemplateRows: string) {
|
2316
|
-
this.setProperty('grid-template-rows', gridTemplateRows);
|
2317
|
-
}
|
2318
|
-
|
2319
|
-
/**
|
2320
|
-
*
|
2321
|
-
*/
|
2322
|
-
public get height(): string {
|
2323
|
-
return this.getPropertyValue('height');
|
2324
|
-
}
|
2325
|
-
/**
|
2326
|
-
*
|
2327
|
-
*/
|
2328
|
-
public set height(height: string) {
|
2329
|
-
this.setProperty('height', height);
|
2330
|
-
}
|
2331
|
-
|
2332
|
-
/**
|
2333
|
-
*
|
2334
|
-
*/
|
2335
|
-
public get hyphens(): string {
|
2336
|
-
return this.getPropertyValue('hyphens');
|
2337
|
-
}
|
2338
|
-
/**
|
2339
|
-
*
|
2340
|
-
*/
|
2341
|
-
public set hyphens(hyphens: string) {
|
2342
|
-
this.setProperty('hyphens', hyphens);
|
2343
|
-
}
|
2344
|
-
|
2345
|
-
/**
|
2346
|
-
*
|
2347
|
-
*/
|
2348
|
-
public get imageOrientation(): string {
|
2349
|
-
return this.getPropertyValue('image-orientation');
|
2350
|
-
}
|
2351
|
-
/**
|
2352
|
-
*
|
2353
|
-
*/
|
2354
|
-
public set imageOrientation(imageOrientation: string) {
|
2355
|
-
this.setProperty('image-orientation', imageOrientation);
|
2356
|
-
}
|
2357
|
-
|
2358
|
-
/**
|
2359
|
-
*
|
2360
|
-
*/
|
2361
|
-
public get imageRendering(): string {
|
2362
|
-
return this.getPropertyValue('image-rendering');
|
2363
|
-
}
|
2364
|
-
/**
|
2365
|
-
*
|
2366
|
-
*/
|
2367
|
-
public set imageRendering(imageRendering: string) {
|
2368
|
-
this.setProperty('image-rendering', imageRendering);
|
2369
|
-
}
|
2370
|
-
|
2371
|
-
/**
|
2372
|
-
*
|
2373
|
-
*/
|
2374
|
-
public get inherits(): string {
|
2375
|
-
return this.getPropertyValue('inherits');
|
2376
|
-
}
|
2377
|
-
/**
|
2378
|
-
*
|
2379
|
-
*/
|
2380
|
-
public set inherits(inherits: string) {
|
2381
|
-
this.setProperty('inherits', inherits);
|
2382
|
-
}
|
2383
|
-
|
2384
|
-
/**
|
2385
|
-
*
|
2386
|
-
*/
|
2387
|
-
public get initialValue(): string {
|
2388
|
-
return this.getPropertyValue('initial-value');
|
2389
|
-
}
|
2390
|
-
/**
|
2391
|
-
*
|
2392
|
-
*/
|
2393
|
-
public set initialValue(initialValue: string) {
|
2394
|
-
this.setProperty('initial-value', initialValue);
|
2395
|
-
}
|
2396
|
-
|
2397
|
-
/**
|
2398
|
-
*
|
2399
|
-
*/
|
2400
|
-
public get inlineSize(): string {
|
2401
|
-
return this.getPropertyValue('inline-size');
|
2402
|
-
}
|
2403
|
-
/**
|
2404
|
-
*
|
2405
|
-
*/
|
2406
|
-
public set inlineSize(inlineSize: string) {
|
2407
|
-
this.setProperty('inline-size', inlineSize);
|
2408
|
-
}
|
2409
|
-
|
2410
|
-
/**
|
2411
|
-
*
|
2412
|
-
*/
|
2413
|
-
public get isolation(): string {
|
2414
|
-
return this.getPropertyValue('isolation');
|
2415
|
-
}
|
2416
|
-
/**
|
2417
|
-
*
|
2418
|
-
*/
|
2419
|
-
public set isolation(isolation: string) {
|
2420
|
-
this.setProperty('isolation', isolation);
|
2421
|
-
}
|
2422
|
-
|
2423
|
-
/**
|
2424
|
-
*
|
2425
|
-
*/
|
2426
|
-
public get justifyContent(): string {
|
2427
|
-
return this.getPropertyValue('justify-content');
|
2428
|
-
}
|
2429
|
-
/**
|
2430
|
-
*
|
2431
|
-
*/
|
2432
|
-
public set justifyContent(justifyContent: string) {
|
2433
|
-
this.setProperty('justify-content', justifyContent);
|
2434
|
-
}
|
2435
|
-
|
2436
|
-
/**
|
2437
|
-
*
|
2438
|
-
*/
|
2439
|
-
public get justifyItems(): string {
|
2440
|
-
return this.getPropertyValue('justify-items');
|
2441
|
-
}
|
2442
|
-
/**
|
2443
|
-
*
|
2444
|
-
*/
|
2445
|
-
public set justifyItems(justifyItems: string) {
|
2446
|
-
this.setProperty('justify-items', justifyItems);
|
2447
|
-
}
|
2448
|
-
|
2449
|
-
/**
|
2450
|
-
*
|
2451
|
-
*/
|
2452
|
-
public get justifySelf(): string {
|
2453
|
-
return this.getPropertyValue('justify-self');
|
2454
|
-
}
|
2455
|
-
/**
|
2456
|
-
*
|
2457
|
-
*/
|
2458
|
-
public set justifySelf(justifySelf: string) {
|
2459
|
-
this.setProperty('justify-self', justifySelf);
|
2460
|
-
}
|
2461
|
-
|
2462
|
-
/**
|
2463
|
-
*
|
2464
|
-
*/
|
2465
|
-
public get left(): string {
|
2466
|
-
return this.getPropertyValue('left');
|
2467
|
-
}
|
2468
|
-
/**
|
2469
|
-
*
|
2470
|
-
*/
|
2471
|
-
public set left(left: string) {
|
2472
|
-
this.setProperty('left', left);
|
2473
|
-
}
|
2474
|
-
|
2475
|
-
/**
|
2476
|
-
*
|
2477
|
-
*/
|
2478
|
-
public get letterSpacing(): string {
|
2479
|
-
return this.getPropertyValue('letter-spacing');
|
2480
|
-
}
|
2481
|
-
/**
|
2482
|
-
*
|
2483
|
-
*/
|
2484
|
-
public set letterSpacing(letterSpacing: string) {
|
2485
|
-
this.setProperty('letter-spacing', letterSpacing);
|
2486
|
-
}
|
2487
|
-
|
2488
|
-
/**
|
2489
|
-
*
|
2490
|
-
*/
|
2491
|
-
public get lightingColor(): string {
|
2492
|
-
return this.getPropertyValue('lighting-color');
|
2493
|
-
}
|
2494
|
-
/**
|
2495
|
-
*
|
2496
|
-
*/
|
2497
|
-
public set lightingColor(lightingColor: string) {
|
2498
|
-
this.setProperty('lighting-color', lightingColor);
|
2499
|
-
}
|
2500
|
-
|
2501
|
-
/**
|
2502
|
-
*
|
2503
|
-
*/
|
2504
|
-
public get lineBreak(): string {
|
2505
|
-
return this.getPropertyValue('line-break');
|
2506
|
-
}
|
2507
|
-
/**
|
2508
|
-
*
|
2509
|
-
*/
|
2510
|
-
public set lineBreak(lineBreak: string) {
|
2511
|
-
this.setProperty('line-break', lineBreak);
|
2512
|
-
}
|
2513
|
-
|
2514
|
-
/**
|
2515
|
-
*
|
2516
|
-
*/
|
2517
|
-
public get lineHeight(): string {
|
2518
|
-
return this.getPropertyValue('line-height');
|
2519
|
-
}
|
2520
|
-
/**
|
2521
|
-
*
|
2522
|
-
*/
|
2523
|
-
public set lineHeight(lineHeight: string) {
|
2524
|
-
this.setProperty('line-height', lineHeight);
|
2525
|
-
}
|
2526
|
-
|
2527
|
-
/**
|
2528
|
-
*
|
2529
|
-
*/
|
2530
|
-
public get listStyle(): string {
|
2531
|
-
return this.getPropertyValue('list-style');
|
2532
|
-
}
|
2533
|
-
/**
|
2534
|
-
*
|
2535
|
-
*/
|
2536
|
-
public set listStyle(listStyle: string) {
|
2537
|
-
this.setProperty('list-style', listStyle);
|
2538
|
-
}
|
2539
|
-
|
2540
|
-
/**
|
2541
|
-
*
|
2542
|
-
*/
|
2543
|
-
public get listStyleImage(): string {
|
2544
|
-
return this.getPropertyValue('list-style-image');
|
2545
|
-
}
|
2546
|
-
/**
|
2547
|
-
*
|
2548
|
-
*/
|
2549
|
-
public set listStyleImage(listStyleImage: string) {
|
2550
|
-
this.setProperty('list-style-image', listStyleImage);
|
2551
|
-
}
|
2552
|
-
|
2553
|
-
/**
|
2554
|
-
*
|
2555
|
-
*/
|
2556
|
-
public get listStylePosition(): string {
|
2557
|
-
return this.getPropertyValue('list-style-position');
|
2558
|
-
}
|
2559
|
-
/**
|
2560
|
-
*
|
2561
|
-
*/
|
2562
|
-
public set listStylePosition(listStylePosition: string) {
|
2563
|
-
this.setProperty('list-style-position', listStylePosition);
|
2564
|
-
}
|
2565
|
-
|
2566
|
-
/**
|
2567
|
-
*
|
2568
|
-
*/
|
2569
|
-
public get listStyleType(): string {
|
2570
|
-
return this.getPropertyValue('list-style-type');
|
2571
|
-
}
|
2572
|
-
/**
|
2573
|
-
*
|
2574
|
-
*/
|
2575
|
-
public set listStyleType(listStyleType: string) {
|
2576
|
-
this.setProperty('list-style-type', listStyleType);
|
2577
|
-
}
|
2578
|
-
|
2579
|
-
/**
|
2580
|
-
*
|
2581
|
-
*/
|
2582
|
-
public get margin(): string {
|
2583
|
-
return this.getPropertyValue('margin');
|
2584
|
-
}
|
2585
|
-
/**
|
2586
|
-
*
|
2587
|
-
*/
|
2588
|
-
public set margin(margin: string) {
|
2589
|
-
this.setProperty('margin', margin);
|
2590
|
-
}
|
2591
|
-
|
2592
|
-
/**
|
2593
|
-
*
|
2594
|
-
*/
|
2595
|
-
public get marginBlockEnd(): string {
|
2596
|
-
return this.getPropertyValue('margin-block-end');
|
2597
|
-
}
|
2598
|
-
/**
|
2599
|
-
*
|
2600
|
-
*/
|
2601
|
-
public set marginBlockEnd(marginBlockEnd: string) {
|
2602
|
-
this.setProperty('margin-block-end', marginBlockEnd);
|
2603
|
-
}
|
2604
|
-
|
2605
|
-
/**
|
2606
|
-
*
|
2607
|
-
*/
|
2608
|
-
public get marginBlockStart(): string {
|
2609
|
-
return this.getPropertyValue('margin-block-start');
|
2610
|
-
}
|
2611
|
-
/**
|
2612
|
-
*
|
2613
|
-
*/
|
2614
|
-
public set marginBlockStart(marginBlockStart: string) {
|
2615
|
-
this.setProperty('margin-block-start', marginBlockStart);
|
2616
|
-
}
|
2617
|
-
|
2618
|
-
/**
|
2619
|
-
*
|
2620
|
-
*/
|
2621
|
-
public get marginBottom(): string {
|
2622
|
-
return this.getPropertyValue('margin-bottom');
|
2623
|
-
}
|
2624
|
-
/**
|
2625
|
-
*
|
2626
|
-
*/
|
2627
|
-
public set marginBottom(marginBottom: string) {
|
2628
|
-
this.setProperty('margin-bottom', marginBottom);
|
2629
|
-
}
|
2630
|
-
|
2631
|
-
/**
|
2632
|
-
*
|
2633
|
-
*/
|
2634
|
-
public get marginInlineEnd(): string {
|
2635
|
-
return this.getPropertyValue('margin-inline-end');
|
2636
|
-
}
|
2637
|
-
/**
|
2638
|
-
*
|
2639
|
-
*/
|
2640
|
-
public set marginInlineEnd(marginInlineEnd: string) {
|
2641
|
-
this.setProperty('margin-inline-end', marginInlineEnd);
|
2642
|
-
}
|
2643
|
-
|
2644
|
-
/**
|
2645
|
-
*
|
2646
|
-
*/
|
2647
|
-
public get marginInlineStart(): string {
|
2648
|
-
return this.getPropertyValue('margin-inline-start');
|
2649
|
-
}
|
2650
|
-
/**
|
2651
|
-
*
|
2652
|
-
*/
|
2653
|
-
public set marginInlineStart(marginInlineStart: string) {
|
2654
|
-
this.setProperty('margin-inline-start', marginInlineStart);
|
2655
|
-
}
|
2656
|
-
|
2657
|
-
/**
|
2658
|
-
*
|
2659
|
-
*/
|
2660
|
-
public get marginLeft(): string {
|
2661
|
-
return this.getPropertyValue('margin-left');
|
2662
|
-
}
|
2663
|
-
/**
|
2664
|
-
*
|
2665
|
-
*/
|
2666
|
-
public set marginLeft(marginLeft: string) {
|
2667
|
-
this.setProperty('margin-left', marginLeft);
|
2668
|
-
}
|
2669
|
-
|
2670
|
-
/**
|
2671
|
-
*
|
2672
|
-
*/
|
2673
|
-
public get marginRight(): string {
|
2674
|
-
return this.getPropertyValue('margin-right');
|
2675
|
-
}
|
2676
|
-
/**
|
2677
|
-
*
|
2678
|
-
*/
|
2679
|
-
public set marginRight(marginRight: string) {
|
2680
|
-
this.setProperty('margin-right', marginRight);
|
2681
|
-
}
|
2682
|
-
|
2683
|
-
/**
|
2684
|
-
*
|
2685
|
-
*/
|
2686
|
-
public get marginTop(): string {
|
2687
|
-
return this.getPropertyValue('margin-top');
|
2688
|
-
}
|
2689
|
-
/**
|
2690
|
-
*
|
2691
|
-
*/
|
2692
|
-
public set marginTop(marginTop: string) {
|
2693
|
-
this.setProperty('margin-top', marginTop);
|
2694
|
-
}
|
2695
|
-
|
2696
|
-
/**
|
2697
|
-
*
|
2698
|
-
*/
|
2699
|
-
public get marker(): string {
|
2700
|
-
return this.getPropertyValue('marker');
|
2701
|
-
}
|
2702
|
-
/**
|
2703
|
-
*
|
2704
|
-
*/
|
2705
|
-
public set marker(marker: string) {
|
2706
|
-
this.setProperty('marker', marker);
|
2707
|
-
}
|
2708
|
-
|
2709
|
-
/**
|
2710
|
-
*
|
2711
|
-
*/
|
2712
|
-
public get markerEnd(): string {
|
2713
|
-
return this.getPropertyValue('marker-end');
|
2714
|
-
}
|
2715
|
-
/**
|
2716
|
-
*
|
2717
|
-
*/
|
2718
|
-
public set markerEnd(markerEnd: string) {
|
2719
|
-
this.setProperty('marker-end', markerEnd);
|
2720
|
-
}
|
2721
|
-
|
2722
|
-
/**
|
2723
|
-
*
|
2724
|
-
*/
|
2725
|
-
public get markerMid(): string {
|
2726
|
-
return this.getPropertyValue('marker-mid');
|
2727
|
-
}
|
2728
|
-
/**
|
2729
|
-
*
|
2730
|
-
*/
|
2731
|
-
public set markerMid(markerMid: string) {
|
2732
|
-
this.setProperty('marker-mid', markerMid);
|
2733
|
-
}
|
2734
|
-
|
2735
|
-
/**
|
2736
|
-
*
|
2737
|
-
*/
|
2738
|
-
public get markerStart(): string {
|
2739
|
-
return this.getPropertyValue('marker-start');
|
2740
|
-
}
|
2741
|
-
/**
|
2742
|
-
*
|
2743
|
-
*/
|
2744
|
-
public set markerStart(markerStart: string) {
|
2745
|
-
this.setProperty('marker-start', markerStart);
|
2746
|
-
}
|
2747
|
-
|
2748
|
-
/**
|
2749
|
-
*
|
2750
|
-
*/
|
2751
|
-
public get mask(): string {
|
2752
|
-
return this.getPropertyValue('mask');
|
2753
|
-
}
|
2754
|
-
/**
|
2755
|
-
*
|
2756
|
-
*/
|
2757
|
-
public set mask(mask: string) {
|
2758
|
-
this.setProperty('mask', mask);
|
2759
|
-
}
|
2760
|
-
|
2761
|
-
/**
|
2762
|
-
*
|
2763
|
-
*/
|
2764
|
-
public get maskType(): string {
|
2765
|
-
return this.getPropertyValue('mask-type');
|
2766
|
-
}
|
2767
|
-
/**
|
2768
|
-
*
|
2769
|
-
*/
|
2770
|
-
public set maskType(maskType: string) {
|
2771
|
-
this.setProperty('mask-type', maskType);
|
2772
|
-
}
|
2773
|
-
|
2774
|
-
/**
|
2775
|
-
*
|
2776
|
-
*/
|
2777
|
-
public get maxBlockSize(): string {
|
2778
|
-
return this.getPropertyValue('max-block-size');
|
2779
|
-
}
|
2780
|
-
/**
|
2781
|
-
*
|
2782
|
-
*/
|
2783
|
-
public set maxBlockSize(maxBlockSize: string) {
|
2784
|
-
this.setProperty('max-block-size', maxBlockSize);
|
2785
|
-
}
|
2786
|
-
|
2787
|
-
/**
|
2788
|
-
*
|
2789
|
-
*/
|
2790
|
-
public get maxHeight(): string {
|
2791
|
-
return this.getPropertyValue('max-height');
|
2792
|
-
}
|
2793
|
-
/**
|
2794
|
-
*
|
2795
|
-
*/
|
2796
|
-
public set maxHeight(maxHeight: string) {
|
2797
|
-
this.setProperty('max-height', maxHeight);
|
2798
|
-
}
|
2799
|
-
|
2800
|
-
/**
|
2801
|
-
*
|
2802
|
-
*/
|
2803
|
-
public get maxInlineSize(): string {
|
2804
|
-
return this.getPropertyValue('max-inline-size');
|
2805
|
-
}
|
2806
|
-
/**
|
2807
|
-
*
|
2808
|
-
*/
|
2809
|
-
public set maxInlineSize(maxInlineSize: string) {
|
2810
|
-
this.setProperty('max-inline-size', maxInlineSize);
|
2811
|
-
}
|
2812
|
-
|
2813
|
-
/**
|
2814
|
-
*
|
2815
|
-
*/
|
2816
|
-
public get maxWidth(): string {
|
2817
|
-
return this.getPropertyValue('max-width');
|
2818
|
-
}
|
2819
|
-
/**
|
2820
|
-
*
|
2821
|
-
*/
|
2822
|
-
public set maxWidth(maxWidth: string) {
|
2823
|
-
this.setProperty('max-width', maxWidth);
|
2824
|
-
}
|
2825
|
-
|
2826
|
-
/**
|
2827
|
-
*
|
2828
|
-
*/
|
2829
|
-
public get maxZoom(): string {
|
2830
|
-
return this.getPropertyValue('max-zoom');
|
2831
|
-
}
|
2832
|
-
/**
|
2833
|
-
*
|
2834
|
-
*/
|
2835
|
-
public set maxZoom(maxZoom: string) {
|
2836
|
-
this.setProperty('max-zoom', maxZoom);
|
2837
|
-
}
|
2838
|
-
|
2839
|
-
/**
|
2840
|
-
*
|
2841
|
-
*/
|
2842
|
-
public get minBlockSize(): string {
|
2843
|
-
return this.getPropertyValue('min-block-size');
|
2844
|
-
}
|
2845
|
-
/**
|
2846
|
-
*
|
2847
|
-
*/
|
2848
|
-
public set minBlockSize(minBlockSize: string) {
|
2849
|
-
this.setProperty('min-block-size', minBlockSize);
|
2850
|
-
}
|
2851
|
-
|
2852
|
-
/**
|
2853
|
-
*
|
2854
|
-
*/
|
2855
|
-
public get minHeight(): string {
|
2856
|
-
return this.getPropertyValue('min-height');
|
2857
|
-
}
|
2858
|
-
/**
|
2859
|
-
*
|
2860
|
-
*/
|
2861
|
-
public set minHeight(minHeight: string) {
|
2862
|
-
this.setProperty('min-height', minHeight);
|
2863
|
-
}
|
2864
|
-
|
2865
|
-
/**
|
2866
|
-
*
|
2867
|
-
*/
|
2868
|
-
public get minInlineSize(): string {
|
2869
|
-
return this.getPropertyValue('min-inline-size');
|
2870
|
-
}
|
2871
|
-
/**
|
2872
|
-
*
|
2873
|
-
*/
|
2874
|
-
public set minInlineSize(minInlineSize: string) {
|
2875
|
-
this.setProperty('min-inline-size', minInlineSize);
|
2876
|
-
}
|
2877
|
-
|
2878
|
-
/**
|
2879
|
-
*
|
2880
|
-
*/
|
2881
|
-
public get minWidth(): string {
|
2882
|
-
return this.getPropertyValue('min-width');
|
2883
|
-
}
|
2884
|
-
/**
|
2885
|
-
*
|
2886
|
-
*/
|
2887
|
-
public set minWidth(minWidth: string) {
|
2888
|
-
this.setProperty('min-width', minWidth);
|
2889
|
-
}
|
2890
|
-
|
2891
|
-
/**
|
2892
|
-
*
|
2893
|
-
*/
|
2894
|
-
public get minZoom(): string {
|
2895
|
-
return this.getPropertyValue('min-zoom');
|
2896
|
-
}
|
2897
|
-
/**
|
2898
|
-
*
|
2899
|
-
*/
|
2900
|
-
public set minZoom(minZoom: string) {
|
2901
|
-
this.setProperty('min-zoom', minZoom);
|
2902
|
-
}
|
2903
|
-
|
2904
|
-
/**
|
2905
|
-
*
|
2906
|
-
*/
|
2907
|
-
public get mixBlendMode(): string {
|
2908
|
-
return this.getPropertyValue('mix-blend-mode');
|
2909
|
-
}
|
2910
|
-
/**
|
2911
|
-
*
|
2912
|
-
*/
|
2913
|
-
public set mixBlendMode(mixBlendMode: string) {
|
2914
|
-
this.setProperty('mix-blend-mode', mixBlendMode);
|
2915
|
-
}
|
2916
|
-
|
2917
|
-
/**
|
2918
|
-
*
|
2919
|
-
*/
|
2920
|
-
public get objectFit(): string {
|
2921
|
-
return this.getPropertyValue('object-fit');
|
2922
|
-
}
|
2923
|
-
/**
|
2924
|
-
*
|
2925
|
-
*/
|
2926
|
-
public set objectFit(objectFit: string) {
|
2927
|
-
this.setProperty('object-fit', objectFit);
|
2928
|
-
}
|
2929
|
-
|
2930
|
-
/**
|
2931
|
-
*
|
2932
|
-
*/
|
2933
|
-
public get objectPosition(): string {
|
2934
|
-
return this.getPropertyValue('object-position');
|
2935
|
-
}
|
2936
|
-
/**
|
2937
|
-
*
|
2938
|
-
*/
|
2939
|
-
public set objectPosition(objectPosition: string) {
|
2940
|
-
this.setProperty('object-position', objectPosition);
|
2941
|
-
}
|
2942
|
-
|
2943
|
-
/**
|
2944
|
-
*
|
2945
|
-
*/
|
2946
|
-
public get offset(): string {
|
2947
|
-
return this.getPropertyValue('offset');
|
2948
|
-
}
|
2949
|
-
/**
|
2950
|
-
*
|
2951
|
-
*/
|
2952
|
-
public set offset(offset: string) {
|
2953
|
-
this.setProperty('offset', offset);
|
2954
|
-
}
|
2955
|
-
|
2956
|
-
/**
|
2957
|
-
*
|
2958
|
-
*/
|
2959
|
-
public get offsetDistance(): string {
|
2960
|
-
return this.getPropertyValue('offset-distance');
|
2961
|
-
}
|
2962
|
-
/**
|
2963
|
-
*
|
2964
|
-
*/
|
2965
|
-
public set offsetDistance(offsetDistance: string) {
|
2966
|
-
this.setProperty('offset-distance', offsetDistance);
|
2967
|
-
}
|
2968
|
-
|
2969
|
-
/**
|
2970
|
-
*
|
2971
|
-
*/
|
2972
|
-
public get offsetPath(): string {
|
2973
|
-
return this.getPropertyValue('offset-path');
|
2974
|
-
}
|
2975
|
-
/**
|
2976
|
-
*
|
2977
|
-
*/
|
2978
|
-
public set offsetPath(offsetPath: string) {
|
2979
|
-
this.setProperty('offset-path', offsetPath);
|
2980
|
-
}
|
2981
|
-
|
2982
|
-
/**
|
2983
|
-
*
|
2984
|
-
*/
|
2985
|
-
public get offsetRotate(): string {
|
2986
|
-
return this.getPropertyValue('offset-rotate');
|
2987
|
-
}
|
2988
|
-
/**
|
2989
|
-
*
|
2990
|
-
*/
|
2991
|
-
public set offsetRotate(offsetRotate: string) {
|
2992
|
-
this.setProperty('offset-rotate', offsetRotate);
|
2993
|
-
}
|
2994
|
-
|
2995
|
-
/**
|
2996
|
-
*
|
2997
|
-
*/
|
2998
|
-
public get opacity(): string {
|
2999
|
-
return this.getPropertyValue('opacity');
|
3000
|
-
}
|
3001
|
-
/**
|
3002
|
-
*
|
3003
|
-
*/
|
3004
|
-
public set opacity(opacity: string) {
|
3005
|
-
this.setProperty('opacity', opacity);
|
3006
|
-
}
|
3007
|
-
|
3008
|
-
/**
|
3009
|
-
*
|
3010
|
-
*/
|
3011
|
-
public get order(): string {
|
3012
|
-
return this.getPropertyValue('order');
|
3013
|
-
}
|
3014
|
-
/**
|
3015
|
-
*
|
3016
|
-
*/
|
3017
|
-
public set order(order: string) {
|
3018
|
-
this.setProperty('order', order);
|
3019
|
-
}
|
3020
|
-
|
3021
|
-
/**
|
3022
|
-
*
|
3023
|
-
*/
|
3024
|
-
public get orientation(): string {
|
3025
|
-
return this.getPropertyValue('orientation');
|
3026
|
-
}
|
3027
|
-
/**
|
3028
|
-
*
|
3029
|
-
*/
|
3030
|
-
public set orientation(orientation: string) {
|
3031
|
-
this.setProperty('orientation', orientation);
|
3032
|
-
}
|
3033
|
-
|
3034
|
-
/**
|
3035
|
-
*
|
3036
|
-
*/
|
3037
|
-
public get orphans(): string {
|
3038
|
-
return this.getPropertyValue('orphans');
|
3039
|
-
}
|
3040
|
-
/**
|
3041
|
-
*
|
3042
|
-
*/
|
3043
|
-
public set orphans(orphans: string) {
|
3044
|
-
this.setProperty('orphans', orphans);
|
3045
|
-
}
|
3046
|
-
|
3047
|
-
/**
|
3048
|
-
*
|
3049
|
-
*/
|
3050
|
-
public get outline(): string {
|
3051
|
-
return this.getPropertyValue('outline');
|
3052
|
-
}
|
3053
|
-
/**
|
3054
|
-
*
|
3055
|
-
*/
|
3056
|
-
public set outline(outline: string) {
|
3057
|
-
this.setProperty('outline', outline);
|
3058
|
-
}
|
3059
|
-
|
3060
|
-
/**
|
3061
|
-
*
|
3062
|
-
*/
|
3063
|
-
public get outlineColor(): string {
|
3064
|
-
return this.getPropertyValue('outline-color');
|
3065
|
-
}
|
3066
|
-
/**
|
3067
|
-
*
|
3068
|
-
*/
|
3069
|
-
public set outlineColor(outlineColor: string) {
|
3070
|
-
this.setProperty('outline-color', outlineColor);
|
3071
|
-
}
|
3072
|
-
|
3073
|
-
/**
|
3074
|
-
*
|
3075
|
-
*/
|
3076
|
-
public get outlineOffset(): string {
|
3077
|
-
return this.getPropertyValue('outline-offset');
|
3078
|
-
}
|
3079
|
-
/**
|
3080
|
-
*
|
3081
|
-
*/
|
3082
|
-
public set outlineOffset(outlineOffset: string) {
|
3083
|
-
this.setProperty('outline-offset', outlineOffset);
|
3084
|
-
}
|
3085
|
-
|
3086
|
-
/**
|
3087
|
-
*
|
3088
|
-
*/
|
3089
|
-
public get outlineStyle(): string {
|
3090
|
-
return this.getPropertyValue('outline-style');
|
3091
|
-
}
|
3092
|
-
/**
|
3093
|
-
*
|
3094
|
-
*/
|
3095
|
-
public set outlineStyle(outlineStyle: string) {
|
3096
|
-
this.setProperty('outline-style', outlineStyle);
|
3097
|
-
}
|
3098
|
-
|
3099
|
-
/**
|
3100
|
-
*
|
3101
|
-
*/
|
3102
|
-
public get outlineWidth(): string {
|
3103
|
-
return this.getPropertyValue('outline-width');
|
3104
|
-
}
|
3105
|
-
/**
|
3106
|
-
*
|
3107
|
-
*/
|
3108
|
-
public set outlineWidth(outlineWidth: string) {
|
3109
|
-
this.setProperty('outline-width', outlineWidth);
|
3110
|
-
}
|
3111
|
-
|
3112
|
-
/**
|
3113
|
-
*
|
3114
|
-
*/
|
3115
|
-
public get overflow(): string {
|
3116
|
-
return this.getPropertyValue('overflow');
|
3117
|
-
}
|
3118
|
-
/**
|
3119
|
-
*
|
3120
|
-
*/
|
3121
|
-
public set overflow(overflow: string) {
|
3122
|
-
this.setProperty('overflow', overflow);
|
3123
|
-
}
|
3124
|
-
|
3125
|
-
/**
|
3126
|
-
*
|
3127
|
-
*/
|
3128
|
-
public get overflowAnchor(): string {
|
3129
|
-
return this.getPropertyValue('overflow-anchor');
|
3130
|
-
}
|
3131
|
-
/**
|
3132
|
-
*
|
3133
|
-
*/
|
3134
|
-
public set overflowAnchor(overflowAnchor: string) {
|
3135
|
-
this.setProperty('overflow-anchor', overflowAnchor);
|
3136
|
-
}
|
3137
|
-
|
3138
|
-
/**
|
3139
|
-
*
|
3140
|
-
*/
|
3141
|
-
public get overflowWrap(): string {
|
3142
|
-
return this.getPropertyValue('overflow-wrap');
|
3143
|
-
}
|
3144
|
-
/**
|
3145
|
-
*
|
3146
|
-
*/
|
3147
|
-
public set overflowWrap(overflowWrap: string) {
|
3148
|
-
this.setProperty('overflow-wrap', overflowWrap);
|
3149
|
-
}
|
3150
|
-
|
3151
|
-
/**
|
3152
|
-
*
|
3153
|
-
*/
|
3154
|
-
public get overflowX(): string {
|
3155
|
-
return this.getPropertyValue('overflow-x');
|
3156
|
-
}
|
3157
|
-
/**
|
3158
|
-
*
|
3159
|
-
*/
|
3160
|
-
public set overflowX(overflowX: string) {
|
3161
|
-
this.setProperty('overflow-x', overflowX);
|
3162
|
-
}
|
3163
|
-
|
3164
|
-
/**
|
3165
|
-
*
|
3166
|
-
*/
|
3167
|
-
public get overflowY(): string {
|
3168
|
-
return this.getPropertyValue('overflow-y');
|
3169
|
-
}
|
3170
|
-
/**
|
3171
|
-
*
|
3172
|
-
*/
|
3173
|
-
public set overflowY(overflowY: string) {
|
3174
|
-
this.setProperty('overflow-y', overflowY);
|
3175
|
-
}
|
3176
|
-
|
3177
|
-
/**
|
3178
|
-
*
|
3179
|
-
*/
|
3180
|
-
public get overscrollBehavior(): string {
|
3181
|
-
return this.getPropertyValue('overscroll-behavior');
|
3182
|
-
}
|
3183
|
-
/**
|
3184
|
-
*
|
3185
|
-
*/
|
3186
|
-
public set overscrollBehavior(overscrollBehavior: string) {
|
3187
|
-
this.setProperty('overscroll-behavior', overscrollBehavior);
|
3188
|
-
}
|
3189
|
-
|
3190
|
-
/**
|
3191
|
-
*
|
3192
|
-
*/
|
3193
|
-
public get overscrollBehaviorBlock(): string {
|
3194
|
-
return this.getPropertyValue('overscroll-behavior-block');
|
3195
|
-
}
|
3196
|
-
/**
|
3197
|
-
*
|
3198
|
-
*/
|
3199
|
-
public set overscrollBehaviorBlock(overscrollBehaviorBlock: string) {
|
3200
|
-
this.setProperty('overscroll-behavior-block', overscrollBehaviorBlock);
|
3201
|
-
}
|
3202
|
-
|
3203
|
-
/**
|
3204
|
-
*
|
3205
|
-
*/
|
3206
|
-
public get overscrollBehaviorInline(): string {
|
3207
|
-
return this.getPropertyValue('overscroll-behavior-inline');
|
3208
|
-
}
|
3209
|
-
/**
|
3210
|
-
*
|
3211
|
-
*/
|
3212
|
-
public set overscrollBehaviorInline(overscrollBehaviorInline: string) {
|
3213
|
-
this.setProperty('overscroll-behavior-inline', overscrollBehaviorInline);
|
3214
|
-
}
|
3215
|
-
|
3216
|
-
/**
|
3217
|
-
*
|
3218
|
-
*/
|
3219
|
-
public get overscrollBehaviorX(): string {
|
3220
|
-
return this.getPropertyValue('overscroll-behavior-x');
|
3221
|
-
}
|
3222
|
-
/**
|
3223
|
-
*
|
3224
|
-
*/
|
3225
|
-
public set overscrollBehaviorX(overscrollBehaviorX: string) {
|
3226
|
-
this.setProperty('overscroll-behavior-x', overscrollBehaviorX);
|
3227
|
-
}
|
3228
|
-
|
3229
|
-
/**
|
3230
|
-
*
|
3231
|
-
*/
|
3232
|
-
public get overscrollBehaviorY(): string {
|
3233
|
-
return this.getPropertyValue('overscroll-behavior-y');
|
3234
|
-
}
|
3235
|
-
/**
|
3236
|
-
*
|
3237
|
-
*/
|
3238
|
-
public set overscrollBehaviorY(overscrollBehaviorY: string) {
|
3239
|
-
this.setProperty('overscroll-behavior-y', overscrollBehaviorY);
|
3240
|
-
}
|
3241
|
-
|
3242
|
-
/**
|
3243
|
-
*
|
3244
|
-
*/
|
3245
|
-
public get padding(): string {
|
3246
|
-
return this.getPropertyValue('padding');
|
3247
|
-
}
|
3248
|
-
/**
|
3249
|
-
*
|
3250
|
-
*/
|
3251
|
-
public set padding(padding: string) {
|
3252
|
-
this.setProperty('padding', padding);
|
3253
|
-
}
|
3254
|
-
|
3255
|
-
/**
|
3256
|
-
*
|
3257
|
-
*/
|
3258
|
-
public get paddingBlockEnd(): string {
|
3259
|
-
return this.getPropertyValue('padding-block-end');
|
3260
|
-
}
|
3261
|
-
/**
|
3262
|
-
*
|
3263
|
-
*/
|
3264
|
-
public set paddingBlockEnd(paddingBlockEnd: string) {
|
3265
|
-
this.setProperty('padding-block-end', paddingBlockEnd);
|
3266
|
-
}
|
3267
|
-
|
3268
|
-
/**
|
3269
|
-
*
|
3270
|
-
*/
|
3271
|
-
public get paddingBlockStart(): string {
|
3272
|
-
return this.getPropertyValue('padding-block-start');
|
3273
|
-
}
|
3274
|
-
/**
|
3275
|
-
*
|
3276
|
-
*/
|
3277
|
-
public set paddingBlockStart(paddingBlockStart: string) {
|
3278
|
-
this.setProperty('padding-block-start', paddingBlockStart);
|
3279
|
-
}
|
3280
|
-
|
3281
|
-
/**
|
3282
|
-
*
|
3283
|
-
*/
|
3284
|
-
public get paddingBottom(): string {
|
3285
|
-
return this.getPropertyValue('padding-bottom');
|
3286
|
-
}
|
3287
|
-
/**
|
3288
|
-
*
|
3289
|
-
*/
|
3290
|
-
public set paddingBottom(paddingBottom: string) {
|
3291
|
-
this.setProperty('padding-bottom', paddingBottom);
|
3292
|
-
}
|
3293
|
-
|
3294
|
-
/**
|
3295
|
-
*
|
3296
|
-
*/
|
3297
|
-
public get paddingInlineEnd(): string {
|
3298
|
-
return this.getPropertyValue('padding-inline-end');
|
3299
|
-
}
|
3300
|
-
/**
|
3301
|
-
*
|
3302
|
-
*/
|
3303
|
-
public set paddingInlineEnd(paddingInlineEnd: string) {
|
3304
|
-
this.setProperty('padding-inline-end', paddingInlineEnd);
|
3305
|
-
}
|
3306
|
-
|
3307
|
-
/**
|
3308
|
-
*
|
3309
|
-
*/
|
3310
|
-
public get paddingInlineStart(): string {
|
3311
|
-
return this.getPropertyValue('padding-inline-start');
|
3312
|
-
}
|
3313
|
-
/**
|
3314
|
-
*
|
3315
|
-
*/
|
3316
|
-
public set paddingInlineStart(paddingInlineStart: string) {
|
3317
|
-
this.setProperty('padding-inline-start', paddingInlineStart);
|
3318
|
-
}
|
3319
|
-
|
3320
|
-
/**
|
3321
|
-
*
|
3322
|
-
*/
|
3323
|
-
public get paddingLeft(): string {
|
3324
|
-
return this.getPropertyValue('padding-left');
|
3325
|
-
}
|
3326
|
-
/**
|
3327
|
-
*
|
3328
|
-
*/
|
3329
|
-
public set paddingLeft(paddingLeft: string) {
|
3330
|
-
this.setProperty('padding-left', paddingLeft);
|
3331
|
-
}
|
3332
|
-
|
3333
|
-
/**
|
3334
|
-
*
|
3335
|
-
*/
|
3336
|
-
public get paddingRight(): string {
|
3337
|
-
return this.getPropertyValue('padding-right');
|
3338
|
-
}
|
3339
|
-
/**
|
3340
|
-
*
|
3341
|
-
*/
|
3342
|
-
public set paddingRight(paddingRight: string) {
|
3343
|
-
this.setProperty('padding-right', paddingRight);
|
3344
|
-
}
|
3345
|
-
|
3346
|
-
/**
|
3347
|
-
*
|
3348
|
-
*/
|
3349
|
-
public get paddingTop(): string {
|
3350
|
-
return this.getPropertyValue('padding-top');
|
3351
|
-
}
|
3352
|
-
/**
|
3353
|
-
*
|
3354
|
-
*/
|
3355
|
-
public set paddingTop(paddingTop: string) {
|
3356
|
-
this.setProperty('padding-top', paddingTop);
|
3357
|
-
}
|
3358
|
-
|
3359
|
-
/**
|
3360
|
-
*
|
3361
|
-
*/
|
3362
|
-
public get page(): string {
|
3363
|
-
return this.getPropertyValue('page');
|
3364
|
-
}
|
3365
|
-
/**
|
3366
|
-
*
|
3367
|
-
*/
|
3368
|
-
public set page(page: string) {
|
3369
|
-
this.setProperty('page', page);
|
3370
|
-
}
|
3371
|
-
|
3372
|
-
/**
|
3373
|
-
*
|
3374
|
-
*/
|
3375
|
-
public get pageBreakAfter(): string {
|
3376
|
-
return this.getPropertyValue('page-break-after');
|
3377
|
-
}
|
3378
|
-
/**
|
3379
|
-
*
|
3380
|
-
*/
|
3381
|
-
public set pageBreakAfter(pageBreakAfter: string) {
|
3382
|
-
this.setProperty('page-break-after', pageBreakAfter);
|
3383
|
-
}
|
3384
|
-
|
3385
|
-
/**
|
3386
|
-
*
|
3387
|
-
*/
|
3388
|
-
public get pageBreakBefore(): string {
|
3389
|
-
return this.getPropertyValue('page-break-before');
|
3390
|
-
}
|
3391
|
-
/**
|
3392
|
-
*
|
3393
|
-
*/
|
3394
|
-
public set pageBreakBefore(pageBreakBefore: string) {
|
3395
|
-
this.setProperty('page-break-before', pageBreakBefore);
|
3396
|
-
}
|
3397
|
-
|
3398
|
-
/**
|
3399
|
-
*
|
3400
|
-
*/
|
3401
|
-
public get pageBreakInside(): string {
|
3402
|
-
return this.getPropertyValue('page-break-inside');
|
3403
|
-
}
|
3404
|
-
/**
|
3405
|
-
*
|
3406
|
-
*/
|
3407
|
-
public set pageBreakInside(pageBreakInside: string) {
|
3408
|
-
this.setProperty('page-break-inside', pageBreakInside);
|
3409
|
-
}
|
3410
|
-
|
3411
|
-
/**
|
3412
|
-
*
|
3413
|
-
*/
|
3414
|
-
public get pageOrientation(): string {
|
3415
|
-
return this.getPropertyValue('page-orientation');
|
3416
|
-
}
|
3417
|
-
/**
|
3418
|
-
*
|
3419
|
-
*/
|
3420
|
-
public set pageOrientation(pageOrientation: string) {
|
3421
|
-
this.setProperty('page-orientation', pageOrientation);
|
3422
|
-
}
|
3423
|
-
|
3424
|
-
/**
|
3425
|
-
*
|
3426
|
-
*/
|
3427
|
-
public get paintOrder(): string {
|
3428
|
-
return this.getPropertyValue('paint-order');
|
3429
|
-
}
|
3430
|
-
/**
|
3431
|
-
*
|
3432
|
-
*/
|
3433
|
-
public set paintOrder(paintOrder: string) {
|
3434
|
-
this.setProperty('paint-order', paintOrder);
|
3435
|
-
}
|
3436
|
-
|
3437
|
-
/**
|
3438
|
-
*
|
3439
|
-
*/
|
3440
|
-
public get perspective(): string {
|
3441
|
-
return this.getPropertyValue('perspective');
|
3442
|
-
}
|
3443
|
-
/**
|
3444
|
-
*
|
3445
|
-
*/
|
3446
|
-
public set perspective(perspective: string) {
|
3447
|
-
this.setProperty('perspective', perspective);
|
3448
|
-
}
|
3449
|
-
|
3450
|
-
/**
|
3451
|
-
*
|
3452
|
-
*/
|
3453
|
-
public get perspectiveOrigin(): string {
|
3454
|
-
return this.getPropertyValue('perspective-origin');
|
3455
|
-
}
|
3456
|
-
/**
|
3457
|
-
*
|
3458
|
-
*/
|
3459
|
-
public set perspectiveOrigin(perspectiveOrigin: string) {
|
3460
|
-
this.setProperty('perspective-origin', perspectiveOrigin);
|
3461
|
-
}
|
3462
|
-
|
3463
|
-
/**
|
3464
|
-
*
|
3465
|
-
*/
|
3466
|
-
public get placeContent(): string {
|
3467
|
-
return this.getPropertyValue('place-content');
|
3468
|
-
}
|
3469
|
-
/**
|
3470
|
-
*
|
3471
|
-
*/
|
3472
|
-
public set placeContent(placeContent: string) {
|
3473
|
-
this.setProperty('place-content', placeContent);
|
3474
|
-
}
|
3475
|
-
|
3476
|
-
/**
|
3477
|
-
*
|
3478
|
-
*/
|
3479
|
-
public get placeItems(): string {
|
3480
|
-
return this.getPropertyValue('place-items');
|
3481
|
-
}
|
3482
|
-
/**
|
3483
|
-
*
|
3484
|
-
*/
|
3485
|
-
public set placeItems(placeItems: string) {
|
3486
|
-
this.setProperty('place-items', placeItems);
|
3487
|
-
}
|
3488
|
-
|
3489
|
-
/**
|
3490
|
-
*
|
3491
|
-
*/
|
3492
|
-
public get placeSelf(): string {
|
3493
|
-
return this.getPropertyValue('place-self');
|
3494
|
-
}
|
3495
|
-
/**
|
3496
|
-
*
|
3497
|
-
*/
|
3498
|
-
public set placeSelf(placeSelf: string) {
|
3499
|
-
this.setProperty('place-self', placeSelf);
|
3500
|
-
}
|
3501
|
-
|
3502
|
-
/**
|
3503
|
-
*
|
3504
|
-
*/
|
3505
|
-
public get pointerEvents(): string {
|
3506
|
-
return this.getPropertyValue('pointer-events');
|
3507
|
-
}
|
3508
|
-
/**
|
3509
|
-
*
|
3510
|
-
*/
|
3511
|
-
public set pointerEvents(pointerEvents: string) {
|
3512
|
-
this.setProperty('pointer-events', pointerEvents);
|
3513
|
-
}
|
3514
|
-
|
3515
|
-
/**
|
3516
|
-
*
|
3517
|
-
*/
|
3518
|
-
public get position(): string {
|
3519
|
-
return this.getPropertyValue('position');
|
3520
|
-
}
|
3521
|
-
/**
|
3522
|
-
*
|
3523
|
-
*/
|
3524
|
-
public set position(position: string) {
|
3525
|
-
this.setProperty('position', position);
|
3526
|
-
}
|
3527
|
-
|
3528
|
-
/**
|
3529
|
-
*
|
3530
|
-
*/
|
3531
|
-
public get quotes(): string {
|
3532
|
-
return this.getPropertyValue('quotes');
|
3533
|
-
}
|
3534
|
-
/**
|
3535
|
-
*
|
3536
|
-
*/
|
3537
|
-
public set quotes(quotes: string) {
|
3538
|
-
this.setProperty('quotes', quotes);
|
3539
|
-
}
|
3540
|
-
|
3541
|
-
/**
|
3542
|
-
*
|
3543
|
-
*/
|
3544
|
-
public get r(): string {
|
3545
|
-
return this.getPropertyValue('r');
|
3546
|
-
}
|
3547
|
-
/**
|
3548
|
-
*
|
3549
|
-
*/
|
3550
|
-
public set r(r: string) {
|
3551
|
-
this.setProperty('r', r);
|
3552
|
-
}
|
3553
|
-
|
3554
|
-
/**
|
3555
|
-
*
|
3556
|
-
*/
|
3557
|
-
public get resize(): string {
|
3558
|
-
return this.getPropertyValue('resize');
|
3559
|
-
}
|
3560
|
-
/**
|
3561
|
-
*
|
3562
|
-
*/
|
3563
|
-
public set resize(resize: string) {
|
3564
|
-
this.setProperty('resize', resize);
|
3565
|
-
}
|
3566
|
-
|
3567
|
-
/**
|
3568
|
-
*
|
3569
|
-
*/
|
3570
|
-
public get right(): string {
|
3571
|
-
return this.getPropertyValue('right');
|
3572
|
-
}
|
3573
|
-
/**
|
3574
|
-
*
|
3575
|
-
*/
|
3576
|
-
public set right(right: string) {
|
3577
|
-
this.setProperty('right', right);
|
3578
|
-
}
|
3579
|
-
|
3580
|
-
/**
|
3581
|
-
*
|
3582
|
-
*/
|
3583
|
-
public get rowGap(): string {
|
3584
|
-
return this.getPropertyValue('row-gap');
|
3585
|
-
}
|
3586
|
-
/**
|
3587
|
-
*
|
3588
|
-
*/
|
3589
|
-
public set rowGap(rowGap: string) {
|
3590
|
-
this.setProperty('row-gap', rowGap);
|
3591
|
-
}
|
3592
|
-
|
3593
|
-
/**
|
3594
|
-
*
|
3595
|
-
*/
|
3596
|
-
public get rubyPosition(): string {
|
3597
|
-
return this.getPropertyValue('ruby-position');
|
3598
|
-
}
|
3599
|
-
/**
|
3600
|
-
*
|
3601
|
-
*/
|
3602
|
-
public set rubyPosition(rubyPosition: string) {
|
3603
|
-
this.setProperty('ruby-position', rubyPosition);
|
3604
|
-
}
|
3605
|
-
|
3606
|
-
/**
|
3607
|
-
*
|
3608
|
-
*/
|
3609
|
-
public get rx(): string {
|
3610
|
-
return this.getPropertyValue('rx');
|
3611
|
-
}
|
3612
|
-
/**
|
3613
|
-
*
|
3614
|
-
*/
|
3615
|
-
public set rx(rx: string) {
|
3616
|
-
this.setProperty('rx', rx);
|
3617
|
-
}
|
3618
|
-
|
3619
|
-
/**
|
3620
|
-
*
|
3621
|
-
*/
|
3622
|
-
public get ry(): string {
|
3623
|
-
return this.getPropertyValue('ry');
|
3624
|
-
}
|
3625
|
-
/**
|
3626
|
-
*
|
3627
|
-
*/
|
3628
|
-
public set ry(ry: string) {
|
3629
|
-
this.setProperty('ry', ry);
|
3630
|
-
}
|
3631
|
-
|
3632
|
-
/**
|
3633
|
-
*
|
3634
|
-
*/
|
3635
|
-
public get scrollBehavior(): string {
|
3636
|
-
return this.getPropertyValue('scroll-behavior');
|
3637
|
-
}
|
3638
|
-
/**
|
3639
|
-
*
|
3640
|
-
*/
|
3641
|
-
public set scrollBehavior(scrollBehavior: string) {
|
3642
|
-
this.setProperty('scroll-behavior', scrollBehavior);
|
3643
|
-
}
|
3644
|
-
|
3645
|
-
/**
|
3646
|
-
*
|
3647
|
-
*/
|
3648
|
-
public get scrollMargin(): string {
|
3649
|
-
return this.getPropertyValue('scroll-margin');
|
3650
|
-
}
|
3651
|
-
/**
|
3652
|
-
*
|
3653
|
-
*/
|
3654
|
-
public set scrollMargin(scrollMargin: string) {
|
3655
|
-
this.setProperty('scroll-margin', scrollMargin);
|
3656
|
-
}
|
3657
|
-
|
3658
|
-
/**
|
3659
|
-
*
|
3660
|
-
*/
|
3661
|
-
public get scrollMarginBlock(): string {
|
3662
|
-
return this.getPropertyValue('scroll-margin-block');
|
3663
|
-
}
|
3664
|
-
/**
|
3665
|
-
*
|
3666
|
-
*/
|
3667
|
-
public set scrollMarginBlock(scrollMarginBlock: string) {
|
3668
|
-
this.setProperty('scroll-margin-block', scrollMarginBlock);
|
3669
|
-
}
|
3670
|
-
|
3671
|
-
/**
|
3672
|
-
*
|
3673
|
-
*/
|
3674
|
-
public get scrollMarginBlockEnd(): string {
|
3675
|
-
return this.getPropertyValue('scroll-margin-block-end');
|
3676
|
-
}
|
3677
|
-
/**
|
3678
|
-
*
|
3679
|
-
*/
|
3680
|
-
public set scrollMarginBlockEnd(scrollMarginBlockEnd: string) {
|
3681
|
-
this.setProperty('scroll-margin-block-end', scrollMarginBlockEnd);
|
3682
|
-
}
|
3683
|
-
|
3684
|
-
/**
|
3685
|
-
*
|
3686
|
-
*/
|
3687
|
-
public get scrollMarginBlockStart(): string {
|
3688
|
-
return this.getPropertyValue('scroll-margin-block-start');
|
3689
|
-
}
|
3690
|
-
/**
|
3691
|
-
*
|
3692
|
-
*/
|
3693
|
-
public set scrollMarginBlockStart(scrollMarginBlockStart: string) {
|
3694
|
-
this.setProperty('scroll-margin-block-start', scrollMarginBlockStart);
|
3695
|
-
}
|
3696
|
-
|
3697
|
-
/**
|
3698
|
-
*
|
3699
|
-
*/
|
3700
|
-
public get scrollMarginBottom(): string {
|
3701
|
-
return this.getPropertyValue('scroll-margin-bottom');
|
3702
|
-
}
|
3703
|
-
/**
|
3704
|
-
*
|
3705
|
-
*/
|
3706
|
-
public set scrollMarginBottom(scrollMarginBottom: string) {
|
3707
|
-
this.setProperty('scroll-margin-bottom', scrollMarginBottom);
|
3708
|
-
}
|
3709
|
-
|
3710
|
-
/**
|
3711
|
-
*
|
3712
|
-
*/
|
3713
|
-
public get scrollMarginInline(): string {
|
3714
|
-
return this.getPropertyValue('scroll-margin-inline');
|
3715
|
-
}
|
3716
|
-
/**
|
3717
|
-
*
|
3718
|
-
*/
|
3719
|
-
public set scrollMarginInline(scrollMarginInline: string) {
|
3720
|
-
this.setProperty('scroll-margin-inline', scrollMarginInline);
|
3721
|
-
}
|
3722
|
-
|
3723
|
-
/**
|
3724
|
-
*
|
3725
|
-
*/
|
3726
|
-
public get scrollMarginInlineEnd(): string {
|
3727
|
-
return this.getPropertyValue('scroll-margin-inline-end');
|
3728
|
-
}
|
3729
|
-
/**
|
3730
|
-
*
|
3731
|
-
*/
|
3732
|
-
public set scrollMarginInlineEnd(scrollMarginInlineEnd: string) {
|
3733
|
-
this.setProperty('scroll-margin-inline-end', scrollMarginInlineEnd);
|
3734
|
-
}
|
3735
|
-
|
3736
|
-
/**
|
3737
|
-
*
|
3738
|
-
*/
|
3739
|
-
public get scrollMarginInlineStart(): string {
|
3740
|
-
return this.getPropertyValue('scroll-margin-inline-start');
|
3741
|
-
}
|
3742
|
-
/**
|
3743
|
-
*
|
3744
|
-
*/
|
3745
|
-
public set scrollMarginInlineStart(scrollMarginInlineStart: string) {
|
3746
|
-
this.setProperty('scroll-margin-inline-start', scrollMarginInlineStart);
|
3747
|
-
}
|
3748
|
-
|
3749
|
-
/**
|
3750
|
-
*
|
3751
|
-
*/
|
3752
|
-
public get scrollMarginLeft(): string {
|
3753
|
-
return this.getPropertyValue('scroll-margin-left');
|
3754
|
-
}
|
3755
|
-
/**
|
3756
|
-
*
|
3757
|
-
*/
|
3758
|
-
public set scrollMarginLeft(scrollMarginLeft: string) {
|
3759
|
-
this.setProperty('scroll-margin-left', scrollMarginLeft);
|
3760
|
-
}
|
3761
|
-
|
3762
|
-
/**
|
3763
|
-
*
|
3764
|
-
*/
|
3765
|
-
public get scrollMarginRight(): string {
|
3766
|
-
return this.getPropertyValue('scroll-margin-right');
|
3767
|
-
}
|
3768
|
-
/**
|
3769
|
-
*
|
3770
|
-
*/
|
3771
|
-
public set scrollMarginRight(scrollMarginRight: string) {
|
3772
|
-
this.setProperty('scroll-margin-right', scrollMarginRight);
|
3773
|
-
}
|
3774
|
-
|
3775
|
-
/**
|
3776
|
-
*
|
3777
|
-
*/
|
3778
|
-
public get scrollMarginTop(): string {
|
3779
|
-
return this.getPropertyValue('scroll-margin-top');
|
3780
|
-
}
|
3781
|
-
/**
|
3782
|
-
*
|
3783
|
-
*/
|
3784
|
-
public set scrollMarginTop(scrollMarginTop: string) {
|
3785
|
-
this.setProperty('scroll-margin-top', scrollMarginTop);
|
3786
|
-
}
|
3787
|
-
|
3788
|
-
/**
|
3789
|
-
*
|
3790
|
-
*/
|
3791
|
-
public get scrollPadding(): string {
|
3792
|
-
return this.getPropertyValue('scroll-padding');
|
3793
|
-
}
|
3794
|
-
/**
|
3795
|
-
*
|
3796
|
-
*/
|
3797
|
-
public set scrollPadding(scrollPadding: string) {
|
3798
|
-
this.setProperty('scroll-padding', scrollPadding);
|
3799
|
-
}
|
3800
|
-
|
3801
|
-
/**
|
3802
|
-
*
|
3803
|
-
*/
|
3804
|
-
public get scrollPaddingBlock(): string {
|
3805
|
-
return this.getPropertyValue('scroll-padding-block');
|
3806
|
-
}
|
3807
|
-
/**
|
3808
|
-
*
|
3809
|
-
*/
|
3810
|
-
public set scrollPaddingBlock(scrollPaddingBlock: string) {
|
3811
|
-
this.setProperty('scroll-padding-block', scrollPaddingBlock);
|
3812
|
-
}
|
3813
|
-
|
3814
|
-
/**
|
3815
|
-
*
|
3816
|
-
*/
|
3817
|
-
public get scrollPaddingBlockEnd(): string {
|
3818
|
-
return this.getPropertyValue('scroll-padding-block-end');
|
3819
|
-
}
|
3820
|
-
/**
|
3821
|
-
*
|
3822
|
-
*/
|
3823
|
-
public set scrollPaddingBlockEnd(scrollPaddingBlockEnd: string) {
|
3824
|
-
this.setProperty('scroll-padding-block-end', scrollPaddingBlockEnd);
|
3825
|
-
}
|
3826
|
-
|
3827
|
-
/**
|
3828
|
-
*
|
3829
|
-
*/
|
3830
|
-
public get scrollPaddingBlockStart(): string {
|
3831
|
-
return this.getPropertyValue('scroll-padding-block-start');
|
3832
|
-
}
|
3833
|
-
/**
|
3834
|
-
*
|
3835
|
-
*/
|
3836
|
-
public set scrollPaddingBlockStart(scrollPaddingBlockStart: string) {
|
3837
|
-
this.setProperty('scroll-padding-block-start', scrollPaddingBlockStart);
|
3838
|
-
}
|
3839
|
-
|
3840
|
-
/**
|
3841
|
-
*
|
3842
|
-
*/
|
3843
|
-
public get scrollPaddingBottom(): string {
|
3844
|
-
return this.getPropertyValue('scroll-padding-bottom');
|
3845
|
-
}
|
3846
|
-
/**
|
3847
|
-
*
|
3848
|
-
*/
|
3849
|
-
public set scrollPaddingBottom(scrollPaddingBottom: string) {
|
3850
|
-
this.setProperty('scroll-padding-bottom', scrollPaddingBottom);
|
3851
|
-
}
|
3852
|
-
|
3853
|
-
/**
|
3854
|
-
*
|
3855
|
-
*/
|
3856
|
-
public get scrollPaddingInline(): string {
|
3857
|
-
return this.getPropertyValue('scroll-padding-inline');
|
3858
|
-
}
|
3859
|
-
/**
|
3860
|
-
*
|
3861
|
-
*/
|
3862
|
-
public set scrollPaddingInline(scrollPaddingInline: string) {
|
3863
|
-
this.setProperty('scroll-padding-inline', scrollPaddingInline);
|
3864
|
-
}
|
3865
|
-
|
3866
|
-
/**
|
3867
|
-
*
|
3868
|
-
*/
|
3869
|
-
public get scrollPaddingInlineEnd(): string {
|
3870
|
-
return this.getPropertyValue('scroll-padding-inline-end');
|
3871
|
-
}
|
3872
|
-
/**
|
3873
|
-
*
|
3874
|
-
*/
|
3875
|
-
public set scrollPaddingInlineEnd(scrollPaddingInlineEnd: string) {
|
3876
|
-
this.setProperty('scroll-padding-inline-end', scrollPaddingInlineEnd);
|
3877
|
-
}
|
3878
|
-
|
3879
|
-
/**
|
3880
|
-
*
|
3881
|
-
*/
|
3882
|
-
public get scrollPaddingInlineStart(): string {
|
3883
|
-
return this.getPropertyValue('scroll-padding-inline-start');
|
3884
|
-
}
|
3885
|
-
/**
|
3886
|
-
*
|
3887
|
-
*/
|
3888
|
-
public set scrollPaddingInlineStart(scrollPaddingInlineStart: string) {
|
3889
|
-
this.setProperty('scroll-padding-inline-start', scrollPaddingInlineStart);
|
3890
|
-
}
|
3891
|
-
|
3892
|
-
/**
|
3893
|
-
*
|
3894
|
-
*/
|
3895
|
-
public get scrollPaddingLeft(): string {
|
3896
|
-
return this.getPropertyValue('scroll-padding-left');
|
3897
|
-
}
|
3898
|
-
/**
|
3899
|
-
*
|
3900
|
-
*/
|
3901
|
-
public set scrollPaddingLeft(scrollPaddingLeft: string) {
|
3902
|
-
this.setProperty('scroll-padding-left', scrollPaddingLeft);
|
3903
|
-
}
|
3904
|
-
|
3905
|
-
/**
|
3906
|
-
*
|
3907
|
-
*/
|
3908
|
-
public get scrollPaddingRight(): string {
|
3909
|
-
return this.getPropertyValue('scroll-padding-right');
|
3910
|
-
}
|
3911
|
-
/**
|
3912
|
-
*
|
3913
|
-
*/
|
3914
|
-
public set scrollPaddingRight(scrollPaddingRight: string) {
|
3915
|
-
this.setProperty('scroll-padding-right', scrollPaddingRight);
|
3916
|
-
}
|
3917
|
-
|
3918
|
-
/**
|
3919
|
-
*
|
3920
|
-
*/
|
3921
|
-
public get scrollPaddingTop(): string {
|
3922
|
-
return this.getPropertyValue('scroll-padding-top');
|
3923
|
-
}
|
3924
|
-
/**
|
3925
|
-
*
|
3926
|
-
*/
|
3927
|
-
public set scrollPaddingTop(scrollPaddingTop: string) {
|
3928
|
-
this.setProperty('scroll-padding-top', scrollPaddingTop);
|
3929
|
-
}
|
3930
|
-
|
3931
|
-
/**
|
3932
|
-
*
|
3933
|
-
*/
|
3934
|
-
public get scrollSnapAlign(): string {
|
3935
|
-
return this.getPropertyValue('scroll-snap-align');
|
3936
|
-
}
|
3937
|
-
/**
|
3938
|
-
*
|
3939
|
-
*/
|
3940
|
-
public set scrollSnapAlign(scrollSnapAlign: string) {
|
3941
|
-
this.setProperty('scroll-snap-align', scrollSnapAlign);
|
3942
|
-
}
|
3943
|
-
|
3944
|
-
/**
|
3945
|
-
*
|
3946
|
-
*/
|
3947
|
-
public get scrollSnapStop(): string {
|
3948
|
-
return this.getPropertyValue('scroll-snap-stop');
|
3949
|
-
}
|
3950
|
-
/**
|
3951
|
-
*
|
3952
|
-
*/
|
3953
|
-
public set scrollSnapStop(scrollSnapStop: string) {
|
3954
|
-
this.setProperty('scroll-snap-stop', scrollSnapStop);
|
3955
|
-
}
|
3956
|
-
|
3957
|
-
/**
|
3958
|
-
*
|
3959
|
-
*/
|
3960
|
-
public get scrollSnapType(): string {
|
3961
|
-
return this.getPropertyValue('scroll-snap-type');
|
3962
|
-
}
|
3963
|
-
/**
|
3964
|
-
*
|
3965
|
-
*/
|
3966
|
-
public set scrollSnapType(scrollSnapType: string) {
|
3967
|
-
this.setProperty('scroll-snap-type', scrollSnapType);
|
3968
|
-
}
|
3969
|
-
|
3970
|
-
/**
|
3971
|
-
*
|
3972
|
-
*/
|
3973
|
-
public get shapeImageThreshold(): string {
|
3974
|
-
return this.getPropertyValue('shape-image-threshold');
|
3975
|
-
}
|
3976
|
-
/**
|
3977
|
-
*
|
3978
|
-
*/
|
3979
|
-
public set shapeImageThreshold(shapeImageThreshold: string) {
|
3980
|
-
this.setProperty('shape-image-threshold', shapeImageThreshold);
|
3981
|
-
}
|
3982
|
-
|
3983
|
-
/**
|
3984
|
-
*
|
3985
|
-
*/
|
3986
|
-
public get shapeMargin(): string {
|
3987
|
-
return this.getPropertyValue('shape-margin');
|
3988
|
-
}
|
3989
|
-
/**
|
3990
|
-
*
|
3991
|
-
*/
|
3992
|
-
public set shapeMargin(shapeMargin: string) {
|
3993
|
-
this.setProperty('shape-margin', shapeMargin);
|
3994
|
-
}
|
3995
|
-
|
3996
|
-
/**
|
3997
|
-
*
|
3998
|
-
*/
|
3999
|
-
public get shapeOutside(): string {
|
4000
|
-
return this.getPropertyValue('shape-outside');
|
4001
|
-
}
|
4002
|
-
/**
|
4003
|
-
*
|
4004
|
-
*/
|
4005
|
-
public set shapeOutside(shapeOutside: string) {
|
4006
|
-
this.setProperty('shape-outside', shapeOutside);
|
4007
|
-
}
|
4008
|
-
|
4009
|
-
/**
|
4010
|
-
*
|
4011
|
-
*/
|
4012
|
-
public get shapeRendering(): string {
|
4013
|
-
return this.getPropertyValue('shape-rendering');
|
4014
|
-
}
|
4015
|
-
/**
|
4016
|
-
*
|
4017
|
-
*/
|
4018
|
-
public set shapeRendering(shapeRendering: string) {
|
4019
|
-
this.setProperty('shape-rendering', shapeRendering);
|
4020
|
-
}
|
4021
|
-
|
4022
|
-
/**
|
4023
|
-
*
|
4024
|
-
*/
|
4025
|
-
public get size(): string {
|
4026
|
-
return this.getPropertyValue('size');
|
4027
|
-
}
|
4028
|
-
/**
|
4029
|
-
*
|
4030
|
-
*/
|
4031
|
-
public set size(size: string) {
|
4032
|
-
this.setProperty('size', size);
|
4033
|
-
}
|
4034
|
-
|
4035
|
-
/**
|
4036
|
-
*
|
4037
|
-
*/
|
4038
|
-
public get speak(): string {
|
4039
|
-
return this.getPropertyValue('speak');
|
4040
|
-
}
|
4041
|
-
/**
|
4042
|
-
*
|
4043
|
-
*/
|
4044
|
-
public set speak(speak: string) {
|
4045
|
-
this.setProperty('speak', speak);
|
4046
|
-
}
|
4047
|
-
|
4048
|
-
/**
|
4049
|
-
*
|
4050
|
-
*/
|
4051
|
-
public get src(): string {
|
4052
|
-
return this.getPropertyValue('src');
|
4053
|
-
}
|
4054
|
-
/**
|
4055
|
-
*
|
4056
|
-
*/
|
4057
|
-
public set src(src: string) {
|
4058
|
-
this.setProperty('src', src);
|
4059
|
-
}
|
4060
|
-
|
4061
|
-
/**
|
4062
|
-
*
|
4063
|
-
*/
|
4064
|
-
public get stopColor(): string {
|
4065
|
-
return this.getPropertyValue('stop-color');
|
4066
|
-
}
|
4067
|
-
/**
|
4068
|
-
*
|
4069
|
-
*/
|
4070
|
-
public set stopColor(stopColor: string) {
|
4071
|
-
this.setProperty('stop-color', stopColor);
|
4072
|
-
}
|
4073
|
-
|
4074
|
-
/**
|
4075
|
-
*
|
4076
|
-
*/
|
4077
|
-
public get stopOpacity(): string {
|
4078
|
-
return this.getPropertyValue('stop-opacity');
|
4079
|
-
}
|
4080
|
-
/**
|
4081
|
-
*
|
4082
|
-
*/
|
4083
|
-
public set stopOpacity(stopOpacity: string) {
|
4084
|
-
this.setProperty('stop-opacity', stopOpacity);
|
4085
|
-
}
|
4086
|
-
|
4087
|
-
/**
|
4088
|
-
*
|
4089
|
-
*/
|
4090
|
-
public get stroke(): string {
|
4091
|
-
return this.getPropertyValue('stroke');
|
4092
|
-
}
|
4093
|
-
/**
|
4094
|
-
*
|
4095
|
-
*/
|
4096
|
-
public set stroke(stroke: string) {
|
4097
|
-
this.setProperty('stroke', stroke);
|
4098
|
-
}
|
4099
|
-
|
4100
|
-
/**
|
4101
|
-
*
|
4102
|
-
*/
|
4103
|
-
public get strokeDasharray(): string {
|
4104
|
-
return this.getPropertyValue('stroke-dasharray');
|
4105
|
-
}
|
4106
|
-
/**
|
4107
|
-
*
|
4108
|
-
*/
|
4109
|
-
public set strokeDasharray(strokeDasharray: string) {
|
4110
|
-
this.setProperty('stroke-dasharray', strokeDasharray);
|
4111
|
-
}
|
4112
|
-
|
4113
|
-
/**
|
4114
|
-
*
|
4115
|
-
*/
|
4116
|
-
public get strokeDashoffset(): string {
|
4117
|
-
return this.getPropertyValue('stroke-dashoffset');
|
4118
|
-
}
|
4119
|
-
/**
|
4120
|
-
*
|
4121
|
-
*/
|
4122
|
-
public set strokeDashoffset(strokeDashoffset: string) {
|
4123
|
-
this.setProperty('stroke-dashoffset', strokeDashoffset);
|
4124
|
-
}
|
4125
|
-
|
4126
|
-
/**
|
4127
|
-
*
|
4128
|
-
*/
|
4129
|
-
public get strokeLinecap(): string {
|
4130
|
-
return this.getPropertyValue('stroke-linecap');
|
4131
|
-
}
|
4132
|
-
/**
|
4133
|
-
*
|
4134
|
-
*/
|
4135
|
-
public set strokeLinecap(strokeLinecap: string) {
|
4136
|
-
this.setProperty('stroke-linecap', strokeLinecap);
|
4137
|
-
}
|
4138
|
-
|
4139
|
-
/**
|
4140
|
-
*
|
4141
|
-
*/
|
4142
|
-
public get strokeLinejoin(): string {
|
4143
|
-
return this.getPropertyValue('stroke-linejoin');
|
4144
|
-
}
|
4145
|
-
/**
|
4146
|
-
*
|
4147
|
-
*/
|
4148
|
-
public set strokeLinejoin(strokeLinejoin: string) {
|
4149
|
-
this.setProperty('stroke-linejoin', strokeLinejoin);
|
4150
|
-
}
|
4151
|
-
|
4152
|
-
/**
|
4153
|
-
*
|
4154
|
-
*/
|
4155
|
-
public get strokeMiterlimit(): string {
|
4156
|
-
return this.getPropertyValue('stroke-miterlimit');
|
4157
|
-
}
|
4158
|
-
/**
|
4159
|
-
*
|
4160
|
-
*/
|
4161
|
-
public set strokeMiterlimit(strokeMiterlimit: string) {
|
4162
|
-
this.setProperty('stroke-miterlimit', strokeMiterlimit);
|
4163
|
-
}
|
4164
|
-
|
4165
|
-
/**
|
4166
|
-
*
|
4167
|
-
*/
|
4168
|
-
public get strokeOpacity(): string {
|
4169
|
-
return this.getPropertyValue('stroke-opacity');
|
4170
|
-
}
|
4171
|
-
/**
|
4172
|
-
*
|
4173
|
-
*/
|
4174
|
-
public set strokeOpacity(strokeOpacity: string) {
|
4175
|
-
this.setProperty('stroke-opacity', strokeOpacity);
|
4176
|
-
}
|
4177
|
-
|
4178
|
-
/**
|
4179
|
-
*
|
4180
|
-
*/
|
4181
|
-
public get strokeWidth(): string {
|
4182
|
-
return this.getPropertyValue('stroke-width');
|
4183
|
-
}
|
4184
|
-
/**
|
4185
|
-
*
|
4186
|
-
*/
|
4187
|
-
public set strokeWidth(strokeWidth: string) {
|
4188
|
-
this.setProperty('stroke-width', strokeWidth);
|
4189
|
-
}
|
4190
|
-
|
4191
|
-
/**
|
4192
|
-
*
|
4193
|
-
*/
|
4194
|
-
public get syntax(): string {
|
4195
|
-
return this.getPropertyValue('syntax');
|
4196
|
-
}
|
4197
|
-
/**
|
4198
|
-
*
|
4199
|
-
*/
|
4200
|
-
public set syntax(syntax: string) {
|
4201
|
-
this.setProperty('syntax', syntax);
|
4202
|
-
}
|
4203
|
-
|
4204
|
-
/**
|
4205
|
-
*
|
4206
|
-
*/
|
4207
|
-
public get tabSize(): string {
|
4208
|
-
return this.getPropertyValue('tab-size');
|
4209
|
-
}
|
4210
|
-
/**
|
4211
|
-
*
|
4212
|
-
*/
|
4213
|
-
public set tabSize(tabSize: string) {
|
4214
|
-
this.setProperty('tab-size', tabSize);
|
4215
|
-
}
|
4216
|
-
|
4217
|
-
/**
|
4218
|
-
*
|
4219
|
-
*/
|
4220
|
-
public get tableLayout(): string {
|
4221
|
-
return this.getPropertyValue('table-layout');
|
4222
|
-
}
|
4223
|
-
/**
|
4224
|
-
*
|
4225
|
-
*/
|
4226
|
-
public set tableLayout(tableLayout: string) {
|
4227
|
-
this.setProperty('table-layout', tableLayout);
|
4228
|
-
}
|
4229
|
-
|
4230
|
-
/**
|
4231
|
-
*
|
4232
|
-
*/
|
4233
|
-
public get textAlign(): string {
|
4234
|
-
return this.getPropertyValue('text-align');
|
4235
|
-
}
|
4236
|
-
/**
|
4237
|
-
*
|
4238
|
-
*/
|
4239
|
-
public set textAlign(textAlign: string) {
|
4240
|
-
this.setProperty('text-align', textAlign);
|
4241
|
-
}
|
4242
|
-
|
4243
|
-
/**
|
4244
|
-
*
|
4245
|
-
*/
|
4246
|
-
public get textAlignLast(): string {
|
4247
|
-
return this.getPropertyValue('text-align-last');
|
4248
|
-
}
|
4249
|
-
/**
|
4250
|
-
*
|
4251
|
-
*/
|
4252
|
-
public set textAlignLast(textAlignLast: string) {
|
4253
|
-
this.setProperty('text-align-last', textAlignLast);
|
4254
|
-
}
|
4255
|
-
|
4256
|
-
/**
|
4257
|
-
*
|
4258
|
-
*/
|
4259
|
-
public get textAnchor(): string {
|
4260
|
-
return this.getPropertyValue('text-anchor');
|
4261
|
-
}
|
4262
|
-
/**
|
4263
|
-
*
|
4264
|
-
*/
|
4265
|
-
public set textAnchor(textAnchor: string) {
|
4266
|
-
this.setProperty('text-anchor', textAnchor);
|
4267
|
-
}
|
4268
|
-
|
4269
|
-
/**
|
4270
|
-
*
|
4271
|
-
*/
|
4272
|
-
public get textCombineUpright(): string {
|
4273
|
-
return this.getPropertyValue('text-combine-upright');
|
4274
|
-
}
|
4275
|
-
/**
|
4276
|
-
*
|
4277
|
-
*/
|
4278
|
-
public set textCombineUpright(textCombineUpright: string) {
|
4279
|
-
this.setProperty('text-combine-upright', textCombineUpright);
|
4280
|
-
}
|
4281
|
-
|
4282
|
-
/**
|
4283
|
-
*
|
4284
|
-
*/
|
4285
|
-
public get textDecoration(): string {
|
4286
|
-
return this.getPropertyValue('text-decoration');
|
4287
|
-
}
|
4288
|
-
/**
|
4289
|
-
*
|
4290
|
-
*/
|
4291
|
-
public set textDecoration(textDecoration: string) {
|
4292
|
-
this.setProperty('text-decoration', textDecoration);
|
4293
|
-
}
|
4294
|
-
|
4295
|
-
/**
|
4296
|
-
*
|
4297
|
-
*/
|
4298
|
-
public get textDecorationColor(): string {
|
4299
|
-
return this.getPropertyValue('text-decoration-color');
|
4300
|
-
}
|
4301
|
-
/**
|
4302
|
-
*
|
4303
|
-
*/
|
4304
|
-
public set textDecorationColor(textDecorationColor: string) {
|
4305
|
-
this.setProperty('text-decoration-color', textDecorationColor);
|
4306
|
-
}
|
4307
|
-
|
4308
|
-
/**
|
4309
|
-
*
|
4310
|
-
*/
|
4311
|
-
public get textDecorationLine(): string {
|
4312
|
-
return this.getPropertyValue('text-decoration-line');
|
4313
|
-
}
|
4314
|
-
/**
|
4315
|
-
*
|
4316
|
-
*/
|
4317
|
-
public set textDecorationLine(textDecorationLine: string) {
|
4318
|
-
this.setProperty('text-decoration-line', textDecorationLine);
|
4319
|
-
}
|
4320
|
-
|
4321
|
-
/**
|
4322
|
-
*
|
4323
|
-
*/
|
4324
|
-
public get textDecorationSkipInk(): string {
|
4325
|
-
return this.getPropertyValue('text-decoration-skip-ink');
|
4326
|
-
}
|
4327
|
-
/**
|
4328
|
-
*
|
4329
|
-
*/
|
4330
|
-
public set textDecorationSkipInk(textDecorationSkipInk: string) {
|
4331
|
-
this.setProperty('text-decoration-skip-ink', textDecorationSkipInk);
|
4332
|
-
}
|
4333
|
-
|
4334
|
-
/**
|
4335
|
-
*
|
4336
|
-
*/
|
4337
|
-
public get textDecorationStyle(): string {
|
4338
|
-
return this.getPropertyValue('text-decoration-style');
|
4339
|
-
}
|
4340
|
-
/**
|
4341
|
-
*
|
4342
|
-
*/
|
4343
|
-
public set textDecorationStyle(textDecorationStyle: string) {
|
4344
|
-
this.setProperty('text-decoration-style', textDecorationStyle);
|
4345
|
-
}
|
4346
|
-
|
4347
|
-
/**
|
4348
|
-
*
|
4349
|
-
*/
|
4350
|
-
public get textIndent(): string {
|
4351
|
-
return this.getPropertyValue('text-indent');
|
4352
|
-
}
|
4353
|
-
/**
|
4354
|
-
*
|
4355
|
-
*/
|
4356
|
-
public set textIndent(textIndent: string) {
|
4357
|
-
this.setProperty('text-indent', textIndent);
|
4358
|
-
}
|
4359
|
-
|
4360
|
-
/**
|
4361
|
-
*
|
4362
|
-
*/
|
4363
|
-
public get textOrientation(): string {
|
4364
|
-
return this.getPropertyValue('text-orientation');
|
4365
|
-
}
|
4366
|
-
/**
|
4367
|
-
*
|
4368
|
-
*/
|
4369
|
-
public set textOrientation(textOrientation: string) {
|
4370
|
-
this.setProperty('text-orientation', textOrientation);
|
4371
|
-
}
|
4372
|
-
|
4373
|
-
/**
|
4374
|
-
*
|
4375
|
-
*/
|
4376
|
-
public get textOverflow(): string {
|
4377
|
-
return this.getPropertyValue('text-overflow');
|
4378
|
-
}
|
4379
|
-
/**
|
4380
|
-
*
|
4381
|
-
*/
|
4382
|
-
public set textOverflow(textOverflow: string) {
|
4383
|
-
this.setProperty('text-overflow', textOverflow);
|
4384
|
-
}
|
4385
|
-
|
4386
|
-
/**
|
4387
|
-
*
|
4388
|
-
*/
|
4389
|
-
public get textRendering(): string {
|
4390
|
-
return this.getPropertyValue('text-rendering');
|
4391
|
-
}
|
4392
|
-
/**
|
4393
|
-
*
|
4394
|
-
*/
|
4395
|
-
public set textRendering(textRendering: string) {
|
4396
|
-
this.setProperty('text-rendering', textRendering);
|
4397
|
-
}
|
4398
|
-
|
4399
|
-
/**
|
4400
|
-
*
|
4401
|
-
*/
|
4402
|
-
public get textShadow(): string {
|
4403
|
-
return this.getPropertyValue('text-shadow');
|
4404
|
-
}
|
4405
|
-
/**
|
4406
|
-
*
|
4407
|
-
*/
|
4408
|
-
public set textShadow(textShadow: string) {
|
4409
|
-
this.setProperty('text-shadow', textShadow);
|
4410
|
-
}
|
4411
|
-
|
4412
|
-
/**
|
4413
|
-
*
|
4414
|
-
*/
|
4415
|
-
public get textSizeAdjust(): string {
|
4416
|
-
return this.getPropertyValue('text-size-adjust');
|
4417
|
-
}
|
4418
|
-
/**
|
4419
|
-
*
|
4420
|
-
*/
|
4421
|
-
public set textSizeAdjust(textSizeAdjust: string) {
|
4422
|
-
this.setProperty('text-size-adjust', textSizeAdjust);
|
4423
|
-
}
|
4424
|
-
|
4425
|
-
/**
|
4426
|
-
*
|
4427
|
-
*/
|
4428
|
-
public get textTransform(): string {
|
4429
|
-
return this.getPropertyValue('text-transform');
|
4430
|
-
}
|
4431
|
-
/**
|
4432
|
-
*
|
4433
|
-
*/
|
4434
|
-
public set textTransform(textTransform: string) {
|
4435
|
-
this.setProperty('text-transform', textTransform);
|
4436
|
-
}
|
4437
|
-
|
4438
|
-
/**
|
4439
|
-
*
|
4440
|
-
*/
|
4441
|
-
public get textUnderlinePosition(): string {
|
4442
|
-
return this.getPropertyValue('text-underline-position');
|
4443
|
-
}
|
4444
|
-
/**
|
4445
|
-
*
|
4446
|
-
*/
|
4447
|
-
public set textUnderlinePosition(textUnderlinePosition: string) {
|
4448
|
-
this.setProperty('text-underline-position', textUnderlinePosition);
|
4449
|
-
}
|
4450
|
-
|
4451
|
-
/**
|
4452
|
-
*
|
4453
|
-
*/
|
4454
|
-
public get top(): string {
|
4455
|
-
return this.getPropertyValue('top');
|
4456
|
-
}
|
4457
|
-
/**
|
4458
|
-
*
|
4459
|
-
*/
|
4460
|
-
public set top(top: string) {
|
4461
|
-
this.setProperty('top', top);
|
4462
|
-
}
|
4463
|
-
|
4464
|
-
/**
|
4465
|
-
*
|
4466
|
-
*/
|
4467
|
-
public get touchAction(): string {
|
4468
|
-
return this.getPropertyValue('touch-action');
|
4469
|
-
}
|
4470
|
-
/**
|
4471
|
-
*
|
4472
|
-
*/
|
4473
|
-
public set touchAction(touchAction: string) {
|
4474
|
-
this.setProperty('touch-action', touchAction);
|
4475
|
-
}
|
4476
|
-
|
4477
|
-
/**
|
4478
|
-
*
|
4479
|
-
*/
|
4480
|
-
public get transform(): string {
|
4481
|
-
return this.getPropertyValue('transform');
|
4482
|
-
}
|
4483
|
-
/**
|
4484
|
-
*
|
4485
|
-
*/
|
4486
|
-
public set transform(transform: string) {
|
4487
|
-
this.setProperty('transform', transform);
|
4488
|
-
}
|
4489
|
-
|
4490
|
-
/**
|
4491
|
-
*
|
4492
|
-
*/
|
4493
|
-
public get transformBox(): string {
|
4494
|
-
return this.getPropertyValue('transform-box');
|
4495
|
-
}
|
4496
|
-
/**
|
4497
|
-
*
|
4498
|
-
*/
|
4499
|
-
public set transformBox(transformBox: string) {
|
4500
|
-
this.setProperty('transform-box', transformBox);
|
4501
|
-
}
|
4502
|
-
|
4503
|
-
/**
|
4504
|
-
*
|
4505
|
-
*/
|
4506
|
-
public get transformOrigin(): string {
|
4507
|
-
return this.getPropertyValue('transform-origin');
|
4508
|
-
}
|
4509
|
-
/**
|
4510
|
-
*
|
4511
|
-
*/
|
4512
|
-
public set transformOrigin(transformOrigin: string) {
|
4513
|
-
this.setProperty('transform-origin', transformOrigin);
|
4514
|
-
}
|
4515
|
-
|
4516
|
-
/**
|
4517
|
-
*
|
4518
|
-
*/
|
4519
|
-
public get transformStyle(): string {
|
4520
|
-
return this.getPropertyValue('transform-style');
|
4521
|
-
}
|
4522
|
-
/**
|
4523
|
-
*
|
4524
|
-
*/
|
4525
|
-
public set transformStyle(transformStyle: string) {
|
4526
|
-
this.setProperty('transform-style', transformStyle);
|
4527
|
-
}
|
4528
|
-
|
4529
|
-
/**
|
4530
|
-
*
|
4531
|
-
*/
|
4532
|
-
public get transition(): string {
|
4533
|
-
return this.getPropertyValue('transition');
|
4534
|
-
}
|
4535
|
-
/**
|
4536
|
-
*
|
4537
|
-
*/
|
4538
|
-
public set transition(transition: string) {
|
4539
|
-
this.setProperty('transition', transition);
|
4540
|
-
}
|
4541
|
-
|
4542
|
-
/**
|
4543
|
-
*
|
4544
|
-
*/
|
4545
|
-
public get transitionDelay(): string {
|
4546
|
-
return this.getPropertyValue('transition-delay');
|
4547
|
-
}
|
4548
|
-
/**
|
4549
|
-
*
|
4550
|
-
*/
|
4551
|
-
public set transitionDelay(transitionDelay: string) {
|
4552
|
-
this.setProperty('transition-delay', transitionDelay);
|
4553
|
-
}
|
4554
|
-
|
4555
|
-
/**
|
4556
|
-
*
|
4557
|
-
*/
|
4558
|
-
public get transitionDuration(): string {
|
4559
|
-
return this.getPropertyValue('transition-duration');
|
4560
|
-
}
|
4561
|
-
/**
|
4562
|
-
*
|
4563
|
-
*/
|
4564
|
-
public set transitionDuration(transitionDuration: string) {
|
4565
|
-
this.setProperty('transition-duration', transitionDuration);
|
4566
|
-
}
|
4567
|
-
|
4568
|
-
/**
|
4569
|
-
*
|
4570
|
-
*/
|
4571
|
-
public get transitionProperty(): string {
|
4572
|
-
return this.getPropertyValue('transition-property');
|
4573
|
-
}
|
4574
|
-
/**
|
4575
|
-
*
|
4576
|
-
*/
|
4577
|
-
public set transitionProperty(transitionProperty: string) {
|
4578
|
-
this.setProperty('transition-property', transitionProperty);
|
4579
|
-
}
|
4580
|
-
|
4581
|
-
/**
|
4582
|
-
*
|
4583
|
-
*/
|
4584
|
-
public get transitionTimingFunction(): string {
|
4585
|
-
return this.getPropertyValue('transition-timing-function');
|
4586
|
-
}
|
4587
|
-
/**
|
4588
|
-
*
|
4589
|
-
*/
|
4590
|
-
public set transitionTimingFunction(transitionTimingFunction: string) {
|
4591
|
-
this.setProperty('transition-timing-function', transitionTimingFunction);
|
4592
|
-
}
|
4593
|
-
|
4594
|
-
/**
|
4595
|
-
*
|
4596
|
-
*/
|
4597
|
-
public get unicodeBidi(): string {
|
4598
|
-
return this.getPropertyValue('unicode-bidi');
|
4599
|
-
}
|
4600
|
-
/**
|
4601
|
-
*
|
4602
|
-
*/
|
4603
|
-
public set unicodeBidi(unicodeBidi: string) {
|
4604
|
-
this.setProperty('unicode-bidi', unicodeBidi);
|
4605
|
-
}
|
4606
|
-
|
4607
|
-
/**
|
4608
|
-
*
|
4609
|
-
*/
|
4610
|
-
public get unicodeRange(): string {
|
4611
|
-
return this.getPropertyValue('unicode-range');
|
4612
|
-
}
|
4613
|
-
/**
|
4614
|
-
*
|
4615
|
-
*/
|
4616
|
-
public set unicodeRange(unicodeRange: string) {
|
4617
|
-
this.setProperty('unicode-range', unicodeRange);
|
4618
|
-
}
|
4619
|
-
|
4620
|
-
/**
|
4621
|
-
*
|
4622
|
-
*/
|
4623
|
-
public get userSelect(): string {
|
4624
|
-
return this.getPropertyValue('user-select');
|
4625
|
-
}
|
4626
|
-
/**
|
4627
|
-
*
|
4628
|
-
*/
|
4629
|
-
public set userSelect(userSelect: string) {
|
4630
|
-
this.setProperty('user-select', userSelect);
|
4631
|
-
}
|
4632
|
-
|
4633
|
-
/**
|
4634
|
-
*
|
4635
|
-
*/
|
4636
|
-
public get userZoom(): string {
|
4637
|
-
return this.getPropertyValue('user-zoom');
|
4638
|
-
}
|
4639
|
-
/**
|
4640
|
-
*
|
4641
|
-
*/
|
4642
|
-
public set userZoom(userZoom: string) {
|
4643
|
-
this.setProperty('user-zoom', userZoom);
|
4644
|
-
}
|
4645
|
-
|
4646
|
-
/**
|
4647
|
-
*
|
4648
|
-
*/
|
4649
|
-
public get vectorEffect(): string {
|
4650
|
-
return this.getPropertyValue('vector-effect');
|
4651
|
-
}
|
4652
|
-
/**
|
4653
|
-
*
|
4654
|
-
*/
|
4655
|
-
public set vectorEffect(vectorEffect: string) {
|
4656
|
-
this.setProperty('vector-effect', vectorEffect);
|
4657
|
-
}
|
4658
|
-
|
4659
|
-
/**
|
4660
|
-
*
|
4661
|
-
*/
|
4662
|
-
public get verticalAlign(): string {
|
4663
|
-
return this.getPropertyValue('vertical-align');
|
4664
|
-
}
|
4665
|
-
/**
|
4666
|
-
*
|
4667
|
-
*/
|
4668
|
-
public set verticalAlign(verticalAlign: string) {
|
4669
|
-
this.setProperty('vertical-align', verticalAlign);
|
4670
|
-
}
|
4671
|
-
|
4672
|
-
/**
|
4673
|
-
*
|
4674
|
-
*/
|
4675
|
-
public get visibility(): string {
|
4676
|
-
return this.getPropertyValue('visibility');
|
4677
|
-
}
|
4678
|
-
/**
|
4679
|
-
*
|
4680
|
-
*/
|
4681
|
-
public set visibility(visibility: string) {
|
4682
|
-
this.setProperty('visibility', visibility);
|
4683
|
-
}
|
4684
|
-
|
4685
|
-
/**
|
4686
|
-
*
|
4687
|
-
*/
|
4688
|
-
public get whiteSpace(): string {
|
4689
|
-
return this.getPropertyValue('white-space');
|
4690
|
-
}
|
4691
|
-
/**
|
4692
|
-
*
|
4693
|
-
*/
|
4694
|
-
public set whiteSpace(whiteSpace: string) {
|
4695
|
-
this.setProperty('white-space', whiteSpace);
|
4696
|
-
}
|
4697
|
-
|
4698
|
-
/**
|
4699
|
-
*
|
4700
|
-
*/
|
4701
|
-
public get widows(): string {
|
4702
|
-
return this.getPropertyValue('widows');
|
4703
|
-
}
|
4704
|
-
/**
|
4705
|
-
*
|
4706
|
-
*/
|
4707
|
-
public set widows(widows: string) {
|
4708
|
-
this.setProperty('widows', widows);
|
4709
|
-
}
|
4710
|
-
|
4711
|
-
/**
|
4712
|
-
*
|
4713
|
-
*/
|
4714
|
-
public get width(): string {
|
4715
|
-
return this.getPropertyValue('width');
|
4716
|
-
}
|
4717
|
-
/**
|
4718
|
-
*
|
4719
|
-
*/
|
4720
|
-
public set width(width: string) {
|
4721
|
-
this.setProperty('width', width);
|
4722
|
-
}
|
4723
|
-
|
4724
|
-
/**
|
4725
|
-
*
|
4726
|
-
*/
|
4727
|
-
public get willChange(): string {
|
4728
|
-
return this.getPropertyValue('will-change');
|
4729
|
-
}
|
4730
|
-
/**
|
4731
|
-
*
|
4732
|
-
*/
|
4733
|
-
public set willChange(willChange: string) {
|
4734
|
-
this.setProperty('will-change', willChange);
|
4735
|
-
}
|
4736
|
-
|
4737
|
-
/**
|
4738
|
-
*
|
4739
|
-
*/
|
4740
|
-
public get wordBreak(): string {
|
4741
|
-
return this.getPropertyValue('word-break');
|
4742
|
-
}
|
4743
|
-
/**
|
4744
|
-
*
|
4745
|
-
*/
|
4746
|
-
public set wordBreak(wordBreak: string) {
|
4747
|
-
this.setProperty('word-break', wordBreak);
|
4748
|
-
}
|
4749
|
-
|
4750
|
-
/**
|
4751
|
-
*
|
4752
|
-
*/
|
4753
|
-
public get wordSpacing(): string {
|
4754
|
-
return this.getPropertyValue('word-spacing');
|
4755
|
-
}
|
4756
|
-
/**
|
4757
|
-
*
|
4758
|
-
*/
|
4759
|
-
public set wordSpacing(wordSpacing: string) {
|
4760
|
-
this.setProperty('word-spacing', wordSpacing);
|
4761
|
-
}
|
4762
|
-
|
4763
|
-
/**
|
4764
|
-
*
|
4765
|
-
*/
|
4766
|
-
public get wordWrap(): string {
|
4767
|
-
return this.getPropertyValue('word-wrap');
|
4768
|
-
}
|
4769
|
-
/**
|
4770
|
-
*
|
4771
|
-
*/
|
4772
|
-
public set wordWrap(wordWrap: string) {
|
4773
|
-
this.setProperty('word-wrap', wordWrap);
|
4774
|
-
}
|
4775
|
-
|
4776
|
-
/**
|
4777
|
-
*
|
4778
|
-
*/
|
4779
|
-
public get writingMode(): string {
|
4780
|
-
return this.getPropertyValue('writing-mode');
|
4781
|
-
}
|
4782
|
-
/**
|
4783
|
-
*
|
4784
|
-
*/
|
4785
|
-
public set writingMode(writingMode: string) {
|
4786
|
-
this.setProperty('writing-mode', writingMode);
|
4787
|
-
}
|
4788
|
-
|
4789
|
-
/**
|
4790
|
-
*
|
4791
|
-
*/
|
4792
|
-
public get x(): string {
|
4793
|
-
return this.getPropertyValue('x');
|
4794
|
-
}
|
4795
|
-
/**
|
4796
|
-
*
|
4797
|
-
*/
|
4798
|
-
public set x(x: string) {
|
4799
|
-
this.setProperty('x', x);
|
4800
|
-
}
|
4801
|
-
|
4802
|
-
/**
|
4803
|
-
*
|
4804
|
-
*/
|
4805
|
-
public get y(): string {
|
4806
|
-
return this.getPropertyValue('y');
|
4807
|
-
}
|
4808
|
-
/**
|
4809
|
-
*
|
4810
|
-
*/
|
4811
|
-
public set y(y: string) {
|
4812
|
-
this.setProperty('y', y);
|
4813
|
-
}
|
4814
|
-
|
4815
|
-
/**
|
4816
|
-
*
|
4817
|
-
*/
|
4818
|
-
public get zIndex(): string {
|
4819
|
-
return this.getPropertyValue('z-index');
|
4820
|
-
}
|
4821
|
-
/**
|
4822
|
-
*
|
4823
|
-
*/
|
4824
|
-
public set zIndex(zIndex: string) {
|
4825
|
-
this.setProperty('z-index', zIndex);
|
4826
|
-
}
|
4827
|
-
|
4828
|
-
/**
|
4829
|
-
*
|
4830
|
-
*/
|
4831
|
-
public get zoom(): string {
|
4832
|
-
return this.getPropertyValue('zoom');
|
4833
|
-
}
|
4834
|
-
/**
|
4835
|
-
*
|
4836
|
-
*/
|
4837
|
-
public set zoom(zoom: string) {
|
4838
|
-
this.setProperty('zoom', zoom);
|
4839
|
-
}
|
4840
|
-
|
4841
|
-
/**
|
4842
|
-
* Returns the style decleration as a CSS text.
|
4843
|
-
*
|
4844
|
-
* @returns CSS text.
|
4845
|
-
*/
|
4846
|
-
public get cssText(): string {
|
4847
|
-
const style = this._attributes['style'];
|
4848
|
-
if (style && style.value) {
|
4849
|
-
return style.value;
|
4850
|
-
}
|
4851
|
-
return '';
|
4852
|
-
}
|
4853
|
-
|
4854
|
-
/**
|
4855
|
-
* Sets CSS text.
|
4856
|
-
*
|
4857
|
-
* @param cssText CSS text.
|
4858
|
-
*/
|
4859
|
-
public set cssText(cssText: string) {
|
4860
|
-
if (cssText) {
|
4861
|
-
if (!this._attributes['style']) {
|
4862
|
-
this._attributes['style'] = new Attr();
|
4863
|
-
this._attributes['style'].name = 'style';
|
4864
|
-
}
|
4865
|
-
const parts = cssText.split(';');
|
4866
|
-
const newStyle = [];
|
4867
|
-
let index = 0;
|
4868
|
-
for (let i = 0; i < this.length; i++) {
|
4869
|
-
delete this[i];
|
4870
|
-
}
|
4871
|
-
for (const part of parts) {
|
4872
|
-
if (part) {
|
4873
|
-
const [name, value] = part.trim().split(':');
|
4874
|
-
if (value) {
|
4875
|
-
newStyle.push(`${name}: ${value.trim()};`);
|
4876
|
-
} else {
|
4877
|
-
newStyle.push(name);
|
4878
|
-
}
|
4879
|
-
this[index] = name;
|
4880
|
-
index++;
|
4881
|
-
}
|
4882
|
-
}
|
4883
|
-
(<number>this.length) = index;
|
4884
|
-
this._attributes['style'].value = newStyle.join(' ');
|
4885
|
-
} else {
|
4886
|
-
delete this._attributes['style'];
|
4887
|
-
for (let i = 0; i < this.length; i++) {
|
4888
|
-
delete this[i];
|
4889
|
-
}
|
4890
|
-
(<number>this.length) = 0;
|
4891
|
-
}
|
4892
|
-
}
|
4893
|
-
|
4894
|
-
/**
|
4895
|
-
* Returns item.
|
4896
|
-
*
|
4897
|
-
* @param index Index.
|
4898
|
-
* @returns Item.
|
4899
|
-
*/
|
4900
|
-
public item(index: number): string {
|
4901
|
-
return this[index] || '';
|
4902
|
-
}
|
4903
|
-
|
4904
|
-
/**
|
4905
|
-
* Set a property.
|
4906
|
-
*
|
4907
|
-
* @param propertyName Property name.
|
4908
|
-
* @param value Value. Must not contain "!important" as that should be set using the priority parameter.
|
4909
|
-
* @param [priority] Can be "important", or an empty string.
|
4910
|
-
*/
|
4911
|
-
public setProperty(propertyName: string, value: string, priority = ''): void {
|
4912
|
-
if (!value) {
|
4913
|
-
this.removeProperty(propertyName);
|
4914
|
-
return;
|
4915
|
-
}
|
4916
|
-
|
4917
|
-
if (!this._attributes['style']) {
|
4918
|
-
this._attributes['style'] = new Attr();
|
4919
|
-
this._attributes['style'].name = 'style';
|
4920
|
-
}
|
4921
|
-
|
4922
|
-
const style = this._attributes['style'];
|
4923
|
-
const newStyle = [];
|
4924
|
-
let index = 0;
|
4925
|
-
let isExisting = false;
|
4926
|
-
|
4927
|
-
if (style && style.value) {
|
4928
|
-
const parts = style.value.split(';');
|
4929
|
-
for (const part of parts) {
|
4930
|
-
if (part) {
|
4931
|
-
const [name, existingValue] = part.trim().split(':');
|
4932
|
-
if (name === propertyName) {
|
4933
|
-
newStyle.push(`${name}: ${value};`);
|
4934
|
-
isExisting = true;
|
4935
|
-
} else if (existingValue) {
|
4936
|
-
newStyle.push(`${name}: ${existingValue.trim()};`);
|
4937
|
-
} else {
|
4938
|
-
newStyle.push(`${name};`);
|
4939
|
-
}
|
4940
|
-
|
4941
|
-
this[index] = name;
|
4942
|
-
index++;
|
4943
|
-
}
|
4944
|
-
}
|
4945
|
-
}
|
4946
|
-
|
4947
|
-
if (!isExisting) {
|
4948
|
-
newStyle.push(`${propertyName}: ${value}${priority ? '' + priority : ''};`);
|
4949
|
-
this[index] = propertyName;
|
4950
|
-
index++;
|
4951
|
-
}
|
4952
|
-
|
4953
|
-
this._attributes['style'].value = newStyle.join(' ');
|
4954
|
-
(<number>this.length) = index;
|
4955
|
-
}
|
4956
|
-
|
4957
|
-
/**
|
4958
|
-
* Removes a property.
|
4959
|
-
*
|
4960
|
-
* @param propertyName Property name in kebab case.
|
4961
|
-
* @param value Value. Must not contain "!important" as that should be set using the priority parameter.
|
4962
|
-
* @param [priority] Can be "important", or an empty string.
|
4963
|
-
*/
|
4964
|
-
public removeProperty(propertyName: string): void {
|
4965
|
-
const style = this._attributes['style'];
|
4966
|
-
const newStyle = [];
|
4967
|
-
let hasProperty = false;
|
4968
|
-
let index = 0;
|
4969
|
-
|
4970
|
-
if (style && style.value) {
|
4971
|
-
const parts = style.value.split(';');
|
4972
|
-
for (const part of parts) {
|
4973
|
-
if (part) {
|
4974
|
-
const [name, value] = part.trim().split(':');
|
4975
|
-
if (name !== propertyName) {
|
4976
|
-
newStyle.push(`${name}: ${value.trim()};`);
|
4977
|
-
this[index] = name;
|
4978
|
-
index++;
|
4979
|
-
hasProperty = true;
|
4980
|
-
}
|
4981
|
-
}
|
4982
|
-
}
|
4983
|
-
}
|
4984
|
-
|
4985
|
-
if (newStyle.length) {
|
4986
|
-
this._attributes['style'].value = newStyle.join(' ');
|
4987
|
-
} else {
|
4988
|
-
delete this._attributes['style'];
|
4989
|
-
}
|
4990
|
-
|
4991
|
-
if (hasProperty) {
|
4992
|
-
delete this[index];
|
4993
|
-
}
|
4994
|
-
|
4995
|
-
(<number>this.length) = index;
|
4996
|
-
}
|
4997
|
-
|
4998
|
-
/**
|
4999
|
-
* Returns a property.
|
5000
|
-
*
|
5001
|
-
* @param propertyName Property name in kebab case.
|
5002
|
-
* @returns Property value.
|
5003
|
-
*/
|
5004
|
-
public getPropertyValue(propertyName: string): string {
|
5005
|
-
if (this._computedStyleElement && !this._computedStyleElement.isConnected) {
|
5006
|
-
return '';
|
5007
|
-
}
|
5008
|
-
|
5009
|
-
const style = this._attributes['style'];
|
5010
|
-
if (style && style.value) {
|
5011
|
-
const parts = style.value.split(';');
|
5012
|
-
for (const part of parts) {
|
5013
|
-
if (part) {
|
5014
|
-
const [name, value] = part.trim().split(':');
|
5015
|
-
if (name === propertyName) {
|
5016
|
-
if (!value) {
|
5017
|
-
return '';
|
5018
|
-
}
|
5019
|
-
return value.trim();
|
5020
|
-
}
|
5021
|
-
}
|
5022
|
-
}
|
5023
|
-
}
|
5024
|
-
return '';
|
5025
|
-
}
|
5026
|
-
}
|