@trackunit/react-date-and-time-components 0.0.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.
Files changed (52) hide show
  1. package/README.md +18 -0
  2. package/index.cjs.d.ts +1 -0
  3. package/index.cjs.js +2798 -0
  4. package/index.esm.d.ts +1 -0
  5. package/index.esm.js +2789 -0
  6. package/package.json +16 -0
  7. package/src/DayPicker/DayPicker.d.ts +32 -0
  8. package/src/DayPicker/DayRangePicker.d.ts +52 -0
  9. package/src/DayPicker/DayRangePicker.stories.d.ts +12 -0
  10. package/src/DayPicker/DayRangePickerPopover.d.ts +46 -0
  11. package/src/DayPicker/index.d.ts +21 -0
  12. package/src/DayPicker/useLocale.d.ts +8 -0
  13. package/src/dateTime/DateTime.d.ts +30 -0
  14. package/src/dateTime/DateTime.stories.d.ts +8 -0
  15. package/src/dateTime/DateTimeHumanized.d.ts +11 -0
  16. package/src/dateTime/index.d.ts +2 -0
  17. package/src/index.d.ts +2 -0
  18. package/src/translation.d.ts +34 -0
  19. package/translation.cjs.js +20 -0
  20. package/translation.cjs10.js +20 -0
  21. package/translation.cjs11.js +20 -0
  22. package/translation.cjs12.js +20 -0
  23. package/translation.cjs13.js +20 -0
  24. package/translation.cjs14.js +20 -0
  25. package/translation.cjs15.js +20 -0
  26. package/translation.cjs16.js +20 -0
  27. package/translation.cjs17.js +20 -0
  28. package/translation.cjs2.js +20 -0
  29. package/translation.cjs3.js +20 -0
  30. package/translation.cjs4.js +20 -0
  31. package/translation.cjs5.js +20 -0
  32. package/translation.cjs6.js +20 -0
  33. package/translation.cjs7.js +20 -0
  34. package/translation.cjs8.js +20 -0
  35. package/translation.cjs9.js +20 -0
  36. package/translation.esm.js +18 -0
  37. package/translation.esm10.js +18 -0
  38. package/translation.esm11.js +18 -0
  39. package/translation.esm12.js +18 -0
  40. package/translation.esm13.js +18 -0
  41. package/translation.esm14.js +18 -0
  42. package/translation.esm15.js +18 -0
  43. package/translation.esm16.js +18 -0
  44. package/translation.esm17.js +18 -0
  45. package/translation.esm2.js +18 -0
  46. package/translation.esm3.js +18 -0
  47. package/translation.esm4.js +18 -0
  48. package/translation.esm5.js +18 -0
  49. package/translation.esm6.js +18 -0
  50. package/translation.esm7.js +18 -0
  51. package/translation.esm8.js +18 -0
  52. package/translation.esm9.js +18 -0
@@ -0,0 +1,20 @@
1
+ 'use strict';
2
+
3
+ var translation = {
4
+ "dateTime.instant.now": "Now",
5
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
6
+ "layout.actions.apply": "Apply",
7
+ "layout.actions.cancel": "Cancel",
8
+ "layout.actions.clear": "Clear",
9
+ "shared.timePeriods.days": "{{count}} day",
10
+ "shared.timePeriods.days_plural": "{{count}} days",
11
+ "shared.timePeriods.hours": "{{count}} hour",
12
+ "shared.timePeriods.hours_plural": "{{count}} hours",
13
+ "shared.timePeriods.months": "{{count}} month",
14
+ "shared.timePeriods.months_plural": "{{count}} months",
15
+ "shared.timePeriods.today": "Today",
16
+ "shared.timePeriods.weeks": "{{count}} week",
17
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
18
+ };
19
+
20
+ exports["default"] = translation;
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };
@@ -0,0 +1,18 @@
1
+ var translation = {
2
+ "dateTime.instant.now": "Now",
3
+ "dayRangePickerPopover.icon.tooltip.calendar": "Calendar",
4
+ "layout.actions.apply": "Apply",
5
+ "layout.actions.cancel": "Cancel",
6
+ "layout.actions.clear": "Clear",
7
+ "shared.timePeriods.days": "{{count}} day",
8
+ "shared.timePeriods.days_plural": "{{count}} days",
9
+ "shared.timePeriods.hours": "{{count}} hour",
10
+ "shared.timePeriods.hours_plural": "{{count}} hours",
11
+ "shared.timePeriods.months": "{{count}} month",
12
+ "shared.timePeriods.months_plural": "{{count}} months",
13
+ "shared.timePeriods.today": "Today",
14
+ "shared.timePeriods.weeks": "{{count}} week",
15
+ "shared.timePeriods.weeks_plural": "{{count}} weeks"
16
+ };
17
+
18
+ export { translation as default };