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.
Files changed (146) hide show
  1. package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
  2. package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +98 -98
  4. package/esm2015/lib/ButtonView_combined.js +2206 -1799
  5. package/esm2015/lib/CalendarView_combined.js +156 -156
  6. package/esm2015/lib/CheckboxView_combined.js +532 -458
  7. package/esm2015/lib/DatePickerView_combined.js +398 -364
  8. package/esm2015/lib/IconView_combined.js +553 -355
  9. package/esm2015/lib/InputGroupView_combined.js +2432 -2152
  10. package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
  11. package/esm2015/lib/RippleView_combined.js +1 -1
  12. package/esm2015/lib/Theme.js +48 -0
  13. package/esm2015/lib/ThemeResolver.js +131 -7
  14. package/esm2015/lib/XButtonBridge.js +218 -22
  15. package/esm2015/lib/XCheckboxBridge.js +25 -16
  16. package/esm2015/lib/XComponentBridge.js +20 -6
  17. package/esm2015/lib/XIconBridge.js +93 -0
  18. package/esm2015/lib/XIconButtonBridge.js +45 -33
  19. package/esm2015/lib/XInputBridge.js +91 -38
  20. package/esm2015/lib/XPopupBridge.js +287 -0
  21. package/esm2015/lib/igc-date-picker-component.js +60 -58
  22. package/esm2015/lib/igc-x-button-component.js +694 -546
  23. package/esm2015/lib/igc-x-button-group-component.js +28 -28
  24. package/esm2015/lib/igc-x-calendar-component.js +16 -16
  25. package/esm2015/lib/igc-x-checkbox-component.js +77 -77
  26. package/esm2015/lib/igc-x-icon-component.js +239 -118
  27. package/esm2015/lib/igc-x-input-component.js +61 -43
  28. package/esm2015/lib/igc-x-input-group-component.js +576 -576
  29. package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
  30. package/esm2015/lib/igc-x-ripple-component.js +35 -35
  31. package/esm2015/public_api.js +3 -0
  32. package/esm5/lib/ButtonClickEventArgs.js +2 -2
  33. package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
  34. package/esm5/lib/ButtonGroupView_combined.js +176 -176
  35. package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
  36. package/esm5/lib/ButtonView_combined.js +2259 -1808
  37. package/esm5/lib/ButtonVisualModelExport.js +2 -2
  38. package/esm5/lib/CalendarView_combined.js +181 -181
  39. package/esm5/lib/CalendarVisualModelExport.js +2 -2
  40. package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
  41. package/esm5/lib/CheckboxView_combined.js +561 -483
  42. package/esm5/lib/CheckboxVisualModelExport.js +2 -2
  43. package/esm5/lib/DatePickerView_combined.js +421 -383
  44. package/esm5/lib/DatePickerVisualModelExport.js +2 -2
  45. package/esm5/lib/DateTimeValueFormatter.js +2 -2
  46. package/esm5/lib/DayInfo.js +2 -2
  47. package/esm5/lib/ElevationHelper.js +2 -2
  48. package/esm5/lib/GotFocusEventArgs.js +2 -2
  49. package/esm5/lib/IconClickedEventArgs.js +2 -2
  50. package/esm5/lib/IconView_combined.js +600 -362
  51. package/esm5/lib/IconVisualModelExport.js +3 -3
  52. package/esm5/lib/InputChangeEventArgs.js +4 -4
  53. package/esm5/lib/InputGroupView_combined.js +2534 -2246
  54. package/esm5/lib/InputGroupVisualModelExport.js +2 -2
  55. package/esm5/lib/InputVisualModelExport.js +2 -2
  56. package/esm5/lib/LabelVisualModelExport.js +2 -2
  57. package/esm5/lib/LostFocusEventArgs.js +2 -2
  58. package/esm5/lib/MaskOptions.js +2 -2
  59. package/esm5/lib/MaskParsingService.js +5 -5
  60. package/esm5/lib/NativeUIXInputsFactory.js +69 -27
  61. package/esm5/lib/PrefixVisualModelExport.js +2 -2
  62. package/esm5/lib/Replaced.js +2 -2
  63. package/esm5/lib/RippleView_combined.js +17 -17
  64. package/esm5/lib/RippleVisualModelExport.js +2 -2
  65. package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
  66. package/esm5/lib/SuffixVisualModelExport.js +2 -2
  67. package/esm5/lib/TextElementsVisualModelExport.js +2 -2
  68. package/esm5/lib/Theme.js +58 -0
  69. package/esm5/lib/ThemeResolver.js +137 -11
  70. package/esm5/lib/XButtonBridge.js +220 -24
  71. package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
  72. package/esm5/lib/XCheckboxBridge.js +27 -18
  73. package/esm5/lib/XComponentBridge.js +26 -8
  74. package/esm5/lib/XIconBridge.js +95 -0
  75. package/esm5/lib/XIconButtonBridge.js +47 -35
  76. package/esm5/lib/XInputBridge.js +93 -40
  77. package/esm5/lib/XPopupBridge.js +289 -0
  78. package/esm5/lib/igc-button-click-event-args.js +1 -1
  79. package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
  80. package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
  81. package/esm5/lib/igc-date-picker-component.js +80 -78
  82. package/esm5/lib/igc-got-focus-event-args.js +1 -1
  83. package/esm5/lib/igc-input-change-event-args.js +3 -3
  84. package/esm5/lib/igc-lost-focus-event-args.js +1 -1
  85. package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
  86. package/esm5/lib/igc-x-button-component.js +908 -710
  87. package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
  88. package/esm5/lib/igc-x-button-group-component.js +73 -73
  89. package/esm5/lib/igc-x-calendar-component.js +30 -30
  90. package/esm5/lib/igc-x-checkbox-component.js +117 -117
  91. package/esm5/lib/igc-x-icon-component.js +297 -136
  92. package/esm5/lib/igc-x-input-component.js +104 -78
  93. package/esm5/lib/igc-x-input-group-component.js +716 -716
  94. package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
  95. package/esm5/lib/igc-x-input-group-item-component.js +6 -6
  96. package/esm5/lib/igc-x-label-component.js +30 -30
  97. package/esm5/lib/igc-x-prefix-component.js +9 -9
  98. package/esm5/lib/igc-x-ripple-component.js +19 -19
  99. package/esm5/lib/igc-x-suffix-component.js +9 -9
  100. package/esm5/public_api.js +3 -0
  101. package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
  102. package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
  103. package/lib/ButtonGroupView_combined.d.ts +136 -70
  104. package/lib/ButtonView_combined.d.ts +609 -583
  105. package/lib/CalendarView_combined.d.ts +43 -22
  106. package/lib/CheckboxChangeEventArgs.d.ts +4 -2
  107. package/lib/CheckboxView_combined.d.ts +150 -117
  108. package/lib/DatePickerView_combined.d.ts +109 -81
  109. package/lib/IconView_combined.d.ts +164 -93
  110. package/lib/IconVisualModelExport.d.ts +2 -1
  111. package/lib/InputChangeEventArgs.d.ts +4 -2
  112. package/lib/InputGroupView_combined.d.ts +771 -771
  113. package/lib/NativeUIXInputsFactory.d.ts +6 -4
  114. package/lib/RippleView_combined.d.ts +19 -10
  115. package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
  116. package/lib/Theme.d.ts +15 -0
  117. package/lib/ThemeResolver.d.ts +44 -6
  118. package/lib/XButtonBridge.d.ts +23 -5
  119. package/lib/XCheckboxBridge.d.ts +3 -3
  120. package/lib/XComponentBridge.d.ts +2 -1
  121. package/lib/XIconBridge.d.ts +14 -0
  122. package/lib/XIconButtonBridge.d.ts +4 -4
  123. package/lib/XInputBridge.d.ts +11 -7
  124. package/lib/XPopupBridge.d.ts +52 -0
  125. package/lib/igc-button-click-event-args.d.ts +1 -1
  126. package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
  127. package/lib/igc-checkbox-change-event-args.d.ts +5 -3
  128. package/lib/igc-date-picker-component.d.ts +65 -34
  129. package/lib/igc-got-focus-event-args.d.ts +1 -1
  130. package/lib/igc-input-change-event-args.d.ts +5 -3
  131. package/lib/igc-lost-focus-event-args.d.ts +1 -1
  132. package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
  133. package/lib/igc-x-button-component.d.ts +399 -173
  134. package/lib/igc-x-button-group-component.d.ts +136 -70
  135. package/lib/igc-x-calendar-component.d.ts +53 -28
  136. package/lib/igc-x-checkbox-component.d.ts +71 -37
  137. package/lib/igc-x-icon-component.d.ts +140 -44
  138. package/lib/igc-x-input-component.d.ts +69 -32
  139. package/lib/igc-x-input-group-component.d.ts +325 -165
  140. package/lib/igc-x-input-group-item-component.d.ts +5 -4
  141. package/lib/igc-x-label-component.d.ts +52 -27
  142. package/lib/igc-x-prefix-component.d.ts +10 -6
  143. package/lib/igc-x-ripple-component.d.ts +31 -17
  144. package/lib/igc-x-suffix-component.d.ts +10 -6
  145. package/package.json +2 -2
  146. package/public_api.d.ts +3 -0
@@ -4,8 +4,12 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import { Base, Delegate_$type, fromEnum, runOn, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs, enumGetBox } from "igniteui-webcomponents-core";
7
+ import { Base, String_$type, Delegate_$type, fromEnum, runOn, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs, enumGetBox } from "igniteui-webcomponents-core";
8
8
  import { List$1 } from "igniteui-webcomponents-core";
9
+ import { Tuple$2 } from "igniteui-webcomponents-core";
10
+ import { SVGNode } from "igniteui-webcomponents-core";
11
+ import { FastIterationDictionary$2 } from "igniteui-webcomponents-core";
12
+ import { isNaN_ } from "igniteui-webcomponents-core";
9
13
  import { IIcon_$type } from "igniteui-webcomponents-core";
10
14
  import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
11
15
  import { NativeUI } from "igniteui-webcomponents-core";
@@ -13,7 +17,8 @@ import { IconClickedEventArgs } from "./IconClickedEventArgs";
13
17
  import { IconVisualModelExport } from "./IconVisualModelExport";
14
18
  import { AppearanceHelper } from "igniteui-webcomponents-core";
15
19
  import { FontUtil } from "igniteui-webcomponents-core";
16
- import { isNaN_ } from "igniteui-webcomponents-core";
20
+ import { stringStartsWith } from "igniteui-webcomponents-core";
21
+ import { trimStart } from "igniteui-webcomponents-core";
17
22
  /**
18
23
  * @hidden
19
24
  */
@@ -22,107 +27,135 @@ export let IconView = /*@__PURE__*/ (() => {
22
27
  constructor() {
23
28
  super();
24
29
  this.b = null;
25
- this.h = null;
26
- this.c = null;
27
- this.g = new List$1(Delegate_$type, 0);
28
- this.m = null;
29
- this.d = true;
30
- this.i = null;
30
+ this.o = null;
31
+ this.e = null;
32
+ this.i = new List$1(Delegate_$type, 0);
31
33
  this.j = null;
32
- }
33
- u() {
34
- }
35
- e() {
34
+ this.k = null;
35
+ this.l = null;
36
+ this.m = null;
37
+ this.n = null;
38
+ this.c = null;
39
+ this.d = null;
40
+ this.u = null;
41
+ this.t = null;
42
+ this.f = true;
43
+ this.p = null;
44
+ this.q = null;
45
+ this.j = new List$1(Tuple$2.$.specialize(SVGNode.$, Base.$), 0);
46
+ this.k = new List$1(Tuple$2.$.specialize(SVGNode.$, Base.$), 0);
47
+ this.l = new List$1(Tuple$2.$.specialize(SVGNode.$, Base.$), 0);
48
+ this.m = new List$1(Tuple$2.$.specialize(SVGNode.$, Base.$), 0);
49
+ this.n = new List$1(Tuple$2.$.specialize(SVGNode.$, Base.$), 0);
50
+ this.c = new FastIterationDictionary$2(String_$type, List$1.$.specialize(Tuple$2.$.specialize(SVGNode.$, Base.$)), 0);
51
+ this.d = new FastIterationDictionary$2(String_$type, List$1.$.specialize(Tuple$2.$.specialize(SVGNode.$, Base.$)), 0);
52
+ }
53
+ ac() {
54
+ }
55
+ g() {
36
56
  return true;
37
57
  }
38
- get k() {
39
- return this.i;
58
+ get r() {
59
+ return this.p;
40
60
  }
41
- get l() {
61
+ get s() {
42
62
  return null;
43
63
  }
44
- get f() {
64
+ get h() {
45
65
  return true;
46
66
  }
47
- s(a) {
67
+ aa(a) {
48
68
  if (a == null) {
49
- for (let b of fromEnum(this.g)) {
69
+ for (let b of fromEnum(this.i)) {
50
70
  b();
51
71
  }
52
- this.g.clear();
53
- if (this.i != null) {
54
- this.i.unlistenAll();
72
+ this.i.clear();
73
+ if (this.p != null) {
74
+ this.p.unlistenAll();
55
75
  }
56
76
  }
57
- this.h = a;
77
+ this.o = a;
58
78
  a.rootWrapper.setStyleProperty("position", "relative");
59
- this.h.rootWrapper.setStyleProperty("display", "flex");
60
- this.h.rootWrapper.setStyleProperty("flex-direction", "row");
61
- this.h.rootWrapper.setStyleProperty("flex-wrap", "no-wrap");
62
- this.h.rootWrapper.setStyleProperty("align-items", "center");
63
- this.w();
64
- let c = this.h.createElementNS("svg", "http://www.w3.org/2000/svg");
79
+ this.o.rootWrapper.setStyleProperty("display", "flex");
80
+ this.o.rootWrapper.setStyleProperty("flex-direction", "row");
81
+ this.o.rootWrapper.setStyleProperty("flex-wrap", "no-wrap");
82
+ this.o.rootWrapper.setStyleProperty("align-items", "center");
83
+ this.ae();
84
+ let c = this.o.createElementNS("svg", "http://www.w3.org/2000/svg");
65
85
  c.setStyleProperty("position", "absolute");
66
86
  c.setStyleProperty("top", "0");
67
87
  c.setStyleProperty("left", "0");
68
88
  c.setStyleProperty("right", "0");
69
89
  c.setStyleProperty("bottom", "0");
70
- c.setAttribute("viewBox", "0 0 24 24");
71
- this.i = c;
72
- let d = this.h.createElementNS("path", "http://www.w3.org/2000/svg");
90
+ this.p = c;
91
+ this.ai();
92
+ let d = this.o.createElementNS("path", "http://www.w3.org/2000/svg");
73
93
  d.setAttribute("d", "");
74
- this.i.append(d);
75
- if (this.m != null) {
76
- d.setAttribute("d", this.m);
94
+ this.p.append(d);
95
+ if (this.u != null) {
96
+ d.setAttribute("d", this.u);
97
+ }
98
+ this.q = d;
99
+ this.o.append(this.p);
100
+ this.i.add(c.listen("click", runOn(this, this.z)));
101
+ this.b.b6();
102
+ }
103
+ ag(a) {
104
+ if (this.u != a) {
105
+ this.u = a;
106
+ this.o.rootWrapper.removeChildren();
107
+ this.o.rootWrapper.append(this.p);
108
+ if (this.q != null) {
109
+ this.q.setAttribute("d", this.u);
110
+ }
77
111
  }
78
- this.j = d;
79
- this.h.append(this.i);
80
- this.g.add(c.listen("click", runOn(this, this.r)));
81
- this.b.bg();
82
112
  }
83
- x(a) {
84
- if (this.m != a) {
85
- this.m = a;
86
- if (this.j != null) {
87
- this.j.setAttribute("d", this.m);
88
- }
113
+ af(a) {
114
+ if (this.t != a) {
115
+ this.t = a;
116
+ this.o.rootWrapper.removeChildren();
117
+ let b = this.o.rootWrapper.getNativeElement();
118
+ b.innerHTML = this.t;
89
119
  }
90
120
  }
91
- w() {
92
- this.h.rootWrapper.setStyleProperty("width", "1.5rem");
93
- this.h.rootWrapper.setStyleProperty("height", "1.5rem");
121
+ ae() {
122
+ this.o.rootWrapper.setStyleProperty("width", isNaN_(this.b.ao) ? "1.5rem" : this.b.ao + "px");
123
+ this.o.rootWrapper.setStyleProperty("height", isNaN_(this.b.ag) ? "1.5rem" : this.b.ag + "px");
124
+ }
125
+ ai() {
126
+ this.p.setAttribute("viewBox", (isNaN_(this.b.al) ? 0 : this.b.al) + " " + (isNaN_(this.b.am) ? 0 : this.b.am) + " " + (isNaN_(this.b.an) ? 24 : this.b.an) + " " + (isNaN_(this.b.ak) ? 24 : this.b.ak));
94
127
  }
95
- n(a) {
128
+ v(a) {
96
129
  }
97
- v() {
98
- if (this.e()) {
130
+ ad() {
131
+ if (this.g()) {
99
132
  }
100
133
  }
101
- o(a) {
102
- this.b.bd();
134
+ w(a) {
135
+ this.b.b3();
103
136
  }
104
- p(a) {
105
- this.b.be();
137
+ x(a) {
138
+ this.b.b4();
106
139
  }
107
- q() {
108
- this.d = true;
109
- this.g.add(this.h.rootWrapper.listen("mouseenter", runOn(this, this.o)));
110
- this.g.add(this.h.rootWrapper.listen("mouseleave", runOn(this, this.p)));
140
+ y() {
141
+ this.f = true;
142
+ this.i.add(this.o.rootWrapper.listen("mouseenter", runOn(this, this.w)));
143
+ this.i.add(this.o.rootWrapper.listen("mouseleave", runOn(this, this.x)));
111
144
  }
112
- t() {
113
- this.d = false;
114
- for (let a of fromEnum(this.g)) {
145
+ ab() {
146
+ this.f = false;
147
+ for (let a of fromEnum(this.i)) {
115
148
  a();
116
149
  }
117
- this.g.clear();
150
+ this.i.clear();
118
151
  }
119
- y(a) {
152
+ ah(a) {
120
153
  if (a != null) {
121
- this.h.rootWrapper.setStyleProperty("font", a.fontString);
154
+ this.o.rootWrapper.setStyleProperty("font", a.fontString);
122
155
  }
123
156
  }
124
157
  a() {
125
- let rect_ = this.h.rootWrapper.getNativeElement().getBoundingClientRect();
158
+ let rect_ = this.o.rootWrapper.getNativeElement().getBoundingClientRect();
126
159
  let a = (rect_.top);
127
160
  let b = (rect_.left);
128
161
  let c = new Array(2);
@@ -130,8 +163,8 @@ export let IconView = /*@__PURE__*/ (() => {
130
163
  c[1] = b;
131
164
  return c;
132
165
  }
133
- r(a) {
134
- this.b.bb();
166
+ z(a) {
167
+ this.b.b1();
135
168
  }
136
169
  }
137
170
  IconView.$t = /*@__PURE__*/ markType(IconView, 'IconView');
@@ -145,37 +178,47 @@ export let XIcon = /*@__PURE__*/ (() => {
145
178
  constructor() {
146
179
  super();
147
180
  this._view = null;
148
- this.d = 0;
149
- this.bm = XIcon.b2;
150
- this.bq = XIcon.b6;
151
- this.bn = XIcon.b3;
152
- this.bo = XIcon.b4;
153
- this.bp = XIcon.b5;
154
- this.p = XIcon.w;
155
- this.q = XIcon.x;
156
- this.br = XIcon.b2;
157
- this.bw = XIcon.b6;
158
- this.ah = null;
159
- this.bs = XIcon.b3;
160
- this.bt = XIcon.b4;
161
- this.bv = XIcon.b5;
162
- this.r = XIcon.w;
163
- this.t = XIcon.x;
164
- this.f = null;
165
- this.bu = null;
166
- this.ag = "ig-icon-" + XIcon.ad++;
167
- this.ab = 0;
168
- this.h = false;
169
- this.af = null;
170
- this.j = false;
171
- this.i = false;
172
- this.s = 1;
181
+ this.h = 0;
182
+ this.cc = XIcon.cs;
183
+ this.cd = XIcon.cw;
184
+ this.ce = XIcon.cx;
185
+ this.t = XIcon.af;
186
+ this.cf = XIcon.cs;
187
+ this.cn = XIcon.cw;
188
+ this.x = XIcon.af;
189
+ this.co = XIcon.cx;
190
+ this.cg = XIcon.ct;
191
+ this.ch = XIcon.cu;
192
+ this.v = XIcon.ae;
193
+ this.ci = null;
194
+ this.a = null;
195
+ this.b = null;
196
+ this.cj = null;
197
+ this.ck = null;
198
+ this.cl = null;
199
+ this.cm = null;
200
+ this.aw = null;
201
+ this.av = null;
202
+ this.j = null;
203
+ this.au = "ig-icon-" + XIcon.ar++;
204
+ this.ap = 0;
205
+ this.l = false;
206
+ this.at = null;
207
+ this.n = false;
208
+ this.m = false;
209
+ this.w = 1;
210
+ this.z = NaN;
211
+ this.aa = NaN;
212
+ this.ab = NaN;
213
+ this.y = NaN;
214
+ this.ac = NaN;
215
+ this.u = NaN;
173
216
  this.clicked = null;
174
217
  this.propertyChanged = null;
175
218
  let a = new IconView();
176
219
  a.b = this;
177
220
  this.view = a;
178
- this.view.u();
221
+ this.view.ac();
179
222
  }
180
223
  get view() {
181
224
  return this._view;
@@ -186,360 +229,514 @@ export let XIcon = /*@__PURE__*/ (() => {
186
229
  destroy() {
187
230
  this.provideContainer(null);
188
231
  }
189
- bf(a, b, c) {
232
+ b5(a, b, c) {
190
233
  if (this.propertyChanged != null) {
191
234
  this.propertyChanged(this, new PropertyChangedEventArgs(a));
192
235
  }
193
- this.bh(a, b, c);
236
+ this.b7(a, b, c);
194
237
  }
195
- bh(a, b, c) {
238
+ b7(a, b, c) {
196
239
  switch (a) {
197
240
  case "Fill":
198
241
  case "Stroke":
199
- case "StrokeThickness":
242
+ case "StrokeWidth":
200
243
  case "HoverFill":
201
244
  case "HoverStroke":
202
245
  case "HoverStrokeThickness":
203
- this.bl();
246
+ case "IsHover":
247
+ this.cb();
204
248
  break;
205
249
  case "ActualFill":
206
250
  case "ActualStroke":
207
- case "ActualHoverFill":
208
- case "ActualHoverStroke":
209
- case "ActualStrokeThickness":
210
- case "ActualHoverStrokeThickness":
251
+ case "ActualStrokeWidth":
211
252
  case "SVGPath":
212
- this.bj();
253
+ case "SVG":
254
+ this.b9();
213
255
  break;
214
256
  case "Opacity":
215
- this.bk();
257
+ this.ca();
258
+ break;
259
+ case "ViewBoxLeft":
260
+ case "ViewBoxTop":
261
+ case "ViewBoxWidth":
262
+ case "ViewBoxHeight":
263
+ this.view.ai();
264
+ break;
265
+ case "Width":
266
+ case "Height":
267
+ this.view.ae();
216
268
  break;
217
269
  }
218
270
  }
219
- bl() {
220
- this.bx = this.fill != null ? this.fill : XIcon.b2;
221
- this.by = this.b7 != null ? this.b7 : XIcon.b3;
222
- this.b0 = this.ca != null ? this.ca : XIcon.b5;
223
- this.bz = this.b8 != null ? this.b8 : XIcon.b4;
224
- this.v = !isNaN_(this.aa) ? this.aa : XIcon.x;
225
- this.u = !isNaN_(this.y) ? this.y : XIcon.w;
226
- this.b1 = this.cb != null ? this.cb : XIcon.b6;
227
- }
228
- get l() {
229
- return this.svgPath != null && !this.view.f;
230
- }
231
- bk() {
232
- NativeUI.u(this.view.k, this.z);
233
- }
234
- bj() {
235
- let a = this.view.k;
236
- if (this.l) {
237
- let b = this.view.l;
238
- if (this.n) {
239
- NativeUI.p(b, this.by);
240
- NativeUI.w(b, this.bz);
241
- NativeUI.z(b, this.u);
242
- }
243
- else {
244
- NativeUI.p(b, this.bx);
245
- NativeUI.w(b, this.b0);
246
- NativeUI.z(b, this.v);
247
- }
271
+ cb() {
272
+ let a = this.fill != null ? this.fill : XIcon.cs;
273
+ let b = this.c5 != null ? this.c5 : XIcon.cw;
274
+ let c = !isNaN_(this.aj) ? this.aj : XIcon.af;
275
+ let d = this.c6 != null ? this.c6 : XIcon.cx;
276
+ if (this.r) {
277
+ this.cp = this.cy != null ? this.cy : a;
278
+ this.cq = this.cz != null ? this.cz : b;
279
+ this.ad = !isNaN_(this.ah) ? this.ah : c;
280
+ this.cr = this.c0 != null ? this.c0 : d;
248
281
  }
249
282
  else {
283
+ this.cp = a;
284
+ this.cq = b;
285
+ this.ad = c;
286
+ this.cr = d;
287
+ }
288
+ }
289
+ get p() {
290
+ return this.svgPath != null && !this.view.h;
291
+ }
292
+ ca() {
293
+ NativeUI.w(this.view.r, this.ai);
294
+ }
295
+ b9() {
296
+ let a = this.view.r;
297
+ if (this.p) {
298
+ let b = this.view.s;
299
+ NativeUI.q(b, this.cp);
300
+ NativeUI.y(b, this.cq);
301
+ NativeUI.ab(b, this.ad);
302
+ }
303
+ else {
304
+ let c = false;
250
305
  if (this.svgPath != null) {
251
- this.view.x(this.svgPath);
306
+ if (stringStartsWith(trimStart(this.svgPath, ' ', '\n', '\r', '\t'), "<svg")) {
307
+ this.view.af(this.svgPath);
308
+ c = true;
309
+ }
310
+ else {
311
+ this.view.ag(this.svgPath);
312
+ }
313
+ }
314
+ else if (this.svg != null) {
315
+ this.view.af(this.svg);
316
+ c = true;
252
317
  }
253
- let c = this.view.k;
254
- if (this.n) {
255
- if (this.by != null) {
256
- NativeUI.p(c, this.by);
318
+ if (c) {
319
+ for (let d = 0; d < this.view.k.count; d++) {
320
+ let e = this.view.k._inner[d].c;
321
+ NativeUI.q(this.view.k._inner[d].d, e.l.f(this.c1));
257
322
  }
258
- if (this.bz != null) {
259
- NativeUI.w(c, this.bz);
323
+ for (let f = 0; f < this.view.l.count; f++) {
324
+ let g = this.view.l._inner[f].c;
325
+ NativeUI.y(this.view.l._inner[f].d, g.m.f(this.c2));
260
326
  }
261
- if (!isNaN_(this.u)) {
262
- NativeUI.z(c, this.u);
327
+ for (let h = 0; h < this.view.m.count; h++) {
328
+ let i = this.view.m._inner[h].c;
329
+ NativeUI.q(this.view.m._inner[h].d, i.l.f(this.c3));
263
330
  }
264
- }
265
- else {
266
- if (this.bx != null) {
267
- NativeUI.p(c, this.bx);
331
+ for (let j = 0; j < this.view.n.count; j++) {
332
+ let k = this.view.n._inner[j].c;
333
+ NativeUI.y(this.view.n._inner[j].d, k.m.f(this.c4));
268
334
  }
269
- if (this.b0 != null) {
270
- NativeUI.w(c, this.b0);
335
+ for (let l = 0; l < this.view.c.o.count; l++) {
336
+ let m = this.view.c.o._inner[l];
337
+ let n = m.split('-');
338
+ let o = parseInt(n[n.length - 1]);
339
+ if (o < this.c.count) {
340
+ for (let p = 0; p < this.view.c.q._inner[l].count; p++) {
341
+ let q = this.view.c.q._inner[l]._inner[p].c;
342
+ NativeUI.q(this.view.c.q._inner[l]._inner[p].d, q.l.f(this.c.item(o)));
343
+ }
344
+ }
271
345
  }
272
- if (!isNaN_(this.v)) {
273
- NativeUI.z(c, this.v);
346
+ for (let r = 0; r < this.view.d.o.count; r++) {
347
+ let s = this.view.d.o._inner[r];
348
+ let t = s.split('-');
349
+ let u = parseInt(t[t.length - 1]);
350
+ if (u < this.d.count) {
351
+ for (let v = 0; v < this.view.d.q._inner[r].count; v++) {
352
+ let w = this.view.d.q._inner[r]._inner[v].c;
353
+ NativeUI.y(this.view.d.q._inner[r]._inner[v].d, w.m.f(this.d.item(u)));
354
+ }
355
+ }
274
356
  }
357
+ for (let x = 0; x < this.view.j.count; x++) {
358
+ let y = this.view.j._inner[x].c;
359
+ NativeUI.q(this.view.j._inner[x].d, y.l.f(this.cp));
360
+ NativeUI.y(this.view.j._inner[x].d, y.m.f(this.cq));
361
+ }
362
+ }
363
+ let z = this.view.r;
364
+ if (this.cp != null) {
365
+ NativeUI.q(z, this.cp);
366
+ }
367
+ if (this.cq != null) {
368
+ NativeUI.y(z, this.cq);
369
+ }
370
+ if (!isNaN_(this.ad)) {
371
+ NativeUI.ab(z, this.ad);
275
372
  }
276
373
  }
277
- if (this.g != null) {
278
- this.view.y(this.g);
374
+ if (this.k != null) {
375
+ this.view.ah(this.k);
279
376
  }
280
- if (this.b1 != null) {
281
- NativeUI.o(this.view.k, this.b1);
377
+ if (this.cr != null) {
378
+ NativeUI.p(this.view.r, this.cr);
282
379
  }
283
380
  }
284
- get e() {
285
- return this.d;
381
+ get i() {
382
+ return this.h;
286
383
  }
287
- set e(a) {
288
- let b = this.d;
289
- this.d = a;
290
- if (b != this.d) {
291
- this.bf("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
384
+ set i(a) {
385
+ let b = this.h;
386
+ this.h = a;
387
+ if (b != this.h) {
388
+ this.b5("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
292
389
  }
293
390
  }
294
- get bx() {
295
- return this.bm;
391
+ get cp() {
392
+ return this.cc;
296
393
  }
297
- set bx(a) {
298
- let b = this.bm;
299
- this.bm = a;
300
- if (b != this.bm) {
301
- this.bf("ActualFill", b, a);
394
+ set cp(a) {
395
+ let b = this.cc;
396
+ this.cc = a;
397
+ if (b != this.cc) {
398
+ this.b5("ActualFill", b, a);
302
399
  }
303
400
  }
304
- get b1() {
305
- return this.bq;
401
+ get cq() {
402
+ return this.cd;
306
403
  }
307
- set b1(a) {
308
- let b = this.bq;
309
- this.bq = a;
310
- if (b != this.bq) {
311
- this.bf("ActualTextColor", b, a);
404
+ set cq(a) {
405
+ let b = this.cd;
406
+ this.cd = a;
407
+ if (b != this.cd) {
408
+ this.b5("ActualStroke", b, a);
312
409
  }
313
410
  }
314
- get by() {
315
- return this.bn;
411
+ get cr() {
412
+ return this.ce;
316
413
  }
317
- set by(a) {
318
- let b = this.bn;
319
- this.bn = a;
320
- if (b != this.bn) {
321
- this.bf("ActualHoverFill", b, a);
414
+ set cr(a) {
415
+ let b = this.ce;
416
+ this.ce = a;
417
+ if (b != this.ce) {
418
+ this.b5("ActualTextColor", b, a);
322
419
  }
323
420
  }
324
- get bz() {
325
- return this.bo;
421
+ get ad() {
422
+ return this.t;
326
423
  }
327
- set bz(a) {
328
- let b = this.bo;
329
- this.bo = a;
330
- if (b != this.bo) {
331
- this.bf("ActualHoverStroke", b, a);
424
+ set ad(a) {
425
+ let b = this.t;
426
+ this.t = a;
427
+ if (b != this.t) {
428
+ this.b5("ActualStrokeWidth", b, a);
332
429
  }
333
430
  }
334
- get b0() {
335
- return this.bp;
431
+ get fill() {
432
+ return this.cf;
336
433
  }
337
- set b0(a) {
338
- let b = this.bp;
339
- this.bp = a;
340
- if (b != this.bp) {
341
- this.bf("ActualStroke", b, a);
434
+ set fill(a) {
435
+ let b = this.cf;
436
+ this.cf = a;
437
+ if (b != this.cf) {
438
+ this.b5("Fill", b, a);
342
439
  }
343
440
  }
344
- get u() {
345
- return this.p;
441
+ get c5() {
442
+ return this.cn;
346
443
  }
347
- set u(a) {
348
- let b = this.p;
349
- this.p = a;
350
- if (b != this.p) {
351
- this.bf("ActualHoverStrokeThickness", b, a);
444
+ set c5(a) {
445
+ let b = this.cn;
446
+ this.cn = a;
447
+ if (b != this.cn) {
448
+ this.b5("Stroke", b, a);
352
449
  }
353
450
  }
354
- get v() {
355
- return this.q;
451
+ get aj() {
452
+ return this.x;
356
453
  }
357
- set v(a) {
358
- let b = this.q;
359
- this.q = a;
360
- if (b != this.q) {
361
- this.bf("ActualStrokeThickness", b, a);
454
+ set aj(a) {
455
+ let b = this.x;
456
+ this.x = a;
457
+ if (b != this.x) {
458
+ this.b5("StrokeWidth", b, a);
362
459
  }
363
460
  }
364
- get fill() {
365
- return this.br;
461
+ get c6() {
462
+ return this.co;
366
463
  }
367
- set fill(a) {
368
- let b = this.br;
369
- this.br = a;
370
- if (b != this.br) {
371
- this.bf("Fill", b, a);
464
+ set c6(a) {
465
+ let b = this.co;
466
+ this.co = a;
467
+ if (b != this.co) {
468
+ this.b5("TextColor", b, a);
372
469
  }
373
470
  }
374
- get cb() {
375
- return this.bw;
471
+ get cy() {
472
+ return this.cg;
376
473
  }
377
- set cb(a) {
378
- let b = this.bw;
379
- this.bw = a;
380
- if (b != this.bw) {
381
- this.bf("TextColor", b, a);
474
+ set cy(a) {
475
+ let b = this.cg;
476
+ this.cg = a;
477
+ if (b != this.cg) {
478
+ this.b5("HoverFill", b, a);
382
479
  }
383
480
  }
384
- get svgPath() {
385
- return this.ah;
481
+ get cz() {
482
+ return this.ch;
386
483
  }
387
- set svgPath(a) {
388
- let b = this.ah;
389
- this.ah = a;
390
- if (b != this.ah) {
391
- this.bf("SVGPath", b, a);
484
+ set cz(a) {
485
+ let b = this.ch;
486
+ this.ch = a;
487
+ if (b != this.ch) {
488
+ this.b5("HoverStroke", b, a);
392
489
  }
393
490
  }
394
- get b7() {
395
- return this.bs;
491
+ get ah() {
492
+ return this.v;
396
493
  }
397
- set b7(a) {
398
- let b = this.bs;
399
- this.bs = a;
400
- if (b != this.bs) {
401
- this.bf("HoverFill", b, a);
494
+ set ah(a) {
495
+ let b = this.v;
496
+ this.v = a;
497
+ if (b != this.v) {
498
+ this.b5("HoverStrokeThickness", b, a);
402
499
  }
403
500
  }
404
- get b8() {
405
- return this.bt;
501
+ get c0() {
502
+ return this.ci;
406
503
  }
407
- set b8(a) {
408
- let b = this.bt;
409
- this.bt = a;
410
- if (b != this.bt) {
411
- this.bf("HoverStroke", b, a);
504
+ set c0(a) {
505
+ let b = this.ci;
506
+ this.ci = a;
507
+ if (b != this.ci) {
508
+ this.b5("HoverTextColor", b, a);
412
509
  }
413
510
  }
414
- get ca() {
415
- return this.bv;
511
+ get c() {
512
+ return this.a;
416
513
  }
417
- set ca(a) {
418
- let b = this.bv;
419
- this.bv = a;
420
- if (b != this.bv) {
421
- this.bf("Stroke", b, a);
514
+ set c(a) {
515
+ let b = this.a;
516
+ this.a = a;
517
+ if (b != this.a) {
518
+ this.b5("FillColors", b, this.a);
422
519
  }
423
520
  }
424
- get y() {
425
- return this.r;
521
+ get d() {
522
+ return this.b;
426
523
  }
427
- set y(a) {
428
- let b = this.r;
429
- this.r = a;
430
- if (b != this.r) {
431
- this.bf("HoverStrokeThickness", b, a);
524
+ set d(a) {
525
+ let b = this.b;
526
+ this.b = a;
527
+ if (b != this.b) {
528
+ this.b5("StrokeColors", b, this.b);
432
529
  }
433
530
  }
434
- get aa() {
435
- return this.t;
531
+ get c1() {
532
+ return this.cj;
436
533
  }
437
- set aa(a) {
438
- let b = this.t;
439
- this.t = a;
440
- if (b != this.t) {
441
- this.bf("StrokeThickness", b, a);
534
+ set c1(a) {
535
+ let b = this.cj;
536
+ this.cj = a;
537
+ if (b != this.cj) {
538
+ this.b5("PrimaryFillColor", b, this.cj);
442
539
  }
443
540
  }
444
- bd() {
445
- this.n = true;
541
+ get c2() {
542
+ return this.ck;
446
543
  }
447
- be() {
448
- this.n = false;
544
+ set c2(a) {
545
+ let b = this.ck;
546
+ this.ck = a;
547
+ if (b != this.ck) {
548
+ this.b5("PrimaryStrokeColor", b, this.ck);
549
+ }
449
550
  }
450
- get g() {
451
- return this.f;
551
+ get c3() {
552
+ return this.cl;
452
553
  }
453
- set g(a) {
454
- let b = this.f;
455
- this.f = a;
456
- if (b != this.f) {
457
- this.bf("TextStyle", b, a);
554
+ set c3(a) {
555
+ let b = this.cl;
556
+ this.cl = a;
557
+ if (b != this.cl) {
558
+ this.b5("SecondaryFillColor", b, this.cl);
458
559
  }
459
560
  }
460
- get b9() {
461
- return this.bu;
561
+ get c4() {
562
+ return this.cm;
462
563
  }
463
- set b9(a) {
464
- let b = this.bu;
465
- this.bu = a;
466
- if (b != this.bu) {
467
- this.bf("HoverTextColor", b, a);
564
+ set c4(a) {
565
+ let b = this.cm;
566
+ this.cm = a;
567
+ if (b != this.cm) {
568
+ this.b5("SecondaryStrokeColor", b, this.cm);
468
569
  }
469
570
  }
470
- get ay() {
471
- return this.ag;
571
+ get svgPath() {
572
+ return this.aw;
472
573
  }
473
- set ay(a) {
474
- let b = this.ag;
475
- this.ag = a;
476
- if (b != this.ag) {
477
- this.bf("Id", b, a);
574
+ set svgPath(a) {
575
+ let b = this.aw;
576
+ this.aw = a;
577
+ if (b != this.aw) {
578
+ this.b5("SVGPath", b, a);
478
579
  }
479
580
  }
480
- get k() {
481
- return this.h;
482
- }
483
- get ac() {
484
- return this.ab;
581
+ get svg() {
582
+ return this.av;
485
583
  }
486
- set ac(a) {
487
- let b = this.ab;
488
- this.ab = a;
489
- this.h = true;
490
- if (b != this.ab) {
491
- this.bf("TabIndex", b, a);
584
+ set svg(a) {
585
+ let b = this.av;
586
+ this.av = a;
587
+ if (b != this.av) {
588
+ this.b5("SVG", b, this.av);
492
589
  }
493
590
  }
494
- get ap() {
495
- return this.af;
591
+ b3() {
592
+ this.r = true;
496
593
  }
497
- set ap(a) {
498
- let b = this.af;
499
- this.af = a;
500
- if (b != this.af) {
501
- this.bf("AriaLabel", b, a);
502
- }
594
+ b4() {
595
+ this.r = false;
503
596
  }
504
- get n() {
597
+ get k() {
505
598
  return this.j;
506
599
  }
507
- set n(a) {
600
+ set k(a) {
508
601
  let b = this.j;
509
602
  this.j = a;
510
603
  if (b != this.j) {
511
- this.bf("IsHover", b, a);
604
+ this.b5("TextStyle", b, a);
605
+ }
606
+ }
607
+ get bc() {
608
+ return this.au;
609
+ }
610
+ set bc(a) {
611
+ let b = this.au;
612
+ this.au = a;
613
+ if (b != this.au) {
614
+ this.b5("Id", b, a);
615
+ }
616
+ }
617
+ get o() {
618
+ return this.l;
619
+ }
620
+ get aq() {
621
+ return this.ap;
622
+ }
623
+ set aq(a) {
624
+ let b = this.ap;
625
+ this.ap = a;
626
+ this.l = true;
627
+ if (b != this.ap) {
628
+ this.b5("TabIndex", b, a);
629
+ }
630
+ }
631
+ get a1() {
632
+ return this.at;
633
+ }
634
+ set a1(a) {
635
+ let b = this.at;
636
+ this.at = a;
637
+ if (b != this.at) {
638
+ this.b5("AriaLabel", b, a);
639
+ }
640
+ }
641
+ get r() {
642
+ return this.n;
643
+ }
644
+ set r(a) {
645
+ let b = this.n;
646
+ this.n = a;
647
+ if (b != this.n) {
648
+ this.b5("IsHover", b, a);
512
649
  }
513
650
  }
514
651
  get disabled() {
515
- return this.i;
652
+ return this.m;
516
653
  }
517
654
  set disabled(a) {
518
- let b = this.i;
519
- this.i = a;
520
- if (b != this.i) {
521
- this.bf("IsDisabled", b, a);
655
+ let b = this.m;
656
+ this.m = a;
657
+ if (b != this.m) {
658
+ this.b5("IsDisabled", b, a);
522
659
  }
523
660
  }
524
- get z() {
525
- return this.s;
661
+ get ai() {
662
+ return this.w;
526
663
  }
527
- set z(a) {
528
- let b = this.s;
529
- this.s = a;
530
- if (b != this.s) {
531
- this.bf("Opacity", b, this.s);
664
+ set ai(a) {
665
+ let b = this.w;
666
+ this.w = a;
667
+ if (b != this.w) {
668
+ this.b5("Opacity", b, this.w);
532
669
  }
533
670
  }
534
- bg() {
671
+ get al() {
672
+ return this.z;
673
+ }
674
+ set al(a) {
675
+ let b = this.z;
676
+ this.z = a;
677
+ if (b != this.z) {
678
+ this.b5("ViewBoxLeft", b, this.z);
679
+ }
680
+ }
681
+ get am() {
682
+ return this.aa;
683
+ }
684
+ set am(a) {
685
+ let b = this.aa;
686
+ this.aa = a;
687
+ if (b != this.aa) {
688
+ this.b5("ViewBoxTop", b, this.aa);
689
+ }
690
+ }
691
+ get an() {
692
+ return this.ab;
693
+ }
694
+ set an(a) {
695
+ let b = this.ab;
696
+ this.ab = a;
697
+ if (b != this.ab) {
698
+ this.b5("ViewBoxWidth", b, this.ab);
699
+ }
700
+ }
701
+ get ak() {
702
+ return this.y;
703
+ }
704
+ set ak(a) {
705
+ let b = this.y;
706
+ this.y = a;
707
+ if (b != this.y) {
708
+ this.b5("ViewBoxHeight", b, this.y);
709
+ }
710
+ }
711
+ get ao() {
712
+ return this.ac;
713
+ }
714
+ set ao(a) {
715
+ let b = this.ac;
716
+ this.ac = a;
717
+ if (b != this.ac) {
718
+ this.b5("Width", b, this.ac);
719
+ }
720
+ }
721
+ get ag() {
722
+ return this.u;
723
+ }
724
+ set ag(a) {
725
+ let b = this.u;
726
+ this.u = a;
727
+ if (b != this.u) {
728
+ this.b5("Height", b, this.u);
729
+ }
730
+ }
731
+ b6() {
535
732
  }
536
733
  onDetachedFromUI() {
537
- this.view.t();
734
+ this.view.ab();
538
735
  }
539
736
  onAttachedToUI() {
540
- this.view.q();
737
+ this.view.y();
541
738
  }
542
- bb() {
739
+ b1() {
543
740
  if (this.disabled) {
544
741
  return;
545
742
  }
@@ -547,33 +744,33 @@ export let XIcon = /*@__PURE__*/ (() => {
547
744
  this.clicked(this, new IconClickedEventArgs());
548
745
  }
549
746
  }
550
- o() {
551
- return this.view.e();
552
- }
553
- ae() {
554
- return this.a();
747
+ s() {
748
+ return this.view.g();
555
749
  }
556
750
  as() {
557
- let a = this.a();
751
+ return this.e();
752
+ }
753
+ a4() {
754
+ let a = this.e();
558
755
  return a.j();
559
756
  }
560
- a() {
757
+ e() {
561
758
  let a = new IconVisualModelExport();
562
- let b = this.view.k;
563
- a.a = AppearanceHelper.a(NativeUI.ah(b));
564
- a.c = AppearanceHelper.a(NativeUI.ah(b));
565
- a.b = AppearanceHelper.a(NativeUI.ai(b));
566
- a.d = this.v;
759
+ let b = this.view.r;
760
+ a.a = AppearanceHelper.a(NativeUI.aj(b));
761
+ a.c = AppearanceHelper.a(NativeUI.aj(b));
762
+ a.b = AppearanceHelper.a(NativeUI.ak(b));
763
+ a.d = this.ad;
567
764
  let c = this.view.a();
568
765
  a.h = c[0];
569
766
  a.f = c[1];
570
- a.e = NativeUI.c(b);
571
- a.i = NativeUI.i(b);
767
+ a.e = NativeUI.d(b);
768
+ a.i = NativeUI.j(b);
572
769
  a.svgPath = this.svgPath;
573
- if (this.g != null) {
574
- let d = this.g;
770
+ if (this.k != null) {
771
+ let d = this.k;
575
772
  if (this.view != null && d.n == null) {
576
- let e = this.view.h;
773
+ let e = this.view.o;
577
774
  let f = FontUtil.getFontInfoFromString(e, d.fontString);
578
775
  d.n = f.n;
579
776
  d.d = f.d;
@@ -601,17 +798,18 @@ export let XIcon = /*@__PURE__*/ (() => {
601
798
  return a;
602
799
  }
603
800
  provideContainer(a) {
604
- this.view.s(a);
801
+ this.view.aa(a);
605
802
  }
606
803
  }
607
804
  XIcon.$t = /*@__PURE__*/ markType(XIcon, 'XIcon', Base.$, [INotifyPropertyChanged_$type, IIcon_$type]);
608
- XIcon.b2 = null;
609
- XIcon.b6 = null;
610
- XIcon.b5 = null;
611
- XIcon.b3 = null;
612
- XIcon.b4 = null;
613
- XIcon.x = 0;
614
- XIcon.w = 0;
615
- XIcon.ad = 0;
805
+ XIcon.cs = null;
806
+ XIcon.cx = null;
807
+ XIcon.cw = null;
808
+ XIcon.ct = null;
809
+ XIcon.cu = null;
810
+ XIcon.cv = null;
811
+ XIcon.af = NaN;
812
+ XIcon.ae = NaN;
813
+ XIcon.ar = 0;
616
814
  return XIcon;
617
815
  })();