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
|
@@ -60,6 +60,7 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
|
|
|
60
60
|
this._portalManager.onChildContentChanged(this._childTemplateRef);
|
|
61
61
|
this._styling(this._root, this);
|
|
62
62
|
this.updateStyle();
|
|
63
|
+
this.i.onSizeReady();
|
|
63
64
|
}
|
|
64
65
|
createImplementation() {
|
|
65
66
|
return new XLabel();
|
|
@@ -101,64 +102,64 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
|
|
|
101
102
|
* Gets the actual color to use for the text color.
|
|
102
103
|
*/
|
|
103
104
|
get actualTextColor() {
|
|
104
|
-
return brushToString(this.i.
|
|
105
|
+
return brushToString(this.i.c2);
|
|
105
106
|
}
|
|
106
107
|
set actualTextColor(v) {
|
|
107
|
-
this.i.
|
|
108
|
+
this.i.c2 = stringToBrush(v);
|
|
108
109
|
}
|
|
109
110
|
/**
|
|
110
111
|
* Gets the actual color to use for the text color.
|
|
111
112
|
*/
|
|
112
113
|
get actualHighlightTextColor() {
|
|
113
|
-
return brushToString(this.i.
|
|
114
|
+
return brushToString(this.i.cz);
|
|
114
115
|
}
|
|
115
116
|
set actualHighlightTextColor(v) {
|
|
116
|
-
this.i.
|
|
117
|
+
this.i.cz = stringToBrush(v);
|
|
117
118
|
}
|
|
118
119
|
/**
|
|
119
120
|
* Gets the actual color to use for the text color when highlighted and hovered.
|
|
120
121
|
*/
|
|
121
122
|
get actualHoverHighlightTextColor() {
|
|
122
|
-
return brushToString(this.i.
|
|
123
|
+
return brushToString(this.i.c0);
|
|
123
124
|
}
|
|
124
125
|
set actualHoverHighlightTextColor(v) {
|
|
125
|
-
this.i.
|
|
126
|
+
this.i.c0 = stringToBrush(v);
|
|
126
127
|
}
|
|
127
128
|
/**
|
|
128
129
|
* Gets the actual hover color to use for the text.
|
|
129
130
|
*/
|
|
130
131
|
get actualHoverTextColor() {
|
|
131
|
-
return brushToString(this.i.
|
|
132
|
+
return brushToString(this.i.c1);
|
|
132
133
|
}
|
|
133
134
|
set actualHoverTextColor(v) {
|
|
134
|
-
this.i.
|
|
135
|
+
this.i.c1 = stringToBrush(v);
|
|
135
136
|
}
|
|
136
137
|
/**
|
|
137
138
|
* Gets or sets the color to use for the text.
|
|
138
139
|
*/
|
|
139
140
|
get textColor() {
|
|
140
|
-
return brushToString(this.i.
|
|
141
|
+
return brushToString(this.i.di);
|
|
141
142
|
}
|
|
142
143
|
set textColor(v) {
|
|
143
|
-
this.i.
|
|
144
|
+
this.i.di = stringToBrush(v);
|
|
144
145
|
}
|
|
145
146
|
/**
|
|
146
147
|
* Gets or sets the color to use for the text.
|
|
147
148
|
*/
|
|
148
149
|
get highlightTextColor() {
|
|
149
|
-
return brushToString(this.i.
|
|
150
|
+
return brushToString(this.i.df);
|
|
150
151
|
}
|
|
151
152
|
set highlightTextColor(v) {
|
|
152
|
-
this.i.
|
|
153
|
+
this.i.df = stringToBrush(v);
|
|
153
154
|
}
|
|
154
155
|
/**
|
|
155
156
|
* Gets or sets the color to use for the text.
|
|
156
157
|
*/
|
|
157
158
|
get hoverHighlightTextColor() {
|
|
158
|
-
return brushToString(this.i.
|
|
159
|
+
return brushToString(this.i.dg);
|
|
159
160
|
}
|
|
160
161
|
set hoverHighlightTextColor(v) {
|
|
161
|
-
this.i.
|
|
162
|
+
this.i.dg = stringToBrush(v);
|
|
162
163
|
}
|
|
163
164
|
/**
|
|
164
165
|
* Gets or sets the use for the button.
|
|
@@ -178,91 +179,91 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
|
|
|
178
179
|
* Gets or sets the color to use for the hovered text of the button regardless of type.
|
|
179
180
|
*/
|
|
180
181
|
get hoverTextColor() {
|
|
181
|
-
return brushToString(this.i.
|
|
182
|
+
return brushToString(this.i.dh);
|
|
182
183
|
}
|
|
183
184
|
set hoverTextColor(v) {
|
|
184
|
-
this.i.
|
|
185
|
+
this.i.dh = stringToBrush(v);
|
|
185
186
|
}
|
|
186
187
|
/**
|
|
187
188
|
* Gets or sets the id to use for the checkbox.
|
|
188
189
|
*/
|
|
189
190
|
get id() {
|
|
190
|
-
return this.i.
|
|
191
|
+
return this.i.bv;
|
|
191
192
|
}
|
|
192
193
|
set id(v) {
|
|
193
|
-
this.i.
|
|
194
|
+
this.i.bv = v;
|
|
194
195
|
}
|
|
195
196
|
/**
|
|
196
197
|
* Gets or sets the id to use for the checkbox.
|
|
197
198
|
*/
|
|
198
199
|
get display() {
|
|
199
|
-
return this.i.
|
|
200
|
+
return this.i.bj;
|
|
200
201
|
}
|
|
201
202
|
set display(v) {
|
|
202
|
-
this.i.
|
|
203
|
+
this.i.bj = v;
|
|
203
204
|
}
|
|
204
205
|
/**
|
|
205
206
|
* Gets or sets the id to use for the checkbox.
|
|
206
207
|
*/
|
|
207
208
|
get flexDirection() {
|
|
208
|
-
return this.i.
|
|
209
|
+
return this.i.bm;
|
|
209
210
|
}
|
|
210
211
|
set flexDirection(v) {
|
|
211
|
-
this.i.
|
|
212
|
+
this.i.bm = v;
|
|
212
213
|
}
|
|
213
214
|
/**
|
|
214
215
|
* Gets or sets the flex-grow setting for the button.
|
|
215
216
|
*/
|
|
216
217
|
get flexGrow() {
|
|
217
|
-
return this.i.
|
|
218
|
+
return this.i.bo;
|
|
218
219
|
}
|
|
219
220
|
set flexGrow(v) {
|
|
220
|
-
this.i.
|
|
221
|
+
this.i.bo = v;
|
|
221
222
|
}
|
|
222
223
|
/**
|
|
223
224
|
* Gets or sets the id to use for the checkbox.
|
|
224
225
|
*/
|
|
225
226
|
get alignItems() {
|
|
226
|
-
return this.i.
|
|
227
|
+
return this.i.bb;
|
|
227
228
|
}
|
|
228
229
|
set alignItems(v) {
|
|
229
|
-
this.i.
|
|
230
|
+
this.i.bb = v;
|
|
230
231
|
}
|
|
231
232
|
/**
|
|
232
233
|
* Gets or sets the id to use for the checkbox.
|
|
233
234
|
*/
|
|
234
235
|
get alignSelf() {
|
|
235
|
-
return this.i.
|
|
236
|
+
return this.i.bd;
|
|
236
237
|
}
|
|
237
238
|
set alignSelf(v) {
|
|
238
|
-
this.i.
|
|
239
|
+
this.i.bd = v;
|
|
239
240
|
}
|
|
240
241
|
/**
|
|
241
242
|
* Gets or sets TabIndex to use for the checkbox.
|
|
242
243
|
*/
|
|
243
244
|
get tabIndex() {
|
|
244
|
-
return this.i.
|
|
245
|
+
return this.i.at;
|
|
245
246
|
}
|
|
246
247
|
set tabIndex(v) {
|
|
247
|
-
this.i.
|
|
248
|
+
this.i.at = +v;
|
|
248
249
|
}
|
|
249
250
|
/**
|
|
250
251
|
* Gets or sets the for attribute to use for the label.
|
|
251
252
|
*/
|
|
252
253
|
get for() {
|
|
253
|
-
return this.i.
|
|
254
|
+
return this.i.bq;
|
|
254
255
|
}
|
|
255
256
|
set for(v) {
|
|
256
|
-
this.i.
|
|
257
|
+
this.i.bq = v;
|
|
257
258
|
}
|
|
258
259
|
/**
|
|
259
260
|
* Gets or sets the value of the aria-label attribute.
|
|
260
261
|
*/
|
|
261
262
|
get ariaLabel() {
|
|
262
|
-
return this.i.
|
|
263
|
+
return this.i.bf;
|
|
263
264
|
}
|
|
264
265
|
set ariaLabel(v) {
|
|
265
|
-
this.i.
|
|
266
|
+
this.i.bf = v;
|
|
266
267
|
}
|
|
267
268
|
/**
|
|
268
269
|
* Gets or sets the text for the label.
|
|
@@ -277,19 +278,19 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
|
|
|
277
278
|
* Gets or sets whether the label is hovered.
|
|
278
279
|
*/
|
|
279
280
|
get isHover() {
|
|
280
|
-
return this.i.
|
|
281
|
+
return this.i.an;
|
|
281
282
|
}
|
|
282
283
|
set isHover(v) {
|
|
283
|
-
this.i.
|
|
284
|
+
this.i.an = ensureBool(v);
|
|
284
285
|
}
|
|
285
286
|
/**
|
|
286
287
|
* Gets or sets the value for the label.
|
|
287
288
|
*/
|
|
288
289
|
get value() {
|
|
289
|
-
return this.i.
|
|
290
|
+
return this.i.ar;
|
|
290
291
|
}
|
|
291
292
|
set value(v) {
|
|
292
|
-
this.i.
|
|
293
|
+
this.i.ar = ensureBool(v);
|
|
293
294
|
}
|
|
294
295
|
/**
|
|
295
296
|
* Gets or sets whether the checkbox is disabled.
|
|
@@ -311,7 +312,7 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
|
|
|
311
312
|
|
|
312
313
|
*/
|
|
313
314
|
exportVisualModel() {
|
|
314
|
-
let iv = this.i.
|
|
315
|
+
let iv = this.i.av();
|
|
315
316
|
return (iv);
|
|
316
317
|
}
|
|
317
318
|
/**
|
|
@@ -319,7 +320,7 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
|
|
|
319
320
|
|
|
320
321
|
*/
|
|
321
322
|
exportSerializedVisualModel() {
|
|
322
|
-
let iv = this.i.
|
|
323
|
+
let iv = this.i.bl();
|
|
323
324
|
return (iv);
|
|
324
325
|
}
|
|
325
326
|
}
|
package/esm2015/public_api.js
CHANGED
|
@@ -24,10 +24,18 @@ export * from './lib/LostFocusEventArgs';
|
|
|
24
24
|
export * from './lib/igx-lost-focus-event-args';
|
|
25
25
|
export * from './lib/DateFormats';
|
|
26
26
|
export * from './lib/DatePickerVisualModelExport';
|
|
27
|
+
export * from './lib/igx-color-editor-component';
|
|
28
|
+
export * from './lib/igx-color-editor-panel-component';
|
|
27
29
|
export * from './lib/igx-x-checkbox-component';
|
|
30
|
+
export * from './lib/igx-color-editor-dynamic-module';
|
|
31
|
+
export * from './lib/igx-color-editor-module';
|
|
32
|
+
export * from './lib/igx-color-editor-panel-dynamic-module';
|
|
33
|
+
export * from './lib/igx-color-editor-panel-module';
|
|
28
34
|
export * from './lib/igx-x-checkbox-dynamic-module';
|
|
29
35
|
export * from './lib/igx-x-checkbox-module';
|
|
30
36
|
export * from './lib/igx-x-ripple-component';
|
|
37
|
+
export * from './lib/igx-multi-slider-dynamic-module';
|
|
38
|
+
export * from './lib/igx-multi-slider-module';
|
|
31
39
|
export * from './lib/igx-x-ripple-dynamic-module';
|
|
32
40
|
export * from './lib/igx-x-ripple-module';
|
|
33
41
|
export * from './lib/igx-x-button-component';
|
|
@@ -54,7 +62,10 @@ export * from './lib/igx-x-prefix-component';
|
|
|
54
62
|
export * from './lib/igx-x-suffix-component';
|
|
55
63
|
export * from './lib/NativeUIXInputsFactory';
|
|
56
64
|
export * from './lib/XComponentBridge';
|
|
65
|
+
export * from './lib/MultiSliderBridge';
|
|
57
66
|
export * from './lib/XButtonBridge';
|
|
67
|
+
export * from './lib/XButtonGroupBridge';
|
|
68
|
+
export * from './lib/ColorEditorBridge';
|
|
58
69
|
export * from './lib/XCheckboxBridge';
|
|
59
70
|
export * from './lib/XIconButtonBridge';
|
|
60
71
|
export * from './lib/XInputBridge';
|
|
@@ -64,6 +75,10 @@ export * from './lib/KEYCODES';
|
|
|
64
75
|
export * from './lib/MaskOptions';
|
|
65
76
|
export * from './lib/Replaced';
|
|
66
77
|
export * from './lib/MaskParsingService';
|
|
78
|
+
export * from './lib/ColorEditorPanelView';
|
|
79
|
+
export * from './lib/MultiSliderView';
|
|
80
|
+
export * from './lib/MultiSliderCursor';
|
|
81
|
+
export * from './lib/ColorEditorView';
|
|
67
82
|
export * from './lib/InputGroupView';
|
|
68
83
|
export * from './lib/ElevationHelper';
|
|
69
84
|
export * from './lib/ButtonGroupView';
|
|
@@ -75,6 +90,46 @@ export * from './lib/IconView';
|
|
|
75
90
|
export * from './lib/ButtonView';
|
|
76
91
|
export * from './lib/RippleView';
|
|
77
92
|
export * from './lib/CheckboxView';
|
|
93
|
+
export * from './lib/ColorEditor';
|
|
94
|
+
export * from './lib/ColorEditorGotFocusEventArgs';
|
|
95
|
+
export * from './lib/igx-color-editor-got-focus-event-args';
|
|
96
|
+
export * from './lib/ColorEditorLostFocusEventArgs';
|
|
97
|
+
export * from './lib/igx-color-editor-lost-focus-event-args';
|
|
98
|
+
export * from './lib/ColorEditorPanel';
|
|
99
|
+
export * from './lib/ColorEditorPanelClosedEventArgs';
|
|
100
|
+
export * from './lib/igx-color-editor-panel-closed-event-args';
|
|
101
|
+
export * from './lib/ColorEditorPanelSelectedValueChangedEventArgs';
|
|
102
|
+
export * from './lib/igx-color-editor-panel-selected-value-changed-event-args';
|
|
103
|
+
export * from './lib/ISliderTrackOwner';
|
|
104
|
+
export * from './lib/MultiSlider';
|
|
105
|
+
export * from './lib/igx-multi-slider-component';
|
|
106
|
+
export * from './lib/MultiSliderThumbValueChangingEventArgs';
|
|
107
|
+
export * from './lib/igx-multi-slider-thumb-value-changing-event-args';
|
|
108
|
+
export * from './lib/MultiSliderYValueChangingEventArgs';
|
|
109
|
+
export * from './lib/igx-multi-slider-y-value-changing-event-args';
|
|
110
|
+
export * from './lib/MultiSliderHitInfo';
|
|
111
|
+
export * from './lib/MultiSliderResolvingToolTipValueEventArgs';
|
|
112
|
+
export * from './lib/igx-multi-slider-resolving-tool-tip-value-event-args';
|
|
113
|
+
export * from './lib/igx-multi-slider-thumb-collection';
|
|
114
|
+
export * from './lib/MultiSliderThumbCollection';
|
|
115
|
+
export * from './lib/IMultiSliderTrackBarVisual';
|
|
116
|
+
export * from './lib/DefaultMultiSliderTrackBarVisual';
|
|
117
|
+
export * from './lib/IMultiSliderTrackRangeVisual';
|
|
118
|
+
export * from './lib/DefaultMultiSliderTrackRangeVisual';
|
|
119
|
+
export * from './lib/IMultiSliderTrackShadeVisual';
|
|
120
|
+
export * from './lib/MultiSliderTrackShadeOrientation';
|
|
121
|
+
export * from './lib/DefaultMultiTrackShadeVisual';
|
|
122
|
+
export * from './lib/MultiSliderThumb';
|
|
123
|
+
export * from './lib/igx-multi-slider-thumb';
|
|
124
|
+
export * from './lib/MultiSliderThumbRangePosition';
|
|
125
|
+
export * from './lib/IMultiSliderTrackThumbCalloutVisual';
|
|
126
|
+
export * from './lib/DefaultMultiSliderTrackThumbCalloutVisual';
|
|
127
|
+
export * from './lib/MultiSliderTrackThumbRange';
|
|
128
|
+
export * from './lib/igx-multi-slider-track-thumb-range';
|
|
129
|
+
export * from './lib/IMultiSliderTrackThumbVisual';
|
|
130
|
+
export * from './lib/DefaultMultiSliderTrackThumbVisual';
|
|
131
|
+
export * from './lib/MultiSliderOrientation';
|
|
132
|
+
export * from './lib/MultiSliderVisualArea';
|
|
78
133
|
export * from './lib/XSuffix';
|
|
79
134
|
export * from './lib/SuffixShiftType';
|
|
80
135
|
export * from './lib/XPrefix';
|
|
@@ -488,10 +488,10 @@ var XButtonGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
488
488
|
this.d = this.c(this.d, a, b);
|
|
489
489
|
}
|
|
490
490
|
this.df();
|
|
491
|
+
this.u = false;
|
|
491
492
|
if (this.selectionChanged != null) {
|
|
492
493
|
this.selectionChanged(this, new ButtonGroupSelectionChangedEventArgs());
|
|
493
494
|
}
|
|
494
|
-
this.u = false;
|
|
495
495
|
};
|
|
496
496
|
XButtonGroup.prototype.c = function (a, b, c) {
|
|
497
497
|
var d = new Array(Math.max(0, this.a.length + 1));
|
|
@@ -615,7 +615,7 @@ var XButtonGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
615
615
|
}
|
|
616
616
|
};
|
|
617
617
|
XButtonGroup.prototype.dl = function (a, b) {
|
|
618
|
-
return new CornerRadius(1, !isNaN_(a.
|
|
618
|
+
return new CornerRadius(1, !isNaN_(a.d) ? a.d : b.d, !isNaN_(a.e) ? a.e : b.e, !isNaN_(a.c) ? a.c : b.c, !isNaN_(a.b) ? a.b : b.b);
|
|
619
619
|
};
|
|
620
620
|
XButtonGroup.prototype.dg = function () {
|
|
621
621
|
switch (this.i) {
|
|
@@ -671,23 +671,23 @@ var XButtonGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
671
671
|
if (this.v) {
|
|
672
672
|
b.disabled = this.disabled;
|
|
673
673
|
}
|
|
674
|
-
b.
|
|
674
|
+
b.nv = this.e0;
|
|
675
675
|
b.bg = this.ak;
|
|
676
|
-
b.
|
|
677
|
-
b.
|
|
678
|
-
b.
|
|
676
|
+
b.pj = this.e2;
|
|
677
|
+
b.pi = this.e1;
|
|
678
|
+
b.pk = this.e3;
|
|
679
679
|
this.view.x(b);
|
|
680
680
|
if (this.aa(b)) {
|
|
681
|
-
b.
|
|
682
|
-
b.
|
|
683
|
-
b.
|
|
684
|
-
b.
|
|
681
|
+
b.nu = this.e7;
|
|
682
|
+
b.q9 = this.fa;
|
|
683
|
+
b.p9 = this.e8;
|
|
684
|
+
b.qa = this.e9;
|
|
685
685
|
}
|
|
686
686
|
else {
|
|
687
|
-
b.
|
|
688
|
-
b.
|
|
689
|
-
b.
|
|
690
|
-
b.
|
|
687
|
+
b.nu = this.ez;
|
|
688
|
+
b.q9 = this.e6;
|
|
689
|
+
b.p9 = this.e4;
|
|
690
|
+
b.qa = this.e5;
|
|
691
691
|
}
|
|
692
692
|
}
|
|
693
693
|
};
|
|
@@ -701,22 +701,22 @@ var XButtonGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
701
701
|
return false;
|
|
702
702
|
};
|
|
703
703
|
XButtonGroup.prototype.dk = function (a) {
|
|
704
|
-
a.
|
|
704
|
+
a.ku = new CornerRadius(1, 0, 0, 0, 0);
|
|
705
705
|
};
|
|
706
706
|
XButtonGroup.prototype.dj = function (a) {
|
|
707
707
|
if (this.k == 1) {
|
|
708
|
-
a.
|
|
708
|
+
a.ku = new CornerRadius(1, 0, 0, this.al, this.al);
|
|
709
709
|
}
|
|
710
710
|
else {
|
|
711
|
-
a.
|
|
711
|
+
a.ku = new CornerRadius(1, 0, this.al, this.al, 0);
|
|
712
712
|
}
|
|
713
713
|
};
|
|
714
714
|
XButtonGroup.prototype.di = function (a) {
|
|
715
715
|
if (this.k == 1) {
|
|
716
|
-
a.
|
|
716
|
+
a.ku = new CornerRadius(1, this.al, this.al, 0, 0);
|
|
717
717
|
}
|
|
718
718
|
else {
|
|
719
|
-
a.
|
|
719
|
+
a.ku = new CornerRadius(1, this.al, 0, 0, this.al);
|
|
720
720
|
}
|
|
721
721
|
};
|
|
722
722
|
XButtonGroup.prototype.dh = function (a) {
|