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
|
@@ -1719,70 +1719,70 @@ export let XCalendar = /*@__PURE__*/ (() => {
|
|
|
1719
1719
|
c3() {
|
|
1720
1720
|
for (let a = 0; a < this.aj.count; a++) {
|
|
1721
1721
|
if (this.dq != null) {
|
|
1722
|
-
this.aj._inner[a].
|
|
1722
|
+
this.aj._inner[a].p6 = this.dq;
|
|
1723
1723
|
}
|
|
1724
1724
|
if (this.dk != null) {
|
|
1725
|
-
this.aj._inner[a].
|
|
1725
|
+
this.aj._inner[a].p2 = this.dk;
|
|
1726
1726
|
}
|
|
1727
1727
|
if (this.dg != null) {
|
|
1728
|
-
this.aj._inner[a].
|
|
1728
|
+
this.aj._inner[a].pw = this.dg;
|
|
1729
1729
|
}
|
|
1730
1730
|
if (this.dj != null) {
|
|
1731
|
-
this.aj._inner[a].
|
|
1731
|
+
this.aj._inner[a].p1 = this.dj;
|
|
1732
1732
|
}
|
|
1733
1733
|
if (this.dl != null) {
|
|
1734
|
-
this.aj._inner[a].
|
|
1734
|
+
this.aj._inner[a].p3 = this.dl;
|
|
1735
1735
|
}
|
|
1736
1736
|
}
|
|
1737
1737
|
for (let b = 0; b < this.ah.count; b++) {
|
|
1738
1738
|
if (this.dq != null) {
|
|
1739
|
-
this.ah._inner[b].
|
|
1739
|
+
this.ah._inner[b].p6 = this.dq;
|
|
1740
1740
|
}
|
|
1741
1741
|
if (this.dk != null) {
|
|
1742
|
-
this.ah._inner[b].
|
|
1742
|
+
this.ah._inner[b].p2 = this.dk;
|
|
1743
1743
|
}
|
|
1744
1744
|
if (this.dg != null) {
|
|
1745
|
-
this.ah._inner[b].
|
|
1745
|
+
this.ah._inner[b].pw = this.dg;
|
|
1746
1746
|
}
|
|
1747
1747
|
if (this.dj != null) {
|
|
1748
|
-
this.ah._inner[b].
|
|
1748
|
+
this.ah._inner[b].p1 = this.dj;
|
|
1749
1749
|
}
|
|
1750
1750
|
if (this.dl != null) {
|
|
1751
|
-
this.ah._inner[b].
|
|
1751
|
+
this.ah._inner[b].p3 = this.dl;
|
|
1752
1752
|
}
|
|
1753
1753
|
}
|
|
1754
1754
|
for (let c = 0; c < this.ak.count; c++) {
|
|
1755
1755
|
if (this.dq != null) {
|
|
1756
|
-
this.ak._inner[c].
|
|
1756
|
+
this.ak._inner[c].p6 = this.dq;
|
|
1757
1757
|
}
|
|
1758
1758
|
if (this.dk != null) {
|
|
1759
|
-
this.ak._inner[c].
|
|
1759
|
+
this.ak._inner[c].p2 = this.dk;
|
|
1760
1760
|
}
|
|
1761
1761
|
if (this.dg != null) {
|
|
1762
|
-
this.ak._inner[c].
|
|
1762
|
+
this.ak._inner[c].pw = this.dg;
|
|
1763
1763
|
}
|
|
1764
1764
|
if (this.dj != null) {
|
|
1765
|
-
this.ak._inner[c].
|
|
1765
|
+
this.ak._inner[c].p1 = this.dj;
|
|
1766
1766
|
}
|
|
1767
1767
|
if (this.dl != null) {
|
|
1768
|
-
this.ak._inner[c].
|
|
1768
|
+
this.ak._inner[c].p3 = this.dl;
|
|
1769
1769
|
}
|
|
1770
1770
|
}
|
|
1771
1771
|
for (let d = 0; d < this.al.count; d++) {
|
|
1772
1772
|
if (this.dq != null) {
|
|
1773
|
-
this.al._inner[d].
|
|
1773
|
+
this.al._inner[d].p6 = this.dq;
|
|
1774
1774
|
}
|
|
1775
1775
|
if (this.dk != null) {
|
|
1776
|
-
this.al._inner[d].
|
|
1776
|
+
this.al._inner[d].p2 = this.dk;
|
|
1777
1777
|
}
|
|
1778
1778
|
if (this.dg != null) {
|
|
1779
|
-
this.al._inner[d].
|
|
1779
|
+
this.al._inner[d].pw = this.dg;
|
|
1780
1780
|
}
|
|
1781
1781
|
if (this.dj != null) {
|
|
1782
|
-
this.al._inner[d].
|
|
1782
|
+
this.al._inner[d].p1 = this.dj;
|
|
1783
1783
|
}
|
|
1784
1784
|
if (this.dl != null) {
|
|
1785
|
-
this.al._inner[d].
|
|
1785
|
+
this.al._inner[d].p3 = this.dl;
|
|
1786
1786
|
}
|
|
1787
1787
|
}
|
|
1788
1788
|
}
|
|
@@ -1850,15 +1850,15 @@ export let XCalendar = /*@__PURE__*/ (() => {
|
|
|
1850
1850
|
d.aa = this.u;
|
|
1851
1851
|
}
|
|
1852
1852
|
let e = new CornerRadius(0, 2);
|
|
1853
|
-
d.
|
|
1854
|
-
d.
|
|
1853
|
+
d.ku = e;
|
|
1854
|
+
d.k1 = e;
|
|
1855
1855
|
d.dk = 0;
|
|
1856
1856
|
d.appendButtonContent(b);
|
|
1857
|
-
d.
|
|
1858
|
-
d.
|
|
1859
|
-
d.
|
|
1860
|
-
d.
|
|
1861
|
-
d.
|
|
1857
|
+
d.p6 = this.dq;
|
|
1858
|
+
d.p2 = this.dk;
|
|
1859
|
+
d.pw = this.dg;
|
|
1860
|
+
d.p1 = this.dj;
|
|
1861
|
+
d.p3 = this.dl;
|
|
1862
1862
|
d.bu = 30;
|
|
1863
1863
|
d.bt = 30;
|
|
1864
1864
|
this.ah.add(d);
|
|
@@ -1876,17 +1876,17 @@ export let XCalendar = /*@__PURE__*/ (() => {
|
|
|
1876
1876
|
c.aa = this.u;
|
|
1877
1877
|
}
|
|
1878
1878
|
let d = new CornerRadius(0, 2);
|
|
1879
|
-
c.
|
|
1880
|
-
c.
|
|
1879
|
+
c.ku = d;
|
|
1880
|
+
c.k1 = d;
|
|
1881
1881
|
c.dk = 0;
|
|
1882
1882
|
c.appendButtonContent(b);
|
|
1883
1883
|
let e = !stringIsNullOrWhiteSpace(this.x.b1("Today")) ? this.x.b1("Today") : "Today";
|
|
1884
1884
|
this.h.az(e);
|
|
1885
|
-
c.
|
|
1886
|
-
c.
|
|
1887
|
-
c.
|
|
1888
|
-
c.
|
|
1889
|
-
c.
|
|
1885
|
+
c.p6 = this.dq;
|
|
1886
|
+
c.p2 = this.dk;
|
|
1887
|
+
c.pw = this.dg;
|
|
1888
|
+
c.p1 = this.dj;
|
|
1889
|
+
c.p3 = this.dl;
|
|
1890
1890
|
this.g = c;
|
|
1891
1891
|
let f = this.g;
|
|
1892
1892
|
f.clicked = delegateCombine(f.clicked, runOn(this, this.c2));
|
|
@@ -1908,15 +1908,15 @@ export let XCalendar = /*@__PURE__*/ (() => {
|
|
|
1908
1908
|
c.aa = this.u;
|
|
1909
1909
|
}
|
|
1910
1910
|
let d = new CornerRadius(0, 2);
|
|
1911
|
-
c.
|
|
1912
|
-
c.
|
|
1911
|
+
c.ku = d;
|
|
1912
|
+
c.k1 = d;
|
|
1913
1913
|
c.dk = 0;
|
|
1914
1914
|
c.appendButtonContent(b);
|
|
1915
|
-
c.
|
|
1916
|
-
c.
|
|
1917
|
-
c.
|
|
1918
|
-
c.
|
|
1919
|
-
c.
|
|
1915
|
+
c.p6 = this.dq;
|
|
1916
|
+
c.p2 = this.dk;
|
|
1917
|
+
c.pw = this.dg;
|
|
1918
|
+
c.p1 = this.dj;
|
|
1919
|
+
c.p3 = this.dl;
|
|
1920
1920
|
c.bu = 40;
|
|
1921
1921
|
this.ak.add(c);
|
|
1922
1922
|
}
|
|
@@ -1989,15 +1989,15 @@ export let XCalendar = /*@__PURE__*/ (() => {
|
|
|
1989
1989
|
d.aa = this.u;
|
|
1990
1990
|
}
|
|
1991
1991
|
let e = new CornerRadius(0, 2);
|
|
1992
|
-
d.
|
|
1993
|
-
d.
|
|
1992
|
+
d.ku = e;
|
|
1993
|
+
d.k1 = e;
|
|
1994
1994
|
d.dk = 0;
|
|
1995
1995
|
d.appendButtonContent(b);
|
|
1996
|
-
d.
|
|
1997
|
-
d.
|
|
1998
|
-
d.
|
|
1999
|
-
d.
|
|
2000
|
-
d.
|
|
1996
|
+
d.p6 = this.dq;
|
|
1997
|
+
d.p2 = this.dk;
|
|
1998
|
+
d.pw = this.dg;
|
|
1999
|
+
d.p1 = this.dj;
|
|
2000
|
+
d.p3 = this.dl;
|
|
2001
2001
|
d.h2 = "btnYear" + c.toString();
|
|
2002
2002
|
this.al.add(d);
|
|
2003
2003
|
}
|
|
@@ -2201,8 +2201,8 @@ export let XCalendar = /*@__PURE__*/ (() => {
|
|
|
2201
2201
|
e.d3 = -1;
|
|
2202
2202
|
e.e = 1;
|
|
2203
2203
|
let f = new CornerRadius(0, 2);
|
|
2204
|
-
e.
|
|
2205
|
-
e.
|
|
2204
|
+
e.ku = f;
|
|
2205
|
+
e.k1 = f;
|
|
2206
2206
|
e.dk = 0;
|
|
2207
2207
|
let g = new XIcon();
|
|
2208
2208
|
this.h.aw(b, g);
|
|
@@ -2215,11 +2215,11 @@ export let XCalendar = /*@__PURE__*/ (() => {
|
|
|
2215
2215
|
e.h2 = "btnNext";
|
|
2216
2216
|
}
|
|
2217
2217
|
e.appendButtonContent(c);
|
|
2218
|
-
e.
|
|
2219
|
-
e.
|
|
2220
|
-
e.
|
|
2221
|
-
e.
|
|
2222
|
-
e.
|
|
2218
|
+
e.p6 = this.dq;
|
|
2219
|
+
e.p2 = this.dk;
|
|
2220
|
+
e.pw = this.dg;
|
|
2221
|
+
e.p1 = this.dj;
|
|
2222
|
+
e.p3 = this.dl;
|
|
2223
2223
|
e.bu = 28;
|
|
2224
2224
|
e.bt = 28;
|
|
2225
2225
|
this.aj.add(e);
|
|
@@ -2236,15 +2236,15 @@ export let XCalendar = /*@__PURE__*/ (() => {
|
|
|
2236
2236
|
d.aa = this.u;
|
|
2237
2237
|
}
|
|
2238
2238
|
let e = new CornerRadius(0, 2);
|
|
2239
|
-
d.
|
|
2240
|
-
d.
|
|
2239
|
+
d.ku = e;
|
|
2240
|
+
d.k1 = e;
|
|
2241
2241
|
d.dk = 0;
|
|
2242
2242
|
d.appendButtonContent(b);
|
|
2243
|
-
d.
|
|
2244
|
-
d.
|
|
2245
|
-
d.
|
|
2246
|
-
d.
|
|
2247
|
-
d.
|
|
2243
|
+
d.p6 = this.dq;
|
|
2244
|
+
d.p2 = this.dk;
|
|
2245
|
+
d.pw = this.dg;
|
|
2246
|
+
d.p1 = this.dj;
|
|
2247
|
+
d.p3 = this.dl;
|
|
2248
2248
|
d.bu = 40;
|
|
2249
2249
|
if (c == "month") {
|
|
2250
2250
|
d.h2 = "btnMonth";
|
|
@@ -2412,34 +2412,34 @@ export let XCalendar = /*@__PURE__*/ (() => {
|
|
|
2412
2412
|
let b = this.ai._inner[a];
|
|
2413
2413
|
let c = this.ah._inner[a];
|
|
2414
2414
|
if (+(this.value) != +(dateMinValue()) && b.b == this.value.getDate() && b.c == dateGetMonth(this.value) && b.d == this.value.getFullYear()) {
|
|
2415
|
-
c.
|
|
2416
|
-
c.
|
|
2417
|
-
c.
|
|
2418
|
-
c.
|
|
2419
|
-
c.
|
|
2415
|
+
c.p6 = this.dn;
|
|
2416
|
+
c.p2 = this.dn;
|
|
2417
|
+
c.pw = this.dm;
|
|
2418
|
+
c.p1 = this.dp;
|
|
2419
|
+
c.px = this.dg;
|
|
2420
2420
|
}
|
|
2421
2421
|
else if (b.b == this.av.getDate() && b.c == dateGetMonth(this.av) && b.d == this.av.getFullYear()) {
|
|
2422
|
-
c.
|
|
2422
|
+
c.p6 = this.di;
|
|
2423
2423
|
;
|
|
2424
|
-
c.
|
|
2425
|
-
c.
|
|
2426
|
-
c.
|
|
2427
|
-
c.
|
|
2424
|
+
c.p2 = this.dk;
|
|
2425
|
+
c.pw = this.dg;
|
|
2426
|
+
c.p1 = this.dj;
|
|
2427
|
+
c.px = this.dh;
|
|
2428
2428
|
c.br = 1;
|
|
2429
2429
|
}
|
|
2430
2430
|
else if (b.a != 0 && b.a != 6 && b.c == dateGetMonth(this.aq)) {
|
|
2431
|
-
c.
|
|
2432
|
-
c.
|
|
2433
|
-
c.
|
|
2434
|
-
c.
|
|
2435
|
-
c.
|
|
2431
|
+
c.p6 = this.dq;
|
|
2432
|
+
c.p2 = this.dk;
|
|
2433
|
+
c.pw = this.dg;
|
|
2434
|
+
c.p1 = this.dj;
|
|
2435
|
+
c.px = this.dg;
|
|
2436
2436
|
}
|
|
2437
2437
|
else {
|
|
2438
|
-
c.
|
|
2439
|
-
c.
|
|
2440
|
-
c.
|
|
2441
|
-
c.
|
|
2442
|
-
c.
|
|
2438
|
+
c.p6 = this.dq;
|
|
2439
|
+
c.p2 = this.dk;
|
|
2440
|
+
c.pw = this.dg;
|
|
2441
|
+
c.p1 = this.dj;
|
|
2442
|
+
c.px = this.dg;
|
|
2443
2443
|
}
|
|
2444
2444
|
if (b.d >= this.au.getFullYear() && b.d <= this.at.getFullYear()) {
|
|
2445
2445
|
if (b.d == this.au.getFullYear() && b.d == this.at.getFullYear()) {
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ColorEditor } from "./NativeUIXInputsFactory_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ColorEditorBridge } from "./NativeUIXInputsFactory_combined";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
import { EventArgs, markType } from "igniteui-angular-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let ColorEditorGotFocusEventArgs = /*@__PURE__*/ (() => {
|
|
12
|
+
class ColorEditorGotFocusEventArgs extends EventArgs {
|
|
13
|
+
}
|
|
14
|
+
ColorEditorGotFocusEventArgs.$t = markType(ColorEditorGotFocusEventArgs, 'ColorEditorGotFocusEventArgs', EventArgs.$);
|
|
15
|
+
return ColorEditorGotFocusEventArgs;
|
|
16
|
+
})();
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
import { EventArgs, markType } from "igniteui-angular-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let ColorEditorLostFocusEventArgs = /*@__PURE__*/ (() => {
|
|
12
|
+
class ColorEditorLostFocusEventArgs extends EventArgs {
|
|
13
|
+
}
|
|
14
|
+
ColorEditorLostFocusEventArgs.$t = markType(ColorEditorLostFocusEventArgs, 'ColorEditorLostFocusEventArgs', EventArgs.$);
|
|
15
|
+
return ColorEditorLostFocusEventArgs;
|
|
16
|
+
})();
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ColorEditorPanel } from "./NativeUIXInputsFactory_combined";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
import { Base, markType } from "igniteui-angular-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let ColorEditorPanelClosedEventArgs = /*@__PURE__*/ (() => {
|
|
12
|
+
class ColorEditorPanelClosedEventArgs extends Base {
|
|
13
|
+
}
|
|
14
|
+
ColorEditorPanelClosedEventArgs.$t = markType(ColorEditorPanelClosedEventArgs, 'ColorEditorPanelClosedEventArgs');
|
|
15
|
+
return ColorEditorPanelClosedEventArgs;
|
|
16
|
+
})();
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
import { EventArgs, markType } from "igniteui-angular-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let ColorEditorPanelSelectedValueChangedEventArgs = /*@__PURE__*/ (() => {
|
|
12
|
+
class ColorEditorPanelSelectedValueChangedEventArgs extends EventArgs {
|
|
13
|
+
constructor() {
|
|
14
|
+
super(...arguments);
|
|
15
|
+
this._oldValue = null;
|
|
16
|
+
this._newValue = null;
|
|
17
|
+
}
|
|
18
|
+
get oldValue() {
|
|
19
|
+
return this._oldValue;
|
|
20
|
+
}
|
|
21
|
+
set oldValue(a) {
|
|
22
|
+
this._oldValue = a;
|
|
23
|
+
}
|
|
24
|
+
get newValue() {
|
|
25
|
+
return this._newValue;
|
|
26
|
+
}
|
|
27
|
+
set newValue(a) {
|
|
28
|
+
this._newValue = a;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
ColorEditorPanelSelectedValueChangedEventArgs.$t = markType(ColorEditorPanelSelectedValueChangedEventArgs, 'ColorEditorPanelSelectedValueChangedEventArgs', EventArgs.$);
|
|
32
|
+
return ColorEditorPanelSelectedValueChangedEventArgs;
|
|
33
|
+
})();
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ColorEditorPanelView } from "./NativeUIXInputsFactory_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
export { ColorEditorView } from "./NativeUIXInputsFactory_combined";
|
|
@@ -880,12 +880,12 @@ export let XDatePicker = /*@__PURE__*/ (() => {
|
|
|
880
880
|
break;
|
|
881
881
|
case "IsFixed":
|
|
882
882
|
if (this.u != null) {
|
|
883
|
-
this.u.
|
|
883
|
+
this.u.ar = this.aw;
|
|
884
884
|
}
|
|
885
885
|
break;
|
|
886
886
|
case "UseTopLayer":
|
|
887
887
|
if (this.u != null) {
|
|
888
|
-
this.u.
|
|
888
|
+
this.u.ay = this.a3;
|
|
889
889
|
}
|
|
890
890
|
break;
|
|
891
891
|
}
|
|
@@ -991,7 +991,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
|
|
|
991
991
|
this.n.fill = this.dw;
|
|
992
992
|
}
|
|
993
993
|
if (this.r != null) {
|
|
994
|
-
this.r.
|
|
994
|
+
this.r.di = this.dx;
|
|
995
995
|
this.r.y = this.ac;
|
|
996
996
|
}
|
|
997
997
|
}
|
|
@@ -1012,7 +1012,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
|
|
|
1012
1012
|
this.q.t = this.y;
|
|
1013
1013
|
this.r = new XLabel();
|
|
1014
1014
|
this.h.as(this.r);
|
|
1015
|
-
this.r.
|
|
1015
|
+
this.r.di = this.dx;
|
|
1016
1016
|
this.r.y = this.ac;
|
|
1017
1017
|
this.q.appendContentChild(this.h.v());
|
|
1018
1018
|
if (this.b4 != null && this.b4 != "") {
|
|
@@ -1457,10 +1457,10 @@ export let XDatePicker = /*@__PURE__*/ (() => {
|
|
|
1457
1457
|
}
|
|
1458
1458
|
ct() {
|
|
1459
1459
|
this.u = new Popup();
|
|
1460
|
-
this.u.
|
|
1461
|
-
this.u.
|
|
1462
|
-
this.u.
|
|
1463
|
-
this.u.
|
|
1460
|
+
this.u.ar = this.aw;
|
|
1461
|
+
this.u.ay = this.a3;
|
|
1462
|
+
this.u.c0 = BrushUtil.h(255, 255, 255, 255);
|
|
1463
|
+
this.u.a9 = 150;
|
|
1464
1464
|
this.h.at(this.u);
|
|
1465
1465
|
this.c = new XCalendar();
|
|
1466
1466
|
this.h.ao(this.c);
|
|
@@ -1489,14 +1489,14 @@ export let XDatePicker = /*@__PURE__*/ (() => {
|
|
|
1489
1489
|
this.ai = false;
|
|
1490
1490
|
}
|
|
1491
1491
|
cn(a) {
|
|
1492
|
-
if (this.u.
|
|
1492
|
+
if (this.u.ax) {
|
|
1493
1493
|
this.ah = true;
|
|
1494
1494
|
this.cr();
|
|
1495
1495
|
}
|
|
1496
1496
|
}
|
|
1497
1497
|
cy() {
|
|
1498
1498
|
if (this.ah == false) {
|
|
1499
|
-
if (this.u.
|
|
1499
|
+
if (this.u.ax) {
|
|
1500
1500
|
this.cr();
|
|
1501
1501
|
}
|
|
1502
1502
|
else {
|
|
@@ -1537,7 +1537,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
|
|
|
1537
1537
|
}
|
|
1538
1538
|
dk(a, b) {
|
|
1539
1539
|
if (this.ax) {
|
|
1540
|
-
this.u.
|
|
1540
|
+
this.u.cr(this.h.d.rootWrapper.getNativeElement(), a, b);
|
|
1541
1541
|
}
|
|
1542
1542
|
else {
|
|
1543
1543
|
let c = this.h.a0(true);
|
|
@@ -1545,7 +1545,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
|
|
|
1545
1545
|
}
|
|
1546
1546
|
}
|
|
1547
1547
|
dn() {
|
|
1548
|
-
if (this.u.
|
|
1548
|
+
if (this.u.ax) {
|
|
1549
1549
|
let a = this.h.a0(false);
|
|
1550
1550
|
let b = new Rect(0, a.left + window.pageXOffset, a.top + window.pageYOffset, a.width, a.height);
|
|
1551
1551
|
let c = this.h.a()[1];
|
|
@@ -1559,27 +1559,27 @@ export let XDatePicker = /*@__PURE__*/ (() => {
|
|
|
1559
1559
|
if (f < 0) {
|
|
1560
1560
|
if (this.u.r != 1) {
|
|
1561
1561
|
this.u.r = 1;
|
|
1562
|
-
this.u.
|
|
1562
|
+
this.u.ca(b);
|
|
1563
1563
|
}
|
|
1564
1564
|
}
|
|
1565
1565
|
else {
|
|
1566
1566
|
if (this.u.r != 2) {
|
|
1567
1567
|
this.u.r = 2;
|
|
1568
|
-
this.u.
|
|
1568
|
+
this.u.ca(b);
|
|
1569
1569
|
}
|
|
1570
1570
|
}
|
|
1571
1571
|
}
|
|
1572
1572
|
else {
|
|
1573
1573
|
if (this.u.r != 1) {
|
|
1574
1574
|
this.u.r = 1;
|
|
1575
|
-
this.u.
|
|
1575
|
+
this.u.ca(b);
|
|
1576
1576
|
}
|
|
1577
1577
|
}
|
|
1578
1578
|
}
|
|
1579
1579
|
}
|
|
1580
1580
|
cr() {
|
|
1581
1581
|
if (this.u != null) {
|
|
1582
|
-
window.setTimeout(() => this.u.
|
|
1582
|
+
window.setTimeout(() => this.u.b6(), 0);
|
|
1583
1583
|
}
|
|
1584
1584
|
if (this.c != null) {
|
|
1585
1585
|
this.c.cy();
|
|
@@ -1592,7 +1592,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
|
|
|
1592
1592
|
if (this.o != null) {
|
|
1593
1593
|
this.o.focus(a);
|
|
1594
1594
|
}
|
|
1595
|
-
if (!this.u.
|
|
1595
|
+
if (!this.u.ax && this.ay == true) {
|
|
1596
1596
|
if (this.ah == false) {
|
|
1597
1597
|
if (this.al) {
|
|
1598
1598
|
return;
|
|
@@ -1649,7 +1649,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
|
|
|
1649
1649
|
let a = new DatePickerVisualModelExport();
|
|
1650
1650
|
a.e = this.y;
|
|
1651
1651
|
a.d = this.w;
|
|
1652
|
-
a.c = this.u.
|
|
1652
|
+
a.c = this.u.bd();
|
|
1653
1653
|
a.b = this.q.fe();
|
|
1654
1654
|
a.a = this.c.bj();
|
|
1655
1655
|
if (this.ad != null) {
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
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
|
+
*/
|
|
7
|
+
import { Base, Point_$type, markType } from "igniteui-angular-core";
|
|
8
|
+
import { IMultiSliderTrackBarVisual_$type } from "./IMultiSliderTrackBarVisual";
|
|
9
|
+
import { Path } from "igniteui-angular-core";
|
|
10
|
+
import { List$1 } from "igniteui-angular-core";
|
|
11
|
+
import { Brush } from "igniteui-angular-core";
|
|
12
|
+
import { Color } from "igniteui-angular-core";
|
|
13
|
+
import { PathGeometry } from "igniteui-angular-core";
|
|
14
|
+
import { PathFigure } from "igniteui-angular-core";
|
|
15
|
+
import { PolyLineSegment } from "igniteui-angular-core";
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
export let DefaultMultiSliderTrackBarVisual = /*@__PURE__*/ (() => {
|
|
20
|
+
class DefaultMultiSliderTrackBarVisual extends Base {
|
|
21
|
+
constructor() {
|
|
22
|
+
super();
|
|
23
|
+
this._translateX = 0;
|
|
24
|
+
this._translateY = 0;
|
|
25
|
+
this.b = -1;
|
|
26
|
+
this.a = -1;
|
|
27
|
+
this._barBox = null;
|
|
28
|
+
this._allPaths = null;
|
|
29
|
+
this.barBox = new Path();
|
|
30
|
+
this.allPaths = new List$1(Path.$, 0);
|
|
31
|
+
this.allPaths.add(this.barBox);
|
|
32
|
+
this.barBox._fill = this.getBarBoxDefaultBrush();
|
|
33
|
+
}
|
|
34
|
+
get translateX() {
|
|
35
|
+
return this._translateX;
|
|
36
|
+
}
|
|
37
|
+
set translateX(a) {
|
|
38
|
+
this._translateX = a;
|
|
39
|
+
}
|
|
40
|
+
get translateY() {
|
|
41
|
+
return this._translateY;
|
|
42
|
+
}
|
|
43
|
+
set translateY(a) {
|
|
44
|
+
this._translateY = a;
|
|
45
|
+
}
|
|
46
|
+
getBarBoxDefaultBrush() {
|
|
47
|
+
return ((() => {
|
|
48
|
+
let $ret = new Brush();
|
|
49
|
+
$ret.color = Color.u(255, 218, 218, 218);
|
|
50
|
+
return $ret;
|
|
51
|
+
})());
|
|
52
|
+
}
|
|
53
|
+
getBarBoxDefaultOutline() {
|
|
54
|
+
return null;
|
|
55
|
+
}
|
|
56
|
+
getBarBoxDefaultStrokeThickness() {
|
|
57
|
+
return 0;
|
|
58
|
+
}
|
|
59
|
+
c() {
|
|
60
|
+
let a = new PathGeometry();
|
|
61
|
+
let b = new PathFigure();
|
|
62
|
+
let c = new PolyLineSegment();
|
|
63
|
+
b._isClosed = true;
|
|
64
|
+
b._isFilled = true;
|
|
65
|
+
b._startPoint = { $type: Point_$type, x: this.width / -2, y: this.height / -2 };
|
|
66
|
+
c._points.add({ $type: Point_$type, x: this.width / 2, y: this.height / -2 });
|
|
67
|
+
c._points.add({ $type: Point_$type, x: this.width / 2, y: this.height / 2 });
|
|
68
|
+
c._points.add({ $type: Point_$type, x: this.width / -2, y: this.height / 2 });
|
|
69
|
+
b._segments.add(c);
|
|
70
|
+
a.c.add(b);
|
|
71
|
+
this.barBox.an = a;
|
|
72
|
+
}
|
|
73
|
+
get width() {
|
|
74
|
+
return this.b;
|
|
75
|
+
}
|
|
76
|
+
set width(a) {
|
|
77
|
+
let b = this.b;
|
|
78
|
+
this.b = a;
|
|
79
|
+
if (b != this.b) {
|
|
80
|
+
this.d();
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
d() {
|
|
84
|
+
if (this.width > 0 && this.height > 0) {
|
|
85
|
+
this.c();
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
get height() {
|
|
89
|
+
return this.a;
|
|
90
|
+
}
|
|
91
|
+
set height(a) {
|
|
92
|
+
let b = this.a;
|
|
93
|
+
this.a = a;
|
|
94
|
+
if (this.a != b) {
|
|
95
|
+
this.d();
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
get barBox() {
|
|
99
|
+
return this._barBox;
|
|
100
|
+
}
|
|
101
|
+
set barBox(a) {
|
|
102
|
+
this._barBox = a;
|
|
103
|
+
}
|
|
104
|
+
get allPaths() {
|
|
105
|
+
return this._allPaths;
|
|
106
|
+
}
|
|
107
|
+
set allPaths(a) {
|
|
108
|
+
this._allPaths = a;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
DefaultMultiSliderTrackBarVisual.$t = markType(DefaultMultiSliderTrackBarVisual, 'DefaultMultiSliderTrackBarVisual', Base.$, [IMultiSliderTrackBarVisual_$type]);
|
|
112
|
+
return DefaultMultiSliderTrackBarVisual;
|
|
113
|
+
})();
|