catchup-library-web 1.12.16 → 1.12.17

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 CHANGED
@@ -595,6 +595,7 @@ declare const constructWeekName: (beginDate: Date, endDate: Date, untilSunday: b
595
595
  declare const retrieveTimeFilterOptionList: () => {
596
596
  text: string;
597
597
  value: string;
598
+ id: string;
598
599
  }[];
599
600
 
600
601
  declare const calculateLevenshteinDistance: (s: any, t: any) => any;
package/dist/index.d.ts CHANGED
@@ -595,6 +595,7 @@ declare const constructWeekName: (beginDate: Date, endDate: Date, untilSunday: b
595
595
  declare const retrieveTimeFilterOptionList: () => {
596
596
  text: string;
597
597
  value: string;
598
+ id: string;
598
599
  }[];
599
600
 
600
601
  declare const calculateLevenshteinDistance: (s: any, t: any) => any;
package/dist/index.js CHANGED
@@ -9042,43 +9042,53 @@ var retrieveTimeFilterOptionList = () => {
9042
9042
  return [
9043
9043
  {
9044
9044
  text: i18n_default.t("all_time"),
9045
- value: "all"
9045
+ value: "all",
9046
+ id: "all"
9046
9047
  },
9047
9048
  {
9048
9049
  text: i18n_default.t("today"),
9049
- value: "today"
9050
+ value: "today",
9051
+ id: "today"
9050
9052
  },
9051
9053
  {
9052
9054
  text: i18n_default.t("yesterday"),
9053
- value: "yesterday"
9055
+ value: "yesterday",
9056
+ id: "yesterday"
9054
9057
  },
9055
9058
  {
9056
9059
  text: i18n_default.t("this_week"),
9057
- value: "this_week"
9060
+ value: "this_week",
9061
+ id: "this_week"
9058
9062
  },
9059
9063
  {
9060
9064
  text: i18n_default.t("last_week"),
9061
- value: "last_week"
9065
+ value: "last_week",
9066
+ id: "last_week"
9062
9067
  },
9063
9068
  {
9064
9069
  text: i18n_default.t("this_month"),
9065
- value: "this_month"
9070
+ value: "this_month",
9071
+ id: "this_month"
9066
9072
  },
9067
9073
  {
9068
9074
  text: i18n_default.t("last_month"),
9069
- value: "last_month"
9075
+ value: "last_month",
9076
+ id: "last_month"
9070
9077
  },
9071
9078
  {
9072
9079
  text: i18n_default.t("last_7_days"),
9073
- value: "last_7_days"
9080
+ value: "last_7_days",
9081
+ id: "last_7_days"
9074
9082
  },
9075
9083
  {
9076
9084
  text: i18n_default.t("last_30_days"),
9077
- value: "last_30_days"
9085
+ value: "last_30_days",
9086
+ id: "last_30_days"
9078
9087
  },
9079
9088
  {
9080
9089
  text: i18n_default.t("last_90_days"),
9081
- value: "last_90_days"
9090
+ value: "last_90_days",
9091
+ id: "last_90_days"
9082
9092
  }
9083
9093
  ];
9084
9094
  };
package/dist/index.mjs CHANGED
@@ -8835,43 +8835,53 @@ var retrieveTimeFilterOptionList = () => {
8835
8835
  return [
8836
8836
  {
8837
8837
  text: i18n_default.t("all_time"),
8838
- value: "all"
8838
+ value: "all",
8839
+ id: "all"
8839
8840
  },
8840
8841
  {
8841
8842
  text: i18n_default.t("today"),
8842
- value: "today"
8843
+ value: "today",
8844
+ id: "today"
8843
8845
  },
8844
8846
  {
8845
8847
  text: i18n_default.t("yesterday"),
8846
- value: "yesterday"
8848
+ value: "yesterday",
8849
+ id: "yesterday"
8847
8850
  },
8848
8851
  {
8849
8852
  text: i18n_default.t("this_week"),
8850
- value: "this_week"
8853
+ value: "this_week",
8854
+ id: "this_week"
8851
8855
  },
8852
8856
  {
8853
8857
  text: i18n_default.t("last_week"),
8854
- value: "last_week"
8858
+ value: "last_week",
8859
+ id: "last_week"
8855
8860
  },
8856
8861
  {
8857
8862
  text: i18n_default.t("this_month"),
8858
- value: "this_month"
8863
+ value: "this_month",
8864
+ id: "this_month"
8859
8865
  },
8860
8866
  {
8861
8867
  text: i18n_default.t("last_month"),
8862
- value: "last_month"
8868
+ value: "last_month",
8869
+ id: "last_month"
8863
8870
  },
8864
8871
  {
8865
8872
  text: i18n_default.t("last_7_days"),
8866
- value: "last_7_days"
8873
+ value: "last_7_days",
8874
+ id: "last_7_days"
8867
8875
  },
8868
8876
  {
8869
8877
  text: i18n_default.t("last_30_days"),
8870
- value: "last_30_days"
8878
+ value: "last_30_days",
8879
+ id: "last_30_days"
8871
8880
  },
8872
8881
  {
8873
8882
  text: i18n_default.t("last_90_days"),
8874
- value: "last_90_days"
8883
+ value: "last_90_days",
8884
+ id: "last_90_days"
8875
8885
  }
8876
8886
  ];
8877
8887
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "catchup-library-web",
3
- "version": "1.12.16",
3
+ "version": "1.12.17",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -129,42 +129,52 @@ export const retrieveTimeFilterOptionList = () => {
129
129
  {
130
130
  text: i18n.t("all_time"),
131
131
  value: "all",
132
+ id: "all",
132
133
  },
133
134
  {
134
135
  text: i18n.t("today"),
135
136
  value: "today",
137
+ id: "today",
136
138
  },
137
139
  {
138
140
  text: i18n.t("yesterday"),
139
141
  value: "yesterday",
142
+ id: "yesterday",
140
143
  },
141
144
  {
142
145
  text: i18n.t("this_week"),
143
146
  value: "this_week",
147
+ id: "this_week",
144
148
  },
145
149
  {
146
150
  text: i18n.t("last_week"),
147
151
  value: "last_week",
152
+ id: "last_week",
148
153
  },
149
154
  {
150
155
  text: i18n.t("this_month"),
151
156
  value: "this_month",
157
+ id: "this_month",
152
158
  },
153
159
  {
154
160
  text: i18n.t("last_month"),
155
161
  value: "last_month",
162
+ id: "last_month",
156
163
  },
157
164
  {
158
165
  text: i18n.t("last_7_days"),
159
166
  value: "last_7_days",
167
+ id: "last_7_days",
160
168
  },
161
169
  {
162
170
  text: i18n.t("last_30_days"),
163
171
  value: "last_30_days",
172
+ id: "last_30_days",
164
173
  },
165
174
  {
166
175
  text: i18n.t("last_90_days"),
167
176
  value: "last_90_days",
177
+ id: "last_90_days",
168
178
  },
169
179
  ];
170
180
  };