igniteui-angular-inputs 18.1.1 → 18.2.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-angular-inputs.umd.js +16857 -7563
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +19 -19
- package/esm2015/lib/ButtonView_combined.js +820 -790
- package/esm2015/lib/CalendarView_combined.js +82 -82
- package/esm2015/lib/ColorEditor.js +7 -0
- package/esm2015/lib/ColorEditorBridge.js +7 -0
- package/esm2015/lib/ColorEditorGotFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorLostFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanel.js +7 -0
- package/esm2015/lib/ColorEditorPanelClosedEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +33 -0
- package/esm2015/lib/ColorEditorPanelView.js +7 -0
- package/esm2015/lib/ColorEditorView.js +7 -0
- package/esm2015/lib/DatePickerView_combined.js +18 -18
- package/esm2015/lib/DefaultMultiSliderTrackBarVisual.js +113 -0
- package/esm2015/lib/DefaultMultiSliderTrackRangeVisual.js +208 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +170 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbVisual.js +193 -0
- package/esm2015/lib/DefaultMultiTrackShadeVisual.js +172 -0
- package/esm2015/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm2015/lib/ISliderTrackOwner.js +11 -0
- package/esm2015/lib/IconClickedEventArgs.js +10 -0
- package/esm2015/lib/IconView_combined.js +345 -314
- package/esm2015/lib/InputGroupView_combined.js +456 -355
- package/esm2015/lib/MultiSlider.js +7 -0
- package/esm2015/lib/MultiSliderBridge.js +165 -0
- package/esm2015/lib/MultiSliderCursor.js +11 -0
- package/esm2015/lib/MultiSliderHitInfo.js +22 -0
- package/esm2015/lib/MultiSliderOrientation.js +17 -0
- package/esm2015/lib/MultiSliderResolvingToolTipValueEventArgs.js +33 -0
- package/esm2015/lib/MultiSliderThumb.js +7 -0
- package/esm2015/lib/MultiSliderThumbCollection.js +21 -0
- package/esm2015/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm2015/lib/MultiSliderThumbValueChangingEventArgs.js +21 -0
- package/esm2015/lib/MultiSliderThumb_combined.js +297 -0
- package/esm2015/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm2015/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm2015/lib/MultiSliderView.js +7 -0
- package/esm2015/lib/MultiSliderView_combined.js +1785 -0
- package/esm2015/lib/MultiSliderVisualArea.js +11 -0
- package/esm2015/lib/MultiSliderYValueChangingEventArgs.js +20 -0
- package/esm2015/lib/NativeUIXInputsFactory.js +1 -179
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +2113 -0
- package/esm2015/lib/XButtonBridge.js +25 -20
- package/esm2015/lib/XButtonGroupBridge.js +177 -0
- package/esm2015/lib/XComponentBridge.js +3 -0
- package/esm2015/lib/XIconBridge.js +20 -16
- package/esm2015/lib/XInputBridge.js +274 -26
- package/esm2015/lib/XPopupBridge.js +117 -98
- package/esm2015/lib/igx-color-editor-component.js +470 -0
- package/esm2015/lib/igx-color-editor-dynamic-module.js +45 -0
- package/esm2015/lib/igx-color-editor-got-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-lost-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-module.js +39 -0
- package/esm2015/lib/igx-color-editor-panel-closed-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-panel-component.js +376 -0
- package/esm2015/lib/igx-color-editor-panel-dynamic-module.js +66 -0
- package/esm2015/lib/igx-color-editor-panel-module.js +60 -0
- package/esm2015/lib/igx-color-editor-panel-selected-value-changed-event-args.js +40 -0
- package/esm2015/lib/igx-multi-slider-component.js +642 -0
- package/esm2015/lib/igx-multi-slider-dynamic-module.js +38 -0
- package/esm2015/lib/igx-multi-slider-module.js +36 -0
- package/esm2015/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +39 -0
- package/esm2015/lib/igx-multi-slider-thumb-collection.js +53 -0
- package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +56 -0
- package/esm2015/lib/igx-multi-slider-thumb.js +111 -0
- package/esm2015/lib/igx-multi-slider-track-thumb-range.js +119 -0
- package/esm2015/lib/igx-multi-slider-y-value-changing-event-args.js +33 -0
- package/esm2015/lib/igx-x-button-component.js +262 -262
- package/esm2015/lib/igx-x-icon-component.js +66 -55
- package/esm2015/lib/igx-x-input-group-component.js +48 -48
- package/esm2015/lib/igx-x-label-component.js +41 -40
- package/esm2015/public_api.js +55 -0
- package/esm5/lib/ButtonGroupView_combined.js +19 -19
- package/esm5/lib/ButtonView_combined.js +765 -735
- package/esm5/lib/CalendarView_combined.js +82 -82
- package/esm5/lib/ColorEditor.js +7 -0
- package/esm5/lib/ColorEditorBridge.js +7 -0
- package/esm5/lib/ColorEditorGotFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorLostFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanel.js +7 -0
- package/esm5/lib/ColorEditorPanelClosedEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +43 -0
- package/esm5/lib/ColorEditorPanelView.js +7 -0
- package/esm5/lib/ColorEditorView.js +7 -0
- package/esm5/lib/DatePickerView_combined.js +18 -18
- package/esm5/lib/DefaultMultiSliderTrackBarVisual.js +139 -0
- package/esm5/lib/DefaultMultiSliderTrackRangeVisual.js +242 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +212 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbVisual.js +227 -0
- package/esm5/lib/DefaultMultiTrackShadeVisual.js +206 -0
- package/esm5/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm5/lib/ISliderTrackOwner.js +11 -0
- package/esm5/lib/IconClickedEventArgs.js +13 -1
- package/esm5/lib/IconView_combined.js +336 -301
- package/esm5/lib/InputGroupView_combined.js +444 -343
- package/esm5/lib/MultiSlider.js +7 -0
- package/esm5/lib/MultiSliderBridge.js +167 -0
- package/esm5/lib/MultiSliderCursor.js +11 -0
- package/esm5/lib/MultiSliderHitInfo.js +24 -0
- package/esm5/lib/MultiSliderOrientation.js +17 -0
- package/esm5/lib/MultiSliderResolvingToolTipValueEventArgs.js +43 -0
- package/esm5/lib/MultiSliderThumb.js +7 -0
- package/esm5/lib/MultiSliderThumbCollection.js +22 -0
- package/esm5/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm5/lib/MultiSliderThumbValueChangingEventArgs.js +23 -0
- package/esm5/lib/MultiSliderThumb_combined.js +352 -0
- package/esm5/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm5/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm5/lib/MultiSliderView.js +7 -0
- package/esm5/lib/MultiSliderView_combined.js +2006 -0
- package/esm5/lib/MultiSliderVisualArea.js +11 -0
- package/esm5/lib/MultiSliderYValueChangingEventArgs.js +22 -0
- package/esm5/lib/NativeUIXInputsFactory.js +1 -189
- package/esm5/lib/NativeUIXInputsFactory_combined.js +2298 -0
- package/esm5/lib/XButtonBridge.js +25 -20
- package/esm5/lib/XButtonGroupBridge.js +179 -0
- package/esm5/lib/XComponentBridge.js +3 -0
- package/esm5/lib/XIconBridge.js +20 -16
- package/esm5/lib/XInputBridge.js +274 -26
- package/esm5/lib/XPopupBridge.js +117 -98
- package/esm5/lib/igx-color-editor-component.js +555 -0
- package/esm5/lib/igx-color-editor-dynamic-module.js +44 -0
- package/esm5/lib/igx-color-editor-got-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-lost-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-module.js +38 -0
- package/esm5/lib/igx-color-editor-panel-closed-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-panel-component.js +435 -0
- package/esm5/lib/igx-color-editor-panel-dynamic-module.js +65 -0
- package/esm5/lib/igx-color-editor-panel-module.js +59 -0
- package/esm5/lib/igx-color-editor-panel-selected-value-changed-event-args.js +54 -0
- package/esm5/lib/igx-multi-slider-component.js +842 -0
- package/esm5/lib/igx-multi-slider-dynamic-module.js +37 -0
- package/esm5/lib/igx-multi-slider-module.js +35 -0
- package/esm5/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +53 -0
- package/esm5/lib/igx-multi-slider-thumb-collection.js +58 -0
- package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +70 -0
- package/esm5/lib/igx-multi-slider-thumb.js +134 -0
- package/esm5/lib/igx-multi-slider-track-thumb-range.js +149 -0
- package/esm5/lib/igx-multi-slider-y-value-changing-event-args.js +43 -0
- package/esm5/lib/igx-x-button-component.js +262 -262
- package/esm5/lib/igx-x-icon-component.js +70 -55
- package/esm5/lib/igx-x-input-group-component.js +48 -48
- package/esm5/lib/igx-x-label-component.js +41 -40
- package/esm5/public_api.js +55 -0
- package/fesm2015/igniteui-angular-inputs.js +15626 -7466
- package/fesm5/igniteui-angular-inputs.js +16802 -7565
- package/lib/ButtonView_combined.d.ts +243 -241
- package/lib/ColorEditor.d.ts +1 -0
- package/lib/ColorEditorBridge.d.ts +1 -0
- package/lib/ColorEditorGotFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorLostFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanel.d.ts +1 -0
- package/lib/ColorEditorPanelClosedEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanelSelectedValueChangedEventArgs.d.ts +14 -0
- package/lib/ColorEditorPanelView.d.ts +1 -0
- package/lib/ColorEditorView.d.ts +1 -0
- package/lib/DefaultMultiSliderTrackBarVisual.d.ts +34 -0
- package/lib/DefaultMultiSliderTrackRangeVisual.d.ts +43 -0
- package/lib/DefaultMultiSliderTrackThumbCalloutVisual.d.ts +49 -0
- package/lib/DefaultMultiSliderTrackThumbVisual.d.ts +45 -0
- package/lib/DefaultMultiTrackShadeVisual.d.ts +42 -0
- package/lib/IMultiSliderTrackBarVisual.d.ts +21 -0
- package/lib/IMultiSliderTrackRangeVisual.d.ts +25 -0
- package/lib/IMultiSliderTrackShadeVisual.d.ts +24 -0
- package/lib/IMultiSliderTrackThumbCalloutVisual.d.ts +27 -0
- package/lib/IMultiSliderTrackThumbVisual.d.ts +27 -0
- package/lib/ISliderTrackOwner.d.ts +15 -0
- package/lib/IconClickedEventArgs.d.ts +3 -0
- package/lib/IconView_combined.d.ts +88 -84
- package/lib/InputGroupView_combined.d.ts +120 -113
- package/lib/MultiSlider.d.ts +1 -0
- package/lib/MultiSliderBridge.d.ts +24 -0
- package/lib/MultiSliderCursor.d.ts +15 -0
- package/lib/MultiSliderHitInfo.d.ts +13 -0
- package/lib/MultiSliderOrientation.d.ts +10 -0
- package/lib/MultiSliderResolvingToolTipValueEventArgs.d.ts +13 -0
- package/lib/MultiSliderThumb.d.ts +1 -0
- package/lib/MultiSliderThumbCollection.d.ts +10 -0
- package/lib/MultiSliderThumbRangePosition.d.ts +9 -0
- package/lib/MultiSliderThumbValueChangingEventArgs.d.ts +10 -0
- package/lib/MultiSliderThumb_combined.d.ts +76 -0
- package/lib/MultiSliderTrackShadeOrientation.d.ts +14 -0
- package/lib/MultiSliderTrackThumbRange.d.ts +1 -0
- package/lib/MultiSliderView.d.ts +1 -0
- package/lib/MultiSliderView_combined.d.ts +298 -0
- package/lib/MultiSliderVisualArea.d.ts +14 -0
- package/lib/MultiSliderYValueChangingEventArgs.d.ts +8 -0
- package/lib/NativeUIXInputsFactory.d.ts +1 -24
- package/lib/NativeUIXInputsFactory_combined.d.ts +393 -0
- package/lib/XButtonGroupBridge.d.ts +29 -0
- package/lib/XInputBridge.d.ts +29 -5
- package/lib/XPopupBridge.d.ts +12 -9
- package/lib/igx-color-editor-component.d.ts +161 -0
- package/lib/igx-color-editor-dynamic-module.d.ts +10 -0
- package/lib/igx-color-editor-got-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-lost-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-module.d.ts +10 -0
- package/lib/igx-color-editor-panel-closed-event-args.d.ts +12 -0
- package/lib/igx-color-editor-panel-component.d.ts +125 -0
- package/lib/igx-color-editor-panel-dynamic-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-selected-value-changed-event-args.d.ts +16 -0
- package/lib/igx-multi-slider-component.d.ts +200 -0
- package/lib/igx-multi-slider-dynamic-module.d.ts +9 -0
- package/lib/igx-multi-slider-module.d.ts +9 -0
- package/lib/igx-multi-slider-resolving-tool-tip-value-event-args.d.ts +17 -0
- package/lib/igx-multi-slider-thumb-collection.d.ts +8 -0
- package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +18 -0
- package/lib/igx-multi-slider-thumb.d.ts +33 -0
- package/lib/igx-multi-slider-track-thumb-range.d.ts +32 -0
- package/lib/igx-multi-slider-y-value-changing-event-args.d.ts +15 -0
- package/lib/igx-x-icon-component.d.ts +6 -1
- package/package.json +2 -2
- package/public_api.d.ts +55 -0
|
@@ -92,10 +92,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
92
92
|
* Gets the fill color currently used by the icon.
|
|
93
93
|
*/
|
|
94
94
|
get: function () {
|
|
95
|
-
return brushToString(this.i.
|
|
95
|
+
return brushToString(this.i.cz);
|
|
96
96
|
},
|
|
97
97
|
set: function (v) {
|
|
98
|
-
this.i.
|
|
98
|
+
this.i.cz = stringToBrush(v);
|
|
99
99
|
},
|
|
100
100
|
enumerable: false,
|
|
101
101
|
configurable: true
|
|
@@ -105,10 +105,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
105
105
|
* Gets the stroke color currently used by the icon.
|
|
106
106
|
*/
|
|
107
107
|
get: function () {
|
|
108
|
-
return brushToString(this.i.
|
|
108
|
+
return brushToString(this.i.c0);
|
|
109
109
|
},
|
|
110
110
|
set: function (v) {
|
|
111
|
-
this.i.
|
|
111
|
+
this.i.c0 = stringToBrush(v);
|
|
112
112
|
},
|
|
113
113
|
enumerable: false,
|
|
114
114
|
configurable: true
|
|
@@ -118,10 +118,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
118
118
|
* Gets the text color currently used by the icon.
|
|
119
119
|
*/
|
|
120
120
|
get: function () {
|
|
121
|
-
return brushToString(this.i.
|
|
121
|
+
return brushToString(this.i.c1);
|
|
122
122
|
},
|
|
123
123
|
set: function (v) {
|
|
124
|
-
this.i.
|
|
124
|
+
this.i.c1 = stringToBrush(v);
|
|
125
125
|
},
|
|
126
126
|
enumerable: false,
|
|
127
127
|
configurable: true
|
|
@@ -131,10 +131,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
131
131
|
* Gets the stroke width currently used by the icon.
|
|
132
132
|
*/
|
|
133
133
|
get: function () {
|
|
134
|
-
return this.i.
|
|
134
|
+
return this.i.ag;
|
|
135
135
|
},
|
|
136
136
|
set: function (v) {
|
|
137
|
-
this.i.
|
|
137
|
+
this.i.ag = +v;
|
|
138
138
|
},
|
|
139
139
|
enumerable: false,
|
|
140
140
|
configurable: true
|
|
@@ -157,10 +157,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
157
157
|
* Gets or sets the stroke color to use for the icon.
|
|
158
158
|
*/
|
|
159
159
|
get: function () {
|
|
160
|
-
return brushToString(this.i.
|
|
160
|
+
return brushToString(this.i.df);
|
|
161
161
|
},
|
|
162
162
|
set: function (v) {
|
|
163
|
-
this.i.
|
|
163
|
+
this.i.df = stringToBrush(v);
|
|
164
164
|
},
|
|
165
165
|
enumerable: false,
|
|
166
166
|
configurable: true
|
|
@@ -170,10 +170,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
170
170
|
* Gets or sets the stroke thickness to use for the icon.
|
|
171
171
|
*/
|
|
172
172
|
get: function () {
|
|
173
|
-
return this.i.
|
|
173
|
+
return this.i.am;
|
|
174
174
|
},
|
|
175
175
|
set: function (v) {
|
|
176
|
-
this.i.
|
|
176
|
+
this.i.am = +v;
|
|
177
177
|
},
|
|
178
178
|
enumerable: false,
|
|
179
179
|
configurable: true
|
|
@@ -183,10 +183,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
183
183
|
* Gets or sets the text color to use for the icon.
|
|
184
184
|
*/
|
|
185
185
|
get: function () {
|
|
186
|
-
return brushToString(this.i.
|
|
186
|
+
return brushToString(this.i.dg);
|
|
187
187
|
},
|
|
188
188
|
set: function (v) {
|
|
189
|
-
this.i.
|
|
189
|
+
this.i.dg = stringToBrush(v);
|
|
190
190
|
},
|
|
191
191
|
enumerable: false,
|
|
192
192
|
configurable: true
|
|
@@ -196,10 +196,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
196
196
|
* Gets or sets the fill color to use when the icon is hovered.
|
|
197
197
|
*/
|
|
198
198
|
get: function () {
|
|
199
|
-
return brushToString(this.i.
|
|
199
|
+
return brushToString(this.i.c8);
|
|
200
200
|
},
|
|
201
201
|
set: function (v) {
|
|
202
|
-
this.i.
|
|
202
|
+
this.i.c8 = stringToBrush(v);
|
|
203
203
|
},
|
|
204
204
|
enumerable: false,
|
|
205
205
|
configurable: true
|
|
@@ -209,10 +209,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
209
209
|
* Gets or sets the stroke color to use when the icon is hovered.
|
|
210
210
|
*/
|
|
211
211
|
get: function () {
|
|
212
|
-
return brushToString(this.i.
|
|
212
|
+
return brushToString(this.i.c9);
|
|
213
213
|
},
|
|
214
214
|
set: function (v) {
|
|
215
|
-
this.i.
|
|
215
|
+
this.i.c9 = stringToBrush(v);
|
|
216
216
|
},
|
|
217
217
|
enumerable: false,
|
|
218
218
|
configurable: true
|
|
@@ -222,10 +222,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
222
222
|
* Gets or sets the stroke thickness to use when the icon is hovered.
|
|
223
223
|
*/
|
|
224
224
|
get: function () {
|
|
225
|
-
return this.i.
|
|
225
|
+
return this.i.ak;
|
|
226
226
|
},
|
|
227
227
|
set: function (v) {
|
|
228
|
-
this.i.
|
|
228
|
+
this.i.ak = +v;
|
|
229
229
|
},
|
|
230
230
|
enumerable: false,
|
|
231
231
|
configurable: true
|
|
@@ -235,10 +235,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
235
235
|
* Gets or sets the text color to use when the icon is hovered.
|
|
236
236
|
*/
|
|
237
237
|
get: function () {
|
|
238
|
-
return brushToString(this.i.
|
|
238
|
+
return brushToString(this.i.da);
|
|
239
239
|
},
|
|
240
240
|
set: function (v) {
|
|
241
|
-
this.i.
|
|
241
|
+
this.i.da = stringToBrush(v);
|
|
242
242
|
},
|
|
243
243
|
enumerable: false,
|
|
244
244
|
configurable: true
|
|
@@ -284,10 +284,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
284
284
|
* class.
|
|
285
285
|
*/
|
|
286
286
|
get: function () {
|
|
287
|
-
return brushToString(this.i.
|
|
287
|
+
return brushToString(this.i.db);
|
|
288
288
|
},
|
|
289
289
|
set: function (v) {
|
|
290
|
-
this.i.
|
|
290
|
+
this.i.db = stringToBrush(v);
|
|
291
291
|
},
|
|
292
292
|
enumerable: false,
|
|
293
293
|
configurable: true
|
|
@@ -301,10 +301,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
301
301
|
* class.
|
|
302
302
|
*/
|
|
303
303
|
get: function () {
|
|
304
|
-
return brushToString(this.i.
|
|
304
|
+
return brushToString(this.i.dc);
|
|
305
305
|
},
|
|
306
306
|
set: function (v) {
|
|
307
|
-
this.i.
|
|
307
|
+
this.i.dc = stringToBrush(v);
|
|
308
308
|
},
|
|
309
309
|
enumerable: false,
|
|
310
310
|
configurable: true
|
|
@@ -318,10 +318,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
318
318
|
* class.
|
|
319
319
|
*/
|
|
320
320
|
get: function () {
|
|
321
|
-
return brushToString(this.i.
|
|
321
|
+
return brushToString(this.i.dd);
|
|
322
322
|
},
|
|
323
323
|
set: function (v) {
|
|
324
|
-
this.i.
|
|
324
|
+
this.i.dd = stringToBrush(v);
|
|
325
325
|
},
|
|
326
326
|
enumerable: false,
|
|
327
327
|
configurable: true
|
|
@@ -335,10 +335,23 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
335
335
|
* class.
|
|
336
336
|
*/
|
|
337
337
|
get: function () {
|
|
338
|
-
return brushToString(this.i.
|
|
338
|
+
return brushToString(this.i.de);
|
|
339
339
|
},
|
|
340
340
|
set: function (v) {
|
|
341
|
-
this.i.
|
|
341
|
+
this.i.de = stringToBrush(v);
|
|
342
|
+
},
|
|
343
|
+
enumerable: false,
|
|
344
|
+
configurable: true
|
|
345
|
+
});
|
|
346
|
+
Object.defineProperty(IgxXIconComponent.prototype, "source", {
|
|
347
|
+
/**
|
|
348
|
+
* Gets or sets the image source for the icon. Used if none of the other icon types are not used.
|
|
349
|
+
*/
|
|
350
|
+
get: function () {
|
|
351
|
+
return this.i.ax;
|
|
352
|
+
},
|
|
353
|
+
set: function (v) {
|
|
354
|
+
this.i.ax = v;
|
|
342
355
|
},
|
|
343
356
|
enumerable: false,
|
|
344
357
|
configurable: true
|
|
@@ -348,10 +361,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
348
361
|
* Gets or sets data url for the icon to use.
|
|
349
362
|
*/
|
|
350
363
|
get: function () {
|
|
351
|
-
return this.i.
|
|
364
|
+
return this.i.ba;
|
|
352
365
|
},
|
|
353
366
|
set: function (v) {
|
|
354
|
-
this.i.
|
|
367
|
+
this.i.ba = v;
|
|
355
368
|
},
|
|
356
369
|
enumerable: false,
|
|
357
370
|
configurable: true
|
|
@@ -422,10 +435,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
422
435
|
* Gets or sets the id to use for the checkbox.
|
|
423
436
|
*/
|
|
424
437
|
get: function () {
|
|
425
|
-
return this.i.
|
|
438
|
+
return this.i.bk;
|
|
426
439
|
},
|
|
427
440
|
set: function (v) {
|
|
428
|
-
this.i.
|
|
441
|
+
this.i.bk = v;
|
|
429
442
|
},
|
|
430
443
|
enumerable: false,
|
|
431
444
|
configurable: true
|
|
@@ -435,10 +448,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
435
448
|
* Gets or sets TabIndex to use for the checkbox.
|
|
436
449
|
*/
|
|
437
450
|
get: function () {
|
|
438
|
-
return this.i.
|
|
451
|
+
return this.i.at;
|
|
439
452
|
},
|
|
440
453
|
set: function (v) {
|
|
441
|
-
this.i.
|
|
454
|
+
this.i.at = +v;
|
|
442
455
|
},
|
|
443
456
|
enumerable: false,
|
|
444
457
|
configurable: true
|
|
@@ -448,10 +461,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
448
461
|
* Gets or sets the value of the aria-label attribute.
|
|
449
462
|
*/
|
|
450
463
|
get: function () {
|
|
451
|
-
return this.i.
|
|
464
|
+
return this.i.a7;
|
|
452
465
|
},
|
|
453
466
|
set: function (v) {
|
|
454
|
-
this.i.
|
|
467
|
+
this.i.a7 = v;
|
|
455
468
|
},
|
|
456
469
|
enumerable: false,
|
|
457
470
|
configurable: true
|
|
@@ -484,10 +497,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
484
497
|
});
|
|
485
498
|
Object.defineProperty(IgxXIconComponent.prototype, "opacity", {
|
|
486
499
|
get: function () {
|
|
487
|
-
return this.i.
|
|
500
|
+
return this.i.al;
|
|
488
501
|
},
|
|
489
502
|
set: function (v) {
|
|
490
|
-
this.i.
|
|
503
|
+
this.i.al = +v;
|
|
491
504
|
},
|
|
492
505
|
enumerable: false,
|
|
493
506
|
configurable: true
|
|
@@ -497,10 +510,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
497
510
|
* Gets or sets the viewbox left for the svg icon.
|
|
498
511
|
*/
|
|
499
512
|
get: function () {
|
|
500
|
-
return this.i.
|
|
513
|
+
return this.i.ao;
|
|
501
514
|
},
|
|
502
515
|
set: function (v) {
|
|
503
|
-
this.i.
|
|
516
|
+
this.i.ao = +v;
|
|
504
517
|
},
|
|
505
518
|
enumerable: false,
|
|
506
519
|
configurable: true
|
|
@@ -510,10 +523,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
510
523
|
* Gets or sets the viewbox top for the svg icon.
|
|
511
524
|
*/
|
|
512
525
|
get: function () {
|
|
513
|
-
return this.i.
|
|
526
|
+
return this.i.ap;
|
|
514
527
|
},
|
|
515
528
|
set: function (v) {
|
|
516
|
-
this.i.
|
|
529
|
+
this.i.ap = +v;
|
|
517
530
|
},
|
|
518
531
|
enumerable: false,
|
|
519
532
|
configurable: true
|
|
@@ -523,10 +536,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
523
536
|
* Gets or sets the viewbox width for the svg icon.
|
|
524
537
|
*/
|
|
525
538
|
get: function () {
|
|
526
|
-
return this.i.
|
|
539
|
+
return this.i.aq;
|
|
527
540
|
},
|
|
528
541
|
set: function (v) {
|
|
529
|
-
this.i.
|
|
542
|
+
this.i.aq = +v;
|
|
530
543
|
},
|
|
531
544
|
enumerable: false,
|
|
532
545
|
configurable: true
|
|
@@ -536,10 +549,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
536
549
|
* Gets or sets the viewbox height for the svg icon.
|
|
537
550
|
*/
|
|
538
551
|
get: function () {
|
|
539
|
-
return this.i.
|
|
552
|
+
return this.i.an;
|
|
540
553
|
},
|
|
541
554
|
set: function (v) {
|
|
542
|
-
this.i.
|
|
555
|
+
this.i.an = +v;
|
|
543
556
|
},
|
|
544
557
|
enumerable: false,
|
|
545
558
|
configurable: true
|
|
@@ -549,10 +562,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
549
562
|
* Gets or sets the width of the icon.
|
|
550
563
|
*/
|
|
551
564
|
get: function () {
|
|
552
|
-
return this.i.
|
|
565
|
+
return this.i.ar;
|
|
553
566
|
},
|
|
554
567
|
set: function (v) {
|
|
555
|
-
this.i.
|
|
568
|
+
this.i.ar = +v;
|
|
556
569
|
},
|
|
557
570
|
enumerable: false,
|
|
558
571
|
configurable: true
|
|
@@ -562,10 +575,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
562
575
|
* Gets or sets the height of the icon.
|
|
563
576
|
*/
|
|
564
577
|
get: function () {
|
|
565
|
-
return this.i.
|
|
578
|
+
return this.i.aj;
|
|
566
579
|
},
|
|
567
580
|
set: function (v) {
|
|
568
|
-
this.i.
|
|
581
|
+
this.i.aj = +v;
|
|
569
582
|
},
|
|
570
583
|
enumerable: false,
|
|
571
584
|
configurable: true
|
|
@@ -646,7 +659,7 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
646
659
|
|
|
647
660
|
*/
|
|
648
661
|
IgxXIconComponent.prototype.exportVisualModel = function () {
|
|
649
|
-
var iv = this.i.
|
|
662
|
+
var iv = this.i.aw();
|
|
650
663
|
return (iv);
|
|
651
664
|
};
|
|
652
665
|
/**
|
|
@@ -654,7 +667,7 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
654
667
|
|
|
655
668
|
*/
|
|
656
669
|
IgxXIconComponent.prototype.exportSerializedVisualModel = function () {
|
|
657
|
-
var iv = this.i.
|
|
670
|
+
var iv = this.i.bc();
|
|
658
671
|
return (iv);
|
|
659
672
|
};
|
|
660
673
|
IgxXIconComponent.prototype._runInZone = function (act) {
|
|
@@ -666,7 +679,7 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
666
679
|
}
|
|
667
680
|
};
|
|
668
681
|
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 });
|
|
669
|
-
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>\n<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 });
|
|
682
|
+
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", source: "source", 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>\n<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 });
|
|
670
683
|
return IgxXIconComponent;
|
|
671
684
|
}());
|
|
672
685
|
export { IgxXIconComponent };
|
|
@@ -724,6 +737,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
|
|
|
724
737
|
type: Input
|
|
725
738
|
}], secondaryStrokeColor: [{
|
|
726
739
|
type: Input
|
|
740
|
+
}], source: [{
|
|
741
|
+
type: Input
|
|
727
742
|
}], dataURL: [{
|
|
728
743
|
type: Input
|
|
729
744
|
}], svgPath: [{
|