@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,332 @@
1
+ import { a as s, b as r, c as u, d as n } 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 d = {
16
+ lessThanXSeconds: {
17
+ one: "mai puțin de o secundă",
18
+ other: "mai puțin de {{count}} secunde"
19
+ },
20
+ xSeconds: {
21
+ one: "1 secundă",
22
+ other: "{{count}} secunde"
23
+ },
24
+ halfAMinute: "jumătate de minut",
25
+ lessThanXMinutes: {
26
+ one: "mai puțin de un minut",
27
+ other: "mai puțin de {{count}} minute"
28
+ },
29
+ xMinutes: {
30
+ one: "1 minut",
31
+ other: "{{count}} minute"
32
+ },
33
+ aboutXHours: {
34
+ one: "circa 1 oră",
35
+ other: "circa {{count}} ore"
36
+ },
37
+ xHours: {
38
+ one: "1 oră",
39
+ other: "{{count}} ore"
40
+ },
41
+ xDays: {
42
+ one: "1 zi",
43
+ other: "{{count}} zile"
44
+ },
45
+ aboutXWeeks: {
46
+ one: "circa o săptămână",
47
+ other: "circa {{count}} săptămâni"
48
+ },
49
+ xWeeks: {
50
+ one: "1 săptămână",
51
+ other: "{{count}} săptămâni"
52
+ },
53
+ aboutXMonths: {
54
+ one: "circa 1 lună",
55
+ other: "circa {{count}} luni"
56
+ },
57
+ xMonths: {
58
+ one: "1 lună",
59
+ other: "{{count}} luni"
60
+ },
61
+ aboutXYears: {
62
+ one: "circa 1 an",
63
+ other: "circa {{count}} ani"
64
+ },
65
+ xYears: {
66
+ one: "1 an",
67
+ other: "{{count}} ani"
68
+ },
69
+ overXYears: {
70
+ one: "peste 1 an",
71
+ other: "peste {{count}} ani"
72
+ },
73
+ almostXYears: {
74
+ one: "aproape 1 an",
75
+ other: "aproape {{count}} ani"
76
+ }
77
+ }, l = function(a, o, i) {
78
+ var e, m = d[a];
79
+ return typeof m == "string" ? e = m : o === 1 ? e = m.one : e = m.other.replace("{{count}}", String(o)), i != null && i.addSuffix ? i.comparison && i.comparison > 0 ? "în " + e : e + " în urmă" : e;
80
+ };
81
+ const c = l;
82
+ var p = {
83
+ full: "EEEE, d MMMM yyyy",
84
+ long: "d MMMM yyyy",
85
+ medium: "d MMM yyyy",
86
+ short: "dd.MM.yyyy"
87
+ }, h = {
88
+ full: "HH:mm:ss zzzz",
89
+ long: "HH:mm:ss z",
90
+ medium: "HH:mm:ss",
91
+ short: "HH:mm"
92
+ }, v = {
93
+ full: "{{date}} 'la' {{time}}",
94
+ long: "{{date}} 'la' {{time}}",
95
+ medium: "{{date}}, {{time}}",
96
+ short: "{{date}}, {{time}}"
97
+ }, f = {
98
+ date: s({
99
+ formats: p,
100
+ defaultWidth: "full"
101
+ }),
102
+ time: s({
103
+ formats: h,
104
+ defaultWidth: "full"
105
+ }),
106
+ dateTime: s({
107
+ formats: v,
108
+ defaultWidth: "full"
109
+ })
110
+ };
111
+ const b = f;
112
+ var g = {
113
+ lastWeek: "eeee 'trecută la' p",
114
+ yesterday: "'ieri la' p",
115
+ today: "'astăzi la' p",
116
+ tomorrow: "'mâine la' p",
117
+ nextWeek: "eeee 'viitoare la' p",
118
+ other: "P"
119
+ }, y = function(a, o, i, e) {
120
+ return g[a];
121
+ };
122
+ const P = y;
123
+ var w = {
124
+ narrow: ["Î", "D"],
125
+ abbreviated: ["Î.d.C.", "D.C."],
126
+ wide: ["Înainte de Cristos", "După Cristos"]
127
+ }, M = {
128
+ narrow: ["1", "2", "3", "4"],
129
+ abbreviated: ["T1", "T2", "T3", "T4"],
130
+ wide: ["primul trimestru", "al doilea trimestru", "al treilea trimestru", "al patrulea trimestru"]
131
+ }, z = {
132
+ narrow: ["I", "F", "M", "A", "M", "I", "I", "A", "S", "O", "N", "D"],
133
+ abbreviated: ["ian", "feb", "mar", "apr", "mai", "iun", "iul", "aug", "sep", "oct", "noi", "dec"],
134
+ wide: ["ianuarie", "februarie", "martie", "aprilie", "mai", "iunie", "iulie", "august", "septembrie", "octombrie", "noiembrie", "decembrie"]
135
+ }, W = {
136
+ narrow: ["d", "l", "m", "m", "j", "v", "s"],
137
+ short: ["du", "lu", "ma", "mi", "jo", "vi", "sâ"],
138
+ abbreviated: ["dum", "lun", "mar", "mie", "joi", "vin", "sâm"],
139
+ wide: ["duminică", "luni", "marți", "miercuri", "joi", "vineri", "sâmbătă"]
140
+ }, D = {
141
+ narrow: {
142
+ am: "a",
143
+ pm: "p",
144
+ midnight: "mn",
145
+ noon: "ami",
146
+ morning: "dim",
147
+ afternoon: "da",
148
+ evening: "s",
149
+ night: "n"
150
+ },
151
+ abbreviated: {
152
+ am: "AM",
153
+ pm: "PM",
154
+ midnight: "miezul nopții",
155
+ noon: "amiază",
156
+ morning: "dimineață",
157
+ afternoon: "după-amiază",
158
+ evening: "seară",
159
+ night: "noapte"
160
+ },
161
+ wide: {
162
+ am: "a.m.",
163
+ pm: "p.m.",
164
+ midnight: "miezul nopții",
165
+ noon: "amiază",
166
+ morning: "dimineață",
167
+ afternoon: "după-amiază",
168
+ evening: "seară",
169
+ night: "noapte"
170
+ }
171
+ }, C = {
172
+ narrow: {
173
+ am: "a",
174
+ pm: "p",
175
+ midnight: "mn",
176
+ noon: "amiază",
177
+ morning: "dimineață",
178
+ afternoon: "după-amiază",
179
+ evening: "seară",
180
+ night: "noapte"
181
+ },
182
+ abbreviated: {
183
+ am: "AM",
184
+ pm: "PM",
185
+ midnight: "miezul nopții",
186
+ noon: "amiază",
187
+ morning: "dimineață",
188
+ afternoon: "după-amiază",
189
+ evening: "seară",
190
+ night: "noapte"
191
+ },
192
+ wide: {
193
+ am: "a.m.",
194
+ pm: "p.m.",
195
+ midnight: "miezul nopții",
196
+ noon: "amiază",
197
+ morning: "dimineață",
198
+ afternoon: "după-amiază",
199
+ evening: "seară",
200
+ night: "noapte"
201
+ }
202
+ }, k = function(a, o) {
203
+ return String(a);
204
+ }, j = {
205
+ ordinalNumber: k,
206
+ era: r({
207
+ values: w,
208
+ defaultWidth: "wide"
209
+ }),
210
+ quarter: r({
211
+ values: M,
212
+ defaultWidth: "wide",
213
+ argumentCallback: function(a) {
214
+ return a - 1;
215
+ }
216
+ }),
217
+ month: r({
218
+ values: z,
219
+ defaultWidth: "wide"
220
+ }),
221
+ day: r({
222
+ values: W,
223
+ defaultWidth: "wide"
224
+ }),
225
+ dayPeriod: r({
226
+ values: D,
227
+ defaultWidth: "wide",
228
+ formattingValues: C,
229
+ defaultFormattingWidth: "wide"
230
+ })
231
+ };
232
+ const x = j;
233
+ var F = /^(\d+)?/i, H = /\d+/i, T = {
234
+ narrow: /^(Î|D)/i,
235
+ abbreviated: /^(Î\.?\s?d\.?\s?C\.?|Î\.?\s?e\.?\s?n\.?|D\.?\s?C\.?|e\.?\s?n\.?)/i,
236
+ wide: /^(Înainte de Cristos|Înaintea erei noastre|După Cristos|Era noastră)/i
237
+ }, E = {
238
+ any: [/^ÎC/i, /^DC/i],
239
+ wide: [/^(Înainte de Cristos|Înaintea erei noastre)/i, /^(După Cristos|Era noastră)/i]
240
+ }, V = {
241
+ narrow: /^[1234]/i,
242
+ abbreviated: /^T[1234]/i,
243
+ wide: /^trimestrul [1234]/i
244
+ }, X = {
245
+ any: [/1/i, /2/i, /3/i, /4/i]
246
+ }, L = {
247
+ narrow: /^[ifmaasond]/i,
248
+ abbreviated: /^(ian|feb|mar|apr|mai|iun|iul|aug|sep|oct|noi|dec)/i,
249
+ wide: /^(ianuarie|februarie|martie|aprilie|mai|iunie|iulie|august|septembrie|octombrie|noiembrie|decembrie)/i
250
+ }, N = {
251
+ narrow: [/^i/i, /^f/i, /^m/i, /^a/i, /^m/i, /^i/i, /^i/i, /^a/i, /^s/i, /^o/i, /^n/i, /^d/i],
252
+ any: [/^ia/i, /^f/i, /^mar/i, /^ap/i, /^mai/i, /^iun/i, /^iul/i, /^au/i, /^s/i, /^o/i, /^n/i, /^d/i]
253
+ }, S = {
254
+ narrow: /^[dlmjvs]/i,
255
+ short: /^(d|l|ma|mi|j|v|s)/i,
256
+ abbreviated: /^(dum|lun|mar|mie|jo|vi|sâ)/i,
257
+ wide: /^(duminica|luni|marţi|miercuri|joi|vineri|sâmbătă)/i
258
+ }, A = {
259
+ narrow: [/^d/i, /^l/i, /^m/i, /^m/i, /^j/i, /^v/i, /^s/i],
260
+ any: [/^d/i, /^l/i, /^ma/i, /^mi/i, /^j/i, /^v/i, /^s/i]
261
+ }, R = {
262
+ narrow: /^(a|p|mn|a|(dimineaţa|după-amiaza|seara|noaptea))/i,
263
+ any: /^([ap]\.?\s?m\.?|miezul nopții|amiaza|(dimineaţa|după-amiaza|seara|noaptea))/i
264
+ }, $ = {
265
+ any: {
266
+ am: /^a/i,
267
+ pm: /^p/i,
268
+ midnight: /^mn/i,
269
+ noon: /amiaza/i,
270
+ morning: /dimineaţa/i,
271
+ afternoon: /după-amiaza/i,
272
+ evening: /seara/i,
273
+ night: /noaptea/i
274
+ }
275
+ }, I = {
276
+ ordinalNumber: u({
277
+ matchPattern: F,
278
+ parsePattern: H,
279
+ valueCallback: function(a) {
280
+ return parseInt(a, 10);
281
+ }
282
+ }),
283
+ era: n({
284
+ matchPatterns: T,
285
+ defaultMatchWidth: "wide",
286
+ parsePatterns: E,
287
+ defaultParseWidth: "any"
288
+ }),
289
+ quarter: n({
290
+ matchPatterns: V,
291
+ defaultMatchWidth: "wide",
292
+ parsePatterns: X,
293
+ defaultParseWidth: "any",
294
+ valueCallback: function(a) {
295
+ return a + 1;
296
+ }
297
+ }),
298
+ month: n({
299
+ matchPatterns: L,
300
+ defaultMatchWidth: "wide",
301
+ parsePatterns: N,
302
+ defaultParseWidth: "any"
303
+ }),
304
+ day: n({
305
+ matchPatterns: S,
306
+ defaultMatchWidth: "wide",
307
+ parsePatterns: A,
308
+ defaultParseWidth: "any"
309
+ }),
310
+ dayPeriod: n({
311
+ matchPatterns: R,
312
+ defaultMatchWidth: "any",
313
+ parsePatterns: $,
314
+ defaultParseWidth: "any"
315
+ })
316
+ };
317
+ const O = I;
318
+ var ra = {
319
+ code: "ro",
320
+ formatDistance: c,
321
+ formatLong: b,
322
+ formatRelative: P,
323
+ localize: x,
324
+ match: O,
325
+ options: {
326
+ weekStartsOn: 1,
327
+ firstWeekContainsDate: 1
328
+ }
329
+ };
330
+ export {
331
+ ra as default
332
+ };
@@ -0,0 +1,332 @@
1
+ import { a as s, b as i, c as d, d as o } 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 u = {
16
+ lessThanXSeconds: {
17
+ one: "më pak se një sekondë",
18
+ other: "më pak se {{count}} sekonda"
19
+ },
20
+ xSeconds: {
21
+ one: "1 sekondë",
22
+ other: "{{count}} sekonda"
23
+ },
24
+ halfAMinute: "gjysëm minuti",
25
+ lessThanXMinutes: {
26
+ one: "më pak se një minute",
27
+ other: "më pak se {{count}} minuta"
28
+ },
29
+ xMinutes: {
30
+ one: "1 minutë",
31
+ other: "{{count}} minuta"
32
+ },
33
+ aboutXHours: {
34
+ one: "rreth 1 orë",
35
+ other: "rreth {{count}} orë"
36
+ },
37
+ xHours: {
38
+ one: "1 orë",
39
+ other: "{{count}} orë"
40
+ },
41
+ xDays: {
42
+ one: "1 ditë",
43
+ other: "{{count}} ditë"
44
+ },
45
+ aboutXWeeks: {
46
+ one: "rreth 1 javë",
47
+ other: "rreth {{count}} javë"
48
+ },
49
+ xWeeks: {
50
+ one: "1 javë",
51
+ other: "{{count}} javë"
52
+ },
53
+ aboutXMonths: {
54
+ one: "rreth 1 muaj",
55
+ other: "rreth {{count}} muaj"
56
+ },
57
+ xMonths: {
58
+ one: "1 muaj",
59
+ other: "{{count}} muaj"
60
+ },
61
+ aboutXYears: {
62
+ one: "rreth 1 vit",
63
+ other: "rreth {{count}} vite"
64
+ },
65
+ xYears: {
66
+ one: "1 vit",
67
+ other: "{{count}} vite"
68
+ },
69
+ overXYears: {
70
+ one: "mbi 1 vit",
71
+ other: "mbi {{count}} vite"
72
+ },
73
+ almostXYears: {
74
+ one: "pothuajse 1 vit",
75
+ other: "pothuajse {{count}} vite"
76
+ }
77
+ }, h = function(t, a, e) {
78
+ var r, m = u[t];
79
+ return typeof m == "string" ? r = m : a === 1 ? r = m.one : r = m.other.replace("{{count}}", String(a)), e != null && e.addSuffix ? e.comparison && e.comparison > 0 ? "në " + r : r + " më parë" : r;
80
+ };
81
+ const l = h;
82
+ var v = {
83
+ full: "EEEE, MMMM do, y",
84
+ long: "MMMM do, y",
85
+ medium: "MMM d, y",
86
+ short: "MM/dd/yyyy"
87
+ }, c = {
88
+ full: "h:mm:ss a zzzz",
89
+ long: "h:mm:ss a z",
90
+ medium: "h:mm:ss a",
91
+ short: "h:mm a"
92
+ }, f = {
93
+ full: "{{date}} 'në' {{time}}",
94
+ long: "{{date}} 'në' {{time}}",
95
+ medium: "{{date}}, {{time}}",
96
+ short: "{{date}}, {{time}}"
97
+ }, b = {
98
+ date: s({
99
+ formats: v,
100
+ defaultWidth: "full"
101
+ }),
102
+ time: s({
103
+ formats: c,
104
+ defaultWidth: "full"
105
+ }),
106
+ dateTime: s({
107
+ formats: f,
108
+ defaultWidth: "full"
109
+ })
110
+ };
111
+ const p = b;
112
+ var g = {
113
+ lastWeek: "'të' eeee 'e shkuar në' p",
114
+ yesterday: "'dje në' p",
115
+ today: "'sot në' p",
116
+ tomorrow: "'nesër në' p",
117
+ nextWeek: "eeee 'at' p",
118
+ other: "P"
119
+ }, j = function(t, a, e, r) {
120
+ return g[t];
121
+ };
122
+ const P = j;
123
+ var M = {
124
+ narrow: ["P", "M"],
125
+ abbreviated: ["PK", "MK"],
126
+ wide: ["Para Krishtit", "Mbas Krishtit"]
127
+ }, k = {
128
+ narrow: ["1", "2", "3", "4"],
129
+ abbreviated: ["Q1", "Q2", "Q3", "Q4"],
130
+ wide: ["4-mujori I", "4-mujori II", "4-mujori III", "4-mujori IV"]
131
+ }, y = {
132
+ narrow: ["J", "S", "M", "P", "M", "Q", "K", "G", "S", "T", "N", "D"],
133
+ abbreviated: ["Jan", "Shk", "Mar", "Pri", "Maj", "Qer", "Kor", "Gus", "Sht", "Tet", "Nën", "Dhj"],
134
+ wide: ["Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor"]
135
+ }, w = {
136
+ narrow: ["D", "H", "M", "M", "E", "P", "S"],
137
+ short: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sh"],
138
+ abbreviated: ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Sht"],
139
+ wide: ["Dielë", "Hënë", "Martë", "Mërkurë", "Enjte", "Premte", "Shtunë"]
140
+ }, D = {
141
+ narrow: {
142
+ am: "p",
143
+ pm: "m",
144
+ midnight: "m",
145
+ noon: "d",
146
+ morning: "mëngjes",
147
+ afternoon: "dite",
148
+ evening: "mbrëmje",
149
+ night: "natë"
150
+ },
151
+ abbreviated: {
152
+ am: "PD",
153
+ pm: "MD",
154
+ midnight: "mesnëtë",
155
+ noon: "drek",
156
+ morning: "mëngjes",
157
+ afternoon: "mbasdite",
158
+ evening: "mbrëmje",
159
+ night: "natë"
160
+ },
161
+ wide: {
162
+ am: "p.d.",
163
+ pm: "m.d.",
164
+ midnight: "mesnëtë",
165
+ noon: "drek",
166
+ morning: "mëngjes",
167
+ afternoon: "mbasdite",
168
+ evening: "mbrëmje",
169
+ night: "natë"
170
+ }
171
+ }, W = {
172
+ narrow: {
173
+ am: "p",
174
+ pm: "m",
175
+ midnight: "m",
176
+ noon: "d",
177
+ morning: "në mëngjes",
178
+ afternoon: "në mbasdite",
179
+ evening: "në mbrëmje",
180
+ night: "në mesnatë"
181
+ },
182
+ abbreviated: {
183
+ am: "PD",
184
+ pm: "MD",
185
+ midnight: "mesnatë",
186
+ noon: "drek",
187
+ morning: "në mëngjes",
188
+ afternoon: "në mbasdite",
189
+ evening: "në mbrëmje",
190
+ night: "në mesnatë"
191
+ },
192
+ wide: {
193
+ am: "p.d.",
194
+ pm: "m.d.",
195
+ midnight: "mesnatë",
196
+ noon: "drek",
197
+ morning: "në mëngjes",
198
+ afternoon: "në mbasdite",
199
+ evening: "në mbrëmje",
200
+ night: "në mesnatë"
201
+ }
202
+ }, S = function(t, a) {
203
+ var e = Number(t);
204
+ return (a == null ? void 0 : a.unit) === "hour" ? String(e) : e === 1 ? e + "-rë" : e === 4 ? e + "t" : e + "-të";
205
+ }, q = {
206
+ ordinalNumber: S,
207
+ era: i({
208
+ values: M,
209
+ defaultWidth: "wide"
210
+ }),
211
+ quarter: i({
212
+ values: k,
213
+ defaultWidth: "wide",
214
+ argumentCallback: function(t) {
215
+ return t - 1;
216
+ }
217
+ }),
218
+ month: i({
219
+ values: y,
220
+ defaultWidth: "wide"
221
+ }),
222
+ day: i({
223
+ values: w,
224
+ defaultWidth: "wide"
225
+ }),
226
+ dayPeriod: i({
227
+ values: D,
228
+ defaultWidth: "wide",
229
+ formattingValues: W,
230
+ defaultFormattingWidth: "wide"
231
+ })
232
+ };
233
+ const x = q;
234
+ var E = /^(\d+)(-rë|-të|t|)?/i, N = /\d+/i, z = {
235
+ narrow: /^(p|m)/i,
236
+ abbreviated: /^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,
237
+ wide: /^(para krishtit|mbas krishtit)/i
238
+ }, F = {
239
+ any: [/^b/i, /^(p|m)/i]
240
+ }, Q = {
241
+ narrow: /^[1234]/i,
242
+ abbreviated: /^q[1234]/i,
243
+ wide: /^[1234]-mujori (i{1,3}|iv)/i
244
+ }, V = {
245
+ any: [/1/i, /2/i, /3/i, /4/i]
246
+ }, I = {
247
+ narrow: /^[jsmpqkftnd]/i,
248
+ abbreviated: /^(jan|shk|mar|pri|maj|qer|kor|gus|sht|tet|nën|dhj)/i,
249
+ wide: /^(janar|shkurt|mars|prill|maj|qershor|korrik|gusht|shtator|tetor|nëntor|dhjetor)/i
250
+ }, X = {
251
+ narrow: [/^j/i, /^s/i, /^m/i, /^p/i, /^m/i, /^q/i, /^k/i, /^g/i, /^s/i, /^t/i, /^n/i, /^d/i],
252
+ any: [/^ja/i, /^shk/i, /^mar/i, /^pri/i, /^maj/i, /^qer/i, /^kor/i, /^gu/i, /^sht/i, /^tet/i, /^n/i, /^d/i]
253
+ }, C = {
254
+ narrow: /^[dhmeps]/i,
255
+ short: /^(di|hë|ma|më|en|pr|sh)/i,
256
+ abbreviated: /^(die|hën|mar|mër|enj|pre|sht)/i,
257
+ wide: /^(dielë|hënë|martë|mërkurë|enjte|premte|shtunë)/i
258
+ }, K = {
259
+ narrow: [/^d/i, /^h/i, /^m/i, /^m/i, /^e/i, /^p/i, /^s/i],
260
+ any: [/^d/i, /^h/i, /^ma/i, /^më/i, /^e/i, /^p/i, /^s/i]
261
+ }, L = {
262
+ narrow: /^(p|m|me|në (mëngjes|mbasdite|mbrëmje|mesnatë))/i,
263
+ any: /^([pm]\.?\s?d\.?|drek|në (mëngjes|mbasdite|mbrëmje|mesnatë))/i
264
+ }, T = {
265
+ any: {
266
+ am: /^p/i,
267
+ pm: /^m/i,
268
+ midnight: /^me/i,
269
+ noon: /^dr/i,
270
+ morning: /mëngjes/i,
271
+ afternoon: /mbasdite/i,
272
+ evening: /mbrëmje/i,
273
+ night: /natë/i
274
+ }
275
+ }, H = {
276
+ ordinalNumber: d({
277
+ matchPattern: E,
278
+ parsePattern: N,
279
+ valueCallback: function(t) {
280
+ return parseInt(t, 10);
281
+ }
282
+ }),
283
+ era: o({
284
+ matchPatterns: z,
285
+ defaultMatchWidth: "wide",
286
+ parsePatterns: F,
287
+ defaultParseWidth: "any"
288
+ }),
289
+ quarter: o({
290
+ matchPatterns: Q,
291
+ defaultMatchWidth: "wide",
292
+ parsePatterns: V,
293
+ defaultParseWidth: "any",
294
+ valueCallback: function(t) {
295
+ return t + 1;
296
+ }
297
+ }),
298
+ month: o({
299
+ matchPatterns: I,
300
+ defaultMatchWidth: "wide",
301
+ parsePatterns: X,
302
+ defaultParseWidth: "any"
303
+ }),
304
+ day: o({
305
+ matchPatterns: C,
306
+ defaultMatchWidth: "wide",
307
+ parsePatterns: K,
308
+ defaultParseWidth: "any"
309
+ }),
310
+ dayPeriod: o({
311
+ matchPatterns: L,
312
+ defaultMatchWidth: "any",
313
+ parsePatterns: T,
314
+ defaultParseWidth: "any"
315
+ })
316
+ };
317
+ const R = H;
318
+ var ne = {
319
+ code: "sq",
320
+ formatDistance: l,
321
+ formatLong: p,
322
+ formatRelative: P,
323
+ localize: x,
324
+ match: R,
325
+ options: {
326
+ weekStartsOn: 1,
327
+ firstWeekContainsDate: 1
328
+ }
329
+ };
330
+ export {
331
+ ne as default
332
+ };