catchup-library-web 1.12.17 → 1.12.18
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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +10 -0
- package/dist/index.mjs +10 -0
- package/package.json +1 -1
- package/src/utilization/DateUtilization.ts +10 -0
package/dist/index.d.mts
CHANGED
|
@@ -594,6 +594,7 @@ declare const constructMonthName: (date: Date) => string;
|
|
|
594
594
|
declare const constructWeekName: (beginDate: Date, endDate: Date, untilSunday: boolean) => string;
|
|
595
595
|
declare const retrieveTimeFilterOptionList: () => {
|
|
596
596
|
text: string;
|
|
597
|
+
title: string;
|
|
597
598
|
value: string;
|
|
598
599
|
id: string;
|
|
599
600
|
}[];
|
package/dist/index.d.ts
CHANGED
|
@@ -594,6 +594,7 @@ declare const constructMonthName: (date: Date) => string;
|
|
|
594
594
|
declare const constructWeekName: (beginDate: Date, endDate: Date, untilSunday: boolean) => string;
|
|
595
595
|
declare const retrieveTimeFilterOptionList: () => {
|
|
596
596
|
text: string;
|
|
597
|
+
title: string;
|
|
597
598
|
value: string;
|
|
598
599
|
id: string;
|
|
599
600
|
}[];
|
package/dist/index.js
CHANGED
|
@@ -9042,51 +9042,61 @@ var retrieveTimeFilterOptionList = () => {
|
|
|
9042
9042
|
return [
|
|
9043
9043
|
{
|
|
9044
9044
|
text: i18n_default.t("all_time"),
|
|
9045
|
+
title: i18n_default.t("all_time"),
|
|
9045
9046
|
value: "all",
|
|
9046
9047
|
id: "all"
|
|
9047
9048
|
},
|
|
9048
9049
|
{
|
|
9049
9050
|
text: i18n_default.t("today"),
|
|
9051
|
+
title: i18n_default.t("today"),
|
|
9050
9052
|
value: "today",
|
|
9051
9053
|
id: "today"
|
|
9052
9054
|
},
|
|
9053
9055
|
{
|
|
9054
9056
|
text: i18n_default.t("yesterday"),
|
|
9057
|
+
title: i18n_default.t("yesterday"),
|
|
9055
9058
|
value: "yesterday",
|
|
9056
9059
|
id: "yesterday"
|
|
9057
9060
|
},
|
|
9058
9061
|
{
|
|
9059
9062
|
text: i18n_default.t("this_week"),
|
|
9063
|
+
title: i18n_default.t("this_week"),
|
|
9060
9064
|
value: "this_week",
|
|
9061
9065
|
id: "this_week"
|
|
9062
9066
|
},
|
|
9063
9067
|
{
|
|
9064
9068
|
text: i18n_default.t("last_week"),
|
|
9069
|
+
title: i18n_default.t("last_week"),
|
|
9065
9070
|
value: "last_week",
|
|
9066
9071
|
id: "last_week"
|
|
9067
9072
|
},
|
|
9068
9073
|
{
|
|
9069
9074
|
text: i18n_default.t("this_month"),
|
|
9075
|
+
title: i18n_default.t("this_month"),
|
|
9070
9076
|
value: "this_month",
|
|
9071
9077
|
id: "this_month"
|
|
9072
9078
|
},
|
|
9073
9079
|
{
|
|
9074
9080
|
text: i18n_default.t("last_month"),
|
|
9081
|
+
title: i18n_default.t("last_month"),
|
|
9075
9082
|
value: "last_month",
|
|
9076
9083
|
id: "last_month"
|
|
9077
9084
|
},
|
|
9078
9085
|
{
|
|
9079
9086
|
text: i18n_default.t("last_7_days"),
|
|
9087
|
+
title: i18n_default.t("last_7_days"),
|
|
9080
9088
|
value: "last_7_days",
|
|
9081
9089
|
id: "last_7_days"
|
|
9082
9090
|
},
|
|
9083
9091
|
{
|
|
9084
9092
|
text: i18n_default.t("last_30_days"),
|
|
9093
|
+
title: i18n_default.t("last_30_days"),
|
|
9085
9094
|
value: "last_30_days",
|
|
9086
9095
|
id: "last_30_days"
|
|
9087
9096
|
},
|
|
9088
9097
|
{
|
|
9089
9098
|
text: i18n_default.t("last_90_days"),
|
|
9099
|
+
title: i18n_default.t("last_90_days"),
|
|
9090
9100
|
value: "last_90_days",
|
|
9091
9101
|
id: "last_90_days"
|
|
9092
9102
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -8835,51 +8835,61 @@ var retrieveTimeFilterOptionList = () => {
|
|
|
8835
8835
|
return [
|
|
8836
8836
|
{
|
|
8837
8837
|
text: i18n_default.t("all_time"),
|
|
8838
|
+
title: i18n_default.t("all_time"),
|
|
8838
8839
|
value: "all",
|
|
8839
8840
|
id: "all"
|
|
8840
8841
|
},
|
|
8841
8842
|
{
|
|
8842
8843
|
text: i18n_default.t("today"),
|
|
8844
|
+
title: i18n_default.t("today"),
|
|
8843
8845
|
value: "today",
|
|
8844
8846
|
id: "today"
|
|
8845
8847
|
},
|
|
8846
8848
|
{
|
|
8847
8849
|
text: i18n_default.t("yesterday"),
|
|
8850
|
+
title: i18n_default.t("yesterday"),
|
|
8848
8851
|
value: "yesterday",
|
|
8849
8852
|
id: "yesterday"
|
|
8850
8853
|
},
|
|
8851
8854
|
{
|
|
8852
8855
|
text: i18n_default.t("this_week"),
|
|
8856
|
+
title: i18n_default.t("this_week"),
|
|
8853
8857
|
value: "this_week",
|
|
8854
8858
|
id: "this_week"
|
|
8855
8859
|
},
|
|
8856
8860
|
{
|
|
8857
8861
|
text: i18n_default.t("last_week"),
|
|
8862
|
+
title: i18n_default.t("last_week"),
|
|
8858
8863
|
value: "last_week",
|
|
8859
8864
|
id: "last_week"
|
|
8860
8865
|
},
|
|
8861
8866
|
{
|
|
8862
8867
|
text: i18n_default.t("this_month"),
|
|
8868
|
+
title: i18n_default.t("this_month"),
|
|
8863
8869
|
value: "this_month",
|
|
8864
8870
|
id: "this_month"
|
|
8865
8871
|
},
|
|
8866
8872
|
{
|
|
8867
8873
|
text: i18n_default.t("last_month"),
|
|
8874
|
+
title: i18n_default.t("last_month"),
|
|
8868
8875
|
value: "last_month",
|
|
8869
8876
|
id: "last_month"
|
|
8870
8877
|
},
|
|
8871
8878
|
{
|
|
8872
8879
|
text: i18n_default.t("last_7_days"),
|
|
8880
|
+
title: i18n_default.t("last_7_days"),
|
|
8873
8881
|
value: "last_7_days",
|
|
8874
8882
|
id: "last_7_days"
|
|
8875
8883
|
},
|
|
8876
8884
|
{
|
|
8877
8885
|
text: i18n_default.t("last_30_days"),
|
|
8886
|
+
title: i18n_default.t("last_30_days"),
|
|
8878
8887
|
value: "last_30_days",
|
|
8879
8888
|
id: "last_30_days"
|
|
8880
8889
|
},
|
|
8881
8890
|
{
|
|
8882
8891
|
text: i18n_default.t("last_90_days"),
|
|
8892
|
+
title: i18n_default.t("last_90_days"),
|
|
8883
8893
|
value: "last_90_days",
|
|
8884
8894
|
id: "last_90_days"
|
|
8885
8895
|
}
|
package/package.json
CHANGED
|
@@ -128,51 +128,61 @@ export const retrieveTimeFilterOptionList = () => {
|
|
|
128
128
|
return [
|
|
129
129
|
{
|
|
130
130
|
text: i18n.t("all_time"),
|
|
131
|
+
title: i18n.t("all_time"),
|
|
131
132
|
value: "all",
|
|
132
133
|
id: "all",
|
|
133
134
|
},
|
|
134
135
|
{
|
|
135
136
|
text: i18n.t("today"),
|
|
137
|
+
title: i18n.t("today"),
|
|
136
138
|
value: "today",
|
|
137
139
|
id: "today",
|
|
138
140
|
},
|
|
139
141
|
{
|
|
140
142
|
text: i18n.t("yesterday"),
|
|
143
|
+
title: i18n.t("yesterday"),
|
|
141
144
|
value: "yesterday",
|
|
142
145
|
id: "yesterday",
|
|
143
146
|
},
|
|
144
147
|
{
|
|
145
148
|
text: i18n.t("this_week"),
|
|
149
|
+
title: i18n.t("this_week"),
|
|
146
150
|
value: "this_week",
|
|
147
151
|
id: "this_week",
|
|
148
152
|
},
|
|
149
153
|
{
|
|
150
154
|
text: i18n.t("last_week"),
|
|
155
|
+
title: i18n.t("last_week"),
|
|
151
156
|
value: "last_week",
|
|
152
157
|
id: "last_week",
|
|
153
158
|
},
|
|
154
159
|
{
|
|
155
160
|
text: i18n.t("this_month"),
|
|
161
|
+
title: i18n.t("this_month"),
|
|
156
162
|
value: "this_month",
|
|
157
163
|
id: "this_month",
|
|
158
164
|
},
|
|
159
165
|
{
|
|
160
166
|
text: i18n.t("last_month"),
|
|
167
|
+
title: i18n.t("last_month"),
|
|
161
168
|
value: "last_month",
|
|
162
169
|
id: "last_month",
|
|
163
170
|
},
|
|
164
171
|
{
|
|
165
172
|
text: i18n.t("last_7_days"),
|
|
173
|
+
title: i18n.t("last_7_days"),
|
|
166
174
|
value: "last_7_days",
|
|
167
175
|
id: "last_7_days",
|
|
168
176
|
},
|
|
169
177
|
{
|
|
170
178
|
text: i18n.t("last_30_days"),
|
|
179
|
+
title: i18n.t("last_30_days"),
|
|
171
180
|
value: "last_30_days",
|
|
172
181
|
id: "last_30_days",
|
|
173
182
|
},
|
|
174
183
|
{
|
|
175
184
|
text: i18n.t("last_90_days"),
|
|
185
|
+
title: i18n.t("last_90_days"),
|
|
176
186
|
value: "last_90_days",
|
|
177
187
|
id: "last_90_days",
|
|
178
188
|
},
|