catchup-library-web 1.6.7 → 1.6.8
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/dist/index.js
CHANGED
|
@@ -7502,7 +7502,7 @@ var retrieveProvinceNameOptionList = () => {
|
|
|
7502
7502
|
// { parent: "TURKEY", value: "GIRESUN", text: "Giresun", code: "28" },
|
|
7503
7503
|
// { parent: "TURKEY", value: "GUMUSHANE", text: "Gümüşhane", code: "29" },
|
|
7504
7504
|
// { parent: "TURKEY", value: "HAKKARI", text: "Hakkari", code: "30" },
|
|
7505
|
-
|
|
7505
|
+
{ parent: "TURKEY", value: "HATAY", text: "Hatay", code: "31" },
|
|
7506
7506
|
// { parent: "TURKEY", value: "ISPARTA", text: "Isparta", code: "32" },
|
|
7507
7507
|
{ parent: "TURKEY", value: "MERSIN", text: "Mersin", code: "33" },
|
|
7508
7508
|
{ parent: "TURKEY", value: "ISTANBUL", text: "\u0130stanbul", code: "34" },
|
|
@@ -8355,9 +8355,7 @@ var retrieveDateIntervalOptionList = () => {
|
|
|
8355
8355
|
];
|
|
8356
8356
|
};
|
|
8357
8357
|
var constructMonthName = (date) => {
|
|
8358
|
-
return `${date.
|
|
8359
|
-
date.getMonth()
|
|
8360
|
-
)} ${date.getFullYear()}`;
|
|
8358
|
+
return `${retrieveMonthNameByIndex(date.getMonth())} ${date.getFullYear()}`;
|
|
8361
8359
|
};
|
|
8362
8360
|
var constructWeekName = (beginDate, endDate, untilSunday) => {
|
|
8363
8361
|
let currentEndDate;
|
package/dist/index.mjs
CHANGED
|
@@ -7309,7 +7309,7 @@ var retrieveProvinceNameOptionList = () => {
|
|
|
7309
7309
|
// { parent: "TURKEY", value: "GIRESUN", text: "Giresun", code: "28" },
|
|
7310
7310
|
// { parent: "TURKEY", value: "GUMUSHANE", text: "Gümüşhane", code: "29" },
|
|
7311
7311
|
// { parent: "TURKEY", value: "HAKKARI", text: "Hakkari", code: "30" },
|
|
7312
|
-
|
|
7312
|
+
{ parent: "TURKEY", value: "HATAY", text: "Hatay", code: "31" },
|
|
7313
7313
|
// { parent: "TURKEY", value: "ISPARTA", text: "Isparta", code: "32" },
|
|
7314
7314
|
{ parent: "TURKEY", value: "MERSIN", text: "Mersin", code: "33" },
|
|
7315
7315
|
{ parent: "TURKEY", value: "ISTANBUL", text: "\u0130stanbul", code: "34" },
|
|
@@ -8162,9 +8162,7 @@ var retrieveDateIntervalOptionList = () => {
|
|
|
8162
8162
|
];
|
|
8163
8163
|
};
|
|
8164
8164
|
var constructMonthName = (date) => {
|
|
8165
|
-
return `${date.
|
|
8166
|
-
date.getMonth()
|
|
8167
|
-
)} ${date.getFullYear()}`;
|
|
8165
|
+
return `${retrieveMonthNameByIndex(date.getMonth())} ${date.getFullYear()}`;
|
|
8168
8166
|
};
|
|
8169
8167
|
var constructWeekName = (beginDate, endDate, untilSunday) => {
|
|
8170
8168
|
let currentEndDate;
|
package/package.json
CHANGED
|
@@ -56,9 +56,7 @@ export const retrieveDateIntervalOptionList = () => {
|
|
|
56
56
|
};
|
|
57
57
|
|
|
58
58
|
export const constructMonthName = (date: Date): string => {
|
|
59
|
-
return `${date.
|
|
60
|
-
date.getMonth()
|
|
61
|
-
)} ${date.getFullYear()}`;
|
|
59
|
+
return `${retrieveMonthNameByIndex(date.getMonth())} ${date.getFullYear()}`;
|
|
62
60
|
};
|
|
63
61
|
|
|
64
62
|
export const constructWeekName = (
|
|
@@ -677,7 +677,7 @@ export const retrieveProvinceNameOptionList = () => {
|
|
|
677
677
|
// { parent: "TURKEY", value: "GIRESUN", text: "Giresun", code: "28" },
|
|
678
678
|
// { parent: "TURKEY", value: "GUMUSHANE", text: "Gümüşhane", code: "29" },
|
|
679
679
|
// { parent: "TURKEY", value: "HAKKARI", text: "Hakkari", code: "30" },
|
|
680
|
-
|
|
680
|
+
{ parent: "TURKEY", value: "HATAY", text: "Hatay", code: "31" },
|
|
681
681
|
// { parent: "TURKEY", value: "ISPARTA", text: "Isparta", code: "32" },
|
|
682
682
|
{ parent: "TURKEY", value: "MERSIN", text: "Mersin", code: "33" },
|
|
683
683
|
{ parent: "TURKEY", value: "ISTANBUL", text: "İstanbul", code: "34" },
|