ablok-components 0.3.112 → 0.3.113

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 (25) hide show
  1. package/dist/ablok-components.umd.js +2 -2
  2. package/dist/components/molecules/input-datepicker/input-datepicker.vue_vue_type_script_setup_true_lang.js +37 -39
  3. package/package.json +1 -1
  4. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +0 -9
  5. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +0 -17
  6. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/_lib/buildMatchFn.js +0 -22
  7. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +0 -18
  8. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/de/_lib/formatDistance.js +0 -162
  9. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/de/_lib/formatLong.js +0 -32
  10. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/de/_lib/formatRelative.js +0 -11
  11. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/de/_lib/localize.js +0 -213
  12. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/de/_lib/match.js +0 -114
  13. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/de.js +0 -20
  14. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +0 -69
  15. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/en-US/_lib/formatLong.js +0 -32
  16. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +0 -11
  17. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/en-US/_lib/localize.js +0 -202
  18. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/en-US/_lib/match.js +0 -124
  19. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/en-US.js +0 -20
  20. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/fr/_lib/formatDistance.js +0 -69
  21. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/fr/_lib/formatLong.js +0 -32
  22. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/fr/_lib/formatRelative.js +0 -11
  23. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/fr/_lib/localize.js +0 -177
  24. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/fr/_lib/match.js +0 -124
  25. package/dist/node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/fr.js +0 -20
@@ -1,114 +0,0 @@
1
- import { buildMatchFn as e } from "../../_lib/buildMatchFn.js";
2
- import { buildMatchPatternFn as t } from "../../_lib/buildMatchPatternFn.js";
3
- var n = {
4
- ordinalNumber: t({
5
- matchPattern: /^(\d+)(\.)?/i,
6
- parsePattern: /\d+/i,
7
- valueCallback: (e) => parseInt(e)
8
- }),
9
- era: e({
10
- matchPatterns: {
11
- narrow: /^(v\.? ?Chr\.?|n\.? ?Chr\.?)/i,
12
- abbreviated: /^(v\.? ?Chr\.?|n\.? ?Chr\.?)/i,
13
- wide: /^(vor Christus|vor unserer Zeitrechnung|nach Christus|unserer Zeitrechnung)/i
14
- },
15
- defaultMatchWidth: "wide",
16
- parsePatterns: { any: [/^v/i, /^n/i] },
17
- defaultParseWidth: "any"
18
- }),
19
- quarter: e({
20
- matchPatterns: {
21
- narrow: /^[1234]/i,
22
- abbreviated: /^q[1234]/i,
23
- wide: /^[1234](\.)? Quartal/i
24
- },
25
- defaultMatchWidth: "wide",
26
- parsePatterns: { any: [
27
- /1/i,
28
- /2/i,
29
- /3/i,
30
- /4/i
31
- ] },
32
- defaultParseWidth: "any",
33
- valueCallback: (e) => e + 1
34
- }),
35
- month: e({
36
- matchPatterns: {
37
- narrow: /^[jfmasond]/i,
38
- abbreviated: /^(j[aä]n|feb|mär[z]?|apr|mai|jun[i]?|jul[i]?|aug|sep|okt|nov|dez)\.?/i,
39
- wide: /^(jänner|januar|februar|märz|april|mai|juni|juli|august|september|oktober|november|dezember)/i
40
- },
41
- defaultMatchWidth: "wide",
42
- parsePatterns: {
43
- narrow: [
44
- /^j/i,
45
- /^f/i,
46
- /^m/i,
47
- /^a/i,
48
- /^m/i,
49
- /^j/i,
50
- /^j/i,
51
- /^a/i,
52
- /^s/i,
53
- /^o/i,
54
- /^n/i,
55
- /^d/i
56
- ],
57
- any: [
58
- /^j[aä]/i,
59
- /^f/i,
60
- /^mär/i,
61
- /^ap/i,
62
- /^mai/i,
63
- /^jun/i,
64
- /^jul/i,
65
- /^au/i,
66
- /^s/i,
67
- /^o/i,
68
- /^n/i,
69
- /^d/i
70
- ]
71
- },
72
- defaultParseWidth: "any"
73
- }),
74
- day: e({
75
- matchPatterns: {
76
- narrow: /^[smdmf]/i,
77
- short: /^(so|mo|di|mi|do|fr|sa)/i,
78
- abbreviated: /^(son?|mon?|die?|mit?|don?|fre?|sam?)\.?/i,
79
- wide: /^(sonntag|montag|dienstag|mittwoch|donnerstag|freitag|samstag)/i
80
- },
81
- defaultMatchWidth: "wide",
82
- parsePatterns: { any: [
83
- /^so/i,
84
- /^mo/i,
85
- /^di/i,
86
- /^mi/i,
87
- /^do/i,
88
- /^f/i,
89
- /^sa/i
90
- ] },
91
- defaultParseWidth: "any"
92
- }),
93
- dayPeriod: e({
94
- matchPatterns: {
95
- narrow: /^(vm\.?|nm\.?|Mitternacht|Mittag|morgens|nachm\.?|abends|nachts)/i,
96
- abbreviated: /^(vorm\.?|nachm\.?|Mitternacht|Mittag|morgens|nachm\.?|abends|nachts)/i,
97
- wide: /^(vormittags|nachmittags|Mitternacht|Mittag|morgens|nachmittags|abends|nachts)/i
98
- },
99
- defaultMatchWidth: "wide",
100
- parsePatterns: { any: {
101
- am: /^v/i,
102
- pm: /^n/i,
103
- midnight: /^Mitte/i,
104
- noon: /^Mitta/i,
105
- morning: /morgens/i,
106
- afternoon: /nachmittags/i,
107
- evening: /abends/i,
108
- night: /nachts/i
109
- } },
110
- defaultParseWidth: "any"
111
- })
112
- };
113
- //#endregion
114
- export { n as match };
@@ -1,20 +0,0 @@
1
- import { formatDistance as e } from "./de/_lib/formatDistance.js";
2
- import { formatLong as t } from "./de/_lib/formatLong.js";
3
- import { formatRelative as n } from "./de/_lib/formatRelative.js";
4
- import { localize as r } from "./de/_lib/localize.js";
5
- import { match as i } from "./de/_lib/match.js";
6
- //#region node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/de.js
7
- var a = {
8
- code: "de",
9
- formatDistance: e,
10
- formatLong: t,
11
- formatRelative: n,
12
- localize: r,
13
- match: i,
14
- options: {
15
- weekStartsOn: 1,
16
- firstWeekContainsDate: 4
17
- }
18
- };
19
- //#endregion
20
- export { a as de, a as default };
@@ -1,69 +0,0 @@
1
- //#region node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/en-US/_lib/formatDistance.js
2
- var e = {
3
- lessThanXSeconds: {
4
- one: "less than a second",
5
- other: "less than {{count}} seconds"
6
- },
7
- xSeconds: {
8
- one: "1 second",
9
- other: "{{count}} seconds"
10
- },
11
- halfAMinute: "half a minute",
12
- lessThanXMinutes: {
13
- one: "less than a minute",
14
- other: "less than {{count}} minutes"
15
- },
16
- xMinutes: {
17
- one: "1 minute",
18
- other: "{{count}} minutes"
19
- },
20
- aboutXHours: {
21
- one: "about 1 hour",
22
- other: "about {{count}} hours"
23
- },
24
- xHours: {
25
- one: "1 hour",
26
- other: "{{count}} hours"
27
- },
28
- xDays: {
29
- one: "1 day",
30
- other: "{{count}} days"
31
- },
32
- aboutXWeeks: {
33
- one: "about 1 week",
34
- other: "about {{count}} weeks"
35
- },
36
- xWeeks: {
37
- one: "1 week",
38
- other: "{{count}} weeks"
39
- },
40
- aboutXMonths: {
41
- one: "about 1 month",
42
- other: "about {{count}} months"
43
- },
44
- xMonths: {
45
- one: "1 month",
46
- other: "{{count}} months"
47
- },
48
- aboutXYears: {
49
- one: "about 1 year",
50
- other: "about {{count}} years"
51
- },
52
- xYears: {
53
- one: "1 year",
54
- other: "{{count}} years"
55
- },
56
- overXYears: {
57
- one: "over 1 year",
58
- other: "over {{count}} years"
59
- },
60
- almostXYears: {
61
- one: "almost 1 year",
62
- other: "almost {{count}} years"
63
- }
64
- }, t = (t, n, r) => {
65
- let i, a = e[t];
66
- return i = typeof a == "string" ? a : n === 1 ? a.one : a.other.replace("{{count}}", n.toString()), r?.addSuffix ? r.comparison && r.comparison > 0 ? "in " + i : i + " ago" : i;
67
- };
68
- //#endregion
69
- export { t as formatDistance };
@@ -1,32 +0,0 @@
1
- import { buildFormatLongFn as e } from "../../_lib/buildFormatLongFn.js";
2
- var t = {
3
- date: e({
4
- formats: {
5
- full: "EEEE, MMMM do, y",
6
- long: "MMMM do, y",
7
- medium: "MMM d, y",
8
- short: "MM/dd/yyyy"
9
- },
10
- defaultWidth: "full"
11
- }),
12
- time: e({
13
- formats: {
14
- full: "h:mm:ss a zzzz",
15
- long: "h:mm:ss a z",
16
- medium: "h:mm:ss a",
17
- short: "h:mm a"
18
- },
19
- defaultWidth: "full"
20
- }),
21
- dateTime: e({
22
- formats: {
23
- full: "{{date}} 'at' {{time}}",
24
- long: "{{date}} 'at' {{time}}",
25
- medium: "{{date}}, {{time}}",
26
- short: "{{date}}, {{time}}"
27
- },
28
- defaultWidth: "full"
29
- })
30
- };
31
- //#endregion
32
- export { t as formatLong };
@@ -1,11 +0,0 @@
1
- //#region node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/en-US/_lib/formatRelative.js
2
- var e = {
3
- lastWeek: "'last' eeee 'at' p",
4
- yesterday: "'yesterday at' p",
5
- today: "'today at' p",
6
- tomorrow: "'tomorrow at' p",
7
- nextWeek: "eeee 'at' p",
8
- other: "P"
9
- }, t = (t, n, r, i) => e[t];
10
- //#endregion
11
- export { t as formatRelative };
@@ -1,202 +0,0 @@
1
- import { buildLocalizeFn as e } from "../../_lib/buildLocalizeFn.js";
2
- var t = {
3
- ordinalNumber: (e, t) => {
4
- let n = Number(e), r = n % 100;
5
- if (r > 20 || r < 10) switch (r % 10) {
6
- case 1: return n + "st";
7
- case 2: return n + "nd";
8
- case 3: return n + "rd";
9
- }
10
- return n + "th";
11
- },
12
- era: e({
13
- values: {
14
- narrow: ["B", "A"],
15
- abbreviated: ["BC", "AD"],
16
- wide: ["Before Christ", "Anno Domini"]
17
- },
18
- defaultWidth: "wide"
19
- }),
20
- quarter: e({
21
- values: {
22
- narrow: [
23
- "1",
24
- "2",
25
- "3",
26
- "4"
27
- ],
28
- abbreviated: [
29
- "Q1",
30
- "Q2",
31
- "Q3",
32
- "Q4"
33
- ],
34
- wide: [
35
- "1st quarter",
36
- "2nd quarter",
37
- "3rd quarter",
38
- "4th quarter"
39
- ]
40
- },
41
- defaultWidth: "wide",
42
- argumentCallback: (e) => e - 1
43
- }),
44
- month: e({
45
- values: {
46
- narrow: [
47
- "J",
48
- "F",
49
- "M",
50
- "A",
51
- "M",
52
- "J",
53
- "J",
54
- "A",
55
- "S",
56
- "O",
57
- "N",
58
- "D"
59
- ],
60
- abbreviated: [
61
- "Jan",
62
- "Feb",
63
- "Mar",
64
- "Apr",
65
- "May",
66
- "Jun",
67
- "Jul",
68
- "Aug",
69
- "Sep",
70
- "Oct",
71
- "Nov",
72
- "Dec"
73
- ],
74
- wide: [
75
- "January",
76
- "February",
77
- "March",
78
- "April",
79
- "May",
80
- "June",
81
- "July",
82
- "August",
83
- "September",
84
- "October",
85
- "November",
86
- "December"
87
- ]
88
- },
89
- defaultWidth: "wide"
90
- }),
91
- day: e({
92
- values: {
93
- narrow: [
94
- "S",
95
- "M",
96
- "T",
97
- "W",
98
- "T",
99
- "F",
100
- "S"
101
- ],
102
- short: [
103
- "Su",
104
- "Mo",
105
- "Tu",
106
- "We",
107
- "Th",
108
- "Fr",
109
- "Sa"
110
- ],
111
- abbreviated: [
112
- "Sun",
113
- "Mon",
114
- "Tue",
115
- "Wed",
116
- "Thu",
117
- "Fri",
118
- "Sat"
119
- ],
120
- wide: [
121
- "Sunday",
122
- "Monday",
123
- "Tuesday",
124
- "Wednesday",
125
- "Thursday",
126
- "Friday",
127
- "Saturday"
128
- ]
129
- },
130
- defaultWidth: "wide"
131
- }),
132
- dayPeriod: e({
133
- values: {
134
- narrow: {
135
- am: "a",
136
- pm: "p",
137
- midnight: "mi",
138
- noon: "n",
139
- morning: "morning",
140
- afternoon: "afternoon",
141
- evening: "evening",
142
- night: "night"
143
- },
144
- abbreviated: {
145
- am: "AM",
146
- pm: "PM",
147
- midnight: "midnight",
148
- noon: "noon",
149
- morning: "morning",
150
- afternoon: "afternoon",
151
- evening: "evening",
152
- night: "night"
153
- },
154
- wide: {
155
- am: "a.m.",
156
- pm: "p.m.",
157
- midnight: "midnight",
158
- noon: "noon",
159
- morning: "morning",
160
- afternoon: "afternoon",
161
- evening: "evening",
162
- night: "night"
163
- }
164
- },
165
- defaultWidth: "wide",
166
- formattingValues: {
167
- narrow: {
168
- am: "a",
169
- pm: "p",
170
- midnight: "mi",
171
- noon: "n",
172
- morning: "in the morning",
173
- afternoon: "in the afternoon",
174
- evening: "in the evening",
175
- night: "at night"
176
- },
177
- abbreviated: {
178
- am: "AM",
179
- pm: "PM",
180
- midnight: "midnight",
181
- noon: "noon",
182
- morning: "in the morning",
183
- afternoon: "in the afternoon",
184
- evening: "in the evening",
185
- night: "at night"
186
- },
187
- wide: {
188
- am: "a.m.",
189
- pm: "p.m.",
190
- midnight: "midnight",
191
- noon: "noon",
192
- morning: "in the morning",
193
- afternoon: "in the afternoon",
194
- evening: "in the evening",
195
- night: "at night"
196
- }
197
- },
198
- defaultFormattingWidth: "wide"
199
- })
200
- };
201
- //#endregion
202
- export { t as localize };
@@ -1,124 +0,0 @@
1
- import { buildMatchFn as e } from "../../_lib/buildMatchFn.js";
2
- import { buildMatchPatternFn as t } from "../../_lib/buildMatchPatternFn.js";
3
- var n = {
4
- ordinalNumber: t({
5
- matchPattern: /^(\d+)(th|st|nd|rd)?/i,
6
- parsePattern: /\d+/i,
7
- valueCallback: (e) => parseInt(e, 10)
8
- }),
9
- era: e({
10
- matchPatterns: {
11
- narrow: /^(b|a)/i,
12
- abbreviated: /^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,
13
- wide: /^(before christ|before common era|anno domini|common era)/i
14
- },
15
- defaultMatchWidth: "wide",
16
- parsePatterns: { any: [/^b/i, /^(a|c)/i] },
17
- defaultParseWidth: "any"
18
- }),
19
- quarter: e({
20
- matchPatterns: {
21
- narrow: /^[1234]/i,
22
- abbreviated: /^q[1234]/i,
23
- wide: /^[1234](th|st|nd|rd)? quarter/i
24
- },
25
- defaultMatchWidth: "wide",
26
- parsePatterns: { any: [
27
- /1/i,
28
- /2/i,
29
- /3/i,
30
- /4/i
31
- ] },
32
- defaultParseWidth: "any",
33
- valueCallback: (e) => e + 1
34
- }),
35
- month: e({
36
- matchPatterns: {
37
- narrow: /^[jfmasond]/i,
38
- abbreviated: /^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,
39
- wide: /^(january|february|march|april|may|june|july|august|september|october|november|december)/i
40
- },
41
- defaultMatchWidth: "wide",
42
- parsePatterns: {
43
- narrow: [
44
- /^j/i,
45
- /^f/i,
46
- /^m/i,
47
- /^a/i,
48
- /^m/i,
49
- /^j/i,
50
- /^j/i,
51
- /^a/i,
52
- /^s/i,
53
- /^o/i,
54
- /^n/i,
55
- /^d/i
56
- ],
57
- any: [
58
- /^ja/i,
59
- /^f/i,
60
- /^mar/i,
61
- /^ap/i,
62
- /^may/i,
63
- /^jun/i,
64
- /^jul/i,
65
- /^au/i,
66
- /^s/i,
67
- /^o/i,
68
- /^n/i,
69
- /^d/i
70
- ]
71
- },
72
- defaultParseWidth: "any"
73
- }),
74
- day: e({
75
- matchPatterns: {
76
- narrow: /^[smtwf]/i,
77
- short: /^(su|mo|tu|we|th|fr|sa)/i,
78
- abbreviated: /^(sun|mon|tue|wed|thu|fri|sat)/i,
79
- wide: /^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i
80
- },
81
- defaultMatchWidth: "wide",
82
- parsePatterns: {
83
- narrow: [
84
- /^s/i,
85
- /^m/i,
86
- /^t/i,
87
- /^w/i,
88
- /^t/i,
89
- /^f/i,
90
- /^s/i
91
- ],
92
- any: [
93
- /^su/i,
94
- /^m/i,
95
- /^tu/i,
96
- /^w/i,
97
- /^th/i,
98
- /^f/i,
99
- /^sa/i
100
- ]
101
- },
102
- defaultParseWidth: "any"
103
- }),
104
- dayPeriod: e({
105
- matchPatterns: {
106
- narrow: /^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,
107
- any: /^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i
108
- },
109
- defaultMatchWidth: "any",
110
- parsePatterns: { any: {
111
- am: /^a/i,
112
- pm: /^p/i,
113
- midnight: /^mi/i,
114
- noon: /^no/i,
115
- morning: /morning/i,
116
- afternoon: /afternoon/i,
117
- evening: /evening/i,
118
- night: /night/i
119
- } },
120
- defaultParseWidth: "any"
121
- })
122
- };
123
- //#endregion
124
- export { n as match };
@@ -1,20 +0,0 @@
1
- import { formatDistance as e } from "./en-US/_lib/formatDistance.js";
2
- import { formatRelative as t } from "./en-US/_lib/formatRelative.js";
3
- import { localize as n } from "./en-US/_lib/localize.js";
4
- import { match as r } from "./en-US/_lib/match.js";
5
- import { formatLong as i } from "./en-US/_lib/formatLong.js";
6
- //#region node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/en-US.js
7
- var a = {
8
- code: "en-US",
9
- formatDistance: e,
10
- formatLong: i,
11
- formatRelative: t,
12
- localize: n,
13
- match: r,
14
- options: {
15
- weekStartsOn: 0,
16
- firstWeekContainsDate: 1
17
- }
18
- };
19
- //#endregion
20
- export { a as default, a as enUS };
@@ -1,69 +0,0 @@
1
- //#region node_modules/.pnpm/date-fns@4.4.0/node_modules/date-fns/locale/fr/_lib/formatDistance.js
2
- var e = {
3
- lessThanXSeconds: {
4
- one: "moins d’une seconde",
5
- other: "moins de {{count}} secondes"
6
- },
7
- xSeconds: {
8
- one: "1 seconde",
9
- other: "{{count}} secondes"
10
- },
11
- halfAMinute: "30 secondes",
12
- lessThanXMinutes: {
13
- one: "moins d’une minute",
14
- other: "moins de {{count}} minutes"
15
- },
16
- xMinutes: {
17
- one: "1 minute",
18
- other: "{{count}} minutes"
19
- },
20
- aboutXHours: {
21
- one: "environ 1 heure",
22
- other: "environ {{count}} heures"
23
- },
24
- xHours: {
25
- one: "1 heure",
26
- other: "{{count}} heures"
27
- },
28
- xDays: {
29
- one: "1 jour",
30
- other: "{{count}} jours"
31
- },
32
- aboutXWeeks: {
33
- one: "environ 1 semaine",
34
- other: "environ {{count}} semaines"
35
- },
36
- xWeeks: {
37
- one: "1 semaine",
38
- other: "{{count}} semaines"
39
- },
40
- aboutXMonths: {
41
- one: "environ 1 mois",
42
- other: "environ {{count}} mois"
43
- },
44
- xMonths: {
45
- one: "1 mois",
46
- other: "{{count}} mois"
47
- },
48
- aboutXYears: {
49
- one: "environ 1 an",
50
- other: "environ {{count}} ans"
51
- },
52
- xYears: {
53
- one: "1 an",
54
- other: "{{count}} ans"
55
- },
56
- overXYears: {
57
- one: "plus d’un an",
58
- other: "plus de {{count}} ans"
59
- },
60
- almostXYears: {
61
- one: "presqu’un an",
62
- other: "presque {{count}} ans"
63
- }
64
- }, t = (t, n, r) => {
65
- let i, a = e[t];
66
- return i = typeof a == "string" ? a : n === 1 ? a.one : a.other.replace("{{count}}", String(n)), r?.addSuffix ? r.comparison && r.comparison > 0 ? "dans " + i : "il y a " + i : i;
67
- };
68
- //#endregion
69
- export { t as formatDistance };
@@ -1,32 +0,0 @@
1
- import { buildFormatLongFn as e } from "../../_lib/buildFormatLongFn.js";
2
- var t = {
3
- date: e({
4
- formats: {
5
- full: "EEEE d MMMM y",
6
- long: "d MMMM y",
7
- medium: "d MMM y",
8
- short: "dd/MM/y"
9
- },
10
- defaultWidth: "full"
11
- }),
12
- time: e({
13
- formats: {
14
- full: "HH:mm:ss zzzz",
15
- long: "HH:mm:ss z",
16
- medium: "HH:mm:ss",
17
- short: "HH:mm"
18
- },
19
- defaultWidth: "full"
20
- }),
21
- dateTime: e({
22
- formats: {
23
- full: "{{date}} 'à' {{time}}",
24
- long: "{{date}} 'à' {{time}}",
25
- medium: "{{date}}, {{time}}",
26
- short: "{{date}}, {{time}}"
27
- },
28
- defaultWidth: "full"
29
- })
30
- };
31
- //#endregion
32
- export { t as formatLong };