igniteui-angular-inputs 21.0.0 → 21.0.1
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-angular-inputs.umd.js +3640 -3311
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +642 -628
- package/esm2015/lib/ButtonView_combined.js +2036 -1743
- package/esm2015/lib/CalendarView_combined.js +157 -157
- package/esm2015/lib/CheckboxView_combined.js +39 -39
- package/esm2015/lib/DatePickerView_combined.js +4 -4
- package/esm2015/lib/InputGroupView_combined.js +209 -209
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +35 -35
- package/esm2015/lib/RippleView_combined.js +2 -2
- package/esm2015/lib/ThemeResolver.js +38 -22
- package/esm2015/lib/XButtonBridge.js +53 -45
- package/esm2015/lib/XButtonGroupBridge.js +13 -9
- package/esm2015/lib/XIconButtonBridge.js +2 -2
- package/esm2015/lib/igx-x-button-component.js +399 -399
- package/esm2015/lib/igx-x-button-group-component.js +124 -124
- package/esm5/lib/ButtonGroupView_combined.js +620 -606
- package/esm5/lib/ButtonView_combined.js +1950 -1657
- package/esm5/lib/CalendarView_combined.js +157 -157
- package/esm5/lib/CheckboxView_combined.js +39 -39
- package/esm5/lib/DatePickerView_combined.js +4 -4
- package/esm5/lib/InputGroupView_combined.js +209 -209
- package/esm5/lib/NativeUIXInputsFactory_combined.js +35 -35
- package/esm5/lib/RippleView_combined.js +2 -2
- package/esm5/lib/ThemeResolver.js +38 -22
- package/esm5/lib/XButtonBridge.js +53 -45
- package/esm5/lib/XButtonGroupBridge.js +13 -9
- package/esm5/lib/XIconButtonBridge.js +2 -2
- package/esm5/lib/igx-x-button-component.js +399 -399
- package/esm5/lib/igx-x-button-group-component.js +124 -124
- package/fesm2015/igniteui-angular-inputs.js +3743 -3414
- package/fesm5/igniteui-angular-inputs.js +3641 -3312
- package/lib/ButtonGroupView_combined.d.ts +181 -179
- package/lib/ButtonView_combined.d.ts +479 -478
- package/lib/ThemeResolver.d.ts +18 -15
- package/package.json +2 -2
|
@@ -110,10 +110,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
110
110
|
* Gets or sets the min width to use for the button.
|
|
111
111
|
*/
|
|
112
112
|
get: function () {
|
|
113
|
-
return this.i.
|
|
113
|
+
return this.i.bz;
|
|
114
114
|
},
|
|
115
115
|
set: function (v) {
|
|
116
|
-
this.i.
|
|
116
|
+
this.i.bz = +v;
|
|
117
117
|
},
|
|
118
118
|
enumerable: false,
|
|
119
119
|
configurable: true
|
|
@@ -123,10 +123,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
123
123
|
* Gets or sets the min height to use for the button.
|
|
124
124
|
*/
|
|
125
125
|
get: function () {
|
|
126
|
-
return this.i.
|
|
126
|
+
return this.i.by;
|
|
127
127
|
},
|
|
128
128
|
set: function (v) {
|
|
129
|
-
this.i.
|
|
129
|
+
this.i.by = +v;
|
|
130
130
|
},
|
|
131
131
|
enumerable: false,
|
|
132
132
|
configurable: true
|
|
@@ -149,10 +149,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
149
149
|
* Gets or sets the display density to use for the button.
|
|
150
150
|
*/
|
|
151
151
|
get: function () {
|
|
152
|
-
return this.i.
|
|
152
|
+
return this.i.s;
|
|
153
153
|
},
|
|
154
154
|
set: function (v) {
|
|
155
|
-
this.i.
|
|
155
|
+
this.i.s = ensureEnum(ControlDisplayDensity_$type, v);
|
|
156
156
|
},
|
|
157
157
|
enumerable: false,
|
|
158
158
|
configurable: true
|
|
@@ -162,10 +162,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
162
162
|
* Gets or sets the base built in theme to use for the button.
|
|
163
163
|
*/
|
|
164
164
|
get: function () {
|
|
165
|
-
return this.i.
|
|
165
|
+
return this.i.o;
|
|
166
166
|
},
|
|
167
167
|
set: function (v) {
|
|
168
|
-
this.i.
|
|
168
|
+
this.i.o = ensureEnum(BaseControlTheme_$type, v);
|
|
169
169
|
},
|
|
170
170
|
enumerable: false,
|
|
171
171
|
configurable: true
|
|
@@ -175,10 +175,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
175
175
|
* Gets the actual display density to use for the label.
|
|
176
176
|
*/
|
|
177
177
|
get: function () {
|
|
178
|
-
return this.i.
|
|
178
|
+
return this.i.r;
|
|
179
179
|
},
|
|
180
180
|
set: function (v) {
|
|
181
|
-
this.i.
|
|
181
|
+
this.i.r = ensureEnum(ControlDisplayDensity_$type, v);
|
|
182
182
|
},
|
|
183
183
|
enumerable: false,
|
|
184
184
|
configurable: true
|
|
@@ -188,10 +188,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
188
188
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
189
189
|
*/
|
|
190
190
|
get: function () {
|
|
191
|
-
return brushToString(this.i.
|
|
191
|
+
return brushToString(this.i.nu);
|
|
192
192
|
},
|
|
193
193
|
set: function (v) {
|
|
194
|
-
this.i.
|
|
194
|
+
this.i.nu = stringToBrush(v);
|
|
195
195
|
},
|
|
196
196
|
enumerable: false,
|
|
197
197
|
configurable: true
|
|
@@ -201,10 +201,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
201
201
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
202
202
|
*/
|
|
203
203
|
get: function () {
|
|
204
|
-
return brushToString(this.i.
|
|
204
|
+
return brushToString(this.i.n5);
|
|
205
205
|
},
|
|
206
206
|
set: function (v) {
|
|
207
|
-
this.i.
|
|
207
|
+
this.i.n5 = stringToBrush(v);
|
|
208
208
|
},
|
|
209
209
|
enumerable: false,
|
|
210
210
|
configurable: true
|
|
@@ -214,10 +214,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
214
214
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
215
215
|
*/
|
|
216
216
|
get: function () {
|
|
217
|
-
return brushToString(this.i.
|
|
217
|
+
return brushToString(this.i.n2);
|
|
218
218
|
},
|
|
219
219
|
set: function (v) {
|
|
220
|
-
this.i.
|
|
220
|
+
this.i.n2 = stringToBrush(v);
|
|
221
221
|
},
|
|
222
222
|
enumerable: false,
|
|
223
223
|
configurable: true
|
|
@@ -227,10 +227,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
227
227
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
228
228
|
*/
|
|
229
229
|
get: function () {
|
|
230
|
-
return brushToString(this.i.
|
|
230
|
+
return brushToString(this.i.ns);
|
|
231
231
|
},
|
|
232
232
|
set: function (v) {
|
|
233
|
-
this.i.
|
|
233
|
+
this.i.ns = stringToBrush(v);
|
|
234
234
|
},
|
|
235
235
|
enumerable: false,
|
|
236
236
|
configurable: true
|
|
@@ -240,10 +240,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
240
240
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
241
241
|
*/
|
|
242
242
|
get: function () {
|
|
243
|
-
return this.i.
|
|
243
|
+
return this.i.cy;
|
|
244
244
|
},
|
|
245
245
|
set: function (v) {
|
|
246
|
-
this.i.
|
|
246
|
+
this.i.cy = +v;
|
|
247
247
|
},
|
|
248
248
|
enumerable: false,
|
|
249
249
|
configurable: true
|
|
@@ -253,10 +253,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
253
253
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
254
254
|
*/
|
|
255
255
|
get: function () {
|
|
256
|
-
return this.i.
|
|
256
|
+
return this.i.cw;
|
|
257
257
|
},
|
|
258
258
|
set: function (v) {
|
|
259
|
-
this.i.
|
|
259
|
+
this.i.cw = +v;
|
|
260
260
|
},
|
|
261
261
|
enumerable: false,
|
|
262
262
|
configurable: true
|
|
@@ -266,10 +266,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
266
266
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
267
267
|
*/
|
|
268
268
|
get: function () {
|
|
269
|
-
return this.i.
|
|
269
|
+
return this.i.cx;
|
|
270
270
|
},
|
|
271
271
|
set: function (v) {
|
|
272
|
-
this.i.
|
|
272
|
+
this.i.cx = +v;
|
|
273
273
|
},
|
|
274
274
|
enumerable: false,
|
|
275
275
|
configurable: true
|
|
@@ -279,77 +279,77 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
279
279
|
* Gets or sets the color to use for the ripple when the button is pressed.
|
|
280
280
|
*/
|
|
281
281
|
get: function () {
|
|
282
|
-
return brushToString(this.i.
|
|
282
|
+
return brushToString(this.i.n3);
|
|
283
283
|
},
|
|
284
284
|
set: function (v) {
|
|
285
|
-
this.i.
|
|
285
|
+
this.i.n3 = stringToBrush(v);
|
|
286
286
|
},
|
|
287
287
|
enumerable: false,
|
|
288
288
|
configurable: true
|
|
289
289
|
});
|
|
290
290
|
Object.defineProperty(IgxXButtonComponent.prototype, "actualCornerRadiusBottomRight", {
|
|
291
291
|
get: function () {
|
|
292
|
-
return this.i.
|
|
292
|
+
return this.i.k4 ? this.i.k4.c : NaN;
|
|
293
293
|
},
|
|
294
294
|
set: function (v) {
|
|
295
295
|
this.ensureActualCornerRadius();
|
|
296
|
-
this.i.
|
|
297
|
-
this.i.
|
|
296
|
+
this.i.k4.c = +v;
|
|
297
|
+
this.i.k4 = this.i.k4;
|
|
298
298
|
},
|
|
299
299
|
enumerable: false,
|
|
300
300
|
configurable: true
|
|
301
301
|
});
|
|
302
302
|
Object.defineProperty(IgxXButtonComponent.prototype, "actualCornerRadiusBottomLeft", {
|
|
303
303
|
get: function () {
|
|
304
|
-
return this.i.
|
|
304
|
+
return this.i.k4 ? this.i.k4.b : NaN;
|
|
305
305
|
},
|
|
306
306
|
set: function (v) {
|
|
307
307
|
this.ensureActualCornerRadius();
|
|
308
|
-
this.i.
|
|
309
|
-
this.i.
|
|
308
|
+
this.i.k4.b = +v;
|
|
309
|
+
this.i.k4 = this.i.k4;
|
|
310
310
|
},
|
|
311
311
|
enumerable: false,
|
|
312
312
|
configurable: true
|
|
313
313
|
});
|
|
314
314
|
Object.defineProperty(IgxXButtonComponent.prototype, "actualCornerRadiusTopLeft", {
|
|
315
315
|
get: function () {
|
|
316
|
-
return this.i.
|
|
316
|
+
return this.i.k4 ? this.i.k4.d : NaN;
|
|
317
317
|
},
|
|
318
318
|
set: function (v) {
|
|
319
319
|
this.ensureActualCornerRadius();
|
|
320
|
-
this.i.
|
|
321
|
-
this.i.
|
|
320
|
+
this.i.k4.d = +v;
|
|
321
|
+
this.i.k4 = this.i.k4;
|
|
322
322
|
},
|
|
323
323
|
enumerable: false,
|
|
324
324
|
configurable: true
|
|
325
325
|
});
|
|
326
326
|
Object.defineProperty(IgxXButtonComponent.prototype, "actualCornerRadiusTopRight", {
|
|
327
327
|
get: function () {
|
|
328
|
-
return this.i.
|
|
328
|
+
return this.i.k4 ? this.i.k4.e : NaN;
|
|
329
329
|
},
|
|
330
330
|
set: function (v) {
|
|
331
331
|
this.ensureActualCornerRadius();
|
|
332
|
-
this.i.
|
|
333
|
-
this.i.
|
|
332
|
+
this.i.k4.e = +v;
|
|
333
|
+
this.i.k4 = this.i.k4;
|
|
334
334
|
},
|
|
335
335
|
enumerable: false,
|
|
336
336
|
configurable: true
|
|
337
337
|
});
|
|
338
338
|
IgxXButtonComponent.prototype.ensureActualCornerRadius = function () {
|
|
339
|
-
if (this.i.
|
|
339
|
+
if (this.i.k4) {
|
|
340
340
|
return;
|
|
341
341
|
}
|
|
342
|
-
this.i.
|
|
342
|
+
this.i.k4 = new CornerRadius(2);
|
|
343
343
|
};
|
|
344
344
|
Object.defineProperty(IgxXButtonComponent.prototype, "actualBackgroundColor", {
|
|
345
345
|
/**
|
|
346
346
|
* Gets the color to use for the actual background.
|
|
347
347
|
*/
|
|
348
348
|
get: function () {
|
|
349
|
-
return brushToString(this.i.
|
|
349
|
+
return brushToString(this.i.nt);
|
|
350
350
|
},
|
|
351
351
|
set: function (v) {
|
|
352
|
-
this.i.
|
|
352
|
+
this.i.nt = stringToBrush(v);
|
|
353
353
|
},
|
|
354
354
|
enumerable: false,
|
|
355
355
|
configurable: true
|
|
@@ -359,10 +359,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
359
359
|
* Gets the actual color to use for the disabled background of the button.
|
|
360
360
|
*/
|
|
361
361
|
get: function () {
|
|
362
|
-
return brushToString(this.i.
|
|
362
|
+
return brushToString(this.i.nv);
|
|
363
363
|
},
|
|
364
364
|
set: function (v) {
|
|
365
|
-
this.i.
|
|
365
|
+
this.i.nv = stringToBrush(v);
|
|
366
366
|
},
|
|
367
367
|
enumerable: false,
|
|
368
368
|
configurable: true
|
|
@@ -372,10 +372,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
372
372
|
* Gets the actual color to use for the disabled border of the button.
|
|
373
373
|
*/
|
|
374
374
|
get: function () {
|
|
375
|
-
return brushToString(this.i.
|
|
375
|
+
return brushToString(this.i.nw);
|
|
376
376
|
},
|
|
377
377
|
set: function (v) {
|
|
378
|
-
this.i.
|
|
378
|
+
this.i.nw = stringToBrush(v);
|
|
379
379
|
},
|
|
380
380
|
enumerable: false,
|
|
381
381
|
configurable: true
|
|
@@ -385,10 +385,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
385
385
|
* Gets the actual color to use for the disabled text of the button.
|
|
386
386
|
*/
|
|
387
387
|
get: function () {
|
|
388
|
-
return brushToString(this.i.
|
|
388
|
+
return brushToString(this.i.nx);
|
|
389
389
|
},
|
|
390
390
|
set: function (v) {
|
|
391
|
-
this.i.
|
|
391
|
+
this.i.nx = stringToBrush(v);
|
|
392
392
|
},
|
|
393
393
|
enumerable: false,
|
|
394
394
|
configurable: true
|
|
@@ -398,10 +398,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
398
398
|
* Gets the actual disabled elevation to use for the button.
|
|
399
399
|
*/
|
|
400
400
|
get: function () {
|
|
401
|
-
return this.i.
|
|
401
|
+
return this.i.cv;
|
|
402
402
|
},
|
|
403
403
|
set: function (v) {
|
|
404
|
-
this.i.
|
|
404
|
+
this.i.cv = +v;
|
|
405
405
|
},
|
|
406
406
|
enumerable: false,
|
|
407
407
|
configurable: true
|
|
@@ -411,10 +411,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
411
411
|
* Gets the actual disabled elevation to use for the button.
|
|
412
412
|
*/
|
|
413
413
|
get: function () {
|
|
414
|
-
return this.i.
|
|
414
|
+
return this.i.v;
|
|
415
415
|
},
|
|
416
416
|
set: function (v) {
|
|
417
|
-
this.i.
|
|
417
|
+
this.i.v = ensureEnum(ElevationMode_$type, v);
|
|
418
418
|
},
|
|
419
419
|
enumerable: false,
|
|
420
420
|
configurable: true
|
|
@@ -424,10 +424,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
424
424
|
* Gets the color to use for the actual background.
|
|
425
425
|
*/
|
|
426
426
|
get: function () {
|
|
427
|
-
return brushToString(this.i.
|
|
427
|
+
return brushToString(this.i.n4);
|
|
428
428
|
},
|
|
429
429
|
set: function (v) {
|
|
430
|
-
this.i.
|
|
430
|
+
this.i.n4 = stringToBrush(v);
|
|
431
431
|
},
|
|
432
432
|
enumerable: false,
|
|
433
433
|
configurable: true
|
|
@@ -437,10 +437,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
437
437
|
* Gets the color to use for the actual background.
|
|
438
438
|
*/
|
|
439
439
|
get: function () {
|
|
440
|
-
return brushToString(this.i.
|
|
440
|
+
return brushToString(this.i.n1);
|
|
441
441
|
},
|
|
442
442
|
set: function (v) {
|
|
443
|
-
this.i.
|
|
443
|
+
this.i.n1 = stringToBrush(v);
|
|
444
444
|
},
|
|
445
445
|
enumerable: false,
|
|
446
446
|
configurable: true
|
|
@@ -450,10 +450,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
450
450
|
* Gets the color to use for the actual background.
|
|
451
451
|
*/
|
|
452
452
|
get: function () {
|
|
453
|
-
return brushToString(this.i.
|
|
453
|
+
return brushToString(this.i.ny);
|
|
454
454
|
},
|
|
455
455
|
set: function (v) {
|
|
456
|
-
this.i.
|
|
456
|
+
this.i.ny = stringToBrush(v);
|
|
457
457
|
},
|
|
458
458
|
enumerable: false,
|
|
459
459
|
configurable: true
|
|
@@ -463,10 +463,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
463
463
|
* Gets the actual color to use for the focused text.
|
|
464
464
|
*/
|
|
465
465
|
get: function () {
|
|
466
|
-
return brushToString(this.i.
|
|
466
|
+
return brushToString(this.i.nz);
|
|
467
467
|
},
|
|
468
468
|
set: function (v) {
|
|
469
|
-
this.i.
|
|
469
|
+
this.i.nz = stringToBrush(v);
|
|
470
470
|
},
|
|
471
471
|
enumerable: false,
|
|
472
472
|
configurable: true
|
|
@@ -476,10 +476,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
476
476
|
* Gets the hover color to use for the actual background.
|
|
477
477
|
*/
|
|
478
478
|
get: function () {
|
|
479
|
-
return brushToString(this.i.
|
|
479
|
+
return brushToString(this.i.n0);
|
|
480
480
|
},
|
|
481
481
|
set: function (v) {
|
|
482
|
-
this.i.
|
|
482
|
+
this.i.n0 = stringToBrush(v);
|
|
483
483
|
},
|
|
484
484
|
enumerable: false,
|
|
485
485
|
configurable: true
|
|
@@ -489,10 +489,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
489
489
|
* Gets or sets the Width to use for the check mark when the checkbox is checked.
|
|
490
490
|
*/
|
|
491
491
|
get: function () {
|
|
492
|
-
return this.i.
|
|
492
|
+
return this.i.bk;
|
|
493
493
|
},
|
|
494
494
|
set: function (v) {
|
|
495
|
-
this.i.
|
|
495
|
+
this.i.bk = +v;
|
|
496
496
|
},
|
|
497
497
|
enumerable: false,
|
|
498
498
|
configurable: true
|
|
@@ -502,10 +502,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
502
502
|
* Gets or sets the color to use for the background of the button when the type is raised.
|
|
503
503
|
*/
|
|
504
504
|
get: function () {
|
|
505
|
-
return brushToString(this.i.
|
|
505
|
+
return brushToString(this.i.q9);
|
|
506
506
|
},
|
|
507
507
|
set: function (v) {
|
|
508
|
-
this.i.
|
|
508
|
+
this.i.q9 = stringToBrush(v);
|
|
509
509
|
},
|
|
510
510
|
enumerable: false,
|
|
511
511
|
configurable: true
|
|
@@ -515,10 +515,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
515
515
|
* Gets or sets the color to use for the disabled background of the button when the type is raised.
|
|
516
516
|
*/
|
|
517
517
|
get: function () {
|
|
518
|
-
return brushToString(this.i.
|
|
518
|
+
return brushToString(this.i.rb);
|
|
519
519
|
},
|
|
520
520
|
set: function (v) {
|
|
521
|
-
this.i.
|
|
521
|
+
this.i.rb = stringToBrush(v);
|
|
522
522
|
},
|
|
523
523
|
enumerable: false,
|
|
524
524
|
configurable: true
|
|
@@ -528,10 +528,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
528
528
|
* Gets or sets the color to use for the disabled border of the button when the type is raised.
|
|
529
529
|
*/
|
|
530
530
|
get: function () {
|
|
531
|
-
return brushToString(this.i.
|
|
531
|
+
return brushToString(this.i.rc);
|
|
532
532
|
},
|
|
533
533
|
set: function (v) {
|
|
534
|
-
this.i.
|
|
534
|
+
this.i.rc = stringToBrush(v);
|
|
535
535
|
},
|
|
536
536
|
enumerable: false,
|
|
537
537
|
configurable: true
|
|
@@ -541,10 +541,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
541
541
|
* Gets or sets the color to use for the disabled text of the button when the type is raised.
|
|
542
542
|
*/
|
|
543
543
|
get: function () {
|
|
544
|
-
return brushToString(this.i.
|
|
544
|
+
return brushToString(this.i.rd);
|
|
545
545
|
},
|
|
546
546
|
set: function (v) {
|
|
547
|
-
this.i.
|
|
547
|
+
this.i.rd = stringToBrush(v);
|
|
548
548
|
},
|
|
549
549
|
enumerable: false,
|
|
550
550
|
configurable: true
|
|
@@ -554,10 +554,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
554
554
|
* Gets or sets the disabled elevation to use for the button when the type is raised.
|
|
555
555
|
*/
|
|
556
556
|
get: function () {
|
|
557
|
-
return this.i.
|
|
557
|
+
return this.i.d3;
|
|
558
558
|
},
|
|
559
559
|
set: function (v) {
|
|
560
|
-
this.i.
|
|
560
|
+
this.i.d3 = +v;
|
|
561
561
|
},
|
|
562
562
|
enumerable: false,
|
|
563
563
|
configurable: true
|
|
@@ -567,10 +567,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
567
567
|
* Gets or sets the hover color to use for the background of the button when the type is raised.
|
|
568
568
|
*/
|
|
569
569
|
get: function () {
|
|
570
|
-
return brushToString(this.i.
|
|
570
|
+
return brushToString(this.i.rg);
|
|
571
571
|
},
|
|
572
572
|
set: function (v) {
|
|
573
|
-
this.i.
|
|
573
|
+
this.i.rg = stringToBrush(v);
|
|
574
574
|
},
|
|
575
575
|
enumerable: false,
|
|
576
576
|
configurable: true
|
|
@@ -580,10 +580,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
580
580
|
* Gets or sets the border color to use for the button when the type is raised.
|
|
581
581
|
*/
|
|
582
582
|
get: function () {
|
|
583
|
-
return brushToString(this.i.
|
|
583
|
+
return brushToString(this.i.ra);
|
|
584
584
|
},
|
|
585
585
|
set: function (v) {
|
|
586
|
-
this.i.
|
|
586
|
+
this.i.ra = stringToBrush(v);
|
|
587
587
|
},
|
|
588
588
|
enumerable: false,
|
|
589
589
|
configurable: true
|
|
@@ -593,10 +593,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
593
593
|
* Gets or sets the elevation to use for the button when the type is raised.
|
|
594
594
|
*/
|
|
595
595
|
get: function () {
|
|
596
|
-
return this.i.
|
|
596
|
+
return this.i.d6;
|
|
597
597
|
},
|
|
598
598
|
set: function (v) {
|
|
599
|
-
this.i.
|
|
599
|
+
this.i.d6 = +v;
|
|
600
600
|
},
|
|
601
601
|
enumerable: false,
|
|
602
602
|
configurable: true
|
|
@@ -606,10 +606,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
606
606
|
* Gets or sets the hover elevation to use for the button when the type is raised.
|
|
607
607
|
*/
|
|
608
608
|
get: function () {
|
|
609
|
-
return this.i.
|
|
609
|
+
return this.i.d5;
|
|
610
610
|
},
|
|
611
611
|
set: function (v) {
|
|
612
|
-
this.i.
|
|
612
|
+
this.i.d5 = +v;
|
|
613
613
|
},
|
|
614
614
|
enumerable: false,
|
|
615
615
|
configurable: true
|
|
@@ -619,10 +619,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
619
619
|
* Gets or sets the focus elevation to use for the button when the type is raised.
|
|
620
620
|
*/
|
|
621
621
|
get: function () {
|
|
622
|
-
return this.i.
|
|
622
|
+
return this.i.d4;
|
|
623
623
|
},
|
|
624
624
|
set: function (v) {
|
|
625
|
-
this.i.
|
|
625
|
+
this.i.d4 = +v;
|
|
626
626
|
},
|
|
627
627
|
enumerable: false,
|
|
628
628
|
configurable: true
|
|
@@ -632,77 +632,77 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
632
632
|
* Gets or sets the width to use for the button border when the type is raised.
|
|
633
633
|
*/
|
|
634
634
|
get: function () {
|
|
635
|
-
return this.i.
|
|
635
|
+
return this.i.b1;
|
|
636
636
|
},
|
|
637
637
|
set: function (v) {
|
|
638
|
-
this.i.
|
|
638
|
+
this.i.b1 = +v;
|
|
639
639
|
},
|
|
640
640
|
enumerable: false,
|
|
641
641
|
configurable: true
|
|
642
642
|
});
|
|
643
643
|
Object.defineProperty(IgxXButtonComponent.prototype, "raisedCornerRadiusBottomRight", {
|
|
644
644
|
get: function () {
|
|
645
|
-
return this.i.
|
|
645
|
+
return this.i.lh ? this.i.lh.c : NaN;
|
|
646
646
|
},
|
|
647
647
|
set: function (v) {
|
|
648
648
|
this.ensureRaisedCornerRadius();
|
|
649
|
-
this.i.
|
|
650
|
-
this.i.
|
|
649
|
+
this.i.lh.c = +v;
|
|
650
|
+
this.i.lh = this.i.lh;
|
|
651
651
|
},
|
|
652
652
|
enumerable: false,
|
|
653
653
|
configurable: true
|
|
654
654
|
});
|
|
655
655
|
Object.defineProperty(IgxXButtonComponent.prototype, "raisedCornerRadiusBottomLeft", {
|
|
656
656
|
get: function () {
|
|
657
|
-
return this.i.
|
|
657
|
+
return this.i.lh ? this.i.lh.b : NaN;
|
|
658
658
|
},
|
|
659
659
|
set: function (v) {
|
|
660
660
|
this.ensureRaisedCornerRadius();
|
|
661
|
-
this.i.
|
|
662
|
-
this.i.
|
|
661
|
+
this.i.lh.b = +v;
|
|
662
|
+
this.i.lh = this.i.lh;
|
|
663
663
|
},
|
|
664
664
|
enumerable: false,
|
|
665
665
|
configurable: true
|
|
666
666
|
});
|
|
667
667
|
Object.defineProperty(IgxXButtonComponent.prototype, "raisedCornerRadiusTopLeft", {
|
|
668
668
|
get: function () {
|
|
669
|
-
return this.i.
|
|
669
|
+
return this.i.lh ? this.i.lh.d : NaN;
|
|
670
670
|
},
|
|
671
671
|
set: function (v) {
|
|
672
672
|
this.ensureRaisedCornerRadius();
|
|
673
|
-
this.i.
|
|
674
|
-
this.i.
|
|
673
|
+
this.i.lh.d = +v;
|
|
674
|
+
this.i.lh = this.i.lh;
|
|
675
675
|
},
|
|
676
676
|
enumerable: false,
|
|
677
677
|
configurable: true
|
|
678
678
|
});
|
|
679
679
|
Object.defineProperty(IgxXButtonComponent.prototype, "raisedCornerRadiusTopRight", {
|
|
680
680
|
get: function () {
|
|
681
|
-
return this.i.
|
|
681
|
+
return this.i.lh ? this.i.lh.e : NaN;
|
|
682
682
|
},
|
|
683
683
|
set: function (v) {
|
|
684
684
|
this.ensureRaisedCornerRadius();
|
|
685
|
-
this.i.
|
|
686
|
-
this.i.
|
|
685
|
+
this.i.lh.e = +v;
|
|
686
|
+
this.i.lh = this.i.lh;
|
|
687
687
|
},
|
|
688
688
|
enumerable: false,
|
|
689
689
|
configurable: true
|
|
690
690
|
});
|
|
691
691
|
IgxXButtonComponent.prototype.ensureRaisedCornerRadius = function () {
|
|
692
|
-
if (this.i.
|
|
692
|
+
if (this.i.lh) {
|
|
693
693
|
return;
|
|
694
694
|
}
|
|
695
|
-
this.i.
|
|
695
|
+
this.i.lh = new CornerRadius(2);
|
|
696
696
|
};
|
|
697
697
|
Object.defineProperty(IgxXButtonComponent.prototype, "raisedRippleColor", {
|
|
698
698
|
/**
|
|
699
699
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
700
700
|
*/
|
|
701
701
|
get: function () {
|
|
702
|
-
return brushToString(this.i.
|
|
702
|
+
return brushToString(this.i.ri);
|
|
703
703
|
},
|
|
704
704
|
set: function (v) {
|
|
705
|
-
this.i.
|
|
705
|
+
this.i.ri = stringToBrush(v);
|
|
706
706
|
},
|
|
707
707
|
enumerable: false,
|
|
708
708
|
configurable: true
|
|
@@ -712,10 +712,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
712
712
|
* Gets or sets the color to use for the background of the button when the type is flat.
|
|
713
713
|
*/
|
|
714
714
|
get: function () {
|
|
715
|
-
return brushToString(this.i.
|
|
715
|
+
return brushToString(this.i.p8);
|
|
716
716
|
},
|
|
717
717
|
set: function (v) {
|
|
718
|
-
this.i.
|
|
718
|
+
this.i.p8 = stringToBrush(v);
|
|
719
719
|
},
|
|
720
720
|
enumerable: false,
|
|
721
721
|
configurable: true
|
|
@@ -725,10 +725,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
725
725
|
* Gets or sets the color to use for the disabled background of the button when the type is flat.
|
|
726
726
|
*/
|
|
727
727
|
get: function () {
|
|
728
|
-
return brushToString(this.i.
|
|
728
|
+
return brushToString(this.i.qa);
|
|
729
729
|
},
|
|
730
730
|
set: function (v) {
|
|
731
|
-
this.i.
|
|
731
|
+
this.i.qa = stringToBrush(v);
|
|
732
732
|
},
|
|
733
733
|
enumerable: false,
|
|
734
734
|
configurable: true
|
|
@@ -738,10 +738,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
738
738
|
* Gets or sets the color to use for the disabled border of the button when the type is flat.
|
|
739
739
|
*/
|
|
740
740
|
get: function () {
|
|
741
|
-
return brushToString(this.i.
|
|
741
|
+
return brushToString(this.i.qb);
|
|
742
742
|
},
|
|
743
743
|
set: function (v) {
|
|
744
|
-
this.i.
|
|
744
|
+
this.i.qb = stringToBrush(v);
|
|
745
745
|
},
|
|
746
746
|
enumerable: false,
|
|
747
747
|
configurable: true
|
|
@@ -751,10 +751,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
751
751
|
* Gets or sets the color to use for the disabled text of the button when the type is flat.
|
|
752
752
|
*/
|
|
753
753
|
get: function () {
|
|
754
|
-
return brushToString(this.i.
|
|
754
|
+
return brushToString(this.i.qc);
|
|
755
755
|
},
|
|
756
756
|
set: function (v) {
|
|
757
|
-
this.i.
|
|
757
|
+
this.i.qc = stringToBrush(v);
|
|
758
758
|
},
|
|
759
759
|
enumerable: false,
|
|
760
760
|
configurable: true
|
|
@@ -764,10 +764,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
764
764
|
* Gets or sets the disabled elevation to use for the button when the type is flat.
|
|
765
765
|
*/
|
|
766
766
|
get: function () {
|
|
767
|
-
return this.i.
|
|
767
|
+
return this.i.dp;
|
|
768
768
|
},
|
|
769
769
|
set: function (v) {
|
|
770
|
-
this.i.
|
|
770
|
+
this.i.dp = +v;
|
|
771
771
|
},
|
|
772
772
|
enumerable: false,
|
|
773
773
|
configurable: true
|
|
@@ -777,10 +777,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
777
777
|
* Gets or sets the hover color to use for the background of the button when the type is flat.
|
|
778
778
|
*/
|
|
779
779
|
get: function () {
|
|
780
|
-
return brushToString(this.i.
|
|
780
|
+
return brushToString(this.i.qf);
|
|
781
781
|
},
|
|
782
782
|
set: function (v) {
|
|
783
|
-
this.i.
|
|
783
|
+
this.i.qf = stringToBrush(v);
|
|
784
784
|
},
|
|
785
785
|
enumerable: false,
|
|
786
786
|
configurable: true
|
|
@@ -790,10 +790,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
790
790
|
* Gets or sets the border color to use for the button when the type is flat.
|
|
791
791
|
*/
|
|
792
792
|
get: function () {
|
|
793
|
-
return brushToString(this.i.
|
|
793
|
+
return brushToString(this.i.p9);
|
|
794
794
|
},
|
|
795
795
|
set: function (v) {
|
|
796
|
-
this.i.
|
|
796
|
+
this.i.p9 = stringToBrush(v);
|
|
797
797
|
},
|
|
798
798
|
enumerable: false,
|
|
799
799
|
configurable: true
|
|
@@ -803,10 +803,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
803
803
|
* Gets or sets the elevation to use for the button when the type is flat.
|
|
804
804
|
*/
|
|
805
805
|
get: function () {
|
|
806
|
-
return this.i.
|
|
806
|
+
return this.i.ds;
|
|
807
807
|
},
|
|
808
808
|
set: function (v) {
|
|
809
|
-
this.i.
|
|
809
|
+
this.i.ds = +v;
|
|
810
810
|
},
|
|
811
811
|
enumerable: false,
|
|
812
812
|
configurable: true
|
|
@@ -816,10 +816,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
816
816
|
* Gets or sets the hover elevation to use for the button when the type is flat.
|
|
817
817
|
*/
|
|
818
818
|
get: function () {
|
|
819
|
-
return this.i.
|
|
819
|
+
return this.i.dr;
|
|
820
820
|
},
|
|
821
821
|
set: function (v) {
|
|
822
|
-
this.i.
|
|
822
|
+
this.i.dr = +v;
|
|
823
823
|
},
|
|
824
824
|
enumerable: false,
|
|
825
825
|
configurable: true
|
|
@@ -829,10 +829,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
829
829
|
* Gets or sets the focus elevation to use for the button when the type is flat.
|
|
830
830
|
*/
|
|
831
831
|
get: function () {
|
|
832
|
-
return this.i.
|
|
832
|
+
return this.i.dq;
|
|
833
833
|
},
|
|
834
834
|
set: function (v) {
|
|
835
|
-
this.i.
|
|
835
|
+
this.i.dq = +v;
|
|
836
836
|
},
|
|
837
837
|
enumerable: false,
|
|
838
838
|
configurable: true
|
|
@@ -842,10 +842,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
842
842
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
843
843
|
*/
|
|
844
844
|
get: function () {
|
|
845
|
-
return brushToString(this.i.
|
|
845
|
+
return brushToString(this.i.qh);
|
|
846
846
|
},
|
|
847
847
|
set: function (v) {
|
|
848
|
-
this.i.
|
|
848
|
+
this.i.qh = stringToBrush(v);
|
|
849
849
|
},
|
|
850
850
|
enumerable: false,
|
|
851
851
|
configurable: true
|
|
@@ -855,10 +855,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
855
855
|
* Gets or sets the color to use for the text of the button when type is flat.
|
|
856
856
|
*/
|
|
857
857
|
get: function () {
|
|
858
|
-
return brushToString(this.i.
|
|
858
|
+
return brushToString(this.i.qi);
|
|
859
859
|
},
|
|
860
860
|
set: function (v) {
|
|
861
|
-
this.i.
|
|
861
|
+
this.i.qi = stringToBrush(v);
|
|
862
862
|
},
|
|
863
863
|
enumerable: false,
|
|
864
864
|
configurable: true
|
|
@@ -868,10 +868,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
868
868
|
* Gets or sets the color to use for the hovered text of the button when type is flat.
|
|
869
869
|
*/
|
|
870
870
|
get: function () {
|
|
871
|
-
return brushToString(this.i.
|
|
871
|
+
return brushToString(this.i.qg);
|
|
872
872
|
},
|
|
873
873
|
set: function (v) {
|
|
874
|
-
this.i.
|
|
874
|
+
this.i.qg = stringToBrush(v);
|
|
875
875
|
},
|
|
876
876
|
enumerable: false,
|
|
877
877
|
configurable: true
|
|
@@ -881,10 +881,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
881
881
|
* Gets or sets the color to use for the backround the button when it is focused and flat.
|
|
882
882
|
*/
|
|
883
883
|
get: function () {
|
|
884
|
-
return brushToString(this.i.
|
|
884
|
+
return brushToString(this.i.qd);
|
|
885
885
|
},
|
|
886
886
|
set: function (v) {
|
|
887
|
-
this.i.
|
|
887
|
+
this.i.qd = stringToBrush(v);
|
|
888
888
|
},
|
|
889
889
|
enumerable: false,
|
|
890
890
|
configurable: true
|
|
@@ -894,10 +894,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
894
894
|
* Gets or sets the color to use for the text the button when it is focused and flat.
|
|
895
895
|
*/
|
|
896
896
|
get: function () {
|
|
897
|
-
return brushToString(this.i.
|
|
897
|
+
return brushToString(this.i.qe);
|
|
898
898
|
},
|
|
899
899
|
set: function (v) {
|
|
900
|
-
this.i.
|
|
900
|
+
this.i.qe = stringToBrush(v);
|
|
901
901
|
},
|
|
902
902
|
enumerable: false,
|
|
903
903
|
configurable: true
|
|
@@ -907,77 +907,77 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
907
907
|
* Gets or sets the width to use for the button border when the type is flat.
|
|
908
908
|
*/
|
|
909
909
|
get: function () {
|
|
910
|
-
return this.i.
|
|
910
|
+
return this.i.bw;
|
|
911
911
|
},
|
|
912
912
|
set: function (v) {
|
|
913
|
-
this.i.
|
|
913
|
+
this.i.bw = +v;
|
|
914
914
|
},
|
|
915
915
|
enumerable: false,
|
|
916
916
|
configurable: true
|
|
917
917
|
});
|
|
918
918
|
Object.defineProperty(IgxXButtonComponent.prototype, "flatCornerRadiusBottomRight", {
|
|
919
919
|
get: function () {
|
|
920
|
-
return this.i.
|
|
920
|
+
return this.i.ld ? this.i.ld.c : NaN;
|
|
921
921
|
},
|
|
922
922
|
set: function (v) {
|
|
923
923
|
this.ensureFlatCornerRadius();
|
|
924
|
-
this.i.
|
|
925
|
-
this.i.
|
|
924
|
+
this.i.ld.c = +v;
|
|
925
|
+
this.i.ld = this.i.ld;
|
|
926
926
|
},
|
|
927
927
|
enumerable: false,
|
|
928
928
|
configurable: true
|
|
929
929
|
});
|
|
930
930
|
Object.defineProperty(IgxXButtonComponent.prototype, "flatCornerRadiusBottomLeft", {
|
|
931
931
|
get: function () {
|
|
932
|
-
return this.i.
|
|
932
|
+
return this.i.ld ? this.i.ld.b : NaN;
|
|
933
933
|
},
|
|
934
934
|
set: function (v) {
|
|
935
935
|
this.ensureFlatCornerRadius();
|
|
936
|
-
this.i.
|
|
937
|
-
this.i.
|
|
936
|
+
this.i.ld.b = +v;
|
|
937
|
+
this.i.ld = this.i.ld;
|
|
938
938
|
},
|
|
939
939
|
enumerable: false,
|
|
940
940
|
configurable: true
|
|
941
941
|
});
|
|
942
942
|
Object.defineProperty(IgxXButtonComponent.prototype, "flatCornerRadiusTopLeft", {
|
|
943
943
|
get: function () {
|
|
944
|
-
return this.i.
|
|
944
|
+
return this.i.ld ? this.i.ld.d : NaN;
|
|
945
945
|
},
|
|
946
946
|
set: function (v) {
|
|
947
947
|
this.ensureFlatCornerRadius();
|
|
948
|
-
this.i.
|
|
949
|
-
this.i.
|
|
948
|
+
this.i.ld.d = +v;
|
|
949
|
+
this.i.ld = this.i.ld;
|
|
950
950
|
},
|
|
951
951
|
enumerable: false,
|
|
952
952
|
configurable: true
|
|
953
953
|
});
|
|
954
954
|
Object.defineProperty(IgxXButtonComponent.prototype, "flatCornerRadiusTopRight", {
|
|
955
955
|
get: function () {
|
|
956
|
-
return this.i.
|
|
956
|
+
return this.i.ld ? this.i.ld.e : NaN;
|
|
957
957
|
},
|
|
958
958
|
set: function (v) {
|
|
959
959
|
this.ensureFlatCornerRadius();
|
|
960
|
-
this.i.
|
|
961
|
-
this.i.
|
|
960
|
+
this.i.ld.e = +v;
|
|
961
|
+
this.i.ld = this.i.ld;
|
|
962
962
|
},
|
|
963
963
|
enumerable: false,
|
|
964
964
|
configurable: true
|
|
965
965
|
});
|
|
966
966
|
IgxXButtonComponent.prototype.ensureFlatCornerRadius = function () {
|
|
967
|
-
if (this.i.
|
|
967
|
+
if (this.i.ld) {
|
|
968
968
|
return;
|
|
969
969
|
}
|
|
970
|
-
this.i.
|
|
970
|
+
this.i.ld = new CornerRadius(2);
|
|
971
971
|
};
|
|
972
972
|
Object.defineProperty(IgxXButtonComponent.prototype, "backgroundColor", {
|
|
973
973
|
/**
|
|
974
974
|
* Gets or sets the color to use for the background when the button regardless of type.
|
|
975
975
|
*/
|
|
976
976
|
get: function () {
|
|
977
|
-
return brushToString(this.i.
|
|
977
|
+
return brushToString(this.i.n6);
|
|
978
978
|
},
|
|
979
979
|
set: function (v) {
|
|
980
|
-
this.i.
|
|
980
|
+
this.i.n6 = stringToBrush(v);
|
|
981
981
|
},
|
|
982
982
|
enumerable: false,
|
|
983
983
|
configurable: true
|
|
@@ -987,10 +987,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
987
987
|
* Gets or sets the color to use for the disabled background of the button when the type is disabled.
|
|
988
988
|
*/
|
|
989
989
|
get: function () {
|
|
990
|
-
return brushToString(this.i.
|
|
990
|
+
return brushToString(this.i.pu);
|
|
991
991
|
},
|
|
992
992
|
set: function (v) {
|
|
993
|
-
this.i.
|
|
993
|
+
this.i.pu = stringToBrush(v);
|
|
994
994
|
},
|
|
995
995
|
enumerable: false,
|
|
996
996
|
configurable: true
|
|
@@ -1000,10 +1000,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1000
1000
|
* Gets or sets the color to use for the disabled border of the button when the type is raised.
|
|
1001
1001
|
*/
|
|
1002
1002
|
get: function () {
|
|
1003
|
-
return brushToString(this.i.
|
|
1003
|
+
return brushToString(this.i.pv);
|
|
1004
1004
|
},
|
|
1005
1005
|
set: function (v) {
|
|
1006
|
-
this.i.
|
|
1006
|
+
this.i.pv = stringToBrush(v);
|
|
1007
1007
|
},
|
|
1008
1008
|
enumerable: false,
|
|
1009
1009
|
configurable: true
|
|
@@ -1013,10 +1013,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1013
1013
|
* Gets or sets the color to use for the disabled text of the button when the type is raised.
|
|
1014
1014
|
*/
|
|
1015
1015
|
get: function () {
|
|
1016
|
-
return brushToString(this.i.
|
|
1016
|
+
return brushToString(this.i.pw);
|
|
1017
1017
|
},
|
|
1018
1018
|
set: function (v) {
|
|
1019
|
-
this.i.
|
|
1019
|
+
this.i.pw = stringToBrush(v);
|
|
1020
1020
|
},
|
|
1021
1021
|
enumerable: false,
|
|
1022
1022
|
configurable: true
|
|
@@ -1026,10 +1026,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1026
1026
|
* Gets or sets the disabled elevation to use for the button when the type is raised.
|
|
1027
1027
|
*/
|
|
1028
1028
|
get: function () {
|
|
1029
|
-
return this.i.
|
|
1029
|
+
return this.i.dj;
|
|
1030
1030
|
},
|
|
1031
1031
|
set: function (v) {
|
|
1032
|
-
this.i.
|
|
1032
|
+
this.i.dj = +v;
|
|
1033
1033
|
},
|
|
1034
1034
|
enumerable: false,
|
|
1035
1035
|
configurable: true
|
|
@@ -1039,10 +1039,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1039
1039
|
* Gets or sets the disabled elevation to use for the button when the type is raised.
|
|
1040
1040
|
*/
|
|
1041
1041
|
get: function () {
|
|
1042
|
-
return this.i.
|
|
1042
|
+
return this.i.x;
|
|
1043
1043
|
},
|
|
1044
1044
|
set: function (v) {
|
|
1045
|
-
this.i.
|
|
1045
|
+
this.i.x = ensureEnum(ElevationMode_$type, v);
|
|
1046
1046
|
},
|
|
1047
1047
|
enumerable: false,
|
|
1048
1048
|
configurable: true
|
|
@@ -1052,10 +1052,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1052
1052
|
* Gets or sets the hover color to use for the background of the button when the type is hovered.
|
|
1053
1053
|
*/
|
|
1054
1054
|
get: function () {
|
|
1055
|
-
return brushToString(this.i.
|
|
1055
|
+
return brushToString(this.i.ql);
|
|
1056
1056
|
},
|
|
1057
1057
|
set: function (v) {
|
|
1058
|
-
this.i.
|
|
1058
|
+
this.i.ql = stringToBrush(v);
|
|
1059
1059
|
},
|
|
1060
1060
|
enumerable: false,
|
|
1061
1061
|
configurable: true
|
|
@@ -1065,10 +1065,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1065
1065
|
* Gets or sets the border color to use for the button regardless of type.
|
|
1066
1066
|
*/
|
|
1067
1067
|
get: function () {
|
|
1068
|
-
return brushToString(this.i.
|
|
1068
|
+
return brushToString(this.i.n7);
|
|
1069
1069
|
},
|
|
1070
1070
|
set: function (v) {
|
|
1071
|
-
this.i.
|
|
1071
|
+
this.i.n7 = stringToBrush(v);
|
|
1072
1072
|
},
|
|
1073
1073
|
enumerable: false,
|
|
1074
1074
|
configurable: true
|
|
@@ -1078,10 +1078,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1078
1078
|
* Gets or sets the elevation to use for the button regardless of type.
|
|
1079
1079
|
*/
|
|
1080
1080
|
get: function () {
|
|
1081
|
-
return this.i.
|
|
1081
|
+
return this.i.d7;
|
|
1082
1082
|
},
|
|
1083
1083
|
set: function (v) {
|
|
1084
|
-
this.i.
|
|
1084
|
+
this.i.d7 = +v;
|
|
1085
1085
|
},
|
|
1086
1086
|
enumerable: false,
|
|
1087
1087
|
configurable: true
|
|
@@ -1091,10 +1091,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1091
1091
|
* Gets or sets the hover elevation to use for the button regardless of type.
|
|
1092
1092
|
*/
|
|
1093
1093
|
get: function () {
|
|
1094
|
-
return this.i.
|
|
1094
|
+
return this.i.du;
|
|
1095
1095
|
},
|
|
1096
1096
|
set: function (v) {
|
|
1097
|
-
this.i.
|
|
1097
|
+
this.i.du = +v;
|
|
1098
1098
|
},
|
|
1099
1099
|
enumerable: false,
|
|
1100
1100
|
configurable: true
|
|
@@ -1104,10 +1104,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1104
1104
|
* Gets or sets the focus elevation to use for the button regardless of type.
|
|
1105
1105
|
*/
|
|
1106
1106
|
get: function () {
|
|
1107
|
-
return this.i.
|
|
1107
|
+
return this.i.dt;
|
|
1108
1108
|
},
|
|
1109
1109
|
set: function (v) {
|
|
1110
|
-
this.i.
|
|
1110
|
+
this.i.dt = +v;
|
|
1111
1111
|
},
|
|
1112
1112
|
enumerable: false,
|
|
1113
1113
|
configurable: true
|
|
@@ -1117,15 +1117,15 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1117
1117
|
* Gets or sets the use for the button.
|
|
1118
1118
|
*/
|
|
1119
1119
|
get: function () {
|
|
1120
|
-
if (this.i.
|
|
1120
|
+
if (this.i.ab == null) {
|
|
1121
1121
|
return null;
|
|
1122
1122
|
}
|
|
1123
|
-
return this.i.
|
|
1123
|
+
return this.i.ab.fontString;
|
|
1124
1124
|
},
|
|
1125
1125
|
set: function (v) {
|
|
1126
1126
|
var fi = new FontInfo();
|
|
1127
1127
|
fi.fontString = v;
|
|
1128
|
-
this.i.
|
|
1128
|
+
this.i.ab = fi;
|
|
1129
1129
|
},
|
|
1130
1130
|
enumerable: false,
|
|
1131
1131
|
configurable: true
|
|
@@ -1135,10 +1135,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1135
1135
|
* Gets or sets the color to use for the text of the button regardless of type.
|
|
1136
1136
|
*/
|
|
1137
1137
|
get: function () {
|
|
1138
|
-
return brushToString(this.i.
|
|
1138
|
+
return brushToString(this.i.rl);
|
|
1139
1139
|
},
|
|
1140
1140
|
set: function (v) {
|
|
1141
|
-
this.i.
|
|
1141
|
+
this.i.rl = stringToBrush(v);
|
|
1142
1142
|
},
|
|
1143
1143
|
enumerable: false,
|
|
1144
1144
|
configurable: true
|
|
@@ -1148,10 +1148,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1148
1148
|
* Gets or sets the color to use for the hovered text of the button regardless of type.
|
|
1149
1149
|
*/
|
|
1150
1150
|
get: function () {
|
|
1151
|
-
return brushToString(this.i.
|
|
1151
|
+
return brushToString(this.i.qm);
|
|
1152
1152
|
},
|
|
1153
1153
|
set: function (v) {
|
|
1154
|
-
this.i.
|
|
1154
|
+
this.i.qm = stringToBrush(v);
|
|
1155
1155
|
},
|
|
1156
1156
|
enumerable: false,
|
|
1157
1157
|
configurable: true
|
|
@@ -1161,10 +1161,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1161
1161
|
* Gets or sets the color to use for the background of the button regardless of type.
|
|
1162
1162
|
*/
|
|
1163
1163
|
get: function () {
|
|
1164
|
-
return brushToString(this.i.
|
|
1164
|
+
return brushToString(this.i.rk);
|
|
1165
1165
|
},
|
|
1166
1166
|
set: function (v) {
|
|
1167
|
-
this.i.
|
|
1167
|
+
this.i.rk = stringToBrush(v);
|
|
1168
1168
|
},
|
|
1169
1169
|
enumerable: false,
|
|
1170
1170
|
configurable: true
|
|
@@ -1174,10 +1174,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1174
1174
|
* Gets or sets the color to use for the text of the button when type is raised.
|
|
1175
1175
|
*/
|
|
1176
1176
|
get: function () {
|
|
1177
|
-
return brushToString(this.i.
|
|
1177
|
+
return brushToString(this.i.rj);
|
|
1178
1178
|
},
|
|
1179
1179
|
set: function (v) {
|
|
1180
|
-
this.i.
|
|
1180
|
+
this.i.rj = stringToBrush(v);
|
|
1181
1181
|
},
|
|
1182
1182
|
enumerable: false,
|
|
1183
1183
|
configurable: true
|
|
@@ -1187,10 +1187,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1187
1187
|
* Gets or sets the color to use for the hovered text of the button when type is raised.
|
|
1188
1188
|
*/
|
|
1189
1189
|
get: function () {
|
|
1190
|
-
return brushToString(this.i.
|
|
1190
|
+
return brushToString(this.i.rh);
|
|
1191
1191
|
},
|
|
1192
1192
|
set: function (v) {
|
|
1193
|
-
this.i.
|
|
1193
|
+
this.i.rh = stringToBrush(v);
|
|
1194
1194
|
},
|
|
1195
1195
|
enumerable: false,
|
|
1196
1196
|
configurable: true
|
|
@@ -1200,10 +1200,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1200
1200
|
* Gets or sets the color to use for the backround the button when it is focused and raised.
|
|
1201
1201
|
*/
|
|
1202
1202
|
get: function () {
|
|
1203
|
-
return brushToString(this.i.
|
|
1203
|
+
return brushToString(this.i.re);
|
|
1204
1204
|
},
|
|
1205
1205
|
set: function (v) {
|
|
1206
|
-
this.i.
|
|
1206
|
+
this.i.re = stringToBrush(v);
|
|
1207
1207
|
},
|
|
1208
1208
|
enumerable: false,
|
|
1209
1209
|
configurable: true
|
|
@@ -1213,10 +1213,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1213
1213
|
* Gets or sets the color to use for the text the button when it is focused and raised.
|
|
1214
1214
|
*/
|
|
1215
1215
|
get: function () {
|
|
1216
|
-
return brushToString(this.i.
|
|
1216
|
+
return brushToString(this.i.rf);
|
|
1217
1217
|
},
|
|
1218
1218
|
set: function (v) {
|
|
1219
|
-
this.i.
|
|
1219
|
+
this.i.rf = stringToBrush(v);
|
|
1220
1220
|
},
|
|
1221
1221
|
enumerable: false,
|
|
1222
1222
|
configurable: true
|
|
@@ -1226,10 +1226,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1226
1226
|
* Gets or sets the color to use for the backround the button when it is focused.
|
|
1227
1227
|
*/
|
|
1228
1228
|
get: function () {
|
|
1229
|
-
return brushToString(this.i.
|
|
1229
|
+
return brushToString(this.i.qj);
|
|
1230
1230
|
},
|
|
1231
1231
|
set: function (v) {
|
|
1232
|
-
this.i.
|
|
1232
|
+
this.i.qj = stringToBrush(v);
|
|
1233
1233
|
},
|
|
1234
1234
|
enumerable: false,
|
|
1235
1235
|
configurable: true
|
|
@@ -1239,10 +1239,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1239
1239
|
* Gets or sets the color to use for the text of the button when it is focused.
|
|
1240
1240
|
*/
|
|
1241
1241
|
get: function () {
|
|
1242
|
-
return brushToString(this.i.
|
|
1242
|
+
return brushToString(this.i.qk);
|
|
1243
1243
|
},
|
|
1244
1244
|
set: function (v) {
|
|
1245
|
-
this.i.
|
|
1245
|
+
this.i.qk = stringToBrush(v);
|
|
1246
1246
|
},
|
|
1247
1247
|
enumerable: false,
|
|
1248
1248
|
configurable: true
|
|
@@ -1252,77 +1252,77 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1252
1252
|
* Gets or sets the width to use for the button border regardless of type.
|
|
1253
1253
|
*/
|
|
1254
1254
|
get: function () {
|
|
1255
|
-
return this.i.
|
|
1255
|
+
return this.i.bl;
|
|
1256
1256
|
},
|
|
1257
1257
|
set: function (v) {
|
|
1258
|
-
this.i.
|
|
1258
|
+
this.i.bl = +v;
|
|
1259
1259
|
},
|
|
1260
1260
|
enumerable: false,
|
|
1261
1261
|
configurable: true
|
|
1262
1262
|
});
|
|
1263
1263
|
Object.defineProperty(IgxXButtonComponent.prototype, "cornerRadiusBottomRight", {
|
|
1264
1264
|
get: function () {
|
|
1265
|
-
return this.i.
|
|
1265
|
+
return this.i.k6 ? this.i.k6.c : NaN;
|
|
1266
1266
|
},
|
|
1267
1267
|
set: function (v) {
|
|
1268
1268
|
this.ensureCornerRadius();
|
|
1269
|
-
this.i.
|
|
1270
|
-
this.i.
|
|
1269
|
+
this.i.k6.c = +v;
|
|
1270
|
+
this.i.k6 = this.i.k6;
|
|
1271
1271
|
},
|
|
1272
1272
|
enumerable: false,
|
|
1273
1273
|
configurable: true
|
|
1274
1274
|
});
|
|
1275
1275
|
Object.defineProperty(IgxXButtonComponent.prototype, "cornerRadiusBottomLeft", {
|
|
1276
1276
|
get: function () {
|
|
1277
|
-
return this.i.
|
|
1277
|
+
return this.i.k6 ? this.i.k6.b : NaN;
|
|
1278
1278
|
},
|
|
1279
1279
|
set: function (v) {
|
|
1280
1280
|
this.ensureCornerRadius();
|
|
1281
|
-
this.i.
|
|
1282
|
-
this.i.
|
|
1281
|
+
this.i.k6.b = +v;
|
|
1282
|
+
this.i.k6 = this.i.k6;
|
|
1283
1283
|
},
|
|
1284
1284
|
enumerable: false,
|
|
1285
1285
|
configurable: true
|
|
1286
1286
|
});
|
|
1287
1287
|
Object.defineProperty(IgxXButtonComponent.prototype, "cornerRadiusTopLeft", {
|
|
1288
1288
|
get: function () {
|
|
1289
|
-
return this.i.
|
|
1289
|
+
return this.i.k6 ? this.i.k6.d : NaN;
|
|
1290
1290
|
},
|
|
1291
1291
|
set: function (v) {
|
|
1292
1292
|
this.ensureCornerRadius();
|
|
1293
|
-
this.i.
|
|
1294
|
-
this.i.
|
|
1293
|
+
this.i.k6.d = +v;
|
|
1294
|
+
this.i.k6 = this.i.k6;
|
|
1295
1295
|
},
|
|
1296
1296
|
enumerable: false,
|
|
1297
1297
|
configurable: true
|
|
1298
1298
|
});
|
|
1299
1299
|
Object.defineProperty(IgxXButtonComponent.prototype, "cornerRadiusTopRight", {
|
|
1300
1300
|
get: function () {
|
|
1301
|
-
return this.i.
|
|
1301
|
+
return this.i.k6 ? this.i.k6.e : NaN;
|
|
1302
1302
|
},
|
|
1303
1303
|
set: function (v) {
|
|
1304
1304
|
this.ensureCornerRadius();
|
|
1305
|
-
this.i.
|
|
1306
|
-
this.i.
|
|
1305
|
+
this.i.k6.e = +v;
|
|
1306
|
+
this.i.k6 = this.i.k6;
|
|
1307
1307
|
},
|
|
1308
1308
|
enumerable: false,
|
|
1309
1309
|
configurable: true
|
|
1310
1310
|
});
|
|
1311
1311
|
IgxXButtonComponent.prototype.ensureCornerRadius = function () {
|
|
1312
|
-
if (this.i.
|
|
1312
|
+
if (this.i.k6) {
|
|
1313
1313
|
return;
|
|
1314
1314
|
}
|
|
1315
|
-
this.i.
|
|
1315
|
+
this.i.k6 = new CornerRadius(2);
|
|
1316
1316
|
};
|
|
1317
1317
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedBackgroundColor", {
|
|
1318
1318
|
/**
|
|
1319
1319
|
* Gets or sets the color to use for the background of the button when the type is outlined.
|
|
1320
1320
|
*/
|
|
1321
1321
|
get: function () {
|
|
1322
|
-
return brushToString(this.i.
|
|
1322
|
+
return brushToString(this.i.qy);
|
|
1323
1323
|
},
|
|
1324
1324
|
set: function (v) {
|
|
1325
|
-
this.i.
|
|
1325
|
+
this.i.qy = stringToBrush(v);
|
|
1326
1326
|
},
|
|
1327
1327
|
enumerable: false,
|
|
1328
1328
|
configurable: true
|
|
@@ -1332,10 +1332,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1332
1332
|
* Gets or sets the color to use for the disabled background of the button when the type is outlined.
|
|
1333
1333
|
*/
|
|
1334
1334
|
get: function () {
|
|
1335
|
-
return brushToString(this.i.
|
|
1335
|
+
return brushToString(this.i.q0);
|
|
1336
1336
|
},
|
|
1337
1337
|
set: function (v) {
|
|
1338
|
-
this.i.
|
|
1338
|
+
this.i.q0 = stringToBrush(v);
|
|
1339
1339
|
},
|
|
1340
1340
|
enumerable: false,
|
|
1341
1341
|
configurable: true
|
|
@@ -1345,10 +1345,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1345
1345
|
* Gets or sets the color to use for the disabled border of the button when the type is outlined.
|
|
1346
1346
|
*/
|
|
1347
1347
|
get: function () {
|
|
1348
|
-
return brushToString(this.i.
|
|
1348
|
+
return brushToString(this.i.q1);
|
|
1349
1349
|
},
|
|
1350
1350
|
set: function (v) {
|
|
1351
|
-
this.i.
|
|
1351
|
+
this.i.q1 = stringToBrush(v);
|
|
1352
1352
|
},
|
|
1353
1353
|
enumerable: false,
|
|
1354
1354
|
configurable: true
|
|
@@ -1358,10 +1358,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1358
1358
|
* Gets or sets the color to use for the disabled text of the button when the type is outlined.
|
|
1359
1359
|
*/
|
|
1360
1360
|
get: function () {
|
|
1361
|
-
return brushToString(this.i.
|
|
1361
|
+
return brushToString(this.i.q2);
|
|
1362
1362
|
},
|
|
1363
1363
|
set: function (v) {
|
|
1364
|
-
this.i.
|
|
1364
|
+
this.i.q2 = stringToBrush(v);
|
|
1365
1365
|
},
|
|
1366
1366
|
enumerable: false,
|
|
1367
1367
|
configurable: true
|
|
@@ -1371,10 +1371,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1371
1371
|
* Gets or sets the disabled elevation to use for the button when the type is outlined.
|
|
1372
1372
|
*/
|
|
1373
1373
|
get: function () {
|
|
1374
|
-
return this.i.
|
|
1374
|
+
return this.i.dz;
|
|
1375
1375
|
},
|
|
1376
1376
|
set: function (v) {
|
|
1377
|
-
this.i.
|
|
1377
|
+
this.i.dz = +v;
|
|
1378
1378
|
},
|
|
1379
1379
|
enumerable: false,
|
|
1380
1380
|
configurable: true
|
|
@@ -1384,10 +1384,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1384
1384
|
* Gets or sets the hover color to use for the background of the button when the type is hoveredOutlined.
|
|
1385
1385
|
*/
|
|
1386
1386
|
get: function () {
|
|
1387
|
-
return brushToString(this.i.
|
|
1387
|
+
return brushToString(this.i.q5);
|
|
1388
1388
|
},
|
|
1389
1389
|
set: function (v) {
|
|
1390
|
-
this.i.
|
|
1390
|
+
this.i.q5 = stringToBrush(v);
|
|
1391
1391
|
},
|
|
1392
1392
|
enumerable: false,
|
|
1393
1393
|
configurable: true
|
|
@@ -1397,10 +1397,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1397
1397
|
* Gets or sets the border color to use for the button when the type is outlined.
|
|
1398
1398
|
*/
|
|
1399
1399
|
get: function () {
|
|
1400
|
-
return brushToString(this.i.
|
|
1400
|
+
return brushToString(this.i.qz);
|
|
1401
1401
|
},
|
|
1402
1402
|
set: function (v) {
|
|
1403
|
-
this.i.
|
|
1403
|
+
this.i.qz = stringToBrush(v);
|
|
1404
1404
|
},
|
|
1405
1405
|
enumerable: false,
|
|
1406
1406
|
configurable: true
|
|
@@ -1410,10 +1410,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1410
1410
|
* Gets or sets the elevation to use for the button when the type is outlined.
|
|
1411
1411
|
*/
|
|
1412
1412
|
get: function () {
|
|
1413
|
-
return this.i.
|
|
1413
|
+
return this.i.d2;
|
|
1414
1414
|
},
|
|
1415
1415
|
set: function (v) {
|
|
1416
|
-
this.i.
|
|
1416
|
+
this.i.d2 = +v;
|
|
1417
1417
|
},
|
|
1418
1418
|
enumerable: false,
|
|
1419
1419
|
configurable: true
|
|
@@ -1423,10 +1423,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1423
1423
|
* Gets or sets the hover elevation to use for the button when the type is outlined.
|
|
1424
1424
|
*/
|
|
1425
1425
|
get: function () {
|
|
1426
|
-
return this.i.
|
|
1426
|
+
return this.i.d1;
|
|
1427
1427
|
},
|
|
1428
1428
|
set: function (v) {
|
|
1429
|
-
this.i.
|
|
1429
|
+
this.i.d1 = +v;
|
|
1430
1430
|
},
|
|
1431
1431
|
enumerable: false,
|
|
1432
1432
|
configurable: true
|
|
@@ -1436,10 +1436,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1436
1436
|
* Gets or sets the focus elevation to use for the button when the type is outlined.
|
|
1437
1437
|
*/
|
|
1438
1438
|
get: function () {
|
|
1439
|
-
return this.i.
|
|
1439
|
+
return this.i.d0;
|
|
1440
1440
|
},
|
|
1441
1441
|
set: function (v) {
|
|
1442
|
-
this.i.
|
|
1442
|
+
this.i.d0 = +v;
|
|
1443
1443
|
},
|
|
1444
1444
|
enumerable: false,
|
|
1445
1445
|
configurable: true
|
|
@@ -1449,77 +1449,77 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1449
1449
|
* Gets or sets the width to use for the button border when the type is outlined.
|
|
1450
1450
|
*/
|
|
1451
1451
|
get: function () {
|
|
1452
|
-
return this.i.
|
|
1452
|
+
return this.i.b0;
|
|
1453
1453
|
},
|
|
1454
1454
|
set: function (v) {
|
|
1455
|
-
this.i.
|
|
1455
|
+
this.i.b0 = +v;
|
|
1456
1456
|
},
|
|
1457
1457
|
enumerable: false,
|
|
1458
1458
|
configurable: true
|
|
1459
1459
|
});
|
|
1460
1460
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedCornerRadiusBottomRight", {
|
|
1461
1461
|
get: function () {
|
|
1462
|
-
return this.i.
|
|
1462
|
+
return this.i.lg ? this.i.lg.c : NaN;
|
|
1463
1463
|
},
|
|
1464
1464
|
set: function (v) {
|
|
1465
1465
|
this.ensureOutlinedCornerRadius();
|
|
1466
|
-
this.i.
|
|
1467
|
-
this.i.
|
|
1466
|
+
this.i.lg.c = +v;
|
|
1467
|
+
this.i.lg = this.i.lg;
|
|
1468
1468
|
},
|
|
1469
1469
|
enumerable: false,
|
|
1470
1470
|
configurable: true
|
|
1471
1471
|
});
|
|
1472
1472
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedCornerRadiusBottomLeft", {
|
|
1473
1473
|
get: function () {
|
|
1474
|
-
return this.i.
|
|
1474
|
+
return this.i.lg ? this.i.lg.b : NaN;
|
|
1475
1475
|
},
|
|
1476
1476
|
set: function (v) {
|
|
1477
1477
|
this.ensureOutlinedCornerRadius();
|
|
1478
|
-
this.i.
|
|
1479
|
-
this.i.
|
|
1478
|
+
this.i.lg.b = +v;
|
|
1479
|
+
this.i.lg = this.i.lg;
|
|
1480
1480
|
},
|
|
1481
1481
|
enumerable: false,
|
|
1482
1482
|
configurable: true
|
|
1483
1483
|
});
|
|
1484
1484
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedCornerRadiusTopLeft", {
|
|
1485
1485
|
get: function () {
|
|
1486
|
-
return this.i.
|
|
1486
|
+
return this.i.lg ? this.i.lg.d : NaN;
|
|
1487
1487
|
},
|
|
1488
1488
|
set: function (v) {
|
|
1489
1489
|
this.ensureOutlinedCornerRadius();
|
|
1490
|
-
this.i.
|
|
1491
|
-
this.i.
|
|
1490
|
+
this.i.lg.d = +v;
|
|
1491
|
+
this.i.lg = this.i.lg;
|
|
1492
1492
|
},
|
|
1493
1493
|
enumerable: false,
|
|
1494
1494
|
configurable: true
|
|
1495
1495
|
});
|
|
1496
1496
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedCornerRadiusTopRight", {
|
|
1497
1497
|
get: function () {
|
|
1498
|
-
return this.i.
|
|
1498
|
+
return this.i.lg ? this.i.lg.e : NaN;
|
|
1499
1499
|
},
|
|
1500
1500
|
set: function (v) {
|
|
1501
1501
|
this.ensureOutlinedCornerRadius();
|
|
1502
|
-
this.i.
|
|
1503
|
-
this.i.
|
|
1502
|
+
this.i.lg.e = +v;
|
|
1503
|
+
this.i.lg = this.i.lg;
|
|
1504
1504
|
},
|
|
1505
1505
|
enumerable: false,
|
|
1506
1506
|
configurable: true
|
|
1507
1507
|
});
|
|
1508
1508
|
IgxXButtonComponent.prototype.ensureOutlinedCornerRadius = function () {
|
|
1509
|
-
if (this.i.
|
|
1509
|
+
if (this.i.lg) {
|
|
1510
1510
|
return;
|
|
1511
1511
|
}
|
|
1512
|
-
this.i.
|
|
1512
|
+
this.i.lg = new CornerRadius(2);
|
|
1513
1513
|
};
|
|
1514
1514
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedRippleColor", {
|
|
1515
1515
|
/**
|
|
1516
1516
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
1517
1517
|
*/
|
|
1518
1518
|
get: function () {
|
|
1519
|
-
return brushToString(this.i.
|
|
1519
|
+
return brushToString(this.i.q7);
|
|
1520
1520
|
},
|
|
1521
1521
|
set: function (v) {
|
|
1522
|
-
this.i.
|
|
1522
|
+
this.i.q7 = stringToBrush(v);
|
|
1523
1523
|
},
|
|
1524
1524
|
enumerable: false,
|
|
1525
1525
|
configurable: true
|
|
@@ -1529,10 +1529,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1529
1529
|
* Gets or sets the color to use for the text of the button when type is outlined.
|
|
1530
1530
|
*/
|
|
1531
1531
|
get: function () {
|
|
1532
|
-
return brushToString(this.i.
|
|
1532
|
+
return brushToString(this.i.q8);
|
|
1533
1533
|
},
|
|
1534
1534
|
set: function (v) {
|
|
1535
|
-
this.i.
|
|
1535
|
+
this.i.q8 = stringToBrush(v);
|
|
1536
1536
|
},
|
|
1537
1537
|
enumerable: false,
|
|
1538
1538
|
configurable: true
|
|
@@ -1542,10 +1542,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1542
1542
|
* Gets or sets the color to use for the hovered text of the button when type is outlined.
|
|
1543
1543
|
*/
|
|
1544
1544
|
get: function () {
|
|
1545
|
-
return brushToString(this.i.
|
|
1545
|
+
return brushToString(this.i.q6);
|
|
1546
1546
|
},
|
|
1547
1547
|
set: function (v) {
|
|
1548
|
-
this.i.
|
|
1548
|
+
this.i.q6 = stringToBrush(v);
|
|
1549
1549
|
},
|
|
1550
1550
|
enumerable: false,
|
|
1551
1551
|
configurable: true
|
|
@@ -1555,10 +1555,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1555
1555
|
* Gets or sets the color to use for the backround the button when it is focused and outlined.
|
|
1556
1556
|
*/
|
|
1557
1557
|
get: function () {
|
|
1558
|
-
return brushToString(this.i.
|
|
1558
|
+
return brushToString(this.i.q3);
|
|
1559
1559
|
},
|
|
1560
1560
|
set: function (v) {
|
|
1561
|
-
this.i.
|
|
1561
|
+
this.i.q3 = stringToBrush(v);
|
|
1562
1562
|
},
|
|
1563
1563
|
enumerable: false,
|
|
1564
1564
|
configurable: true
|
|
@@ -1568,10 +1568,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1568
1568
|
* Gets or sets the color to use for the text the button when it is focused and outlined.
|
|
1569
1569
|
*/
|
|
1570
1570
|
get: function () {
|
|
1571
|
-
return brushToString(this.i.
|
|
1571
|
+
return brushToString(this.i.q4);
|
|
1572
1572
|
},
|
|
1573
1573
|
set: function (v) {
|
|
1574
|
-
this.i.
|
|
1574
|
+
this.i.q4 = stringToBrush(v);
|
|
1575
1575
|
},
|
|
1576
1576
|
enumerable: false,
|
|
1577
1577
|
configurable: true
|
|
@@ -1581,10 +1581,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1581
1581
|
* Gets or sets the color to use for the background of the button when the type is floating action button.
|
|
1582
1582
|
*/
|
|
1583
1583
|
get: function () {
|
|
1584
|
-
return brushToString(this.i.
|
|
1584
|
+
return brushToString(this.i.px);
|
|
1585
1585
|
},
|
|
1586
1586
|
set: function (v) {
|
|
1587
|
-
this.i.
|
|
1587
|
+
this.i.px = stringToBrush(v);
|
|
1588
1588
|
},
|
|
1589
1589
|
enumerable: false,
|
|
1590
1590
|
configurable: true
|
|
@@ -1594,10 +1594,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1594
1594
|
* Gets or sets the color to use for the disabled background of the button when the type is fab.
|
|
1595
1595
|
*/
|
|
1596
1596
|
get: function () {
|
|
1597
|
-
return brushToString(this.i.
|
|
1597
|
+
return brushToString(this.i.pz);
|
|
1598
1598
|
},
|
|
1599
1599
|
set: function (v) {
|
|
1600
|
-
this.i.
|
|
1600
|
+
this.i.pz = stringToBrush(v);
|
|
1601
1601
|
},
|
|
1602
1602
|
enumerable: false,
|
|
1603
1603
|
configurable: true
|
|
@@ -1607,10 +1607,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1607
1607
|
* Gets or sets the color to use for the disabled border of the button when the type is fab.
|
|
1608
1608
|
*/
|
|
1609
1609
|
get: function () {
|
|
1610
|
-
return brushToString(this.i.
|
|
1610
|
+
return brushToString(this.i.p0);
|
|
1611
1611
|
},
|
|
1612
1612
|
set: function (v) {
|
|
1613
|
-
this.i.
|
|
1613
|
+
this.i.p0 = stringToBrush(v);
|
|
1614
1614
|
},
|
|
1615
1615
|
enumerable: false,
|
|
1616
1616
|
configurable: true
|
|
@@ -1620,10 +1620,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1620
1620
|
* Gets or sets the color to use for the disabled text of the button when the type is fab.
|
|
1621
1621
|
*/
|
|
1622
1622
|
get: function () {
|
|
1623
|
-
return brushToString(this.i.
|
|
1623
|
+
return brushToString(this.i.p1);
|
|
1624
1624
|
},
|
|
1625
1625
|
set: function (v) {
|
|
1626
|
-
this.i.
|
|
1626
|
+
this.i.p1 = stringToBrush(v);
|
|
1627
1627
|
},
|
|
1628
1628
|
enumerable: false,
|
|
1629
1629
|
configurable: true
|
|
@@ -1633,10 +1633,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1633
1633
|
* Gets or sets the disabled elevation to use for the button when the type is fab.
|
|
1634
1634
|
*/
|
|
1635
1635
|
get: function () {
|
|
1636
|
-
return this.i.
|
|
1636
|
+
return this.i.dk;
|
|
1637
1637
|
},
|
|
1638
1638
|
set: function (v) {
|
|
1639
|
-
this.i.
|
|
1639
|
+
this.i.dk = +v;
|
|
1640
1640
|
},
|
|
1641
1641
|
enumerable: false,
|
|
1642
1642
|
configurable: true
|
|
@@ -1646,10 +1646,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1646
1646
|
* Gets or sets the hover color to use for the background of the button when the type is hoveredFab.
|
|
1647
1647
|
*/
|
|
1648
1648
|
get: function () {
|
|
1649
|
-
return brushToString(this.i.
|
|
1649
|
+
return brushToString(this.i.p4);
|
|
1650
1650
|
},
|
|
1651
1651
|
set: function (v) {
|
|
1652
|
-
this.i.
|
|
1652
|
+
this.i.p4 = stringToBrush(v);
|
|
1653
1653
|
},
|
|
1654
1654
|
enumerable: false,
|
|
1655
1655
|
configurable: true
|
|
@@ -1659,10 +1659,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1659
1659
|
* Gets or sets the border color to use for the button when the type is floating action button.
|
|
1660
1660
|
*/
|
|
1661
1661
|
get: function () {
|
|
1662
|
-
return brushToString(this.i.
|
|
1662
|
+
return brushToString(this.i.py);
|
|
1663
1663
|
},
|
|
1664
1664
|
set: function (v) {
|
|
1665
|
-
this.i.
|
|
1665
|
+
this.i.py = stringToBrush(v);
|
|
1666
1666
|
},
|
|
1667
1667
|
enumerable: false,
|
|
1668
1668
|
configurable: true
|
|
@@ -1672,10 +1672,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1672
1672
|
* Gets or sets the elevation to use for the button when the type is floating action button.
|
|
1673
1673
|
*/
|
|
1674
1674
|
get: function () {
|
|
1675
|
-
return this.i.
|
|
1675
|
+
return this.i.dn;
|
|
1676
1676
|
},
|
|
1677
1677
|
set: function (v) {
|
|
1678
|
-
this.i.
|
|
1678
|
+
this.i.dn = +v;
|
|
1679
1679
|
},
|
|
1680
1680
|
enumerable: false,
|
|
1681
1681
|
configurable: true
|
|
@@ -1685,10 +1685,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1685
1685
|
* Gets or sets the hover elevation to use for the button when the type is floating action button.
|
|
1686
1686
|
*/
|
|
1687
1687
|
get: function () {
|
|
1688
|
-
return this.i.
|
|
1688
|
+
return this.i.dm;
|
|
1689
1689
|
},
|
|
1690
1690
|
set: function (v) {
|
|
1691
|
-
this.i.
|
|
1691
|
+
this.i.dm = +v;
|
|
1692
1692
|
},
|
|
1693
1693
|
enumerable: false,
|
|
1694
1694
|
configurable: true
|
|
@@ -1698,10 +1698,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1698
1698
|
* Gets or sets the focus elevation to use for the button when the type is floating action button.
|
|
1699
1699
|
*/
|
|
1700
1700
|
get: function () {
|
|
1701
|
-
return this.i.
|
|
1701
|
+
return this.i.dl;
|
|
1702
1702
|
},
|
|
1703
1703
|
set: function (v) {
|
|
1704
|
-
this.i.
|
|
1704
|
+
this.i.dl = +v;
|
|
1705
1705
|
},
|
|
1706
1706
|
enumerable: false,
|
|
1707
1707
|
configurable: true
|
|
@@ -1711,77 +1711,77 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1711
1711
|
* Gets or sets the width to use for the button border when the type is floating action button.
|
|
1712
1712
|
*/
|
|
1713
1713
|
get: function () {
|
|
1714
|
-
return this.i.
|
|
1714
|
+
return this.i.bv;
|
|
1715
1715
|
},
|
|
1716
1716
|
set: function (v) {
|
|
1717
|
-
this.i.
|
|
1717
|
+
this.i.bv = +v;
|
|
1718
1718
|
},
|
|
1719
1719
|
enumerable: false,
|
|
1720
1720
|
configurable: true
|
|
1721
1721
|
});
|
|
1722
1722
|
Object.defineProperty(IgxXButtonComponent.prototype, "fabCornerRadiusBottomRight", {
|
|
1723
1723
|
get: function () {
|
|
1724
|
-
return this.i.
|
|
1724
|
+
return this.i.lc ? this.i.lc.c : NaN;
|
|
1725
1725
|
},
|
|
1726
1726
|
set: function (v) {
|
|
1727
1727
|
this.ensureFabCornerRadius();
|
|
1728
|
-
this.i.
|
|
1729
|
-
this.i.
|
|
1728
|
+
this.i.lc.c = +v;
|
|
1729
|
+
this.i.lc = this.i.lc;
|
|
1730
1730
|
},
|
|
1731
1731
|
enumerable: false,
|
|
1732
1732
|
configurable: true
|
|
1733
1733
|
});
|
|
1734
1734
|
Object.defineProperty(IgxXButtonComponent.prototype, "fabCornerRadiusBottomLeft", {
|
|
1735
1735
|
get: function () {
|
|
1736
|
-
return this.i.
|
|
1736
|
+
return this.i.lc ? this.i.lc.b : NaN;
|
|
1737
1737
|
},
|
|
1738
1738
|
set: function (v) {
|
|
1739
1739
|
this.ensureFabCornerRadius();
|
|
1740
|
-
this.i.
|
|
1741
|
-
this.i.
|
|
1740
|
+
this.i.lc.b = +v;
|
|
1741
|
+
this.i.lc = this.i.lc;
|
|
1742
1742
|
},
|
|
1743
1743
|
enumerable: false,
|
|
1744
1744
|
configurable: true
|
|
1745
1745
|
});
|
|
1746
1746
|
Object.defineProperty(IgxXButtonComponent.prototype, "fabCornerRadiusTopLeft", {
|
|
1747
1747
|
get: function () {
|
|
1748
|
-
return this.i.
|
|
1748
|
+
return this.i.lc ? this.i.lc.d : NaN;
|
|
1749
1749
|
},
|
|
1750
1750
|
set: function (v) {
|
|
1751
1751
|
this.ensureFabCornerRadius();
|
|
1752
|
-
this.i.
|
|
1753
|
-
this.i.
|
|
1752
|
+
this.i.lc.d = +v;
|
|
1753
|
+
this.i.lc = this.i.lc;
|
|
1754
1754
|
},
|
|
1755
1755
|
enumerable: false,
|
|
1756
1756
|
configurable: true
|
|
1757
1757
|
});
|
|
1758
1758
|
Object.defineProperty(IgxXButtonComponent.prototype, "fabCornerRadiusTopRight", {
|
|
1759
1759
|
get: function () {
|
|
1760
|
-
return this.i.
|
|
1760
|
+
return this.i.lc ? this.i.lc.e : NaN;
|
|
1761
1761
|
},
|
|
1762
1762
|
set: function (v) {
|
|
1763
1763
|
this.ensureFabCornerRadius();
|
|
1764
|
-
this.i.
|
|
1765
|
-
this.i.
|
|
1764
|
+
this.i.lc.e = +v;
|
|
1765
|
+
this.i.lc = this.i.lc;
|
|
1766
1766
|
},
|
|
1767
1767
|
enumerable: false,
|
|
1768
1768
|
configurable: true
|
|
1769
1769
|
});
|
|
1770
1770
|
IgxXButtonComponent.prototype.ensureFabCornerRadius = function () {
|
|
1771
|
-
if (this.i.
|
|
1771
|
+
if (this.i.lc) {
|
|
1772
1772
|
return;
|
|
1773
1773
|
}
|
|
1774
|
-
this.i.
|
|
1774
|
+
this.i.lc = new CornerRadius(2);
|
|
1775
1775
|
};
|
|
1776
1776
|
Object.defineProperty(IgxXButtonComponent.prototype, "fabRippleColor", {
|
|
1777
1777
|
/**
|
|
1778
1778
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
1779
1779
|
*/
|
|
1780
1780
|
get: function () {
|
|
1781
|
-
return brushToString(this.i.
|
|
1781
|
+
return brushToString(this.i.p6);
|
|
1782
1782
|
},
|
|
1783
1783
|
set: function (v) {
|
|
1784
|
-
this.i.
|
|
1784
|
+
this.i.p6 = stringToBrush(v);
|
|
1785
1785
|
},
|
|
1786
1786
|
enumerable: false,
|
|
1787
1787
|
configurable: true
|
|
@@ -1791,10 +1791,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1791
1791
|
* Gets or sets the color to use for the text of the button when type is floating action button.
|
|
1792
1792
|
*/
|
|
1793
1793
|
get: function () {
|
|
1794
|
-
return brushToString(this.i.
|
|
1794
|
+
return brushToString(this.i.p7);
|
|
1795
1795
|
},
|
|
1796
1796
|
set: function (v) {
|
|
1797
|
-
this.i.
|
|
1797
|
+
this.i.p7 = stringToBrush(v);
|
|
1798
1798
|
},
|
|
1799
1799
|
enumerable: false,
|
|
1800
1800
|
configurable: true
|
|
@@ -1804,10 +1804,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1804
1804
|
* Gets or sets the color to use for the hovered text of the button when type is floating action button.
|
|
1805
1805
|
*/
|
|
1806
1806
|
get: function () {
|
|
1807
|
-
return brushToString(this.i.
|
|
1807
|
+
return brushToString(this.i.p5);
|
|
1808
1808
|
},
|
|
1809
1809
|
set: function (v) {
|
|
1810
|
-
this.i.
|
|
1810
|
+
this.i.p5 = stringToBrush(v);
|
|
1811
1811
|
},
|
|
1812
1812
|
enumerable: false,
|
|
1813
1813
|
configurable: true
|
|
@@ -1817,10 +1817,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1817
1817
|
* Gets or sets the color to use for the backround the button when it is focused and fab.
|
|
1818
1818
|
*/
|
|
1819
1819
|
get: function () {
|
|
1820
|
-
return brushToString(this.i.
|
|
1820
|
+
return brushToString(this.i.p2);
|
|
1821
1821
|
},
|
|
1822
1822
|
set: function (v) {
|
|
1823
|
-
this.i.
|
|
1823
|
+
this.i.p2 = stringToBrush(v);
|
|
1824
1824
|
},
|
|
1825
1825
|
enumerable: false,
|
|
1826
1826
|
configurable: true
|
|
@@ -1830,10 +1830,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1830
1830
|
* Gets or sets the color to use for the text the button when it is focused and fab.
|
|
1831
1831
|
*/
|
|
1832
1832
|
get: function () {
|
|
1833
|
-
return brushToString(this.i.
|
|
1833
|
+
return brushToString(this.i.p3);
|
|
1834
1834
|
},
|
|
1835
1835
|
set: function (v) {
|
|
1836
|
-
this.i.
|
|
1836
|
+
this.i.p3 = stringToBrush(v);
|
|
1837
1837
|
},
|
|
1838
1838
|
enumerable: false,
|
|
1839
1839
|
configurable: true
|
|
@@ -1843,10 +1843,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1843
1843
|
* Gets or sets the color to use for the background of the button when the type is icon.
|
|
1844
1844
|
*/
|
|
1845
1845
|
get: function () {
|
|
1846
|
-
return brushToString(this.i.
|
|
1846
|
+
return brushToString(this.i.qn);
|
|
1847
1847
|
},
|
|
1848
1848
|
set: function (v) {
|
|
1849
|
-
this.i.
|
|
1849
|
+
this.i.qn = stringToBrush(v);
|
|
1850
1850
|
},
|
|
1851
1851
|
enumerable: false,
|
|
1852
1852
|
configurable: true
|
|
@@ -1856,10 +1856,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1856
1856
|
* Gets or sets the color to use for the disabled background of the button when the type is icon.
|
|
1857
1857
|
*/
|
|
1858
1858
|
get: function () {
|
|
1859
|
-
return brushToString(this.i.
|
|
1859
|
+
return brushToString(this.i.qp);
|
|
1860
1860
|
},
|
|
1861
1861
|
set: function (v) {
|
|
1862
|
-
this.i.
|
|
1862
|
+
this.i.qp = stringToBrush(v);
|
|
1863
1863
|
},
|
|
1864
1864
|
enumerable: false,
|
|
1865
1865
|
configurable: true
|
|
@@ -1869,10 +1869,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1869
1869
|
* Gets or sets the color to use for the disabled border of the button when the type is icon.
|
|
1870
1870
|
*/
|
|
1871
1871
|
get: function () {
|
|
1872
|
-
return brushToString(this.i.
|
|
1872
|
+
return brushToString(this.i.qq);
|
|
1873
1873
|
},
|
|
1874
1874
|
set: function (v) {
|
|
1875
|
-
this.i.
|
|
1875
|
+
this.i.qq = stringToBrush(v);
|
|
1876
1876
|
},
|
|
1877
1877
|
enumerable: false,
|
|
1878
1878
|
configurable: true
|
|
@@ -1882,10 +1882,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1882
1882
|
* Gets or sets the color to use for the disabled text of the button when the type is icon.
|
|
1883
1883
|
*/
|
|
1884
1884
|
get: function () {
|
|
1885
|
-
return brushToString(this.i.
|
|
1885
|
+
return brushToString(this.i.qr);
|
|
1886
1886
|
},
|
|
1887
1887
|
set: function (v) {
|
|
1888
|
-
this.i.
|
|
1888
|
+
this.i.qr = stringToBrush(v);
|
|
1889
1889
|
},
|
|
1890
1890
|
enumerable: false,
|
|
1891
1891
|
configurable: true
|
|
@@ -1895,10 +1895,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1895
1895
|
* Gets or sets the disabled elevation to use for the button when the type is icon.
|
|
1896
1896
|
*/
|
|
1897
1897
|
get: function () {
|
|
1898
|
-
return this.i.
|
|
1898
|
+
return this.i.dv;
|
|
1899
1899
|
},
|
|
1900
1900
|
set: function (v) {
|
|
1901
|
-
this.i.
|
|
1901
|
+
this.i.dv = +v;
|
|
1902
1902
|
},
|
|
1903
1903
|
enumerable: false,
|
|
1904
1904
|
configurable: true
|
|
@@ -1908,10 +1908,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1908
1908
|
* Gets or sets the hover color to use for the background of the button when the type is hoveredIcon.
|
|
1909
1909
|
*/
|
|
1910
1910
|
get: function () {
|
|
1911
|
-
return brushToString(this.i.
|
|
1911
|
+
return brushToString(this.i.qu);
|
|
1912
1912
|
},
|
|
1913
1913
|
set: function (v) {
|
|
1914
|
-
this.i.
|
|
1914
|
+
this.i.qu = stringToBrush(v);
|
|
1915
1915
|
},
|
|
1916
1916
|
enumerable: false,
|
|
1917
1917
|
configurable: true
|
|
@@ -1921,10 +1921,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1921
1921
|
* Gets or sets the border color to use for the button when the type is icon.
|
|
1922
1922
|
*/
|
|
1923
1923
|
get: function () {
|
|
1924
|
-
return brushToString(this.i.
|
|
1924
|
+
return brushToString(this.i.qo);
|
|
1925
1925
|
},
|
|
1926
1926
|
set: function (v) {
|
|
1927
|
-
this.i.
|
|
1927
|
+
this.i.qo = stringToBrush(v);
|
|
1928
1928
|
},
|
|
1929
1929
|
enumerable: false,
|
|
1930
1930
|
configurable: true
|
|
@@ -1934,10 +1934,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1934
1934
|
* Gets or sets the elevation to use for the button when the type is icon.
|
|
1935
1935
|
*/
|
|
1936
1936
|
get: function () {
|
|
1937
|
-
return this.i.
|
|
1937
|
+
return this.i.dy;
|
|
1938
1938
|
},
|
|
1939
1939
|
set: function (v) {
|
|
1940
|
-
this.i.
|
|
1940
|
+
this.i.dy = +v;
|
|
1941
1941
|
},
|
|
1942
1942
|
enumerable: false,
|
|
1943
1943
|
configurable: true
|
|
@@ -1947,10 +1947,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1947
1947
|
* Gets or sets the hover elevation to use for the button when the type is icon.
|
|
1948
1948
|
*/
|
|
1949
1949
|
get: function () {
|
|
1950
|
-
return this.i.
|
|
1950
|
+
return this.i.dx;
|
|
1951
1951
|
},
|
|
1952
1952
|
set: function (v) {
|
|
1953
|
-
this.i.
|
|
1953
|
+
this.i.dx = +v;
|
|
1954
1954
|
},
|
|
1955
1955
|
enumerable: false,
|
|
1956
1956
|
configurable: true
|
|
@@ -1960,10 +1960,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1960
1960
|
* Gets or sets the focus elevation to use for the button when the type is icon.
|
|
1961
1961
|
*/
|
|
1962
1962
|
get: function () {
|
|
1963
|
-
return this.i.
|
|
1963
|
+
return this.i.dw;
|
|
1964
1964
|
},
|
|
1965
1965
|
set: function (v) {
|
|
1966
|
-
this.i.
|
|
1966
|
+
this.i.dw = +v;
|
|
1967
1967
|
},
|
|
1968
1968
|
enumerable: false,
|
|
1969
1969
|
configurable: true
|
|
@@ -1973,77 +1973,77 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1973
1973
|
* Gets or sets the width to use for the button border when the type is icon.
|
|
1974
1974
|
*/
|
|
1975
1975
|
get: function () {
|
|
1976
|
-
return this.i.
|
|
1976
|
+
return this.i.bx;
|
|
1977
1977
|
},
|
|
1978
1978
|
set: function (v) {
|
|
1979
|
-
this.i.
|
|
1979
|
+
this.i.bx = +v;
|
|
1980
1980
|
},
|
|
1981
1981
|
enumerable: false,
|
|
1982
1982
|
configurable: true
|
|
1983
1983
|
});
|
|
1984
1984
|
Object.defineProperty(IgxXButtonComponent.prototype, "iconCornerRadiusBottomRight", {
|
|
1985
1985
|
get: function () {
|
|
1986
|
-
return this.i.
|
|
1986
|
+
return this.i.lf ? this.i.lf.c : NaN;
|
|
1987
1987
|
},
|
|
1988
1988
|
set: function (v) {
|
|
1989
1989
|
this.ensureIconCornerRadius();
|
|
1990
|
-
this.i.
|
|
1991
|
-
this.i.
|
|
1990
|
+
this.i.lf.c = +v;
|
|
1991
|
+
this.i.lf = this.i.lf;
|
|
1992
1992
|
},
|
|
1993
1993
|
enumerable: false,
|
|
1994
1994
|
configurable: true
|
|
1995
1995
|
});
|
|
1996
1996
|
Object.defineProperty(IgxXButtonComponent.prototype, "iconCornerRadiusBottomLeft", {
|
|
1997
1997
|
get: function () {
|
|
1998
|
-
return this.i.
|
|
1998
|
+
return this.i.lf ? this.i.lf.b : NaN;
|
|
1999
1999
|
},
|
|
2000
2000
|
set: function (v) {
|
|
2001
2001
|
this.ensureIconCornerRadius();
|
|
2002
|
-
this.i.
|
|
2003
|
-
this.i.
|
|
2002
|
+
this.i.lf.b = +v;
|
|
2003
|
+
this.i.lf = this.i.lf;
|
|
2004
2004
|
},
|
|
2005
2005
|
enumerable: false,
|
|
2006
2006
|
configurable: true
|
|
2007
2007
|
});
|
|
2008
2008
|
Object.defineProperty(IgxXButtonComponent.prototype, "iconCornerRadiusTopLeft", {
|
|
2009
2009
|
get: function () {
|
|
2010
|
-
return this.i.
|
|
2010
|
+
return this.i.lf ? this.i.lf.d : NaN;
|
|
2011
2011
|
},
|
|
2012
2012
|
set: function (v) {
|
|
2013
2013
|
this.ensureIconCornerRadius();
|
|
2014
|
-
this.i.
|
|
2015
|
-
this.i.
|
|
2014
|
+
this.i.lf.d = +v;
|
|
2015
|
+
this.i.lf = this.i.lf;
|
|
2016
2016
|
},
|
|
2017
2017
|
enumerable: false,
|
|
2018
2018
|
configurable: true
|
|
2019
2019
|
});
|
|
2020
2020
|
Object.defineProperty(IgxXButtonComponent.prototype, "iconCornerRadiusTopRight", {
|
|
2021
2021
|
get: function () {
|
|
2022
|
-
return this.i.
|
|
2022
|
+
return this.i.lf ? this.i.lf.e : NaN;
|
|
2023
2023
|
},
|
|
2024
2024
|
set: function (v) {
|
|
2025
2025
|
this.ensureIconCornerRadius();
|
|
2026
|
-
this.i.
|
|
2027
|
-
this.i.
|
|
2026
|
+
this.i.lf.e = +v;
|
|
2027
|
+
this.i.lf = this.i.lf;
|
|
2028
2028
|
},
|
|
2029
2029
|
enumerable: false,
|
|
2030
2030
|
configurable: true
|
|
2031
2031
|
});
|
|
2032
2032
|
IgxXButtonComponent.prototype.ensureIconCornerRadius = function () {
|
|
2033
|
-
if (this.i.
|
|
2033
|
+
if (this.i.lf) {
|
|
2034
2034
|
return;
|
|
2035
2035
|
}
|
|
2036
|
-
this.i.
|
|
2036
|
+
this.i.lf = new CornerRadius(2);
|
|
2037
2037
|
};
|
|
2038
2038
|
Object.defineProperty(IgxXButtonComponent.prototype, "iconRippleColor", {
|
|
2039
2039
|
/**
|
|
2040
2040
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
2041
2041
|
*/
|
|
2042
2042
|
get: function () {
|
|
2043
|
-
return brushToString(this.i.
|
|
2043
|
+
return brushToString(this.i.qw);
|
|
2044
2044
|
},
|
|
2045
2045
|
set: function (v) {
|
|
2046
|
-
this.i.
|
|
2046
|
+
this.i.qw = stringToBrush(v);
|
|
2047
2047
|
},
|
|
2048
2048
|
enumerable: false,
|
|
2049
2049
|
configurable: true
|
|
@@ -2053,10 +2053,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2053
2053
|
* Gets or sets the color to use for the text of the button when type is icon.
|
|
2054
2054
|
*/
|
|
2055
2055
|
get: function () {
|
|
2056
|
-
return brushToString(this.i.
|
|
2056
|
+
return brushToString(this.i.qx);
|
|
2057
2057
|
},
|
|
2058
2058
|
set: function (v) {
|
|
2059
|
-
this.i.
|
|
2059
|
+
this.i.qx = stringToBrush(v);
|
|
2060
2060
|
},
|
|
2061
2061
|
enumerable: false,
|
|
2062
2062
|
configurable: true
|
|
@@ -2066,10 +2066,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2066
2066
|
* Gets or sets the color to use for the hovered text of the button when type is icon.
|
|
2067
2067
|
*/
|
|
2068
2068
|
get: function () {
|
|
2069
|
-
return brushToString(this.i.
|
|
2069
|
+
return brushToString(this.i.qv);
|
|
2070
2070
|
},
|
|
2071
2071
|
set: function (v) {
|
|
2072
|
-
this.i.
|
|
2072
|
+
this.i.qv = stringToBrush(v);
|
|
2073
2073
|
},
|
|
2074
2074
|
enumerable: false,
|
|
2075
2075
|
configurable: true
|
|
@@ -2079,10 +2079,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2079
2079
|
* Gets or sets the color to use for the backround the button when it is focused and icon.
|
|
2080
2080
|
*/
|
|
2081
2081
|
get: function () {
|
|
2082
|
-
return brushToString(this.i.
|
|
2082
|
+
return brushToString(this.i.qs);
|
|
2083
2083
|
},
|
|
2084
2084
|
set: function (v) {
|
|
2085
|
-
this.i.
|
|
2085
|
+
this.i.qs = stringToBrush(v);
|
|
2086
2086
|
},
|
|
2087
2087
|
enumerable: false,
|
|
2088
2088
|
configurable: true
|
|
@@ -2092,10 +2092,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2092
2092
|
* Gets or sets the color to use for the text the button when it is focused and icon.
|
|
2093
2093
|
*/
|
|
2094
2094
|
get: function () {
|
|
2095
|
-
return brushToString(this.i.
|
|
2095
|
+
return brushToString(this.i.qt);
|
|
2096
2096
|
},
|
|
2097
2097
|
set: function (v) {
|
|
2098
|
-
this.i.
|
|
2098
|
+
this.i.qt = stringToBrush(v);
|
|
2099
2099
|
},
|
|
2100
2100
|
enumerable: false,
|
|
2101
2101
|
configurable: true
|
|
@@ -2105,10 +2105,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2105
2105
|
* Gets or sets the id to use for the internal native checkbox.
|
|
2106
2106
|
*/
|
|
2107
2107
|
get: function () {
|
|
2108
|
-
return this.i.
|
|
2108
|
+
return this.i.hz;
|
|
2109
2109
|
},
|
|
2110
2110
|
set: function (v) {
|
|
2111
|
-
this.i.
|
|
2111
|
+
this.i.hz = v;
|
|
2112
2112
|
},
|
|
2113
2113
|
enumerable: false,
|
|
2114
2114
|
configurable: true
|
|
@@ -2118,10 +2118,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2118
2118
|
* Gets or sets the id to use for the checkbox.
|
|
2119
2119
|
*/
|
|
2120
2120
|
get: function () {
|
|
2121
|
-
return this.i.
|
|
2121
|
+
return this.i.hx;
|
|
2122
2122
|
},
|
|
2123
2123
|
set: function (v) {
|
|
2124
|
-
this.i.
|
|
2124
|
+
this.i.hx = v;
|
|
2125
2125
|
},
|
|
2126
2126
|
enumerable: false,
|
|
2127
2127
|
configurable: true
|
|
@@ -2131,10 +2131,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2131
2131
|
* Gets or sets the id to use for the checkbox.
|
|
2132
2132
|
*/
|
|
2133
2133
|
get: function () {
|
|
2134
|
-
return this.i.
|
|
2134
|
+
return this.i.f1;
|
|
2135
2135
|
},
|
|
2136
2136
|
set: function (v) {
|
|
2137
|
-
this.i.
|
|
2137
|
+
this.i.f1 = v;
|
|
2138
2138
|
},
|
|
2139
2139
|
enumerable: false,
|
|
2140
2140
|
configurable: true
|
|
@@ -2144,10 +2144,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2144
2144
|
* Gets or sets the id to use for the checkbox.
|
|
2145
2145
|
*/
|
|
2146
2146
|
get: function () {
|
|
2147
|
-
return this.i.
|
|
2147
|
+
return this.i.g5;
|
|
2148
2148
|
},
|
|
2149
2149
|
set: function (v) {
|
|
2150
|
-
this.i.
|
|
2150
|
+
this.i.g5 = v;
|
|
2151
2151
|
},
|
|
2152
2152
|
enumerable: false,
|
|
2153
2153
|
configurable: true
|
|
@@ -2157,10 +2157,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2157
2157
|
* Gets or sets the flex-grow setting for the button.
|
|
2158
2158
|
*/
|
|
2159
2159
|
get: function () {
|
|
2160
|
-
return this.i.
|
|
2160
|
+
return this.i.g7;
|
|
2161
2161
|
},
|
|
2162
2162
|
set: function (v) {
|
|
2163
|
-
this.i.
|
|
2163
|
+
this.i.g7 = v;
|
|
2164
2164
|
},
|
|
2165
2165
|
enumerable: false,
|
|
2166
2166
|
configurable: true
|
|
@@ -2170,10 +2170,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2170
2170
|
* Gets or sets the id to use for the checkbox.
|
|
2171
2171
|
*/
|
|
2172
2172
|
get: function () {
|
|
2173
|
-
return this.i.
|
|
2173
|
+
return this.i.fc;
|
|
2174
2174
|
},
|
|
2175
2175
|
set: function (v) {
|
|
2176
|
-
this.i.
|
|
2176
|
+
this.i.fc = v;
|
|
2177
2177
|
},
|
|
2178
2178
|
enumerable: false,
|
|
2179
2179
|
configurable: true
|
|
@@ -2183,10 +2183,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2183
2183
|
* Gets or sets value to use for the checkbox.
|
|
2184
2184
|
*/
|
|
2185
2185
|
get: function () {
|
|
2186
|
-
return this.i.
|
|
2186
|
+
return this.i.ef;
|
|
2187
2187
|
},
|
|
2188
2188
|
set: function (v) {
|
|
2189
|
-
this.i.
|
|
2189
|
+
this.i.ef = v;
|
|
2190
2190
|
},
|
|
2191
2191
|
enumerable: false,
|
|
2192
2192
|
configurable: true
|
|
@@ -2196,10 +2196,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2196
2196
|
* Gets or sets name to use for the button.
|
|
2197
2197
|
*/
|
|
2198
2198
|
get: function () {
|
|
2199
|
-
return this.i.
|
|
2199
|
+
return this.i.h7;
|
|
2200
2200
|
},
|
|
2201
2201
|
set: function (v) {
|
|
2202
|
-
this.i.
|
|
2202
|
+
this.i.h7 = v;
|
|
2203
2203
|
},
|
|
2204
2204
|
enumerable: false,
|
|
2205
2205
|
configurable: true
|
|
@@ -2209,10 +2209,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2209
2209
|
* Gets or sets TabIndex to use for the checkbox.
|
|
2210
2210
|
*/
|
|
2211
2211
|
get: function () {
|
|
2212
|
-
return this.i.
|
|
2212
|
+
return this.i.d8;
|
|
2213
2213
|
},
|
|
2214
2214
|
set: function (v) {
|
|
2215
|
-
this.i.
|
|
2215
|
+
this.i.d8 = +v;
|
|
2216
2216
|
},
|
|
2217
2217
|
enumerable: false,
|
|
2218
2218
|
configurable: true
|
|
@@ -2222,10 +2222,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2222
2222
|
* Gets or sets the value of the aria-label attribute.
|
|
2223
2223
|
*/
|
|
2224
2224
|
get: function () {
|
|
2225
|
-
return this.i.
|
|
2225
|
+
return this.i.fe;
|
|
2226
2226
|
},
|
|
2227
2227
|
set: function (v) {
|
|
2228
|
-
this.i.
|
|
2228
|
+
this.i.fe = v;
|
|
2229
2229
|
},
|
|
2230
2230
|
enumerable: false,
|
|
2231
2231
|
configurable: true
|
|
@@ -2236,10 +2236,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2236
2236
|
* will use an intrinsic size.
|
|
2237
2237
|
*/
|
|
2238
2238
|
get: function () {
|
|
2239
|
-
return this.i.
|
|
2239
|
+
return this.i.az;
|
|
2240
2240
|
},
|
|
2241
2241
|
set: function (v) {
|
|
2242
|
-
this.i.
|
|
2242
|
+
this.i.az = ensureBool(v);
|
|
2243
2243
|
},
|
|
2244
2244
|
enumerable: false,
|
|
2245
2245
|
configurable: true
|
|
@@ -2262,10 +2262,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2262
2262
|
* Gets or sets if the button show use styling to show focus.
|
|
2263
2263
|
*/
|
|
2264
2264
|
get: function () {
|
|
2265
|
-
return this.i.
|
|
2265
|
+
return this.i.a3;
|
|
2266
2266
|
},
|
|
2267
2267
|
set: function (v) {
|
|
2268
|
-
this.i.
|
|
2268
|
+
this.i.a3 = ensureBool(v);
|
|
2269
2269
|
},
|
|
2270
2270
|
enumerable: false,
|
|
2271
2271
|
configurable: true
|
|
@@ -2275,10 +2275,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2275
2275
|
* Gets or sets whether to disable the ripple effect for the button.
|
|
2276
2276
|
*/
|
|
2277
2277
|
get: function () {
|
|
2278
|
-
return this.i.
|
|
2278
|
+
return this.i.ax;
|
|
2279
2279
|
},
|
|
2280
2280
|
set: function (v) {
|
|
2281
|
-
this.i.
|
|
2281
|
+
this.i.ax = ensureBool(v);
|
|
2282
2282
|
},
|
|
2283
2283
|
enumerable: false,
|
|
2284
2284
|
configurable: true
|
|
@@ -2288,10 +2288,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2288
2288
|
* Gets whether to actually disable the ripple effect for the button.
|
|
2289
2289
|
*/
|
|
2290
2290
|
get: function () {
|
|
2291
|
-
return this.i.
|
|
2291
|
+
return this.i.at;
|
|
2292
2292
|
},
|
|
2293
2293
|
set: function (v) {
|
|
2294
|
-
this.i.
|
|
2294
|
+
this.i.at = ensureBool(v);
|
|
2295
2295
|
},
|
|
2296
2296
|
enumerable: false,
|
|
2297
2297
|
configurable: true
|
|
@@ -2301,10 +2301,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2301
2301
|
* Gets or sets whether the hover effect is disabled.
|
|
2302
2302
|
*/
|
|
2303
2303
|
get: function () {
|
|
2304
|
-
return this.i.
|
|
2304
|
+
return this.i.av;
|
|
2305
2305
|
},
|
|
2306
2306
|
set: function (v) {
|
|
2307
|
-
this.i.
|
|
2307
|
+
this.i.av = ensureBool(v);
|
|
2308
2308
|
},
|
|
2309
2309
|
enumerable: false,
|
|
2310
2310
|
configurable: true
|
|
@@ -2314,10 +2314,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2314
2314
|
* Gets or sets whether the checkbox is checked.
|
|
2315
2315
|
*/
|
|
2316
2316
|
get: function () {
|
|
2317
|
-
return this.i.
|
|
2317
|
+
return this.i.a4;
|
|
2318
2318
|
},
|
|
2319
2319
|
set: function (v) {
|
|
2320
|
-
this.i.
|
|
2320
|
+
this.i.a4 = ensureBool(v);
|
|
2321
2321
|
},
|
|
2322
2322
|
enumerable: false,
|
|
2323
2323
|
configurable: true
|
|
@@ -2340,10 +2340,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2340
2340
|
* Gets or sets whether the checkbox transitions are disabled.
|
|
2341
2341
|
*/
|
|
2342
2342
|
get: function () {
|
|
2343
|
-
return this.i.
|
|
2343
|
+
return this.i.ay;
|
|
2344
2344
|
},
|
|
2345
2345
|
set: function (v) {
|
|
2346
|
-
this.i.
|
|
2346
|
+
this.i.ay = ensureBool(v);
|
|
2347
2347
|
},
|
|
2348
2348
|
enumerable: false,
|
|
2349
2349
|
configurable: true
|
|
@@ -2353,10 +2353,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2353
2353
|
* Gets or sets whether the cursor will change into a pointer when the button is hovered.
|
|
2354
2354
|
*/
|
|
2355
2355
|
get: function () {
|
|
2356
|
-
return this.i.
|
|
2356
|
+
return this.i.aw;
|
|
2357
2357
|
},
|
|
2358
2358
|
set: function (v) {
|
|
2359
|
-
this.i.
|
|
2359
|
+
this.i.aw = ensureBool(v);
|
|
2360
2360
|
},
|
|
2361
2361
|
enumerable: false,
|
|
2362
2362
|
configurable: true
|
|
@@ -2366,10 +2366,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2366
2366
|
* Gets or sets the left padding for the button content.
|
|
2367
2367
|
*/
|
|
2368
2368
|
get: function () {
|
|
2369
|
-
return this.i.
|
|
2369
|
+
return this.i.bn;
|
|
2370
2370
|
},
|
|
2371
2371
|
set: function (v) {
|
|
2372
|
-
this.i.
|
|
2372
|
+
this.i.bn = +v;
|
|
2373
2373
|
},
|
|
2374
2374
|
enumerable: false,
|
|
2375
2375
|
configurable: true
|
|
@@ -2379,10 +2379,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2379
2379
|
* Gets or sets the top padding for the button content.
|
|
2380
2380
|
*/
|
|
2381
2381
|
get: function () {
|
|
2382
|
-
return this.i.
|
|
2382
|
+
return this.i.bp;
|
|
2383
2383
|
},
|
|
2384
2384
|
set: function (v) {
|
|
2385
|
-
this.i.
|
|
2385
|
+
this.i.bp = +v;
|
|
2386
2386
|
},
|
|
2387
2387
|
enumerable: false,
|
|
2388
2388
|
configurable: true
|
|
@@ -2392,10 +2392,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2392
2392
|
* Gets or sets the right padding for the button content.
|
|
2393
2393
|
*/
|
|
2394
2394
|
get: function () {
|
|
2395
|
-
return this.i.
|
|
2395
|
+
return this.i.bo;
|
|
2396
2396
|
},
|
|
2397
2397
|
set: function (v) {
|
|
2398
|
-
this.i.
|
|
2398
|
+
this.i.bo = +v;
|
|
2399
2399
|
},
|
|
2400
2400
|
enumerable: false,
|
|
2401
2401
|
configurable: true
|
|
@@ -2405,30 +2405,30 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2405
2405
|
* Gets or sets the bottom padding for the button content.
|
|
2406
2406
|
*/
|
|
2407
2407
|
get: function () {
|
|
2408
|
-
return this.i.
|
|
2408
|
+
return this.i.bm;
|
|
2409
2409
|
},
|
|
2410
2410
|
set: function (v) {
|
|
2411
|
-
this.i.
|
|
2411
|
+
this.i.bm = +v;
|
|
2412
2412
|
},
|
|
2413
2413
|
enumerable: false,
|
|
2414
2414
|
configurable: true
|
|
2415
2415
|
});
|
|
2416
2416
|
Object.defineProperty(IgxXButtonComponent.prototype, "horizontalContentAlignment", {
|
|
2417
2417
|
get: function () {
|
|
2418
|
-
return this.i.
|
|
2418
|
+
return this.i.lj;
|
|
2419
2419
|
},
|
|
2420
2420
|
set: function (v) {
|
|
2421
|
-
this.i.
|
|
2421
|
+
this.i.lj = ensureEnum(HorizontalAlignment_$type, v);
|
|
2422
2422
|
},
|
|
2423
2423
|
enumerable: false,
|
|
2424
2424
|
configurable: true
|
|
2425
2425
|
});
|
|
2426
2426
|
Object.defineProperty(IgxXButtonComponent.prototype, "verticalContentAlignment", {
|
|
2427
2427
|
get: function () {
|
|
2428
|
-
return this.i.
|
|
2428
|
+
return this.i.rn;
|
|
2429
2429
|
},
|
|
2430
2430
|
set: function (v) {
|
|
2431
|
-
this.i.
|
|
2431
|
+
this.i.rn = ensureEnum(VerticalAlignment_$type, v);
|
|
2432
2432
|
},
|
|
2433
2433
|
enumerable: false,
|
|
2434
2434
|
configurable: true
|
|
@@ -2438,10 +2438,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2438
2438
|
* Gets or sets if clicking on the button is allowed to tunnel down to button content.
|
|
2439
2439
|
*/
|
|
2440
2440
|
get: function () {
|
|
2441
|
-
return this.i.
|
|
2441
|
+
return this.i.au;
|
|
2442
2442
|
},
|
|
2443
2443
|
set: function (v) {
|
|
2444
|
-
this.i.
|
|
2444
|
+
this.i.au = ensureBool(v);
|
|
2445
2445
|
},
|
|
2446
2446
|
enumerable: false,
|
|
2447
2447
|
configurable: true
|
|
@@ -2451,10 +2451,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2451
2451
|
* Gets or sets whether mouse events on the button will bubble up to parent elements.
|
|
2452
2452
|
*/
|
|
2453
2453
|
get: function () {
|
|
2454
|
-
return this.i.
|
|
2454
|
+
return this.i.a6;
|
|
2455
2455
|
},
|
|
2456
2456
|
set: function (v) {
|
|
2457
|
-
this.i.
|
|
2457
|
+
this.i.a6 = ensureBool(v);
|
|
2458
2458
|
},
|
|
2459
2459
|
enumerable: false,
|
|
2460
2460
|
configurable: true
|
|
@@ -2535,7 +2535,7 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2535
2535
|
|
|
2536
2536
|
*/
|
|
2537
2537
|
IgxXButtonComponent.prototype.exportVisualModel = function () {
|
|
2538
|
-
var iv = this.i.
|
|
2538
|
+
var iv = this.i.ec();
|
|
2539
2539
|
return (iv);
|
|
2540
2540
|
};
|
|
2541
2541
|
/**
|
|
@@ -2543,7 +2543,7 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2543
2543
|
|
|
2544
2544
|
*/
|
|
2545
2545
|
IgxXButtonComponent.prototype.exportSerializedVisualModel = function () {
|
|
2546
|
-
var iv = this.i.
|
|
2546
|
+
var iv = this.i.f5();
|
|
2547
2547
|
return (iv);
|
|
2548
2548
|
};
|
|
2549
2549
|
Object.defineProperty(IgxXButtonComponent.prototype, "clicked", {
|