igniteui-webcomponents-inputs 4.2.4-alpha → 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
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
2
|
import { IgCollection } from "igniteui-webcomponents-core";
|
|
3
3
|
import { markType } from "igniteui-webcomponents-core";
|
|
4
4
|
import { SyncableObservableCollection$2 } from "igniteui-webcomponents-core";
|
|
5
5
|
import { XButton as XButton_internal } from './XButton';
|
|
6
6
|
import { IgcXButtonComponent as IgcXButtonComponent } from './igc-x-button-component';
|
|
7
7
|
var IgcXButtonGroupButtonCollection = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
8
|
-
|
|
8
|
+
__extends(IgcXButtonGroupButtonCollection, _super);
|
|
9
9
|
function IgcXButtonGroupButtonCollection(list) {
|
|
10
10
|
var _this = _super.call(this) || this;
|
|
11
11
|
if (!IgcXButtonComponent.$type) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { __extends, __values } from "tslib";
|
|
2
2
|
import { XButtonGroup } from "./XButtonGroup";
|
|
3
3
|
import { ensureEnum, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, NamePatcher, toSpinal, enumToString, getAllPropertyNames, fromSpinal } from "igniteui-webcomponents-core";
|
|
4
4
|
import { WebComponentRenderer, PortalManager } from "igniteui-webcomponents-core";
|
|
@@ -16,7 +16,7 @@ import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
|
|
|
16
16
|
import { ButtonGroupDisplayStyle_$type } from './ButtonGroupDisplayStyle';
|
|
17
17
|
import { IgcHTMLElement } from "igniteui-webcomponents-core";
|
|
18
18
|
var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
19
|
-
|
|
19
|
+
__extends(IgcXButtonGroupComponent, _super);
|
|
20
20
|
function IgcXButtonGroupComponent() {
|
|
21
21
|
var _this = _super.call(this) || this;
|
|
22
22
|
_this.contentButtons = [];
|
|
@@ -70,7 +70,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
70
70
|
var mut = new MutationObserver(function (list) {
|
|
71
71
|
var e_1, _b;
|
|
72
72
|
try {
|
|
73
|
-
for (var list_1 =
|
|
73
|
+
for (var list_1 = __values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
|
|
74
74
|
var mutation = list_1_1.value;
|
|
75
75
|
if (mutation.type == 'childList') {
|
|
76
76
|
_this._onChildrenChanged();
|
|
@@ -130,7 +130,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
130
130
|
}
|
|
131
131
|
return this._buttons;
|
|
132
132
|
},
|
|
133
|
-
enumerable:
|
|
133
|
+
enumerable: false,
|
|
134
134
|
configurable: true
|
|
135
135
|
});
|
|
136
136
|
IgcXButtonGroupComponent.prototype._onChildrenChanged = function () {
|
|
@@ -211,7 +211,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
211
211
|
} /**
|
|
212
212
|
* @hidden
|
|
213
213
|
*/,
|
|
214
|
-
enumerable:
|
|
214
|
+
enumerable: false,
|
|
215
215
|
configurable: true
|
|
216
216
|
});
|
|
217
217
|
IgcXButtonGroupComponent._createFromInternal = function (internal) {
|
|
@@ -267,7 +267,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
267
267
|
}
|
|
268
268
|
return IgcXButtonGroupComponent._observedAttributesIgcXButtonGroupComponent;
|
|
269
269
|
},
|
|
270
|
-
enumerable:
|
|
270
|
+
enumerable: false,
|
|
271
271
|
configurable: true
|
|
272
272
|
});
|
|
273
273
|
IgcXButtonGroupComponent.prototype.attributeChangedCallback = function (name, oldValue, newValue) {
|
|
@@ -296,7 +296,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
296
296
|
this.i.i = ensureEnum(ButtonGroupDisplayStyle_$type, v);
|
|
297
297
|
this._a("displayType", enumToString(ButtonGroupDisplayStyle_$type, this.i.i));
|
|
298
298
|
},
|
|
299
|
-
enumerable:
|
|
299
|
+
enumerable: false,
|
|
300
300
|
configurable: true
|
|
301
301
|
});
|
|
302
302
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "baseTheme", {
|
|
@@ -310,7 +310,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
310
310
|
this.i.p = ensureEnum(BaseControlTheme_$type, v);
|
|
311
311
|
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.p));
|
|
312
312
|
},
|
|
313
|
-
enumerable:
|
|
313
|
+
enumerable: false,
|
|
314
314
|
configurable: true
|
|
315
315
|
});
|
|
316
316
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "density", {
|
|
@@ -324,7 +324,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
324
324
|
this.i.t = ensureEnum(ControlDisplayDensity_$type, v);
|
|
325
325
|
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.t));
|
|
326
326
|
},
|
|
327
|
-
enumerable:
|
|
327
|
+
enumerable: false,
|
|
328
328
|
configurable: true
|
|
329
329
|
});
|
|
330
330
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualDensity", {
|
|
@@ -338,7 +338,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
338
338
|
this.i.s = ensureEnum(ControlDisplayDensity_$type, v);
|
|
339
339
|
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.s));
|
|
340
340
|
},
|
|
341
|
-
enumerable:
|
|
341
|
+
enumerable: false,
|
|
342
342
|
configurable: true
|
|
343
343
|
});
|
|
344
344
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "selectedIndices", {
|
|
@@ -355,7 +355,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
355
355
|
}
|
|
356
356
|
this.i.d = v;
|
|
357
357
|
},
|
|
358
|
-
enumerable:
|
|
358
|
+
enumerable: false,
|
|
359
359
|
configurable: true
|
|
360
360
|
});
|
|
361
361
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualItemCornerRadius", {
|
|
@@ -369,7 +369,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
369
369
|
this.i.al = +v;
|
|
370
370
|
this._a("actualItemCornerRadius", this.i.al);
|
|
371
371
|
},
|
|
372
|
-
enumerable:
|
|
372
|
+
enumerable: false,
|
|
373
373
|
configurable: true
|
|
374
374
|
});
|
|
375
375
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualItemBackgroundColor", {
|
|
@@ -383,7 +383,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
383
383
|
this.i.ez = stringToBrush(v);
|
|
384
384
|
this._a("actualItemBackgroundColor", brushToString(this.i.ez));
|
|
385
385
|
},
|
|
386
|
-
enumerable:
|
|
386
|
+
enumerable: false,
|
|
387
387
|
configurable: true
|
|
388
388
|
});
|
|
389
389
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualItemDisabledBackgroundColor", {
|
|
@@ -397,7 +397,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
397
397
|
this.i.e1 = stringToBrush(v);
|
|
398
398
|
this._a("actualItemDisabledBackgroundColor", brushToString(this.i.e1));
|
|
399
399
|
},
|
|
400
|
-
enumerable:
|
|
400
|
+
enumerable: false,
|
|
401
401
|
configurable: true
|
|
402
402
|
});
|
|
403
403
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualItemTextColor", {
|
|
@@ -411,7 +411,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
411
411
|
this.i.e6 = stringToBrush(v);
|
|
412
412
|
this._a("actualItemTextColor", brushToString(this.i.e6));
|
|
413
413
|
},
|
|
414
|
-
enumerable:
|
|
414
|
+
enumerable: false,
|
|
415
415
|
configurable: true
|
|
416
416
|
});
|
|
417
417
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualItemDisabledTextColor", {
|
|
@@ -425,7 +425,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
425
425
|
this.i.e3 = stringToBrush(v);
|
|
426
426
|
this._a("actualItemDisabledTextColor", brushToString(this.i.e3));
|
|
427
427
|
},
|
|
428
|
-
enumerable:
|
|
428
|
+
enumerable: false,
|
|
429
429
|
configurable: true
|
|
430
430
|
});
|
|
431
431
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualItemBorderColor", {
|
|
@@ -439,7 +439,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
439
439
|
this.i.e0 = stringToBrush(v);
|
|
440
440
|
this._a("actualItemBorderColor", brushToString(this.i.e0));
|
|
441
441
|
},
|
|
442
|
-
enumerable:
|
|
442
|
+
enumerable: false,
|
|
443
443
|
configurable: true
|
|
444
444
|
});
|
|
445
445
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualItemDisabledBorderColor", {
|
|
@@ -453,7 +453,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
453
453
|
this.i.e2 = stringToBrush(v);
|
|
454
454
|
this._a("actualItemDisabledBorderColor", brushToString(this.i.e2));
|
|
455
455
|
},
|
|
456
|
-
enumerable:
|
|
456
|
+
enumerable: false,
|
|
457
457
|
configurable: true
|
|
458
458
|
});
|
|
459
459
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualItemBorderWidth", {
|
|
@@ -467,7 +467,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
467
467
|
this.i.ak = +v;
|
|
468
468
|
this._a("actualItemBorderWidth", this.i.ak);
|
|
469
469
|
},
|
|
470
|
-
enumerable:
|
|
470
|
+
enumerable: false,
|
|
471
471
|
configurable: true
|
|
472
472
|
});
|
|
473
473
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualSelectedItemBackgroundColor", {
|
|
@@ -481,7 +481,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
481
481
|
this.i.e7 = stringToBrush(v);
|
|
482
482
|
this._a("actualSelectedItemBackgroundColor", brushToString(this.i.e7));
|
|
483
483
|
},
|
|
484
|
-
enumerable:
|
|
484
|
+
enumerable: false,
|
|
485
485
|
configurable: true
|
|
486
486
|
});
|
|
487
487
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualSelectedItemTextColor", {
|
|
@@ -495,7 +495,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
495
495
|
this.i.fa = stringToBrush(v);
|
|
496
496
|
this._a("actualSelectedItemTextColor", brushToString(this.i.fa));
|
|
497
497
|
},
|
|
498
|
-
enumerable:
|
|
498
|
+
enumerable: false,
|
|
499
499
|
configurable: true
|
|
500
500
|
});
|
|
501
501
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualItemHoverBackgroundColor", {
|
|
@@ -509,7 +509,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
509
509
|
this.i.e4 = stringToBrush(v);
|
|
510
510
|
this._a("actualItemHoverBackgroundColor", brushToString(this.i.e4));
|
|
511
511
|
},
|
|
512
|
-
enumerable:
|
|
512
|
+
enumerable: false,
|
|
513
513
|
configurable: true
|
|
514
514
|
});
|
|
515
515
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualItemHoverTextColor", {
|
|
@@ -523,7 +523,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
523
523
|
this.i.e5 = stringToBrush(v);
|
|
524
524
|
this._a("actualItemHoverTextColor", brushToString(this.i.e5));
|
|
525
525
|
},
|
|
526
|
-
enumerable:
|
|
526
|
+
enumerable: false,
|
|
527
527
|
configurable: true
|
|
528
528
|
});
|
|
529
529
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualSelectedItemHoverBackgroundColor", {
|
|
@@ -537,7 +537,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
537
537
|
this.i.e8 = stringToBrush(v);
|
|
538
538
|
this._a("actualSelectedItemHoverBackgroundColor", brushToString(this.i.e8));
|
|
539
539
|
},
|
|
540
|
-
enumerable:
|
|
540
|
+
enumerable: false,
|
|
541
541
|
configurable: true
|
|
542
542
|
});
|
|
543
543
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "actualSelectedItemHoverTextColor", {
|
|
@@ -551,7 +551,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
551
551
|
this.i.e9 = stringToBrush(v);
|
|
552
552
|
this._a("actualSelectedItemHoverTextColor", brushToString(this.i.e9));
|
|
553
553
|
},
|
|
554
|
-
enumerable:
|
|
554
|
+
enumerable: false,
|
|
555
555
|
configurable: true
|
|
556
556
|
});
|
|
557
557
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "itemCornerRadius", {
|
|
@@ -565,7 +565,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
565
565
|
this.i.a1 = +v;
|
|
566
566
|
this._a("itemCornerRadius", this.i.a1);
|
|
567
567
|
},
|
|
568
|
-
enumerable:
|
|
568
|
+
enumerable: false,
|
|
569
569
|
configurable: true
|
|
570
570
|
});
|
|
571
571
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "itemBackgroundColor", {
|
|
@@ -579,7 +579,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
579
579
|
this.i.hn = stringToBrush(v);
|
|
580
580
|
this._a("itemBackgroundColor", brushToString(this.i.hn));
|
|
581
581
|
},
|
|
582
|
-
enumerable:
|
|
582
|
+
enumerable: false,
|
|
583
583
|
configurable: true
|
|
584
584
|
});
|
|
585
585
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "itemDisabledBackgroundColor", {
|
|
@@ -593,7 +593,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
593
593
|
this.i.hp = stringToBrush(v);
|
|
594
594
|
this._a("itemDisabledBackgroundColor", brushToString(this.i.hp));
|
|
595
595
|
},
|
|
596
|
-
enumerable:
|
|
596
|
+
enumerable: false,
|
|
597
597
|
configurable: true
|
|
598
598
|
});
|
|
599
599
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "itemTextColor", {
|
|
@@ -607,7 +607,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
607
607
|
this.i.hu = stringToBrush(v);
|
|
608
608
|
this._a("itemTextColor", brushToString(this.i.hu));
|
|
609
609
|
},
|
|
610
|
-
enumerable:
|
|
610
|
+
enumerable: false,
|
|
611
611
|
configurable: true
|
|
612
612
|
});
|
|
613
613
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "itemDisabledTextColor", {
|
|
@@ -621,7 +621,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
621
621
|
this.i.hr = stringToBrush(v);
|
|
622
622
|
this._a("itemDisabledTextColor", brushToString(this.i.hr));
|
|
623
623
|
},
|
|
624
|
-
enumerable:
|
|
624
|
+
enumerable: false,
|
|
625
625
|
configurable: true
|
|
626
626
|
});
|
|
627
627
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "itemHoverBackgroundColor", {
|
|
@@ -635,7 +635,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
635
635
|
this.i.hs = stringToBrush(v);
|
|
636
636
|
this._a("itemHoverBackgroundColor", brushToString(this.i.hs));
|
|
637
637
|
},
|
|
638
|
-
enumerable:
|
|
638
|
+
enumerable: false,
|
|
639
639
|
configurable: true
|
|
640
640
|
});
|
|
641
641
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "itemBorderColor", {
|
|
@@ -649,7 +649,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
649
649
|
this.i.ho = stringToBrush(v);
|
|
650
650
|
this._a("itemBorderColor", brushToString(this.i.ho));
|
|
651
651
|
},
|
|
652
|
-
enumerable:
|
|
652
|
+
enumerable: false,
|
|
653
653
|
configurable: true
|
|
654
654
|
});
|
|
655
655
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "itemDisabledBorderColor", {
|
|
@@ -663,7 +663,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
663
663
|
this.i.hq = stringToBrush(v);
|
|
664
664
|
this._a("itemDisabledBorderColor", brushToString(this.i.hq));
|
|
665
665
|
},
|
|
666
|
-
enumerable:
|
|
666
|
+
enumerable: false,
|
|
667
667
|
configurable: true
|
|
668
668
|
});
|
|
669
669
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "itemBorderWidth", {
|
|
@@ -677,7 +677,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
677
677
|
this.i.a0 = +v;
|
|
678
678
|
this._a("itemBorderWidth", this.i.a0);
|
|
679
679
|
},
|
|
680
|
-
enumerable:
|
|
680
|
+
enumerable: false,
|
|
681
681
|
configurable: true
|
|
682
682
|
});
|
|
683
683
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "itemHoverTextColor", {
|
|
@@ -691,7 +691,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
691
691
|
this.i.ht = stringToBrush(v);
|
|
692
692
|
this._a("itemHoverTextColor", brushToString(this.i.ht));
|
|
693
693
|
},
|
|
694
|
-
enumerable:
|
|
694
|
+
enumerable: false,
|
|
695
695
|
configurable: true
|
|
696
696
|
});
|
|
697
697
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "selectedItemBackgroundColor", {
|
|
@@ -705,7 +705,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
705
705
|
this.i.h7 = stringToBrush(v);
|
|
706
706
|
this._a("selectedItemBackgroundColor", brushToString(this.i.h7));
|
|
707
707
|
},
|
|
708
|
-
enumerable:
|
|
708
|
+
enumerable: false,
|
|
709
709
|
configurable: true
|
|
710
710
|
});
|
|
711
711
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "selectedItemTextColor", {
|
|
@@ -719,7 +719,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
719
719
|
this.i.ia = stringToBrush(v);
|
|
720
720
|
this._a("selectedItemTextColor", brushToString(this.i.ia));
|
|
721
721
|
},
|
|
722
|
-
enumerable:
|
|
722
|
+
enumerable: false,
|
|
723
723
|
configurable: true
|
|
724
724
|
});
|
|
725
725
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "selectedItemHoverBackgroundColor", {
|
|
@@ -733,7 +733,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
733
733
|
this.i.h8 = stringToBrush(v);
|
|
734
734
|
this._a("selectedItemHoverBackgroundColor", brushToString(this.i.h8));
|
|
735
735
|
},
|
|
736
|
-
enumerable:
|
|
736
|
+
enumerable: false,
|
|
737
737
|
configurable: true
|
|
738
738
|
});
|
|
739
739
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "selectedItemHoverTextColor", {
|
|
@@ -747,7 +747,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
747
747
|
this.i.h9 = stringToBrush(v);
|
|
748
748
|
this._a("selectedItemHoverTextColor", brushToString(this.i.h9));
|
|
749
749
|
},
|
|
750
|
-
enumerable:
|
|
750
|
+
enumerable: false,
|
|
751
751
|
configurable: true
|
|
752
752
|
});
|
|
753
753
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedItemCornerRadius", {
|
|
@@ -761,7 +761,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
761
761
|
this.i.a3 = +v;
|
|
762
762
|
this._a("outlinedItemCornerRadius", this.i.a3);
|
|
763
763
|
},
|
|
764
|
-
enumerable:
|
|
764
|
+
enumerable: false,
|
|
765
765
|
configurable: true
|
|
766
766
|
});
|
|
767
767
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedItemBackgroundColor", {
|
|
@@ -775,7 +775,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
775
775
|
this.i.hv = stringToBrush(v);
|
|
776
776
|
this._a("outlinedItemBackgroundColor", brushToString(this.i.hv));
|
|
777
777
|
},
|
|
778
|
-
enumerable:
|
|
778
|
+
enumerable: false,
|
|
779
779
|
configurable: true
|
|
780
780
|
});
|
|
781
781
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedItemDisabledBackgroundColor", {
|
|
@@ -789,7 +789,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
789
789
|
this.i.hx = stringToBrush(v);
|
|
790
790
|
this._a("outlinedItemDisabledBackgroundColor", brushToString(this.i.hx));
|
|
791
791
|
},
|
|
792
|
-
enumerable:
|
|
792
|
+
enumerable: false,
|
|
793
793
|
configurable: true
|
|
794
794
|
});
|
|
795
795
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedItemTextColor", {
|
|
@@ -803,7 +803,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
803
803
|
this.i.h2 = stringToBrush(v);
|
|
804
804
|
this._a("outlinedItemTextColor", brushToString(this.i.h2));
|
|
805
805
|
},
|
|
806
|
-
enumerable:
|
|
806
|
+
enumerable: false,
|
|
807
807
|
configurable: true
|
|
808
808
|
});
|
|
809
809
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedItemDisabledTextColor", {
|
|
@@ -817,7 +817,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
817
817
|
this.i.hz = stringToBrush(v);
|
|
818
818
|
this._a("outlinedItemDisabledTextColor", brushToString(this.i.hz));
|
|
819
819
|
},
|
|
820
|
-
enumerable:
|
|
820
|
+
enumerable: false,
|
|
821
821
|
configurable: true
|
|
822
822
|
});
|
|
823
823
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedItemHoverBackgroundColor", {
|
|
@@ -831,7 +831,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
831
831
|
this.i.h0 = stringToBrush(v);
|
|
832
832
|
this._a("outlinedItemHoverBackgroundColor", brushToString(this.i.h0));
|
|
833
833
|
},
|
|
834
|
-
enumerable:
|
|
834
|
+
enumerable: false,
|
|
835
835
|
configurable: true
|
|
836
836
|
});
|
|
837
837
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedItemBorderColor", {
|
|
@@ -845,7 +845,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
845
845
|
this.i.hw = stringToBrush(v);
|
|
846
846
|
this._a("outlinedItemBorderColor", brushToString(this.i.hw));
|
|
847
847
|
},
|
|
848
|
-
enumerable:
|
|
848
|
+
enumerable: false,
|
|
849
849
|
configurable: true
|
|
850
850
|
});
|
|
851
851
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedItemDisabledBorderColor", {
|
|
@@ -859,7 +859,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
859
859
|
this.i.hy = stringToBrush(v);
|
|
860
860
|
this._a("outlinedItemDisabledBorderColor", brushToString(this.i.hy));
|
|
861
861
|
},
|
|
862
|
-
enumerable:
|
|
862
|
+
enumerable: false,
|
|
863
863
|
configurable: true
|
|
864
864
|
});
|
|
865
865
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedItemBorderWidth", {
|
|
@@ -873,7 +873,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
873
873
|
this.i.a2 = +v;
|
|
874
874
|
this._a("outlinedItemBorderWidth", this.i.a2);
|
|
875
875
|
},
|
|
876
|
-
enumerable:
|
|
876
|
+
enumerable: false,
|
|
877
877
|
configurable: true
|
|
878
878
|
});
|
|
879
879
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedItemHoverTextColor", {
|
|
@@ -887,7 +887,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
887
887
|
this.i.h1 = stringToBrush(v);
|
|
888
888
|
this._a("outlinedItemHoverTextColor", brushToString(this.i.h1));
|
|
889
889
|
},
|
|
890
|
-
enumerable:
|
|
890
|
+
enumerable: false,
|
|
891
891
|
configurable: true
|
|
892
892
|
});
|
|
893
893
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedSelectedItemBackgroundColor", {
|
|
@@ -901,7 +901,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
901
901
|
this.i.h3 = stringToBrush(v);
|
|
902
902
|
this._a("outlinedSelectedItemBackgroundColor", brushToString(this.i.h3));
|
|
903
903
|
},
|
|
904
|
-
enumerable:
|
|
904
|
+
enumerable: false,
|
|
905
905
|
configurable: true
|
|
906
906
|
});
|
|
907
907
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedSelectedItemTextColor", {
|
|
@@ -915,7 +915,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
915
915
|
this.i.h6 = stringToBrush(v);
|
|
916
916
|
this._a("outlinedSelectedItemTextColor", brushToString(this.i.h6));
|
|
917
917
|
},
|
|
918
|
-
enumerable:
|
|
918
|
+
enumerable: false,
|
|
919
919
|
configurable: true
|
|
920
920
|
});
|
|
921
921
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedSelectedItemHoverBackgroundColor", {
|
|
@@ -929,7 +929,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
929
929
|
this.i.h4 = stringToBrush(v);
|
|
930
930
|
this._a("outlinedSelectedItemHoverBackgroundColor", brushToString(this.i.h4));
|
|
931
931
|
},
|
|
932
|
-
enumerable:
|
|
932
|
+
enumerable: false,
|
|
933
933
|
configurable: true
|
|
934
934
|
});
|
|
935
935
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "outlinedSelectedItemHoverTextColor", {
|
|
@@ -943,7 +943,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
943
943
|
this.i.h5 = stringToBrush(v);
|
|
944
944
|
this._a("outlinedSelectedItemHoverTextColor", brushToString(this.i.h5));
|
|
945
945
|
},
|
|
946
|
-
enumerable:
|
|
946
|
+
enumerable: false,
|
|
947
947
|
configurable: true
|
|
948
948
|
});
|
|
949
949
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatItemCornerRadius", {
|
|
@@ -957,7 +957,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
957
957
|
this.i.az = +v;
|
|
958
958
|
this._a("flatItemCornerRadius", this.i.az);
|
|
959
959
|
},
|
|
960
|
-
enumerable:
|
|
960
|
+
enumerable: false,
|
|
961
961
|
configurable: true
|
|
962
962
|
});
|
|
963
963
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatItemBackgroundColor", {
|
|
@@ -971,7 +971,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
971
971
|
this.i.hb = stringToBrush(v);
|
|
972
972
|
this._a("flatItemBackgroundColor", brushToString(this.i.hb));
|
|
973
973
|
},
|
|
974
|
-
enumerable:
|
|
974
|
+
enumerable: false,
|
|
975
975
|
configurable: true
|
|
976
976
|
});
|
|
977
977
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatItemDisabledBackgroundColor", {
|
|
@@ -985,7 +985,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
985
985
|
this.i.hd = stringToBrush(v);
|
|
986
986
|
this._a("flatItemDisabledBackgroundColor", brushToString(this.i.hd));
|
|
987
987
|
},
|
|
988
|
-
enumerable:
|
|
988
|
+
enumerable: false,
|
|
989
989
|
configurable: true
|
|
990
990
|
});
|
|
991
991
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatItemTextColor", {
|
|
@@ -999,7 +999,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
999
999
|
this.i.hi = stringToBrush(v);
|
|
1000
1000
|
this._a("flatItemTextColor", brushToString(this.i.hi));
|
|
1001
1001
|
},
|
|
1002
|
-
enumerable:
|
|
1002
|
+
enumerable: false,
|
|
1003
1003
|
configurable: true
|
|
1004
1004
|
});
|
|
1005
1005
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatItemDisabledTextColor", {
|
|
@@ -1013,7 +1013,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1013
1013
|
this.i.hf = stringToBrush(v);
|
|
1014
1014
|
this._a("flatItemDisabledTextColor", brushToString(this.i.hf));
|
|
1015
1015
|
},
|
|
1016
|
-
enumerable:
|
|
1016
|
+
enumerable: false,
|
|
1017
1017
|
configurable: true
|
|
1018
1018
|
});
|
|
1019
1019
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatItemHoverBackgroundColor", {
|
|
@@ -1027,7 +1027,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1027
1027
|
this.i.hg = stringToBrush(v);
|
|
1028
1028
|
this._a("flatItemHoverBackgroundColor", brushToString(this.i.hg));
|
|
1029
1029
|
},
|
|
1030
|
-
enumerable:
|
|
1030
|
+
enumerable: false,
|
|
1031
1031
|
configurable: true
|
|
1032
1032
|
});
|
|
1033
1033
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatItemBorderColor", {
|
|
@@ -1041,7 +1041,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1041
1041
|
this.i.hc = stringToBrush(v);
|
|
1042
1042
|
this._a("flatItemBorderColor", brushToString(this.i.hc));
|
|
1043
1043
|
},
|
|
1044
|
-
enumerable:
|
|
1044
|
+
enumerable: false,
|
|
1045
1045
|
configurable: true
|
|
1046
1046
|
});
|
|
1047
1047
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatItemDisabledBorderColor", {
|
|
@@ -1055,7 +1055,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1055
1055
|
this.i.he = stringToBrush(v);
|
|
1056
1056
|
this._a("flatItemDisabledBorderColor", brushToString(this.i.he));
|
|
1057
1057
|
},
|
|
1058
|
-
enumerable:
|
|
1058
|
+
enumerable: false,
|
|
1059
1059
|
configurable: true
|
|
1060
1060
|
});
|
|
1061
1061
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatItemBorderWidth", {
|
|
@@ -1069,7 +1069,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1069
1069
|
this.i.ay = +v;
|
|
1070
1070
|
this._a("flatItemBorderWidth", this.i.ay);
|
|
1071
1071
|
},
|
|
1072
|
-
enumerable:
|
|
1072
|
+
enumerable: false,
|
|
1073
1073
|
configurable: true
|
|
1074
1074
|
});
|
|
1075
1075
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatItemHoverTextColor", {
|
|
@@ -1083,7 +1083,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1083
1083
|
this.i.hh = stringToBrush(v);
|
|
1084
1084
|
this._a("flatItemHoverTextColor", brushToString(this.i.hh));
|
|
1085
1085
|
},
|
|
1086
|
-
enumerable:
|
|
1086
|
+
enumerable: false,
|
|
1087
1087
|
configurable: true
|
|
1088
1088
|
});
|
|
1089
1089
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatSelectedItemBackgroundColor", {
|
|
@@ -1097,7 +1097,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1097
1097
|
this.i.hj = stringToBrush(v);
|
|
1098
1098
|
this._a("flatSelectedItemBackgroundColor", brushToString(this.i.hj));
|
|
1099
1099
|
},
|
|
1100
|
-
enumerable:
|
|
1100
|
+
enumerable: false,
|
|
1101
1101
|
configurable: true
|
|
1102
1102
|
});
|
|
1103
1103
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatSelectedItemTextColor", {
|
|
@@ -1111,7 +1111,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1111
1111
|
this.i.hm = stringToBrush(v);
|
|
1112
1112
|
this._a("flatSelectedItemTextColor", brushToString(this.i.hm));
|
|
1113
1113
|
},
|
|
1114
|
-
enumerable:
|
|
1114
|
+
enumerable: false,
|
|
1115
1115
|
configurable: true
|
|
1116
1116
|
});
|
|
1117
1117
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatSelectedItemHoverBackgroundColor", {
|
|
@@ -1125,7 +1125,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1125
1125
|
this.i.hk = stringToBrush(v);
|
|
1126
1126
|
this._a("flatSelectedItemHoverBackgroundColor", brushToString(this.i.hk));
|
|
1127
1127
|
},
|
|
1128
|
-
enumerable:
|
|
1128
|
+
enumerable: false,
|
|
1129
1129
|
configurable: true
|
|
1130
1130
|
});
|
|
1131
1131
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "flatSelectedItemHoverTextColor", {
|
|
@@ -1139,7 +1139,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1139
1139
|
this.i.hl = stringToBrush(v);
|
|
1140
1140
|
this._a("flatSelectedItemHoverTextColor", brushToString(this.i.hl));
|
|
1141
1141
|
},
|
|
1142
|
-
enumerable:
|
|
1142
|
+
enumerable: false,
|
|
1143
1143
|
configurable: true
|
|
1144
1144
|
});
|
|
1145
1145
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "orientation", {
|
|
@@ -1153,7 +1153,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1153
1153
|
this.i.k = ensureEnum(ButtonGroupOrientation_$type, v);
|
|
1154
1154
|
this._a("orientation", enumToString(ButtonGroupOrientation_$type, this.i.k));
|
|
1155
1155
|
},
|
|
1156
|
-
enumerable:
|
|
1156
|
+
enumerable: false,
|
|
1157
1157
|
configurable: true
|
|
1158
1158
|
});
|
|
1159
1159
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "id", {
|
|
@@ -1166,7 +1166,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1166
1166
|
set: function (v) {
|
|
1167
1167
|
this.i.b5 = v;
|
|
1168
1168
|
},
|
|
1169
|
-
enumerable:
|
|
1169
|
+
enumerable: false,
|
|
1170
1170
|
configurable: true
|
|
1171
1171
|
});
|
|
1172
1172
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "disabled", {
|
|
@@ -1180,7 +1180,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1180
1180
|
this.i.disabled = ensureBool(v);
|
|
1181
1181
|
this._a("disabled", this.i.disabled);
|
|
1182
1182
|
},
|
|
1183
|
-
enumerable:
|
|
1183
|
+
enumerable: false,
|
|
1184
1184
|
configurable: true
|
|
1185
1185
|
});
|
|
1186
1186
|
Object.defineProperty(IgcXButtonGroupComponent.prototype, "isMultiSelect", {
|
|
@@ -1194,7 +1194,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1194
1194
|
this.i.z = ensureBool(v);
|
|
1195
1195
|
this._a("isMultiSelect", this.i.z);
|
|
1196
1196
|
},
|
|
1197
|
-
enumerable:
|
|
1197
|
+
enumerable: false,
|
|
1198
1198
|
configurable: true
|
|
1199
1199
|
});
|
|
1200
1200
|
IgcXButtonGroupComponent.prototype.findByName = function (name) {
|
|
@@ -1212,7 +1212,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1212
1212
|
get: function () {
|
|
1213
1213
|
return this._hasUserValues;
|
|
1214
1214
|
},
|
|
1215
|
-
enumerable:
|
|
1215
|
+
enumerable: false,
|
|
1216
1216
|
configurable: true
|
|
1217
1217
|
});
|
|
1218
1218
|
IgcXButtonGroupComponent.prototype.__m = function (propertyName) {
|
|
@@ -1312,7 +1312,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1312
1312
|
this.i.selectionChanged = delegateCombine(this.i.selectionChanged, this._selectionChanged_wrapped);
|
|
1313
1313
|
;
|
|
1314
1314
|
},
|
|
1315
|
-
enumerable:
|
|
1315
|
+
enumerable: false,
|
|
1316
1316
|
configurable: true
|
|
1317
1317
|
});
|
|
1318
1318
|
IgcXButtonGroupComponent._observedAttributesIgcXButtonGroupComponent = null;
|