igniteui-webcomponents-inputs 6.2.2-alpha.3 → 6.3.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 +1336 -1142
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +1 -1
- package/esm2015/lib/ButtonGroupVisualModelExport.js +9 -1
- package/esm2015/lib/ButtonView_combined.js +315 -308
- package/esm2015/lib/CheckboxListVisualModelExport.js +43 -0
- package/esm2015/lib/CheckboxView_combined.js +179 -164
- package/esm2015/lib/CheckboxVisualModelExport.js +14 -6
- package/esm2015/lib/ColorEditorVisualModelExport.js +40 -0
- package/esm2015/lib/IconView_combined.js +27 -22
- package/esm2015/lib/InputGroupView_combined.js +274 -262
- package/esm2015/lib/InputGroupVisualModelExport.js +2 -2
- package/esm2015/lib/InputVisualModelExport.js +34 -32
- package/esm2015/lib/MultiSliderView_combined.js +2 -2
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +324 -299
- package/esm2015/lib/XButtonBridge.js +1 -1
- package/esm2015/lib/XButtonGroupBridge.js +7 -1
- package/esm2015/lib/XCheckboxBridge.js +2 -1
- package/esm2015/lib/XIconBridge.js +2 -1
- package/esm2015/lib/XInputBridge.js +11 -1
- package/esm2015/lib/igc-color-editor-component.js +63 -47
- package/esm2015/public_api.js +2 -0
- package/esm5/lib/ButtonGroupView_combined.js +1 -1
- package/esm5/lib/ButtonGroupVisualModelExport.js +9 -1
- package/esm5/lib/ButtonView_combined.js +315 -308
- package/esm5/lib/CheckboxListVisualModelExport.js +45 -0
- package/esm5/lib/CheckboxView_combined.js +177 -162
- package/esm5/lib/CheckboxVisualModelExport.js +14 -6
- package/esm5/lib/ColorEditorVisualModelExport.js +42 -0
- package/esm5/lib/IconView_combined.js +32 -27
- package/esm5/lib/InputGroupView_combined.js +275 -263
- package/esm5/lib/InputGroupVisualModelExport.js +2 -2
- package/esm5/lib/InputVisualModelExport.js +34 -32
- package/esm5/lib/MultiSliderView_combined.js +2 -2
- package/esm5/lib/NativeUIXInputsFactory_combined.js +315 -290
- package/esm5/lib/XButtonBridge.js +1 -1
- package/esm5/lib/XButtonGroupBridge.js +7 -1
- package/esm5/lib/XCheckboxBridge.js +2 -1
- package/esm5/lib/XIconBridge.js +2 -1
- package/esm5/lib/XInputBridge.js +11 -1
- package/esm5/lib/igc-color-editor-component.js +63 -47
- package/esm5/public_api.js +2 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +1342 -1150
- package/fesm5/igniteui-webcomponents-inputs.js +1336 -1144
- package/lib/ButtonGroupVisualModelExport.d.ts +5 -1
- package/lib/ButtonView_combined.d.ts +42 -41
- package/lib/CheckboxListVisualModelExport.d.ts +18 -0
- package/lib/CheckboxView_combined.d.ts +30 -29
- package/lib/CheckboxVisualModelExport.d.ts +7 -3
- package/lib/ColorEditorVisualModelExport.d.ts +17 -0
- package/lib/IconView_combined.d.ts +2 -0
- package/lib/InputGroupView_combined.d.ts +57 -56
- package/lib/InputVisualModelExport.d.ts +14 -12
- package/lib/NativeUIXInputsFactory_combined.d.ts +90 -85
- package/lib/igc-color-editor-component.d.ts +10 -0
- package/package.json +2 -2
- package/public_api.d.ts +2 -0
|
@@ -87,8 +87,8 @@ export let InputGroupVisualModelExport = /*@__PURE__*/ (() => {
|
|
|
87
87
|
if (e != 0) {
|
|
88
88
|
a.l(",");
|
|
89
89
|
}
|
|
90
|
-
let f = this.k._inner[e].
|
|
91
|
-
a.l(this.k._inner[e].
|
|
90
|
+
let f = this.k._inner[e].m.charAt(0).toString().toLowerCase() + this.k._inner[e].m.substr(1);
|
|
91
|
+
a.l(this.k._inner[e].p());
|
|
92
92
|
}
|
|
93
93
|
a.l("],");
|
|
94
94
|
a.l("suffixModels : [");
|
|
@@ -15,60 +15,62 @@ export let InputVisualModelExport = /*@__PURE__*/ (() => {
|
|
|
15
15
|
class InputVisualModelExport extends Base {
|
|
16
16
|
constructor() {
|
|
17
17
|
super(...arguments);
|
|
18
|
-
this.
|
|
18
|
+
this.i = 0;
|
|
19
|
+
this.g = 0;
|
|
20
|
+
this.j = 0;
|
|
19
21
|
this.f = 0;
|
|
20
22
|
this.b = 0;
|
|
21
23
|
this.c = 0;
|
|
22
|
-
this.
|
|
23
|
-
this.
|
|
24
|
+
this.l = null;
|
|
25
|
+
this.o = null;
|
|
24
26
|
this.d = false;
|
|
25
27
|
this.a = null;
|
|
26
|
-
this.q = null;
|
|
27
|
-
this.r = null;
|
|
28
28
|
this.s = null;
|
|
29
|
-
this.g = 0;
|
|
30
|
-
this.o = null;
|
|
31
|
-
this.p = null;
|
|
32
|
-
this.i = null;
|
|
33
|
-
this.l = null;
|
|
34
|
-
this.e = false;
|
|
35
29
|
this.t = null;
|
|
30
|
+
this.u = null;
|
|
31
|
+
this.h = 0;
|
|
32
|
+
this.q = null;
|
|
33
|
+
this.r = null;
|
|
36
34
|
this.k = null;
|
|
35
|
+
this.n = null;
|
|
36
|
+
this.e = false;
|
|
37
|
+
this.v = null;
|
|
38
|
+
this.m = null;
|
|
37
39
|
}
|
|
38
|
-
|
|
40
|
+
p() {
|
|
39
41
|
let a = new StringBuilder(0);
|
|
40
42
|
a.l("{");
|
|
41
|
-
a.l("top : " + this.
|
|
42
|
-
a.l("left : " + this.
|
|
43
|
+
a.l("top : " + this.i + ", ");
|
|
44
|
+
a.l("left : " + this.g + ", ");
|
|
43
45
|
a.l("shiftType : " + this.b + ", ");
|
|
44
46
|
a.l("actualDensity : " + this.c + ", ");
|
|
45
|
-
a.l("mask : \"" + this.
|
|
46
|
-
a.l("promptChar : \"" + this.
|
|
47
|
+
a.l("mask : \"" + this.l + "\", ");
|
|
48
|
+
a.l("promptChar : \"" + this.o + "\", ");
|
|
47
49
|
a.l("includeLiterals : " + this.d + ", ");
|
|
48
50
|
a.l("actualTextColor : " + this.a.serialize() + ", ");
|
|
49
|
-
if (!stringIsNullOrEmpty(this.
|
|
50
|
-
a.l("textStyleFontStyle : \"" + this.
|
|
51
|
+
if (!stringIsNullOrEmpty(this.s)) {
|
|
52
|
+
a.l("textStyleFontStyle : \"" + this.s + "\", ");
|
|
51
53
|
}
|
|
52
|
-
if (!stringIsNullOrEmpty(this.
|
|
53
|
-
a.l("textStyleFontVariant : \"" + this.
|
|
54
|
+
if (!stringIsNullOrEmpty(this.t)) {
|
|
55
|
+
a.l("textStyleFontVariant : \"" + this.t + "\", ");
|
|
54
56
|
}
|
|
55
|
-
if (!stringIsNullOrEmpty(this.
|
|
56
|
-
a.l("textStyleFontWeight : \"" + this.
|
|
57
|
+
if (!stringIsNullOrEmpty(this.u)) {
|
|
58
|
+
a.l("textStyleFontWeight : \"" + this.u + "\", ");
|
|
57
59
|
}
|
|
58
|
-
if (!stringIsNullOrEmpty(this.
|
|
59
|
-
a.l("textStyleFontFamily : \"" + this.
|
|
60
|
+
if (!stringIsNullOrEmpty(this.q)) {
|
|
61
|
+
a.l("textStyleFontFamily : \"" + this.q + "\", ");
|
|
60
62
|
}
|
|
61
|
-
if (!stringIsNullOrEmpty(this.
|
|
62
|
-
a.l("textStyleFontStretch : \"" + this.
|
|
63
|
+
if (!stringIsNullOrEmpty(this.r)) {
|
|
64
|
+
a.l("textStyleFontStretch : \"" + this.r + "\", ");
|
|
63
65
|
}
|
|
64
|
-
if (!isNaN_(this.
|
|
65
|
-
a.l("textStyleFontSize : " + this.
|
|
66
|
+
if (!isNaN_(this.h)) {
|
|
67
|
+
a.l("textStyleFontSize : " + this.h + ", ");
|
|
66
68
|
}
|
|
67
|
-
a.l("inputType : \"" + this.
|
|
68
|
-
a.l("placeholder : \"" + this.
|
|
69
|
+
a.l("inputType : \"" + this.k + "\", ");
|
|
70
|
+
a.l("placeholder : \"" + this.n + "\", ");
|
|
69
71
|
a.l("isHover : " + this.e + ", ");
|
|
70
|
-
a.l("value : \"" + this.
|
|
71
|
-
a.l("name : \"" + this.
|
|
72
|
+
a.l("value : \"" + this.v + "\", ");
|
|
73
|
+
a.l("name : \"" + this.m + "\", ");
|
|
72
74
|
a.l("}");
|
|
73
75
|
return a.toString();
|
|
74
76
|
}
|
|
@@ -243,7 +243,7 @@ export let MultiSliderView = /*@__PURE__*/ (() => {
|
|
|
243
243
|
this.v = i;
|
|
244
244
|
let j = this.u.get2DCanvasContext(this.v);
|
|
245
245
|
this.l = new RenderingContext(new CanvasViewRenderer(), j);
|
|
246
|
-
this.l.
|
|
246
|
+
this.l.af(this.j);
|
|
247
247
|
this.ab();
|
|
248
248
|
this.a = new CanvasGestureDOMEventProxy(this.u.rootWrapper, this.u, false);
|
|
249
249
|
this.a.bl = this.g.e0;
|
|
@@ -318,7 +318,7 @@ export let MultiSliderView = /*@__PURE__*/ (() => {
|
|
|
318
318
|
this.i = c;
|
|
319
319
|
this.j = this.i;
|
|
320
320
|
this.s = FontUtil.getCurrentFontHeight(this.u, this.j);
|
|
321
|
-
this.l.
|
|
321
|
+
this.l.af(this.i);
|
|
322
322
|
this.g.trackDirty();
|
|
323
323
|
}
|
|
324
324
|
}
|