@worldcoin/mini-apps-ui-kit-react 0.0.8 → 1.0.0-canary.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (198) hide show
  1. package/README.md +8 -17
  2. package/dist/components/AlertDialog/AlertDialog.js +94 -0
  3. package/dist/components/AlertDialog/index.d.ts +1 -0
  4. package/dist/components/AlertDialog/index.js +13 -0
  5. package/dist/components/AlertDialog/types.d.ts +172 -0
  6. package/dist/components/AlertDialog/types.js +1 -0
  7. package/dist/components/AlertDialog/use-alert-dialog.d.ts +6 -0
  8. package/dist/components/AlertDialog/use-alert-dialog.js +11 -0
  9. package/dist/components/BottomBar/BottomBar.d.ts +13 -0
  10. package/dist/components/BottomBar/BottomBar.js +21 -0
  11. package/dist/components/BottomBar/index.d.ts +1 -0
  12. package/dist/components/BottomBar/index.js +4 -0
  13. package/dist/components/BulletList/BulletList.d.ts +10 -0
  14. package/dist/components/BulletList/BulletList.js +11 -0
  15. package/dist/components/BulletList/index.d.ts +1 -0
  16. package/dist/components/BulletList/index.js +4 -0
  17. package/dist/components/BulletListItem/BulletListItem.d.ts +7 -0
  18. package/dist/components/BulletListItem/BulletListItem.js +23 -0
  19. package/dist/components/BulletListItem/index.d.ts +1 -0
  20. package/dist/components/BulletListItem/index.js +4 -0
  21. package/dist/components/BulletPoint/BulletPoint.d.ts +6 -0
  22. package/dist/components/BulletPoint/BulletPoint.js +22 -0
  23. package/dist/components/BulletPoint/index.d.ts +1 -0
  24. package/dist/components/BulletPoint/index.js +1 -0
  25. package/dist/components/Button/Button.d.ts +10 -22
  26. package/dist/components/Button/Button.js +41 -73
  27. package/dist/components/Checkbox/Checkbox.d.ts +24 -4
  28. package/dist/components/Checkbox/Checkbox.js +5 -5
  29. package/dist/components/Chip/Chip.d.ts +2 -1
  30. package/dist/components/Chip/Chip.js +14 -8
  31. package/dist/components/ClearButton/Clear.js +14 -14
  32. package/dist/components/ClearButton/ClearButton.js +11 -11
  33. package/dist/components/ColorPicker/ColorPicker.js +14 -14
  34. package/dist/components/CountryDrawer/CountryDrawer.d.ts +12 -0
  35. package/dist/components/CountryDrawer/CountryDrawer.js +63 -0
  36. package/dist/components/CountryDrawer/index.d.ts +1 -0
  37. package/dist/components/CountryDrawer/index.js +4 -0
  38. package/dist/components/CountryDrawer/useCountryFiltering.d.ts +7 -0
  39. package/dist/components/CountryDrawer/useCountryFiltering.js +9 -0
  40. package/dist/components/CountryDrawer/useCountryGrouping.d.ts +13 -0
  41. package/dist/components/CountryDrawer/useCountryGrouping.js +17 -0
  42. package/dist/components/Drawer/Drawer.d.ts +28 -6
  43. package/dist/components/Drawer/Drawer.js +67 -28
  44. package/dist/components/Drawer/index.js +6 -4
  45. package/dist/components/Drawer/types.d.ts +167 -0
  46. package/dist/components/Drawer/types.js +1 -0
  47. package/dist/components/Drawer/use-drawer.d.ts +8 -0
  48. package/dist/components/Drawer/use-drawer.js +11 -0
  49. package/dist/components/Flag/LazyFlag.js +1 -1
  50. package/dist/components/Flag/flag-components/eu.d.ts +3 -0
  51. package/dist/components/Flag/flag-components/eu.js +83 -0
  52. package/dist/components/Flag/flag-components/index.d.ts +1 -0
  53. package/dist/components/Flag/flag-components/index.js +56 -54
  54. package/dist/components/Form/Form.js +2 -2
  55. package/dist/components/Icons/ArrowDown.js +26 -0
  56. package/dist/components/Icons/Eye.d.ts +8 -0
  57. package/dist/components/Icons/Eye.js +40 -0
  58. package/dist/components/Icons/EyeClosed.d.ts +8 -0
  59. package/dist/components/Icons/EyeClosed.js +60 -0
  60. package/dist/components/Icons/Fail.d.ts +8 -0
  61. package/dist/components/Icons/Fail.js +82 -0
  62. package/dist/components/Icons/MagicWand.d.ts +8 -0
  63. package/dist/components/Icons/MagicWand.js +60 -0
  64. package/dist/components/Icons/Magnifier.d.ts +1 -1
  65. package/dist/components/Icons/Magnifier.js +20 -11
  66. package/dist/components/Icons/Success.d.ts +8 -0
  67. package/dist/components/Icons/Success.js +82 -0
  68. package/dist/components/Icons/Tick.js +6 -7
  69. package/dist/components/Icons/XMark.d.ts +8 -0
  70. package/dist/components/Icons/XMark.js +27 -0
  71. package/dist/components/Input/Input.d.ts +26 -2
  72. package/dist/components/Input/Input.js +116 -51
  73. package/dist/components/ListItem/ListItem.d.ts +17 -6
  74. package/dist/components/ListItem/ListItem.js +29 -22
  75. package/dist/components/Marble/Marble.d.ts +2 -0
  76. package/dist/components/Marble/Marble.js +23 -0
  77. package/dist/components/Marble/index.d.ts +1 -0
  78. package/dist/components/Marble/index.js +4 -0
  79. package/dist/components/NumberPad/Delete.d.ts +1 -8
  80. package/dist/components/NumberPad/Delete.js +9 -10
  81. package/dist/components/NumberPad/NumberPad.js +30 -24
  82. package/dist/components/OTPField/OTPField.js +8 -8
  83. package/dist/components/PasswordField/PasswordField.d.ts +13 -0
  84. package/dist/components/PasswordField/PasswordField.js +45 -0
  85. package/dist/components/PasswordField/index.d.ts +1 -0
  86. package/dist/components/PasswordField/index.js +4 -0
  87. package/dist/components/PasteButton/PasteButton.d.ts +1 -1
  88. package/dist/components/PasteButton/PasteButton.js +21 -17
  89. package/dist/components/PhoneField/CountryListItem.d.ts +3 -4
  90. package/dist/components/PhoneField/CountryListItem.js +21 -25
  91. package/dist/components/PhoneField/CountrySelectorButton.d.ts +3 -4
  92. package/dist/components/PhoneField/CountrySelectorButton.js +17 -17
  93. package/dist/components/PhoneField/GroupedCountryList.d.ts +14 -0
  94. package/dist/components/PhoneField/GroupedCountryList.js +30 -0
  95. package/dist/components/PhoneField/PhoneField.d.ts +3 -14
  96. package/dist/components/PhoneField/PhoneField.js +71 -197
  97. package/dist/components/PhoneField/constants.js +4 -4
  98. package/dist/components/Pill/Pill.js +7 -7
  99. package/dist/components/Progress/Progress.d.ts +14 -0
  100. package/dist/components/Progress/Progress.js +31 -0
  101. package/dist/components/Progress/index.d.ts +1 -0
  102. package/dist/components/Progress/index.js +4 -0
  103. package/dist/components/RadioGroup/RadioGroupItem.js +1 -1
  104. package/dist/components/SearchField/SearchField.d.ts +6 -1
  105. package/dist/components/SearchField/SearchField.js +39 -35
  106. package/dist/components/Select/Select.js +46 -76
  107. package/dist/components/{Button → Spinner}/Spinner.d.ts +2 -2
  108. package/dist/components/Spinner/Spinner.js +36 -0
  109. package/dist/components/Spinner/index.d.ts +1 -0
  110. package/dist/components/Spinner/index.js +4 -0
  111. package/dist/components/Switch/Switch.js +1 -1
  112. package/dist/components/Tabs/Tabs.d.ts +11 -0
  113. package/dist/components/Tabs/Tabs.js +58 -0
  114. package/dist/components/Tabs/index.d.ts +2 -0
  115. package/dist/components/Tabs/index.js +5 -0
  116. package/dist/components/Tabs/types.d.ts +53 -0
  117. package/dist/components/Tabs/types.js +1 -0
  118. package/dist/components/TextArea/TextArea.d.ts +25 -0
  119. package/dist/components/TextArea/TextArea.js +54 -0
  120. package/dist/components/TextArea/index.d.ts +1 -0
  121. package/dist/components/TextArea/index.js +4 -0
  122. package/dist/components/Toast/Toast.d.ts +9 -0
  123. package/dist/components/Toast/Toast.js +51 -0
  124. package/dist/components/Toast/Toaster.d.ts +3 -0
  125. package/dist/components/Toast/Toaster.js +14 -0
  126. package/dist/components/Toast/index.d.ts +3 -0
  127. package/dist/components/Toast/index.js +12 -0
  128. package/dist/components/Toast/use-toast.d.ts +51 -0
  129. package/dist/components/Toast/use-toast.js +101 -0
  130. package/dist/components/ToggleGroup/ToggleGroup.d.ts +5 -0
  131. package/dist/components/ToggleGroup/ToggleGroup.js +28 -0
  132. package/dist/components/ToggleGroup/index.d.ts +1 -0
  133. package/dist/components/ToggleGroup/index.js +5 -0
  134. package/dist/components/ToggleGroup/types.d.ts +101 -0
  135. package/dist/components/ToggleGroup/types.js +1 -0
  136. package/dist/components/Token/Token.d.ts +4 -0
  137. package/dist/components/Token/Token.js +12 -7
  138. package/dist/components/Token/icons/btc.d.ts +2 -2
  139. package/dist/components/Token/icons/btc.js +13 -58
  140. package/dist/components/Token/icons/dai.d.ts +3 -0
  141. package/dist/components/Token/icons/dai.js +27 -0
  142. package/dist/components/Token/icons/eth.d.ts +2 -2
  143. package/dist/components/Token/icons/eth.js +11 -58
  144. package/dist/components/Token/icons/index.d.ts +2 -0
  145. package/dist/components/Token/icons/index.js +8 -4
  146. package/dist/components/Token/icons/types.d.ts +7 -0
  147. package/dist/components/Token/icons/types.js +1 -0
  148. package/dist/components/Token/icons/usdc.d.ts +2 -2
  149. package/dist/components/Token/icons/usdc.js +16 -56
  150. package/dist/components/Token/icons/usdt.d.ts +3 -0
  151. package/dist/components/Token/icons/usdt.js +27 -0
  152. package/dist/components/Token/icons/utils.d.ts +9 -0
  153. package/dist/components/Token/icons/utils.js +11 -0
  154. package/dist/components/Token/icons/wld.d.ts +2 -2
  155. package/dist/components/Token/icons/wld.js +10 -41
  156. package/dist/components/TopBar/TopBar.d.ts +11 -0
  157. package/dist/components/TopBar/TopBar.js +23 -0
  158. package/dist/components/TopBar/index.d.ts +1 -0
  159. package/dist/components/TopBar/index.js +4 -0
  160. package/dist/components/Typography/Typography.d.ts +12 -8
  161. package/dist/components/Typography/Typography.js +69 -57
  162. package/dist/components/WalletAddressField/WalletAddressField.d.ts +23 -0
  163. package/dist/components/WalletAddressField/WalletAddressField.js +81 -0
  164. package/dist/components/WalletAddressField/index.d.ts +1 -0
  165. package/dist/components/WalletAddressField/index.js +4 -0
  166. package/dist/index.d.ts +15 -0
  167. package/dist/index.js +91 -45
  168. package/dist/lib/constants/dropdownStyles.d.ts +1 -1
  169. package/dist/lib/constants/dropdownStyles.js +2 -2
  170. package/dist/node_modules/.pnpm/@radix-ui_react-collection@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@1_tagbd57u5fsqga6qdjecsll7fm/node_modules/@radix-ui/react-collection/dist/index.js +49 -0
  171. package/dist/node_modules/.pnpm/@radix-ui_react-dismissable-layer@1.1.5_@types_react-dom@18.3.5_@types_react@18.3.18__@types__nitdfoqpcbroetgllwgz3is5ai/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +131 -0
  172. package/dist/node_modules/.pnpm/@radix-ui_react-portal@1.1.4_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._ulc3jfxcmrz2rfz7bui53djdtu/node_modules/@radix-ui/react-portal/dist/index.js +17 -0
  173. package/dist/node_modules/.pnpm/@radix-ui_react-primitive@2.0.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18_sejcxqoscaweil2bvgwwavaoha/node_modules/@radix-ui/react-primitive/dist/index.js +35 -0
  174. package/dist/node_modules/.pnpm/@radix-ui_react-progress@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18._wpsg2ubedou6txnsnvgmus4txq/node_modules/@radix-ui/react-progress/dist/index.js +86 -0
  175. package/dist/node_modules/.pnpm/@radix-ui_react-roving-focus@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react_ki7uy4u3diz5446cqygvbjwuge/node_modules/@radix-ui/react-roving-focus/dist/index.js +181 -0
  176. package/dist/node_modules/.pnpm/@radix-ui_react-slot@1.1.2_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.js +44 -0
  177. package/dist/node_modules/.pnpm/@radix-ui_react-toast@1.2.6_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.1_mux33mveszkw5z6iia6acnivvy/node_modules/@radix-ui/react-toast/dist/index.js +448 -0
  178. package/dist/node_modules/.pnpm/@radix-ui_react-toggle-group@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react_3smwloudr6a3igss4kifyxcwju/node_modules/@radix-ui/react-toggle-group/dist/index.js +137 -0
  179. package/dist/node_modules/.pnpm/@radix-ui_react-toggle@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._yiv2ptaqcv244n5f7zfldmgupm/node_modules/@radix-ui/react-toggle/dist/index.js +31 -0
  180. package/dist/node_modules/.pnpm/@radix-ui_react-visually-hidden@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_re_omyrydx3gc2oidaiqb4gsovieq/node_modules/@radix-ui/react-visually-hidden/dist/index.js +30 -0
  181. package/dist/tailwind/index.d.ts +41 -25
  182. package/dist/tailwind/index.js +128 -85
  183. package/package.json +73 -1
  184. package/public/fonts/TWKLausanne-350.woff +0 -0
  185. package/public/fonts/TWKLausanne-350Italic.woff +0 -0
  186. package/public/fonts/TWKLausanne-500.woff +0 -0
  187. package/public/fonts/TWKLausanne-500Italic.woff +0 -0
  188. package/public/fonts/TWKLausanne-600.woff +0 -0
  189. package/public/fonts/TWKLausanne-600Italic.woff +0 -0
  190. package/public/globals.css +1 -1
  191. package/public/images/marbles/marble1.png +0 -0
  192. package/public/images/marbles/marble2.png +0 -0
  193. package/public/images/marbles/marble3.svg +36 -0
  194. package/dist/components/Button/Spinner.js +0 -36
  195. package/dist/components/PhoneField/ArrowDown.js +0 -27
  196. package/dist/components/Select/ArrowDown.d.ts +0 -2
  197. package/dist/components/Select/ArrowDown.js +0 -27
  198. /package/dist/components/{PhoneField → Icons}/ArrowDown.d.ts +0 -0
@@ -7,11 +7,11 @@ import { default as x } from "./ci.js";
7
7
  import { default as G } from "./ch.js";
8
8
  import { default as A } from "./aw.js";
9
9
  import { default as C } from "./mt.js";
10
- import { default as L } from "./no.js";
11
- import { default as E } from "./mc.js";
10
+ import { default as E } from "./no.js";
11
+ import { default as N } from "./mc.js";
12
12
  import { default as I } from "./tv.js";
13
13
  import { default as P } from "./tc.js";
14
- import { default as U } from "./ug.js";
14
+ import { default as D } from "./ug.js";
15
15
  import { default as Z } from "./tt.js";
16
16
  import { default as F } from "./ma.js";
17
17
  import { default as W } from "./nz.js";
@@ -34,11 +34,11 @@ import { default as xa } from "./md.js";
34
34
  import { default as Ga } from "./co.js";
35
35
  import { default as Aa } from "./ag.js";
36
36
  import { default as Ca } from "./af.js";
37
- import { default as La } from "./cy.js";
38
- import { default as Ea } from "./bj.js";
37
+ import { default as Ea } from "./cy.js";
38
+ import { default as Na } from "./bj.js";
39
39
  import { default as Ia } from "./cn.js";
40
40
  import { default as Pa } from "./me.js";
41
- import { default as Ua } from "./la.js";
41
+ import { default as Da } from "./la.js";
42
42
  import { default as Za } from "./mr.js";
43
43
  import { default as Fa } from "./ni.js";
44
44
  import { default as Wa } from "./lv.js";
@@ -61,11 +61,11 @@ import { default as xe } from "./bi.js";
61
61
  import { default as Ge } from "./ar.js";
62
62
  import { default as Ae } from "./lb.js";
63
63
  import { default as Ce } from "./lu.js";
64
- import { default as Le } from "./mq.js";
65
- import { default as Ee } from "./td.js";
64
+ import { default as Ee } from "./mq.js";
65
+ import { default as Ne } from "./td.js";
66
66
  import { default as Ie } from "./sg.js";
67
67
  import { default as Pe } from "./pk.js";
68
- import { default as Ue } from "./je.js";
68
+ import { default as De } from "./je.js";
69
69
  import { default as Ze } from "./gb.js";
70
70
  import { default as Fe } from "./gu.js";
71
71
  import { default as We } from "./do.js";
@@ -88,11 +88,11 @@ import { default as xf } from "./se.js";
88
88
  import { default as Gf } from "./sv.js";
89
89
  import { default as Af } from "./sa.js";
90
90
  import { default as Cf } from "./io.js";
91
- import { default as Lf } from "./hk.js";
92
- import { default as Ef } from "./kp.js";
91
+ import { default as Ef } from "./hk.js";
92
+ import { default as Nf } from "./kp.js";
93
93
  import { default as If } from "./kg.js";
94
94
  import { default as Pf } from "./gd.js";
95
- import { default as Uf } from "./ge.js";
95
+ import { default as Df } from "./ge.js";
96
96
  import { default as Zf } from "./gr.js";
97
97
  import { default as Ff } from "./in.js";
98
98
  import { default as Wf } from "./pl.js";
@@ -114,11 +114,11 @@ import { default as xo } from "./sy.js";
114
114
  import { default as Go } from "./sn.js";
115
115
  import { default as Ao } from "./kh.js";
116
116
  import { default as Co } from "./ec.js";
117
- import { default as Lo } from "./et.js";
118
- import { default as Eo } from "./fo.js";
117
+ import { default as Eo } from "./et.js";
118
+ import { default as No } from "./fo.js";
119
119
  import { default as Io } from "./hr.js";
120
120
  import { default as Po } from "./ki.js";
121
- import { default as Uo } from "./jm.js";
121
+ import { default as Do } from "./jm.js";
122
122
  import { default as Zo } from "./pt.js";
123
123
  import { default as Fo } from "./so.js";
124
124
  import { default as Wo } from "./sx.js";
@@ -141,11 +141,11 @@ import { default as xr } from "./gm.js";
141
141
  import { default as Gr } from "./er.js";
142
142
  import { default as Ar } from "./fi.js";
143
143
  import { default as Cr } from "./ee.js";
144
- import { default as Lr } from "./es.js";
145
- import { default as Er } from "./gl.js";
144
+ import { default as Er } from "./es.js";
145
+ import { default as Nr } from "./gl.js";
146
146
  import { default as Ir } from "./ht.js";
147
147
  import { default as Pr } from "./qa.js";
148
- import { default as Ur } from "./pe.js";
148
+ import { default as Dr } from "./pe.js";
149
149
  import { default as Zr } from "./pr.js";
150
150
  import { default as Fr } from "./si.js";
151
151
  import { default as Wr } from "./ro.js";
@@ -168,11 +168,11 @@ import { default as xt } from "./uz.js";
168
168
  import { default as Gt } from "./ng.js";
169
169
  import { default as At } from "./mk.js";
170
170
  import { default as Ct } from "./np.js";
171
- import { default as Lt } from "./bd.js";
172
- import { default as Et } from "./cw.js";
171
+ import { default as Et } from "./bd.js";
172
+ import { default as Nt } from "./cw.js";
173
173
  import { default as It } from "./bs.js";
174
174
  import { default as Pt } from "./ai.js";
175
- import { default as Ut } from "./br.js";
175
+ import { default as Dt } from "./br.js";
176
176
  import { default as Zt } from "./cv.js";
177
177
  import { default as Ft } from "./be.js";
178
178
  import { default as Wt } from "./ca.js";
@@ -195,11 +195,11 @@ import { default as xd } from "./zw.js";
195
195
  import { default as Gd } from "./tk.js";
196
196
  import { default as Ad } from "./vc.js";
197
197
  import { default as Cd } from "./to.js";
198
- import { default as Ld } from "./vg.js";
199
- import { default as Ed } from "./mm.js";
198
+ import { default as Ed } from "./vg.js";
199
+ import { default as Nd } from "./mm.js";
200
200
  import { default as Id } from "./li.js";
201
201
  import { default as Pd } from "./na.js";
202
- import { default as Ud } from "./mz.js";
202
+ import { default as Dd } from "./mz.js";
203
203
  import { default as Zd } from "./bb.js";
204
204
  import { default as Fd } from "./cf.js";
205
205
  import { default as Wd } from "./cg.js";
@@ -222,13 +222,14 @@ import { default as xl } from "./bw.js";
222
222
  import { default as Gl } from "./mx.js";
223
223
  import { default as Al } from "./mo.js";
224
224
  import { default as Cl } from "./lk.js";
225
- import { default as Ll } from "./ve.js";
226
- import { default as El } from "./tz.js";
225
+ import { default as El } from "./ve.js";
226
+ import { default as Nl } from "./tz.js";
227
227
  import { default as Il } from "./tm.js";
228
228
  import { default as Pl } from "./bl.js";
229
- import { default as Ul } from "./bq.js";
229
+ import { default as Dl } from "./bq.js";
230
230
  import { default as Zl } from "./gp.js";
231
231
  import { default as Fl } from "./xk.js";
232
+ import { default as Wl } from "./eu.js";
232
233
  export {
233
234
  re as AD,
234
235
  me as AE,
@@ -247,19 +248,19 @@ export {
247
248
  rl as AZ,
248
249
  dl as BA,
249
250
  Zd as BB,
250
- Lt as BD,
251
+ Et as BD,
251
252
  Ft as BE,
252
253
  dd as BF,
253
254
  ad as BG,
254
255
  ae as BH,
255
256
  xe as BI,
256
- Ea as BJ,
257
+ Na as BJ,
257
258
  Pl as BL,
258
259
  s as BM,
259
260
  j as BN,
260
261
  n as BO,
261
- Ul as BQ,
262
- Ut as BR,
262
+ Dl as BQ,
263
+ Dt as BR,
263
264
  It as BS,
264
265
  cd as BT,
265
266
  xl as BW,
@@ -280,8 +281,8 @@ export {
280
281
  al as CR,
281
282
  rd as CU,
282
283
  Zt as CV,
283
- Et as CW,
284
- La as CY,
284
+ Nt as CW,
285
+ Ea as CY,
285
286
  de as CZ,
286
287
  _o as DE,
287
288
  zf as DJ,
@@ -293,22 +294,23 @@ export {
293
294
  Cr as EE,
294
295
  at as EG,
295
296
  Gr as ER,
296
- Lr as ES,
297
- Lo as ET,
297
+ Er as ES,
298
+ Eo as ET,
299
+ Wl as EU,
298
300
  Ar as FI,
299
301
  vr as FJ,
300
302
  ft as FK,
301
303
  vo as FM,
302
- Eo as FO,
304
+ No as FO,
303
305
  ff as FR,
304
306
  af as GA,
305
307
  Ze as GB,
306
308
  Pf as GD,
307
- Uf as GE,
309
+ Df as GE,
308
310
  wf as GG,
309
311
  no as GH,
310
312
  yo as GI,
311
- Er as GL,
313
+ Nr as GL,
312
314
  xr as GM,
313
315
  yr as GN,
314
316
  Zl as GP,
@@ -318,7 +320,7 @@ export {
318
320
  Fe as GU,
319
321
  df as GW,
320
322
  _r as GY,
321
- Lf as HK,
323
+ Ef as HK,
322
324
  ye as HN,
323
325
  Io as HR,
324
326
  Ir as HT,
@@ -333,8 +335,8 @@ export {
333
335
  cr as IR,
334
336
  dt as IS,
335
337
  jo as IT,
336
- Ue as JE,
337
- Uo as JM,
338
+ De as JE,
339
+ Do as JM,
338
340
  ho as JO,
339
341
  mf as JP,
340
342
  eo as KE,
@@ -342,12 +344,12 @@ export {
342
344
  Ao as KH,
343
345
  Po as KI,
344
346
  hr as KM,
345
- Ef as KP,
347
+ Nf as KP,
346
348
  to as KR,
347
349
  Xe as KW,
348
350
  sr as KY,
349
351
  nr as KZ,
350
- Ua as LA,
352
+ Da as LA,
351
353
  Ae as LB,
352
354
  ya as LC,
353
355
  Id as LI,
@@ -359,18 +361,18 @@ export {
359
361
  Wa as LV,
360
362
  Xt as LY,
361
363
  F as MA,
362
- E as MC,
364
+ N as MC,
363
365
  xa as MD,
364
366
  Pa as ME,
365
367
  va as MG,
366
368
  _t as MH,
367
369
  At as MK,
368
370
  hd as ML,
369
- Ed as MM,
371
+ Nd as MM,
370
372
  vd as MN,
371
373
  Al as MO,
372
374
  ja as MP,
373
- Le as MQ,
375
+ Ee as MQ,
374
376
  Za as MR,
375
377
  sa as MS,
376
378
  C as MT,
@@ -379,21 +381,21 @@ export {
379
381
  _ as MW,
380
382
  Gl as MX,
381
383
  _d as MY,
382
- Ud as MZ,
384
+ Dd as MZ,
383
385
  Pd as NA,
384
386
  sd as NE,
385
387
  Jt as NF,
386
388
  Gt as NG,
387
389
  Fa as NI,
388
390
  aa as NL,
389
- L as NO,
391
+ E as NO,
390
392
  Ct as NP,
391
393
  md as NR,
392
394
  yd as NU,
393
395
  W as NZ,
394
396
  Ja as OM,
395
397
  Jo as PA,
396
- Ur as PE,
398
+ Dr as PE,
397
399
  mt as PF,
398
400
  Xr as PG,
399
401
  ne as PH,
@@ -430,7 +432,7 @@ export {
430
432
  xo as SY,
431
433
  Xo as SZ,
432
434
  P as TC,
433
- Ee as TD,
435
+ Ne as TD,
434
436
  Xa as TG,
435
437
  ht as TH,
436
438
  vt as TJ,
@@ -443,16 +445,16 @@ export {
443
445
  Z as TT,
444
446
  I as TV,
445
447
  r as TW,
446
- El as TZ,
448
+ Nl as TZ,
447
449
  ha as UA,
448
- U as UG,
450
+ D as UG,
449
451
  f as US,
450
452
  jt as UY,
451
453
  xt as UZ,
452
454
  st as VA,
453
455
  Ad as VC,
454
- Ll as VE,
455
- Ld as VG,
456
+ El as VE,
457
+ Ed as VG,
456
458
  da as VN,
457
459
  nt as VU,
458
460
  ct as WS,
@@ -20,9 +20,9 @@ const b = m, g = l, h = n, R = d(({ className: p, error: s, textAlign: t = "left
20
20
  "h-[1.625rem] mt-1 flex items-center",
21
21
  y({
22
22
  variant: "body",
23
- level: 3
23
+ level: 4
24
24
  }),
25
- s ? "text-error-700" : "text-gray-500"
25
+ s ? "text-error-600" : "text-gray-500"
26
26
  ),
27
27
  ...r
28
28
  }
@@ -0,0 +1,26 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ function e(o) {
3
+ return /* @__PURE__ */ r(
4
+ "svg",
5
+ {
6
+ width: "18",
7
+ height: "18",
8
+ viewBox: "0 0 18 18",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ ...o,
12
+ children: /* @__PURE__ */ r(
13
+ "path",
14
+ {
15
+ d: "M4.5 6.75L9 11.25L13.5 6.75",
16
+ stroke: "currentColor",
17
+ strokeWidth: "1.35",
18
+ strokeLinecap: "square"
19
+ }
20
+ )
21
+ }
22
+ );
23
+ }
24
+ export {
25
+ e as ArrowDown
26
+ };
@@ -0,0 +1,8 @@
1
+ interface EyeProps {
2
+ /**
3
+ * Additional CSS classes to apply to the Eye icon
4
+ */
5
+ className?: string;
6
+ }
7
+ export declare function Eye({ className }: EyeProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,40 @@
1
+ import { jsxs as o, jsx as r } from "react/jsx-runtime";
2
+ import { cn as t } from "../../lib/utils.js";
3
+ function i({ className: e }) {
4
+ return /* @__PURE__ */ o(
5
+ "svg",
6
+ {
7
+ width: "24",
8
+ height: "24",
9
+ viewBox: "0 0 24 24",
10
+ fill: "none",
11
+ xmlns: "http://www.w3.org/2000/svg",
12
+ className: t("size-6", e),
13
+ children: [
14
+ /* @__PURE__ */ r(
15
+ "path",
16
+ {
17
+ d: "M3 13C6.6 5 17.4 5 21 13",
18
+ stroke: "currentColor",
19
+ strokeWidth: "1.5",
20
+ strokeLinecap: "square",
21
+ strokeLinejoin: "round"
22
+ }
23
+ ),
24
+ /* @__PURE__ */ r(
25
+ "path",
26
+ {
27
+ d: "M12 17C10.3431 17 9 15.6569 9 14C9 12.3431 10.3431 11 12 11C13.6569 11 15 12.3431 15 14C15 15.6569 13.6569 17 12 17Z",
28
+ stroke: "currentColor",
29
+ strokeWidth: "1.5",
30
+ strokeLinecap: "square",
31
+ strokeLinejoin: "round"
32
+ }
33
+ )
34
+ ]
35
+ }
36
+ );
37
+ }
38
+ export {
39
+ i as Eye
40
+ };
@@ -0,0 +1,8 @@
1
+ interface EyeProps {
2
+ /**
3
+ * Additional CSS classes to apply to the Eye icon
4
+ */
5
+ className?: string;
6
+ }
7
+ export declare function EyeClosed({ className }: EyeProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,60 @@
1
+ import { jsxs as e, jsx as o } from "react/jsx-runtime";
2
+ import { cn as t } from "../../lib/utils.js";
3
+ function i({ className: r }) {
4
+ return /* @__PURE__ */ e(
5
+ "svg",
6
+ {
7
+ width: "24",
8
+ height: "24",
9
+ viewBox: "0 0 24 24",
10
+ fill: "none",
11
+ xmlns: "http://www.w3.org/2000/svg",
12
+ className: t("size-6", r),
13
+ children: [
14
+ /* @__PURE__ */ o(
15
+ "path",
16
+ {
17
+ d: "M19.5001 16L17.0249 12.6038",
18
+ stroke: "currentColor",
19
+ strokeWidth: "1.5",
20
+ strokeLinecap: "round",
21
+ strokeLinejoin: "round"
22
+ }
23
+ ),
24
+ /* @__PURE__ */ o(
25
+ "path",
26
+ {
27
+ d: "M12 17.5V14",
28
+ stroke: "currentColor",
29
+ strokeWidth: "1.5",
30
+ strokeLinecap: "round",
31
+ strokeLinejoin: "round"
32
+ }
33
+ ),
34
+ /* @__PURE__ */ o(
35
+ "path",
36
+ {
37
+ d: "M4.5 16L6.96895 12.6124",
38
+ stroke: "currentColor",
39
+ strokeWidth: "1.5",
40
+ strokeLinecap: "round",
41
+ strokeLinejoin: "round"
42
+ }
43
+ ),
44
+ /* @__PURE__ */ o(
45
+ "path",
46
+ {
47
+ d: "M3 8C6.6 16 17.4 16 21 8",
48
+ stroke: "currentColor",
49
+ strokeWidth: "1.5",
50
+ strokeLinecap: "round",
51
+ strokeLinejoin: "round"
52
+ }
53
+ )
54
+ ]
55
+ }
56
+ );
57
+ }
58
+ export {
59
+ i as EyeClosed
60
+ };
@@ -0,0 +1,8 @@
1
+ interface FailProps {
2
+ /**
3
+ * Additional CSS classes to apply to the icon
4
+ */
5
+ className?: string;
6
+ }
7
+ export declare const Fail: ({ className }: FailProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,82 @@
1
+ import { jsxs as r, jsx as t } from "react/jsx-runtime";
2
+ import { cn as e } from "../../lib/utils.js";
3
+ const a = ({ className: i }) => /* @__PURE__ */ r(
4
+ "svg",
5
+ {
6
+ width: "25",
7
+ height: "24",
8
+ viewBox: "0 0 25 24",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ className: e("size-6 text-error-600", i),
12
+ children: [
13
+ /* @__PURE__ */ t("rect", { x: "0.5", width: "24", height: "24", rx: "12", fill: "currentColor" }),
14
+ /* @__PURE__ */ t(
15
+ "rect",
16
+ {
17
+ opacity: "0.2",
18
+ x: "0.5",
19
+ width: "24",
20
+ height: "24",
21
+ rx: "12",
22
+ fill: "url(#paint0_radial_578_338)"
23
+ }
24
+ ),
25
+ /* @__PURE__ */ t(
26
+ "rect",
27
+ {
28
+ x: "0.636364",
29
+ y: "0.136364",
30
+ width: "23.7273",
31
+ height: "23.7273",
32
+ rx: "11.8636",
33
+ stroke: "url(#paint1_linear_578_338)",
34
+ strokeWidth: "0.272727"
35
+ }
36
+ ),
37
+ /* @__PURE__ */ t(
38
+ "path",
39
+ {
40
+ d: "M9.50403 14.7233L12.3637 11.8636M15.2233 9.00403L12.3637 11.8636M12.3637 11.8636L9.50403 9.00403M12.3637 11.8636L15.2233 14.7233",
41
+ stroke: "white",
42
+ strokeWidth: "1.5"
43
+ }
44
+ ),
45
+ /* @__PURE__ */ r("defs", { children: [
46
+ /* @__PURE__ */ r(
47
+ "radialGradient",
48
+ {
49
+ id: "paint0_radial_578_338",
50
+ cx: "0",
51
+ cy: "0",
52
+ r: "1",
53
+ gradientUnits: "userSpaceOnUse",
54
+ gradientTransform: "translate(5.95455) rotate(63.4349) scale(26.8328 26.7171)",
55
+ children: [
56
+ /* @__PURE__ */ t("stop", { stopColor: "white" }),
57
+ /* @__PURE__ */ t("stop", { offset: "1", stopColor: "white", stopOpacity: "0" })
58
+ ]
59
+ }
60
+ ),
61
+ /* @__PURE__ */ r(
62
+ "linearGradient",
63
+ {
64
+ id: "paint1_linear_578_338",
65
+ x1: "12.5",
66
+ y1: "0",
67
+ x2: "12.5",
68
+ y2: "24",
69
+ gradientUnits: "userSpaceOnUse",
70
+ children: [
71
+ /* @__PURE__ */ t("stop", { stopColor: "white", stopOpacity: "0.3" }),
72
+ /* @__PURE__ */ t("stop", { offset: "1", stopColor: "white", stopOpacity: "0" })
73
+ ]
74
+ }
75
+ )
76
+ ] })
77
+ ]
78
+ }
79
+ );
80
+ export {
81
+ a as Fail
82
+ };
@@ -0,0 +1,8 @@
1
+ interface MagicWandProps {
2
+ /**
3
+ * Additional CSS classes to apply to the icon
4
+ */
5
+ className?: string;
6
+ }
7
+ export declare function MagicWand({ className }: MagicWandProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,60 @@
1
+ import { jsxs as t, jsx as r } from "react/jsx-runtime";
2
+ import { cn as L } from "../../lib/utils.js";
3
+ function i({ className: o }) {
4
+ return /* @__PURE__ */ t(
5
+ "svg",
6
+ {
7
+ width: "20",
8
+ height: "20",
9
+ viewBox: "0 0 20 20",
10
+ fill: "none",
11
+ xmlns: "http://www.w3.org/2000/svg",
12
+ className: L("size-5", o),
13
+ children: [
14
+ /* @__PURE__ */ r(
15
+ "path",
16
+ {
17
+ d: "M14.0774 3.8389L3.82886 14.0874L4.48362 14.7421L5.25751 15.516L5.91227 16.1707L16.1607 5.92225L15.506 5.26752L14.7321 4.49363L14.0774 3.8389Z",
18
+ stroke: "currentColor",
19
+ strokeWidth: "1.5",
20
+ strokeLinecap: "round"
21
+ }
22
+ ),
23
+ /* @__PURE__ */ r(
24
+ "path",
25
+ {
26
+ d: "M11.2844 6.63257L13.3678 8.7159",
27
+ stroke: "currentColor",
28
+ strokeWidth: "1.5",
29
+ strokeLinecap: "round",
30
+ strokeLinejoin: "round"
31
+ }
32
+ ),
33
+ /* @__PURE__ */ r(
34
+ "path",
35
+ {
36
+ d: "M10.2313 3.98142C10.6148 3.98142 10.9258 3.6705 10.9258 3.28697C10.9258 2.90344 10.6148 2.59253 10.2313 2.59253C9.84778 2.59253 9.53687 2.90344 9.53687 3.28697C9.53687 3.6705 9.84778 3.98142 10.2313 3.98142Z",
37
+ fill: "currentColor"
38
+ }
39
+ ),
40
+ /* @__PURE__ */ r(
41
+ "path",
42
+ {
43
+ d: "M6.87508 3.125L7.43777 4.64564L8.95841 5.20833L7.43777 5.77102L6.87508 7.29167L6.31239 5.77102L4.79175 5.20833L6.31239 4.64564L6.87508 3.125Z",
44
+ fill: "currentColor"
45
+ }
46
+ ),
47
+ /* @__PURE__ */ r(
48
+ "path",
49
+ {
50
+ d: "M15 10.8333L15.6752 12.658L17.5 13.3333L15.6752 14.0085L15 15.8333L14.3248 14.0085L12.5 13.3333L14.3248 12.658L15 10.8333Z",
51
+ fill: "currentColor"
52
+ }
53
+ )
54
+ ]
55
+ }
56
+ );
57
+ }
58
+ export {
59
+ i as MagicWand
60
+ };
@@ -1,6 +1,6 @@
1
1
  interface MagnifierProps {
2
2
  /**
3
- * Additional CSS classes to apply to the Magnifier icon
3
+ * Additional CSS classes to apply to the icon
4
4
  */
5
5
  className?: string;
6
6
  }