igniteui-webcomponents-inputs 4.2.5 → 4.3.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +98 -98
- package/esm2015/lib/ButtonView_combined.js +2206 -1799
- package/esm2015/lib/CalendarView_combined.js +156 -156
- package/esm2015/lib/CheckboxView_combined.js +532 -458
- package/esm2015/lib/DatePickerView_combined.js +398 -364
- package/esm2015/lib/IconView_combined.js +553 -355
- package/esm2015/lib/InputGroupView_combined.js +2432 -2152
- package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
- package/esm2015/lib/RippleView_combined.js +1 -1
- package/esm2015/lib/Theme.js +48 -0
- package/esm2015/lib/ThemeResolver.js +131 -7
- package/esm2015/lib/XButtonBridge.js +218 -22
- package/esm2015/lib/XCheckboxBridge.js +25 -16
- package/esm2015/lib/XComponentBridge.js +20 -6
- package/esm2015/lib/XIconBridge.js +93 -0
- package/esm2015/lib/XIconButtonBridge.js +45 -33
- package/esm2015/lib/XInputBridge.js +91 -38
- package/esm2015/lib/XPopupBridge.js +287 -0
- package/esm2015/lib/igc-date-picker-component.js +60 -58
- package/esm2015/lib/igc-x-button-component.js +694 -546
- package/esm2015/lib/igc-x-button-group-component.js +28 -28
- package/esm2015/lib/igc-x-calendar-component.js +16 -16
- package/esm2015/lib/igc-x-checkbox-component.js +77 -77
- package/esm2015/lib/igc-x-icon-component.js +239 -118
- package/esm2015/lib/igc-x-input-component.js +61 -43
- package/esm2015/lib/igc-x-input-group-component.js +576 -576
- package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
- package/esm2015/lib/igc-x-ripple-component.js +35 -35
- package/esm2015/public_api.js +3 -0
- package/esm5/lib/ButtonClickEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupView_combined.js +176 -176
- package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
- package/esm5/lib/ButtonView_combined.js +2259 -1808
- package/esm5/lib/ButtonVisualModelExport.js +2 -2
- package/esm5/lib/CalendarView_combined.js +181 -181
- package/esm5/lib/CalendarVisualModelExport.js +2 -2
- package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
- package/esm5/lib/CheckboxView_combined.js +561 -483
- package/esm5/lib/CheckboxVisualModelExport.js +2 -2
- package/esm5/lib/DatePickerView_combined.js +421 -383
- package/esm5/lib/DatePickerVisualModelExport.js +2 -2
- package/esm5/lib/DateTimeValueFormatter.js +2 -2
- package/esm5/lib/DayInfo.js +2 -2
- package/esm5/lib/ElevationHelper.js +2 -2
- package/esm5/lib/GotFocusEventArgs.js +2 -2
- package/esm5/lib/IconClickedEventArgs.js +2 -2
- package/esm5/lib/IconView_combined.js +600 -362
- package/esm5/lib/IconVisualModelExport.js +3 -3
- package/esm5/lib/InputChangeEventArgs.js +4 -4
- package/esm5/lib/InputGroupView_combined.js +2534 -2246
- package/esm5/lib/InputGroupVisualModelExport.js +2 -2
- package/esm5/lib/InputVisualModelExport.js +2 -2
- package/esm5/lib/LabelVisualModelExport.js +2 -2
- package/esm5/lib/LostFocusEventArgs.js +2 -2
- package/esm5/lib/MaskOptions.js +2 -2
- package/esm5/lib/MaskParsingService.js +5 -5
- package/esm5/lib/NativeUIXInputsFactory.js +69 -27
- package/esm5/lib/PrefixVisualModelExport.js +2 -2
- package/esm5/lib/Replaced.js +2 -2
- package/esm5/lib/RippleView_combined.js +17 -17
- package/esm5/lib/RippleVisualModelExport.js +2 -2
- package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
- package/esm5/lib/SuffixVisualModelExport.js +2 -2
- package/esm5/lib/TextElementsVisualModelExport.js +2 -2
- package/esm5/lib/Theme.js +58 -0
- package/esm5/lib/ThemeResolver.js +137 -11
- package/esm5/lib/XButtonBridge.js +220 -24
- package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
- package/esm5/lib/XCheckboxBridge.js +27 -18
- package/esm5/lib/XComponentBridge.js +26 -8
- package/esm5/lib/XIconBridge.js +95 -0
- package/esm5/lib/XIconButtonBridge.js +47 -35
- package/esm5/lib/XInputBridge.js +93 -40
- package/esm5/lib/XPopupBridge.js +289 -0
- package/esm5/lib/igc-button-click-event-args.js +1 -1
- package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
- package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
- package/esm5/lib/igc-date-picker-component.js +80 -78
- package/esm5/lib/igc-got-focus-event-args.js +1 -1
- package/esm5/lib/igc-input-change-event-args.js +3 -3
- package/esm5/lib/igc-lost-focus-event-args.js +1 -1
- package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
- package/esm5/lib/igc-x-button-component.js +908 -710
- package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
- package/esm5/lib/igc-x-button-group-component.js +73 -73
- package/esm5/lib/igc-x-calendar-component.js +30 -30
- package/esm5/lib/igc-x-checkbox-component.js +117 -117
- package/esm5/lib/igc-x-icon-component.js +297 -136
- package/esm5/lib/igc-x-input-component.js +104 -78
- package/esm5/lib/igc-x-input-group-component.js +716 -716
- package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
- package/esm5/lib/igc-x-input-group-item-component.js +6 -6
- package/esm5/lib/igc-x-label-component.js +30 -30
- package/esm5/lib/igc-x-prefix-component.js +9 -9
- package/esm5/lib/igc-x-ripple-component.js +19 -19
- package/esm5/lib/igc-x-suffix-component.js +9 -9
- package/esm5/public_api.js +3 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
- package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
- package/lib/ButtonGroupView_combined.d.ts +136 -70
- package/lib/ButtonView_combined.d.ts +609 -583
- package/lib/CalendarView_combined.d.ts +43 -22
- package/lib/CheckboxChangeEventArgs.d.ts +4 -2
- package/lib/CheckboxView_combined.d.ts +150 -117
- package/lib/DatePickerView_combined.d.ts +109 -81
- package/lib/IconView_combined.d.ts +164 -93
- package/lib/IconVisualModelExport.d.ts +2 -1
- package/lib/InputChangeEventArgs.d.ts +4 -2
- package/lib/InputGroupView_combined.d.ts +771 -771
- package/lib/NativeUIXInputsFactory.d.ts +6 -4
- package/lib/RippleView_combined.d.ts +19 -10
- package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
- package/lib/Theme.d.ts +15 -0
- package/lib/ThemeResolver.d.ts +44 -6
- package/lib/XButtonBridge.d.ts +23 -5
- package/lib/XCheckboxBridge.d.ts +3 -3
- package/lib/XComponentBridge.d.ts +2 -1
- package/lib/XIconBridge.d.ts +14 -0
- package/lib/XIconButtonBridge.d.ts +4 -4
- package/lib/XInputBridge.d.ts +11 -7
- package/lib/XPopupBridge.d.ts +52 -0
- package/lib/igc-button-click-event-args.d.ts +1 -1
- package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
- package/lib/igc-checkbox-change-event-args.d.ts +5 -3
- package/lib/igc-date-picker-component.d.ts +65 -34
- package/lib/igc-got-focus-event-args.d.ts +1 -1
- package/lib/igc-input-change-event-args.d.ts +5 -3
- package/lib/igc-lost-focus-event-args.d.ts +1 -1
- package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
- package/lib/igc-x-button-component.d.ts +399 -173
- package/lib/igc-x-button-group-component.d.ts +136 -70
- package/lib/igc-x-calendar-component.d.ts +53 -28
- package/lib/igc-x-checkbox-component.d.ts +71 -37
- package/lib/igc-x-icon-component.d.ts +140 -44
- package/lib/igc-x-input-component.d.ts +69 -32
- package/lib/igc-x-input-group-component.d.ts +325 -165
- package/lib/igc-x-input-group-item-component.d.ts +5 -4
- package/lib/igc-x-label-component.d.ts +52 -27
- package/lib/igc-x-prefix-component.d.ts +10 -6
- package/lib/igc-x-ripple-component.d.ts +31 -17
- package/lib/igc-x-suffix-component.d.ts +10 -6
- package/package.json +2 -2
- package/public_api.d.ts +3 -0
|
@@ -15,6 +15,34 @@ import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
|
|
|
15
15
|
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
16
16
|
export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
17
17
|
class IgcXInputGroupComponent extends IgcHTMLElement {
|
|
18
|
+
/**
|
|
19
|
+
* A collection or manually added axes for the chart.
|
|
20
|
+
*/
|
|
21
|
+
get inputs() {
|
|
22
|
+
if (this._inputs === null) {
|
|
23
|
+
let coll = new IgcXInputGroupInputCollection();
|
|
24
|
+
let inner = coll._innerColl;
|
|
25
|
+
inner.addListener((sender, e) => {
|
|
26
|
+
switch (e.action) {
|
|
27
|
+
case NotifyCollectionChangedAction.Add:
|
|
28
|
+
this._inputsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
|
|
29
|
+
break;
|
|
30
|
+
case NotifyCollectionChangedAction.Remove:
|
|
31
|
+
this._inputsAdapter.removeManualItemAt(e.oldStartingIndex);
|
|
32
|
+
break;
|
|
33
|
+
case NotifyCollectionChangedAction.Replace:
|
|
34
|
+
this._inputsAdapter.removeManualItemAt(e.oldStartingIndex);
|
|
35
|
+
this._inputsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
|
|
36
|
+
break;
|
|
37
|
+
case NotifyCollectionChangedAction.Reset:
|
|
38
|
+
this._inputsAdapter.clearManualItems();
|
|
39
|
+
break;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
this._inputs = coll;
|
|
43
|
+
}
|
|
44
|
+
return this._inputs;
|
|
45
|
+
}
|
|
18
46
|
constructor() {
|
|
19
47
|
super();
|
|
20
48
|
this.contentInputs = [];
|
|
@@ -78,34 +106,6 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
78
106
|
// this._checkbox.notifySizeChanged();
|
|
79
107
|
//});
|
|
80
108
|
}
|
|
81
|
-
/**
|
|
82
|
-
* A collection or manually added axes for the chart.
|
|
83
|
-
*/
|
|
84
|
-
get inputs() {
|
|
85
|
-
if (this._inputs === null) {
|
|
86
|
-
let coll = new IgcXInputGroupInputCollection();
|
|
87
|
-
let inner = coll._innerColl;
|
|
88
|
-
inner.addListener((sender, e) => {
|
|
89
|
-
switch (e.action) {
|
|
90
|
-
case NotifyCollectionChangedAction.Add:
|
|
91
|
-
this._inputsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
|
|
92
|
-
break;
|
|
93
|
-
case NotifyCollectionChangedAction.Remove:
|
|
94
|
-
this._inputsAdapter.removeManualItemAt(e.oldStartingIndex);
|
|
95
|
-
break;
|
|
96
|
-
case NotifyCollectionChangedAction.Replace:
|
|
97
|
-
this._inputsAdapter.removeManualItemAt(e.oldStartingIndex);
|
|
98
|
-
this._inputsAdapter.insertManualItem(e.newStartingIndex, e.newItems.item(0));
|
|
99
|
-
break;
|
|
100
|
-
case NotifyCollectionChangedAction.Reset:
|
|
101
|
-
this._inputsAdapter.clearManualItems();
|
|
102
|
-
break;
|
|
103
|
-
}
|
|
104
|
-
});
|
|
105
|
-
this._inputs = coll;
|
|
106
|
-
}
|
|
107
|
-
return this._inputs;
|
|
108
|
-
}
|
|
109
109
|
_onChildrenChanged() {
|
|
110
110
|
var children = [];
|
|
111
111
|
for (var i = 0; i < this.childNodes.length; i++) {
|
|
@@ -265,1607 +265,1607 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
265
265
|
* Gets or sets the display density to use for the input group.
|
|
266
266
|
*/
|
|
267
267
|
get density() {
|
|
268
|
-
return this.i.
|
|
268
|
+
return this.i.t;
|
|
269
269
|
}
|
|
270
270
|
set density(v) {
|
|
271
|
-
this.i.
|
|
272
|
-
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.
|
|
271
|
+
this.i.t = ensureEnum(ControlDisplayDensity_$type, v);
|
|
272
|
+
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.t));
|
|
273
273
|
}
|
|
274
274
|
/**
|
|
275
275
|
* Gets the actual display density to use for the input group.
|
|
276
276
|
*/
|
|
277
277
|
get actualDensity() {
|
|
278
|
-
return this.i.
|
|
278
|
+
return this.i.s;
|
|
279
279
|
}
|
|
280
280
|
set actualDensity(v) {
|
|
281
|
-
this.i.
|
|
282
|
-
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.
|
|
281
|
+
this.i.s = ensureEnum(ControlDisplayDensity_$type, v);
|
|
282
|
+
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.s));
|
|
283
283
|
}
|
|
284
284
|
/**
|
|
285
285
|
* Gets or sets the base built in theme to use for the label.
|
|
286
286
|
*/
|
|
287
287
|
get baseTheme() {
|
|
288
|
-
return this.i.
|
|
288
|
+
return this.i.p;
|
|
289
289
|
}
|
|
290
290
|
set baseTheme(v) {
|
|
291
|
-
this.i.
|
|
292
|
-
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.
|
|
291
|
+
this.i.p = ensureEnum(BaseControlTheme_$type, v);
|
|
292
|
+
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.p));
|
|
293
293
|
}
|
|
294
294
|
get inputHasValue() {
|
|
295
|
-
return this.i.
|
|
295
|
+
return this.i.al;
|
|
296
296
|
}
|
|
297
297
|
/**
|
|
298
298
|
* Gets the actual item background color.
|
|
299
299
|
*/
|
|
300
300
|
get actualBorderColor() {
|
|
301
|
-
return brushToString(this.i.
|
|
301
|
+
return brushToString(this.i.l6);
|
|
302
302
|
}
|
|
303
303
|
set actualBorderColor(v) {
|
|
304
|
-
this.i.
|
|
305
|
-
this._a("actualBorderColor", brushToString(this.i.
|
|
304
|
+
this.i.l6 = stringToBrush(v);
|
|
305
|
+
this._a("actualBorderColor", brushToString(this.i.l6));
|
|
306
306
|
}
|
|
307
307
|
/**
|
|
308
308
|
* Gets the actual item border color.
|
|
309
309
|
*/
|
|
310
310
|
get actualFocusBorderColor() {
|
|
311
|
-
return brushToString(this.i.
|
|
311
|
+
return brushToString(this.i.l7);
|
|
312
312
|
}
|
|
313
313
|
set actualFocusBorderColor(v) {
|
|
314
|
-
this.i.
|
|
315
|
-
this._a("actualFocusBorderColor", brushToString(this.i.
|
|
314
|
+
this.i.l7 = stringToBrush(v);
|
|
315
|
+
this._a("actualFocusBorderColor", brushToString(this.i.l7));
|
|
316
316
|
}
|
|
317
317
|
/**
|
|
318
318
|
* Gets the actual item border width.
|
|
319
319
|
*/
|
|
320
320
|
get actualBorderWidth() {
|
|
321
|
-
return this.i.
|
|
321
|
+
return this.i.cg;
|
|
322
322
|
}
|
|
323
323
|
set actualBorderWidth(v) {
|
|
324
|
-
this.i.
|
|
325
|
-
this._a("actualBorderWidth", this.i.
|
|
324
|
+
this.i.cg = +v;
|
|
325
|
+
this._a("actualBorderWidth", this.i.cg);
|
|
326
326
|
}
|
|
327
327
|
/**
|
|
328
328
|
* Gets the actual item border width.
|
|
329
329
|
*/
|
|
330
330
|
get actualFocusBorderWidth() {
|
|
331
|
-
return this.i.
|
|
331
|
+
return this.i.ch;
|
|
332
332
|
}
|
|
333
333
|
set actualFocusBorderWidth(v) {
|
|
334
|
-
this.i.
|
|
335
|
-
this._a("actualFocusBorderWidth", this.i.
|
|
334
|
+
this.i.ch = +v;
|
|
335
|
+
this._a("actualFocusBorderWidth", this.i.ch);
|
|
336
336
|
}
|
|
337
337
|
get actualCornerRadiusBottomRight() {
|
|
338
|
-
return this.i.
|
|
338
|
+
return this.i.ko ? this.i.ko.b : NaN;
|
|
339
339
|
}
|
|
340
340
|
set actualCornerRadiusBottomRight(v) {
|
|
341
341
|
this.ensureActualCornerRadius();
|
|
342
|
-
this.i.
|
|
343
|
-
this._a("actualCornerRadiusBottomRight", this.i.
|
|
344
|
-
this.i.
|
|
342
|
+
this.i.ko.b = +v;
|
|
343
|
+
this._a("actualCornerRadiusBottomRight", this.i.ko.b);
|
|
344
|
+
this.i.ko = this.i.ko;
|
|
345
345
|
}
|
|
346
346
|
get actualCornerRadiusBottomLeft() {
|
|
347
|
-
return this.i.
|
|
347
|
+
return this.i.ko ? this.i.ko.a : NaN;
|
|
348
348
|
}
|
|
349
349
|
set actualCornerRadiusBottomLeft(v) {
|
|
350
350
|
this.ensureActualCornerRadius();
|
|
351
|
-
this.i.
|
|
352
|
-
this._a("actualCornerRadiusBottomLeft", this.i.
|
|
353
|
-
this.i.
|
|
351
|
+
this.i.ko.a = +v;
|
|
352
|
+
this._a("actualCornerRadiusBottomLeft", this.i.ko.a);
|
|
353
|
+
this.i.ko = this.i.ko;
|
|
354
354
|
}
|
|
355
355
|
get actualCornerRadiusTopLeft() {
|
|
356
|
-
return this.i.
|
|
356
|
+
return this.i.ko ? this.i.ko.c : NaN;
|
|
357
357
|
}
|
|
358
358
|
set actualCornerRadiusTopLeft(v) {
|
|
359
359
|
this.ensureActualCornerRadius();
|
|
360
|
-
this.i.
|
|
361
|
-
this._a("actualCornerRadiusTopLeft", this.i.
|
|
362
|
-
this.i.
|
|
360
|
+
this.i.ko.c = +v;
|
|
361
|
+
this._a("actualCornerRadiusTopLeft", this.i.ko.c);
|
|
362
|
+
this.i.ko = this.i.ko;
|
|
363
363
|
}
|
|
364
364
|
get actualCornerRadiusTopRight() {
|
|
365
|
-
return this.i.
|
|
365
|
+
return this.i.ko ? this.i.ko.d : NaN;
|
|
366
366
|
}
|
|
367
367
|
set actualCornerRadiusTopRight(v) {
|
|
368
368
|
this.ensureActualCornerRadius();
|
|
369
|
-
this.i.
|
|
370
|
-
this._a("actualCornerRadiusTopRight", this.i.
|
|
371
|
-
this.i.
|
|
369
|
+
this.i.ko.d = +v;
|
|
370
|
+
this._a("actualCornerRadiusTopRight", this.i.ko.d);
|
|
371
|
+
this.i.ko = this.i.ko;
|
|
372
372
|
}
|
|
373
373
|
ensureActualCornerRadius() {
|
|
374
|
-
if (this.i.
|
|
374
|
+
if (this.i.ko) {
|
|
375
375
|
return;
|
|
376
376
|
}
|
|
377
|
-
this.i.
|
|
377
|
+
this.i.ko = new CornerRadius(2);
|
|
378
378
|
}
|
|
379
379
|
get actualContentPaddingBottom() {
|
|
380
|
-
return this.i.
|
|
380
|
+
return this.i.oe ? this.i.oe.bottom : NaN;
|
|
381
381
|
}
|
|
382
382
|
set actualContentPaddingBottom(v) {
|
|
383
383
|
this.ensureActualContentPadding();
|
|
384
|
-
this.i.
|
|
385
|
-
this._a("actualContentPaddingBottom", this.i.
|
|
386
|
-
this.i.
|
|
384
|
+
this.i.oe.bottom = +v;
|
|
385
|
+
this._a("actualContentPaddingBottom", this.i.oe.bottom);
|
|
386
|
+
this.i.oe = this.i.oe;
|
|
387
387
|
}
|
|
388
388
|
get actualContentPaddingLeft() {
|
|
389
|
-
return this.i.
|
|
389
|
+
return this.i.oe ? this.i.oe.left : NaN;
|
|
390
390
|
}
|
|
391
391
|
set actualContentPaddingLeft(v) {
|
|
392
392
|
this.ensureActualContentPadding();
|
|
393
|
-
this.i.
|
|
394
|
-
this._a("actualContentPaddingLeft", this.i.
|
|
395
|
-
this.i.
|
|
393
|
+
this.i.oe.left = +v;
|
|
394
|
+
this._a("actualContentPaddingLeft", this.i.oe.left);
|
|
395
|
+
this.i.oe = this.i.oe;
|
|
396
396
|
}
|
|
397
397
|
get actualContentPaddingRight() {
|
|
398
|
-
return this.i.
|
|
398
|
+
return this.i.oe ? this.i.oe.right : NaN;
|
|
399
399
|
}
|
|
400
400
|
set actualContentPaddingRight(v) {
|
|
401
401
|
this.ensureActualContentPadding();
|
|
402
|
-
this.i.
|
|
403
|
-
this._a("actualContentPaddingRight", this.i.
|
|
404
|
-
this.i.
|
|
402
|
+
this.i.oe.right = +v;
|
|
403
|
+
this._a("actualContentPaddingRight", this.i.oe.right);
|
|
404
|
+
this.i.oe = this.i.oe;
|
|
405
405
|
}
|
|
406
406
|
get actualContentPaddingTop() {
|
|
407
|
-
return this.i.
|
|
407
|
+
return this.i.oe ? this.i.oe.top : NaN;
|
|
408
408
|
}
|
|
409
409
|
set actualContentPaddingTop(v) {
|
|
410
410
|
this.ensureActualContentPadding();
|
|
411
|
-
this.i.
|
|
412
|
-
this._a("actualContentPaddingTop", this.i.
|
|
413
|
-
this.i.
|
|
411
|
+
this.i.oe.top = +v;
|
|
412
|
+
this._a("actualContentPaddingTop", this.i.oe.top);
|
|
413
|
+
this.i.oe = this.i.oe;
|
|
414
414
|
}
|
|
415
415
|
ensureActualContentPadding() {
|
|
416
|
-
if (this.i.
|
|
416
|
+
if (this.i.oe) {
|
|
417
417
|
return;
|
|
418
418
|
}
|
|
419
|
-
this.i.
|
|
419
|
+
this.i.oe = new Thickness(2);
|
|
420
420
|
}
|
|
421
421
|
/**
|
|
422
422
|
* Gets the actual width to use for the underline element.
|
|
423
423
|
*/
|
|
424
424
|
get actualUnderlineWidth() {
|
|
425
|
-
return this.i.
|
|
425
|
+
return this.i.cp;
|
|
426
426
|
}
|
|
427
427
|
set actualUnderlineWidth(v) {
|
|
428
|
-
this.i.
|
|
429
|
-
this._a("actualUnderlineWidth", this.i.
|
|
428
|
+
this.i.cp = +v;
|
|
429
|
+
this._a("actualUnderlineWidth", this.i.cp);
|
|
430
430
|
}
|
|
431
431
|
/**
|
|
432
432
|
* Gets the actual width to use for the underline element.
|
|
433
433
|
*/
|
|
434
434
|
get actualUnderlineRippleWidth() {
|
|
435
|
-
return this.i.
|
|
435
|
+
return this.i.co;
|
|
436
436
|
}
|
|
437
437
|
set actualUnderlineRippleWidth(v) {
|
|
438
|
-
this.i.
|
|
439
|
-
this._a("actualUnderlineRippleWidth", this.i.
|
|
438
|
+
this.i.co = +v;
|
|
439
|
+
this._a("actualUnderlineRippleWidth", this.i.co);
|
|
440
440
|
}
|
|
441
441
|
/**
|
|
442
442
|
* Gets the width to use for the underline element when hovered.
|
|
443
443
|
*/
|
|
444
444
|
get actualHoverUnderlineWidth() {
|
|
445
|
-
return this.i.
|
|
445
|
+
return this.i.cl;
|
|
446
446
|
}
|
|
447
447
|
set actualHoverUnderlineWidth(v) {
|
|
448
|
-
this.i.
|
|
449
|
-
this._a("actualHoverUnderlineWidth", this.i.
|
|
448
|
+
this.i.cl = +v;
|
|
449
|
+
this._a("actualHoverUnderlineWidth", this.i.cl);
|
|
450
450
|
}
|
|
451
451
|
/**
|
|
452
452
|
* Gets the actual color to use for the underline element.
|
|
453
453
|
*/
|
|
454
454
|
get actualUnderlineColor() {
|
|
455
|
-
return brushToString(this.i.
|
|
455
|
+
return brushToString(this.i.ma);
|
|
456
456
|
}
|
|
457
457
|
set actualUnderlineColor(v) {
|
|
458
|
-
this.i.
|
|
459
|
-
this._a("actualUnderlineColor", brushToString(this.i.
|
|
458
|
+
this.i.ma = stringToBrush(v);
|
|
459
|
+
this._a("actualUnderlineColor", brushToString(this.i.ma));
|
|
460
460
|
}
|
|
461
461
|
/**
|
|
462
462
|
* Gets the actual color to use for the underline ripple element.
|
|
463
463
|
*/
|
|
464
464
|
get actualUnderlineRippleColor() {
|
|
465
|
-
return brushToString(this.i.
|
|
465
|
+
return brushToString(this.i.mb);
|
|
466
466
|
}
|
|
467
467
|
set actualUnderlineRippleColor(v) {
|
|
468
|
-
this.i.
|
|
469
|
-
this._a("actualUnderlineRippleColor", brushToString(this.i.
|
|
468
|
+
this.i.mb = stringToBrush(v);
|
|
469
|
+
this._a("actualUnderlineRippleColor", brushToString(this.i.mb));
|
|
470
470
|
}
|
|
471
471
|
/**
|
|
472
472
|
* Gets the actual color to use for the underline element.
|
|
473
473
|
*/
|
|
474
474
|
get actualHoverUnderlineColor() {
|
|
475
|
-
return brushToString(this.i.
|
|
475
|
+
return brushToString(this.i.l9);
|
|
476
476
|
}
|
|
477
477
|
set actualHoverUnderlineColor(v) {
|
|
478
|
-
this.i.
|
|
479
|
-
this._a("actualHoverUnderlineColor", brushToString(this.i.
|
|
478
|
+
this.i.l9 = stringToBrush(v);
|
|
479
|
+
this._a("actualHoverUnderlineColor", brushToString(this.i.l9));
|
|
480
480
|
}
|
|
481
481
|
/**
|
|
482
482
|
* Gets the actual color to use for the underline element when focused.
|
|
483
483
|
*/
|
|
484
484
|
get actualFocusUnderlineColor() {
|
|
485
|
-
return brushToString(this.i.
|
|
485
|
+
return brushToString(this.i.l8);
|
|
486
486
|
}
|
|
487
487
|
set actualFocusUnderlineColor(v) {
|
|
488
|
-
this.i.
|
|
489
|
-
this._a("actualFocusUnderlineColor", brushToString(this.i.
|
|
488
|
+
this.i.l8 = stringToBrush(v);
|
|
489
|
+
this._a("actualFocusUnderlineColor", brushToString(this.i.l8));
|
|
490
490
|
}
|
|
491
491
|
/**
|
|
492
492
|
* Gets the actual opacity to use for the underline element.
|
|
493
493
|
*/
|
|
494
494
|
get actualUnderlineOpacity() {
|
|
495
|
-
return this.i.
|
|
495
|
+
return this.i.cm;
|
|
496
496
|
}
|
|
497
497
|
set actualUnderlineOpacity(v) {
|
|
498
|
-
this.i.
|
|
499
|
-
this._a("actualUnderlineOpacity", this.i.
|
|
498
|
+
this.i.cm = +v;
|
|
499
|
+
this._a("actualUnderlineOpacity", this.i.cm);
|
|
500
500
|
}
|
|
501
501
|
/**
|
|
502
502
|
* Gets the actual opacity to use for the underline element when hovered.
|
|
503
503
|
*/
|
|
504
504
|
get actualHoverUnderlineOpacity() {
|
|
505
|
-
return this.i.
|
|
505
|
+
return this.i.ck;
|
|
506
506
|
}
|
|
507
507
|
set actualHoverUnderlineOpacity(v) {
|
|
508
|
-
this.i.
|
|
509
|
-
this._a("actualHoverUnderlineOpacity", this.i.
|
|
508
|
+
this.i.ck = +v;
|
|
509
|
+
this._a("actualHoverUnderlineOpacity", this.i.ck);
|
|
510
510
|
}
|
|
511
511
|
/**
|
|
512
512
|
* Gets the actual opacity to use for the underline element when focused.
|
|
513
513
|
*/
|
|
514
514
|
get actualFocusUnderlineOpacity() {
|
|
515
|
-
return this.i.
|
|
515
|
+
return this.i.ci;
|
|
516
516
|
}
|
|
517
517
|
set actualFocusUnderlineOpacity(v) {
|
|
518
|
-
this.i.
|
|
519
|
-
this._a("actualFocusUnderlineOpacity", this.i.
|
|
518
|
+
this.i.ci = +v;
|
|
519
|
+
this._a("actualFocusUnderlineOpacity", this.i.ci);
|
|
520
520
|
}
|
|
521
521
|
/**
|
|
522
522
|
* Gets the actual opacity to use for the underline ripple element when focused.
|
|
523
523
|
*/
|
|
524
524
|
get actualFocusUnderlineRippleOpacity() {
|
|
525
|
-
return this.i.
|
|
525
|
+
return this.i.cj;
|
|
526
526
|
}
|
|
527
527
|
set actualFocusUnderlineRippleOpacity(v) {
|
|
528
|
-
this.i.
|
|
529
|
-
this._a("actualFocusUnderlineRippleOpacity", this.i.
|
|
528
|
+
this.i.cj = +v;
|
|
529
|
+
this._a("actualFocusUnderlineRippleOpacity", this.i.cj);
|
|
530
530
|
}
|
|
531
531
|
/**
|
|
532
532
|
* Gets the actual opacity to use for the underline ripple element.
|
|
533
533
|
*/
|
|
534
534
|
get actualUnderlineRippleOpacity() {
|
|
535
|
-
return this.i.
|
|
535
|
+
return this.i.cn;
|
|
536
536
|
}
|
|
537
537
|
set actualUnderlineRippleOpacity(v) {
|
|
538
|
-
this.i.
|
|
539
|
-
this._a("actualUnderlineRippleOpacity", this.i.
|
|
538
|
+
this.i.cn = +v;
|
|
539
|
+
this._a("actualUnderlineRippleOpacity", this.i.cn);
|
|
540
540
|
}
|
|
541
541
|
/**
|
|
542
542
|
* Gets the actual opacity to use for the underline ripple element.
|
|
543
543
|
*/
|
|
544
544
|
get actualBackgroundColor() {
|
|
545
|
-
return brushToString(this.i.
|
|
545
|
+
return brushToString(this.i.l5);
|
|
546
546
|
}
|
|
547
547
|
set actualBackgroundColor(v) {
|
|
548
|
-
this.i.
|
|
549
|
-
this._a("actualBackgroundColor", brushToString(this.i.
|
|
548
|
+
this.i.l5 = stringToBrush(v);
|
|
549
|
+
this._a("actualBackgroundColor", brushToString(this.i.l5));
|
|
550
550
|
}
|
|
551
551
|
/**
|
|
552
552
|
* Gets or sets the border width to use for the border of the item group.
|
|
553
553
|
*/
|
|
554
554
|
get borderWidth() {
|
|
555
|
-
return this.i.
|
|
555
|
+
return this.i.c0;
|
|
556
556
|
}
|
|
557
557
|
set borderWidth(v) {
|
|
558
|
-
this.i.
|
|
559
|
-
this._a("borderWidth", this.i.
|
|
558
|
+
this.i.c0 = +v;
|
|
559
|
+
this._a("borderWidth", this.i.c0);
|
|
560
560
|
}
|
|
561
561
|
/**
|
|
562
562
|
* Gets or sets the border width to use for the border of the item group when focused.
|
|
563
563
|
*/
|
|
564
564
|
get focusBorderWidth() {
|
|
565
|
-
return this.i.
|
|
565
|
+
return this.i.eg;
|
|
566
566
|
}
|
|
567
567
|
set focusBorderWidth(v) {
|
|
568
|
-
this.i.
|
|
569
|
-
this._a("focusBorderWidth", this.i.
|
|
568
|
+
this.i.eg = +v;
|
|
569
|
+
this._a("focusBorderWidth", this.i.eg);
|
|
570
570
|
}
|
|
571
571
|
/**
|
|
572
572
|
* Gets or sets the color to use the border of the input group.
|
|
573
573
|
*/
|
|
574
574
|
get borderColor() {
|
|
575
|
-
return brushToString(this.i.
|
|
575
|
+
return brushToString(this.i.md);
|
|
576
576
|
}
|
|
577
577
|
set borderColor(v) {
|
|
578
|
-
this.i.
|
|
579
|
-
this._a("borderColor", brushToString(this.i.
|
|
578
|
+
this.i.md = stringToBrush(v);
|
|
579
|
+
this._a("borderColor", brushToString(this.i.md));
|
|
580
580
|
}
|
|
581
581
|
get cornerRadiusBottomRight() {
|
|
582
|
-
return this.i.
|
|
582
|
+
return this.i.ks ? this.i.ks.b : NaN;
|
|
583
583
|
}
|
|
584
584
|
set cornerRadiusBottomRight(v) {
|
|
585
585
|
this.ensureCornerRadius();
|
|
586
|
-
this.i.
|
|
587
|
-
this._a("cornerRadiusBottomRight", this.i.
|
|
588
|
-
this.i.
|
|
586
|
+
this.i.ks.b = +v;
|
|
587
|
+
this._a("cornerRadiusBottomRight", this.i.ks.b);
|
|
588
|
+
this.i.ks = this.i.ks;
|
|
589
589
|
}
|
|
590
590
|
get cornerRadiusBottomLeft() {
|
|
591
|
-
return this.i.
|
|
591
|
+
return this.i.ks ? this.i.ks.a : NaN;
|
|
592
592
|
}
|
|
593
593
|
set cornerRadiusBottomLeft(v) {
|
|
594
594
|
this.ensureCornerRadius();
|
|
595
|
-
this.i.
|
|
596
|
-
this._a("cornerRadiusBottomLeft", this.i.
|
|
597
|
-
this.i.
|
|
595
|
+
this.i.ks.a = +v;
|
|
596
|
+
this._a("cornerRadiusBottomLeft", this.i.ks.a);
|
|
597
|
+
this.i.ks = this.i.ks;
|
|
598
598
|
}
|
|
599
599
|
get cornerRadiusTopLeft() {
|
|
600
|
-
return this.i.
|
|
600
|
+
return this.i.ks ? this.i.ks.c : NaN;
|
|
601
601
|
}
|
|
602
602
|
set cornerRadiusTopLeft(v) {
|
|
603
603
|
this.ensureCornerRadius();
|
|
604
|
-
this.i.
|
|
605
|
-
this._a("cornerRadiusTopLeft", this.i.
|
|
606
|
-
this.i.
|
|
604
|
+
this.i.ks.c = +v;
|
|
605
|
+
this._a("cornerRadiusTopLeft", this.i.ks.c);
|
|
606
|
+
this.i.ks = this.i.ks;
|
|
607
607
|
}
|
|
608
608
|
get cornerRadiusTopRight() {
|
|
609
|
-
return this.i.
|
|
609
|
+
return this.i.ks ? this.i.ks.d : NaN;
|
|
610
610
|
}
|
|
611
611
|
set cornerRadiusTopRight(v) {
|
|
612
612
|
this.ensureCornerRadius();
|
|
613
|
-
this.i.
|
|
614
|
-
this._a("cornerRadiusTopRight", this.i.
|
|
615
|
-
this.i.
|
|
613
|
+
this.i.ks.d = +v;
|
|
614
|
+
this._a("cornerRadiusTopRight", this.i.ks.d);
|
|
615
|
+
this.i.ks = this.i.ks;
|
|
616
616
|
}
|
|
617
617
|
ensureCornerRadius() {
|
|
618
|
-
if (this.i.
|
|
618
|
+
if (this.i.ks) {
|
|
619
619
|
return;
|
|
620
620
|
}
|
|
621
|
-
this.i.
|
|
621
|
+
this.i.ks = new CornerRadius(2);
|
|
622
622
|
}
|
|
623
623
|
get contentPaddingBottom() {
|
|
624
|
-
return this.i.
|
|
624
|
+
return this.i.oi ? this.i.oi.bottom : NaN;
|
|
625
625
|
}
|
|
626
626
|
set contentPaddingBottom(v) {
|
|
627
627
|
this.ensureContentPadding();
|
|
628
|
-
this.i.
|
|
629
|
-
this._a("contentPaddingBottom", this.i.
|
|
630
|
-
this.i.
|
|
628
|
+
this.i.oi.bottom = +v;
|
|
629
|
+
this._a("contentPaddingBottom", this.i.oi.bottom);
|
|
630
|
+
this.i.oi = this.i.oi;
|
|
631
631
|
}
|
|
632
632
|
get contentPaddingLeft() {
|
|
633
|
-
return this.i.
|
|
633
|
+
return this.i.oi ? this.i.oi.left : NaN;
|
|
634
634
|
}
|
|
635
635
|
set contentPaddingLeft(v) {
|
|
636
636
|
this.ensureContentPadding();
|
|
637
|
-
this.i.
|
|
638
|
-
this._a("contentPaddingLeft", this.i.
|
|
639
|
-
this.i.
|
|
637
|
+
this.i.oi.left = +v;
|
|
638
|
+
this._a("contentPaddingLeft", this.i.oi.left);
|
|
639
|
+
this.i.oi = this.i.oi;
|
|
640
640
|
}
|
|
641
641
|
get contentPaddingRight() {
|
|
642
|
-
return this.i.
|
|
642
|
+
return this.i.oi ? this.i.oi.right : NaN;
|
|
643
643
|
}
|
|
644
644
|
set contentPaddingRight(v) {
|
|
645
645
|
this.ensureContentPadding();
|
|
646
|
-
this.i.
|
|
647
|
-
this._a("contentPaddingRight", this.i.
|
|
648
|
-
this.i.
|
|
646
|
+
this.i.oi.right = +v;
|
|
647
|
+
this._a("contentPaddingRight", this.i.oi.right);
|
|
648
|
+
this.i.oi = this.i.oi;
|
|
649
649
|
}
|
|
650
650
|
get contentPaddingTop() {
|
|
651
|
-
return this.i.
|
|
651
|
+
return this.i.oi ? this.i.oi.top : NaN;
|
|
652
652
|
}
|
|
653
653
|
set contentPaddingTop(v) {
|
|
654
654
|
this.ensureContentPadding();
|
|
655
|
-
this.i.
|
|
656
|
-
this._a("contentPaddingTop", this.i.
|
|
657
|
-
this.i.
|
|
655
|
+
this.i.oi.top = +v;
|
|
656
|
+
this._a("contentPaddingTop", this.i.oi.top);
|
|
657
|
+
this.i.oi = this.i.oi;
|
|
658
658
|
}
|
|
659
659
|
ensureContentPadding() {
|
|
660
|
-
if (this.i.
|
|
660
|
+
if (this.i.oi) {
|
|
661
661
|
return;
|
|
662
662
|
}
|
|
663
|
-
this.i.
|
|
663
|
+
this.i.oi = new Thickness(2);
|
|
664
664
|
}
|
|
665
665
|
/**
|
|
666
666
|
* Gets or sets the width to use for the underline element.
|
|
667
667
|
*/
|
|
668
668
|
get underlineWidth() {
|
|
669
|
-
return this.i.
|
|
669
|
+
return this.i.e8;
|
|
670
670
|
}
|
|
671
671
|
set underlineWidth(v) {
|
|
672
|
-
this.i.
|
|
673
|
-
this._a("underlineWidth", this.i.
|
|
672
|
+
this.i.e8 = +v;
|
|
673
|
+
this._a("underlineWidth", this.i.e8);
|
|
674
674
|
}
|
|
675
675
|
/**
|
|
676
676
|
* Gets or sets the width to use for the underline element.
|
|
677
677
|
*/
|
|
678
678
|
get underlineRippleWidth() {
|
|
679
|
-
return this.i.
|
|
679
|
+
return this.i.e7;
|
|
680
680
|
}
|
|
681
681
|
set underlineRippleWidth(v) {
|
|
682
|
-
this.i.
|
|
683
|
-
this._a("underlineRippleWidth", this.i.
|
|
682
|
+
this.i.e7 = +v;
|
|
683
|
+
this._a("underlineRippleWidth", this.i.e7);
|
|
684
684
|
}
|
|
685
685
|
/**
|
|
686
686
|
* Gets or sets the width to use for the underline element when hovered.
|
|
687
687
|
*/
|
|
688
688
|
get hoverUnderlineWidth() {
|
|
689
|
-
return this.i.
|
|
689
|
+
return this.i.ek;
|
|
690
690
|
}
|
|
691
691
|
set hoverUnderlineWidth(v) {
|
|
692
|
-
this.i.
|
|
693
|
-
this._a("hoverUnderlineWidth", this.i.
|
|
692
|
+
this.i.ek = +v;
|
|
693
|
+
this._a("hoverUnderlineWidth", this.i.ek);
|
|
694
694
|
}
|
|
695
695
|
/**
|
|
696
696
|
* Gets or sets the color to use for the underline element.
|
|
697
697
|
*/
|
|
698
698
|
get underlineColor() {
|
|
699
|
-
return brushToString(this.i.
|
|
699
|
+
return brushToString(this.i.n6);
|
|
700
700
|
}
|
|
701
701
|
set underlineColor(v) {
|
|
702
|
-
this.i.
|
|
703
|
-
this._a("underlineColor", brushToString(this.i.
|
|
702
|
+
this.i.n6 = stringToBrush(v);
|
|
703
|
+
this._a("underlineColor", brushToString(this.i.n6));
|
|
704
704
|
}
|
|
705
705
|
/**
|
|
706
706
|
* Gets or sets the color to use for the underline ripple element.
|
|
707
707
|
*/
|
|
708
708
|
get underlineRippleColor() {
|
|
709
|
-
return brushToString(this.i.
|
|
709
|
+
return brushToString(this.i.n7);
|
|
710
710
|
}
|
|
711
711
|
set underlineRippleColor(v) {
|
|
712
|
-
this.i.
|
|
713
|
-
this._a("underlineRippleColor", brushToString(this.i.
|
|
712
|
+
this.i.n7 = stringToBrush(v);
|
|
713
|
+
this._a("underlineRippleColor", brushToString(this.i.n7));
|
|
714
714
|
}
|
|
715
715
|
/**
|
|
716
716
|
* Gets or sets the color to use for the underline element.
|
|
717
717
|
*/
|
|
718
718
|
get hoverUnderlineColor() {
|
|
719
|
-
return brushToString(this.i.
|
|
719
|
+
return brushToString(this.i.nq);
|
|
720
720
|
}
|
|
721
721
|
set hoverUnderlineColor(v) {
|
|
722
|
-
this.i.
|
|
723
|
-
this._a("hoverUnderlineColor", brushToString(this.i.
|
|
722
|
+
this.i.nq = stringToBrush(v);
|
|
723
|
+
this._a("hoverUnderlineColor", brushToString(this.i.nq));
|
|
724
724
|
}
|
|
725
725
|
/**
|
|
726
726
|
* Gets or sets the color to use for the underline element.
|
|
727
727
|
*/
|
|
728
728
|
get focusUnderlineColor() {
|
|
729
|
-
return brushToString(this.i.
|
|
729
|
+
return brushToString(this.i.np);
|
|
730
730
|
}
|
|
731
731
|
set focusUnderlineColor(v) {
|
|
732
|
-
this.i.
|
|
733
|
-
this._a("focusUnderlineColor", brushToString(this.i.
|
|
732
|
+
this.i.np = stringToBrush(v);
|
|
733
|
+
this._a("focusUnderlineColor", brushToString(this.i.np));
|
|
734
734
|
}
|
|
735
735
|
/**
|
|
736
736
|
* Gets or sets the color to use for the underline element.
|
|
737
737
|
*/
|
|
738
738
|
get underlineOpacity() {
|
|
739
|
-
return this.i.
|
|
739
|
+
return this.i.e5;
|
|
740
740
|
}
|
|
741
741
|
set underlineOpacity(v) {
|
|
742
|
-
this.i.
|
|
743
|
-
this._a("underlineOpacity", this.i.
|
|
742
|
+
this.i.e5 = +v;
|
|
743
|
+
this._a("underlineOpacity", this.i.e5);
|
|
744
744
|
}
|
|
745
745
|
/**
|
|
746
746
|
* Gets or sets the color to use for the underline element.
|
|
747
747
|
*/
|
|
748
748
|
get hoverUnderlineOpacity() {
|
|
749
|
-
return this.i.
|
|
749
|
+
return this.i.ej;
|
|
750
750
|
}
|
|
751
751
|
set hoverUnderlineOpacity(v) {
|
|
752
|
-
this.i.
|
|
753
|
-
this._a("hoverUnderlineOpacity", this.i.
|
|
752
|
+
this.i.ej = +v;
|
|
753
|
+
this._a("hoverUnderlineOpacity", this.i.ej);
|
|
754
754
|
}
|
|
755
755
|
/**
|
|
756
756
|
* Gets or sets the color to use for the underline element.
|
|
757
757
|
*/
|
|
758
758
|
get focusUnderlineOpacity() {
|
|
759
|
-
return this.i.
|
|
759
|
+
return this.i.eh;
|
|
760
760
|
}
|
|
761
761
|
set focusUnderlineOpacity(v) {
|
|
762
|
-
this.i.
|
|
763
|
-
this._a("focusUnderlineOpacity", this.i.
|
|
762
|
+
this.i.eh = +v;
|
|
763
|
+
this._a("focusUnderlineOpacity", this.i.eh);
|
|
764
764
|
}
|
|
765
765
|
/**
|
|
766
766
|
* Gets or sets the opacity to use for the underline ripple element when focused.
|
|
767
767
|
*/
|
|
768
768
|
get focusUnderlineRippleOpacity() {
|
|
769
|
-
return this.i.
|
|
769
|
+
return this.i.ei;
|
|
770
770
|
}
|
|
771
771
|
set focusUnderlineRippleOpacity(v) {
|
|
772
|
-
this.i.
|
|
773
|
-
this._a("focusUnderlineRippleOpacity", this.i.
|
|
772
|
+
this.i.ei = +v;
|
|
773
|
+
this._a("focusUnderlineRippleOpacity", this.i.ei);
|
|
774
774
|
}
|
|
775
775
|
/**
|
|
776
776
|
* Gets or sets the opacity to use for the underline ripple element.
|
|
777
777
|
*/
|
|
778
778
|
get underlineRippleOpacity() {
|
|
779
|
-
return this.i.
|
|
779
|
+
return this.i.e6;
|
|
780
780
|
}
|
|
781
781
|
set underlineRippleOpacity(v) {
|
|
782
|
-
this.i.
|
|
783
|
-
this._a("underlineRippleOpacity", this.i.
|
|
782
|
+
this.i.e6 = +v;
|
|
783
|
+
this._a("underlineRippleOpacity", this.i.e6);
|
|
784
784
|
}
|
|
785
785
|
/**
|
|
786
786
|
* Gets or sets the background color to use for the input group.
|
|
787
787
|
*/
|
|
788
788
|
get backgroundColor() {
|
|
789
|
-
return brushToString(this.i.
|
|
789
|
+
return brushToString(this.i.mc);
|
|
790
790
|
}
|
|
791
791
|
set backgroundColor(v) {
|
|
792
|
-
this.i.
|
|
793
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
792
|
+
this.i.mc = stringToBrush(v);
|
|
793
|
+
this._a("backgroundColor", brushToString(this.i.mc));
|
|
794
794
|
}
|
|
795
795
|
/**
|
|
796
796
|
* Gets or sets the border width to use for the border of the item group when using type line.
|
|
797
797
|
*/
|
|
798
798
|
get lineTypeBorderWidth() {
|
|
799
|
-
return this.i.
|
|
799
|
+
return this.i.el;
|
|
800
800
|
}
|
|
801
801
|
set lineTypeBorderWidth(v) {
|
|
802
|
-
this.i.
|
|
803
|
-
this._a("lineTypeBorderWidth", this.i.
|
|
802
|
+
this.i.el = +v;
|
|
803
|
+
this._a("lineTypeBorderWidth", this.i.el);
|
|
804
804
|
}
|
|
805
805
|
/**
|
|
806
806
|
* Gets or sets the border width to use for the border of the item group when focused when type is line.
|
|
807
807
|
*/
|
|
808
808
|
get lineTypeFocusBorderWidth() {
|
|
809
|
-
return this.i.
|
|
809
|
+
return this.i.em;
|
|
810
810
|
}
|
|
811
811
|
set lineTypeFocusBorderWidth(v) {
|
|
812
|
-
this.i.
|
|
813
|
-
this._a("lineTypeFocusBorderWidth", this.i.
|
|
812
|
+
this.i.em = +v;
|
|
813
|
+
this._a("lineTypeFocusBorderWidth", this.i.em);
|
|
814
814
|
}
|
|
815
815
|
/**
|
|
816
816
|
* Gets or sets the focus color to use the border of the input group when type is line.
|
|
817
817
|
*/
|
|
818
818
|
get lineTypeFocusBorderColor() {
|
|
819
|
-
return brushToString(this.i.
|
|
819
|
+
return brushToString(this.i.nt);
|
|
820
820
|
}
|
|
821
821
|
set lineTypeFocusBorderColor(v) {
|
|
822
|
-
this.i.
|
|
823
|
-
this._a("lineTypeFocusBorderColor", brushToString(this.i.
|
|
822
|
+
this.i.nt = stringToBrush(v);
|
|
823
|
+
this._a("lineTypeFocusBorderColor", brushToString(this.i.nt));
|
|
824
824
|
}
|
|
825
825
|
/**
|
|
826
826
|
* Gets or sets the color to use the border of the input group when type is line.
|
|
827
827
|
*/
|
|
828
828
|
get lineTypeBorderColor() {
|
|
829
|
-
return brushToString(this.i.
|
|
829
|
+
return brushToString(this.i.ns);
|
|
830
830
|
}
|
|
831
831
|
set lineTypeBorderColor(v) {
|
|
832
|
-
this.i.
|
|
833
|
-
this._a("lineTypeBorderColor", brushToString(this.i.
|
|
832
|
+
this.i.ns = stringToBrush(v);
|
|
833
|
+
this._a("lineTypeBorderColor", brushToString(this.i.ns));
|
|
834
834
|
}
|
|
835
835
|
get lineTypeCornerRadiusBottomRight() {
|
|
836
|
-
return this.i.
|
|
836
|
+
return this.i.kx ? this.i.kx.b : NaN;
|
|
837
837
|
}
|
|
838
838
|
set lineTypeCornerRadiusBottomRight(v) {
|
|
839
839
|
this.ensureLineTypeCornerRadius();
|
|
840
|
-
this.i.
|
|
841
|
-
this._a("lineTypeCornerRadiusBottomRight", this.i.
|
|
842
|
-
this.i.
|
|
840
|
+
this.i.kx.b = +v;
|
|
841
|
+
this._a("lineTypeCornerRadiusBottomRight", this.i.kx.b);
|
|
842
|
+
this.i.kx = this.i.kx;
|
|
843
843
|
}
|
|
844
844
|
get lineTypeCornerRadiusBottomLeft() {
|
|
845
|
-
return this.i.
|
|
845
|
+
return this.i.kx ? this.i.kx.a : NaN;
|
|
846
846
|
}
|
|
847
847
|
set lineTypeCornerRadiusBottomLeft(v) {
|
|
848
848
|
this.ensureLineTypeCornerRadius();
|
|
849
|
-
this.i.
|
|
850
|
-
this._a("lineTypeCornerRadiusBottomLeft", this.i.
|
|
851
|
-
this.i.
|
|
849
|
+
this.i.kx.a = +v;
|
|
850
|
+
this._a("lineTypeCornerRadiusBottomLeft", this.i.kx.a);
|
|
851
|
+
this.i.kx = this.i.kx;
|
|
852
852
|
}
|
|
853
853
|
get lineTypeCornerRadiusTopLeft() {
|
|
854
|
-
return this.i.
|
|
854
|
+
return this.i.kx ? this.i.kx.c : NaN;
|
|
855
855
|
}
|
|
856
856
|
set lineTypeCornerRadiusTopLeft(v) {
|
|
857
857
|
this.ensureLineTypeCornerRadius();
|
|
858
|
-
this.i.
|
|
859
|
-
this._a("lineTypeCornerRadiusTopLeft", this.i.
|
|
860
|
-
this.i.
|
|
858
|
+
this.i.kx.c = +v;
|
|
859
|
+
this._a("lineTypeCornerRadiusTopLeft", this.i.kx.c);
|
|
860
|
+
this.i.kx = this.i.kx;
|
|
861
861
|
}
|
|
862
862
|
get lineTypeCornerRadiusTopRight() {
|
|
863
|
-
return this.i.
|
|
863
|
+
return this.i.kx ? this.i.kx.d : NaN;
|
|
864
864
|
}
|
|
865
865
|
set lineTypeCornerRadiusTopRight(v) {
|
|
866
866
|
this.ensureLineTypeCornerRadius();
|
|
867
|
-
this.i.
|
|
868
|
-
this._a("lineTypeCornerRadiusTopRight", this.i.
|
|
869
|
-
this.i.
|
|
867
|
+
this.i.kx.d = +v;
|
|
868
|
+
this._a("lineTypeCornerRadiusTopRight", this.i.kx.d);
|
|
869
|
+
this.i.kx = this.i.kx;
|
|
870
870
|
}
|
|
871
871
|
ensureLineTypeCornerRadius() {
|
|
872
|
-
if (this.i.
|
|
872
|
+
if (this.i.kx) {
|
|
873
873
|
return;
|
|
874
874
|
}
|
|
875
|
-
this.i.
|
|
875
|
+
this.i.kx = new CornerRadius(2);
|
|
876
876
|
}
|
|
877
877
|
get lineTypeContentPaddingBottom() {
|
|
878
|
-
return this.i.
|
|
878
|
+
return this.i.on ? this.i.on.bottom : NaN;
|
|
879
879
|
}
|
|
880
880
|
set lineTypeContentPaddingBottom(v) {
|
|
881
881
|
this.ensureLineTypeContentPadding();
|
|
882
|
-
this.i.
|
|
883
|
-
this._a("lineTypeContentPaddingBottom", this.i.
|
|
884
|
-
this.i.
|
|
882
|
+
this.i.on.bottom = +v;
|
|
883
|
+
this._a("lineTypeContentPaddingBottom", this.i.on.bottom);
|
|
884
|
+
this.i.on = this.i.on;
|
|
885
885
|
}
|
|
886
886
|
get lineTypeContentPaddingLeft() {
|
|
887
|
-
return this.i.
|
|
887
|
+
return this.i.on ? this.i.on.left : NaN;
|
|
888
888
|
}
|
|
889
889
|
set lineTypeContentPaddingLeft(v) {
|
|
890
890
|
this.ensureLineTypeContentPadding();
|
|
891
|
-
this.i.
|
|
892
|
-
this._a("lineTypeContentPaddingLeft", this.i.
|
|
893
|
-
this.i.
|
|
891
|
+
this.i.on.left = +v;
|
|
892
|
+
this._a("lineTypeContentPaddingLeft", this.i.on.left);
|
|
893
|
+
this.i.on = this.i.on;
|
|
894
894
|
}
|
|
895
895
|
get lineTypeContentPaddingRight() {
|
|
896
|
-
return this.i.
|
|
896
|
+
return this.i.on ? this.i.on.right : NaN;
|
|
897
897
|
}
|
|
898
898
|
set lineTypeContentPaddingRight(v) {
|
|
899
899
|
this.ensureLineTypeContentPadding();
|
|
900
|
-
this.i.
|
|
901
|
-
this._a("lineTypeContentPaddingRight", this.i.
|
|
902
|
-
this.i.
|
|
900
|
+
this.i.on.right = +v;
|
|
901
|
+
this._a("lineTypeContentPaddingRight", this.i.on.right);
|
|
902
|
+
this.i.on = this.i.on;
|
|
903
903
|
}
|
|
904
904
|
get lineTypeContentPaddingTop() {
|
|
905
|
-
return this.i.
|
|
905
|
+
return this.i.on ? this.i.on.top : NaN;
|
|
906
906
|
}
|
|
907
907
|
set lineTypeContentPaddingTop(v) {
|
|
908
908
|
this.ensureLineTypeContentPadding();
|
|
909
|
-
this.i.
|
|
910
|
-
this._a("lineTypeContentPaddingTop", this.i.
|
|
911
|
-
this.i.
|
|
909
|
+
this.i.on.top = +v;
|
|
910
|
+
this._a("lineTypeContentPaddingTop", this.i.on.top);
|
|
911
|
+
this.i.on = this.i.on;
|
|
912
912
|
}
|
|
913
913
|
ensureLineTypeContentPadding() {
|
|
914
|
-
if (this.i.
|
|
914
|
+
if (this.i.on) {
|
|
915
915
|
return;
|
|
916
916
|
}
|
|
917
|
-
this.i.
|
|
917
|
+
this.i.on = new Thickness(2);
|
|
918
918
|
}
|
|
919
919
|
/**
|
|
920
920
|
* Gets or sets the width to use for the underline element when type is line.
|
|
921
921
|
*/
|
|
922
922
|
get lineTypeUnderlineWidth() {
|
|
923
|
-
return this.i.
|
|
923
|
+
return this.i.eu;
|
|
924
924
|
}
|
|
925
925
|
set lineTypeUnderlineWidth(v) {
|
|
926
|
-
this.i.
|
|
927
|
-
this._a("lineTypeUnderlineWidth", this.i.
|
|
926
|
+
this.i.eu = +v;
|
|
927
|
+
this._a("lineTypeUnderlineWidth", this.i.eu);
|
|
928
928
|
}
|
|
929
929
|
/**
|
|
930
930
|
* Gets or sets the width to use for the underline element when type is line.
|
|
931
931
|
*/
|
|
932
932
|
get lineTypeUnderlineRippleWidth() {
|
|
933
|
-
return this.i.
|
|
933
|
+
return this.i.et;
|
|
934
934
|
}
|
|
935
935
|
set lineTypeUnderlineRippleWidth(v) {
|
|
936
|
-
this.i.
|
|
937
|
-
this._a("lineTypeUnderlineRippleWidth", this.i.
|
|
936
|
+
this.i.et = +v;
|
|
937
|
+
this._a("lineTypeUnderlineRippleWidth", this.i.et);
|
|
938
938
|
}
|
|
939
939
|
/**
|
|
940
940
|
* Gets or sets the width to use for the underline element when hovered when type is line.
|
|
941
941
|
*/
|
|
942
942
|
get lineTypeHoverUnderlineWidth() {
|
|
943
|
-
return this.i.
|
|
943
|
+
return this.i.eq;
|
|
944
944
|
}
|
|
945
945
|
set lineTypeHoverUnderlineWidth(v) {
|
|
946
|
-
this.i.
|
|
947
|
-
this._a("lineTypeHoverUnderlineWidth", this.i.
|
|
946
|
+
this.i.eq = +v;
|
|
947
|
+
this._a("lineTypeHoverUnderlineWidth", this.i.eq);
|
|
948
948
|
}
|
|
949
949
|
/**
|
|
950
950
|
* Gets or sets the color to use for the underline element when type is line.
|
|
951
951
|
*/
|
|
952
952
|
get lineTypeUnderlineColor() {
|
|
953
|
-
return brushToString(this.i.
|
|
953
|
+
return brushToString(this.i.nw);
|
|
954
954
|
}
|
|
955
955
|
set lineTypeUnderlineColor(v) {
|
|
956
|
-
this.i.
|
|
957
|
-
this._a("lineTypeUnderlineColor", brushToString(this.i.
|
|
956
|
+
this.i.nw = stringToBrush(v);
|
|
957
|
+
this._a("lineTypeUnderlineColor", brushToString(this.i.nw));
|
|
958
958
|
}
|
|
959
959
|
/**
|
|
960
960
|
* Gets or sets the color to use for the underline ripple element when type is line.
|
|
961
961
|
*/
|
|
962
962
|
get lineTypeUnderlineRippleColor() {
|
|
963
|
-
return brushToString(this.i.
|
|
963
|
+
return brushToString(this.i.nx);
|
|
964
964
|
}
|
|
965
965
|
set lineTypeUnderlineRippleColor(v) {
|
|
966
|
-
this.i.
|
|
967
|
-
this._a("lineTypeUnderlineRippleColor", brushToString(this.i.
|
|
966
|
+
this.i.nx = stringToBrush(v);
|
|
967
|
+
this._a("lineTypeUnderlineRippleColor", brushToString(this.i.nx));
|
|
968
968
|
}
|
|
969
969
|
/**
|
|
970
970
|
* Gets or sets the color to use for the underline element when type is line.
|
|
971
971
|
*/
|
|
972
972
|
get lineTypeHoverUnderlineColor() {
|
|
973
|
-
return brushToString(this.i.
|
|
973
|
+
return brushToString(this.i.nv);
|
|
974
974
|
}
|
|
975
975
|
set lineTypeHoverUnderlineColor(v) {
|
|
976
|
-
this.i.
|
|
977
|
-
this._a("lineTypeHoverUnderlineColor", brushToString(this.i.
|
|
976
|
+
this.i.nv = stringToBrush(v);
|
|
977
|
+
this._a("lineTypeHoverUnderlineColor", brushToString(this.i.nv));
|
|
978
978
|
}
|
|
979
979
|
/**
|
|
980
980
|
* Gets or sets the color to use for the underline element when type is line.
|
|
981
981
|
*/
|
|
982
982
|
get lineTypeFocusUnderlineColor() {
|
|
983
|
-
return brushToString(this.i.
|
|
983
|
+
return brushToString(this.i.nu);
|
|
984
984
|
}
|
|
985
985
|
set lineTypeFocusUnderlineColor(v) {
|
|
986
|
-
this.i.
|
|
987
|
-
this._a("lineTypeFocusUnderlineColor", brushToString(this.i.
|
|
986
|
+
this.i.nu = stringToBrush(v);
|
|
987
|
+
this._a("lineTypeFocusUnderlineColor", brushToString(this.i.nu));
|
|
988
988
|
}
|
|
989
989
|
/**
|
|
990
990
|
* Gets or sets the color to use for the underline element when type is line.
|
|
991
991
|
*/
|
|
992
992
|
get lineTypeUnderlineOpacity() {
|
|
993
|
-
return this.i.
|
|
993
|
+
return this.i.er;
|
|
994
994
|
}
|
|
995
995
|
set lineTypeUnderlineOpacity(v) {
|
|
996
|
-
this.i.
|
|
997
|
-
this._a("lineTypeUnderlineOpacity", this.i.
|
|
996
|
+
this.i.er = +v;
|
|
997
|
+
this._a("lineTypeUnderlineOpacity", this.i.er);
|
|
998
998
|
}
|
|
999
999
|
/**
|
|
1000
1000
|
* Gets or sets the color to use for the underline element when type is line.
|
|
1001
1001
|
*/
|
|
1002
1002
|
get lineTypeHoverUnderlineOpacity() {
|
|
1003
|
-
return this.i.
|
|
1003
|
+
return this.i.ep;
|
|
1004
1004
|
}
|
|
1005
1005
|
set lineTypeHoverUnderlineOpacity(v) {
|
|
1006
|
-
this.i.
|
|
1007
|
-
this._a("lineTypeHoverUnderlineOpacity", this.i.
|
|
1006
|
+
this.i.ep = +v;
|
|
1007
|
+
this._a("lineTypeHoverUnderlineOpacity", this.i.ep);
|
|
1008
1008
|
}
|
|
1009
1009
|
/**
|
|
1010
1010
|
* Gets or sets the color to use for the underline element when type is line.
|
|
1011
1011
|
*/
|
|
1012
1012
|
get lineTypeFocusUnderlineOpacity() {
|
|
1013
|
-
return this.i.
|
|
1013
|
+
return this.i.en;
|
|
1014
1014
|
}
|
|
1015
1015
|
set lineTypeFocusUnderlineOpacity(v) {
|
|
1016
|
-
this.i.
|
|
1017
|
-
this._a("lineTypeFocusUnderlineOpacity", this.i.
|
|
1016
|
+
this.i.en = +v;
|
|
1017
|
+
this._a("lineTypeFocusUnderlineOpacity", this.i.en);
|
|
1018
1018
|
}
|
|
1019
1019
|
/**
|
|
1020
1020
|
* Gets or sets the opacity to use for the underline ripple element when focused when type is line.
|
|
1021
1021
|
*/
|
|
1022
1022
|
get lineTypeFocusUnderlineRippleOpacity() {
|
|
1023
|
-
return this.i.
|
|
1023
|
+
return this.i.eo;
|
|
1024
1024
|
}
|
|
1025
1025
|
set lineTypeFocusUnderlineRippleOpacity(v) {
|
|
1026
|
-
this.i.
|
|
1027
|
-
this._a("lineTypeFocusUnderlineRippleOpacity", this.i.
|
|
1026
|
+
this.i.eo = +v;
|
|
1027
|
+
this._a("lineTypeFocusUnderlineRippleOpacity", this.i.eo);
|
|
1028
1028
|
}
|
|
1029
1029
|
/**
|
|
1030
1030
|
* Gets or sets the opacity to use for the underline ripple element when type is line.
|
|
1031
1031
|
*/
|
|
1032
1032
|
get lineTypeUnderlineRippleOpacity() {
|
|
1033
|
-
return this.i.
|
|
1033
|
+
return this.i.es;
|
|
1034
1034
|
}
|
|
1035
1035
|
set lineTypeUnderlineRippleOpacity(v) {
|
|
1036
|
-
this.i.
|
|
1037
|
-
this._a("lineTypeUnderlineRippleOpacity", this.i.
|
|
1036
|
+
this.i.es = +v;
|
|
1037
|
+
this._a("lineTypeUnderlineRippleOpacity", this.i.es);
|
|
1038
1038
|
}
|
|
1039
1039
|
/**
|
|
1040
1040
|
* Gets or sets the background color to use for the input group when type is line.
|
|
1041
1041
|
*/
|
|
1042
1042
|
get lineTypeBackgroundColor() {
|
|
1043
|
-
return brushToString(this.i.
|
|
1043
|
+
return brushToString(this.i.nr);
|
|
1044
1044
|
}
|
|
1045
1045
|
set lineTypeBackgroundColor(v) {
|
|
1046
|
-
this.i.
|
|
1047
|
-
this._a("lineTypeBackgroundColor", brushToString(this.i.
|
|
1046
|
+
this.i.nr = stringToBrush(v);
|
|
1047
|
+
this._a("lineTypeBackgroundColor", brushToString(this.i.nr));
|
|
1048
1048
|
}
|
|
1049
1049
|
/**
|
|
1050
1050
|
* Gets or sets the border width to use for the border of the item group when using type line.
|
|
1051
1051
|
*/
|
|
1052
1052
|
get boxTypeBorderWidth() {
|
|
1053
|
-
return this.i.
|
|
1053
|
+
return this.i.c1;
|
|
1054
1054
|
}
|
|
1055
1055
|
set boxTypeBorderWidth(v) {
|
|
1056
|
-
this.i.
|
|
1057
|
-
this._a("boxTypeBorderWidth", this.i.
|
|
1056
|
+
this.i.c1 = +v;
|
|
1057
|
+
this._a("boxTypeBorderWidth", this.i.c1);
|
|
1058
1058
|
}
|
|
1059
1059
|
/**
|
|
1060
1060
|
* Gets or sets the border width to use for the border of the item group when focused when type is box.
|
|
1061
1061
|
*/
|
|
1062
1062
|
get boxTypeFocusBorderWidth() {
|
|
1063
|
-
return this.i.
|
|
1063
|
+
return this.i.c2;
|
|
1064
1064
|
}
|
|
1065
1065
|
set boxTypeFocusBorderWidth(v) {
|
|
1066
|
-
this.i.
|
|
1067
|
-
this._a("boxTypeFocusBorderWidth", this.i.
|
|
1066
|
+
this.i.c2 = +v;
|
|
1067
|
+
this._a("boxTypeFocusBorderWidth", this.i.c2);
|
|
1068
1068
|
}
|
|
1069
1069
|
/**
|
|
1070
1070
|
* Gets or sets the focus color to use the border of the input group when type is box.
|
|
1071
1071
|
*/
|
|
1072
1072
|
get boxTypeFocusBorderColor() {
|
|
1073
|
-
return brushToString(this.i.
|
|
1073
|
+
return brushToString(this.i.mn);
|
|
1074
1074
|
}
|
|
1075
1075
|
set boxTypeFocusBorderColor(v) {
|
|
1076
|
-
this.i.
|
|
1077
|
-
this._a("boxTypeFocusBorderColor", brushToString(this.i.
|
|
1076
|
+
this.i.mn = stringToBrush(v);
|
|
1077
|
+
this._a("boxTypeFocusBorderColor", brushToString(this.i.mn));
|
|
1078
1078
|
}
|
|
1079
1079
|
/**
|
|
1080
1080
|
* Gets or sets the color to use the border of the input group when type is box.
|
|
1081
1081
|
*/
|
|
1082
1082
|
get boxTypeBorderColor() {
|
|
1083
|
-
return brushToString(this.i.
|
|
1083
|
+
return brushToString(this.i.mm);
|
|
1084
1084
|
}
|
|
1085
1085
|
set boxTypeBorderColor(v) {
|
|
1086
|
-
this.i.
|
|
1087
|
-
this._a("boxTypeBorderColor", brushToString(this.i.
|
|
1086
|
+
this.i.mm = stringToBrush(v);
|
|
1087
|
+
this._a("boxTypeBorderColor", brushToString(this.i.mm));
|
|
1088
1088
|
}
|
|
1089
1089
|
get boxTypeCornerRadiusBottomRight() {
|
|
1090
|
-
return this.i.
|
|
1090
|
+
return this.i.kq ? this.i.kq.b : NaN;
|
|
1091
1091
|
}
|
|
1092
1092
|
set boxTypeCornerRadiusBottomRight(v) {
|
|
1093
1093
|
this.ensureBoxTypeCornerRadius();
|
|
1094
|
-
this.i.
|
|
1095
|
-
this._a("boxTypeCornerRadiusBottomRight", this.i.
|
|
1096
|
-
this.i.
|
|
1094
|
+
this.i.kq.b = +v;
|
|
1095
|
+
this._a("boxTypeCornerRadiusBottomRight", this.i.kq.b);
|
|
1096
|
+
this.i.kq = this.i.kq;
|
|
1097
1097
|
}
|
|
1098
1098
|
get boxTypeCornerRadiusBottomLeft() {
|
|
1099
|
-
return this.i.
|
|
1099
|
+
return this.i.kq ? this.i.kq.a : NaN;
|
|
1100
1100
|
}
|
|
1101
1101
|
set boxTypeCornerRadiusBottomLeft(v) {
|
|
1102
1102
|
this.ensureBoxTypeCornerRadius();
|
|
1103
|
-
this.i.
|
|
1104
|
-
this._a("boxTypeCornerRadiusBottomLeft", this.i.
|
|
1105
|
-
this.i.
|
|
1103
|
+
this.i.kq.a = +v;
|
|
1104
|
+
this._a("boxTypeCornerRadiusBottomLeft", this.i.kq.a);
|
|
1105
|
+
this.i.kq = this.i.kq;
|
|
1106
1106
|
}
|
|
1107
1107
|
get boxTypeCornerRadiusTopLeft() {
|
|
1108
|
-
return this.i.
|
|
1108
|
+
return this.i.kq ? this.i.kq.c : NaN;
|
|
1109
1109
|
}
|
|
1110
1110
|
set boxTypeCornerRadiusTopLeft(v) {
|
|
1111
1111
|
this.ensureBoxTypeCornerRadius();
|
|
1112
|
-
this.i.
|
|
1113
|
-
this._a("boxTypeCornerRadiusTopLeft", this.i.
|
|
1114
|
-
this.i.
|
|
1112
|
+
this.i.kq.c = +v;
|
|
1113
|
+
this._a("boxTypeCornerRadiusTopLeft", this.i.kq.c);
|
|
1114
|
+
this.i.kq = this.i.kq;
|
|
1115
1115
|
}
|
|
1116
1116
|
get boxTypeCornerRadiusTopRight() {
|
|
1117
|
-
return this.i.
|
|
1117
|
+
return this.i.kq ? this.i.kq.d : NaN;
|
|
1118
1118
|
}
|
|
1119
1119
|
set boxTypeCornerRadiusTopRight(v) {
|
|
1120
1120
|
this.ensureBoxTypeCornerRadius();
|
|
1121
|
-
this.i.
|
|
1122
|
-
this._a("boxTypeCornerRadiusTopRight", this.i.
|
|
1123
|
-
this.i.
|
|
1121
|
+
this.i.kq.d = +v;
|
|
1122
|
+
this._a("boxTypeCornerRadiusTopRight", this.i.kq.d);
|
|
1123
|
+
this.i.kq = this.i.kq;
|
|
1124
1124
|
}
|
|
1125
1125
|
ensureBoxTypeCornerRadius() {
|
|
1126
|
-
if (this.i.
|
|
1126
|
+
if (this.i.kq) {
|
|
1127
1127
|
return;
|
|
1128
1128
|
}
|
|
1129
|
-
this.i.
|
|
1129
|
+
this.i.kq = new CornerRadius(2);
|
|
1130
1130
|
}
|
|
1131
1131
|
get boxTypeContentPaddingBottom() {
|
|
1132
|
-
return this.i.
|
|
1132
|
+
return this.i.og ? this.i.og.bottom : NaN;
|
|
1133
1133
|
}
|
|
1134
1134
|
set boxTypeContentPaddingBottom(v) {
|
|
1135
1135
|
this.ensureBoxTypeContentPadding();
|
|
1136
|
-
this.i.
|
|
1137
|
-
this._a("boxTypeContentPaddingBottom", this.i.
|
|
1138
|
-
this.i.
|
|
1136
|
+
this.i.og.bottom = +v;
|
|
1137
|
+
this._a("boxTypeContentPaddingBottom", this.i.og.bottom);
|
|
1138
|
+
this.i.og = this.i.og;
|
|
1139
1139
|
}
|
|
1140
1140
|
get boxTypeContentPaddingLeft() {
|
|
1141
|
-
return this.i.
|
|
1141
|
+
return this.i.og ? this.i.og.left : NaN;
|
|
1142
1142
|
}
|
|
1143
1143
|
set boxTypeContentPaddingLeft(v) {
|
|
1144
1144
|
this.ensureBoxTypeContentPadding();
|
|
1145
|
-
this.i.
|
|
1146
|
-
this._a("boxTypeContentPaddingLeft", this.i.
|
|
1147
|
-
this.i.
|
|
1145
|
+
this.i.og.left = +v;
|
|
1146
|
+
this._a("boxTypeContentPaddingLeft", this.i.og.left);
|
|
1147
|
+
this.i.og = this.i.og;
|
|
1148
1148
|
}
|
|
1149
1149
|
get boxTypeContentPaddingRight() {
|
|
1150
|
-
return this.i.
|
|
1150
|
+
return this.i.og ? this.i.og.right : NaN;
|
|
1151
1151
|
}
|
|
1152
1152
|
set boxTypeContentPaddingRight(v) {
|
|
1153
1153
|
this.ensureBoxTypeContentPadding();
|
|
1154
|
-
this.i.
|
|
1155
|
-
this._a("boxTypeContentPaddingRight", this.i.
|
|
1156
|
-
this.i.
|
|
1154
|
+
this.i.og.right = +v;
|
|
1155
|
+
this._a("boxTypeContentPaddingRight", this.i.og.right);
|
|
1156
|
+
this.i.og = this.i.og;
|
|
1157
1157
|
}
|
|
1158
1158
|
get boxTypeContentPaddingTop() {
|
|
1159
|
-
return this.i.
|
|
1159
|
+
return this.i.og ? this.i.og.top : NaN;
|
|
1160
1160
|
}
|
|
1161
1161
|
set boxTypeContentPaddingTop(v) {
|
|
1162
1162
|
this.ensureBoxTypeContentPadding();
|
|
1163
|
-
this.i.
|
|
1164
|
-
this._a("boxTypeContentPaddingTop", this.i.
|
|
1165
|
-
this.i.
|
|
1163
|
+
this.i.og.top = +v;
|
|
1164
|
+
this._a("boxTypeContentPaddingTop", this.i.og.top);
|
|
1165
|
+
this.i.og = this.i.og;
|
|
1166
1166
|
}
|
|
1167
1167
|
ensureBoxTypeContentPadding() {
|
|
1168
|
-
if (this.i.
|
|
1168
|
+
if (this.i.og) {
|
|
1169
1169
|
return;
|
|
1170
1170
|
}
|
|
1171
|
-
this.i.
|
|
1171
|
+
this.i.og = new Thickness(2);
|
|
1172
1172
|
}
|
|
1173
1173
|
/**
|
|
1174
1174
|
* Gets or sets the width to use for the underline element when type is box.
|
|
1175
1175
|
*/
|
|
1176
1176
|
get boxTypeUnderlineWidth() {
|
|
1177
|
-
return this.i.
|
|
1177
|
+
return this.i.da;
|
|
1178
1178
|
}
|
|
1179
1179
|
set boxTypeUnderlineWidth(v) {
|
|
1180
|
-
this.i.
|
|
1181
|
-
this._a("boxTypeUnderlineWidth", this.i.
|
|
1180
|
+
this.i.da = +v;
|
|
1181
|
+
this._a("boxTypeUnderlineWidth", this.i.da);
|
|
1182
1182
|
}
|
|
1183
1183
|
/**
|
|
1184
1184
|
* Gets or sets the width to use for the underline element when type is box.
|
|
1185
1185
|
*/
|
|
1186
1186
|
get boxTypeUnderlineRippleWidth() {
|
|
1187
|
-
return this.i.
|
|
1187
|
+
return this.i.c9;
|
|
1188
1188
|
}
|
|
1189
1189
|
set boxTypeUnderlineRippleWidth(v) {
|
|
1190
|
-
this.i.
|
|
1191
|
-
this._a("boxTypeUnderlineRippleWidth", this.i.
|
|
1190
|
+
this.i.c9 = +v;
|
|
1191
|
+
this._a("boxTypeUnderlineRippleWidth", this.i.c9);
|
|
1192
1192
|
}
|
|
1193
1193
|
/**
|
|
1194
1194
|
* Gets or sets the width to use for the underline element when hovered when type is box.
|
|
1195
1195
|
*/
|
|
1196
1196
|
get boxTypeHoverUnderlineWidth() {
|
|
1197
|
-
return this.i.
|
|
1197
|
+
return this.i.c6;
|
|
1198
1198
|
}
|
|
1199
1199
|
set boxTypeHoverUnderlineWidth(v) {
|
|
1200
|
-
this.i.
|
|
1201
|
-
this._a("boxTypeHoverUnderlineWidth", this.i.
|
|
1200
|
+
this.i.c6 = +v;
|
|
1201
|
+
this._a("boxTypeHoverUnderlineWidth", this.i.c6);
|
|
1202
1202
|
}
|
|
1203
1203
|
/**
|
|
1204
1204
|
* Gets or sets the color to use for the underline element when type is box.
|
|
1205
1205
|
*/
|
|
1206
1206
|
get boxTypeUnderlineColor() {
|
|
1207
|
-
return brushToString(this.i.
|
|
1207
|
+
return brushToString(this.i.mq);
|
|
1208
1208
|
}
|
|
1209
1209
|
set boxTypeUnderlineColor(v) {
|
|
1210
|
-
this.i.
|
|
1211
|
-
this._a("boxTypeUnderlineColor", brushToString(this.i.
|
|
1210
|
+
this.i.mq = stringToBrush(v);
|
|
1211
|
+
this._a("boxTypeUnderlineColor", brushToString(this.i.mq));
|
|
1212
1212
|
}
|
|
1213
1213
|
/**
|
|
1214
1214
|
* Gets or sets the color to use for the underline ripple element when type is box.
|
|
1215
1215
|
*/
|
|
1216
1216
|
get boxTypeUnderlineRippleColor() {
|
|
1217
|
-
return brushToString(this.i.
|
|
1217
|
+
return brushToString(this.i.mr);
|
|
1218
1218
|
}
|
|
1219
1219
|
set boxTypeUnderlineRippleColor(v) {
|
|
1220
|
-
this.i.
|
|
1221
|
-
this._a("boxTypeUnderlineRippleColor", brushToString(this.i.
|
|
1220
|
+
this.i.mr = stringToBrush(v);
|
|
1221
|
+
this._a("boxTypeUnderlineRippleColor", brushToString(this.i.mr));
|
|
1222
1222
|
}
|
|
1223
1223
|
/**
|
|
1224
1224
|
* Gets or sets the color to use for the underline element when type is box.
|
|
1225
1225
|
*/
|
|
1226
1226
|
get boxTypeHoverUnderlineColor() {
|
|
1227
|
-
return brushToString(this.i.
|
|
1227
|
+
return brushToString(this.i.mp);
|
|
1228
1228
|
}
|
|
1229
1229
|
set boxTypeHoverUnderlineColor(v) {
|
|
1230
|
-
this.i.
|
|
1231
|
-
this._a("boxTypeHoverUnderlineColor", brushToString(this.i.
|
|
1230
|
+
this.i.mp = stringToBrush(v);
|
|
1231
|
+
this._a("boxTypeHoverUnderlineColor", brushToString(this.i.mp));
|
|
1232
1232
|
}
|
|
1233
1233
|
/**
|
|
1234
1234
|
* Gets or sets the color to use for the underline element when type is box.
|
|
1235
1235
|
*/
|
|
1236
1236
|
get boxTypeFocusUnderlineColor() {
|
|
1237
|
-
return brushToString(this.i.
|
|
1237
|
+
return brushToString(this.i.mo);
|
|
1238
1238
|
}
|
|
1239
1239
|
set boxTypeFocusUnderlineColor(v) {
|
|
1240
|
-
this.i.
|
|
1241
|
-
this._a("boxTypeFocusUnderlineColor", brushToString(this.i.
|
|
1240
|
+
this.i.mo = stringToBrush(v);
|
|
1241
|
+
this._a("boxTypeFocusUnderlineColor", brushToString(this.i.mo));
|
|
1242
1242
|
}
|
|
1243
1243
|
/**
|
|
1244
1244
|
* Gets or sets the color to use for the underline element when type is box.
|
|
1245
1245
|
*/
|
|
1246
1246
|
get boxTypeUnderlineOpacity() {
|
|
1247
|
-
return this.i.
|
|
1247
|
+
return this.i.c7;
|
|
1248
1248
|
}
|
|
1249
1249
|
set boxTypeUnderlineOpacity(v) {
|
|
1250
|
-
this.i.
|
|
1251
|
-
this._a("boxTypeUnderlineOpacity", this.i.
|
|
1250
|
+
this.i.c7 = +v;
|
|
1251
|
+
this._a("boxTypeUnderlineOpacity", this.i.c7);
|
|
1252
1252
|
}
|
|
1253
1253
|
/**
|
|
1254
1254
|
* Gets or sets the color to use for the underline element when type is box.
|
|
1255
1255
|
*/
|
|
1256
1256
|
get boxTypeHoverUnderlineOpacity() {
|
|
1257
|
-
return this.i.
|
|
1257
|
+
return this.i.c5;
|
|
1258
1258
|
}
|
|
1259
1259
|
set boxTypeHoverUnderlineOpacity(v) {
|
|
1260
|
-
this.i.
|
|
1261
|
-
this._a("boxTypeHoverUnderlineOpacity", this.i.
|
|
1260
|
+
this.i.c5 = +v;
|
|
1261
|
+
this._a("boxTypeHoverUnderlineOpacity", this.i.c5);
|
|
1262
1262
|
}
|
|
1263
1263
|
/**
|
|
1264
1264
|
* Gets or sets the color to use for the underline element when type is box.
|
|
1265
1265
|
*/
|
|
1266
1266
|
get boxTypeFocusUnderlineOpacity() {
|
|
1267
|
-
return this.i.
|
|
1267
|
+
return this.i.c3;
|
|
1268
1268
|
}
|
|
1269
1269
|
set boxTypeFocusUnderlineOpacity(v) {
|
|
1270
|
-
this.i.
|
|
1271
|
-
this._a("boxTypeFocusUnderlineOpacity", this.i.
|
|
1270
|
+
this.i.c3 = +v;
|
|
1271
|
+
this._a("boxTypeFocusUnderlineOpacity", this.i.c3);
|
|
1272
1272
|
}
|
|
1273
1273
|
/**
|
|
1274
1274
|
* Gets or sets the opacity to use for the underline ripple element when focused when type is box.
|
|
1275
1275
|
*/
|
|
1276
1276
|
get boxTypeFocusUnderlineRippleOpacity() {
|
|
1277
|
-
return this.i.
|
|
1277
|
+
return this.i.c4;
|
|
1278
1278
|
}
|
|
1279
1279
|
set boxTypeFocusUnderlineRippleOpacity(v) {
|
|
1280
|
-
this.i.
|
|
1281
|
-
this._a("boxTypeFocusUnderlineRippleOpacity", this.i.
|
|
1280
|
+
this.i.c4 = +v;
|
|
1281
|
+
this._a("boxTypeFocusUnderlineRippleOpacity", this.i.c4);
|
|
1282
1282
|
}
|
|
1283
1283
|
/**
|
|
1284
1284
|
* Gets or sets the opacity to use for the underline ripple element when type is box.
|
|
1285
1285
|
*/
|
|
1286
1286
|
get boxTypeUnderlineRippleOpacity() {
|
|
1287
|
-
return this.i.
|
|
1287
|
+
return this.i.c8;
|
|
1288
1288
|
}
|
|
1289
1289
|
set boxTypeUnderlineRippleOpacity(v) {
|
|
1290
|
-
this.i.
|
|
1291
|
-
this._a("boxTypeUnderlineRippleOpacity", this.i.
|
|
1290
|
+
this.i.c8 = +v;
|
|
1291
|
+
this._a("boxTypeUnderlineRippleOpacity", this.i.c8);
|
|
1292
1292
|
}
|
|
1293
1293
|
/**
|
|
1294
1294
|
* Gets or sets the background color to use for the input group when type is box.
|
|
1295
1295
|
*/
|
|
1296
1296
|
get boxTypeBackgroundColor() {
|
|
1297
|
-
return brushToString(this.i.
|
|
1297
|
+
return brushToString(this.i.ml);
|
|
1298
1298
|
}
|
|
1299
1299
|
set boxTypeBackgroundColor(v) {
|
|
1300
|
-
this.i.
|
|
1301
|
-
this._a("boxTypeBackgroundColor", brushToString(this.i.
|
|
1300
|
+
this.i.ml = stringToBrush(v);
|
|
1301
|
+
this._a("boxTypeBackgroundColor", brushToString(this.i.ml));
|
|
1302
1302
|
}
|
|
1303
1303
|
/**
|
|
1304
1304
|
* Gets or sets the border width to use for the border of the item group when using type line.
|
|
1305
1305
|
*/
|
|
1306
1306
|
get borderTypeBorderWidth() {
|
|
1307
|
-
return this.i.
|
|
1307
|
+
return this.i.cq;
|
|
1308
1308
|
}
|
|
1309
1309
|
set borderTypeBorderWidth(v) {
|
|
1310
|
-
this.i.
|
|
1311
|
-
this._a("borderTypeBorderWidth", this.i.
|
|
1310
|
+
this.i.cq = +v;
|
|
1311
|
+
this._a("borderTypeBorderWidth", this.i.cq);
|
|
1312
1312
|
}
|
|
1313
1313
|
/**
|
|
1314
1314
|
* Gets or sets the border width to use for the border of the item group when focused when type is border.
|
|
1315
1315
|
*/
|
|
1316
1316
|
get borderTypeFocusBorderWidth() {
|
|
1317
|
-
return this.i.
|
|
1317
|
+
return this.i.cr;
|
|
1318
1318
|
}
|
|
1319
1319
|
set borderTypeFocusBorderWidth(v) {
|
|
1320
|
-
this.i.
|
|
1321
|
-
this._a("borderTypeFocusBorderWidth", this.i.
|
|
1320
|
+
this.i.cr = +v;
|
|
1321
|
+
this._a("borderTypeFocusBorderWidth", this.i.cr);
|
|
1322
1322
|
}
|
|
1323
1323
|
/**
|
|
1324
1324
|
* Gets or sets the focus color to use the border of the input group when type is border.
|
|
1325
1325
|
*/
|
|
1326
1326
|
get borderTypeFocusBorderColor() {
|
|
1327
|
-
return brushToString(this.i.
|
|
1327
|
+
return brushToString(this.i.mg);
|
|
1328
1328
|
}
|
|
1329
1329
|
set borderTypeFocusBorderColor(v) {
|
|
1330
|
-
this.i.
|
|
1331
|
-
this._a("borderTypeFocusBorderColor", brushToString(this.i.
|
|
1330
|
+
this.i.mg = stringToBrush(v);
|
|
1331
|
+
this._a("borderTypeFocusBorderColor", brushToString(this.i.mg));
|
|
1332
1332
|
}
|
|
1333
1333
|
/**
|
|
1334
1334
|
* Gets or sets the color to use the border of the input group when type is border.
|
|
1335
1335
|
*/
|
|
1336
1336
|
get borderTypeBorderColor() {
|
|
1337
|
-
return brushToString(this.i.
|
|
1337
|
+
return brushToString(this.i.mf);
|
|
1338
1338
|
}
|
|
1339
1339
|
set borderTypeBorderColor(v) {
|
|
1340
|
-
this.i.
|
|
1341
|
-
this._a("borderTypeBorderColor", brushToString(this.i.
|
|
1340
|
+
this.i.mf = stringToBrush(v);
|
|
1341
|
+
this._a("borderTypeBorderColor", brushToString(this.i.mf));
|
|
1342
1342
|
}
|
|
1343
1343
|
get borderTypeCornerRadiusBottomRight() {
|
|
1344
|
-
return this.i.
|
|
1344
|
+
return this.i.kp ? this.i.kp.b : NaN;
|
|
1345
1345
|
}
|
|
1346
1346
|
set borderTypeCornerRadiusBottomRight(v) {
|
|
1347
1347
|
this.ensureBorderTypeCornerRadius();
|
|
1348
|
-
this.i.
|
|
1349
|
-
this._a("borderTypeCornerRadiusBottomRight", this.i.
|
|
1350
|
-
this.i.
|
|
1348
|
+
this.i.kp.b = +v;
|
|
1349
|
+
this._a("borderTypeCornerRadiusBottomRight", this.i.kp.b);
|
|
1350
|
+
this.i.kp = this.i.kp;
|
|
1351
1351
|
}
|
|
1352
1352
|
get borderTypeCornerRadiusBottomLeft() {
|
|
1353
|
-
return this.i.
|
|
1353
|
+
return this.i.kp ? this.i.kp.a : NaN;
|
|
1354
1354
|
}
|
|
1355
1355
|
set borderTypeCornerRadiusBottomLeft(v) {
|
|
1356
1356
|
this.ensureBorderTypeCornerRadius();
|
|
1357
|
-
this.i.
|
|
1358
|
-
this._a("borderTypeCornerRadiusBottomLeft", this.i.
|
|
1359
|
-
this.i.
|
|
1357
|
+
this.i.kp.a = +v;
|
|
1358
|
+
this._a("borderTypeCornerRadiusBottomLeft", this.i.kp.a);
|
|
1359
|
+
this.i.kp = this.i.kp;
|
|
1360
1360
|
}
|
|
1361
1361
|
get borderTypeCornerRadiusTopLeft() {
|
|
1362
|
-
return this.i.
|
|
1362
|
+
return this.i.kp ? this.i.kp.c : NaN;
|
|
1363
1363
|
}
|
|
1364
1364
|
set borderTypeCornerRadiusTopLeft(v) {
|
|
1365
1365
|
this.ensureBorderTypeCornerRadius();
|
|
1366
|
-
this.i.
|
|
1367
|
-
this._a("borderTypeCornerRadiusTopLeft", this.i.
|
|
1368
|
-
this.i.
|
|
1366
|
+
this.i.kp.c = +v;
|
|
1367
|
+
this._a("borderTypeCornerRadiusTopLeft", this.i.kp.c);
|
|
1368
|
+
this.i.kp = this.i.kp;
|
|
1369
1369
|
}
|
|
1370
1370
|
get borderTypeCornerRadiusTopRight() {
|
|
1371
|
-
return this.i.
|
|
1371
|
+
return this.i.kp ? this.i.kp.d : NaN;
|
|
1372
1372
|
}
|
|
1373
1373
|
set borderTypeCornerRadiusTopRight(v) {
|
|
1374
1374
|
this.ensureBorderTypeCornerRadius();
|
|
1375
|
-
this.i.
|
|
1376
|
-
this._a("borderTypeCornerRadiusTopRight", this.i.
|
|
1377
|
-
this.i.
|
|
1375
|
+
this.i.kp.d = +v;
|
|
1376
|
+
this._a("borderTypeCornerRadiusTopRight", this.i.kp.d);
|
|
1377
|
+
this.i.kp = this.i.kp;
|
|
1378
1378
|
}
|
|
1379
1379
|
ensureBorderTypeCornerRadius() {
|
|
1380
|
-
if (this.i.
|
|
1380
|
+
if (this.i.kp) {
|
|
1381
1381
|
return;
|
|
1382
1382
|
}
|
|
1383
|
-
this.i.
|
|
1383
|
+
this.i.kp = new CornerRadius(2);
|
|
1384
1384
|
}
|
|
1385
1385
|
get borderTypeContentPaddingBottom() {
|
|
1386
|
-
return this.i.
|
|
1386
|
+
return this.i.of ? this.i.of.bottom : NaN;
|
|
1387
1387
|
}
|
|
1388
1388
|
set borderTypeContentPaddingBottom(v) {
|
|
1389
1389
|
this.ensureBorderTypeContentPadding();
|
|
1390
|
-
this.i.
|
|
1391
|
-
this._a("borderTypeContentPaddingBottom", this.i.
|
|
1392
|
-
this.i.
|
|
1390
|
+
this.i.of.bottom = +v;
|
|
1391
|
+
this._a("borderTypeContentPaddingBottom", this.i.of.bottom);
|
|
1392
|
+
this.i.of = this.i.of;
|
|
1393
1393
|
}
|
|
1394
1394
|
get borderTypeContentPaddingLeft() {
|
|
1395
|
-
return this.i.
|
|
1395
|
+
return this.i.of ? this.i.of.left : NaN;
|
|
1396
1396
|
}
|
|
1397
1397
|
set borderTypeContentPaddingLeft(v) {
|
|
1398
1398
|
this.ensureBorderTypeContentPadding();
|
|
1399
|
-
this.i.
|
|
1400
|
-
this._a("borderTypeContentPaddingLeft", this.i.
|
|
1401
|
-
this.i.
|
|
1399
|
+
this.i.of.left = +v;
|
|
1400
|
+
this._a("borderTypeContentPaddingLeft", this.i.of.left);
|
|
1401
|
+
this.i.of = this.i.of;
|
|
1402
1402
|
}
|
|
1403
1403
|
get borderTypeContentPaddingRight() {
|
|
1404
|
-
return this.i.
|
|
1404
|
+
return this.i.of ? this.i.of.right : NaN;
|
|
1405
1405
|
}
|
|
1406
1406
|
set borderTypeContentPaddingRight(v) {
|
|
1407
1407
|
this.ensureBorderTypeContentPadding();
|
|
1408
|
-
this.i.
|
|
1409
|
-
this._a("borderTypeContentPaddingRight", this.i.
|
|
1410
|
-
this.i.
|
|
1408
|
+
this.i.of.right = +v;
|
|
1409
|
+
this._a("borderTypeContentPaddingRight", this.i.of.right);
|
|
1410
|
+
this.i.of = this.i.of;
|
|
1411
1411
|
}
|
|
1412
1412
|
get borderTypeContentPaddingTop() {
|
|
1413
|
-
return this.i.
|
|
1413
|
+
return this.i.of ? this.i.of.top : NaN;
|
|
1414
1414
|
}
|
|
1415
1415
|
set borderTypeContentPaddingTop(v) {
|
|
1416
1416
|
this.ensureBorderTypeContentPadding();
|
|
1417
|
-
this.i.
|
|
1418
|
-
this._a("borderTypeContentPaddingTop", this.i.
|
|
1419
|
-
this.i.
|
|
1417
|
+
this.i.of.top = +v;
|
|
1418
|
+
this._a("borderTypeContentPaddingTop", this.i.of.top);
|
|
1419
|
+
this.i.of = this.i.of;
|
|
1420
1420
|
}
|
|
1421
1421
|
ensureBorderTypeContentPadding() {
|
|
1422
|
-
if (this.i.
|
|
1422
|
+
if (this.i.of) {
|
|
1423
1423
|
return;
|
|
1424
1424
|
}
|
|
1425
|
-
this.i.
|
|
1425
|
+
this.i.of = new Thickness(2);
|
|
1426
1426
|
}
|
|
1427
1427
|
/**
|
|
1428
1428
|
* Gets or sets the width to use for the underline element when type is border.
|
|
1429
1429
|
*/
|
|
1430
1430
|
get borderTypeUnderlineWidth() {
|
|
1431
|
-
return this.i.
|
|
1431
|
+
return this.i.cz;
|
|
1432
1432
|
}
|
|
1433
1433
|
set borderTypeUnderlineWidth(v) {
|
|
1434
|
-
this.i.
|
|
1435
|
-
this._a("borderTypeUnderlineWidth", this.i.
|
|
1434
|
+
this.i.cz = +v;
|
|
1435
|
+
this._a("borderTypeUnderlineWidth", this.i.cz);
|
|
1436
1436
|
}
|
|
1437
1437
|
/**
|
|
1438
1438
|
* Gets or sets the width to use for the underline element when type is border.
|
|
1439
1439
|
*/
|
|
1440
1440
|
get borderTypeUnderlineRippleWidth() {
|
|
1441
|
-
return this.i.
|
|
1441
|
+
return this.i.cy;
|
|
1442
1442
|
}
|
|
1443
1443
|
set borderTypeUnderlineRippleWidth(v) {
|
|
1444
|
-
this.i.
|
|
1445
|
-
this._a("borderTypeUnderlineRippleWidth", this.i.
|
|
1444
|
+
this.i.cy = +v;
|
|
1445
|
+
this._a("borderTypeUnderlineRippleWidth", this.i.cy);
|
|
1446
1446
|
}
|
|
1447
1447
|
/**
|
|
1448
1448
|
* Gets or sets the width to use for the underline element when hovered when type is border.
|
|
1449
1449
|
*/
|
|
1450
1450
|
get borderTypeHoverUnderlineWidth() {
|
|
1451
|
-
return this.i.
|
|
1451
|
+
return this.i.cv;
|
|
1452
1452
|
}
|
|
1453
1453
|
set borderTypeHoverUnderlineWidth(v) {
|
|
1454
|
-
this.i.
|
|
1455
|
-
this._a("borderTypeHoverUnderlineWidth", this.i.
|
|
1454
|
+
this.i.cv = +v;
|
|
1455
|
+
this._a("borderTypeHoverUnderlineWidth", this.i.cv);
|
|
1456
1456
|
}
|
|
1457
1457
|
/**
|
|
1458
1458
|
* Gets or sets the color to use for the underline element when type is border.
|
|
1459
1459
|
*/
|
|
1460
1460
|
get borderTypeUnderlineColor() {
|
|
1461
|
-
return brushToString(this.i.
|
|
1461
|
+
return brushToString(this.i.mj);
|
|
1462
1462
|
}
|
|
1463
1463
|
set borderTypeUnderlineColor(v) {
|
|
1464
|
-
this.i.
|
|
1465
|
-
this._a("borderTypeUnderlineColor", brushToString(this.i.
|
|
1464
|
+
this.i.mj = stringToBrush(v);
|
|
1465
|
+
this._a("borderTypeUnderlineColor", brushToString(this.i.mj));
|
|
1466
1466
|
}
|
|
1467
1467
|
/**
|
|
1468
1468
|
* Gets or sets the color to use for the underline ripple element when type is border.
|
|
1469
1469
|
*/
|
|
1470
1470
|
get borderTypeUnderlineRippleColor() {
|
|
1471
|
-
return brushToString(this.i.
|
|
1471
|
+
return brushToString(this.i.mk);
|
|
1472
1472
|
}
|
|
1473
1473
|
set borderTypeUnderlineRippleColor(v) {
|
|
1474
|
-
this.i.
|
|
1475
|
-
this._a("borderTypeUnderlineRippleColor", brushToString(this.i.
|
|
1474
|
+
this.i.mk = stringToBrush(v);
|
|
1475
|
+
this._a("borderTypeUnderlineRippleColor", brushToString(this.i.mk));
|
|
1476
1476
|
}
|
|
1477
1477
|
/**
|
|
1478
1478
|
* Gets or sets the color to use for the underline element when type is border.
|
|
1479
1479
|
*/
|
|
1480
1480
|
get borderTypeHoverUnderlineColor() {
|
|
1481
|
-
return brushToString(this.i.
|
|
1481
|
+
return brushToString(this.i.mi);
|
|
1482
1482
|
}
|
|
1483
1483
|
set borderTypeHoverUnderlineColor(v) {
|
|
1484
|
-
this.i.
|
|
1485
|
-
this._a("borderTypeHoverUnderlineColor", brushToString(this.i.
|
|
1484
|
+
this.i.mi = stringToBrush(v);
|
|
1485
|
+
this._a("borderTypeHoverUnderlineColor", brushToString(this.i.mi));
|
|
1486
1486
|
}
|
|
1487
1487
|
/**
|
|
1488
1488
|
* Gets or sets the color to use for the underline element when type is border.
|
|
1489
1489
|
*/
|
|
1490
1490
|
get borderTypeFocusUnderlineColor() {
|
|
1491
|
-
return brushToString(this.i.
|
|
1491
|
+
return brushToString(this.i.mh);
|
|
1492
1492
|
}
|
|
1493
1493
|
set borderTypeFocusUnderlineColor(v) {
|
|
1494
|
-
this.i.
|
|
1495
|
-
this._a("borderTypeFocusUnderlineColor", brushToString(this.i.
|
|
1494
|
+
this.i.mh = stringToBrush(v);
|
|
1495
|
+
this._a("borderTypeFocusUnderlineColor", brushToString(this.i.mh));
|
|
1496
1496
|
}
|
|
1497
1497
|
/**
|
|
1498
1498
|
* Gets or sets the color to use for the underline element when type is border.
|
|
1499
1499
|
*/
|
|
1500
1500
|
get borderTypeUnderlineOpacity() {
|
|
1501
|
-
return this.i.
|
|
1501
|
+
return this.i.cw;
|
|
1502
1502
|
}
|
|
1503
1503
|
set borderTypeUnderlineOpacity(v) {
|
|
1504
|
-
this.i.
|
|
1505
|
-
this._a("borderTypeUnderlineOpacity", this.i.
|
|
1504
|
+
this.i.cw = +v;
|
|
1505
|
+
this._a("borderTypeUnderlineOpacity", this.i.cw);
|
|
1506
1506
|
}
|
|
1507
1507
|
/**
|
|
1508
1508
|
* Gets or sets the color to use for the underline element when type is border.
|
|
1509
1509
|
*/
|
|
1510
1510
|
get borderTypeHoverUnderlineOpacity() {
|
|
1511
|
-
return this.i.
|
|
1511
|
+
return this.i.cu;
|
|
1512
1512
|
}
|
|
1513
1513
|
set borderTypeHoverUnderlineOpacity(v) {
|
|
1514
|
-
this.i.
|
|
1515
|
-
this._a("borderTypeHoverUnderlineOpacity", this.i.
|
|
1514
|
+
this.i.cu = +v;
|
|
1515
|
+
this._a("borderTypeHoverUnderlineOpacity", this.i.cu);
|
|
1516
1516
|
}
|
|
1517
1517
|
/**
|
|
1518
1518
|
* Gets or sets the color to use for the underline element when type is border.
|
|
1519
1519
|
*/
|
|
1520
1520
|
get borderTypeFocusUnderlineOpacity() {
|
|
1521
|
-
return this.i.
|
|
1521
|
+
return this.i.cs;
|
|
1522
1522
|
}
|
|
1523
1523
|
set borderTypeFocusUnderlineOpacity(v) {
|
|
1524
|
-
this.i.
|
|
1525
|
-
this._a("borderTypeFocusUnderlineOpacity", this.i.
|
|
1524
|
+
this.i.cs = +v;
|
|
1525
|
+
this._a("borderTypeFocusUnderlineOpacity", this.i.cs);
|
|
1526
1526
|
}
|
|
1527
1527
|
/**
|
|
1528
1528
|
* Gets or sets the opacity to use for the underline ripple element when focused when type is border.
|
|
1529
1529
|
*/
|
|
1530
1530
|
get borderTypeFocusUnderlineRippleOpacity() {
|
|
1531
|
-
return this.i.
|
|
1531
|
+
return this.i.ct;
|
|
1532
1532
|
}
|
|
1533
1533
|
set borderTypeFocusUnderlineRippleOpacity(v) {
|
|
1534
|
-
this.i.
|
|
1535
|
-
this._a("borderTypeFocusUnderlineRippleOpacity", this.i.
|
|
1534
|
+
this.i.ct = +v;
|
|
1535
|
+
this._a("borderTypeFocusUnderlineRippleOpacity", this.i.ct);
|
|
1536
1536
|
}
|
|
1537
1537
|
/**
|
|
1538
1538
|
* Gets or sets the opacity to use for the underline ripple element when type is border.
|
|
1539
1539
|
*/
|
|
1540
1540
|
get borderTypeUnderlineRippleOpacity() {
|
|
1541
|
-
return this.i.
|
|
1541
|
+
return this.i.cx;
|
|
1542
1542
|
}
|
|
1543
1543
|
set borderTypeUnderlineRippleOpacity(v) {
|
|
1544
|
-
this.i.
|
|
1545
|
-
this._a("borderTypeUnderlineRippleOpacity", this.i.
|
|
1544
|
+
this.i.cx = +v;
|
|
1545
|
+
this._a("borderTypeUnderlineRippleOpacity", this.i.cx);
|
|
1546
1546
|
}
|
|
1547
1547
|
/**
|
|
1548
1548
|
* Gets or sets the background color to use for the input group when type is border.
|
|
1549
1549
|
*/
|
|
1550
1550
|
get borderTypeBackgroundColor() {
|
|
1551
|
-
return brushToString(this.i.
|
|
1551
|
+
return brushToString(this.i.me);
|
|
1552
1552
|
}
|
|
1553
1553
|
set borderTypeBackgroundColor(v) {
|
|
1554
|
-
this.i.
|
|
1555
|
-
this._a("borderTypeBackgroundColor", brushToString(this.i.
|
|
1554
|
+
this.i.me = stringToBrush(v);
|
|
1555
|
+
this._a("borderTypeBackgroundColor", brushToString(this.i.me));
|
|
1556
1556
|
}
|
|
1557
1557
|
/**
|
|
1558
1558
|
* Gets or sets the search width to use for the border of the item group when using type line.
|
|
1559
1559
|
*/
|
|
1560
1560
|
get searchTypeBorderWidth() {
|
|
1561
|
-
return this.i.
|
|
1561
|
+
return this.i.ev;
|
|
1562
1562
|
}
|
|
1563
1563
|
set searchTypeBorderWidth(v) {
|
|
1564
|
-
this.i.
|
|
1565
|
-
this._a("searchTypeBorderWidth", this.i.
|
|
1564
|
+
this.i.ev = +v;
|
|
1565
|
+
this._a("searchTypeBorderWidth", this.i.ev);
|
|
1566
1566
|
}
|
|
1567
1567
|
/**
|
|
1568
1568
|
* Gets or sets the search width to use for the border of the item group when focused when type is search.
|
|
1569
1569
|
*/
|
|
1570
1570
|
get searchTypeFocusBorderWidth() {
|
|
1571
|
-
return this.i.
|
|
1571
|
+
return this.i.ew;
|
|
1572
1572
|
}
|
|
1573
1573
|
set searchTypeFocusBorderWidth(v) {
|
|
1574
|
-
this.i.
|
|
1575
|
-
this._a("searchTypeFocusBorderWidth", this.i.
|
|
1574
|
+
this.i.ew = +v;
|
|
1575
|
+
this._a("searchTypeFocusBorderWidth", this.i.ew);
|
|
1576
1576
|
}
|
|
1577
1577
|
/**
|
|
1578
1578
|
* Gets or sets the focus color to use the search of the input group when type is search.
|
|
1579
1579
|
*/
|
|
1580
1580
|
get searchTypeFocusBorderColor() {
|
|
1581
|
-
return brushToString(this.i.
|
|
1581
|
+
return brushToString(this.i.n0);
|
|
1582
1582
|
}
|
|
1583
1583
|
set searchTypeFocusBorderColor(v) {
|
|
1584
|
-
this.i.
|
|
1585
|
-
this._a("searchTypeFocusBorderColor", brushToString(this.i.
|
|
1584
|
+
this.i.n0 = stringToBrush(v);
|
|
1585
|
+
this._a("searchTypeFocusBorderColor", brushToString(this.i.n0));
|
|
1586
1586
|
}
|
|
1587
1587
|
/**
|
|
1588
1588
|
* Gets or sets the color to use the search of the input group when type is search.
|
|
1589
1589
|
*/
|
|
1590
1590
|
get searchTypeBorderColor() {
|
|
1591
|
-
return brushToString(this.i.
|
|
1591
|
+
return brushToString(this.i.nz);
|
|
1592
1592
|
}
|
|
1593
1593
|
set searchTypeBorderColor(v) {
|
|
1594
|
-
this.i.
|
|
1595
|
-
this._a("searchTypeBorderColor", brushToString(this.i.
|
|
1594
|
+
this.i.nz = stringToBrush(v);
|
|
1595
|
+
this._a("searchTypeBorderColor", brushToString(this.i.nz));
|
|
1596
1596
|
}
|
|
1597
1597
|
get searchTypeCornerRadiusBottomRight() {
|
|
1598
|
-
return this.i.
|
|
1598
|
+
return this.i.ky ? this.i.ky.b : NaN;
|
|
1599
1599
|
}
|
|
1600
1600
|
set searchTypeCornerRadiusBottomRight(v) {
|
|
1601
1601
|
this.ensureSearchTypeCornerRadius();
|
|
1602
|
-
this.i.
|
|
1603
|
-
this._a("searchTypeCornerRadiusBottomRight", this.i.
|
|
1604
|
-
this.i.
|
|
1602
|
+
this.i.ky.b = +v;
|
|
1603
|
+
this._a("searchTypeCornerRadiusBottomRight", this.i.ky.b);
|
|
1604
|
+
this.i.ky = this.i.ky;
|
|
1605
1605
|
}
|
|
1606
1606
|
get searchTypeCornerRadiusBottomLeft() {
|
|
1607
|
-
return this.i.
|
|
1607
|
+
return this.i.ky ? this.i.ky.a : NaN;
|
|
1608
1608
|
}
|
|
1609
1609
|
set searchTypeCornerRadiusBottomLeft(v) {
|
|
1610
1610
|
this.ensureSearchTypeCornerRadius();
|
|
1611
|
-
this.i.
|
|
1612
|
-
this._a("searchTypeCornerRadiusBottomLeft", this.i.
|
|
1613
|
-
this.i.
|
|
1611
|
+
this.i.ky.a = +v;
|
|
1612
|
+
this._a("searchTypeCornerRadiusBottomLeft", this.i.ky.a);
|
|
1613
|
+
this.i.ky = this.i.ky;
|
|
1614
1614
|
}
|
|
1615
1615
|
get searchTypeCornerRadiusTopLeft() {
|
|
1616
|
-
return this.i.
|
|
1616
|
+
return this.i.ky ? this.i.ky.c : NaN;
|
|
1617
1617
|
}
|
|
1618
1618
|
set searchTypeCornerRadiusTopLeft(v) {
|
|
1619
1619
|
this.ensureSearchTypeCornerRadius();
|
|
1620
|
-
this.i.
|
|
1621
|
-
this._a("searchTypeCornerRadiusTopLeft", this.i.
|
|
1622
|
-
this.i.
|
|
1620
|
+
this.i.ky.c = +v;
|
|
1621
|
+
this._a("searchTypeCornerRadiusTopLeft", this.i.ky.c);
|
|
1622
|
+
this.i.ky = this.i.ky;
|
|
1623
1623
|
}
|
|
1624
1624
|
get searchTypeCornerRadiusTopRight() {
|
|
1625
|
-
return this.i.
|
|
1625
|
+
return this.i.ky ? this.i.ky.d : NaN;
|
|
1626
1626
|
}
|
|
1627
1627
|
set searchTypeCornerRadiusTopRight(v) {
|
|
1628
1628
|
this.ensureSearchTypeCornerRadius();
|
|
1629
|
-
this.i.
|
|
1630
|
-
this._a("searchTypeCornerRadiusTopRight", this.i.
|
|
1631
|
-
this.i.
|
|
1629
|
+
this.i.ky.d = +v;
|
|
1630
|
+
this._a("searchTypeCornerRadiusTopRight", this.i.ky.d);
|
|
1631
|
+
this.i.ky = this.i.ky;
|
|
1632
1632
|
}
|
|
1633
1633
|
ensureSearchTypeCornerRadius() {
|
|
1634
|
-
if (this.i.
|
|
1634
|
+
if (this.i.ky) {
|
|
1635
1635
|
return;
|
|
1636
1636
|
}
|
|
1637
|
-
this.i.
|
|
1637
|
+
this.i.ky = new CornerRadius(2);
|
|
1638
1638
|
}
|
|
1639
1639
|
get searchTypeContentPaddingBottom() {
|
|
1640
|
-
return this.i.
|
|
1640
|
+
return this.i.oo ? this.i.oo.bottom : NaN;
|
|
1641
1641
|
}
|
|
1642
1642
|
set searchTypeContentPaddingBottom(v) {
|
|
1643
1643
|
this.ensureSearchTypeContentPadding();
|
|
1644
|
-
this.i.
|
|
1645
|
-
this._a("searchTypeContentPaddingBottom", this.i.
|
|
1646
|
-
this.i.
|
|
1644
|
+
this.i.oo.bottom = +v;
|
|
1645
|
+
this._a("searchTypeContentPaddingBottom", this.i.oo.bottom);
|
|
1646
|
+
this.i.oo = this.i.oo;
|
|
1647
1647
|
}
|
|
1648
1648
|
get searchTypeContentPaddingLeft() {
|
|
1649
|
-
return this.i.
|
|
1649
|
+
return this.i.oo ? this.i.oo.left : NaN;
|
|
1650
1650
|
}
|
|
1651
1651
|
set searchTypeContentPaddingLeft(v) {
|
|
1652
1652
|
this.ensureSearchTypeContentPadding();
|
|
1653
|
-
this.i.
|
|
1654
|
-
this._a("searchTypeContentPaddingLeft", this.i.
|
|
1655
|
-
this.i.
|
|
1653
|
+
this.i.oo.left = +v;
|
|
1654
|
+
this._a("searchTypeContentPaddingLeft", this.i.oo.left);
|
|
1655
|
+
this.i.oo = this.i.oo;
|
|
1656
1656
|
}
|
|
1657
1657
|
get searchTypeContentPaddingRight() {
|
|
1658
|
-
return this.i.
|
|
1658
|
+
return this.i.oo ? this.i.oo.right : NaN;
|
|
1659
1659
|
}
|
|
1660
1660
|
set searchTypeContentPaddingRight(v) {
|
|
1661
1661
|
this.ensureSearchTypeContentPadding();
|
|
1662
|
-
this.i.
|
|
1663
|
-
this._a("searchTypeContentPaddingRight", this.i.
|
|
1664
|
-
this.i.
|
|
1662
|
+
this.i.oo.right = +v;
|
|
1663
|
+
this._a("searchTypeContentPaddingRight", this.i.oo.right);
|
|
1664
|
+
this.i.oo = this.i.oo;
|
|
1665
1665
|
}
|
|
1666
1666
|
get searchTypeContentPaddingTop() {
|
|
1667
|
-
return this.i.
|
|
1667
|
+
return this.i.oo ? this.i.oo.top : NaN;
|
|
1668
1668
|
}
|
|
1669
1669
|
set searchTypeContentPaddingTop(v) {
|
|
1670
1670
|
this.ensureSearchTypeContentPadding();
|
|
1671
|
-
this.i.
|
|
1672
|
-
this._a("searchTypeContentPaddingTop", this.i.
|
|
1673
|
-
this.i.
|
|
1671
|
+
this.i.oo.top = +v;
|
|
1672
|
+
this._a("searchTypeContentPaddingTop", this.i.oo.top);
|
|
1673
|
+
this.i.oo = this.i.oo;
|
|
1674
1674
|
}
|
|
1675
1675
|
ensureSearchTypeContentPadding() {
|
|
1676
|
-
if (this.i.
|
|
1676
|
+
if (this.i.oo) {
|
|
1677
1677
|
return;
|
|
1678
1678
|
}
|
|
1679
|
-
this.i.
|
|
1679
|
+
this.i.oo = new Thickness(2);
|
|
1680
1680
|
}
|
|
1681
1681
|
/**
|
|
1682
1682
|
* Gets or sets the width to use for the underline element when type is search.
|
|
1683
1683
|
*/
|
|
1684
1684
|
get searchTypeUnderlineWidth() {
|
|
1685
|
-
return this.i.
|
|
1685
|
+
return this.i.e4;
|
|
1686
1686
|
}
|
|
1687
1687
|
set searchTypeUnderlineWidth(v) {
|
|
1688
|
-
this.i.
|
|
1689
|
-
this._a("searchTypeUnderlineWidth", this.i.
|
|
1688
|
+
this.i.e4 = +v;
|
|
1689
|
+
this._a("searchTypeUnderlineWidth", this.i.e4);
|
|
1690
1690
|
}
|
|
1691
1691
|
/**
|
|
1692
1692
|
* Gets or sets the width to use for the underline element when type is search.
|
|
1693
1693
|
*/
|
|
1694
1694
|
get searchTypeUnderlineRippleWidth() {
|
|
1695
|
-
return this.i.
|
|
1695
|
+
return this.i.e3;
|
|
1696
1696
|
}
|
|
1697
1697
|
set searchTypeUnderlineRippleWidth(v) {
|
|
1698
|
-
this.i.
|
|
1699
|
-
this._a("searchTypeUnderlineRippleWidth", this.i.
|
|
1698
|
+
this.i.e3 = +v;
|
|
1699
|
+
this._a("searchTypeUnderlineRippleWidth", this.i.e3);
|
|
1700
1700
|
}
|
|
1701
1701
|
/**
|
|
1702
1702
|
* Gets or sets the width to use for the underline element when hovered when type is search.
|
|
1703
1703
|
*/
|
|
1704
1704
|
get searchTypeHoverUnderlineWidth() {
|
|
1705
|
-
return this.i.
|
|
1705
|
+
return this.i.e0;
|
|
1706
1706
|
}
|
|
1707
1707
|
set searchTypeHoverUnderlineWidth(v) {
|
|
1708
|
-
this.i.
|
|
1709
|
-
this._a("searchTypeHoverUnderlineWidth", this.i.
|
|
1708
|
+
this.i.e0 = +v;
|
|
1709
|
+
this._a("searchTypeHoverUnderlineWidth", this.i.e0);
|
|
1710
1710
|
}
|
|
1711
1711
|
/**
|
|
1712
1712
|
* Gets or sets the color to use for the underline element when type is search.
|
|
1713
1713
|
*/
|
|
1714
1714
|
get searchTypeUnderlineColor() {
|
|
1715
|
-
return brushToString(this.i.
|
|
1715
|
+
return brushToString(this.i.n3);
|
|
1716
1716
|
}
|
|
1717
1717
|
set searchTypeUnderlineColor(v) {
|
|
1718
|
-
this.i.
|
|
1719
|
-
this._a("searchTypeUnderlineColor", brushToString(this.i.
|
|
1718
|
+
this.i.n3 = stringToBrush(v);
|
|
1719
|
+
this._a("searchTypeUnderlineColor", brushToString(this.i.n3));
|
|
1720
1720
|
}
|
|
1721
1721
|
/**
|
|
1722
1722
|
* Gets or sets the color to use for the underline ripple element when type is search.
|
|
1723
1723
|
*/
|
|
1724
1724
|
get searchTypeUnderlineRippleColor() {
|
|
1725
|
-
return brushToString(this.i.
|
|
1725
|
+
return brushToString(this.i.n4);
|
|
1726
1726
|
}
|
|
1727
1727
|
set searchTypeUnderlineRippleColor(v) {
|
|
1728
|
-
this.i.
|
|
1729
|
-
this._a("searchTypeUnderlineRippleColor", brushToString(this.i.
|
|
1728
|
+
this.i.n4 = stringToBrush(v);
|
|
1729
|
+
this._a("searchTypeUnderlineRippleColor", brushToString(this.i.n4));
|
|
1730
1730
|
}
|
|
1731
1731
|
/**
|
|
1732
1732
|
* Gets or sets the color to use for the underline element when type is search.
|
|
1733
1733
|
*/
|
|
1734
1734
|
get searchTypeHoverUnderlineColor() {
|
|
1735
|
-
return brushToString(this.i.
|
|
1735
|
+
return brushToString(this.i.n2);
|
|
1736
1736
|
}
|
|
1737
1737
|
set searchTypeHoverUnderlineColor(v) {
|
|
1738
|
-
this.i.
|
|
1739
|
-
this._a("searchTypeHoverUnderlineColor", brushToString(this.i.
|
|
1738
|
+
this.i.n2 = stringToBrush(v);
|
|
1739
|
+
this._a("searchTypeHoverUnderlineColor", brushToString(this.i.n2));
|
|
1740
1740
|
}
|
|
1741
1741
|
/**
|
|
1742
1742
|
* Gets or sets the color to use for the underline element when type is search.
|
|
1743
1743
|
*/
|
|
1744
1744
|
get searchTypeFocusUnderlineColor() {
|
|
1745
|
-
return brushToString(this.i.
|
|
1745
|
+
return brushToString(this.i.n1);
|
|
1746
1746
|
}
|
|
1747
1747
|
set searchTypeFocusUnderlineColor(v) {
|
|
1748
|
-
this.i.
|
|
1749
|
-
this._a("searchTypeFocusUnderlineColor", brushToString(this.i.
|
|
1748
|
+
this.i.n1 = stringToBrush(v);
|
|
1749
|
+
this._a("searchTypeFocusUnderlineColor", brushToString(this.i.n1));
|
|
1750
1750
|
}
|
|
1751
1751
|
/**
|
|
1752
1752
|
* Gets or sets the color to use for the underline element when type is search.
|
|
1753
1753
|
*/
|
|
1754
1754
|
get searchTypeUnderlineOpacity() {
|
|
1755
|
-
return this.i.
|
|
1755
|
+
return this.i.e1;
|
|
1756
1756
|
}
|
|
1757
1757
|
set searchTypeUnderlineOpacity(v) {
|
|
1758
|
-
this.i.
|
|
1759
|
-
this._a("searchTypeUnderlineOpacity", this.i.
|
|
1758
|
+
this.i.e1 = +v;
|
|
1759
|
+
this._a("searchTypeUnderlineOpacity", this.i.e1);
|
|
1760
1760
|
}
|
|
1761
1761
|
/**
|
|
1762
1762
|
* Gets or sets the color to use for the underline element when type is search.
|
|
1763
1763
|
*/
|
|
1764
1764
|
get searchTypeHoverUnderlineOpacity() {
|
|
1765
|
-
return this.i.
|
|
1765
|
+
return this.i.ez;
|
|
1766
1766
|
}
|
|
1767
1767
|
set searchTypeHoverUnderlineOpacity(v) {
|
|
1768
|
-
this.i.
|
|
1769
|
-
this._a("searchTypeHoverUnderlineOpacity", this.i.
|
|
1768
|
+
this.i.ez = +v;
|
|
1769
|
+
this._a("searchTypeHoverUnderlineOpacity", this.i.ez);
|
|
1770
1770
|
}
|
|
1771
1771
|
/**
|
|
1772
1772
|
* Gets or sets the color to use for the underline element when type is search.
|
|
1773
1773
|
*/
|
|
1774
1774
|
get searchTypeFocusUnderlineOpacity() {
|
|
1775
|
-
return this.i.
|
|
1775
|
+
return this.i.ex;
|
|
1776
1776
|
}
|
|
1777
1777
|
set searchTypeFocusUnderlineOpacity(v) {
|
|
1778
|
-
this.i.
|
|
1779
|
-
this._a("searchTypeFocusUnderlineOpacity", this.i.
|
|
1778
|
+
this.i.ex = +v;
|
|
1779
|
+
this._a("searchTypeFocusUnderlineOpacity", this.i.ex);
|
|
1780
1780
|
}
|
|
1781
1781
|
/**
|
|
1782
1782
|
* Gets or sets the opacity to use for the underline ripple element when focused when type is search.
|
|
1783
1783
|
*/
|
|
1784
1784
|
get searchTypeFocusUnderlineRippleOpacity() {
|
|
1785
|
-
return this.i.
|
|
1785
|
+
return this.i.ey;
|
|
1786
1786
|
}
|
|
1787
1787
|
set searchTypeFocusUnderlineRippleOpacity(v) {
|
|
1788
|
-
this.i.
|
|
1789
|
-
this._a("searchTypeFocusUnderlineRippleOpacity", this.i.
|
|
1788
|
+
this.i.ey = +v;
|
|
1789
|
+
this._a("searchTypeFocusUnderlineRippleOpacity", this.i.ey);
|
|
1790
1790
|
}
|
|
1791
1791
|
/**
|
|
1792
1792
|
* Gets or sets the opacity to use for the underline ripple element when type is search.
|
|
1793
1793
|
*/
|
|
1794
1794
|
get searchTypeUnderlineRippleOpacity() {
|
|
1795
|
-
return this.i.
|
|
1795
|
+
return this.i.e2;
|
|
1796
1796
|
}
|
|
1797
1797
|
set searchTypeUnderlineRippleOpacity(v) {
|
|
1798
|
-
this.i.
|
|
1799
|
-
this._a("searchTypeUnderlineRippleOpacity", this.i.
|
|
1798
|
+
this.i.e2 = +v;
|
|
1799
|
+
this._a("searchTypeUnderlineRippleOpacity", this.i.e2);
|
|
1800
1800
|
}
|
|
1801
1801
|
/**
|
|
1802
1802
|
* Gets or sets the background color to use for the input group when type is search.
|
|
1803
1803
|
*/
|
|
1804
1804
|
get searchTypeBackgroundColor() {
|
|
1805
|
-
return brushToString(this.i.
|
|
1805
|
+
return brushToString(this.i.ny);
|
|
1806
1806
|
}
|
|
1807
1807
|
set searchTypeBackgroundColor(v) {
|
|
1808
|
-
this.i.
|
|
1809
|
-
this._a("searchTypeBackgroundColor", brushToString(this.i.
|
|
1808
|
+
this.i.ny = stringToBrush(v);
|
|
1809
|
+
this._a("searchTypeBackgroundColor", brushToString(this.i.ny));
|
|
1810
1810
|
}
|
|
1811
1811
|
/**
|
|
1812
1812
|
* Gets or sets whether the input group is expanded or not.
|
|
1813
1813
|
*/
|
|
1814
1814
|
get isExpanded() {
|
|
1815
|
-
return this.i.
|
|
1815
|
+
return this.i.an;
|
|
1816
1816
|
}
|
|
1817
1817
|
set isExpanded(v) {
|
|
1818
|
-
this.i.
|
|
1819
|
-
this._a("isExpanded", this.i.
|
|
1818
|
+
this.i.an = ensureBool(v);
|
|
1819
|
+
this._a("isExpanded", this.i.an);
|
|
1820
1820
|
}
|
|
1821
1821
|
/**
|
|
1822
1822
|
* Gets or sets whether the input group is hovered or not.
|
|
1823
1823
|
*/
|
|
1824
1824
|
get isHovered() {
|
|
1825
|
-
return this.i.
|
|
1825
|
+
return this.i.ap;
|
|
1826
1826
|
}
|
|
1827
1827
|
set isHovered(v) {
|
|
1828
|
-
this.i.
|
|
1829
|
-
this._a("isHovered", this.i.
|
|
1828
|
+
this.i.ap = ensureBool(v);
|
|
1829
|
+
this._a("isHovered", this.i.ap);
|
|
1830
1830
|
}
|
|
1831
1831
|
/**
|
|
1832
1832
|
* Gets or sets whether the input group is hovered or not.
|
|
1833
1833
|
*/
|
|
1834
1834
|
get isFocused() {
|
|
1835
|
-
return this.i.
|
|
1835
|
+
return this.i.ao;
|
|
1836
1836
|
}
|
|
1837
1837
|
set isFocused(v) {
|
|
1838
|
-
this.i.
|
|
1839
|
-
this._a("isFocused", this.i.
|
|
1838
|
+
this.i.ao = ensureBool(v);
|
|
1839
|
+
this._a("isFocused", this.i.ao);
|
|
1840
1840
|
}
|
|
1841
1841
|
/**
|
|
1842
1842
|
* Gets or sets whether the input group is expanded or not.
|
|
1843
1843
|
*/
|
|
1844
1844
|
get actualIsExpanded() {
|
|
1845
|
-
return this.i.
|
|
1845
|
+
return this.i.ai;
|
|
1846
1846
|
}
|
|
1847
1847
|
set actualIsExpanded(v) {
|
|
1848
|
-
this.i.
|
|
1849
|
-
this._a("actualIsExpanded", this.i.
|
|
1848
|
+
this.i.ai = ensureBool(v);
|
|
1849
|
+
this._a("actualIsExpanded", this.i.ai);
|
|
1850
1850
|
}
|
|
1851
1851
|
/**
|
|
1852
1852
|
* Gets or sets the color to use the hovered background of the inputs in the group.
|
|
1853
1853
|
*/
|
|
1854
1854
|
get focusBorderColor() {
|
|
1855
|
-
return brushToString(this.i.
|
|
1855
|
+
return brushToString(this.i.no);
|
|
1856
1856
|
}
|
|
1857
1857
|
set focusBorderColor(v) {
|
|
1858
|
-
this.i.
|
|
1859
|
-
this._a("focusBorderColor", brushToString(this.i.
|
|
1858
|
+
this.i.no = stringToBrush(v);
|
|
1859
|
+
this._a("focusBorderColor", brushToString(this.i.no));
|
|
1860
1860
|
}
|
|
1861
1861
|
/**
|
|
1862
1862
|
* Gets or sets the id to use for the checkbox.
|
|
1863
1863
|
*/
|
|
1864
1864
|
get id() {
|
|
1865
|
-
return this.i.
|
|
1865
|
+
return this.i.hk;
|
|
1866
1866
|
}
|
|
1867
1867
|
set id(v) {
|
|
1868
|
-
this.i.
|
|
1868
|
+
this.i.hk = v;
|
|
1869
1869
|
}
|
|
1870
1870
|
/**
|
|
1871
1871
|
* Gets or sets whether the checkbox is disabled.
|
|
@@ -1952,7 +1952,7 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
1952
1952
|
|
|
1953
1953
|
*/
|
|
1954
1954
|
exportVisualModel() {
|
|
1955
|
-
let iv = this.i.
|
|
1955
|
+
let iv = this.i.fe();
|
|
1956
1956
|
return (iv);
|
|
1957
1957
|
}
|
|
1958
1958
|
/**
|
|
@@ -1960,7 +1960,7 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
1960
1960
|
|
|
1961
1961
|
*/
|
|
1962
1962
|
exportSerializedVisualModel() {
|
|
1963
|
-
let iv = this.i.
|
|
1963
|
+
let iv = this.i.hb();
|
|
1964
1964
|
return (iv);
|
|
1965
1965
|
}
|
|
1966
1966
|
}
|