igniteui-angular-inputs 17.3.0 → 18.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-angular-inputs.umd.js +1017 -697
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonView_combined.js +22 -22
- package/esm2015/lib/CalendarView_combined.js +16 -14
- package/esm2015/lib/CheckboxView_combined.js +73 -67
- package/esm2015/lib/DatePickerView_combined.js +14 -14
- package/esm2015/lib/IconView_combined.js +663 -467
- package/esm2015/lib/IconVisualModelExport.js +13 -11
- package/esm2015/lib/InputGroupView_combined.js +29 -29
- package/esm2015/lib/NativeUIXInputsFactory.js +1 -1
- package/esm2015/lib/XButtonBridge.js +7 -0
- package/esm2015/lib/XIconBridge.js +58 -31
- package/esm2015/lib/XIconButtonBridge.js +1 -1
- package/esm2015/lib/igx-x-icon-component.js +90 -64
- package/esm5/lib/ButtonView_combined.js +22 -22
- package/esm5/lib/CalendarView_combined.js +16 -14
- package/esm5/lib/CheckboxView_combined.js +77 -67
- package/esm5/lib/DatePickerView_combined.js +14 -14
- package/esm5/lib/IconView_combined.js +685 -444
- package/esm5/lib/IconVisualModelExport.js +13 -11
- package/esm5/lib/InputGroupView_combined.js +29 -29
- package/esm5/lib/NativeUIXInputsFactory.js +1 -1
- package/esm5/lib/XButtonBridge.js +7 -0
- package/esm5/lib/XIconBridge.js +58 -31
- package/esm5/lib/XIconButtonBridge.js +1 -1
- package/esm5/lib/igx-x-icon-component.js +98 -64
- package/fesm2015/igniteui-angular-inputs.js +983 -720
- package/fesm5/igniteui-angular-inputs.js +1018 -698
- package/lib/CheckboxView_combined.d.ts +17 -16
- package/lib/IconView_combined.d.ts +150 -134
- package/lib/IconVisualModelExport.d.ts +4 -3
- package/lib/XIconBridge.d.ts +3 -0
- package/lib/igx-x-icon-component.d.ts +12 -1
- package/package.json +5 -5
|
@@ -75,46 +75,46 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
75
75
|
* Gets or sets the base built in theme to use for the button.
|
|
76
76
|
*/
|
|
77
77
|
get baseTheme() {
|
|
78
|
-
return this.i.
|
|
78
|
+
return this.i.k;
|
|
79
79
|
}
|
|
80
80
|
set baseTheme(v) {
|
|
81
|
-
this.i.
|
|
81
|
+
this.i.k = ensureEnum(BaseControlTheme_$type, v);
|
|
82
82
|
}
|
|
83
83
|
/**
|
|
84
84
|
* Gets the fill color currently used by the icon.
|
|
85
85
|
*/
|
|
86
86
|
get actualFill() {
|
|
87
|
-
return brushToString(this.i.
|
|
87
|
+
return brushToString(this.i.cw);
|
|
88
88
|
}
|
|
89
89
|
set actualFill(v) {
|
|
90
|
-
this.i.
|
|
90
|
+
this.i.cw = stringToBrush(v);
|
|
91
91
|
}
|
|
92
92
|
/**
|
|
93
93
|
* Gets the stroke color currently used by the icon.
|
|
94
94
|
*/
|
|
95
95
|
get actualStroke() {
|
|
96
|
-
return brushToString(this.i.
|
|
96
|
+
return brushToString(this.i.cx);
|
|
97
97
|
}
|
|
98
98
|
set actualStroke(v) {
|
|
99
|
-
this.i.
|
|
99
|
+
this.i.cx = stringToBrush(v);
|
|
100
100
|
}
|
|
101
101
|
/**
|
|
102
102
|
* Gets the text color currently used by the icon.
|
|
103
103
|
*/
|
|
104
104
|
get actualTextColor() {
|
|
105
|
-
return brushToString(this.i.
|
|
105
|
+
return brushToString(this.i.cy);
|
|
106
106
|
}
|
|
107
107
|
set actualTextColor(v) {
|
|
108
|
-
this.i.
|
|
108
|
+
this.i.cy = stringToBrush(v);
|
|
109
109
|
}
|
|
110
110
|
/**
|
|
111
111
|
* Gets the stroke width currently used by the icon.
|
|
112
112
|
*/
|
|
113
113
|
get actualStrokeWidth() {
|
|
114
|
-
return this.i.
|
|
114
|
+
return this.i.af;
|
|
115
115
|
}
|
|
116
116
|
set actualStrokeWidth(v) {
|
|
117
|
-
this.i.
|
|
117
|
+
this.i.af = +v;
|
|
118
118
|
}
|
|
119
119
|
/**
|
|
120
120
|
* Gets or sets the fill color to use for the icon.
|
|
@@ -129,64 +129,64 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
129
129
|
* Gets or sets the stroke color to use for the icon.
|
|
130
130
|
*/
|
|
131
131
|
get stroke() {
|
|
132
|
-
return brushToString(this.i.
|
|
132
|
+
return brushToString(this.i.dc);
|
|
133
133
|
}
|
|
134
134
|
set stroke(v) {
|
|
135
|
-
this.i.
|
|
135
|
+
this.i.dc = stringToBrush(v);
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
138
|
* Gets or sets the stroke thickness to use for the icon.
|
|
139
139
|
*/
|
|
140
140
|
get strokeWidth() {
|
|
141
|
-
return this.i.
|
|
141
|
+
return this.i.al;
|
|
142
142
|
}
|
|
143
143
|
set strokeWidth(v) {
|
|
144
|
-
this.i.
|
|
144
|
+
this.i.al = +v;
|
|
145
145
|
}
|
|
146
146
|
/**
|
|
147
147
|
* Gets or sets the text color to use for the icon.
|
|
148
148
|
*/
|
|
149
149
|
get textColor() {
|
|
150
|
-
return brushToString(this.i.
|
|
150
|
+
return brushToString(this.i.dd);
|
|
151
151
|
}
|
|
152
152
|
set textColor(v) {
|
|
153
|
-
this.i.
|
|
153
|
+
this.i.dd = stringToBrush(v);
|
|
154
154
|
}
|
|
155
155
|
/**
|
|
156
156
|
* Gets or sets the fill color to use when the icon is hovered.
|
|
157
157
|
*/
|
|
158
158
|
get hoverFill() {
|
|
159
|
-
return brushToString(this.i.
|
|
159
|
+
return brushToString(this.i.c5);
|
|
160
160
|
}
|
|
161
161
|
set hoverFill(v) {
|
|
162
|
-
this.i.
|
|
162
|
+
this.i.c5 = stringToBrush(v);
|
|
163
163
|
}
|
|
164
164
|
/**
|
|
165
165
|
* Gets or sets the stroke color to use when the icon is hovered.
|
|
166
166
|
*/
|
|
167
167
|
get hoverStroke() {
|
|
168
|
-
return brushToString(this.i.
|
|
168
|
+
return brushToString(this.i.c6);
|
|
169
169
|
}
|
|
170
170
|
set hoverStroke(v) {
|
|
171
|
-
this.i.
|
|
171
|
+
this.i.c6 = stringToBrush(v);
|
|
172
172
|
}
|
|
173
173
|
/**
|
|
174
174
|
* Gets or sets the stroke thickness to use when the icon is hovered.
|
|
175
175
|
*/
|
|
176
176
|
get hoverStrokeThickness() {
|
|
177
|
-
return this.i.
|
|
177
|
+
return this.i.aj;
|
|
178
178
|
}
|
|
179
179
|
set hoverStrokeThickness(v) {
|
|
180
|
-
this.i.
|
|
180
|
+
this.i.aj = +v;
|
|
181
181
|
}
|
|
182
182
|
/**
|
|
183
183
|
* Gets or sets the text color to use when the icon is hovered.
|
|
184
184
|
*/
|
|
185
185
|
get hoverTextColor() {
|
|
186
|
-
return brushToString(this.i.
|
|
186
|
+
return brushToString(this.i.c7);
|
|
187
187
|
}
|
|
188
188
|
set hoverTextColor(v) {
|
|
189
|
-
this.i.
|
|
189
|
+
this.i.c7 = stringToBrush(v);
|
|
190
190
|
}
|
|
191
191
|
/**
|
|
192
192
|
* Gets or sets a collection of fill colors to use in the icon.
|
|
@@ -195,10 +195,10 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
195
195
|
* class where # is a number from 0 to count - 1.
|
|
196
196
|
*/
|
|
197
197
|
get fillColors() {
|
|
198
|
-
return fromBrushCollection(this.i.
|
|
198
|
+
return fromBrushCollection(this.i.e);
|
|
199
199
|
}
|
|
200
200
|
set fillColors(v) {
|
|
201
|
-
this.i.
|
|
201
|
+
this.i.e = toBrushCollection(v);
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
204
|
* Gets or sets a collection of stroke colors to use in the icon.
|
|
@@ -207,10 +207,10 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
207
207
|
* class where # is a number from 0 to count - 1.
|
|
208
208
|
*/
|
|
209
209
|
get strokeColors() {
|
|
210
|
-
return fromBrushCollection(this.i.
|
|
210
|
+
return fromBrushCollection(this.i.f);
|
|
211
211
|
}
|
|
212
212
|
set strokeColors(v) {
|
|
213
|
-
this.i.
|
|
213
|
+
this.i.f = toBrushCollection(v);
|
|
214
214
|
}
|
|
215
215
|
/**
|
|
216
216
|
* Gets or sets a primary fill color for the icon.
|
|
@@ -220,10 +220,10 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
220
220
|
* class.
|
|
221
221
|
*/
|
|
222
222
|
get primaryFillColor() {
|
|
223
|
-
return brushToString(this.i.
|
|
223
|
+
return brushToString(this.i.c8);
|
|
224
224
|
}
|
|
225
225
|
set primaryFillColor(v) {
|
|
226
|
-
this.i.
|
|
226
|
+
this.i.c8 = stringToBrush(v);
|
|
227
227
|
}
|
|
228
228
|
/**
|
|
229
229
|
* Gets or sets a primary stroke color for the icon.
|
|
@@ -233,10 +233,10 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
233
233
|
* class.
|
|
234
234
|
*/
|
|
235
235
|
get primaryStrokeColor() {
|
|
236
|
-
return brushToString(this.i.
|
|
236
|
+
return brushToString(this.i.c9);
|
|
237
237
|
}
|
|
238
238
|
set primaryStrokeColor(v) {
|
|
239
|
-
this.i.
|
|
239
|
+
this.i.c9 = stringToBrush(v);
|
|
240
240
|
}
|
|
241
241
|
/**
|
|
242
242
|
* Gets or sets a secondary fill color for the icon.
|
|
@@ -246,10 +246,10 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
246
246
|
* class.
|
|
247
247
|
*/
|
|
248
248
|
get secondaryFillColor() {
|
|
249
|
-
return brushToString(this.i.
|
|
249
|
+
return brushToString(this.i.da);
|
|
250
250
|
}
|
|
251
251
|
set secondaryFillColor(v) {
|
|
252
|
-
this.i.
|
|
252
|
+
this.i.da = stringToBrush(v);
|
|
253
253
|
}
|
|
254
254
|
/**
|
|
255
255
|
* Gets or sets a secondary stroke color for the icon.
|
|
@@ -259,10 +259,19 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
259
259
|
* class.
|
|
260
260
|
*/
|
|
261
261
|
get secondaryStrokeColor() {
|
|
262
|
-
return brushToString(this.i.
|
|
262
|
+
return brushToString(this.i.db);
|
|
263
263
|
}
|
|
264
264
|
set secondaryStrokeColor(v) {
|
|
265
|
-
this.i.
|
|
265
|
+
this.i.db = stringToBrush(v);
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* Gets or sets data url for the icon to use.
|
|
269
|
+
*/
|
|
270
|
+
get dataURL() {
|
|
271
|
+
return this.i.a7;
|
|
272
|
+
}
|
|
273
|
+
set dataURL(v) {
|
|
274
|
+
this.i.a7 = v;
|
|
266
275
|
}
|
|
267
276
|
/**
|
|
268
277
|
* Gets or sets path data for the icon to use.
|
|
@@ -282,55 +291,68 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
282
291
|
set svg(v) {
|
|
283
292
|
this.i.svg = v;
|
|
284
293
|
}
|
|
294
|
+
/**
|
|
295
|
+
* Gets or sets an array of path data for the icon to use.
|
|
296
|
+
*/
|
|
297
|
+
get sVGPaths() {
|
|
298
|
+
return this.i.b;
|
|
299
|
+
}
|
|
300
|
+
set sVGPaths(v) {
|
|
301
|
+
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
302
|
+
const re = /\s*(?:,|\s|$)\s*/gm;
|
|
303
|
+
v = v.split(re);
|
|
304
|
+
}
|
|
305
|
+
this.i.b = v;
|
|
306
|
+
}
|
|
285
307
|
/**
|
|
286
308
|
* Gets or sets the use for the button.
|
|
287
309
|
*/
|
|
288
310
|
get textStyle() {
|
|
289
|
-
if (this.i.
|
|
311
|
+
if (this.i.m == null) {
|
|
290
312
|
return null;
|
|
291
313
|
}
|
|
292
|
-
return this.i.
|
|
314
|
+
return this.i.m.fontString;
|
|
293
315
|
}
|
|
294
316
|
set textStyle(v) {
|
|
295
317
|
let fi = new FontInfo();
|
|
296
318
|
fi.fontString = v;
|
|
297
|
-
this.i.
|
|
319
|
+
this.i.m = fi;
|
|
298
320
|
}
|
|
299
321
|
/**
|
|
300
322
|
* Gets or sets the id to use for the checkbox.
|
|
301
323
|
*/
|
|
302
324
|
get id() {
|
|
303
|
-
return this.i.
|
|
325
|
+
return this.i.bh;
|
|
304
326
|
}
|
|
305
327
|
set id(v) {
|
|
306
|
-
this.i.
|
|
328
|
+
this.i.bh = v;
|
|
307
329
|
}
|
|
308
330
|
/**
|
|
309
331
|
* Gets or sets TabIndex to use for the checkbox.
|
|
310
332
|
*/
|
|
311
333
|
get tabIndex() {
|
|
312
|
-
return this.i.
|
|
334
|
+
return this.i.as;
|
|
313
335
|
}
|
|
314
336
|
set tabIndex(v) {
|
|
315
|
-
this.i.
|
|
337
|
+
this.i.as = +v;
|
|
316
338
|
}
|
|
317
339
|
/**
|
|
318
340
|
* Gets or sets the value of the aria-label attribute.
|
|
319
341
|
*/
|
|
320
342
|
get ariaLabel() {
|
|
321
|
-
return this.i.
|
|
343
|
+
return this.i.a4;
|
|
322
344
|
}
|
|
323
345
|
set ariaLabel(v) {
|
|
324
|
-
this.i.
|
|
346
|
+
this.i.a4 = v;
|
|
325
347
|
}
|
|
326
348
|
/**
|
|
327
349
|
* Gets or sets whether the icon is hovered.
|
|
328
350
|
*/
|
|
329
351
|
get isHover() {
|
|
330
|
-
return this.i.
|
|
352
|
+
return this.i.t;
|
|
331
353
|
}
|
|
332
354
|
set isHover(v) {
|
|
333
|
-
this.i.
|
|
355
|
+
this.i.t = ensureBool(v);
|
|
334
356
|
}
|
|
335
357
|
/**
|
|
336
358
|
* Gets or sets whether the checkbox is disabled.
|
|
@@ -342,64 +364,64 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
342
364
|
this.i.disabled = ensureBool(v);
|
|
343
365
|
}
|
|
344
366
|
get opacity() {
|
|
345
|
-
return this.i.
|
|
367
|
+
return this.i.ak;
|
|
346
368
|
}
|
|
347
369
|
set opacity(v) {
|
|
348
|
-
this.i.
|
|
370
|
+
this.i.ak = +v;
|
|
349
371
|
}
|
|
350
372
|
/**
|
|
351
373
|
* Gets or sets the viewbox left for the svg icon.
|
|
352
374
|
*/
|
|
353
375
|
get viewBoxLeft() {
|
|
354
|
-
return this.i.
|
|
376
|
+
return this.i.an;
|
|
355
377
|
}
|
|
356
378
|
set viewBoxLeft(v) {
|
|
357
|
-
this.i.
|
|
379
|
+
this.i.an = +v;
|
|
358
380
|
}
|
|
359
381
|
/**
|
|
360
382
|
* Gets or sets the viewbox top for the svg icon.
|
|
361
383
|
*/
|
|
362
384
|
get viewBoxTop() {
|
|
363
|
-
return this.i.
|
|
385
|
+
return this.i.ao;
|
|
364
386
|
}
|
|
365
387
|
set viewBoxTop(v) {
|
|
366
|
-
this.i.
|
|
388
|
+
this.i.ao = +v;
|
|
367
389
|
}
|
|
368
390
|
/**
|
|
369
391
|
* Gets or sets the viewbox width for the svg icon.
|
|
370
392
|
*/
|
|
371
393
|
get viewBoxWidth() {
|
|
372
|
-
return this.i.
|
|
394
|
+
return this.i.ap;
|
|
373
395
|
}
|
|
374
396
|
set viewBoxWidth(v) {
|
|
375
|
-
this.i.
|
|
397
|
+
this.i.ap = +v;
|
|
376
398
|
}
|
|
377
399
|
/**
|
|
378
400
|
* Gets or sets the viewbox height for the svg icon.
|
|
379
401
|
*/
|
|
380
402
|
get viewBoxHeight() {
|
|
381
|
-
return this.i.
|
|
403
|
+
return this.i.am;
|
|
382
404
|
}
|
|
383
405
|
set viewBoxHeight(v) {
|
|
384
|
-
this.i.
|
|
406
|
+
this.i.am = +v;
|
|
385
407
|
}
|
|
386
408
|
/**
|
|
387
409
|
* Gets or sets the width of the icon.
|
|
388
410
|
*/
|
|
389
411
|
get width() {
|
|
390
|
-
return this.i.
|
|
412
|
+
return this.i.aq;
|
|
391
413
|
}
|
|
392
414
|
set width(v) {
|
|
393
|
-
this.i.
|
|
415
|
+
this.i.aq = +v;
|
|
394
416
|
}
|
|
395
417
|
/**
|
|
396
418
|
* Gets or sets the height of the icon.
|
|
397
419
|
*/
|
|
398
420
|
get height() {
|
|
399
|
-
return this.i.
|
|
421
|
+
return this.i.ai;
|
|
400
422
|
}
|
|
401
423
|
set height(v) {
|
|
402
|
-
this.i.
|
|
424
|
+
this.i.ai = +v;
|
|
403
425
|
}
|
|
404
426
|
findByName(name) {
|
|
405
427
|
if (this.findEphemera) {
|
|
@@ -473,7 +495,7 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
473
495
|
|
|
474
496
|
*/
|
|
475
497
|
exportVisualModel() {
|
|
476
|
-
let iv = this.i.
|
|
498
|
+
let iv = this.i.au();
|
|
477
499
|
return (iv);
|
|
478
500
|
}
|
|
479
501
|
/**
|
|
@@ -481,7 +503,7 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
481
503
|
|
|
482
504
|
*/
|
|
483
505
|
exportSerializedVisualModel() {
|
|
484
|
-
let iv = this.i.
|
|
506
|
+
let iv = this.i.a9();
|
|
485
507
|
return (iv);
|
|
486
508
|
}
|
|
487
509
|
_runInZone(act) {
|
|
@@ -494,7 +516,7 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
|
|
|
494
516
|
}
|
|
495
517
|
}
|
|
496
518
|
IgxXIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxXIconComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Component });
|
|
497
|
-
IgxXIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxXIconComponent, selector: "igx-x-icon", inputs: { baseTheme: "baseTheme", actualFill: "actualFill", actualStroke: "actualStroke", actualTextColor: "actualTextColor", actualStrokeWidth: "actualStrokeWidth", fill: "fill", stroke: "stroke", strokeWidth: "strokeWidth", textColor: "textColor", hoverFill: "hoverFill", hoverStroke: "hoverStroke", hoverStrokeThickness: "hoverStrokeThickness", hoverTextColor: "hoverTextColor", fillColors: "fillColors", strokeColors: "strokeColors", primaryFillColor: "primaryFillColor", primaryStrokeColor: "primaryStrokeColor", secondaryFillColor: "secondaryFillColor", secondaryStrokeColor: "secondaryStrokeColor", svgPath: "svgPath", svg: "svg", textStyle: "textStyle", id: "id", tabIndex: ["tabindex", "tabIndex"], ariaLabel: ["aria-label", "ariaLabel"], isHover: "isHover", disabled: "disabled", opacity: "opacity", viewBoxLeft: "viewBoxLeft", viewBoxTop: "viewBoxTop", viewBoxWidth: "viewBoxWidth", viewBoxHeight: "viewBoxHeight", width: "width", height: "height" }, host: { properties: { "attr.id": "this.id" }, classAttribute: "ig-x-icon igx-x-icon" }, providers: [], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "_childTemplateRef", first: true, predicate: ["childContent"], descendants: true, read: TemplateRef }], ngImport: i0, template: `<ng-template #childContent><ng-content></ng-content></ng-template>
|
|
519
|
+
IgxXIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxXIconComponent, selector: "igx-x-icon", inputs: { baseTheme: "baseTheme", actualFill: "actualFill", actualStroke: "actualStroke", actualTextColor: "actualTextColor", actualStrokeWidth: "actualStrokeWidth", fill: "fill", stroke: "stroke", strokeWidth: "strokeWidth", textColor: "textColor", hoverFill: "hoverFill", hoverStroke: "hoverStroke", hoverStrokeThickness: "hoverStrokeThickness", hoverTextColor: "hoverTextColor", fillColors: "fillColors", strokeColors: "strokeColors", primaryFillColor: "primaryFillColor", primaryStrokeColor: "primaryStrokeColor", secondaryFillColor: "secondaryFillColor", secondaryStrokeColor: "secondaryStrokeColor", dataURL: "dataURL", svgPath: "svgPath", svg: "svg", sVGPaths: "sVGPaths", textStyle: "textStyle", id: "id", tabIndex: ["tabindex", "tabIndex"], ariaLabel: ["aria-label", "ariaLabel"], isHover: "isHover", disabled: "disabled", opacity: "opacity", viewBoxLeft: "viewBoxLeft", viewBoxTop: "viewBoxTop", viewBoxWidth: "viewBoxWidth", viewBoxHeight: "viewBoxHeight", width: "width", height: "height" }, host: { properties: { "attr.id": "this.id" }, classAttribute: "ig-x-icon igx-x-icon" }, providers: [], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "_childTemplateRef", first: true, predicate: ["childContent"], descendants: true, read: TemplateRef }], ngImport: i0, template: `<ng-template #childContent><ng-content></ng-content></ng-template>
|
|
498
520
|
<ng-container #dynamicContent></ng-container>`, isInline: true, styles: ["\n\t\t:host {\n\t\t\tdisplay: inline-block; \n vertical-align: middle; \n\t\t}\n\t"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
499
521
|
return IgxXIconComponent;
|
|
500
522
|
})();
|
|
@@ -558,10 +580,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
558
580
|
type: Input
|
|
559
581
|
}], secondaryStrokeColor: [{
|
|
560
582
|
type: Input
|
|
583
|
+
}], dataURL: [{
|
|
584
|
+
type: Input
|
|
561
585
|
}], svgPath: [{
|
|
562
586
|
type: Input
|
|
563
587
|
}], svg: [{
|
|
564
588
|
type: Input
|
|
589
|
+
}], sVGPaths: [{
|
|
590
|
+
type: Input
|
|
565
591
|
}], textStyle: [{
|
|
566
592
|
type: Input
|
|
567
593
|
}], id: [{
|
|
@@ -794,7 +794,6 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
794
794
|
case "DisabledTextColor":
|
|
795
795
|
case "DisabledElevation":
|
|
796
796
|
case "HoverBackgroundColor":
|
|
797
|
-
case "TextStyle":
|
|
798
797
|
case "FocusTextColor":
|
|
799
798
|
case "TextColor":
|
|
800
799
|
case "HoverTextColor":
|
|
@@ -900,6 +899,7 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
900
899
|
this.ap = this.disabled || this.at;
|
|
901
900
|
this.ki();
|
|
902
901
|
break;
|
|
902
|
+
case "TextStyle":
|
|
903
903
|
case "DisableHover":
|
|
904
904
|
this.kh();
|
|
905
905
|
break;
|
|
@@ -3590,30 +3590,30 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3590
3590
|
c.l = this.disabled;
|
|
3591
3591
|
if (this.aa != null) {
|
|
3592
3592
|
var g = this.aa;
|
|
3593
|
-
if (this.view != null && g.
|
|
3593
|
+
if (this.view != null && g.q == null) {
|
|
3594
3594
|
var h = this.view.k;
|
|
3595
3595
|
var i = FontUtil.getFontInfoFromString(h, g.fontString);
|
|
3596
|
-
g.p = i.p;
|
|
3597
|
-
g.e = i.e;
|
|
3598
3596
|
g.q = i.q;
|
|
3599
|
-
g.
|
|
3597
|
+
g.f = i.f;
|
|
3598
|
+
g.r = i.r;
|
|
3600
3599
|
g.t = i.t;
|
|
3601
3600
|
g.u = i.u;
|
|
3601
|
+
g.v = i.v;
|
|
3602
3602
|
}
|
|
3603
|
-
if (g.
|
|
3604
|
-
c.ac = g.
|
|
3603
|
+
if (g.q != null) {
|
|
3604
|
+
c.ac = g.q;
|
|
3605
3605
|
}
|
|
3606
|
-
if (!isNaN_(g.
|
|
3607
|
-
c.r = g.
|
|
3606
|
+
if (!isNaN_(g.f)) {
|
|
3607
|
+
c.r = g.f;
|
|
3608
3608
|
}
|
|
3609
|
-
if (g.
|
|
3610
|
-
c.ag = g.
|
|
3609
|
+
if (g.v != null) {
|
|
3610
|
+
c.ag = g.v;
|
|
3611
3611
|
}
|
|
3612
|
-
if (g.
|
|
3613
|
-
c.ae = g.
|
|
3612
|
+
if (g.t != null) {
|
|
3613
|
+
c.ae = g.t;
|
|
3614
3614
|
}
|
|
3615
|
-
if (g.
|
|
3616
|
-
c.ad = g.
|
|
3615
|
+
if (g.r != null) {
|
|
3616
|
+
c.ad = g.t;
|
|
3617
3617
|
}
|
|
3618
3618
|
}
|
|
3619
3619
|
return c;
|
|
@@ -3644,7 +3644,7 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3644
3644
|
$ret.addItem("HoverElevation", 4);
|
|
3645
3645
|
$ret.addItem("FocusElevation", 8);
|
|
3646
3646
|
$ret.addItem("BorderColor", BrushUtil.h(138, 0, 0, 0));
|
|
3647
|
-
$ret.addItem("RippleColor", BrushUtil.h(
|
|
3647
|
+
$ret.addItem("RippleColor", BrushUtil.h(138, 0, 0, 0));
|
|
3648
3648
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
3649
3649
|
$ret.addItem("BorderWidth", NaN);
|
|
3650
3650
|
$ret.addItem("BackgroundColor", BrushUtil.h(255, 228, 28, 119));
|
|
@@ -3665,11 +3665,11 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3665
3665
|
$ret.addItem("HoverElevation", 0);
|
|
3666
3666
|
$ret.addItem("FocusElevation", 0);
|
|
3667
3667
|
$ret.addItem("BorderColor", BrushUtil.h(138, 0, 0, 0));
|
|
3668
|
-
$ret.addItem("RippleColor",
|
|
3668
|
+
$ret.addItem("RippleColor", BrushUtil.h(138, 0, 0, 0));
|
|
3669
3669
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
3670
3670
|
$ret.addItem("BorderWidth", NaN);
|
|
3671
3671
|
$ret.addItem("BackgroundColor", BrushUtil.h(0, 0, 0, 0));
|
|
3672
|
-
$ret.addItem("TextColor", BrushUtil.h(255,
|
|
3672
|
+
$ret.addItem("TextColor", BrushUtil.h(255, 228, 28, 119));
|
|
3673
3673
|
$ret.addItem("HoverTextColor", BrushUtil.h(255, 228, 28, 119));
|
|
3674
3674
|
$ret.addItem("HoverBackgroundColor", BrushUtil.h(13, 228, 28, 119));
|
|
3675
3675
|
$ret.addItem("FocusBackgroundColor", BrushUtil.h(30, 228, 28, 119));
|
|
@@ -3685,8 +3685,8 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3685
3685
|
$ret.addItem("RestingElevation", 0);
|
|
3686
3686
|
$ret.addItem("HoverElevation", 0);
|
|
3687
3687
|
$ret.addItem("FocusElevation", 0);
|
|
3688
|
-
$ret.addItem("BorderColor", BrushUtil.h(
|
|
3689
|
-
$ret.addItem("RippleColor", BrushUtil.h(
|
|
3688
|
+
$ret.addItem("BorderColor", BrushUtil.h(255, 228, 28, 119));
|
|
3689
|
+
$ret.addItem("RippleColor", BrushUtil.h(138, 0, 0, 0));
|
|
3690
3690
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
3691
3691
|
$ret.addItem("BorderWidth", 1);
|
|
3692
3692
|
$ret.addItem("BackgroundColor", BrushUtil.h(0, 0, 0, 0));
|
|
@@ -3707,7 +3707,7 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3707
3707
|
$ret.addItem("HoverElevation", 0);
|
|
3708
3708
|
$ret.addItem("FocusElevation", 0);
|
|
3709
3709
|
$ret.addItem("BorderColor", BrushUtil.h(138, 0, 0, 0));
|
|
3710
|
-
$ret.addItem("RippleColor",
|
|
3710
|
+
$ret.addItem("RippleColor", BrushUtil.h(138, 0, 0, 0));
|
|
3711
3711
|
$ret.addItem("CornerRadius", new CornerRadius(0, 28));
|
|
3712
3712
|
$ret.addItem("BorderWidth", NaN);
|
|
3713
3713
|
$ret.addItem("BackgroundColor", BrushUtil.h(0, 0, 0, 0));
|
|
@@ -3728,7 +3728,7 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3728
3728
|
$ret.addItem("HoverElevation", 12);
|
|
3729
3729
|
$ret.addItem("FocusElevation", 12);
|
|
3730
3730
|
$ret.addItem("BorderColor", BrushUtil.h(138, 0, 0, 0));
|
|
3731
|
-
$ret.addItem("RippleColor", BrushUtil.h(
|
|
3731
|
+
$ret.addItem("RippleColor", BrushUtil.h(138, 0, 0, 0));
|
|
3732
3732
|
$ret.addItem("CornerRadius", new CornerRadius(0, 28));
|
|
3733
3733
|
$ret.addItem("BorderWidth", NaN);
|
|
3734
3734
|
$ret.addItem("BackgroundColor", BrushUtil.h(255, 228, 28, 119));
|
|
@@ -2410,7 +2410,9 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2410
2410
|
}
|
|
2411
2411
|
}
|
|
2412
2412
|
else {
|
|
2413
|
+
this.aj._inner[0].disabled = false;
|
|
2413
2414
|
this.aj._inner[2].disabled = false;
|
|
2415
|
+
this.aj._inner[3].disabled = false;
|
|
2414
2416
|
if (b == this.au.getFullYear()) {
|
|
2415
2417
|
if (c == dateGetMonth(this.au)) {
|
|
2416
2418
|
this.aj._inner[0].disabled = true;
|
|
@@ -2877,30 +2879,30 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2877
2879
|
}
|
|
2878
2880
|
if (this.v != null) {
|
|
2879
2881
|
var w = this.v;
|
|
2880
|
-
if (this.h != null && w.
|
|
2882
|
+
if (this.h != null && w.q == null) {
|
|
2881
2883
|
var x = this.h.m;
|
|
2882
2884
|
var y = FontUtil.getFontInfoFromString(x, w.fontString);
|
|
2883
|
-
w.p = y.p;
|
|
2884
|
-
w.e = y.e;
|
|
2885
2885
|
w.q = y.q;
|
|
2886
|
-
w.
|
|
2886
|
+
w.f = y.f;
|
|
2887
|
+
w.r = y.r;
|
|
2887
2888
|
w.t = y.t;
|
|
2888
2889
|
w.u = y.u;
|
|
2890
|
+
w.v = y.v;
|
|
2889
2891
|
}
|
|
2890
|
-
if (w.
|
|
2891
|
-
a.p = w.
|
|
2892
|
+
if (w.q != null) {
|
|
2893
|
+
a.p = w.q;
|
|
2892
2894
|
}
|
|
2893
|
-
if (!isNaN_(w.
|
|
2894
|
-
a.m = w.
|
|
2895
|
+
if (!isNaN_(w.f)) {
|
|
2896
|
+
a.m = w.f;
|
|
2895
2897
|
}
|
|
2896
|
-
if (w.
|
|
2897
|
-
a.t = w.
|
|
2898
|
+
if (w.v != null) {
|
|
2899
|
+
a.t = w.v;
|
|
2898
2900
|
}
|
|
2899
|
-
if (w.
|
|
2900
|
-
a.r = w.
|
|
2901
|
+
if (w.t != null) {
|
|
2902
|
+
a.r = w.t;
|
|
2901
2903
|
}
|
|
2902
|
-
if (w.
|
|
2903
|
-
a.q = w.
|
|
2904
|
+
if (w.r != null) {
|
|
2905
|
+
a.q = w.t;
|
|
2904
2906
|
}
|
|
2905
2907
|
}
|
|
2906
2908
|
return a;
|