@semcore/date-picker 4.57.0 → 4.57.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/CHANGELOG.md +6 -0
- package/lib/cjs/components/Calendar.js +24 -22
- package/lib/cjs/components/Calendar.js.map +1 -1
- package/lib/cjs/components/DateRangeComparatorAbstract.js +32 -30
- package/lib/cjs/components/DateRangeComparatorAbstract.js.map +1 -1
- package/lib/cjs/components/InputTrigger.js +32 -30
- package/lib/cjs/components/InputTrigger.js.map +1 -1
- package/lib/cjs/components/PickerAbstract.js +32 -30
- package/lib/cjs/components/PickerAbstract.js.map +1 -1
- package/lib/cjs/components/RangePickerAbstract.js +32 -30
- package/lib/cjs/components/RangePickerAbstract.js.map +1 -1
- package/lib/es6/components/Calendar.js +24 -22
- package/lib/es6/components/Calendar.js.map +1 -1
- package/lib/es6/components/DateRangeComparatorAbstract.js +32 -30
- package/lib/es6/components/DateRangeComparatorAbstract.js.map +1 -1
- package/lib/es6/components/InputTrigger.js +32 -30
- package/lib/es6/components/InputTrigger.js.map +1 -1
- package/lib/es6/components/PickerAbstract.js +32 -30
- package/lib/es6/components/PickerAbstract.js.map +1 -1
- package/lib/es6/components/RangePickerAbstract.js +32 -30
- package/lib/es6/components/RangePickerAbstract.js.map +1 -1
- package/lib/esm/DatePicker.mjs +114 -103
- package/lib/esm/DateRangeComparator.mjs +166 -149
- package/lib/esm/DateRangePicker.mjs +85 -77
- package/lib/esm/MonthDateRangeComparator.mjs +187 -169
- package/lib/esm/MonthPicker.mjs +78 -71
- package/lib/esm/MonthRangePicker.mjs +94 -85
- package/lib/esm/components/ButtonTrigger.mjs +16 -15
- package/lib/esm/components/Calendar.mjs +409 -287
- package/lib/esm/components/DateRangeComparatorAbstract.mjs +458 -330
- package/lib/esm/components/InputTrigger.mjs +762 -519
- package/lib/esm/components/PickerAbstract.mjs +196 -149
- package/lib/esm/components/RangePickerAbstract.mjs +310 -221
- package/lib/esm/components/index.mjs +127 -109
- package/lib/esm/index.mjs +13 -13
- package/lib/esm/style/calendar.shadow.css +259 -0
- package/lib/esm/style/date-picker.shadow.css +179 -0
- package/lib/esm/translations/__intergalactic-dynamic-locales.mjs +32 -32
- package/lib/esm/translations/de.json.mjs +83 -56
- package/lib/esm/translations/en.json.mjs +95 -64
- package/lib/esm/translations/es.json.mjs +83 -56
- package/lib/esm/translations/fr.json.mjs +83 -56
- package/lib/esm/translations/it.json.mjs +83 -56
- package/lib/esm/translations/ja.json.mjs +83 -56
- package/lib/esm/translations/ko.json.mjs +83 -56
- package/lib/esm/translations/nl.json.mjs +83 -56
- package/lib/esm/translations/pl.json.mjs +83 -56
- package/lib/esm/translations/pt.json.mjs +83 -56
- package/lib/esm/translations/ru.json.mjs +35 -24
- package/lib/esm/translations/sv.json.mjs +83 -56
- package/lib/esm/translations/tr.json.mjs +83 -56
- package/lib/esm/translations/vi.json.mjs +83 -56
- package/lib/esm/translations/zh.json.mjs +83 -56
- package/lib/esm/utils/cronTabScheduler.mjs +58 -52
- package/lib/esm/utils/datesIntersects.mjs +15 -11
- package/lib/esm/utils/formatDate.mjs +25 -18
- package/lib/esm/utils/includesDate.mjs +13 -9
- package/lib/esm/utils/shortDateRangeFormat.mjs +53 -31
- package/package.json +15 -15
|
@@ -1,62 +1,89 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
1
|
+
const apply = "Tillämpa";
|
|
2
|
+
const reset = "Återställ";
|
|
3
|
+
const today = "Idag";
|
|
4
|
+
const last2Days = "Senaste 2 dagarna";
|
|
5
|
+
const lastWeek = "Förra veckan";
|
|
6
|
+
const last2Weeks = "Senaste 2 veckorna";
|
|
7
|
+
const lastMonth = "Senaste månaden";
|
|
8
|
+
const last2Months = "Senaste 2 månaderna";
|
|
9
|
+
const last3Months = "Senaste 3 månaderna";
|
|
10
|
+
const last6Months = "Senaste 6 månaderna";
|
|
11
|
+
const last12Months = "Senaste 12 månaderna";
|
|
12
|
+
const prev = "Föregående period";
|
|
13
|
+
const next = "Nästa period";
|
|
14
|
+
const input = "Datumfält";
|
|
15
|
+
const compare = "Jämför med";
|
|
16
|
+
const fromDate = "Från {date}";
|
|
17
|
+
const toDate = "Till {date}";
|
|
18
|
+
const periods = "Förinställningar";
|
|
19
|
+
const dateRange = "Datumintervall";
|
|
20
|
+
const dateRange1 = "Första datumintervall";
|
|
21
|
+
const dateRange2 = "Andra datumintervall";
|
|
22
|
+
const selectingStarted = "Började välja";
|
|
23
|
+
const selectingFinished = "Valt";
|
|
24
|
+
const unavailableDate = "Välj ett tillgängligt datum.";
|
|
25
|
+
const unavailableMonth = "Välj en tillgänglig månad.";
|
|
26
|
+
const unavailableEndDate = "Välj ett tillgängligt förfallodatum.";
|
|
27
|
+
const unavailableEndMonth = "Välj en tillgänglig förfallomånad.";
|
|
28
|
+
const sv = {
|
|
29
|
+
apply,
|
|
30
|
+
reset,
|
|
31
|
+
today,
|
|
32
|
+
last2Days,
|
|
33
|
+
lastWeek,
|
|
34
|
+
last2Weeks,
|
|
35
|
+
lastMonth,
|
|
36
|
+
last2Months,
|
|
37
|
+
last3Months,
|
|
38
|
+
last6Months,
|
|
39
|
+
last12Months,
|
|
40
|
+
prev,
|
|
41
|
+
next,
|
|
42
|
+
input,
|
|
43
|
+
compare,
|
|
44
|
+
fromDate,
|
|
45
|
+
toDate,
|
|
46
|
+
periods,
|
|
47
|
+
dateRange,
|
|
48
|
+
dateRange1,
|
|
49
|
+
dateRange2,
|
|
50
|
+
selectingStarted,
|
|
51
|
+
selectingFinished,
|
|
52
|
+
unavailableDate,
|
|
53
|
+
unavailableMonth,
|
|
54
|
+
unavailableEndDate,
|
|
55
|
+
unavailableEndMonth,
|
|
29
56
|
"placeholder-days": "D",
|
|
30
57
|
"placeholder-months": "M",
|
|
31
58
|
"placeholder-years": "Å"
|
|
32
59
|
};
|
|
33
60
|
export {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
61
|
+
apply,
|
|
62
|
+
compare,
|
|
63
|
+
dateRange,
|
|
64
|
+
dateRange1,
|
|
65
|
+
dateRange2,
|
|
66
|
+
sv as default,
|
|
67
|
+
fromDate,
|
|
68
|
+
input,
|
|
69
|
+
last12Months,
|
|
70
|
+
last2Days,
|
|
71
|
+
last2Months,
|
|
72
|
+
last2Weeks,
|
|
73
|
+
last3Months,
|
|
74
|
+
last6Months,
|
|
75
|
+
lastMonth,
|
|
76
|
+
lastWeek,
|
|
77
|
+
next,
|
|
78
|
+
periods,
|
|
79
|
+
prev,
|
|
80
|
+
reset,
|
|
81
|
+
selectingFinished,
|
|
82
|
+
selectingStarted,
|
|
83
|
+
toDate,
|
|
84
|
+
today,
|
|
85
|
+
unavailableDate,
|
|
86
|
+
unavailableEndDate,
|
|
87
|
+
unavailableEndMonth,
|
|
88
|
+
unavailableMonth
|
|
62
89
|
};
|
|
@@ -1,62 +1,89 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
1
|
+
const apply = "Uygula";
|
|
2
|
+
const reset = "Sıfırla";
|
|
3
|
+
const today = "Bugün";
|
|
4
|
+
const last2Days = "Son 2 gün";
|
|
5
|
+
const lastWeek = "Geçen hafta";
|
|
6
|
+
const last2Weeks = "Son 2 hafta";
|
|
7
|
+
const lastMonth = "Geçen ay";
|
|
8
|
+
const last2Months = "Son 2 ay";
|
|
9
|
+
const last3Months = "Son 3 ay";
|
|
10
|
+
const last6Months = "Son 6 ay";
|
|
11
|
+
const last12Months = "Son 12 ay";
|
|
12
|
+
const prev = "Önceki dönem";
|
|
13
|
+
const next = "Sonraki dönem";
|
|
14
|
+
const input = "Tarih alanı";
|
|
15
|
+
const compare = "Şuna göre karşılaştır";
|
|
16
|
+
const fromDate = "{date} adresinden";
|
|
17
|
+
const toDate = "{date} tarihine kadar";
|
|
18
|
+
const periods = "Ön Ayarlar";
|
|
19
|
+
const dateRange = "Tarih aralığı";
|
|
20
|
+
const dateRange1 = "İlk tarih aralığı";
|
|
21
|
+
const dateRange2 = "İkinci tarih aralığı";
|
|
22
|
+
const selectingStarted = "Seçmeye başladım";
|
|
23
|
+
const selectingFinished = "Seçildi";
|
|
24
|
+
const unavailableDate = "Lütfen uygun bir tarih seçin.";
|
|
25
|
+
const unavailableMonth = "Lütfen uygun bir ay seçin.";
|
|
26
|
+
const unavailableEndDate = "Lütfen uygun bir son tarih seçin.";
|
|
27
|
+
const unavailableEndMonth = "Lütfen uygun bir vade ayı seçin.";
|
|
28
|
+
const tr = {
|
|
29
|
+
apply,
|
|
30
|
+
reset,
|
|
31
|
+
today,
|
|
32
|
+
last2Days,
|
|
33
|
+
lastWeek,
|
|
34
|
+
last2Weeks,
|
|
35
|
+
lastMonth,
|
|
36
|
+
last2Months,
|
|
37
|
+
last3Months,
|
|
38
|
+
last6Months,
|
|
39
|
+
last12Months,
|
|
40
|
+
prev,
|
|
41
|
+
next,
|
|
42
|
+
input,
|
|
43
|
+
compare,
|
|
44
|
+
fromDate,
|
|
45
|
+
toDate,
|
|
46
|
+
periods,
|
|
47
|
+
dateRange,
|
|
48
|
+
dateRange1,
|
|
49
|
+
dateRange2,
|
|
50
|
+
selectingStarted,
|
|
51
|
+
selectingFinished,
|
|
52
|
+
unavailableDate,
|
|
53
|
+
unavailableMonth,
|
|
54
|
+
unavailableEndDate,
|
|
55
|
+
unavailableEndMonth,
|
|
29
56
|
"placeholder-days": "G",
|
|
30
57
|
"placeholder-months": "A",
|
|
31
58
|
"placeholder-years": "Y"
|
|
32
59
|
};
|
|
33
60
|
export {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
61
|
+
apply,
|
|
62
|
+
compare,
|
|
63
|
+
dateRange,
|
|
64
|
+
dateRange1,
|
|
65
|
+
dateRange2,
|
|
66
|
+
tr as default,
|
|
67
|
+
fromDate,
|
|
68
|
+
input,
|
|
69
|
+
last12Months,
|
|
70
|
+
last2Days,
|
|
71
|
+
last2Months,
|
|
72
|
+
last2Weeks,
|
|
73
|
+
last3Months,
|
|
74
|
+
last6Months,
|
|
75
|
+
lastMonth,
|
|
76
|
+
lastWeek,
|
|
77
|
+
next,
|
|
78
|
+
periods,
|
|
79
|
+
prev,
|
|
80
|
+
reset,
|
|
81
|
+
selectingFinished,
|
|
82
|
+
selectingStarted,
|
|
83
|
+
toDate,
|
|
84
|
+
today,
|
|
85
|
+
unavailableDate,
|
|
86
|
+
unavailableEndDate,
|
|
87
|
+
unavailableEndMonth,
|
|
88
|
+
unavailableMonth
|
|
62
89
|
};
|
|
@@ -1,62 +1,89 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
1
|
+
const apply = "Áp dụng";
|
|
2
|
+
const reset = "Đặt lại";
|
|
3
|
+
const today = "Hôm nay";
|
|
4
|
+
const last2Days = "2 ngày trước";
|
|
5
|
+
const lastWeek = "Tuần trước";
|
|
6
|
+
const last2Weeks = "2 tuần trước";
|
|
7
|
+
const lastMonth = "Tháng trước";
|
|
8
|
+
const last2Months = "2 tháng qua";
|
|
9
|
+
const last3Months = "3 tháng qua";
|
|
10
|
+
const last6Months = "6 tháng qua";
|
|
11
|
+
const last12Months = "12 tháng qua";
|
|
12
|
+
const prev = "Giai đoạn trước";
|
|
13
|
+
const next = "Giai đoạn tới";
|
|
14
|
+
const input = "Trường ngày tháng";
|
|
15
|
+
const compare = "So với";
|
|
16
|
+
const fromDate = "Từ {date}";
|
|
17
|
+
const toDate = "Đến {date}";
|
|
18
|
+
const periods = "Tùy chọn đặt sẵn";
|
|
19
|
+
const dateRange = "Phạm vi ngày";
|
|
20
|
+
const dateRange1 = "Khoảng thời gian đầu tiên";
|
|
21
|
+
const dateRange2 = "Khoảng thời gian thứ hai";
|
|
22
|
+
const selectingStarted = "Bắt đầu chọn";
|
|
23
|
+
const selectingFinished = "Đã chọn";
|
|
24
|
+
const unavailableDate = "Vui lòng chọn một ngày có sẵn.";
|
|
25
|
+
const unavailableMonth = "Vui lòng chọn một tháng có sẵn.";
|
|
26
|
+
const unavailableEndDate = "Vui lòng chọn một ngày đến hạn có sẵn.";
|
|
27
|
+
const unavailableEndMonth = "Vui lòng chọn một tháng đến hạn có sẵn.";
|
|
28
|
+
const vi = {
|
|
29
|
+
apply,
|
|
30
|
+
reset,
|
|
31
|
+
today,
|
|
32
|
+
last2Days,
|
|
33
|
+
lastWeek,
|
|
34
|
+
last2Weeks,
|
|
35
|
+
lastMonth,
|
|
36
|
+
last2Months,
|
|
37
|
+
last3Months,
|
|
38
|
+
last6Months,
|
|
39
|
+
last12Months,
|
|
40
|
+
prev,
|
|
41
|
+
next,
|
|
42
|
+
input,
|
|
43
|
+
compare,
|
|
44
|
+
fromDate,
|
|
45
|
+
toDate,
|
|
46
|
+
periods,
|
|
47
|
+
dateRange,
|
|
48
|
+
dateRange1,
|
|
49
|
+
dateRange2,
|
|
50
|
+
selectingStarted,
|
|
51
|
+
selectingFinished,
|
|
52
|
+
unavailableDate,
|
|
53
|
+
unavailableMonth,
|
|
54
|
+
unavailableEndDate,
|
|
55
|
+
unavailableEndMonth,
|
|
29
56
|
"placeholder-days": "N",
|
|
30
57
|
"placeholder-months": "T",
|
|
31
58
|
"placeholder-years": "N"
|
|
32
59
|
};
|
|
33
60
|
export {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
61
|
+
apply,
|
|
62
|
+
compare,
|
|
63
|
+
dateRange,
|
|
64
|
+
dateRange1,
|
|
65
|
+
dateRange2,
|
|
66
|
+
vi as default,
|
|
67
|
+
fromDate,
|
|
68
|
+
input,
|
|
69
|
+
last12Months,
|
|
70
|
+
last2Days,
|
|
71
|
+
last2Months,
|
|
72
|
+
last2Weeks,
|
|
73
|
+
last3Months,
|
|
74
|
+
last6Months,
|
|
75
|
+
lastMonth,
|
|
76
|
+
lastWeek,
|
|
77
|
+
next,
|
|
78
|
+
periods,
|
|
79
|
+
prev,
|
|
80
|
+
reset,
|
|
81
|
+
selectingFinished,
|
|
82
|
+
selectingStarted,
|
|
83
|
+
toDate,
|
|
84
|
+
today,
|
|
85
|
+
unavailableDate,
|
|
86
|
+
unavailableEndDate,
|
|
87
|
+
unavailableEndMonth,
|
|
88
|
+
unavailableMonth
|
|
62
89
|
};
|
|
@@ -1,62 +1,89 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
1
|
+
const apply = "应用";
|
|
2
|
+
const reset = "重置";
|
|
3
|
+
const today = "今天";
|
|
4
|
+
const last2Days = "过去 2 天";
|
|
5
|
+
const lastWeek = "上周";
|
|
6
|
+
const last2Weeks = "上两周";
|
|
7
|
+
const lastMonth = "上个月";
|
|
8
|
+
const last2Months = "过去 2 个月";
|
|
9
|
+
const last3Months = "过去 3 个月";
|
|
10
|
+
const last6Months = "过去 6 个月";
|
|
11
|
+
const last12Months = "过去 12 个月";
|
|
12
|
+
const prev = "上一个时段";
|
|
13
|
+
const next = "下一时段";
|
|
14
|
+
const input = "日期字段";
|
|
15
|
+
const compare = "比较";
|
|
16
|
+
const fromDate = "从 {date}";
|
|
17
|
+
const toDate = "至 {date}";
|
|
18
|
+
const periods = "预设";
|
|
19
|
+
const dateRange = "日期范围";
|
|
20
|
+
const dateRange1 = "第一个日期范围";
|
|
21
|
+
const dateRange2 = "第二个日期范围";
|
|
22
|
+
const selectingStarted = "已开始选择";
|
|
23
|
+
const selectingFinished = "已选定";
|
|
24
|
+
const unavailableDate = "请选择可用日期。";
|
|
25
|
+
const unavailableMonth = "请选择可用月份。";
|
|
26
|
+
const unavailableEndDate = "请选择一个可用的截止日期。";
|
|
27
|
+
const unavailableEndMonth = "请选择可用到期月份。";
|
|
28
|
+
const zh = {
|
|
29
|
+
apply,
|
|
30
|
+
reset,
|
|
31
|
+
today,
|
|
32
|
+
last2Days,
|
|
33
|
+
lastWeek,
|
|
34
|
+
last2Weeks,
|
|
35
|
+
lastMonth,
|
|
36
|
+
last2Months,
|
|
37
|
+
last3Months,
|
|
38
|
+
last6Months,
|
|
39
|
+
last12Months,
|
|
40
|
+
prev,
|
|
41
|
+
next,
|
|
42
|
+
input,
|
|
43
|
+
compare,
|
|
44
|
+
fromDate,
|
|
45
|
+
toDate,
|
|
46
|
+
periods,
|
|
47
|
+
dateRange,
|
|
48
|
+
dateRange1,
|
|
49
|
+
dateRange2,
|
|
50
|
+
selectingStarted,
|
|
51
|
+
selectingFinished,
|
|
52
|
+
unavailableDate,
|
|
53
|
+
unavailableMonth,
|
|
54
|
+
unavailableEndDate,
|
|
55
|
+
unavailableEndMonth,
|
|
29
56
|
"placeholder-days": "日",
|
|
30
57
|
"placeholder-months": "月",
|
|
31
58
|
"placeholder-years": "年"
|
|
32
59
|
};
|
|
33
60
|
export {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
61
|
+
apply,
|
|
62
|
+
compare,
|
|
63
|
+
dateRange,
|
|
64
|
+
dateRange1,
|
|
65
|
+
dateRange2,
|
|
66
|
+
zh as default,
|
|
67
|
+
fromDate,
|
|
68
|
+
input,
|
|
69
|
+
last12Months,
|
|
70
|
+
last2Days,
|
|
71
|
+
last2Months,
|
|
72
|
+
last2Weeks,
|
|
73
|
+
last3Months,
|
|
74
|
+
last6Months,
|
|
75
|
+
lastMonth,
|
|
76
|
+
lastWeek,
|
|
77
|
+
next,
|
|
78
|
+
periods,
|
|
79
|
+
prev,
|
|
80
|
+
reset,
|
|
81
|
+
selectingFinished,
|
|
82
|
+
selectingStarted,
|
|
83
|
+
toDate,
|
|
84
|
+
today,
|
|
85
|
+
unavailableDate,
|
|
86
|
+
unavailableEndDate,
|
|
87
|
+
unavailableEndMonth,
|
|
88
|
+
unavailableMonth
|
|
62
89
|
};
|