@chayns-components/date 5.0.0-beta.433
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/LICENSE +21 -0
- package/README.md +34 -0
- package/lib/components/calendar/Calendar.d.ts +36 -0
- package/lib/components/calendar/Calendar.js +141 -0
- package/lib/components/calendar/Calendar.js.map +1 -0
- package/lib/components/calendar/Calendar.styles.d.ts +4 -0
- package/lib/components/calendar/Calendar.styles.js +20 -0
- package/lib/components/calendar/Calendar.styles.js.map +1 -0
- package/lib/components/calendar/month-wrapper/MonthWrapper.d.ts +17 -0
- package/lib/components/calendar/month-wrapper/MonthWrapper.js +137 -0
- package/lib/components/calendar/month-wrapper/MonthWrapper.js.map +1 -0
- package/lib/components/calendar/month-wrapper/MonthWrapper.styles.d.ts +271 -0
- package/lib/components/calendar/month-wrapper/MonthWrapper.styles.js +24 -0
- package/lib/components/calendar/month-wrapper/MonthWrapper.styles.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/Month.d.ts +14 -0
- package/lib/components/calendar/month-wrapper/month/Month.js +43 -0
- package/lib/components/calendar/month-wrapper/month/Month.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/Month.styles.d.ts +4 -0
- package/lib/components/calendar/month-wrapper/month/Month.styles.js +23 -0
- package/lib/components/calendar/month-wrapper/month/Month.styles.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/DayWrapper.d.ts +12 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/DayWrapper.js +60 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/DayWrapper.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/DayWrapper.styles.d.ts +2 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/DayWrapper.styles.js +17 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/DayWrapper.styles.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/Day.d.ts +12 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/Day.js +66 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/Day.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/Day.styles.d.ts +15 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/Day.styles.js +75 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/Day.styles.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/category/Category.d.ts +6 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/category/Category.js +20 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/category/Category.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/category/Category.styles.d.ts +7 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/category/Category.styles.js +21 -0
- package/lib/components/calendar/month-wrapper/month/day-wrapper/day/category/Category.styles.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/WeekdayWrapper.d.ts +7 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/WeekdayWrapper.js +45 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/WeekdayWrapper.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/WeekdayWrapper.styles.d.ts +2 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/WeekdayWrapper.styles.js +16 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/WeekdayWrapper.styles.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/weekday/Weekday.d.ts +6 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/weekday/Weekday.js +18 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/weekday/Weekday.js.map +1 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/weekday/Weekday.styles.d.ts +4 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/weekday/Weekday.styles.js +19 -0
- package/lib/components/calendar/month-wrapper/month/weekday-wrapper/weekday/Weekday.styles.js.map +1 -0
- package/lib/components/date-info/DateInfo.d.ts +37 -0
- package/lib/components/date-info/DateInfo.js +110 -0
- package/lib/components/date-info/DateInfo.js.map +1 -0
- package/lib/components/opening-times/OpeningTimes.d.ts +27 -0
- package/lib/components/opening-times/OpeningTimes.js +135 -0
- package/lib/components/opening-times/OpeningTimes.js.map +1 -0
- package/lib/components/opening-times/OpeningTimes.styles.d.ts +8 -0
- package/lib/components/opening-times/OpeningTimes.styles.js +19 -0
- package/lib/components/opening-times/OpeningTimes.styles.js.map +1 -0
- package/lib/components/opening-times/opening-inputs/OpeningInputs.d.ts +12 -0
- package/lib/components/opening-times/opening-inputs/OpeningInputs.js +94 -0
- package/lib/components/opening-times/opening-inputs/OpeningInputs.js.map +1 -0
- package/lib/components/opening-times/opening-inputs/OpeningInputs.styles.d.ts +2 -0
- package/lib/components/opening-times/opening-inputs/OpeningInputs.styles.js +13 -0
- package/lib/components/opening-times/opening-inputs/OpeningInputs.styles.js.map +1 -0
- package/lib/components/opening-times/opening-inputs/opening-input/OpeningInput.d.ts +14 -0
- package/lib/components/opening-times/opening-inputs/opening-input/OpeningInput.js +100 -0
- package/lib/components/opening-times/opening-inputs/opening-input/OpeningInput.js.map +1 -0
- package/lib/components/opening-times/opening-inputs/opening-input/OpeningInput.styles.d.ts +274 -0
- package/lib/components/opening-times/opening-inputs/opening-input/OpeningInput.styles.js +46 -0
- package/lib/components/opening-times/opening-inputs/opening-input/OpeningInput.styles.js.map +1 -0
- package/lib/constants/dateInfo.d.ts +22 -0
- package/lib/constants/dateInfo.js +629 -0
- package/lib/constants/dateInfo.js.map +1 -0
- package/lib/index.d.ts +5 -0
- package/lib/index.js +28 -0
- package/lib/index.js.map +1 -0
- package/lib/types/calendar.d.ts +32 -0
- package/lib/types/calendar.js +22 -0
- package/lib/types/calendar.js.map +1 -0
- package/lib/types/openingTimes.d.ts +28 -0
- package/lib/types/openingTimes.js +13 -0
- package/lib/types/openingTimes.js.map +1 -0
- package/lib/utils/calendar.d.ts +15 -0
- package/lib/utils/calendar.js +58 -0
- package/lib/utils/calendar.js.map +1 -0
- package/lib/utils/dateInfo.d.ts +55 -0
- package/lib/utils/dateInfo.js +364 -0
- package/lib/utils/dateInfo.js.map +1 -0
- package/package.json +69 -0
|
@@ -0,0 +1,629 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.TIME_TYPE_STRINGS = void 0;
|
|
7
|
+
const TIME_TYPE_STRINGS = exports.TIME_TYPE_STRINGS = {
|
|
8
|
+
de: {
|
|
9
|
+
past: {
|
|
10
|
+
seconds: {
|
|
11
|
+
singular: 'Sekunde',
|
|
12
|
+
plural: 'Sekunden'
|
|
13
|
+
},
|
|
14
|
+
minutes: {
|
|
15
|
+
singular: 'Minute',
|
|
16
|
+
plural: 'Minuten'
|
|
17
|
+
},
|
|
18
|
+
hours: {
|
|
19
|
+
singular: 'Stunde',
|
|
20
|
+
plural: 'Stunden'
|
|
21
|
+
},
|
|
22
|
+
days: {
|
|
23
|
+
singular: 'Tag',
|
|
24
|
+
plural: 'Tagen'
|
|
25
|
+
},
|
|
26
|
+
weeks: {
|
|
27
|
+
singular: 'Woche',
|
|
28
|
+
plural: 'Wochen'
|
|
29
|
+
},
|
|
30
|
+
months: {
|
|
31
|
+
singular: 'Monat',
|
|
32
|
+
plural: 'Monaten'
|
|
33
|
+
},
|
|
34
|
+
years: {
|
|
35
|
+
singular: 'Jahr',
|
|
36
|
+
plural: 'Jahren'
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
future: {
|
|
40
|
+
seconds: {
|
|
41
|
+
singular: 'Sekunde',
|
|
42
|
+
plural: 'Sekunden'
|
|
43
|
+
},
|
|
44
|
+
minutes: {
|
|
45
|
+
singular: 'Minute',
|
|
46
|
+
plural: 'Minuten'
|
|
47
|
+
},
|
|
48
|
+
hours: {
|
|
49
|
+
singular: 'Stunde',
|
|
50
|
+
plural: 'Stunden'
|
|
51
|
+
},
|
|
52
|
+
days: {
|
|
53
|
+
singular: 'Tag',
|
|
54
|
+
plural: 'Tagen'
|
|
55
|
+
},
|
|
56
|
+
weeks: {
|
|
57
|
+
singular: 'Woche',
|
|
58
|
+
plural: 'Wochen'
|
|
59
|
+
},
|
|
60
|
+
months: {
|
|
61
|
+
singular: 'Monat',
|
|
62
|
+
plural: 'Monaten'
|
|
63
|
+
},
|
|
64
|
+
years: {
|
|
65
|
+
singular: 'Jahr',
|
|
66
|
+
plural: 'Jahren'
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
en: {
|
|
71
|
+
past: {
|
|
72
|
+
seconds: {
|
|
73
|
+
singular: 'second',
|
|
74
|
+
plural: 'seconds'
|
|
75
|
+
},
|
|
76
|
+
minutes: {
|
|
77
|
+
singular: 'minute',
|
|
78
|
+
plural: 'minutes'
|
|
79
|
+
},
|
|
80
|
+
hours: {
|
|
81
|
+
singular: 'hour',
|
|
82
|
+
plural: 'hours'
|
|
83
|
+
},
|
|
84
|
+
days: {
|
|
85
|
+
singular: 'day',
|
|
86
|
+
plural: 'days'
|
|
87
|
+
},
|
|
88
|
+
weeks: {
|
|
89
|
+
singular: 'week',
|
|
90
|
+
plural: 'weeks'
|
|
91
|
+
},
|
|
92
|
+
months: {
|
|
93
|
+
singular: 'month',
|
|
94
|
+
plural: 'months'
|
|
95
|
+
},
|
|
96
|
+
years: {
|
|
97
|
+
singular: 'year',
|
|
98
|
+
plural: 'years'
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
future: {
|
|
102
|
+
seconds: {
|
|
103
|
+
singular: 'second',
|
|
104
|
+
plural: 'seconds'
|
|
105
|
+
},
|
|
106
|
+
minutes: {
|
|
107
|
+
singular: 'minute',
|
|
108
|
+
plural: 'minutes'
|
|
109
|
+
},
|
|
110
|
+
hours: {
|
|
111
|
+
singular: 'hour',
|
|
112
|
+
plural: 'hours'
|
|
113
|
+
},
|
|
114
|
+
days: {
|
|
115
|
+
singular: 'day',
|
|
116
|
+
plural: 'days'
|
|
117
|
+
},
|
|
118
|
+
weeks: {
|
|
119
|
+
singular: 'week',
|
|
120
|
+
plural: 'weeks'
|
|
121
|
+
},
|
|
122
|
+
months: {
|
|
123
|
+
singular: 'month',
|
|
124
|
+
plural: 'months'
|
|
125
|
+
},
|
|
126
|
+
years: {
|
|
127
|
+
singular: 'year',
|
|
128
|
+
plural: 'years'
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
nl: {
|
|
133
|
+
past: {
|
|
134
|
+
seconds: {
|
|
135
|
+
singular: 'seconde',
|
|
136
|
+
plural: 'seconden'
|
|
137
|
+
},
|
|
138
|
+
minutes: {
|
|
139
|
+
singular: 'minuut',
|
|
140
|
+
plural: 'minuten'
|
|
141
|
+
},
|
|
142
|
+
hours: {
|
|
143
|
+
singular: 'uur',
|
|
144
|
+
plural: 'uren'
|
|
145
|
+
},
|
|
146
|
+
days: {
|
|
147
|
+
singular: 'dag',
|
|
148
|
+
plural: 'dagen'
|
|
149
|
+
},
|
|
150
|
+
weeks: {
|
|
151
|
+
singular: 'week',
|
|
152
|
+
plural: 'weken'
|
|
153
|
+
},
|
|
154
|
+
months: {
|
|
155
|
+
singular: 'maand',
|
|
156
|
+
plural: 'maanden'
|
|
157
|
+
},
|
|
158
|
+
years: {
|
|
159
|
+
singular: 'jaar',
|
|
160
|
+
plural: 'jaren'
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
future: {
|
|
164
|
+
seconds: {
|
|
165
|
+
singular: 'seconde',
|
|
166
|
+
plural: 'seconden'
|
|
167
|
+
},
|
|
168
|
+
minutes: {
|
|
169
|
+
singular: 'minuut',
|
|
170
|
+
plural: 'minuten'
|
|
171
|
+
},
|
|
172
|
+
hours: {
|
|
173
|
+
singular: 'uur',
|
|
174
|
+
plural: 'uren'
|
|
175
|
+
},
|
|
176
|
+
days: {
|
|
177
|
+
singular: 'dag',
|
|
178
|
+
plural: 'dagen'
|
|
179
|
+
},
|
|
180
|
+
weeks: {
|
|
181
|
+
singular: 'week',
|
|
182
|
+
plural: 'weken'
|
|
183
|
+
},
|
|
184
|
+
months: {
|
|
185
|
+
singular: 'maand',
|
|
186
|
+
plural: 'maanden'
|
|
187
|
+
},
|
|
188
|
+
years: {
|
|
189
|
+
singular: 'jaar',
|
|
190
|
+
plural: 'jaren'
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
fr: {
|
|
195
|
+
past: {
|
|
196
|
+
seconds: {
|
|
197
|
+
singular: 'seconde',
|
|
198
|
+
plural: 'secondes'
|
|
199
|
+
},
|
|
200
|
+
minutes: {
|
|
201
|
+
singular: 'minute',
|
|
202
|
+
plural: 'minutes'
|
|
203
|
+
},
|
|
204
|
+
hours: {
|
|
205
|
+
singular: 'heure',
|
|
206
|
+
plural: 'heures'
|
|
207
|
+
},
|
|
208
|
+
days: {
|
|
209
|
+
singular: 'jour',
|
|
210
|
+
plural: 'jours'
|
|
211
|
+
},
|
|
212
|
+
weeks: {
|
|
213
|
+
singular: 'semaine',
|
|
214
|
+
plural: 'semaines'
|
|
215
|
+
},
|
|
216
|
+
months: {
|
|
217
|
+
singular: 'mois',
|
|
218
|
+
plural: 'mois'
|
|
219
|
+
},
|
|
220
|
+
years: {
|
|
221
|
+
singular: 'an',
|
|
222
|
+
plural: 'ans'
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
future: {
|
|
226
|
+
seconds: {
|
|
227
|
+
singular: 'seconde',
|
|
228
|
+
plural: 'secondes'
|
|
229
|
+
},
|
|
230
|
+
minutes: {
|
|
231
|
+
singular: 'minute',
|
|
232
|
+
plural: 'minutes'
|
|
233
|
+
},
|
|
234
|
+
hours: {
|
|
235
|
+
singular: 'heure',
|
|
236
|
+
plural: 'heures'
|
|
237
|
+
},
|
|
238
|
+
days: {
|
|
239
|
+
singular: 'jour',
|
|
240
|
+
plural: 'jours'
|
|
241
|
+
},
|
|
242
|
+
weeks: {
|
|
243
|
+
singular: 'semaine',
|
|
244
|
+
plural: 'semaines'
|
|
245
|
+
},
|
|
246
|
+
months: {
|
|
247
|
+
singular: 'mois',
|
|
248
|
+
plural: 'mois'
|
|
249
|
+
},
|
|
250
|
+
years: {
|
|
251
|
+
singular: 'an',
|
|
252
|
+
plural: 'ans'
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
it: {
|
|
257
|
+
past: {
|
|
258
|
+
seconds: {
|
|
259
|
+
singular: 'secondo',
|
|
260
|
+
plural: 'secondi'
|
|
261
|
+
},
|
|
262
|
+
minutes: {
|
|
263
|
+
singular: 'minuto',
|
|
264
|
+
plural: 'minuti'
|
|
265
|
+
},
|
|
266
|
+
hours: {
|
|
267
|
+
singular: 'ora',
|
|
268
|
+
plural: 'ore'
|
|
269
|
+
},
|
|
270
|
+
days: {
|
|
271
|
+
singular: 'giorno',
|
|
272
|
+
plural: 'giorni'
|
|
273
|
+
},
|
|
274
|
+
weeks: {
|
|
275
|
+
singular: 'settimana',
|
|
276
|
+
plural: 'settimane'
|
|
277
|
+
},
|
|
278
|
+
months: {
|
|
279
|
+
singular: 'mese',
|
|
280
|
+
plural: 'mesi'
|
|
281
|
+
},
|
|
282
|
+
years: {
|
|
283
|
+
singular: 'anno',
|
|
284
|
+
plural: 'anni'
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
future: {
|
|
288
|
+
seconds: {
|
|
289
|
+
singular: 'secondo',
|
|
290
|
+
plural: 'secondi'
|
|
291
|
+
},
|
|
292
|
+
minutes: {
|
|
293
|
+
singular: 'minuto',
|
|
294
|
+
plural: 'minuti'
|
|
295
|
+
},
|
|
296
|
+
hours: {
|
|
297
|
+
singular: 'ora',
|
|
298
|
+
plural: 'ore'
|
|
299
|
+
},
|
|
300
|
+
days: {
|
|
301
|
+
singular: 'giorno',
|
|
302
|
+
plural: 'giorni'
|
|
303
|
+
},
|
|
304
|
+
weeks: {
|
|
305
|
+
singular: 'settimana',
|
|
306
|
+
plural: 'settimane'
|
|
307
|
+
},
|
|
308
|
+
months: {
|
|
309
|
+
singular: 'mese',
|
|
310
|
+
plural: 'mesi'
|
|
311
|
+
},
|
|
312
|
+
years: {
|
|
313
|
+
singular: 'anno',
|
|
314
|
+
plural: 'anni'
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
pl: {
|
|
319
|
+
past: {
|
|
320
|
+
seconds: {
|
|
321
|
+
singular: 'sekunda',
|
|
322
|
+
plural: 'sekundy'
|
|
323
|
+
},
|
|
324
|
+
minutes: {
|
|
325
|
+
singular: 'minuta',
|
|
326
|
+
plural: 'minuty'
|
|
327
|
+
},
|
|
328
|
+
hours: {
|
|
329
|
+
singular: 'godzina',
|
|
330
|
+
plural: 'godziny'
|
|
331
|
+
},
|
|
332
|
+
days: {
|
|
333
|
+
singular: 'dzień',
|
|
334
|
+
plural: 'dni'
|
|
335
|
+
},
|
|
336
|
+
weeks: {
|
|
337
|
+
singular: 'tydzień',
|
|
338
|
+
plural: 'tygodnie'
|
|
339
|
+
},
|
|
340
|
+
months: {
|
|
341
|
+
singular: 'miesiąc',
|
|
342
|
+
plural: 'miesiące'
|
|
343
|
+
},
|
|
344
|
+
years: {
|
|
345
|
+
singular: 'rok',
|
|
346
|
+
plural: 'lata'
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
future: {
|
|
350
|
+
seconds: {
|
|
351
|
+
singular: 'sekunda',
|
|
352
|
+
plural: 'sekundy'
|
|
353
|
+
},
|
|
354
|
+
minutes: {
|
|
355
|
+
singular: 'minuta',
|
|
356
|
+
plural: 'minuty'
|
|
357
|
+
},
|
|
358
|
+
hours: {
|
|
359
|
+
singular: 'godzina',
|
|
360
|
+
plural: 'godziny'
|
|
361
|
+
},
|
|
362
|
+
days: {
|
|
363
|
+
singular: 'dzień',
|
|
364
|
+
plural: 'dni'
|
|
365
|
+
},
|
|
366
|
+
weeks: {
|
|
367
|
+
singular: 'tydzień',
|
|
368
|
+
plural: 'tygodnie'
|
|
369
|
+
},
|
|
370
|
+
months: {
|
|
371
|
+
singular: 'miesiąc',
|
|
372
|
+
plural: 'miesiące'
|
|
373
|
+
},
|
|
374
|
+
years: {
|
|
375
|
+
singular: 'rok',
|
|
376
|
+
plural: 'lata'
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
pt: {
|
|
381
|
+
past: {
|
|
382
|
+
seconds: {
|
|
383
|
+
singular: 'segundo',
|
|
384
|
+
plural: 'segundos'
|
|
385
|
+
},
|
|
386
|
+
minutes: {
|
|
387
|
+
singular: 'minuto',
|
|
388
|
+
plural: 'minutos'
|
|
389
|
+
},
|
|
390
|
+
hours: {
|
|
391
|
+
singular: 'hora',
|
|
392
|
+
plural: 'horas'
|
|
393
|
+
},
|
|
394
|
+
days: {
|
|
395
|
+
singular: 'dia',
|
|
396
|
+
plural: 'dias'
|
|
397
|
+
},
|
|
398
|
+
weeks: {
|
|
399
|
+
singular: 'semana',
|
|
400
|
+
plural: 'semanas'
|
|
401
|
+
},
|
|
402
|
+
months: {
|
|
403
|
+
singular: 'mês',
|
|
404
|
+
plural: 'meses'
|
|
405
|
+
},
|
|
406
|
+
years: {
|
|
407
|
+
singular: 'ano',
|
|
408
|
+
plural: 'anos'
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
future: {
|
|
412
|
+
seconds: {
|
|
413
|
+
singular: 'segundo',
|
|
414
|
+
plural: 'segundos'
|
|
415
|
+
},
|
|
416
|
+
minutes: {
|
|
417
|
+
singular: 'minuto',
|
|
418
|
+
plural: 'minutos'
|
|
419
|
+
},
|
|
420
|
+
hours: {
|
|
421
|
+
singular: 'hora',
|
|
422
|
+
plural: 'horas'
|
|
423
|
+
},
|
|
424
|
+
days: {
|
|
425
|
+
singular: 'dia',
|
|
426
|
+
plural: 'dias'
|
|
427
|
+
},
|
|
428
|
+
weeks: {
|
|
429
|
+
singular: 'semana',
|
|
430
|
+
plural: 'semanas'
|
|
431
|
+
},
|
|
432
|
+
months: {
|
|
433
|
+
singular: 'mês',
|
|
434
|
+
plural: 'meses'
|
|
435
|
+
},
|
|
436
|
+
years: {
|
|
437
|
+
singular: 'ano',
|
|
438
|
+
plural: 'anos'
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
es: {
|
|
443
|
+
past: {
|
|
444
|
+
seconds: {
|
|
445
|
+
singular: 'segundo',
|
|
446
|
+
plural: 'segundos'
|
|
447
|
+
},
|
|
448
|
+
minutes: {
|
|
449
|
+
singular: 'minuto',
|
|
450
|
+
plural: 'minutos'
|
|
451
|
+
},
|
|
452
|
+
hours: {
|
|
453
|
+
singular: 'hora',
|
|
454
|
+
plural: 'horas'
|
|
455
|
+
},
|
|
456
|
+
days: {
|
|
457
|
+
singular: 'día',
|
|
458
|
+
plural: 'días'
|
|
459
|
+
},
|
|
460
|
+
weeks: {
|
|
461
|
+
singular: 'semana',
|
|
462
|
+
plural: 'semanas'
|
|
463
|
+
},
|
|
464
|
+
months: {
|
|
465
|
+
singular: 'mes',
|
|
466
|
+
plural: 'meses'
|
|
467
|
+
},
|
|
468
|
+
years: {
|
|
469
|
+
singular: 'año',
|
|
470
|
+
plural: 'años'
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
future: {
|
|
474
|
+
seconds: {
|
|
475
|
+
singular: 'segundo',
|
|
476
|
+
plural: 'segundos'
|
|
477
|
+
},
|
|
478
|
+
minutes: {
|
|
479
|
+
singular: 'minuto',
|
|
480
|
+
plural: 'minutos'
|
|
481
|
+
},
|
|
482
|
+
hours: {
|
|
483
|
+
singular: 'hora',
|
|
484
|
+
plural: 'horas'
|
|
485
|
+
},
|
|
486
|
+
days: {
|
|
487
|
+
singular: 'día',
|
|
488
|
+
plural: 'días'
|
|
489
|
+
},
|
|
490
|
+
weeks: {
|
|
491
|
+
singular: 'semana',
|
|
492
|
+
plural: 'semanas'
|
|
493
|
+
},
|
|
494
|
+
months: {
|
|
495
|
+
singular: 'mes',
|
|
496
|
+
plural: 'meses'
|
|
497
|
+
},
|
|
498
|
+
years: {
|
|
499
|
+
singular: 'año',
|
|
500
|
+
plural: 'años'
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
tr: {
|
|
505
|
+
past: {
|
|
506
|
+
seconds: {
|
|
507
|
+
singular: 'saniye',
|
|
508
|
+
plural: 'saniye'
|
|
509
|
+
},
|
|
510
|
+
minutes: {
|
|
511
|
+
singular: 'dakika',
|
|
512
|
+
plural: 'dakika'
|
|
513
|
+
},
|
|
514
|
+
hours: {
|
|
515
|
+
singular: 'saat',
|
|
516
|
+
plural: 'saat'
|
|
517
|
+
},
|
|
518
|
+
days: {
|
|
519
|
+
singular: 'gün',
|
|
520
|
+
plural: 'gün'
|
|
521
|
+
},
|
|
522
|
+
weeks: {
|
|
523
|
+
singular: 'hafta',
|
|
524
|
+
plural: 'hafta'
|
|
525
|
+
},
|
|
526
|
+
months: {
|
|
527
|
+
singular: 'ay',
|
|
528
|
+
plural: 'ay'
|
|
529
|
+
},
|
|
530
|
+
years: {
|
|
531
|
+
singular: 'yıl',
|
|
532
|
+
plural: 'yıl'
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
future: {
|
|
536
|
+
seconds: {
|
|
537
|
+
singular: 'saniye',
|
|
538
|
+
plural: 'saniye'
|
|
539
|
+
},
|
|
540
|
+
minutes: {
|
|
541
|
+
singular: 'dakika',
|
|
542
|
+
plural: 'dakika'
|
|
543
|
+
},
|
|
544
|
+
hours: {
|
|
545
|
+
singular: 'saat',
|
|
546
|
+
plural: 'saat'
|
|
547
|
+
},
|
|
548
|
+
days: {
|
|
549
|
+
singular: 'gün',
|
|
550
|
+
plural: 'gün'
|
|
551
|
+
},
|
|
552
|
+
weeks: {
|
|
553
|
+
singular: 'hafta',
|
|
554
|
+
plural: 'hafta'
|
|
555
|
+
},
|
|
556
|
+
months: {
|
|
557
|
+
singular: 'ay',
|
|
558
|
+
plural: 'ay'
|
|
559
|
+
},
|
|
560
|
+
years: {
|
|
561
|
+
singular: 'yıl',
|
|
562
|
+
plural: 'yıl'
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
uk: {
|
|
567
|
+
past: {
|
|
568
|
+
seconds: {
|
|
569
|
+
singular: 'секунда',
|
|
570
|
+
plural: 'секунди'
|
|
571
|
+
},
|
|
572
|
+
minutes: {
|
|
573
|
+
singular: 'хвилина',
|
|
574
|
+
plural: 'хвилини'
|
|
575
|
+
},
|
|
576
|
+
hours: {
|
|
577
|
+
singular: 'година',
|
|
578
|
+
plural: 'години'
|
|
579
|
+
},
|
|
580
|
+
days: {
|
|
581
|
+
singular: 'день',
|
|
582
|
+
plural: 'дні'
|
|
583
|
+
},
|
|
584
|
+
weeks: {
|
|
585
|
+
singular: 'тиждень',
|
|
586
|
+
plural: 'тижні'
|
|
587
|
+
},
|
|
588
|
+
months: {
|
|
589
|
+
singular: 'місяць',
|
|
590
|
+
plural: 'місяці'
|
|
591
|
+
},
|
|
592
|
+
years: {
|
|
593
|
+
singular: 'рік',
|
|
594
|
+
plural: 'роки'
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
future: {
|
|
598
|
+
seconds: {
|
|
599
|
+
singular: 'секунда',
|
|
600
|
+
plural: 'секунди'
|
|
601
|
+
},
|
|
602
|
+
minutes: {
|
|
603
|
+
singular: 'хвилина',
|
|
604
|
+
plural: 'хвилини'
|
|
605
|
+
},
|
|
606
|
+
hours: {
|
|
607
|
+
singular: 'година',
|
|
608
|
+
plural: 'години'
|
|
609
|
+
},
|
|
610
|
+
days: {
|
|
611
|
+
singular: 'день',
|
|
612
|
+
plural: 'дні'
|
|
613
|
+
},
|
|
614
|
+
weeks: {
|
|
615
|
+
singular: 'тиждень',
|
|
616
|
+
plural: 'тижні'
|
|
617
|
+
},
|
|
618
|
+
months: {
|
|
619
|
+
singular: 'місяць',
|
|
620
|
+
plural: 'місяці'
|
|
621
|
+
},
|
|
622
|
+
years: {
|
|
623
|
+
singular: 'рік',
|
|
624
|
+
plural: 'роки'
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
};
|
|
629
|
+
//# sourceMappingURL=dateInfo.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dateInfo.js","names":["TIME_TYPE_STRINGS","exports","de","past","seconds","singular","plural","minutes","hours","days","weeks","months","years","future","en","nl","fr","it","pl","pt","es","tr","uk"],"sources":["../../src/constants/dateInfo.ts"],"sourcesContent":["interface TimeTypeString {\n singular: string;\n plural: string;\n}\n\nexport interface TimeTypeStringCollection {\n seconds: TimeTypeString;\n minutes: TimeTypeString;\n hours: TimeTypeString;\n days: TimeTypeString;\n weeks: TimeTypeString;\n months: TimeTypeString;\n years: TimeTypeString;\n}\n\nexport interface TimeTypeStringsRecord {\n past: TimeTypeStringCollection;\n future: TimeTypeStringCollection;\n}\n\ninterface TimeTypeStrings {\n [key: string]: TimeTypeStringsRecord;\n}\n\nexport const TIME_TYPE_STRINGS: TimeTypeStrings = {\n de: {\n past: {\n seconds: {\n singular: 'Sekunde',\n plural: 'Sekunden',\n },\n minutes: {\n singular: 'Minute',\n plural: 'Minuten',\n },\n hours: {\n singular: 'Stunde',\n plural: 'Stunden',\n },\n days: {\n singular: 'Tag',\n plural: 'Tagen',\n },\n weeks: {\n singular: 'Woche',\n plural: 'Wochen',\n },\n months: {\n singular: 'Monat',\n plural: 'Monaten',\n },\n years: {\n singular: 'Jahr',\n plural: 'Jahren',\n },\n },\n future: {\n seconds: {\n singular: 'Sekunde',\n plural: 'Sekunden',\n },\n minutes: {\n singular: 'Minute',\n plural: 'Minuten',\n },\n hours: {\n singular: 'Stunde',\n plural: 'Stunden',\n },\n days: {\n singular: 'Tag',\n plural: 'Tagen',\n },\n weeks: {\n singular: 'Woche',\n plural: 'Wochen',\n },\n months: {\n singular: 'Monat',\n plural: 'Monaten',\n },\n years: {\n singular: 'Jahr',\n plural: 'Jahren',\n },\n },\n },\n en: {\n past: {\n seconds: {\n singular: 'second',\n plural: 'seconds',\n },\n minutes: {\n singular: 'minute',\n plural: 'minutes',\n },\n hours: {\n singular: 'hour',\n plural: 'hours',\n },\n days: {\n singular: 'day',\n plural: 'days',\n },\n weeks: {\n singular: 'week',\n plural: 'weeks',\n },\n months: {\n singular: 'month',\n plural: 'months',\n },\n years: {\n singular: 'year',\n plural: 'years',\n },\n },\n future: {\n seconds: {\n singular: 'second',\n plural: 'seconds',\n },\n minutes: {\n singular: 'minute',\n plural: 'minutes',\n },\n hours: {\n singular: 'hour',\n plural: 'hours',\n },\n days: {\n singular: 'day',\n plural: 'days',\n },\n weeks: {\n singular: 'week',\n plural: 'weeks',\n },\n months: {\n singular: 'month',\n plural: 'months',\n },\n years: {\n singular: 'year',\n plural: 'years',\n },\n },\n },\n nl: {\n past: {\n seconds: {\n singular: 'seconde',\n plural: 'seconden',\n },\n minutes: {\n singular: 'minuut',\n plural: 'minuten',\n },\n hours: {\n singular: 'uur',\n plural: 'uren',\n },\n days: {\n singular: 'dag',\n plural: 'dagen',\n },\n weeks: {\n singular: 'week',\n plural: 'weken',\n },\n months: {\n singular: 'maand',\n plural: 'maanden',\n },\n years: {\n singular: 'jaar',\n plural: 'jaren',\n },\n },\n future: {\n seconds: {\n singular: 'seconde',\n plural: 'seconden',\n },\n minutes: {\n singular: 'minuut',\n plural: 'minuten',\n },\n hours: {\n singular: 'uur',\n plural: 'uren',\n },\n days: {\n singular: 'dag',\n plural: 'dagen',\n },\n weeks: {\n singular: 'week',\n plural: 'weken',\n },\n months: {\n singular: 'maand',\n plural: 'maanden',\n },\n years: {\n singular: 'jaar',\n plural: 'jaren',\n },\n },\n },\n fr: {\n past: {\n seconds: {\n singular: 'seconde',\n plural: 'secondes',\n },\n minutes: {\n singular: 'minute',\n plural: 'minutes',\n },\n hours: {\n singular: 'heure',\n plural: 'heures',\n },\n days: {\n singular: 'jour',\n plural: 'jours',\n },\n weeks: {\n singular: 'semaine',\n plural: 'semaines',\n },\n months: {\n singular: 'mois',\n plural: 'mois',\n },\n years: {\n singular: 'an',\n plural: 'ans',\n },\n },\n future: {\n seconds: {\n singular: 'seconde',\n plural: 'secondes',\n },\n minutes: {\n singular: 'minute',\n plural: 'minutes',\n },\n hours: {\n singular: 'heure',\n plural: 'heures',\n },\n days: {\n singular: 'jour',\n plural: 'jours',\n },\n weeks: {\n singular: 'semaine',\n plural: 'semaines',\n },\n months: {\n singular: 'mois',\n plural: 'mois',\n },\n years: {\n singular: 'an',\n plural: 'ans',\n },\n },\n },\n it: {\n past: {\n seconds: {\n singular: 'secondo',\n plural: 'secondi',\n },\n minutes: {\n singular: 'minuto',\n plural: 'minuti',\n },\n hours: {\n singular: 'ora',\n plural: 'ore',\n },\n days: {\n singular: 'giorno',\n plural: 'giorni',\n },\n weeks: {\n singular: 'settimana',\n plural: 'settimane',\n },\n months: {\n singular: 'mese',\n plural: 'mesi',\n },\n years: {\n singular: 'anno',\n plural: 'anni',\n },\n },\n future: {\n seconds: {\n singular: 'secondo',\n plural: 'secondi',\n },\n minutes: {\n singular: 'minuto',\n plural: 'minuti',\n },\n hours: {\n singular: 'ora',\n plural: 'ore',\n },\n days: {\n singular: 'giorno',\n plural: 'giorni',\n },\n weeks: {\n singular: 'settimana',\n plural: 'settimane',\n },\n months: {\n singular: 'mese',\n plural: 'mesi',\n },\n years: {\n singular: 'anno',\n plural: 'anni',\n },\n },\n },\n pl: {\n past: {\n seconds: {\n singular: 'sekunda',\n plural: 'sekundy',\n },\n minutes: {\n singular: 'minuta',\n plural: 'minuty',\n },\n hours: {\n singular: 'godzina',\n plural: 'godziny',\n },\n days: {\n singular: 'dzień',\n plural: 'dni',\n },\n weeks: {\n singular: 'tydzień',\n plural: 'tygodnie',\n },\n months: {\n singular: 'miesiąc',\n plural: 'miesiące',\n },\n years: {\n singular: 'rok',\n plural: 'lata',\n },\n },\n future: {\n seconds: {\n singular: 'sekunda',\n plural: 'sekundy',\n },\n minutes: {\n singular: 'minuta',\n plural: 'minuty',\n },\n hours: {\n singular: 'godzina',\n plural: 'godziny',\n },\n days: {\n singular: 'dzień',\n plural: 'dni',\n },\n weeks: {\n singular: 'tydzień',\n plural: 'tygodnie',\n },\n months: {\n singular: 'miesiąc',\n plural: 'miesiące',\n },\n years: {\n singular: 'rok',\n plural: 'lata',\n },\n },\n },\n pt: {\n past: {\n seconds: {\n singular: 'segundo',\n plural: 'segundos',\n },\n minutes: {\n singular: 'minuto',\n plural: 'minutos',\n },\n hours: {\n singular: 'hora',\n plural: 'horas',\n },\n days: {\n singular: 'dia',\n plural: 'dias',\n },\n weeks: {\n singular: 'semana',\n plural: 'semanas',\n },\n months: {\n singular: 'mês',\n plural: 'meses',\n },\n years: {\n singular: 'ano',\n plural: 'anos',\n },\n },\n future: {\n seconds: {\n singular: 'segundo',\n plural: 'segundos',\n },\n minutes: {\n singular: 'minuto',\n plural: 'minutos',\n },\n hours: {\n singular: 'hora',\n plural: 'horas',\n },\n days: {\n singular: 'dia',\n plural: 'dias',\n },\n weeks: {\n singular: 'semana',\n plural: 'semanas',\n },\n months: {\n singular: 'mês',\n plural: 'meses',\n },\n years: {\n singular: 'ano',\n plural: 'anos',\n },\n },\n },\n es: {\n past: {\n seconds: {\n singular: 'segundo',\n plural: 'segundos',\n },\n minutes: {\n singular: 'minuto',\n plural: 'minutos',\n },\n hours: {\n singular: 'hora',\n plural: 'horas',\n },\n days: {\n singular: 'día',\n plural: 'días',\n },\n weeks: {\n singular: 'semana',\n plural: 'semanas',\n },\n months: {\n singular: 'mes',\n plural: 'meses',\n },\n years: {\n singular: 'año',\n plural: 'años',\n },\n },\n future: {\n seconds: {\n singular: 'segundo',\n plural: 'segundos',\n },\n minutes: {\n singular: 'minuto',\n plural: 'minutos',\n },\n hours: {\n singular: 'hora',\n plural: 'horas',\n },\n days: {\n singular: 'día',\n plural: 'días',\n },\n weeks: {\n singular: 'semana',\n plural: 'semanas',\n },\n months: {\n singular: 'mes',\n plural: 'meses',\n },\n years: {\n singular: 'año',\n plural: 'años',\n },\n },\n },\n tr: {\n past: {\n seconds: {\n singular: 'saniye',\n plural: 'saniye',\n },\n minutes: {\n singular: 'dakika',\n plural: 'dakika',\n },\n hours: {\n singular: 'saat',\n plural: 'saat',\n },\n days: {\n singular: 'gün',\n plural: 'gün',\n },\n weeks: {\n singular: 'hafta',\n plural: 'hafta',\n },\n months: {\n singular: 'ay',\n plural: 'ay',\n },\n years: {\n singular: 'yıl',\n plural: 'yıl',\n },\n },\n future: {\n seconds: {\n singular: 'saniye',\n plural: 'saniye',\n },\n minutes: {\n singular: 'dakika',\n plural: 'dakika',\n },\n hours: {\n singular: 'saat',\n plural: 'saat',\n },\n days: {\n singular: 'gün',\n plural: 'gün',\n },\n weeks: {\n singular: 'hafta',\n plural: 'hafta',\n },\n months: {\n singular: 'ay',\n plural: 'ay',\n },\n years: {\n singular: 'yıl',\n plural: 'yıl',\n },\n },\n },\n uk: {\n past: {\n seconds: {\n singular: 'секунда',\n plural: 'секунди',\n },\n minutes: {\n singular: 'хвилина',\n plural: 'хвилини',\n },\n hours: {\n singular: 'година',\n plural: 'години',\n },\n days: {\n singular: 'день',\n plural: 'дні',\n },\n weeks: {\n singular: 'тиждень',\n plural: 'тижні',\n },\n months: {\n singular: 'місяць',\n plural: 'місяці',\n },\n years: {\n singular: 'рік',\n plural: 'роки',\n },\n },\n future: {\n seconds: {\n singular: 'секунда',\n plural: 'секунди',\n },\n minutes: {\n singular: 'хвилина',\n plural: 'хвилини',\n },\n hours: {\n singular: 'година',\n plural: 'години',\n },\n days: {\n singular: 'день',\n plural: 'дні',\n },\n weeks: {\n singular: 'тиждень',\n plural: 'тижні',\n },\n months: {\n singular: 'місяць',\n plural: 'місяці',\n },\n years: {\n singular: 'рік',\n plural: 'роки',\n },\n },\n },\n};\n"],"mappings":"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"}
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { default as Calendar } from './components/calendar/Calendar';
|
|
2
|
+
export type { Categories, HighlightedDates, HighlightedDateStyles } from './types/calendar';
|
|
3
|
+
export { default as DateInfo } from './components/date-info/DateInfo';
|
|
4
|
+
export { default as OpeningTimes } from './components/opening-times/OpeningTimes';
|
|
5
|
+
export type { OpeningTime, Time, Weekday } from './types/openingTimes';
|