@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,437 @@
1
+ import { a as d, b as o, c as u, d as r } 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 h = {
16
+ lessThanXSeconds: {
17
+ standalone: {
18
+ one: "సెకను కన్నా తక్కువ",
19
+ other: "{{count}} సెకన్ల కన్నా తక్కువ"
20
+ },
21
+ withPreposition: {
22
+ one: "సెకను",
23
+ other: "{{count}} సెకన్ల"
24
+ }
25
+ },
26
+ xSeconds: {
27
+ standalone: {
28
+ one: "ఒక సెకను",
29
+ // CLDR #1314
30
+ other: "{{count}} సెకన్ల"
31
+ },
32
+ withPreposition: {
33
+ one: "ఒక సెకను",
34
+ other: "{{count}} సెకన్ల"
35
+ }
36
+ },
37
+ halfAMinute: {
38
+ standalone: "అర నిమిషం",
39
+ withPreposition: "అర నిమిషం"
40
+ },
41
+ lessThanXMinutes: {
42
+ standalone: {
43
+ one: "ఒక నిమిషం కన్నా తక్కువ",
44
+ other: "{{count}} నిమిషాల కన్నా తక్కువ"
45
+ },
46
+ withPreposition: {
47
+ one: "ఒక నిమిషం",
48
+ other: "{{count}} నిమిషాల"
49
+ }
50
+ },
51
+ xMinutes: {
52
+ standalone: {
53
+ one: "ఒక నిమిషం",
54
+ // CLDR #1311
55
+ other: "{{count}} నిమిషాలు"
56
+ },
57
+ withPreposition: {
58
+ one: "ఒక నిమిషం",
59
+ // CLDR #1311
60
+ other: "{{count}} నిమిషాల"
61
+ }
62
+ },
63
+ aboutXHours: {
64
+ standalone: {
65
+ one: "సుమారు ఒక గంట",
66
+ other: "సుమారు {{count}} గంటలు"
67
+ },
68
+ withPreposition: {
69
+ one: "సుమారు ఒక గంట",
70
+ other: "సుమారు {{count}} గంటల"
71
+ }
72
+ },
73
+ xHours: {
74
+ standalone: {
75
+ one: "ఒక గంట",
76
+ // CLDR #1308
77
+ other: "{{count}} గంటలు"
78
+ },
79
+ withPreposition: {
80
+ one: "ఒక గంట",
81
+ other: "{{count}} గంటల"
82
+ }
83
+ },
84
+ xDays: {
85
+ standalone: {
86
+ one: "ఒక రోజు",
87
+ // CLDR #1292
88
+ other: "{{count}} రోజులు"
89
+ },
90
+ withPreposition: {
91
+ one: "ఒక రోజు",
92
+ other: "{{count}} రోజుల"
93
+ }
94
+ },
95
+ aboutXWeeks: {
96
+ standalone: {
97
+ one: "సుమారు ఒక వారం",
98
+ other: "సుమారు {{count}} వారాలు"
99
+ },
100
+ withPreposition: {
101
+ one: "సుమారు ఒక వారం",
102
+ other: "సుమారు {{count}} వారాలల"
103
+ }
104
+ },
105
+ xWeeks: {
106
+ standalone: {
107
+ one: "ఒక వారం",
108
+ other: "{{count}} వారాలు"
109
+ },
110
+ withPreposition: {
111
+ one: "ఒక వారం",
112
+ other: "{{count}} వారాలల"
113
+ }
114
+ },
115
+ aboutXMonths: {
116
+ standalone: {
117
+ one: "సుమారు ఒక నెల",
118
+ other: "సుమారు {{count}} నెలలు"
119
+ },
120
+ withPreposition: {
121
+ one: "సుమారు ఒక నెల",
122
+ other: "సుమారు {{count}} నెలల"
123
+ }
124
+ },
125
+ xMonths: {
126
+ standalone: {
127
+ one: "ఒక నెల",
128
+ // CLDR #1281
129
+ other: "{{count}} నెలలు"
130
+ },
131
+ withPreposition: {
132
+ one: "ఒక నెల",
133
+ other: "{{count}} నెలల"
134
+ }
135
+ },
136
+ aboutXYears: {
137
+ standalone: {
138
+ one: "సుమారు ఒక సంవత్సరం",
139
+ other: "సుమారు {{count}} సంవత్సరాలు"
140
+ },
141
+ withPreposition: {
142
+ one: "సుమారు ఒక సంవత్సరం",
143
+ other: "సుమారు {{count}} సంవత్సరాల"
144
+ }
145
+ },
146
+ xYears: {
147
+ standalone: {
148
+ one: "ఒక సంవత్సరం",
149
+ // CLDR #1275
150
+ other: "{{count}} సంవత్సరాలు"
151
+ },
152
+ withPreposition: {
153
+ one: "ఒక సంవత్సరం",
154
+ other: "{{count}} సంవత్సరాల"
155
+ }
156
+ },
157
+ overXYears: {
158
+ standalone: {
159
+ one: "ఒక సంవత్సరం పైగా",
160
+ other: "{{count}} సంవత్సరాలకు పైగా"
161
+ },
162
+ withPreposition: {
163
+ one: "ఒక సంవత్సరం",
164
+ other: "{{count}} సంవత్సరాల"
165
+ }
166
+ },
167
+ almostXYears: {
168
+ standalone: {
169
+ one: "దాదాపు ఒక సంవత్సరం",
170
+ other: "దాదాపు {{count}} సంవత్సరాలు"
171
+ },
172
+ withPreposition: {
173
+ one: "దాదాపు ఒక సంవత్సరం",
174
+ other: "దాదాపు {{count}} సంవత్సరాల"
175
+ }
176
+ }
177
+ }, l = function(t, i, e) {
178
+ var a, s = e != null && e.addSuffix ? h[t].withPreposition : h[t].standalone;
179
+ return typeof s == "string" ? a = s : i === 1 ? a = s.one : a = s.other.replace("{{count}}", String(i)), e != null && e.addSuffix ? e.comparison && e.comparison > 0 ? a + "లో" : a + " క్రితం" : a;
180
+ };
181
+ const m = l;
182
+ var c = {
183
+ full: "d, MMMM y, EEEE",
184
+ long: "d MMMM, y",
185
+ medium: "d MMM, y",
186
+ short: "dd-MM-yy"
187
+ }, f = {
188
+ full: "h:mm:ss a zzzz",
189
+ long: "h:mm:ss a z",
190
+ medium: "h:mm:ss a",
191
+ short: "h:mm a"
192
+ }, v = {
193
+ full: "{{date}} {{time}}'కి'",
194
+ long: "{{date}} {{time}}'కి'",
195
+ medium: "{{date}} {{time}}",
196
+ short: "{{date}} {{time}}"
197
+ }, p = {
198
+ date: d({
199
+ formats: c,
200
+ defaultWidth: "full"
201
+ }),
202
+ time: d({
203
+ formats: f,
204
+ defaultWidth: "full"
205
+ }),
206
+ dateTime: d({
207
+ formats: v,
208
+ defaultWidth: "full"
209
+ })
210
+ };
211
+ const P = p;
212
+ var w = {
213
+ lastWeek: "'గత' eeee p",
214
+ // CLDR #1384
215
+ yesterday: "'నిన్న' p",
216
+ // CLDR #1393
217
+ today: "'ఈ రోజు' p",
218
+ // CLDR #1394
219
+ tomorrow: "'రేపు' p",
220
+ // CLDR #1395
221
+ nextWeek: "'తదుపరి' eeee p",
222
+ // CLDR #1386
223
+ other: "P"
224
+ }, b = function(t, i, e, a) {
225
+ return w[t];
226
+ };
227
+ const g = b;
228
+ var y = {
229
+ narrow: ["క్రీ.పూ.", "క్రీ.శ."],
230
+ abbreviated: ["క్రీ.పూ.", "క్రీ.శ."],
231
+ wide: ["క్రీస్తు పూర్వం", "క్రీస్తుశకం"]
232
+ }, M = {
233
+ narrow: ["1", "2", "3", "4"],
234
+ abbreviated: ["త్రై1", "త్రై2", "త్రై3", "త్రై4"],
235
+ wide: ["1వ త్రైమాసికం", "2వ త్రైమాసికం", "3వ త్రైమాసికం", "4వ త్రైమాసికం"]
236
+ }, W = {
237
+ narrow: ["జ", "ఫి", "మా", "ఏ", "మే", "జూ", "జు", "ఆ", "సె", "అ", "న", "డి"],
238
+ abbreviated: ["జన", "ఫిబ్ర", "మార్చి", "ఏప్రి", "మే", "జూన్", "జులై", "ఆగ", "సెప్టెం", "అక్టో", "నవం", "డిసెం"],
239
+ wide: ["జనవరి", "ఫిబ్రవరి", "మార్చి", "ఏప్రిల్", "మే", "జూన్", "జులై", "ఆగస్టు", "సెప్టెంబర్", "అక్టోబర్", "నవంబర్", "డిసెంబర్"]
240
+ }, D = {
241
+ narrow: ["ఆ", "సో", "మ", "బు", "గు", "శు", "శ"],
242
+ short: ["ఆది", "సోమ", "మంగళ", "బుధ", "గురు", "శుక్ర", "శని"],
243
+ abbreviated: ["ఆది", "సోమ", "మంగళ", "బుధ", "గురు", "శుక్ర", "శని"],
244
+ wide: ["ఆదివారం", "సోమవారం", "మంగళవారం", "బుధవారం", "గురువారం", "శుక్రవారం", "శనివారం"]
245
+ }, k = {
246
+ narrow: {
247
+ am: "పూర్వాహ్నం",
248
+ pm: "అపరాహ్నం",
249
+ midnight: "అర్ధరాత్రి",
250
+ noon: "మిట్టమధ్యాహ్నం",
251
+ morning: "ఉదయం",
252
+ afternoon: "మధ్యాహ్నం",
253
+ evening: "సాయంత్రం",
254
+ night: "రాత్రి"
255
+ },
256
+ abbreviated: {
257
+ am: "పూర్వాహ్నం",
258
+ pm: "అపరాహ్నం",
259
+ midnight: "అర్ధరాత్రి",
260
+ noon: "మిట్టమధ్యాహ్నం",
261
+ morning: "ఉదయం",
262
+ afternoon: "మధ్యాహ్నం",
263
+ evening: "సాయంత్రం",
264
+ night: "రాత్రి"
265
+ },
266
+ wide: {
267
+ am: "పూర్వాహ్నం",
268
+ pm: "అపరాహ్నం",
269
+ midnight: "అర్ధరాత్రి",
270
+ noon: "మిట్టమధ్యాహ్నం",
271
+ morning: "ఉదయం",
272
+ afternoon: "మధ్యాహ్నం",
273
+ evening: "సాయంత్రం",
274
+ night: "రాత్రి"
275
+ }
276
+ }, x = {
277
+ narrow: {
278
+ am: "పూర్వాహ్నం",
279
+ pm: "అపరాహ్నం",
280
+ midnight: "అర్ధరాత్రి",
281
+ noon: "మిట్టమధ్యాహ్నం",
282
+ morning: "ఉదయం",
283
+ afternoon: "మధ్యాహ్నం",
284
+ evening: "సాయంత్రం",
285
+ night: "రాత్రి"
286
+ },
287
+ abbreviated: {
288
+ am: "పూర్వాహ్నం",
289
+ pm: "అపరాహ్నం",
290
+ midnight: "అర్ధరాత్రి",
291
+ noon: "మిట్టమధ్యాహ్నం",
292
+ morning: "ఉదయం",
293
+ afternoon: "మధ్యాహ్నం",
294
+ evening: "సాయంత్రం",
295
+ night: "రాత్రి"
296
+ },
297
+ wide: {
298
+ am: "పూర్వాహ్నం",
299
+ pm: "అపరాహ్నం",
300
+ midnight: "అర్ధరాత్రి",
301
+ noon: "మిట్టమధ్యాహ్నం",
302
+ morning: "ఉదయం",
303
+ afternoon: "మధ్యాహ్నం",
304
+ evening: "సాయంత్రం",
305
+ night: "రాత్రి"
306
+ }
307
+ }, z = function(t, i) {
308
+ var e = Number(t);
309
+ return e + "వ";
310
+ }, F = {
311
+ ordinalNumber: z,
312
+ era: o({
313
+ values: y,
314
+ defaultWidth: "wide"
315
+ }),
316
+ quarter: o({
317
+ values: M,
318
+ defaultWidth: "wide",
319
+ argumentCallback: function(t) {
320
+ return t - 1;
321
+ }
322
+ }),
323
+ month: o({
324
+ values: W,
325
+ defaultWidth: "wide"
326
+ }),
327
+ day: o({
328
+ values: D,
329
+ defaultWidth: "wide"
330
+ }),
331
+ dayPeriod: o({
332
+ values: k,
333
+ defaultWidth: "wide",
334
+ formattingValues: x,
335
+ defaultFormattingWidth: "wide"
336
+ })
337
+ };
338
+ const V = F;
339
+ var X = /^(\d+)(వ)?/i, C = /\d+/i, L = {
340
+ narrow: /^(క్రీ\.పూ\.|క్రీ\.శ\.)/i,
341
+ abbreviated: /^(క్రీ\.?\s?పూ\.?|ప్ర\.?\s?శ\.?\s?పూ\.?|క్రీ\.?\s?శ\.?|సా\.?\s?శ\.?)/i,
342
+ wide: /^(క్రీస్తు పూర్వం|ప్రస్తుత శకానికి పూర్వం|క్రీస్తు శకం|ప్రస్తుత శకం)/i
343
+ }, N = {
344
+ any: [/^(పూ|శ)/i, /^సా/i]
345
+ }, E = {
346
+ narrow: /^[1234]/i,
347
+ abbreviated: /^త్రై[1234]/i,
348
+ wide: /^[1234](వ)? త్రైమాసికం/i
349
+ }, S = {
350
+ any: [/1/i, /2/i, /3/i, /4/i]
351
+ }, R = {
352
+ narrow: /^(జూ|జు|జ|ఫి|మా|ఏ|మే|ఆ|సె|అ|న|డి)/i,
353
+ abbreviated: /^(జన|ఫిబ్ర|మార్చి|ఏప్రి|మే|జూన్|జులై|ఆగ|సెప్|అక్టో|నవ|డిసె)/i,
354
+ wide: /^(జనవరి|ఫిబ్రవరి|మార్చి|ఏప్రిల్|మే|జూన్|జులై|ఆగస్టు|సెప్టెంబర్|అక్టోబర్|నవంబర్|డిసెంబర్)/i
355
+ }, $ = {
356
+ narrow: [/^జ/i, /^ఫి/i, /^మా/i, /^ఏ/i, /^మే/i, /^జూ/i, /^జు/i, /^ఆ/i, /^సె/i, /^అ/i, /^న/i, /^డి/i],
357
+ any: [/^జన/i, /^ఫి/i, /^మా/i, /^ఏ/i, /^మే/i, /^జూన్/i, /^జులై/i, /^ఆగ/i, /^సె/i, /^అ/i, /^న/i, /^డి/i]
358
+ }, T = {
359
+ narrow: /^(ఆ|సో|మ|బు|గు|శు|శ)/i,
360
+ short: /^(ఆది|సోమ|మం|బుధ|గురు|శుక్ర|శని)/i,
361
+ abbreviated: /^(ఆది|సోమ|మం|బుధ|గురు|శుక్ర|శని)/i,
362
+ wide: /^(ఆదివారం|సోమవారం|మంగళవారం|బుధవారం|గురువారం|శుక్రవారం|శనివారం)/i
363
+ }, Y = {
364
+ narrow: [/^ఆ/i, /^సో/i, /^మ/i, /^బు/i, /^గు/i, /^శు/i, /^శ/i],
365
+ any: [/^ఆది/i, /^సోమ/i, /^మం/i, /^బుధ/i, /^గురు/i, /^శుక్ర/i, /^శని/i]
366
+ }, _ = {
367
+ narrow: /^(పూర్వాహ్నం|అపరాహ్నం|అర్ధరాత్రి|మిట్టమధ్యాహ్నం|ఉదయం|మధ్యాహ్నం|సాయంత్రం|రాత్రి)/i,
368
+ any: /^(పూర్వాహ్నం|అపరాహ్నం|అర్ధరాత్రి|మిట్టమధ్యాహ్నం|ఉదయం|మధ్యాహ్నం|సాయంత్రం|రాత్రి)/i
369
+ }, q = {
370
+ any: {
371
+ am: /^పూర్వాహ్నం/i,
372
+ pm: /^అపరాహ్నం/i,
373
+ midnight: /^అర్ధ/i,
374
+ noon: /^మిట్ట/i,
375
+ morning: /ఉదయం/i,
376
+ afternoon: /మధ్యాహ్నం/i,
377
+ evening: /సాయంత్రం/i,
378
+ night: /రాత్రి/i
379
+ }
380
+ }, O = {
381
+ ordinalNumber: u({
382
+ matchPattern: X,
383
+ parsePattern: C,
384
+ valueCallback: function(t) {
385
+ return parseInt(t, 10);
386
+ }
387
+ }),
388
+ era: r({
389
+ matchPatterns: L,
390
+ defaultMatchWidth: "wide",
391
+ parsePatterns: N,
392
+ defaultParseWidth: "any"
393
+ }),
394
+ quarter: r({
395
+ matchPatterns: E,
396
+ defaultMatchWidth: "wide",
397
+ parsePatterns: S,
398
+ defaultParseWidth: "any",
399
+ valueCallback: function(t) {
400
+ return t + 1;
401
+ }
402
+ }),
403
+ month: r({
404
+ matchPatterns: R,
405
+ defaultMatchWidth: "wide",
406
+ parsePatterns: $,
407
+ defaultParseWidth: "any"
408
+ }),
409
+ day: r({
410
+ matchPatterns: T,
411
+ defaultMatchWidth: "wide",
412
+ parsePatterns: Y,
413
+ defaultParseWidth: "any"
414
+ }),
415
+ dayPeriod: r({
416
+ matchPatterns: _,
417
+ defaultMatchWidth: "any",
418
+ parsePatterns: q,
419
+ defaultParseWidth: "any"
420
+ })
421
+ };
422
+ const H = O;
423
+ var ot = {
424
+ code: "te",
425
+ formatDistance: m,
426
+ formatLong: P,
427
+ formatRelative: g,
428
+ localize: V,
429
+ match: H,
430
+ options: {
431
+ weekStartsOn: 0,
432
+ firstWeekContainsDate: 1
433
+ }
434
+ };
435
+ export {
436
+ ot as default
437
+ };