igniteui-webcomponents-inputs 4.2.5 → 4.3.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +98 -98
- package/esm2015/lib/ButtonView_combined.js +2206 -1799
- package/esm2015/lib/CalendarView_combined.js +156 -156
- package/esm2015/lib/CheckboxView_combined.js +532 -458
- package/esm2015/lib/DatePickerView_combined.js +398 -364
- package/esm2015/lib/IconView_combined.js +553 -355
- package/esm2015/lib/InputGroupView_combined.js +2432 -2152
- package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
- package/esm2015/lib/RippleView_combined.js +1 -1
- package/esm2015/lib/Theme.js +48 -0
- package/esm2015/lib/ThemeResolver.js +131 -7
- package/esm2015/lib/XButtonBridge.js +218 -22
- package/esm2015/lib/XCheckboxBridge.js +25 -16
- package/esm2015/lib/XComponentBridge.js +20 -6
- package/esm2015/lib/XIconBridge.js +93 -0
- package/esm2015/lib/XIconButtonBridge.js +45 -33
- package/esm2015/lib/XInputBridge.js +91 -38
- package/esm2015/lib/XPopupBridge.js +287 -0
- package/esm2015/lib/igc-date-picker-component.js +60 -58
- package/esm2015/lib/igc-x-button-component.js +694 -546
- package/esm2015/lib/igc-x-button-group-component.js +28 -28
- package/esm2015/lib/igc-x-calendar-component.js +16 -16
- package/esm2015/lib/igc-x-checkbox-component.js +77 -77
- package/esm2015/lib/igc-x-icon-component.js +239 -118
- package/esm2015/lib/igc-x-input-component.js +61 -43
- package/esm2015/lib/igc-x-input-group-component.js +576 -576
- package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
- package/esm2015/lib/igc-x-ripple-component.js +35 -35
- package/esm2015/public_api.js +3 -0
- package/esm5/lib/ButtonClickEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupView_combined.js +176 -176
- package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
- package/esm5/lib/ButtonView_combined.js +2259 -1808
- package/esm5/lib/ButtonVisualModelExport.js +2 -2
- package/esm5/lib/CalendarView_combined.js +181 -181
- package/esm5/lib/CalendarVisualModelExport.js +2 -2
- package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
- package/esm5/lib/CheckboxView_combined.js +561 -483
- package/esm5/lib/CheckboxVisualModelExport.js +2 -2
- package/esm5/lib/DatePickerView_combined.js +421 -383
- package/esm5/lib/DatePickerVisualModelExport.js +2 -2
- package/esm5/lib/DateTimeValueFormatter.js +2 -2
- package/esm5/lib/DayInfo.js +2 -2
- package/esm5/lib/ElevationHelper.js +2 -2
- package/esm5/lib/GotFocusEventArgs.js +2 -2
- package/esm5/lib/IconClickedEventArgs.js +2 -2
- package/esm5/lib/IconView_combined.js +600 -362
- package/esm5/lib/IconVisualModelExport.js +3 -3
- package/esm5/lib/InputChangeEventArgs.js +4 -4
- package/esm5/lib/InputGroupView_combined.js +2534 -2246
- package/esm5/lib/InputGroupVisualModelExport.js +2 -2
- package/esm5/lib/InputVisualModelExport.js +2 -2
- package/esm5/lib/LabelVisualModelExport.js +2 -2
- package/esm5/lib/LostFocusEventArgs.js +2 -2
- package/esm5/lib/MaskOptions.js +2 -2
- package/esm5/lib/MaskParsingService.js +5 -5
- package/esm5/lib/NativeUIXInputsFactory.js +69 -27
- package/esm5/lib/PrefixVisualModelExport.js +2 -2
- package/esm5/lib/Replaced.js +2 -2
- package/esm5/lib/RippleView_combined.js +17 -17
- package/esm5/lib/RippleVisualModelExport.js +2 -2
- package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
- package/esm5/lib/SuffixVisualModelExport.js +2 -2
- package/esm5/lib/TextElementsVisualModelExport.js +2 -2
- package/esm5/lib/Theme.js +58 -0
- package/esm5/lib/ThemeResolver.js +137 -11
- package/esm5/lib/XButtonBridge.js +220 -24
- package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
- package/esm5/lib/XCheckboxBridge.js +27 -18
- package/esm5/lib/XComponentBridge.js +26 -8
- package/esm5/lib/XIconBridge.js +95 -0
- package/esm5/lib/XIconButtonBridge.js +47 -35
- package/esm5/lib/XInputBridge.js +93 -40
- package/esm5/lib/XPopupBridge.js +289 -0
- package/esm5/lib/igc-button-click-event-args.js +1 -1
- package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
- package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
- package/esm5/lib/igc-date-picker-component.js +80 -78
- package/esm5/lib/igc-got-focus-event-args.js +1 -1
- package/esm5/lib/igc-input-change-event-args.js +3 -3
- package/esm5/lib/igc-lost-focus-event-args.js +1 -1
- package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
- package/esm5/lib/igc-x-button-component.js +908 -710
- package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
- package/esm5/lib/igc-x-button-group-component.js +73 -73
- package/esm5/lib/igc-x-calendar-component.js +30 -30
- package/esm5/lib/igc-x-checkbox-component.js +117 -117
- package/esm5/lib/igc-x-icon-component.js +297 -136
- package/esm5/lib/igc-x-input-component.js +104 -78
- package/esm5/lib/igc-x-input-group-component.js +716 -716
- package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
- package/esm5/lib/igc-x-input-group-item-component.js +6 -6
- package/esm5/lib/igc-x-label-component.js +30 -30
- package/esm5/lib/igc-x-prefix-component.js +9 -9
- package/esm5/lib/igc-x-ripple-component.js +19 -19
- package/esm5/lib/igc-x-suffix-component.js +9 -9
- package/esm5/public_api.js +3 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
- package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
- package/lib/ButtonGroupView_combined.d.ts +136 -70
- package/lib/ButtonView_combined.d.ts +609 -583
- package/lib/CalendarView_combined.d.ts +43 -22
- package/lib/CheckboxChangeEventArgs.d.ts +4 -2
- package/lib/CheckboxView_combined.d.ts +150 -117
- package/lib/DatePickerView_combined.d.ts +109 -81
- package/lib/IconView_combined.d.ts +164 -93
- package/lib/IconVisualModelExport.d.ts +2 -1
- package/lib/InputChangeEventArgs.d.ts +4 -2
- package/lib/InputGroupView_combined.d.ts +771 -771
- package/lib/NativeUIXInputsFactory.d.ts +6 -4
- package/lib/RippleView_combined.d.ts +19 -10
- package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
- package/lib/Theme.d.ts +15 -0
- package/lib/ThemeResolver.d.ts +44 -6
- package/lib/XButtonBridge.d.ts +23 -5
- package/lib/XCheckboxBridge.d.ts +3 -3
- package/lib/XComponentBridge.d.ts +2 -1
- package/lib/XIconBridge.d.ts +14 -0
- package/lib/XIconButtonBridge.d.ts +4 -4
- package/lib/XInputBridge.d.ts +11 -7
- package/lib/XPopupBridge.d.ts +52 -0
- package/lib/igc-button-click-event-args.d.ts +1 -1
- package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
- package/lib/igc-checkbox-change-event-args.d.ts +5 -3
- package/lib/igc-date-picker-component.d.ts +65 -34
- package/lib/igc-got-focus-event-args.d.ts +1 -1
- package/lib/igc-input-change-event-args.d.ts +5 -3
- package/lib/igc-lost-focus-event-args.d.ts +1 -1
- package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
- package/lib/igc-x-button-component.d.ts +399 -173
- package/lib/igc-x-button-group-component.d.ts +136 -70
- package/lib/igc-x-calendar-component.d.ts +53 -28
- package/lib/igc-x-checkbox-component.d.ts +71 -37
- package/lib/igc-x-icon-component.d.ts +140 -44
- package/lib/igc-x-input-component.d.ts +69 -32
- package/lib/igc-x-input-group-component.d.ts +325 -165
- package/lib/igc-x-input-group-item-component.d.ts +5 -4
- package/lib/igc-x-label-component.d.ts +52 -27
- package/lib/igc-x-prefix-component.d.ts +10 -6
- package/lib/igc-x-ripple-component.d.ts +31 -17
- package/lib/igc-x-suffix-component.d.ts +10 -6
- package/package.json +2 -2
- package/public_api.d.ts +3 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { __extends, __values } from "tslib";
|
|
2
2
|
import { XInput } from "./XInput";
|
|
3
3
|
import { ensureEnum, brushToString, stringToBrush, ensureBool, NamePatcher, toSpinal, enumToString, getAllPropertyNames } from "igniteui-webcomponents-core";
|
|
4
4
|
import { FontInfo } from "igniteui-webcomponents-core";
|
|
@@ -10,6 +10,7 @@ import { IgcInputChangeEventArgs } from './igc-input-change-event-args';
|
|
|
10
10
|
import { ControlDisplayDensity_$type } from "igniteui-webcomponents-core";
|
|
11
11
|
import { IgcKeyEventArgs } from "igniteui-webcomponents-core";
|
|
12
12
|
import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
|
|
13
|
+
import { HorizontalAlignment_$type } from "igniteui-webcomponents-core";
|
|
13
14
|
var requiredStyle = "\n\n";
|
|
14
15
|
var pending = [];
|
|
15
16
|
var checked = /*@__PURE__*/ new WeakMap(); // TODO why not WeakSet?
|
|
@@ -53,7 +54,7 @@ function injectCss(style, attributeName, onload) {
|
|
|
53
54
|
document.head.appendChild(styleEle);
|
|
54
55
|
}
|
|
55
56
|
var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
56
|
-
|
|
57
|
+
__extends(IgcXInputComponent, _super);
|
|
57
58
|
function IgcXInputComponent() {
|
|
58
59
|
var _this = _super.call(this) || this;
|
|
59
60
|
_this._disconnected = false;
|
|
@@ -95,7 +96,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
95
96
|
var mut = new MutationObserver(function (list) {
|
|
96
97
|
var e_1, _b;
|
|
97
98
|
try {
|
|
98
|
-
for (var list_1 =
|
|
99
|
+
for (var list_1 = __values(list), list_1_1 = list_1.next(); !list_1_1.done; list_1_1 = list_1.next()) {
|
|
99
100
|
var mutation = list_1_1.value;
|
|
100
101
|
if (mutation.type == 'childList') {
|
|
101
102
|
_this._onChildrenChanged();
|
|
@@ -182,7 +183,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
182
183
|
get: function () {
|
|
183
184
|
return this._implementation;
|
|
184
185
|
},
|
|
185
|
-
enumerable:
|
|
186
|
+
enumerable: false,
|
|
186
187
|
configurable: true
|
|
187
188
|
});
|
|
188
189
|
Object.defineProperty(IgcXInputComponent, "observedAttributes", {
|
|
@@ -196,7 +197,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
196
197
|
}
|
|
197
198
|
return IgcXInputComponent._observedAttributesIgcXInputComponent;
|
|
198
199
|
},
|
|
199
|
-
enumerable:
|
|
200
|
+
enumerable: false,
|
|
200
201
|
configurable: true
|
|
201
202
|
});
|
|
202
203
|
IgcXInputComponent.register = function () {
|
|
@@ -216,7 +217,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
216
217
|
this.i.w = ensureEnum(BaseControlTheme_$type, v);
|
|
217
218
|
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.w));
|
|
218
219
|
},
|
|
219
|
-
enumerable:
|
|
220
|
+
enumerable: false,
|
|
220
221
|
configurable: true
|
|
221
222
|
});
|
|
222
223
|
Object.defineProperty(IgcXInputComponent.prototype, "density", {
|
|
@@ -230,7 +231,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
230
231
|
this.i.aa = ensureEnum(ControlDisplayDensity_$type, v);
|
|
231
232
|
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.aa));
|
|
232
233
|
},
|
|
233
|
-
enumerable:
|
|
234
|
+
enumerable: false,
|
|
234
235
|
configurable: true
|
|
235
236
|
});
|
|
236
237
|
Object.defineProperty(IgcXInputComponent.prototype, "actualDensity", {
|
|
@@ -244,7 +245,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
244
245
|
this.i.z = ensureEnum(ControlDisplayDensity_$type, v);
|
|
245
246
|
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.z));
|
|
246
247
|
},
|
|
247
|
-
enumerable:
|
|
248
|
+
enumerable: false,
|
|
248
249
|
configurable: true
|
|
249
250
|
});
|
|
250
251
|
Object.defineProperty(IgcXInputComponent.prototype, "mask", {
|
|
@@ -252,12 +253,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
252
253
|
* Gets/Sets the input mask for the input.
|
|
253
254
|
*/
|
|
254
255
|
get: function () {
|
|
255
|
-
return this.i.
|
|
256
|
+
return this.i.ce;
|
|
256
257
|
},
|
|
257
258
|
set: function (v) {
|
|
258
|
-
this.i.
|
|
259
|
+
this.i.ce = v;
|
|
259
260
|
},
|
|
260
|
-
enumerable:
|
|
261
|
+
enumerable: false,
|
|
261
262
|
configurable: true
|
|
262
263
|
});
|
|
263
264
|
Object.defineProperty(IgcXInputComponent.prototype, "promptChar", {
|
|
@@ -265,12 +266,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
265
266
|
* Gets/Sets the character representing a fillable spot in the input mask
|
|
266
267
|
*/
|
|
267
268
|
get: function () {
|
|
268
|
-
return this.i.
|
|
269
|
+
return this.i.ci;
|
|
269
270
|
},
|
|
270
271
|
set: function (v) {
|
|
271
|
-
this.i.
|
|
272
|
+
this.i.ci = v;
|
|
272
273
|
},
|
|
273
|
-
enumerable:
|
|
274
|
+
enumerable: false,
|
|
274
275
|
configurable: true
|
|
275
276
|
});
|
|
276
277
|
Object.defineProperty(IgcXInputComponent.prototype, "includeLiterals", {
|
|
@@ -278,13 +279,24 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
278
279
|
* Specifies if the bound value includes the formatting symbols.
|
|
279
280
|
*/
|
|
280
281
|
get: function () {
|
|
281
|
-
return this.i.
|
|
282
|
+
return this.i.au;
|
|
283
|
+
},
|
|
284
|
+
set: function (v) {
|
|
285
|
+
this.i.au = ensureBool(v);
|
|
286
|
+
this._a("includeLiterals", this.i.au);
|
|
287
|
+
},
|
|
288
|
+
enumerable: false,
|
|
289
|
+
configurable: true
|
|
290
|
+
});
|
|
291
|
+
Object.defineProperty(IgcXInputComponent.prototype, "showSpinner", {
|
|
292
|
+
get: function () {
|
|
293
|
+
return this.i.a1;
|
|
282
294
|
},
|
|
283
295
|
set: function (v) {
|
|
284
|
-
this.i.
|
|
285
|
-
this._a("
|
|
296
|
+
this.i.a1 = ensureBool(v);
|
|
297
|
+
this._a("showSpinner", this.i.a1);
|
|
286
298
|
},
|
|
287
|
-
enumerable:
|
|
299
|
+
enumerable: false,
|
|
288
300
|
configurable: true
|
|
289
301
|
});
|
|
290
302
|
Object.defineProperty(IgcXInputComponent.prototype, "actualTextColor", {
|
|
@@ -292,13 +304,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
292
304
|
* Gets the actual color to use for the text color.
|
|
293
305
|
*/
|
|
294
306
|
get: function () {
|
|
295
|
-
return brushToString(this.i.
|
|
307
|
+
return brushToString(this.i.d4);
|
|
296
308
|
},
|
|
297
309
|
set: function (v) {
|
|
298
|
-
this.i.
|
|
299
|
-
this._a("actualTextColor", brushToString(this.i.
|
|
310
|
+
this.i.d4 = stringToBrush(v);
|
|
311
|
+
this._a("actualTextColor", brushToString(this.i.d4));
|
|
300
312
|
},
|
|
301
|
-
enumerable:
|
|
313
|
+
enumerable: false,
|
|
302
314
|
configurable: true
|
|
303
315
|
});
|
|
304
316
|
Object.defineProperty(IgcXInputComponent.prototype, "actualHoverTextColor", {
|
|
@@ -306,13 +318,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
306
318
|
* Gets the actual hover color to use for the text.
|
|
307
319
|
*/
|
|
308
320
|
get: function () {
|
|
309
|
-
return brushToString(this.i.
|
|
321
|
+
return brushToString(this.i.d3);
|
|
310
322
|
},
|
|
311
323
|
set: function (v) {
|
|
312
|
-
this.i.
|
|
313
|
-
this._a("actualHoverTextColor", brushToString(this.i.
|
|
324
|
+
this.i.d3 = stringToBrush(v);
|
|
325
|
+
this._a("actualHoverTextColor", brushToString(this.i.d3));
|
|
314
326
|
},
|
|
315
|
-
enumerable:
|
|
327
|
+
enumerable: false,
|
|
316
328
|
configurable: true
|
|
317
329
|
});
|
|
318
330
|
Object.defineProperty(IgcXInputComponent.prototype, "textColor", {
|
|
@@ -320,13 +332,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
320
332
|
* Gets or sets the color to use for the text.
|
|
321
333
|
*/
|
|
322
334
|
get: function () {
|
|
323
|
-
return brushToString(this.i.
|
|
335
|
+
return brushToString(this.i.d8);
|
|
324
336
|
},
|
|
325
337
|
set: function (v) {
|
|
326
|
-
this.i.
|
|
327
|
-
this._a("textColor", brushToString(this.i.
|
|
338
|
+
this.i.d8 = stringToBrush(v);
|
|
339
|
+
this._a("textColor", brushToString(this.i.d8));
|
|
328
340
|
},
|
|
329
|
-
enumerable:
|
|
341
|
+
enumerable: false,
|
|
330
342
|
configurable: true
|
|
331
343
|
});
|
|
332
344
|
Object.defineProperty(IgcXInputComponent.prototype, "textStyle", {
|
|
@@ -345,7 +357,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
345
357
|
this.i.af = fi;
|
|
346
358
|
this._a("textStyle", this.i.af != null ? this.i.af.fontString : "");
|
|
347
359
|
},
|
|
348
|
-
enumerable:
|
|
360
|
+
enumerable: false,
|
|
349
361
|
configurable: true
|
|
350
362
|
});
|
|
351
363
|
Object.defineProperty(IgcXInputComponent.prototype, "inputType", {
|
|
@@ -353,12 +365,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
353
365
|
* Gets or sets the type to use for the input.
|
|
354
366
|
*/
|
|
355
367
|
get: function () {
|
|
356
|
-
return this.i.
|
|
368
|
+
return this.i.b8;
|
|
357
369
|
},
|
|
358
370
|
set: function (v) {
|
|
359
|
-
this.i.
|
|
371
|
+
this.i.b8 = v;
|
|
360
372
|
},
|
|
361
|
-
enumerable:
|
|
373
|
+
enumerable: false,
|
|
362
374
|
configurable: true
|
|
363
375
|
});
|
|
364
376
|
Object.defineProperty(IgcXInputComponent.prototype, "placeholder", {
|
|
@@ -366,12 +378,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
366
378
|
* Gets or sets the placeholder to use for the input.
|
|
367
379
|
*/
|
|
368
380
|
get: function () {
|
|
369
|
-
return this.i.
|
|
381
|
+
return this.i.cg;
|
|
370
382
|
},
|
|
371
383
|
set: function (v) {
|
|
372
|
-
this.i.
|
|
384
|
+
this.i.cg = v;
|
|
373
385
|
},
|
|
374
|
-
enumerable:
|
|
386
|
+
enumerable: false,
|
|
375
387
|
configurable: true
|
|
376
388
|
});
|
|
377
389
|
Object.defineProperty(IgcXInputComponent.prototype, "hoverTextColor", {
|
|
@@ -379,13 +391,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
379
391
|
* Gets or sets the color to use for the hovered text of the button regardless of type.
|
|
380
392
|
*/
|
|
381
393
|
get: function () {
|
|
382
|
-
return brushToString(this.i.
|
|
394
|
+
return brushToString(this.i.d7);
|
|
383
395
|
},
|
|
384
396
|
set: function (v) {
|
|
385
|
-
this.i.
|
|
386
|
-
this._a("hoverTextColor", brushToString(this.i.
|
|
397
|
+
this.i.d7 = stringToBrush(v);
|
|
398
|
+
this._a("hoverTextColor", brushToString(this.i.d7));
|
|
387
399
|
},
|
|
388
|
-
enumerable:
|
|
400
|
+
enumerable: false,
|
|
389
401
|
configurable: true
|
|
390
402
|
});
|
|
391
403
|
Object.defineProperty(IgcXInputComponent.prototype, "id", {
|
|
@@ -393,12 +405,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
393
405
|
* Gets or sets the id to use for the checkbox.
|
|
394
406
|
*/
|
|
395
407
|
get: function () {
|
|
396
|
-
return this.i.
|
|
408
|
+
return this.i.b5;
|
|
397
409
|
},
|
|
398
410
|
set: function (v) {
|
|
399
|
-
this.i.
|
|
411
|
+
this.i.b5 = v;
|
|
400
412
|
},
|
|
401
|
-
enumerable:
|
|
413
|
+
enumerable: false,
|
|
402
414
|
configurable: true
|
|
403
415
|
});
|
|
404
416
|
Object.defineProperty(IgcXInputComponent.prototype, "tabIndex", {
|
|
@@ -406,13 +418,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
406
418
|
* Gets or sets TabIndex to use for the checkbox.
|
|
407
419
|
*/
|
|
408
420
|
get: function () {
|
|
409
|
-
return this.i.
|
|
421
|
+
return this.i.be;
|
|
410
422
|
},
|
|
411
423
|
set: function (v) {
|
|
412
|
-
this.i.
|
|
413
|
-
this._a("tabIndex", this.i.
|
|
424
|
+
this.i.be = +v;
|
|
425
|
+
this._a("tabIndex", this.i.be);
|
|
414
426
|
},
|
|
415
|
-
enumerable:
|
|
427
|
+
enumerable: false,
|
|
416
428
|
configurable: true
|
|
417
429
|
});
|
|
418
430
|
Object.defineProperty(IgcXInputComponent.prototype, "for", {
|
|
@@ -420,12 +432,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
420
432
|
* Gets or sets the for attribute to use for the input.
|
|
421
433
|
*/
|
|
422
434
|
get: function () {
|
|
423
|
-
return this.i.
|
|
435
|
+
return this.i.b2;
|
|
424
436
|
},
|
|
425
437
|
set: function (v) {
|
|
426
|
-
this.i.
|
|
438
|
+
this.i.b2 = v;
|
|
427
439
|
},
|
|
428
|
-
enumerable:
|
|
440
|
+
enumerable: false,
|
|
429
441
|
configurable: true
|
|
430
442
|
});
|
|
431
443
|
Object.defineProperty(IgcXInputComponent.prototype, "ariaLabel", {
|
|
@@ -433,12 +445,12 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
433
445
|
* Gets or sets the value of the aria-label attribute.
|
|
434
446
|
*/
|
|
435
447
|
get: function () {
|
|
436
|
-
return this.i.
|
|
448
|
+
return this.i.bx;
|
|
437
449
|
},
|
|
438
450
|
set: function (v) {
|
|
439
|
-
this.i.
|
|
451
|
+
this.i.bx = v;
|
|
440
452
|
},
|
|
441
|
-
enumerable:
|
|
453
|
+
enumerable: false,
|
|
442
454
|
configurable: true
|
|
443
455
|
});
|
|
444
456
|
Object.defineProperty(IgcXInputComponent.prototype, "isHover", {
|
|
@@ -446,13 +458,13 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
446
458
|
* Gets or sets whether the input is hovered.
|
|
447
459
|
*/
|
|
448
460
|
get: function () {
|
|
449
|
-
return this.i.
|
|
461
|
+
return this.i.aw;
|
|
450
462
|
},
|
|
451
463
|
set: function (v) {
|
|
452
|
-
this.i.
|
|
453
|
-
this._a("isHover", this.i.
|
|
464
|
+
this.i.aw = ensureBool(v);
|
|
465
|
+
this._a("isHover", this.i.aw);
|
|
454
466
|
},
|
|
455
|
-
enumerable:
|
|
467
|
+
enumerable: false,
|
|
456
468
|
configurable: true
|
|
457
469
|
});
|
|
458
470
|
Object.defineProperty(IgcXInputComponent.prototype, "value", {
|
|
@@ -460,19 +472,19 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
460
472
|
* Gets or sets the value for the input.
|
|
461
473
|
*/
|
|
462
474
|
get: function () {
|
|
463
|
-
return this.i.
|
|
475
|
+
return this.i.cq;
|
|
464
476
|
},
|
|
465
477
|
set: function (v) {
|
|
466
|
-
this.i.
|
|
478
|
+
this.i.cq = v;
|
|
467
479
|
},
|
|
468
|
-
enumerable:
|
|
480
|
+
enumerable: false,
|
|
469
481
|
configurable: true
|
|
470
482
|
});
|
|
471
483
|
Object.defineProperty(IgcXInputComponent.prototype, "hasValue", {
|
|
472
484
|
get: function () {
|
|
473
|
-
return this.i.
|
|
485
|
+
return this.i.at;
|
|
474
486
|
},
|
|
475
|
-
enumerable:
|
|
487
|
+
enumerable: false,
|
|
476
488
|
configurable: true
|
|
477
489
|
});
|
|
478
490
|
Object.defineProperty(IgcXInputComponent.prototype, "disabled", {
|
|
@@ -486,7 +498,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
486
498
|
this.i.disabled = ensureBool(v);
|
|
487
499
|
this._a("disabled", this.i.disabled);
|
|
488
500
|
},
|
|
489
|
-
enumerable:
|
|
501
|
+
enumerable: false,
|
|
490
502
|
configurable: true
|
|
491
503
|
});
|
|
492
504
|
Object.defineProperty(IgcXInputComponent.prototype, "readonly", {
|
|
@@ -500,7 +512,21 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
500
512
|
this.i.readonly = ensureBool(v);
|
|
501
513
|
this._a("readonly", this.i.readonly);
|
|
502
514
|
},
|
|
503
|
-
enumerable:
|
|
515
|
+
enumerable: false,
|
|
516
|
+
configurable: true
|
|
517
|
+
});
|
|
518
|
+
Object.defineProperty(IgcXInputComponent.prototype, "textAlignment", {
|
|
519
|
+
/**
|
|
520
|
+
* Gets or sets the alignment of the text.
|
|
521
|
+
*/
|
|
522
|
+
get: function () {
|
|
523
|
+
return this.i.dy;
|
|
524
|
+
},
|
|
525
|
+
set: function (v) {
|
|
526
|
+
this.i.dy = ensureEnum(HorizontalAlignment_$type, v);
|
|
527
|
+
this._a("textAlignment", enumToString(HorizontalAlignment_$type, this.i.dy));
|
|
528
|
+
},
|
|
529
|
+
enumerable: false,
|
|
504
530
|
configurable: true
|
|
505
531
|
});
|
|
506
532
|
Object.defineProperty(IgcXInputComponent.prototype, "selectionStart", {
|
|
@@ -514,7 +540,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
514
540
|
this.i.selectionStart = +v;
|
|
515
541
|
this._a("selectionStart", this.i.selectionStart);
|
|
516
542
|
},
|
|
517
|
-
enumerable:
|
|
543
|
+
enumerable: false,
|
|
518
544
|
configurable: true
|
|
519
545
|
});
|
|
520
546
|
Object.defineProperty(IgcXInputComponent.prototype, "selectionEnd", {
|
|
@@ -528,7 +554,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
528
554
|
this.i.selectionEnd = +v;
|
|
529
555
|
this._a("selectionEnd", this.i.selectionEnd);
|
|
530
556
|
},
|
|
531
|
-
enumerable:
|
|
557
|
+
enumerable: false,
|
|
532
558
|
configurable: true
|
|
533
559
|
});
|
|
534
560
|
IgcXInputComponent.prototype.onDetachedFromUI = function () {
|
|
@@ -542,7 +568,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
542
568
|
|
|
543
569
|
*/
|
|
544
570
|
IgcXInputComponent.prototype.exportVisualModel = function () {
|
|
545
|
-
var iv = this.i.
|
|
571
|
+
var iv = this.i.bg();
|
|
546
572
|
return (iv);
|
|
547
573
|
};
|
|
548
574
|
/**
|
|
@@ -550,17 +576,17 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
550
576
|
|
|
551
577
|
*/
|
|
552
578
|
IgcXInputComponent.prototype.exportSerializedVisualModel = function () {
|
|
553
|
-
var iv = this.i.
|
|
579
|
+
var iv = this.i.b1();
|
|
554
580
|
return (iv);
|
|
555
581
|
};
|
|
556
582
|
IgcXInputComponent.prototype.setSelectionRange = function (selectionStart, selectionEnd) {
|
|
557
|
-
this.i.
|
|
583
|
+
this.i.dr(selectionStart, selectionEnd);
|
|
558
584
|
};
|
|
559
585
|
IgcXInputComponent.prototype.blur = function () {
|
|
560
|
-
this.i.
|
|
586
|
+
this.i.ct();
|
|
561
587
|
};
|
|
562
588
|
IgcXInputComponent.prototype.select = function () {
|
|
563
|
-
this.i.
|
|
589
|
+
this.i.dp();
|
|
564
590
|
};
|
|
565
591
|
Object.defineProperty(IgcXInputComponent.prototype, "keyDown", {
|
|
566
592
|
get: function () {
|
|
@@ -587,7 +613,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
587
613
|
this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
|
|
588
614
|
;
|
|
589
615
|
},
|
|
590
|
-
enumerable:
|
|
616
|
+
enumerable: false,
|
|
591
617
|
configurable: true
|
|
592
618
|
});
|
|
593
619
|
Object.defineProperty(IgcXInputComponent.prototype, "keyUp", {
|
|
@@ -615,7 +641,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
615
641
|
this.i.keyUp = delegateCombine(this.i.keyUp, this._keyUp_wrapped);
|
|
616
642
|
;
|
|
617
643
|
},
|
|
618
|
-
enumerable:
|
|
644
|
+
enumerable: false,
|
|
619
645
|
configurable: true
|
|
620
646
|
});
|
|
621
647
|
Object.defineProperty(IgcXInputComponent.prototype, "keyPress", {
|
|
@@ -643,7 +669,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
643
669
|
this.i.keyPress = delegateCombine(this.i.keyPress, this._keyPress_wrapped);
|
|
644
670
|
;
|
|
645
671
|
},
|
|
646
|
-
enumerable:
|
|
672
|
+
enumerable: false,
|
|
647
673
|
configurable: true
|
|
648
674
|
});
|
|
649
675
|
Object.defineProperty(IgcXInputComponent.prototype, "change", {
|
|
@@ -671,7 +697,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
671
697
|
this.i.change = delegateCombine(this.i.change, this._change_wrapped);
|
|
672
698
|
;
|
|
673
699
|
},
|
|
674
|
-
enumerable:
|
|
700
|
+
enumerable: false,
|
|
675
701
|
configurable: true
|
|
676
702
|
});
|
|
677
703
|
Object.defineProperty(IgcXInputComponent.prototype, "changing", {
|
|
@@ -699,7 +725,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
699
725
|
this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
|
|
700
726
|
;
|
|
701
727
|
},
|
|
702
|
-
enumerable:
|
|
728
|
+
enumerable: false,
|
|
703
729
|
configurable: true
|
|
704
730
|
});
|
|
705
731
|
Object.defineProperty(IgcXInputComponent.prototype, "compositionEnd", {
|
|
@@ -727,7 +753,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
727
753
|
this.i.compositionEnd = delegateCombine(this.i.compositionEnd, this._compositionEnd_wrapped);
|
|
728
754
|
;
|
|
729
755
|
},
|
|
730
|
-
enumerable:
|
|
756
|
+
enumerable: false,
|
|
731
757
|
configurable: true
|
|
732
758
|
});
|
|
733
759
|
IgcXInputComponent._observedAttributesIgcXInputComponent = null;
|