@blofin/blofin-ui 0.6.87

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 (238) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +97 -0
  3. package/dist/Badge.d.ts +1 -0
  4. package/dist/Badge.es.js +56 -0
  5. package/dist/Button.d.ts +1 -0
  6. package/dist/Button.es.js +377 -0
  7. package/dist/Dialog.d.ts +1 -0
  8. package/dist/Dialog.es.js +159 -0
  9. package/dist/Divider.d.ts +1 -0
  10. package/dist/Divider.es.js +25 -0
  11. package/dist/Drawer.d.ts +1 -0
  12. package/dist/Drawer.es.js +90 -0
  13. package/dist/Form.d.ts +1 -0
  14. package/dist/Form.es.js +752 -0
  15. package/dist/Slider.d.ts +1 -0
  16. package/dist/Slider.es.js +242 -0
  17. package/dist/blofin.css +1 -0
  18. package/dist/close-c67ec245.js +5 -0
  19. package/dist/components/Alert/Alert.d.ts +12 -0
  20. package/dist/components/Alert/index.d.ts +2 -0
  21. package/dist/components/Alert/styles.d.ts +7 -0
  22. package/dist/components/Badge/Badge.d.ts +21 -0
  23. package/dist/components/Badge/index.d.ts +2 -0
  24. package/dist/components/Badge/styles.d.ts +7 -0
  25. package/dist/components/Button/Button.d.ts +35 -0
  26. package/dist/components/Button/Loading/index.d.ts +8 -0
  27. package/dist/components/Button/index.d.ts +2 -0
  28. package/dist/components/Button/styles.d.ts +13 -0
  29. package/dist/components/Button/types.d.ts +5 -0
  30. package/dist/components/Calendar/Calendar.d.ts +12 -0
  31. package/dist/components/Calendar/index.d.ts +2 -0
  32. package/dist/components/Calendar/styles.d.ts +39 -0
  33. package/dist/components/Checkbox/Checkbox.d.ts +8 -0
  34. package/dist/components/Checkbox/index.d.ts +2 -0
  35. package/dist/components/Checkbox/styles.d.ts +22 -0
  36. package/dist/components/CssDropdown/CssDropdown.d.ts +18 -0
  37. package/dist/components/CssDropdown/styles.d.ts +7 -0
  38. package/dist/components/DatePickerRange/DatePickerRange.d.ts +32 -0
  39. package/dist/components/DatePickerRange/styles.d.ts +6 -0
  40. package/dist/components/DateTimePicker/Calendar.d.ts +10 -0
  41. package/dist/components/DateTimePicker/DateTimePicker.d.ts +18 -0
  42. package/dist/components/DateTimePicker/ScrollableList.d.ts +12 -0
  43. package/dist/components/DateTimePicker/hooks/useDateTimePicker.d.ts +35 -0
  44. package/dist/components/DateTimePicker/styles.d.ts +48 -0
  45. package/dist/components/Dialog/Dialog.d.ts +30 -0
  46. package/dist/components/Dialog/index.d.ts +2 -0
  47. package/dist/components/Dialog/styles.d.ts +13 -0
  48. package/dist/components/Divider/Divider.d.ts +8 -0
  49. package/dist/components/Divider/index.d.ts +2 -0
  50. package/dist/components/Divider/styles.d.ts +7 -0
  51. package/dist/components/Drawer/Drawer.d.ts +13 -0
  52. package/dist/components/Drawer/index.d.ts +2 -0
  53. package/dist/components/Drawer/styles.d.ts +6 -0
  54. package/dist/components/Dropdown/Dropdown.d.ts +14 -0
  55. package/dist/components/Dropdown/style.d.ts +9 -0
  56. package/dist/components/Empty/index.d.ts +5 -0
  57. package/dist/components/Form/Control.d.ts +13 -0
  58. package/dist/components/Form/Form.d.ts +3 -0
  59. package/dist/components/Form/FormItem.d.ts +4 -0
  60. package/dist/components/Form/FormLabel.d.ts +4 -0
  61. package/dist/components/Form/context.d.ts +5 -0
  62. package/dist/components/Form/index.d.ts +8 -0
  63. package/dist/components/Form/interface.d.ts +48 -0
  64. package/dist/components/Form/store.d.ts +16 -0
  65. package/dist/components/Form/styles/item.d.ts +5 -0
  66. package/dist/components/Form/useForm.d.ts +3 -0
  67. package/dist/components/LabelTextField/LabelTextField.d.ts +17 -0
  68. package/dist/components/LabelTextField/index.d.ts +2 -0
  69. package/dist/components/LabelTextField/styles.d.ts +34 -0
  70. package/dist/components/MonthPicker/index.d.ts +17 -0
  71. package/dist/components/Notification/Notification.d.ts +2 -0
  72. package/dist/components/Notification/style.d.ts +15 -0
  73. package/dist/components/Pagination/PageOptions.d.ts +12 -0
  74. package/dist/components/Pagination/Pagination.d.ts +34 -0
  75. package/dist/components/Pagination/styles.d.ts +6 -0
  76. package/dist/components/Picker/hooks/usePickerMethod.d.ts +9 -0
  77. package/dist/components/Picker/index.d.ts +10 -0
  78. package/dist/components/Picker/styles.d.ts +4 -0
  79. package/dist/components/Popover/Popover.d.ts +17 -0
  80. package/dist/components/Popup/index.d.ts +15 -0
  81. package/dist/components/Popup/styles.d.ts +3 -0
  82. package/dist/components/RadioButton/RadioButton.d.ts +10 -0
  83. package/dist/components/RadioButton/index.d.ts +2 -0
  84. package/dist/components/RadioButton/styles.d.ts +12 -0
  85. package/dist/components/Select/Select.d.ts +38 -0
  86. package/dist/components/Select/index.d.ts +2 -0
  87. package/dist/components/Select/styles.d.ts +24 -0
  88. package/dist/components/Slider/Slider.d.ts +20 -0
  89. package/dist/components/Slider/index.d.ts +2 -0
  90. package/dist/components/Slider/styles.d.ts +31 -0
  91. package/dist/components/Sort/SortButton.d.ts +14 -0
  92. package/dist/components/Sort/SortGroup.d.ts +8 -0
  93. package/dist/components/Sort/reducer.d.ts +36 -0
  94. package/dist/components/Sortable/SortItem.d.ts +6 -0
  95. package/dist/components/Sortable/index.d.ts +10 -0
  96. package/dist/components/Switch/Switch.d.ts +9 -0
  97. package/dist/components/Switch/styles.d.ts +12 -0
  98. package/dist/components/Tab/Tab.d.ts +21 -0
  99. package/dist/components/Tab/styles.d.ts +20 -0
  100. package/dist/components/Table/Pagination/index.d.ts +8 -0
  101. package/dist/components/Table/Table.d.ts +5 -0
  102. package/dist/components/Table/Tbody/index.d.ts +14 -0
  103. package/dist/components/Table/Thead/index.d.ts +17 -0
  104. package/dist/components/Table/context.d.ts +17 -0
  105. package/dist/components/Table/css.d.ts +12 -0
  106. package/dist/components/Table/hooks/useStickyClassName.d.ts +3 -0
  107. package/dist/components/Table/hooks/useStickyOffset.d.ts +15 -0
  108. package/dist/components/Table/index.d.ts +3 -0
  109. package/dist/components/Table/interface.d.ts +48 -0
  110. package/dist/components/TextField/TextField.d.ts +15 -0
  111. package/dist/components/TextField/index.d.ts +2 -0
  112. package/dist/components/TextSelect/TextSelect.d.ts +50 -0
  113. package/dist/components/TextSelect/styles.d.ts +27 -0
  114. package/dist/components/Textarea/index.d.ts +15 -0
  115. package/dist/components/Textarea/style.d.ts +13 -0
  116. package/dist/components/Toast/Toast.d.ts +2 -0
  117. package/dist/components/Toast/styles.d.ts +13 -0
  118. package/dist/components/Tooltip/Tooltip.d.ts +22 -0
  119. package/dist/components/Tooltip/enum.d.ts +21 -0
  120. package/dist/components/Tooltip/styles.d.ts +10 -0
  121. package/dist/components/Tooltip/type.d.ts +1 -0
  122. package/dist/components/Typography/Typography.d.ts +35 -0
  123. package/dist/components/Typography/styles.d.ts +10 -0
  124. package/dist/config/tailwind.js +9 -0
  125. package/dist/config/theme.js +318 -0
  126. package/dist/hooks/useAlign.d.ts +20 -0
  127. package/dist/hooks/useClient.d.ts +4 -0
  128. package/dist/hooks/useDelayEvent.d.ts +2 -0
  129. package/dist/hooks/useLatest.d.ts +1 -0
  130. package/dist/hooks/useNotification.d.ts +10 -0
  131. package/dist/hooks/useOutsideClick.d.ts +2 -0
  132. package/dist/hooks/useToast.d.ts +9 -0
  133. package/dist/index-0055aace.js +338 -0
  134. package/dist/index-0171eaca.js +436 -0
  135. package/dist/index-03ecf4ec.js +400 -0
  136. package/dist/index-04d10294.js +298 -0
  137. package/dist/index-0a1520d4.js +287 -0
  138. package/dist/index-0f855a91.js +14 -0
  139. package/dist/index-114820db.js +354 -0
  140. package/dist/index-1388dfff.js +336 -0
  141. package/dist/index-15b50a21.js +298 -0
  142. package/dist/index-17308ac1.js +298 -0
  143. package/dist/index-17afe366.js +298 -0
  144. package/dist/index-1d78221c.js +339 -0
  145. package/dist/index-1dc85776.js +437 -0
  146. package/dist/index-20e881af.js +354 -0
  147. package/dist/index-20f2adc4.js +398 -0
  148. package/dist/index-21539629.js +478 -0
  149. package/dist/index-21f85e78.js +377 -0
  150. package/dist/index-236e0579.js +71 -0
  151. package/dist/index-250f50e2.js +502 -0
  152. package/dist/index-356291b2.js +450 -0
  153. package/dist/index-38216e9e.js +340 -0
  154. package/dist/index-3c058c26.js +606 -0
  155. package/dist/index-3c3ba437.js +341 -0
  156. package/dist/index-3cd72a27.js +61 -0
  157. package/dist/index-3dcefa10.js +328 -0
  158. package/dist/index-3f70b1d4.js +331 -0
  159. package/dist/index-40ad0dd1.js +287 -0
  160. package/dist/index-42fb4fd5.js +334 -0
  161. package/dist/index-45696efa.js +438 -0
  162. package/dist/index-4b6824f2.js +61 -0
  163. package/dist/index-4b7924c1.js +354 -0
  164. package/dist/index-4c8ef561.js +337 -0
  165. package/dist/index-4ced47cd.js +359 -0
  166. package/dist/index-4eb29fd9.js +313 -0
  167. package/dist/index-4f2d4e0d.js +342 -0
  168. package/dist/index-51847d07.js +363 -0
  169. package/dist/index-51c1e00d.js +9 -0
  170. package/dist/index-51cf15b2.js +11054 -0
  171. package/dist/index-5357c173.js +336 -0
  172. package/dist/index-572ed179.js +353 -0
  173. package/dist/index-580c6bf2.js +362 -0
  174. package/dist/index-6817d9c1.js +363 -0
  175. package/dist/index-682656f7.js +62 -0
  176. package/dist/index-6834d6cf.js +330 -0
  177. package/dist/index-6a5829bd.js +387 -0
  178. package/dist/index-739cb389.js +332 -0
  179. package/dist/index-7601ed24.js +332 -0
  180. package/dist/index-76c2d21a.js +362 -0
  181. package/dist/index-7871c2fa.js +397 -0
  182. package/dist/index-7a871a23.js +362 -0
  183. package/dist/index-7aae1d07.js +298 -0
  184. package/dist/index-80121226.js +443 -0
  185. package/dist/index-872a50e8.js +353 -0
  186. package/dist/index-88fdaa89.js +437 -0
  187. package/dist/index-8a4c6daa.js +302 -0
  188. package/dist/index-8fb7d88b.js +360 -0
  189. package/dist/index-9412ffa1.js +346 -0
  190. package/dist/index-95d62350.js +427 -0
  191. package/dist/index-96a8d125.js +65 -0
  192. package/dist/index-9d0a665d.js +298 -0
  193. package/dist/index-a8c0dd3b.js +500 -0
  194. package/dist/index-aa90be0a.js +146 -0
  195. package/dist/index-aac5376e.js +331 -0
  196. package/dist/index-ac48594f.js +364 -0
  197. package/dist/index-acc7a626.js +146 -0
  198. package/dist/index-af6965cc.js +332 -0
  199. package/dist/index-b523f554.js +61 -0
  200. package/dist/index-b5aa671f.js +463 -0
  201. package/dist/index-b7612310.js +333 -0
  202. package/dist/index-babf632c.js +332 -0
  203. package/dist/index-baf0849c.js +346 -0
  204. package/dist/index-bb65c72e.js +514 -0
  205. package/dist/index-bb84ad8c.js +514 -0
  206. package/dist/index-c1e6e7ba.js +340 -0
  207. package/dist/index-cb4b8e2c.js +341 -0
  208. package/dist/index-d9848a76.js +545 -0
  209. package/dist/index-dc4bbb59.js +332 -0
  210. package/dist/index-dfc0fb0e.js +364 -0
  211. package/dist/index-e27e30cc.js +345 -0
  212. package/dist/index-e8380fcb.js +335 -0
  213. package/dist/index-ea4a8872.js +311 -0
  214. package/dist/index-eb696d64.js +436 -0
  215. package/dist/index-ebd469fd.js +297 -0
  216. package/dist/index-ed48cf75.js +383 -0
  217. package/dist/index-f3092738.js +308 -0
  218. package/dist/index-f41bdf2a.js +238 -0
  219. package/dist/index-f5c25d06.js +458 -0
  220. package/dist/index-f7e0a67b.js +511 -0
  221. package/dist/index-fafae16f.js +337 -0
  222. package/dist/index-ffe656da.js +332 -0
  223. package/dist/index.d.ts +43 -0
  224. package/dist/index.es.js +51 -0
  225. package/dist/isObjectLike-1b8bbac2.js +44 -0
  226. package/dist/jsx-runtime-944c88e2.js +631 -0
  227. package/dist/provider/NoticeProvider.d.ts +41 -0
  228. package/dist/provider/ThemeProvider.d.ts +7 -0
  229. package/dist/provider/useTheme.d.ts +4 -0
  230. package/dist/types/component.d.ts +16 -0
  231. package/dist/types/svg.d.ts +4 -0
  232. package/dist/utils/format.d.ts +7 -0
  233. package/dist/utils/helper.d.ts +7 -0
  234. package/dist/utils/locales.d.ts +1 -0
  235. package/dist/utils/utils.d.ts +2 -0
  236. package/dist/utils-7e50508b.js +2304 -0
  237. package/dist/vite.svg +1 -0
  238. package/package.json +117 -0
@@ -0,0 +1,545 @@
1
+ import { a as p, b as u, c, d as i } from "./index-51cf15b2.js";
2
+ import "./Badge.es.js";
3
+ import "./jsx-runtime-944c88e2.js";
4
+ import "react";
5
+ import "./index-96a8d125.js";
6
+ import "./utils-7e50508b.js";
7
+ import "./Button.es.js";
8
+ import "./isObjectLike-1b8bbac2.js";
9
+ import "./Dialog.es.js";
10
+ import "react-dom";
11
+ import "./close-c67ec245.js";
12
+ import "./Drawer.es.js";
13
+ import "./Slider.es.js";
14
+ import "./Divider.es.js";
15
+ var m = {
16
+ lessThanXSeconds: {
17
+ one: {
18
+ regular: "méně než sekunda",
19
+ past: "před méně než sekundou",
20
+ future: "za méně než sekundu"
21
+ },
22
+ few: {
23
+ regular: "méně než {{count}} sekundy",
24
+ past: "před méně než {{count}} sekundami",
25
+ future: "za méně než {{count}} sekundy"
26
+ },
27
+ many: {
28
+ regular: "méně než {{count}} sekund",
29
+ past: "před méně než {{count}} sekundami",
30
+ future: "za méně než {{count}} sekund"
31
+ }
32
+ },
33
+ xSeconds: {
34
+ one: {
35
+ regular: "sekunda",
36
+ past: "před sekundou",
37
+ future: "za sekundu"
38
+ },
39
+ few: {
40
+ regular: "{{count}} sekundy",
41
+ past: "před {{count}} sekundami",
42
+ future: "za {{count}} sekundy"
43
+ },
44
+ many: {
45
+ regular: "{{count}} sekund",
46
+ past: "před {{count}} sekundami",
47
+ future: "za {{count}} sekund"
48
+ }
49
+ },
50
+ halfAMinute: {
51
+ type: "other",
52
+ other: {
53
+ regular: "půl minuty",
54
+ past: "před půl minutou",
55
+ future: "za půl minuty"
56
+ }
57
+ },
58
+ lessThanXMinutes: {
59
+ one: {
60
+ regular: "méně než minuta",
61
+ past: "před méně než minutou",
62
+ future: "za méně než minutu"
63
+ },
64
+ few: {
65
+ regular: "méně než {{count}} minuty",
66
+ past: "před méně než {{count}} minutami",
67
+ future: "za méně než {{count}} minuty"
68
+ },
69
+ many: {
70
+ regular: "méně než {{count}} minut",
71
+ past: "před méně než {{count}} minutami",
72
+ future: "za méně než {{count}} minut"
73
+ }
74
+ },
75
+ xMinutes: {
76
+ one: {
77
+ regular: "minuta",
78
+ past: "před minutou",
79
+ future: "za minutu"
80
+ },
81
+ few: {
82
+ regular: "{{count}} minuty",
83
+ past: "před {{count}} minutami",
84
+ future: "za {{count}} minuty"
85
+ },
86
+ many: {
87
+ regular: "{{count}} minut",
88
+ past: "před {{count}} minutami",
89
+ future: "za {{count}} minut"
90
+ }
91
+ },
92
+ aboutXHours: {
93
+ one: {
94
+ regular: "přibližně hodina",
95
+ past: "přibližně před hodinou",
96
+ future: "přibližně za hodinu"
97
+ },
98
+ few: {
99
+ regular: "přibližně {{count}} hodiny",
100
+ past: "přibližně před {{count}} hodinami",
101
+ future: "přibližně za {{count}} hodiny"
102
+ },
103
+ many: {
104
+ regular: "přibližně {{count}} hodin",
105
+ past: "přibližně před {{count}} hodinami",
106
+ future: "přibližně za {{count}} hodin"
107
+ }
108
+ },
109
+ xHours: {
110
+ one: {
111
+ regular: "hodina",
112
+ past: "před hodinou",
113
+ future: "za hodinu"
114
+ },
115
+ few: {
116
+ regular: "{{count}} hodiny",
117
+ past: "před {{count}} hodinami",
118
+ future: "za {{count}} hodiny"
119
+ },
120
+ many: {
121
+ regular: "{{count}} hodin",
122
+ past: "před {{count}} hodinami",
123
+ future: "za {{count}} hodin"
124
+ }
125
+ },
126
+ xDays: {
127
+ one: {
128
+ regular: "den",
129
+ past: "před dnem",
130
+ future: "za den"
131
+ },
132
+ few: {
133
+ regular: "{{count}} dny",
134
+ past: "před {{count}} dny",
135
+ future: "za {{count}} dny"
136
+ },
137
+ many: {
138
+ regular: "{{count}} dní",
139
+ past: "před {{count}} dny",
140
+ future: "za {{count}} dní"
141
+ }
142
+ },
143
+ aboutXWeeks: {
144
+ one: {
145
+ regular: "přibližně týden",
146
+ past: "přibližně před týdnem",
147
+ future: "přibližně za týden"
148
+ },
149
+ few: {
150
+ regular: "přibližně {{count}} týdny",
151
+ past: "přibližně před {{count}} týdny",
152
+ future: "přibližně za {{count}} týdny"
153
+ },
154
+ many: {
155
+ regular: "přibližně {{count}} týdnů",
156
+ past: "přibližně před {{count}} týdny",
157
+ future: "přibližně za {{count}} týdnů"
158
+ }
159
+ },
160
+ xWeeks: {
161
+ one: {
162
+ regular: "týden",
163
+ past: "před týdnem",
164
+ future: "za týden"
165
+ },
166
+ few: {
167
+ regular: "{{count}} týdny",
168
+ past: "před {{count}} týdny",
169
+ future: "za {{count}} týdny"
170
+ },
171
+ many: {
172
+ regular: "{{count}} týdnů",
173
+ past: "před {{count}} týdny",
174
+ future: "za {{count}} týdnů"
175
+ }
176
+ },
177
+ aboutXMonths: {
178
+ one: {
179
+ regular: "přibližně měsíc",
180
+ past: "přibližně před měsícem",
181
+ future: "přibližně za měsíc"
182
+ },
183
+ few: {
184
+ regular: "přibližně {{count}} měsíce",
185
+ past: "přibližně před {{count}} měsíci",
186
+ future: "přibližně za {{count}} měsíce"
187
+ },
188
+ many: {
189
+ regular: "přibližně {{count}} měsíců",
190
+ past: "přibližně před {{count}} měsíci",
191
+ future: "přibližně za {{count}} měsíců"
192
+ }
193
+ },
194
+ xMonths: {
195
+ one: {
196
+ regular: "měsíc",
197
+ past: "před měsícem",
198
+ future: "za měsíc"
199
+ },
200
+ few: {
201
+ regular: "{{count}} měsíce",
202
+ past: "před {{count}} měsíci",
203
+ future: "za {{count}} měsíce"
204
+ },
205
+ many: {
206
+ regular: "{{count}} měsíců",
207
+ past: "před {{count}} měsíci",
208
+ future: "za {{count}} měsíců"
209
+ }
210
+ },
211
+ aboutXYears: {
212
+ one: {
213
+ regular: "přibližně rok",
214
+ past: "přibližně před rokem",
215
+ future: "přibližně za rok"
216
+ },
217
+ few: {
218
+ regular: "přibližně {{count}} roky",
219
+ past: "přibližně před {{count}} roky",
220
+ future: "přibližně za {{count}} roky"
221
+ },
222
+ many: {
223
+ regular: "přibližně {{count}} roků",
224
+ past: "přibližně před {{count}} roky",
225
+ future: "přibližně za {{count}} roků"
226
+ }
227
+ },
228
+ xYears: {
229
+ one: {
230
+ regular: "rok",
231
+ past: "před rokem",
232
+ future: "za rok"
233
+ },
234
+ few: {
235
+ regular: "{{count}} roky",
236
+ past: "před {{count}} roky",
237
+ future: "za {{count}} roky"
238
+ },
239
+ many: {
240
+ regular: "{{count}} roků",
241
+ past: "před {{count}} roky",
242
+ future: "za {{count}} roků"
243
+ }
244
+ },
245
+ overXYears: {
246
+ one: {
247
+ regular: "více než rok",
248
+ past: "před více než rokem",
249
+ future: "za více než rok"
250
+ },
251
+ few: {
252
+ regular: "více než {{count}} roky",
253
+ past: "před více než {{count}} roky",
254
+ future: "za více než {{count}} roky"
255
+ },
256
+ many: {
257
+ regular: "více než {{count}} roků",
258
+ past: "před více než {{count}} roky",
259
+ future: "za více než {{count}} roků"
260
+ }
261
+ },
262
+ almostXYears: {
263
+ one: {
264
+ regular: "skoro rok",
265
+ past: "skoro před rokem",
266
+ future: "skoro za rok"
267
+ },
268
+ few: {
269
+ regular: "skoro {{count}} roky",
270
+ past: "skoro před {{count}} roky",
271
+ future: "skoro za {{count}} roky"
272
+ },
273
+ many: {
274
+ regular: "skoro {{count}} roků",
275
+ past: "skoro před {{count}} roky",
276
+ future: "skoro za {{count}} roků"
277
+ }
278
+ }
279
+ }, v = function(e, t, n) {
280
+ var a, o = m[e];
281
+ o.type === "other" ? a = o.other : t === 1 ? a = o.one : t > 1 && t < 5 ? a = o.few : a = o.many;
282
+ var l = (n == null ? void 0 : n.addSuffix) === !0, s = n == null ? void 0 : n.comparison, d;
283
+ return l && s === -1 ? d = a.past : l && s === 1 ? d = a.future : d = a.regular, d.replace("{{count}}", String(t));
284
+ };
285
+ const f = v;
286
+ var y = {
287
+ full: "EEEE, d. MMMM yyyy",
288
+ long: "d. MMMM yyyy",
289
+ medium: "d. M. yyyy",
290
+ short: "dd.MM.yyyy"
291
+ }, b = {
292
+ full: "H:mm:ss zzzz",
293
+ long: "H:mm:ss z",
294
+ medium: "H:mm:ss",
295
+ short: "H:mm"
296
+ }, h = {
297
+ full: "{{date}} 'v' {{time}}",
298
+ long: "{{date}} 'v' {{time}}",
299
+ medium: "{{date}}, {{time}}",
300
+ short: "{{date}}, {{time}}"
301
+ }, k = {
302
+ date: p({
303
+ formats: y,
304
+ defaultWidth: "full"
305
+ }),
306
+ time: p({
307
+ formats: b,
308
+ defaultWidth: "full"
309
+ }),
310
+ dateTime: p({
311
+ formats: h,
312
+ defaultWidth: "full"
313
+ })
314
+ };
315
+ const g = k;
316
+ var z = ["neděli", "pondělí", "úterý", "středu", "čtvrtek", "pátek", "sobotu"], w = {
317
+ lastWeek: "'poslední' eeee 've' p",
318
+ yesterday: "'včera v' p",
319
+ today: "'dnes v' p",
320
+ tomorrow: "'zítra v' p",
321
+ nextWeek: function(e) {
322
+ var t = e.getUTCDay();
323
+ return "'v " + z[t] + " o' p";
324
+ },
325
+ other: "P"
326
+ }, P = function(e, t) {
327
+ var n = w[e];
328
+ return typeof n == "function" ? n(t) : n;
329
+ };
330
+ const W = P;
331
+ var M = {
332
+ narrow: ["př. n. l.", "n. l."],
333
+ abbreviated: ["př. n. l.", "n. l."],
334
+ wide: ["před naším letopočtem", "našeho letopočtu"]
335
+ }, D = {
336
+ narrow: ["1", "2", "3", "4"],
337
+ abbreviated: ["1. čtvrtletí", "2. čtvrtletí", "3. čtvrtletí", "4. čtvrtletí"],
338
+ wide: ["1. čtvrtletí", "2. čtvrtletí", "3. čtvrtletí", "4. čtvrtletí"]
339
+ }, x = {
340
+ narrow: ["L", "Ú", "B", "D", "K", "Č", "Č", "S", "Z", "Ř", "L", "P"],
341
+ abbreviated: ["led", "úno", "bře", "dub", "kvě", "čvn", "čvc", "srp", "zář", "říj", "lis", "pro"],
342
+ wide: ["leden", "únor", "březen", "duben", "květen", "červen", "červenec", "srpen", "září", "říjen", "listopad", "prosinec"]
343
+ }, L = {
344
+ narrow: ["L", "Ú", "B", "D", "K", "Č", "Č", "S", "Z", "Ř", "L", "P"],
345
+ abbreviated: ["led", "úno", "bře", "dub", "kvě", "čvn", "čvc", "srp", "zář", "říj", "lis", "pro"],
346
+ wide: ["ledna", "února", "března", "dubna", "května", "června", "července", "srpna", "září", "října", "listopadu", "prosince"]
347
+ }, F = {
348
+ narrow: ["ne", "po", "út", "st", "čt", "pá", "so"],
349
+ short: ["ne", "po", "út", "st", "čt", "pá", "so"],
350
+ abbreviated: ["ned", "pon", "úte", "stř", "čtv", "pát", "sob"],
351
+ wide: ["neděle", "pondělí", "úterý", "středa", "čtvrtek", "pátek", "sobota"]
352
+ }, V = {
353
+ narrow: {
354
+ am: "dop.",
355
+ pm: "odp.",
356
+ midnight: "půlnoc",
357
+ noon: "poledne",
358
+ morning: "ráno",
359
+ afternoon: "odpoledne",
360
+ evening: "večer",
361
+ night: "noc"
362
+ },
363
+ abbreviated: {
364
+ am: "dop.",
365
+ pm: "odp.",
366
+ midnight: "půlnoc",
367
+ noon: "poledne",
368
+ morning: "ráno",
369
+ afternoon: "odpoledne",
370
+ evening: "večer",
371
+ night: "noc"
372
+ },
373
+ wide: {
374
+ am: "dopoledne",
375
+ pm: "odpoledne",
376
+ midnight: "půlnoc",
377
+ noon: "poledne",
378
+ morning: "ráno",
379
+ afternoon: "odpoledne",
380
+ evening: "večer",
381
+ night: "noc"
382
+ }
383
+ }, j = {
384
+ narrow: {
385
+ am: "dop.",
386
+ pm: "odp.",
387
+ midnight: "půlnoc",
388
+ noon: "poledne",
389
+ morning: "ráno",
390
+ afternoon: "odpoledne",
391
+ evening: "večer",
392
+ night: "noc"
393
+ },
394
+ abbreviated: {
395
+ am: "dop.",
396
+ pm: "odp.",
397
+ midnight: "půlnoc",
398
+ noon: "poledne",
399
+ morning: "ráno",
400
+ afternoon: "odpoledne",
401
+ evening: "večer",
402
+ night: "noc"
403
+ },
404
+ wide: {
405
+ am: "dopoledne",
406
+ pm: "odpoledne",
407
+ midnight: "půlnoc",
408
+ noon: "poledne",
409
+ morning: "ráno",
410
+ afternoon: "odpoledne",
411
+ evening: "večer",
412
+ night: "noc"
413
+ }
414
+ }, C = function(e, t) {
415
+ var n = Number(e);
416
+ return n + ".";
417
+ }, K = {
418
+ ordinalNumber: C,
419
+ era: u({
420
+ values: M,
421
+ defaultWidth: "wide"
422
+ }),
423
+ quarter: u({
424
+ values: D,
425
+ defaultWidth: "wide",
426
+ argumentCallback: function(e) {
427
+ return e - 1;
428
+ }
429
+ }),
430
+ month: u({
431
+ values: x,
432
+ defaultWidth: "wide",
433
+ formattingValues: L,
434
+ defaultFormattingWidth: "wide"
435
+ }),
436
+ day: u({
437
+ values: F,
438
+ defaultWidth: "wide"
439
+ }),
440
+ dayPeriod: u({
441
+ values: V,
442
+ defaultWidth: "wide",
443
+ formattingValues: j,
444
+ defaultFormattingWidth: "wide"
445
+ })
446
+ };
447
+ const X = K;
448
+ var E = /^(\d+)\.?/i, N = /\d+/i, R = {
449
+ narrow: /^(p[řr](\.|ed) Kr\.|p[řr](\.|ed) n\. l\.|po Kr\.|n\. l\.)/i,
450
+ abbreviated: /^(p[řr](\.|ed) Kr\.|p[řr](\.|ed) n\. l\.|po Kr\.|n\. l\.)/i,
451
+ wide: /^(p[řr](\.|ed) Kristem|p[řr](\.|ed) na[šs][íi]m letopo[čc]tem|po Kristu|na[šs]eho letopo[čc]tu)/i
452
+ }, S = {
453
+ any: [/^p[řr]/i, /^(po|n)/i]
454
+ }, H = {
455
+ narrow: /^[1234]/i,
456
+ abbreviated: /^[1234]\. [čc]tvrtlet[íi]/i,
457
+ wide: /^[1234]\. [čc]tvrtlet[íi]/i
458
+ }, T = {
459
+ any: [/1/i, /2/i, /3/i, /4/i]
460
+ }, $ = {
461
+ narrow: /^[lúubdkčcszřrlp]/i,
462
+ abbreviated: /^(led|[úu]no|b[řr]e|dub|kv[ěe]|[čc]vn|[čc]vc|srp|z[áa][řr]|[řr][íi]j|lis|pro)/i,
463
+ wide: /^(leden|ledna|[úu]nora?|b[řr]ezen|b[řr]ezna|duben|dubna|kv[ěe]ten|kv[ěe]tna|[čc]erven(ec|ce)?|[čc]ervna|srpen|srpna|z[áa][řr][íi]|[řr][íi]jen|[řr][íi]jna|listopad(a|u)?|prosinec|prosince)/i
464
+ }, Y = {
465
+ narrow: [/^l/i, /^[úu]/i, /^b/i, /^d/i, /^k/i, /^[čc]/i, /^[čc]/i, /^s/i, /^z/i, /^[řr]/i, /^l/i, /^p/i],
466
+ any: [/^led/i, /^[úu]n/i, /^b[řr]e/i, /^dub/i, /^kv[ěe]/i, /^[čc]vn|[čc]erven(?!\w)|[čc]ervna/i, /^[čc]vc|[čc]erven(ec|ce)/i, /^srp/i, /^z[áa][řr]/i, /^[řr][íi]j/i, /^lis/i, /^pro/i]
467
+ }, q = {
468
+ narrow: /^[npuúsčps]/i,
469
+ short: /^(ne|po|[úu]t|st|[čc]t|p[áa]|so)/i,
470
+ abbreviated: /^(ned|pon|[úu]te|st[rř]|[čc]tv|p[áa]t|sob)/i,
471
+ wide: /^(ned[ěe]le|pond[ěe]l[íi]|[úu]ter[ýy]|st[řr]eda|[čc]tvrtek|p[áa]tek|sobota)/i
472
+ }, O = {
473
+ narrow: [/^n/i, /^p/i, /^[úu]/i, /^s/i, /^[čc]/i, /^p/i, /^s/i],
474
+ any: [/^ne/i, /^po/i, /^[úu]t/i, /^st/i, /^[čc]t/i, /^p[áa]/i, /^so/i]
475
+ }, B = {
476
+ any: /^dopoledne|dop\.?|odpoledne|odp\.?|p[ůu]lnoc|poledne|r[áa]no|odpoledne|ve[čc]er|(v )?noci?/i
477
+ }, Q = {
478
+ any: {
479
+ am: /^dop/i,
480
+ pm: /^odp/i,
481
+ midnight: /^p[ůu]lnoc/i,
482
+ noon: /^poledne/i,
483
+ morning: /r[áa]no/i,
484
+ afternoon: /odpoledne/i,
485
+ evening: /ve[čc]er/i,
486
+ night: /noc/i
487
+ }
488
+ }, Z = {
489
+ ordinalNumber: c({
490
+ matchPattern: E,
491
+ parsePattern: N,
492
+ valueCallback: function(e) {
493
+ return parseInt(e, 10);
494
+ }
495
+ }),
496
+ era: i({
497
+ matchPatterns: R,
498
+ defaultMatchWidth: "wide",
499
+ parsePatterns: S,
500
+ defaultParseWidth: "any"
501
+ }),
502
+ quarter: i({
503
+ matchPatterns: H,
504
+ defaultMatchWidth: "wide",
505
+ parsePatterns: T,
506
+ defaultParseWidth: "any",
507
+ valueCallback: function(e) {
508
+ return e + 1;
509
+ }
510
+ }),
511
+ month: i({
512
+ matchPatterns: $,
513
+ defaultMatchWidth: "wide",
514
+ parsePatterns: Y,
515
+ defaultParseWidth: "any"
516
+ }),
517
+ day: i({
518
+ matchPatterns: q,
519
+ defaultMatchWidth: "wide",
520
+ parsePatterns: O,
521
+ defaultParseWidth: "any"
522
+ }),
523
+ dayPeriod: i({
524
+ matchPatterns: B,
525
+ defaultMatchWidth: "any",
526
+ parsePatterns: Q,
527
+ defaultParseWidth: "any"
528
+ })
529
+ };
530
+ const A = Z;
531
+ var pe = {
532
+ code: "cs",
533
+ formatDistance: f,
534
+ formatLong: g,
535
+ formatRelative: W,
536
+ localize: X,
537
+ match: A,
538
+ options: {
539
+ weekStartsOn: 1,
540
+ firstWeekContainsDate: 4
541
+ }
542
+ };
543
+ export {
544
+ pe as default
545
+ };