@alauda/ui 9.1.2-beta.1 → 9.1.2-beta.2
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/fesm2022/alauda-ui.mjs
CHANGED
|
@@ -5591,7 +5591,9 @@ class DateRangePickerPanelComponent extends CommonFormControl {
|
|
|
5591
5591
|
this.DatePickerType = DatePickerType;
|
|
5592
5592
|
this.leftDateRange = DateNavRange.Month;
|
|
5593
5593
|
this.rightDateRange = DateNavRange.Month;
|
|
5594
|
-
|
|
5594
|
+
// Angular DatePipe uses CLDR date formats.
|
|
5595
|
+
// `YYYY` represents week-based year and may differ from calendar year near year end.
|
|
5596
|
+
this.FOOTER_DATE_FORMAT = 'yyyy-MM-dd';
|
|
5595
5597
|
this.leftAnchor = dayjs();
|
|
5596
5598
|
this.rightAnchor = dayjs().add(1, MONTH);
|
|
5597
5599
|
// 用于存放 range data 序列,数量为 2 时清除
|