@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.
- package/README.md +8 -17
- package/dist/components/AlertDialog/AlertDialog.js +94 -0
- package/dist/components/AlertDialog/index.d.ts +1 -0
- package/dist/components/AlertDialog/index.js +13 -0
- package/dist/components/AlertDialog/types.d.ts +172 -0
- package/dist/components/AlertDialog/types.js +1 -0
- package/dist/components/AlertDialog/use-alert-dialog.d.ts +6 -0
- package/dist/components/AlertDialog/use-alert-dialog.js +11 -0
- package/dist/components/BottomBar/BottomBar.d.ts +13 -0
- package/dist/components/BottomBar/BottomBar.js +21 -0
- package/dist/components/BottomBar/index.d.ts +1 -0
- package/dist/components/BottomBar/index.js +4 -0
- package/dist/components/BulletList/BulletList.d.ts +10 -0
- package/dist/components/BulletList/BulletList.js +11 -0
- package/dist/components/BulletList/index.d.ts +1 -0
- package/dist/components/BulletList/index.js +4 -0
- package/dist/components/BulletListItem/BulletListItem.d.ts +7 -0
- package/dist/components/BulletListItem/BulletListItem.js +23 -0
- package/dist/components/BulletListItem/index.d.ts +1 -0
- package/dist/components/BulletListItem/index.js +4 -0
- package/dist/components/BulletPoint/BulletPoint.d.ts +6 -0
- package/dist/components/BulletPoint/BulletPoint.js +22 -0
- package/dist/components/BulletPoint/index.d.ts +1 -0
- package/dist/components/BulletPoint/index.js +1 -0
- package/dist/components/Button/Button.d.ts +10 -22
- package/dist/components/Button/Button.js +41 -73
- package/dist/components/Checkbox/Checkbox.d.ts +24 -4
- package/dist/components/Checkbox/Checkbox.js +5 -5
- package/dist/components/Chip/Chip.d.ts +2 -1
- package/dist/components/Chip/Chip.js +14 -8
- package/dist/components/ClearButton/Clear.js +14 -14
- package/dist/components/ClearButton/ClearButton.js +11 -11
- package/dist/components/ColorPicker/ColorPicker.js +14 -14
- package/dist/components/CountryDrawer/CountryDrawer.d.ts +12 -0
- package/dist/components/CountryDrawer/CountryDrawer.js +63 -0
- package/dist/components/CountryDrawer/index.d.ts +1 -0
- package/dist/components/CountryDrawer/index.js +4 -0
- package/dist/components/CountryDrawer/useCountryFiltering.d.ts +7 -0
- package/dist/components/CountryDrawer/useCountryFiltering.js +9 -0
- package/dist/components/CountryDrawer/useCountryGrouping.d.ts +13 -0
- package/dist/components/CountryDrawer/useCountryGrouping.js +17 -0
- package/dist/components/Drawer/Drawer.d.ts +28 -6
- package/dist/components/Drawer/Drawer.js +67 -28
- package/dist/components/Drawer/index.js +6 -4
- package/dist/components/Drawer/types.d.ts +167 -0
- package/dist/components/Drawer/types.js +1 -0
- package/dist/components/Drawer/use-drawer.d.ts +8 -0
- package/dist/components/Drawer/use-drawer.js +11 -0
- package/dist/components/Flag/LazyFlag.js +1 -1
- package/dist/components/Flag/flag-components/eu.d.ts +3 -0
- package/dist/components/Flag/flag-components/eu.js +83 -0
- package/dist/components/Flag/flag-components/index.d.ts +1 -0
- package/dist/components/Flag/flag-components/index.js +56 -54
- package/dist/components/Form/Form.js +2 -2
- package/dist/components/Icons/ArrowDown.js +26 -0
- package/dist/components/Icons/Eye.d.ts +8 -0
- package/dist/components/Icons/Eye.js +40 -0
- package/dist/components/Icons/EyeClosed.d.ts +8 -0
- package/dist/components/Icons/EyeClosed.js +60 -0
- package/dist/components/Icons/Fail.d.ts +8 -0
- package/dist/components/Icons/Fail.js +82 -0
- package/dist/components/Icons/MagicWand.d.ts +8 -0
- package/dist/components/Icons/MagicWand.js +60 -0
- package/dist/components/Icons/Magnifier.d.ts +1 -1
- package/dist/components/Icons/Magnifier.js +20 -11
- package/dist/components/Icons/Success.d.ts +8 -0
- package/dist/components/Icons/Success.js +82 -0
- package/dist/components/Icons/Tick.js +6 -7
- package/dist/components/Icons/XMark.d.ts +8 -0
- package/dist/components/Icons/XMark.js +27 -0
- package/dist/components/Input/Input.d.ts +26 -2
- package/dist/components/Input/Input.js +116 -51
- package/dist/components/ListItem/ListItem.d.ts +17 -6
- package/dist/components/ListItem/ListItem.js +29 -22
- package/dist/components/Marble/Marble.d.ts +2 -0
- package/dist/components/Marble/Marble.js +23 -0
- package/dist/components/Marble/index.d.ts +1 -0
- package/dist/components/Marble/index.js +4 -0
- package/dist/components/NumberPad/Delete.d.ts +1 -8
- package/dist/components/NumberPad/Delete.js +9 -10
- package/dist/components/NumberPad/NumberPad.js +30 -24
- package/dist/components/OTPField/OTPField.js +8 -8
- package/dist/components/PasswordField/PasswordField.d.ts +13 -0
- package/dist/components/PasswordField/PasswordField.js +45 -0
- package/dist/components/PasswordField/index.d.ts +1 -0
- package/dist/components/PasswordField/index.js +4 -0
- package/dist/components/PasteButton/PasteButton.d.ts +1 -1
- package/dist/components/PasteButton/PasteButton.js +21 -17
- package/dist/components/PhoneField/CountryListItem.d.ts +3 -4
- package/dist/components/PhoneField/CountryListItem.js +21 -25
- package/dist/components/PhoneField/CountrySelectorButton.d.ts +3 -4
- package/dist/components/PhoneField/CountrySelectorButton.js +17 -17
- package/dist/components/PhoneField/GroupedCountryList.d.ts +14 -0
- package/dist/components/PhoneField/GroupedCountryList.js +30 -0
- package/dist/components/PhoneField/PhoneField.d.ts +3 -14
- package/dist/components/PhoneField/PhoneField.js +71 -197
- package/dist/components/PhoneField/constants.js +4 -4
- package/dist/components/Pill/Pill.js +7 -7
- package/dist/components/Progress/Progress.d.ts +14 -0
- package/dist/components/Progress/Progress.js +31 -0
- package/dist/components/Progress/index.d.ts +1 -0
- package/dist/components/Progress/index.js +4 -0
- package/dist/components/RadioGroup/RadioGroupItem.js +1 -1
- package/dist/components/SearchField/SearchField.d.ts +6 -1
- package/dist/components/SearchField/SearchField.js +39 -35
- package/dist/components/Select/Select.js +46 -76
- package/dist/components/{Button → Spinner}/Spinner.d.ts +2 -2
- package/dist/components/Spinner/Spinner.js +36 -0
- package/dist/components/Spinner/index.d.ts +1 -0
- package/dist/components/Spinner/index.js +4 -0
- package/dist/components/Switch/Switch.js +1 -1
- package/dist/components/Tabs/Tabs.d.ts +11 -0
- package/dist/components/Tabs/Tabs.js +58 -0
- package/dist/components/Tabs/index.d.ts +2 -0
- package/dist/components/Tabs/index.js +5 -0
- package/dist/components/Tabs/types.d.ts +53 -0
- package/dist/components/Tabs/types.js +1 -0
- package/dist/components/TextArea/TextArea.d.ts +25 -0
- package/dist/components/TextArea/TextArea.js +54 -0
- package/dist/components/TextArea/index.d.ts +1 -0
- package/dist/components/TextArea/index.js +4 -0
- package/dist/components/Toast/Toast.d.ts +9 -0
- package/dist/components/Toast/Toast.js +51 -0
- package/dist/components/Toast/Toaster.d.ts +3 -0
- package/dist/components/Toast/Toaster.js +14 -0
- package/dist/components/Toast/index.d.ts +3 -0
- package/dist/components/Toast/index.js +12 -0
- package/dist/components/Toast/use-toast.d.ts +51 -0
- package/dist/components/Toast/use-toast.js +101 -0
- package/dist/components/ToggleGroup/ToggleGroup.d.ts +5 -0
- package/dist/components/ToggleGroup/ToggleGroup.js +28 -0
- package/dist/components/ToggleGroup/index.d.ts +1 -0
- package/dist/components/ToggleGroup/index.js +5 -0
- package/dist/components/ToggleGroup/types.d.ts +101 -0
- package/dist/components/ToggleGroup/types.js +1 -0
- package/dist/components/Token/Token.d.ts +4 -0
- package/dist/components/Token/Token.js +12 -7
- package/dist/components/Token/icons/btc.d.ts +2 -2
- package/dist/components/Token/icons/btc.js +13 -58
- package/dist/components/Token/icons/dai.d.ts +3 -0
- package/dist/components/Token/icons/dai.js +27 -0
- package/dist/components/Token/icons/eth.d.ts +2 -2
- package/dist/components/Token/icons/eth.js +11 -58
- package/dist/components/Token/icons/index.d.ts +2 -0
- package/dist/components/Token/icons/index.js +8 -4
- package/dist/components/Token/icons/types.d.ts +7 -0
- package/dist/components/Token/icons/types.js +1 -0
- package/dist/components/Token/icons/usdc.d.ts +2 -2
- package/dist/components/Token/icons/usdc.js +16 -56
- package/dist/components/Token/icons/usdt.d.ts +3 -0
- package/dist/components/Token/icons/usdt.js +27 -0
- package/dist/components/Token/icons/utils.d.ts +9 -0
- package/dist/components/Token/icons/utils.js +11 -0
- package/dist/components/Token/icons/wld.d.ts +2 -2
- package/dist/components/Token/icons/wld.js +10 -41
- package/dist/components/TopBar/TopBar.d.ts +11 -0
- package/dist/components/TopBar/TopBar.js +23 -0
- package/dist/components/TopBar/index.d.ts +1 -0
- package/dist/components/TopBar/index.js +4 -0
- package/dist/components/Typography/Typography.d.ts +12 -8
- package/dist/components/Typography/Typography.js +69 -57
- package/dist/components/WalletAddressField/WalletAddressField.d.ts +23 -0
- package/dist/components/WalletAddressField/WalletAddressField.js +81 -0
- package/dist/components/WalletAddressField/index.d.ts +1 -0
- package/dist/components/WalletAddressField/index.js +4 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +91 -45
- package/dist/lib/constants/dropdownStyles.d.ts +1 -1
- package/dist/lib/constants/dropdownStyles.js +2 -2
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- package/dist/tailwind/index.d.ts +41 -25
- package/dist/tailwind/index.js +128 -85
- package/package.json +73 -1
- package/public/fonts/TWKLausanne-350.woff +0 -0
- package/public/fonts/TWKLausanne-350Italic.woff +0 -0
- package/public/fonts/TWKLausanne-500.woff +0 -0
- package/public/fonts/TWKLausanne-500Italic.woff +0 -0
- package/public/fonts/TWKLausanne-600.woff +0 -0
- package/public/fonts/TWKLausanne-600Italic.woff +0 -0
- package/public/globals.css +1 -1
- package/public/images/marbles/marble1.png +0 -0
- package/public/images/marbles/marble2.png +0 -0
- package/public/images/marbles/marble3.svg +36 -0
- package/dist/components/Button/Spinner.js +0 -36
- package/dist/components/PhoneField/ArrowDown.js +0 -27
- package/dist/components/Select/ArrowDown.d.ts +0 -2
- package/dist/components/Select/ArrowDown.js +0 -27
- /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
|
11
|
-
import { default as
|
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
|
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
|
38
|
-
import { default as
|
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
|
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
|
65
|
-
import { default as
|
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
|
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
|
92
|
-
import { default as
|
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
|
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
|
118
|
-
import { default as
|
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
|
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
|
145
|
-
import { default as
|
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
|
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
|
172
|
-
import { default as
|
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
|
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
|
199
|
-
import { default as
|
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
|
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
|
226
|
-
import { default as
|
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
|
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
|
-
|
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
|
-
|
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
|
-
|
262
|
-
|
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
|
-
|
284
|
-
|
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
|
-
|
297
|
-
|
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
|
-
|
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
|
-
|
309
|
+
Df as GE,
|
308
310
|
wf as GG,
|
309
311
|
no as GH,
|
310
312
|
yo as GI,
|
311
|
-
|
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
|
-
|
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
|
-
|
337
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
371
|
+
Nd as MM,
|
370
372
|
vd as MN,
|
371
373
|
Al as MO,
|
372
374
|
ja as MP,
|
373
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
448
|
+
Nl as TZ,
|
447
449
|
ha as UA,
|
448
|
-
|
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
|
-
|
455
|
-
|
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:
|
23
|
+
level: 4
|
24
24
|
}),
|
25
|
-
s ? "text-error-
|
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,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,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,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,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
|
+
};
|