igniteui-angular-inputs 18.1.1 → 18.2.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -1843,70 +1843,70 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1843
1843
|
XCalendar.prototype.c3 = function () {
|
|
1844
1844
|
for (var a = 0; a < this.aj.count; a++) {
|
|
1845
1845
|
if (this.dq != null) {
|
|
1846
|
-
this.aj._inner[a].
|
|
1846
|
+
this.aj._inner[a].p6 = this.dq;
|
|
1847
1847
|
}
|
|
1848
1848
|
if (this.dk != null) {
|
|
1849
|
-
this.aj._inner[a].
|
|
1849
|
+
this.aj._inner[a].p2 = this.dk;
|
|
1850
1850
|
}
|
|
1851
1851
|
if (this.dg != null) {
|
|
1852
|
-
this.aj._inner[a].
|
|
1852
|
+
this.aj._inner[a].pw = this.dg;
|
|
1853
1853
|
}
|
|
1854
1854
|
if (this.dj != null) {
|
|
1855
|
-
this.aj._inner[a].
|
|
1855
|
+
this.aj._inner[a].p1 = this.dj;
|
|
1856
1856
|
}
|
|
1857
1857
|
if (this.dl != null) {
|
|
1858
|
-
this.aj._inner[a].
|
|
1858
|
+
this.aj._inner[a].p3 = this.dl;
|
|
1859
1859
|
}
|
|
1860
1860
|
}
|
|
1861
1861
|
for (var b = 0; b < this.ah.count; b++) {
|
|
1862
1862
|
if (this.dq != null) {
|
|
1863
|
-
this.ah._inner[b].
|
|
1863
|
+
this.ah._inner[b].p6 = this.dq;
|
|
1864
1864
|
}
|
|
1865
1865
|
if (this.dk != null) {
|
|
1866
|
-
this.ah._inner[b].
|
|
1866
|
+
this.ah._inner[b].p2 = this.dk;
|
|
1867
1867
|
}
|
|
1868
1868
|
if (this.dg != null) {
|
|
1869
|
-
this.ah._inner[b].
|
|
1869
|
+
this.ah._inner[b].pw = this.dg;
|
|
1870
1870
|
}
|
|
1871
1871
|
if (this.dj != null) {
|
|
1872
|
-
this.ah._inner[b].
|
|
1872
|
+
this.ah._inner[b].p1 = this.dj;
|
|
1873
1873
|
}
|
|
1874
1874
|
if (this.dl != null) {
|
|
1875
|
-
this.ah._inner[b].
|
|
1875
|
+
this.ah._inner[b].p3 = this.dl;
|
|
1876
1876
|
}
|
|
1877
1877
|
}
|
|
1878
1878
|
for (var c = 0; c < this.ak.count; c++) {
|
|
1879
1879
|
if (this.dq != null) {
|
|
1880
|
-
this.ak._inner[c].
|
|
1880
|
+
this.ak._inner[c].p6 = this.dq;
|
|
1881
1881
|
}
|
|
1882
1882
|
if (this.dk != null) {
|
|
1883
|
-
this.ak._inner[c].
|
|
1883
|
+
this.ak._inner[c].p2 = this.dk;
|
|
1884
1884
|
}
|
|
1885
1885
|
if (this.dg != null) {
|
|
1886
|
-
this.ak._inner[c].
|
|
1886
|
+
this.ak._inner[c].pw = this.dg;
|
|
1887
1887
|
}
|
|
1888
1888
|
if (this.dj != null) {
|
|
1889
|
-
this.ak._inner[c].
|
|
1889
|
+
this.ak._inner[c].p1 = this.dj;
|
|
1890
1890
|
}
|
|
1891
1891
|
if (this.dl != null) {
|
|
1892
|
-
this.ak._inner[c].
|
|
1892
|
+
this.ak._inner[c].p3 = this.dl;
|
|
1893
1893
|
}
|
|
1894
1894
|
}
|
|
1895
1895
|
for (var d = 0; d < this.al.count; d++) {
|
|
1896
1896
|
if (this.dq != null) {
|
|
1897
|
-
this.al._inner[d].
|
|
1897
|
+
this.al._inner[d].p6 = this.dq;
|
|
1898
1898
|
}
|
|
1899
1899
|
if (this.dk != null) {
|
|
1900
|
-
this.al._inner[d].
|
|
1900
|
+
this.al._inner[d].p2 = this.dk;
|
|
1901
1901
|
}
|
|
1902
1902
|
if (this.dg != null) {
|
|
1903
|
-
this.al._inner[d].
|
|
1903
|
+
this.al._inner[d].pw = this.dg;
|
|
1904
1904
|
}
|
|
1905
1905
|
if (this.dj != null) {
|
|
1906
|
-
this.al._inner[d].
|
|
1906
|
+
this.al._inner[d].p1 = this.dj;
|
|
1907
1907
|
}
|
|
1908
1908
|
if (this.dl != null) {
|
|
1909
|
-
this.al._inner[d].
|
|
1909
|
+
this.al._inner[d].p3 = this.dl;
|
|
1910
1910
|
}
|
|
1911
1911
|
}
|
|
1912
1912
|
};
|
|
@@ -1974,15 +1974,15 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1974
1974
|
d.aa = this.u;
|
|
1975
1975
|
}
|
|
1976
1976
|
var e = new CornerRadius(0, 2);
|
|
1977
|
-
d.
|
|
1978
|
-
d.
|
|
1977
|
+
d.ku = e;
|
|
1978
|
+
d.k1 = e;
|
|
1979
1979
|
d.dk = 0;
|
|
1980
1980
|
d.appendButtonContent(b);
|
|
1981
|
-
d.
|
|
1982
|
-
d.
|
|
1983
|
-
d.
|
|
1984
|
-
d.
|
|
1985
|
-
d.
|
|
1981
|
+
d.p6 = this.dq;
|
|
1982
|
+
d.p2 = this.dk;
|
|
1983
|
+
d.pw = this.dg;
|
|
1984
|
+
d.p1 = this.dj;
|
|
1985
|
+
d.p3 = this.dl;
|
|
1986
1986
|
d.bu = 30;
|
|
1987
1987
|
d.bt = 30;
|
|
1988
1988
|
this.ah.add(d);
|
|
@@ -2000,17 +2000,17 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2000
2000
|
c.aa = this.u;
|
|
2001
2001
|
}
|
|
2002
2002
|
var d = new CornerRadius(0, 2);
|
|
2003
|
-
c.
|
|
2004
|
-
c.
|
|
2003
|
+
c.ku = d;
|
|
2004
|
+
c.k1 = d;
|
|
2005
2005
|
c.dk = 0;
|
|
2006
2006
|
c.appendButtonContent(b);
|
|
2007
2007
|
var e = !stringIsNullOrWhiteSpace(this.x.b1("Today")) ? this.x.b1("Today") : "Today";
|
|
2008
2008
|
this.h.az(e);
|
|
2009
|
-
c.
|
|
2010
|
-
c.
|
|
2011
|
-
c.
|
|
2012
|
-
c.
|
|
2013
|
-
c.
|
|
2009
|
+
c.p6 = this.dq;
|
|
2010
|
+
c.p2 = this.dk;
|
|
2011
|
+
c.pw = this.dg;
|
|
2012
|
+
c.p1 = this.dj;
|
|
2013
|
+
c.p3 = this.dl;
|
|
2014
2014
|
this.g = c;
|
|
2015
2015
|
var f = this.g;
|
|
2016
2016
|
f.clicked = delegateCombine(f.clicked, runOn(this, this.c2));
|
|
@@ -2032,15 +2032,15 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2032
2032
|
c.aa = this.u;
|
|
2033
2033
|
}
|
|
2034
2034
|
var d = new CornerRadius(0, 2);
|
|
2035
|
-
c.
|
|
2036
|
-
c.
|
|
2035
|
+
c.ku = d;
|
|
2036
|
+
c.k1 = d;
|
|
2037
2037
|
c.dk = 0;
|
|
2038
2038
|
c.appendButtonContent(b);
|
|
2039
|
-
c.
|
|
2040
|
-
c.
|
|
2041
|
-
c.
|
|
2042
|
-
c.
|
|
2043
|
-
c.
|
|
2039
|
+
c.p6 = this.dq;
|
|
2040
|
+
c.p2 = this.dk;
|
|
2041
|
+
c.pw = this.dg;
|
|
2042
|
+
c.p1 = this.dj;
|
|
2043
|
+
c.p3 = this.dl;
|
|
2044
2044
|
c.bu = 40;
|
|
2045
2045
|
this.ak.add(c);
|
|
2046
2046
|
};
|
|
@@ -2113,15 +2113,15 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2113
2113
|
d.aa = this.u;
|
|
2114
2114
|
}
|
|
2115
2115
|
var e = new CornerRadius(0, 2);
|
|
2116
|
-
d.
|
|
2117
|
-
d.
|
|
2116
|
+
d.ku = e;
|
|
2117
|
+
d.k1 = e;
|
|
2118
2118
|
d.dk = 0;
|
|
2119
2119
|
d.appendButtonContent(b);
|
|
2120
|
-
d.
|
|
2121
|
-
d.
|
|
2122
|
-
d.
|
|
2123
|
-
d.
|
|
2124
|
-
d.
|
|
2120
|
+
d.p6 = this.dq;
|
|
2121
|
+
d.p2 = this.dk;
|
|
2122
|
+
d.pw = this.dg;
|
|
2123
|
+
d.p1 = this.dj;
|
|
2124
|
+
d.p3 = this.dl;
|
|
2125
2125
|
d.h2 = "btnYear" + c.toString();
|
|
2126
2126
|
this.al.add(d);
|
|
2127
2127
|
};
|
|
@@ -2325,8 +2325,8 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2325
2325
|
e.d3 = -1;
|
|
2326
2326
|
e.e = 1;
|
|
2327
2327
|
var f = new CornerRadius(0, 2);
|
|
2328
|
-
e.
|
|
2329
|
-
e.
|
|
2328
|
+
e.ku = f;
|
|
2329
|
+
e.k1 = f;
|
|
2330
2330
|
e.dk = 0;
|
|
2331
2331
|
var g = new XIcon();
|
|
2332
2332
|
this.h.aw(b, g);
|
|
@@ -2339,11 +2339,11 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2339
2339
|
e.h2 = "btnNext";
|
|
2340
2340
|
}
|
|
2341
2341
|
e.appendButtonContent(c);
|
|
2342
|
-
e.
|
|
2343
|
-
e.
|
|
2344
|
-
e.
|
|
2345
|
-
e.
|
|
2346
|
-
e.
|
|
2342
|
+
e.p6 = this.dq;
|
|
2343
|
+
e.p2 = this.dk;
|
|
2344
|
+
e.pw = this.dg;
|
|
2345
|
+
e.p1 = this.dj;
|
|
2346
|
+
e.p3 = this.dl;
|
|
2347
2347
|
e.bu = 28;
|
|
2348
2348
|
e.bt = 28;
|
|
2349
2349
|
this.aj.add(e);
|
|
@@ -2360,15 +2360,15 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2360
2360
|
d.aa = this.u;
|
|
2361
2361
|
}
|
|
2362
2362
|
var e = new CornerRadius(0, 2);
|
|
2363
|
-
d.
|
|
2364
|
-
d.
|
|
2363
|
+
d.ku = e;
|
|
2364
|
+
d.k1 = e;
|
|
2365
2365
|
d.dk = 0;
|
|
2366
2366
|
d.appendButtonContent(b);
|
|
2367
|
-
d.
|
|
2368
|
-
d.
|
|
2369
|
-
d.
|
|
2370
|
-
d.
|
|
2371
|
-
d.
|
|
2367
|
+
d.p6 = this.dq;
|
|
2368
|
+
d.p2 = this.dk;
|
|
2369
|
+
d.pw = this.dg;
|
|
2370
|
+
d.p1 = this.dj;
|
|
2371
|
+
d.p3 = this.dl;
|
|
2372
2372
|
d.bu = 40;
|
|
2373
2373
|
if (c == "month") {
|
|
2374
2374
|
d.h2 = "btnMonth";
|
|
@@ -2536,34 +2536,34 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2536
2536
|
var b = this.ai._inner[a];
|
|
2537
2537
|
var c = this.ah._inner[a];
|
|
2538
2538
|
if (+(this.value) != +(dateMinValue()) && b.b == this.value.getDate() && b.c == dateGetMonth(this.value) && b.d == this.value.getFullYear()) {
|
|
2539
|
-
c.
|
|
2540
|
-
c.
|
|
2541
|
-
c.
|
|
2542
|
-
c.
|
|
2543
|
-
c.
|
|
2539
|
+
c.p6 = this.dn;
|
|
2540
|
+
c.p2 = this.dn;
|
|
2541
|
+
c.pw = this.dm;
|
|
2542
|
+
c.p1 = this.dp;
|
|
2543
|
+
c.px = this.dg;
|
|
2544
2544
|
}
|
|
2545
2545
|
else if (b.b == this.av.getDate() && b.c == dateGetMonth(this.av) && b.d == this.av.getFullYear()) {
|
|
2546
|
-
c.
|
|
2546
|
+
c.p6 = this.di;
|
|
2547
2547
|
;
|
|
2548
|
-
c.
|
|
2549
|
-
c.
|
|
2550
|
-
c.
|
|
2551
|
-
c.
|
|
2548
|
+
c.p2 = this.dk;
|
|
2549
|
+
c.pw = this.dg;
|
|
2550
|
+
c.p1 = this.dj;
|
|
2551
|
+
c.px = this.dh;
|
|
2552
2552
|
c.br = 1;
|
|
2553
2553
|
}
|
|
2554
2554
|
else if (b.a != 0 && b.a != 6 && b.c == dateGetMonth(this.aq)) {
|
|
2555
|
-
c.
|
|
2556
|
-
c.
|
|
2557
|
-
c.
|
|
2558
|
-
c.
|
|
2559
|
-
c.
|
|
2555
|
+
c.p6 = this.dq;
|
|
2556
|
+
c.p2 = this.dk;
|
|
2557
|
+
c.pw = this.dg;
|
|
2558
|
+
c.p1 = this.dj;
|
|
2559
|
+
c.px = this.dg;
|
|
2560
2560
|
}
|
|
2561
2561
|
else {
|
|
2562
|
-
c.
|
|
2563
|
-
c.
|
|
2564
|
-
c.
|
|
2565
|
-
c.
|
|
2566
|
-
c.
|
|
2562
|
+
c.p6 = this.dq;
|
|
2563
|
+
c.p2 = this.dk;
|
|
2564
|
+
c.pw = this.dg;
|
|
2565
|
+
c.p1 = this.dj;
|
|
2566
|
+
c.px = this.dg;
|
|
2567
2567
|
}
|
|
2568
2568
|
if (b.d >= this.au.getFullYear() && b.d <= this.at.getFullYear()) {
|
|
2569
2569
|
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,20 @@
|
|
|
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 { __extends } from "tslib";
|
|
8
|
+
import { EventArgs, markType } from "igniteui-angular-core";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
var ColorEditorGotFocusEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
13
|
+
__extends(ColorEditorGotFocusEventArgs, _super);
|
|
14
|
+
function ColorEditorGotFocusEventArgs() {
|
|
15
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
16
|
+
}
|
|
17
|
+
ColorEditorGotFocusEventArgs.$t = markType(ColorEditorGotFocusEventArgs, 'ColorEditorGotFocusEventArgs', EventArgs.$);
|
|
18
|
+
return ColorEditorGotFocusEventArgs;
|
|
19
|
+
}(EventArgs));
|
|
20
|
+
export { ColorEditorGotFocusEventArgs };
|
|
@@ -0,0 +1,20 @@
|
|
|
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 { __extends } from "tslib";
|
|
8
|
+
import { EventArgs, markType } from "igniteui-angular-core";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
var ColorEditorLostFocusEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
13
|
+
__extends(ColorEditorLostFocusEventArgs, _super);
|
|
14
|
+
function ColorEditorLostFocusEventArgs() {
|
|
15
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
16
|
+
}
|
|
17
|
+
ColorEditorLostFocusEventArgs.$t = markType(ColorEditorLostFocusEventArgs, 'ColorEditorLostFocusEventArgs', EventArgs.$);
|
|
18
|
+
return ColorEditorLostFocusEventArgs;
|
|
19
|
+
}(EventArgs));
|
|
20
|
+
export { ColorEditorLostFocusEventArgs };
|
|
@@ -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,20 @@
|
|
|
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 { __extends } from "tslib";
|
|
8
|
+
import { Base, markType } from "igniteui-angular-core";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
var ColorEditorPanelClosedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
13
|
+
__extends(ColorEditorPanelClosedEventArgs, _super);
|
|
14
|
+
function ColorEditorPanelClosedEventArgs() {
|
|
15
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
16
|
+
}
|
|
17
|
+
ColorEditorPanelClosedEventArgs.$t = markType(ColorEditorPanelClosedEventArgs, 'ColorEditorPanelClosedEventArgs');
|
|
18
|
+
return ColorEditorPanelClosedEventArgs;
|
|
19
|
+
}(Base));
|
|
20
|
+
export { ColorEditorPanelClosedEventArgs };
|
|
@@ -0,0 +1,43 @@
|
|
|
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 { __extends } from "tslib";
|
|
8
|
+
import { EventArgs, markType } from "igniteui-angular-core";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
var ColorEditorPanelSelectedValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
13
|
+
__extends(ColorEditorPanelSelectedValueChangedEventArgs, _super);
|
|
14
|
+
function ColorEditorPanelSelectedValueChangedEventArgs() {
|
|
15
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
16
|
+
_this._oldValue = null;
|
|
17
|
+
_this._newValue = null;
|
|
18
|
+
return _this;
|
|
19
|
+
}
|
|
20
|
+
Object.defineProperty(ColorEditorPanelSelectedValueChangedEventArgs.prototype, "oldValue", {
|
|
21
|
+
get: function () {
|
|
22
|
+
return this._oldValue;
|
|
23
|
+
},
|
|
24
|
+
set: function (a) {
|
|
25
|
+
this._oldValue = a;
|
|
26
|
+
},
|
|
27
|
+
enumerable: false,
|
|
28
|
+
configurable: true
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(ColorEditorPanelSelectedValueChangedEventArgs.prototype, "newValue", {
|
|
31
|
+
get: function () {
|
|
32
|
+
return this._newValue;
|
|
33
|
+
},
|
|
34
|
+
set: function (a) {
|
|
35
|
+
this._newValue = a;
|
|
36
|
+
},
|
|
37
|
+
enumerable: false,
|
|
38
|
+
configurable: true
|
|
39
|
+
});
|
|
40
|
+
ColorEditorPanelSelectedValueChangedEventArgs.$t = markType(ColorEditorPanelSelectedValueChangedEventArgs, 'ColorEditorPanelSelectedValueChangedEventArgs', EventArgs.$);
|
|
41
|
+
return ColorEditorPanelSelectedValueChangedEventArgs;
|
|
42
|
+
}(EventArgs));
|
|
43
|
+
export { ColorEditorPanelSelectedValueChangedEventArgs };
|
|
@@ -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";
|
|
@@ -999,12 +999,12 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
999
999
|
break;
|
|
1000
1000
|
case "IsFixed":
|
|
1001
1001
|
if (this.u != null) {
|
|
1002
|
-
this.u.
|
|
1002
|
+
this.u.ar = this.aw;
|
|
1003
1003
|
}
|
|
1004
1004
|
break;
|
|
1005
1005
|
case "UseTopLayer":
|
|
1006
1006
|
if (this.u != null) {
|
|
1007
|
-
this.u.
|
|
1007
|
+
this.u.ay = this.a3;
|
|
1008
1008
|
}
|
|
1009
1009
|
break;
|
|
1010
1010
|
}
|
|
@@ -1110,7 +1110,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1110
1110
|
this.n.fill = this.dw;
|
|
1111
1111
|
}
|
|
1112
1112
|
if (this.r != null) {
|
|
1113
|
-
this.r.
|
|
1113
|
+
this.r.di = this.dx;
|
|
1114
1114
|
this.r.y = this.ac;
|
|
1115
1115
|
}
|
|
1116
1116
|
};
|
|
@@ -1131,7 +1131,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1131
1131
|
this.q.t = this.y;
|
|
1132
1132
|
this.r = new XLabel();
|
|
1133
1133
|
this.h.as(this.r);
|
|
1134
|
-
this.r.
|
|
1134
|
+
this.r.di = this.dx;
|
|
1135
1135
|
this.r.y = this.ac;
|
|
1136
1136
|
this.q.appendContentChild(this.h.v());
|
|
1137
1137
|
if (this.b4 != null && this.b4 != "") {
|
|
@@ -1576,10 +1576,10 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1576
1576
|
};
|
|
1577
1577
|
XDatePicker.prototype.ct = function () {
|
|
1578
1578
|
this.u = new Popup();
|
|
1579
|
-
this.u.
|
|
1580
|
-
this.u.
|
|
1581
|
-
this.u.
|
|
1582
|
-
this.u.
|
|
1579
|
+
this.u.ar = this.aw;
|
|
1580
|
+
this.u.ay = this.a3;
|
|
1581
|
+
this.u.c0 = BrushUtil.h(255, 255, 255, 255);
|
|
1582
|
+
this.u.a9 = 150;
|
|
1583
1583
|
this.h.at(this.u);
|
|
1584
1584
|
this.c = new XCalendar();
|
|
1585
1585
|
this.h.ao(this.c);
|
|
@@ -1608,14 +1608,14 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1608
1608
|
this.ai = false;
|
|
1609
1609
|
};
|
|
1610
1610
|
XDatePicker.prototype.cn = function (a) {
|
|
1611
|
-
if (this.u.
|
|
1611
|
+
if (this.u.ax) {
|
|
1612
1612
|
this.ah = true;
|
|
1613
1613
|
this.cr();
|
|
1614
1614
|
}
|
|
1615
1615
|
};
|
|
1616
1616
|
XDatePicker.prototype.cy = function () {
|
|
1617
1617
|
if (this.ah == false) {
|
|
1618
|
-
if (this.u.
|
|
1618
|
+
if (this.u.ax) {
|
|
1619
1619
|
this.cr();
|
|
1620
1620
|
}
|
|
1621
1621
|
else {
|
|
@@ -1656,7 +1656,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1656
1656
|
};
|
|
1657
1657
|
XDatePicker.prototype.dk = function (a, b) {
|
|
1658
1658
|
if (this.ax) {
|
|
1659
|
-
this.u.
|
|
1659
|
+
this.u.cr(this.h.d.rootWrapper.getNativeElement(), a, b);
|
|
1660
1660
|
}
|
|
1661
1661
|
else {
|
|
1662
1662
|
var c = this.h.a0(true);
|
|
@@ -1664,7 +1664,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1664
1664
|
}
|
|
1665
1665
|
};
|
|
1666
1666
|
XDatePicker.prototype.dn = function () {
|
|
1667
|
-
if (this.u.
|
|
1667
|
+
if (this.u.ax) {
|
|
1668
1668
|
var a = this.h.a0(false);
|
|
1669
1669
|
var b = new Rect(0, a.left + window.pageXOffset, a.top + window.pageYOffset, a.width, a.height);
|
|
1670
1670
|
var c = this.h.a()[1];
|
|
@@ -1678,20 +1678,20 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1678
1678
|
if (f < 0) {
|
|
1679
1679
|
if (this.u.r != 1) {
|
|
1680
1680
|
this.u.r = 1;
|
|
1681
|
-
this.u.
|
|
1681
|
+
this.u.ca(b);
|
|
1682
1682
|
}
|
|
1683
1683
|
}
|
|
1684
1684
|
else {
|
|
1685
1685
|
if (this.u.r != 2) {
|
|
1686
1686
|
this.u.r = 2;
|
|
1687
|
-
this.u.
|
|
1687
|
+
this.u.ca(b);
|
|
1688
1688
|
}
|
|
1689
1689
|
}
|
|
1690
1690
|
}
|
|
1691
1691
|
else {
|
|
1692
1692
|
if (this.u.r != 1) {
|
|
1693
1693
|
this.u.r = 1;
|
|
1694
|
-
this.u.
|
|
1694
|
+
this.u.ca(b);
|
|
1695
1695
|
}
|
|
1696
1696
|
}
|
|
1697
1697
|
}
|
|
@@ -1699,7 +1699,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1699
1699
|
XDatePicker.prototype.cr = function () {
|
|
1700
1700
|
var _this = this;
|
|
1701
1701
|
if (this.u != null) {
|
|
1702
|
-
window.setTimeout(function () { return _this.u.
|
|
1702
|
+
window.setTimeout(function () { return _this.u.b6(); }, 0);
|
|
1703
1703
|
}
|
|
1704
1704
|
if (this.c != null) {
|
|
1705
1705
|
this.c.cy();
|
|
@@ -1716,7 +1716,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1716
1716
|
if (this.o != null) {
|
|
1717
1717
|
this.o.focus(a);
|
|
1718
1718
|
}
|
|
1719
|
-
if (!this.u.
|
|
1719
|
+
if (!this.u.ax && this.ay == true) {
|
|
1720
1720
|
if (this.ah == false) {
|
|
1721
1721
|
if (this.al) {
|
|
1722
1722
|
return;
|
|
@@ -1773,7 +1773,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1773
1773
|
var a = new DatePickerVisualModelExport();
|
|
1774
1774
|
a.e = this.y;
|
|
1775
1775
|
a.d = this.w;
|
|
1776
|
-
a.c = this.u.
|
|
1776
|
+
a.c = this.u.bd();
|
|
1777
1777
|
a.b = this.q.fe();
|
|
1778
1778
|
a.a = this.c.bj();
|
|
1779
1779
|
if (this.ad != null) {
|