@worldcoin/mini-apps-ui-kit-react 0.0.5 → 0.0.7

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 CHANGED
@@ -113,3 +113,35 @@ import { Button } from "@worldcoin/mini-apps-ui-kit-react/Button";
113
113
  ```
114
114
 
115
115
  This method enables tree-shaking and reduces your final bundle size by only including the components you actually use. Recommended for production applications where bundle size is a concern.
116
+
117
+ ## Icons
118
+
119
+ The library uses [Hugeicons](https://hugeicons.com/) for its icon system. To use icons in your project, you'll need to install the [React package](https://www.npmjs.com/package/@hugeicons/react):
120
+
121
+ ```bash
122
+ npm install @hugeicons/react
123
+ # or
124
+ yarn add @hugeicons/react
125
+ ```
126
+
127
+ Then you can import and use icons in your components:
128
+
129
+ ```jsx
130
+ import { HomeIcon } from '@hugeicons/react';
131
+
132
+ function MyComponent() {
133
+ return <HomeIcon size={24} />;
134
+ }
135
+ ```
136
+
137
+ Hugeicons provides a comprehensive set of icons across various categories including:
138
+ - Navigation & UI elements
139
+ - Social media
140
+ - Business & Finance
141
+ - Communication
142
+ - Technology
143
+ - And many more...
144
+
145
+ You can browse the complete icon set at [hugeicons.com](https://hugeicons.com/).
146
+
147
+ Hugeicons is available under various license options. Please refer to their [website](https://hugeicons.com/) for detailed licensing information.
@@ -0,0 +1,8 @@
1
+ interface ClearProps {
2
+ /**
3
+ * Additional CSS classes to apply to the Clear icon
4
+ */
5
+ className?: string;
6
+ }
7
+ export declare function Clear({ className }: ClearProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,27 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ import { cn as C } from "../../lib/utils.js";
3
+ function i({ className: l }) {
4
+ return /* @__PURE__ */ e(
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: C("h-4 w-4", l),
13
+ children: /* @__PURE__ */ e(
14
+ "path",
15
+ {
16
+ fillRule: "evenodd",
17
+ clipRule: "evenodd",
18
+ d: "M18.3333 9.99999C18.3333 14.6024 14.6024 18.3333 9.99999 18.3333C5.39762 18.3333 1.66666 14.6024 1.66666 9.99999C1.66666 5.39762 5.39762 1.66666 9.99999 1.66666C14.6024 1.66666 18.3333 5.39762 18.3333 9.99999ZM12.799 12.7989C12.5549 13.043 12.1592 13.043 11.9151 12.7989L10 10.8838L8.08491 12.7989C7.84083 13.043 7.4451 13.043 7.20102 12.7989C6.95695 12.5548 6.95695 12.1591 7.20102 11.915L9.11611 9.99994L7.20104 8.08486C6.95696 7.84078 6.95696 7.44506 7.20104 7.20098C7.44511 6.9569 7.84084 6.9569 8.08492 7.20098L10 9.11606L11.9151 7.20098C12.1591 6.95691 12.5549 6.95691 12.799 7.20098C13.043 7.44506 13.043 7.84079 12.799 8.08487L10.8839 9.99994L12.799 11.915C13.043 12.1591 13.043 12.5548 12.799 12.7989Z",
19
+ fill: "currentColor"
20
+ }
21
+ )
22
+ }
23
+ );
24
+ }
25
+ export {
26
+ i as Clear
27
+ };
@@ -0,0 +1,15 @@
1
+ import { ButtonHTMLAttributes } from 'react';
2
+ import * as React from "react";
3
+ interface ClearButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
4
+ /**
5
+ * Reference to an input element that will receive the pasted text
6
+ */
7
+ inputRef: React.ForwardedRef<HTMLInputElement>;
8
+ /**
9
+ * Optional callback function that will be called after a successful paste
10
+ */
11
+ onClear?: () => void;
12
+ }
13
+ export declare const CLEAR_BUTTON_WIDTH = 1.25;
14
+ declare const ClearButton: React.ForwardRefExoticComponent<ClearButtonProps & React.RefAttributes<HTMLButtonElement>>;
15
+ export default ClearButton;
@@ -0,0 +1,27 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ import * as m from "react";
3
+ import { cn as l } from "../../lib/utils.js";
4
+ import { Clear as u } from "./Clear.js";
5
+ const h = 1.25, i = m.forwardRef(
6
+ ({ children: p, inputRef: t, className: a, onClear: r, ...s }, n) => {
7
+ const c = (o) => {
8
+ o.preventDefault(), o.stopPropagation(), t && "current" in t && t.current && (t.current.value = "", r == null || r());
9
+ };
10
+ return /* @__PURE__ */ e(
11
+ "button",
12
+ {
13
+ type: "button",
14
+ ref: n,
15
+ className: l(a),
16
+ onMouseDown: c,
17
+ ...s,
18
+ children: /* @__PURE__ */ e(u, { className: "text-gray-400 size-5" })
19
+ }
20
+ );
21
+ }
22
+ );
23
+ i.displayName = "ClearButton";
24
+ export {
25
+ h as CLEAR_BUTTON_WIDTH,
26
+ i as default
27
+ };
@@ -0,0 +1 @@
1
+ export { default } from './ClearButton';
@@ -0,0 +1,4 @@
1
+ import { default as o } from "./ClearButton.js";
2
+ export {
3
+ o as default
4
+ };
@@ -1,6 +1,6 @@
1
1
  import { ButtonHTMLAttributes } from 'react';
2
2
  import * as React from "react";
3
- interface PasteButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
3
+ interface PasteButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "onPaste"> {
4
4
  /**
5
5
  * Reference to an input element that will receive the pasted text
6
6
  */
@@ -13,7 +13,7 @@ interface PasteButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
13
13
  /**
14
14
  * Optional callback function that will be called after a successful paste
15
15
  */
16
- onPaste?: () => void;
16
+ onPaste?: (value: string) => void;
17
17
  }
18
18
  export declare const PASTE_BUTTON_WIDTH = 3.875;
19
19
  declare const PasteButton: React.ForwardRefExoticComponent<PasteButtonProps & React.RefAttributes<HTMLButtonElement>>;
@@ -3,15 +3,15 @@ import * as s from "react";
3
3
  import { cn as d } from "../../lib/utils.js";
4
4
  import { Typography as u } from "../Typography/Typography.js";
5
5
  const b = 3.875, m = s.forwardRef(
6
- ({ children: p, inputRef: r, label: o = "Paste", className: c, onPaste: t, ...l }, n) => {
6
+ ({ children: p, inputRef: r, label: o = "Paste", className: c, onPaste: e, ...l }, n) => {
7
7
  const i = async () => {
8
8
  try {
9
9
  if (r && "current" in r && r.current) {
10
- const e = await navigator.clipboard.readText();
11
- r.current.value = e, t == null || t();
10
+ const t = await navigator.clipboard.readText();
11
+ r.current.value = t, e == null || e(t);
12
12
  }
13
- } catch (e) {
14
- console.error("Failed to read clipboard:", e);
13
+ } catch (t) {
14
+ console.error("Failed to read clipboard:", t);
15
15
  }
16
16
  };
17
17
  return /* @__PURE__ */ a(
@@ -1,19 +1,19 @@
1
1
  "use client";
2
- import { jsx as o, jsxs as c } from "react/jsx-runtime";
3
- import { DROPDOWN_CONTAINER_STYLES as J } from "../../lib/constants/dropdownStyles.js";
4
- import { cn as K } from "../../lib/utils.js";
5
- import { Root as Q, Trigger as Z, Portal as ee, Content as oe, Viewport as te, Item as re } from "../../node_modules/.pnpm/@radix-ui_react-select@2.1.4_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._atdh45n5c7sked5b6tbwgdz7re/node_modules/@radix-ui/react-select/dist/index.js";
6
- import { forwardRef as ne, useRef as ae, useState as w, useMemo as F, useImperativeHandle as se } from "react";
7
- import { usePhoneInput as le, parseCountry as O } from "../../node_modules/.pnpm/react-international-phone@4.4.0_react@18.3.1/node_modules/react-international-phone/dist/index.js";
8
- import { Drawer as ie, DrawerTrigger as ce, DrawerContent as ue, DrawerClose as de } from "../Drawer/Drawer.js";
9
- import { Input as me } from "../Input/Input.js";
10
- import { SearchField as he } from "../SearchField/SearchField.js";
2
+ import { jsx as t, jsxs as c } from "react/jsx-runtime";
3
+ import { DROPDOWN_CONTAINER_STYLES as te } from "../../lib/constants/dropdownStyles.js";
4
+ import { cn as oe } from "../../lib/utils.js";
5
+ import { Root as re, Trigger as ne, Portal as ae, Content as le, Viewport as se, Item as ie } from "../../node_modules/.pnpm/@radix-ui_react-select@2.1.4_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._atdh45n5c7sked5b6tbwgdz7re/node_modules/@radix-ui/react-select/dist/index.js";
6
+ import { forwardRef as ce, useRef as ue, useState as w, useMemo as F, useImperativeHandle as de } from "react";
7
+ import { usePhoneInput as me, parseCountry as O } from "../../node_modules/.pnpm/react-international-phone@4.4.0_react@18.3.1/node_modules/react-international-phone/dist/index.js";
8
+ import { Drawer as he, DrawerTrigger as fe, DrawerContent as pe, DrawerClose as Ce } from "../Drawer/Drawer.js";
9
+ import { Input as ye } from "../Input/Input.js";
10
+ import { SearchField as we } from "../SearchField/SearchField.js";
11
11
  import { Typography as P } from "../Typography/Typography.js";
12
12
  import L from "./CountryListItem.js";
13
13
  import R from "./CountrySelectorButton.js";
14
- import { DIAL_CODE_PREFIX as g, startAdornmentWidthByDialCodeLength as pe } from "./constants.js";
15
- import { getCountryDataListByCodes as fe, getValidatedCountryCode as u, filterCountries as Ce } from "./utils.js";
16
- const ye = ne(
14
+ import { DIAL_CODE_PREFIX as g, startAdornmentWidthByDialCodeLength as ge } from "./constants.js";
15
+ import { getCountryDataListByCodes as xe, getValidatedCountryCode as u, filterCountries as Ne } from "./utils.js";
16
+ const Se = ce(
17
17
  ({
18
18
  value: T,
19
19
  onChange: d,
@@ -22,15 +22,20 @@ const ye = ne(
22
22
  defaultCountryCode: n = "US",
23
23
  hideDialCode: m = !1,
24
24
  disableDialCodePrefill: E = !0,
25
- disabled: l = !1,
25
+ disabled: s = !1,
26
26
  error: b = !1,
27
27
  isValid: V,
28
28
  endAdornment: W,
29
29
  endAdornmentWidth: B,
30
30
  countrySelectorMode: _ = "dropdown",
31
- ...j
32
- }, k) => {
33
- const N = ae(null), [h, p] = w(!1), [M, f] = w(!1), [C, S] = w(""), i = F(() => fe(x), [x]), { inputValue: q, country: y, inputRef: a, handlePhoneValueChange: H, setCountry: U } = le(
31
+ type: j = "tel",
32
+ inputMode: k = "tel",
33
+ autoComplete: M = "tel",
34
+ autoCapitalize: q = "off",
35
+ autoCorrect: H = "off",
36
+ ...U
37
+ }, X) => {
38
+ const N = ue(null), [h, f] = w(!1), [Y, p] = w(!1), [C, S] = w(""), i = F(() => xe(x), [x]), { inputValue: z, country: y, inputRef: a, handlePhoneValueChange: G, setCountry: J } = me(
34
39
  {
35
40
  defaultCountry: n.toLowerCase(),
36
41
  disableDialCodePrefill: E,
@@ -43,67 +48,72 @@ const ye = ne(
43
48
  );
44
49
  }
45
50
  }
46
- ), s = u(y.iso2, n), X = 2.8, D = `${g}${y.dialCode}`, Y = m ? X : pe[y.dialCode.length];
47
- se(k, () => a.current);
51
+ ), l = u(y.iso2, n), K = 2.8, D = `${g}${y.dialCode}`, Q = m ? K : ge[y.dialCode.length];
52
+ de(X, () => a.current);
48
53
  const v = (e) => {
49
- e == null || e.preventDefault(), M && requestAnimationFrame(() => {
50
- var t;
51
- (t = a.current) == null || t.focus();
52
- }), f(!1);
53
- }, z = (e) => {
54
+ e == null || e.preventDefault(), Y && requestAnimationFrame(() => {
55
+ var o;
56
+ (o = a.current) == null || o.focus();
57
+ }), p(!1);
58
+ }, Z = (e) => {
54
59
  var r;
55
- const t = (r = N.current) == null ? void 0 : r.contains(e.target);
56
- f(!!t);
60
+ const o = (r = N.current) == null ? void 0 : r.contains(e.target);
61
+ p(!!o);
57
62
  }, A = (e) => {
58
- U(e.toLowerCase()), p(!1);
59
- }, G = (e) => {
63
+ J(e.toLowerCase()), f(!1);
64
+ }, ee = (e) => {
60
65
  S(e.target.value);
61
66
  }, I = F(
62
- () => Ce(i, C),
67
+ () => Ne(i, C),
63
68
  [i, C]
64
69
  );
65
- return /* @__PURE__ */ o(
66
- me,
70
+ return /* @__PURE__ */ t(
71
+ ye,
67
72
  {
68
- ...j,
73
+ ...U,
69
74
  ref: a,
70
- value: q,
71
- onChange: H,
75
+ type: j,
76
+ inputMode: k,
77
+ autoComplete: M,
78
+ autoCapitalize: q,
79
+ autoCorrect: H,
80
+ value: z,
81
+ onChange: G,
72
82
  placeholder: $,
73
- disabled: l,
83
+ disabled: s,
74
84
  error: b,
75
85
  isValid: V,
76
86
  endAdornment: W,
77
87
  endAdornmentWidth: B,
78
- startAdornmentWidth: Y,
88
+ startAdornmentWidth: Q,
79
89
  isFocused: h,
80
90
  startAdornment: _ === "drawer" ? /* @__PURE__ */ c(
81
- ie,
91
+ he,
82
92
  {
83
93
  open: h,
84
- onOpenChange: p,
94
+ onOpenChange: f,
85
95
  onClose: v,
86
96
  onAnimationEnd: (e) => {
87
- e && f(!0);
97
+ e && p(!0);
88
98
  },
89
99
  children: [
90
- /* @__PURE__ */ o(ce, { asChild: !0, className: "outline-none", children: /* @__PURE__ */ o(
100
+ /* @__PURE__ */ t(fe, { asChild: !0, className: "outline-none", children: /* @__PURE__ */ t(
91
101
  R,
92
102
  {
93
- disabled: l,
94
- countryCode: s,
103
+ disabled: s,
104
+ countryCode: l,
95
105
  hideDialCode: m,
96
106
  dialCode: D
97
107
  }
98
108
  ) }),
99
- /* @__PURE__ */ o(ue, { className: "h-[96%]", children: /* @__PURE__ */ c("div", { className: "max-w-md w-full mx-auto flex flex-col flex-grow", children: [
100
- /* @__PURE__ */ o(P, { variant: "subtitle", level: 2, className: "px-4 py-2", children: "Select country" }),
101
- /* @__PURE__ */ o("div", { className: "px-4 pt-2 pb-4", children: /* @__PURE__ */ o(
102
- he,
109
+ /* @__PURE__ */ t(pe, { className: "h-[96%]", children: /* @__PURE__ */ c("div", { className: "max-w-md w-full mx-auto flex flex-col flex-grow", children: [
110
+ /* @__PURE__ */ t(P, { variant: "subtitle", level: 2, className: "px-4 py-2", children: "Select country" }),
111
+ /* @__PURE__ */ t("div", { className: "px-4 pt-2 pb-4", children: /* @__PURE__ */ t(
112
+ we,
103
113
  {
104
114
  placeholder: "Search name or number",
105
115
  value: C,
106
- onChange: G
116
+ onChange: ee
107
117
  }
108
118
  ) }),
109
119
  /* @__PURE__ */ c(
@@ -117,24 +127,24 @@ const ye = ne(
117
127
  },
118
128
  children: [
119
129
  I.map((e) => {
120
- const t = O(e), r = u(
121
- t.iso2,
130
+ const o = O(e), r = u(
131
+ o.iso2,
122
132
  n
123
133
  );
124
- return /* @__PURE__ */ o(de, { className: "block w-full", children: /* @__PURE__ */ o(
134
+ return /* @__PURE__ */ t(Ce, { className: "block w-full", children: /* @__PURE__ */ t(
125
135
  L,
126
136
  {
127
137
  countryCode: r,
128
- countryName: t.name,
129
- dialCode: `${g}${t.dialCode}`,
138
+ countryName: o.name,
139
+ dialCode: `${g}${o.dialCode}`,
130
140
  onClick: () => {
131
141
  A(r), S("");
132
142
  },
133
- isSelected: s === r
143
+ isSelected: l === r
134
144
  }
135
145
  ) }, r);
136
146
  }),
137
- I.length === 0 && /* @__PURE__ */ o(P, { variant: "body", level: 2, className: "text-center", children: "No countries found" })
147
+ I.length === 0 && /* @__PURE__ */ t(P, { variant: "body", level: 2, className: "text-center", children: "No countries found" })
138
148
  ]
139
149
  }
140
150
  )
@@ -142,50 +152,50 @@ const ye = ne(
142
152
  ]
143
153
  }
144
154
  ) : /* @__PURE__ */ c(
145
- Q,
155
+ re,
146
156
  {
147
- value: s,
157
+ value: l,
148
158
  open: h,
149
- onOpenChange: p,
159
+ onOpenChange: f,
150
160
  onValueChange: A,
151
- disabled: l,
161
+ disabled: s,
152
162
  children: [
153
- /* @__PURE__ */ o(Z, { children: /* @__PURE__ */ o(
163
+ /* @__PURE__ */ t(ne, { children: /* @__PURE__ */ t(
154
164
  R,
155
165
  {
156
- disabled: l,
157
- countryCode: s,
166
+ disabled: s,
167
+ countryCode: l,
158
168
  hideDialCode: m,
159
169
  dialCode: D
160
170
  }
161
171
  ) }),
162
- /* @__PURE__ */ o(ee, { children: /* @__PURE__ */ o(
163
- oe,
172
+ /* @__PURE__ */ t(ae, { children: /* @__PURE__ */ t(
173
+ le,
164
174
  {
165
175
  ref: (e) => {
166
176
  N.current = e, e && a.current && (e.style.width = `${a.current.offsetWidth}px`);
167
177
  },
168
178
  position: "popper",
169
- className: K(J, "-ml-3 mt-5 w-auto"),
179
+ className: oe(te, "-ml-3 mt-5 w-auto"),
170
180
  onCloseAutoFocus: v,
171
- onPointerDown: z,
172
- children: /* @__PURE__ */ o(te, { className: "h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)] p-2", children: i.map((e) => {
173
- const t = O(e), r = u(
174
- t.iso2,
181
+ onPointerDown: Z,
182
+ children: /* @__PURE__ */ t(se, { className: "h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)] p-2", children: i.map((e) => {
183
+ const o = O(e), r = u(
184
+ o.iso2,
175
185
  n
176
186
  );
177
- return /* @__PURE__ */ o(
178
- re,
187
+ return /* @__PURE__ */ t(
188
+ ie,
179
189
  {
180
190
  value: r,
181
191
  className: "outline-none",
182
- children: /* @__PURE__ */ o(
192
+ children: /* @__PURE__ */ t(
183
193
  L,
184
194
  {
185
195
  countryCode: r,
186
- countryName: t.name,
187
- dialCode: `${g}${t.dialCode}`,
188
- isSelected: s === r
196
+ countryName: o.name,
197
+ dialCode: `${g}${o.dialCode}`,
198
+ isSelected: l === r
189
199
  }
190
200
  )
191
201
  },
@@ -201,8 +211,8 @@ const ye = ne(
201
211
  );
202
212
  }
203
213
  );
204
- ye.displayName = "PhoneField";
214
+ Se.displayName = "PhoneField";
205
215
  export {
206
- ye as PhoneField,
207
- ye as default
216
+ Se as PhoneField,
217
+ Se as default
208
218
  };
@@ -1,43 +1,78 @@
1
- import { jsx as r } from "react/jsx-runtime";
2
- import { forwardRef as A, useRef as h, useImperativeHandle as T } from "react";
3
- import { Magnifier as I } from "../Icons/Magnifier.js";
4
- import { Input as R } from "../Input/Input.js";
5
- import S, { PASTE_BUTTON_WIDTH as W } from "../PasteButton/PasteButton.js";
6
- const x = A(
1
+ import { jsx as a } from "react/jsx-runtime";
2
+ import { createChangeEvent as i } from "../../lib/utils.js";
3
+ import { forwardRef as v, useRef as I, useState as S, useImperativeHandle as T } from "react";
4
+ import P from "../ClearButton/ClearButton.js";
5
+ import { Magnifier as R } from "../Icons/Magnifier.js";
6
+ import { Input as W } from "../Input/Input.js";
7
+ import x, { PASTE_BUTTON_WIDTH as E } from "../PasteButton/PasteButton.js";
8
+ const H = v(
7
9
  ({
8
- showPasteButton: m,
9
- pasteButtonLabel: f,
10
+ showPasteButton: c,
11
+ pasteButtonLabel: l,
10
12
  isValid: d,
11
- disabled: t,
12
- type: a = "search",
13
- autoComplete: i = "off",
14
- spellCheck: l = "false",
15
- endAdornment: p,
16
- endAdornmentWidth: s,
17
- ...u
18
- }, c) => {
19
- const e = h(null);
20
- T(c, () => e.current);
21
- let n = p, o = s;
22
- return m && !t && (n = /* @__PURE__ */ r(S, { inputRef: e, label: f }), o = W), /* @__PURE__ */ r(
23
- R,
13
+ disabled: f,
14
+ type: h = "search",
15
+ autoComplete: A = "off",
16
+ spellCheck: F = "false",
17
+ endAdornment: B,
18
+ endAdornmentWidth: C,
19
+ ...e
20
+ }, g) => {
21
+ const r = I(null), [s, o] = S(!1);
22
+ T(g, () => r.current);
23
+ let u = B, m = C;
24
+ return c && !f ? (u = /* @__PURE__ */ a(
25
+ x,
24
26
  {
25
- ...u,
26
- ref: e,
27
- startAdornment: /* @__PURE__ */ r(I, {}),
27
+ inputRef: r,
28
+ label: l,
29
+ onPaste: () => {
30
+ var t;
31
+ if (r.current) {
32
+ const n = i(r.current);
33
+ (t = e.onChange) == null || t.call(e, n);
34
+ }
35
+ }
36
+ }
37
+ ), m = E) : s && !f && (u = /* @__PURE__ */ a(
38
+ P,
39
+ {
40
+ inputRef: r,
41
+ onClear: () => {
42
+ var t;
43
+ if (r.current) {
44
+ const n = i(r.current);
45
+ (t = e.onChange) == null || t.call(e, n);
46
+ }
47
+ }
48
+ }
49
+ ), m = 1.25), /* @__PURE__ */ a(
50
+ W,
51
+ {
52
+ ...e,
53
+ ref: r,
54
+ startAdornment: /* @__PURE__ */ a(R, {}),
28
55
  isValid: d,
29
- disabled: t,
30
- endAdornmentWidth: o,
31
- endAdornment: n,
32
- type: a,
33
- autoComplete: i,
34
- spellCheck: l
56
+ disabled: f,
57
+ endAdornmentWidth: m,
58
+ endAdornment: u,
59
+ type: h,
60
+ autoComplete: A,
61
+ spellCheck: F,
62
+ onFocus: (t) => {
63
+ var n;
64
+ o(!0), (n = e.onFocus) == null || n.call(e, t);
65
+ },
66
+ onBlur: (t) => {
67
+ var n;
68
+ o(!1), (n = e.onBlur) == null || n.call(e, t);
69
+ }
35
70
  }
36
71
  );
37
72
  }
38
73
  );
39
- x.displayName = "SearchField";
74
+ H.displayName = "SearchField";
40
75
  export {
41
- x as SearchField,
42
- x as default
76
+ H as SearchField,
77
+ H as default
43
78
  };
@@ -83,7 +83,7 @@ const $ = D(
83
83
  ),
84
84
  children: [
85
85
  /* @__PURE__ */ r(S, { placeholder: g }),
86
- /* @__PURE__ */ r(I, { className: "h-5 w-5", children: /* @__PURE__ */ r(_, { className: "text-gray-900" }) })
86
+ /* @__PURE__ */ r(I, { className: "h-5 w-5", children: /* @__PURE__ */ r(_, { className: "text-gray-500" }) })
87
87
  ]
88
88
  }
89
89
  ),
@@ -7,16 +7,16 @@ export interface TypographyProps extends React.HTMLAttributes<HTMLElement> {
7
7
  as?: "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "span" | "small" | "strong" | "div" | "em";
8
8
  }
9
9
  export interface TypographyNumberProps extends TypographyProps {
10
- variant: "number";
11
- level: 1 | 2 | 3 | 4 | 5 | 6;
10
+ variant?: "number";
11
+ level?: 1 | 2 | 3 | 4 | 5 | 6;
12
12
  }
13
13
  export interface TypographySubtitleBodyMonoProps extends TypographyProps {
14
- variant: "subtitle" | "body" | "mono";
15
- level: 1 | 2 | 3 | 4;
14
+ variant?: "subtitle" | "body" | "mono";
15
+ level?: 1 | 2 | 3 | 4;
16
16
  }
17
17
  export interface TypographyHeadingProps extends TypographyProps {
18
- variant: "heading";
19
- level: 1 | 2 | 3;
18
+ variant?: "heading";
19
+ level?: 1 | 2 | 3;
20
20
  }
21
21
  export type TypographyComponentProps = TypographyNumberProps | TypographySubtitleBodyMonoProps | TypographyHeadingProps;
22
22
  export declare const typographyVariants: (props?: ({
@@ -1,2 +1,4 @@
1
1
  import { ClassValue } from 'clsx';
2
+ import { ChangeEvent } from 'react';
2
3
  export declare function cn(...inputs: ClassValue[]): string;
4
+ export declare const createChangeEvent: (target: HTMLInputElement) => ChangeEvent<HTMLInputElement>;
package/dist/lib/utils.js CHANGED
@@ -1,8 +1,13 @@
1
- import { clsx as o } from "../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js";
2
- import { twMerge as t } from "../node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.js";
3
- function n(...r) {
4
- return t(o(r));
1
+ import { clsx as r } from "../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js";
2
+ import { twMerge as n } from "../node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.js";
3
+ function u(...e) {
4
+ return n(r(e));
5
5
  }
6
+ const a = (e) => {
7
+ const t = new Event("change", { bubbles: !0 });
8
+ return Object.defineProperty(t, "target", { value: e }), Object.defineProperty(t, "currentTarget", { value: e }), t;
9
+ };
6
10
  export {
7
- n as cn
11
+ u as cn,
12
+ a as createChangeEvent
8
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worldcoin/mini-apps-ui-kit-react",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1 +1 @@
1
- .react-international-phone-country-selector{position:relative}.react-international-phone-country-selector-button{display:flex;height:var(--react-international-phone-height,36px);box-sizing:border-box;align-items:center;justify-content:center;padding:0;border:1px solid var(--react-international-phone-country-selector-border-color,var(--react-international-phone-border-color,#dcdcdc));margin:0;-moz-appearance:button;appearance:button;-webkit-appearance:button;background-color:var(--react-international-phone-country-selector-background-color,var(--react-international-phone-background-color,#fff));cursor:pointer;text-transform:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.react-international-phone-country-selector-button:hover{background-color:var(--react-international-phone-country-selector-background-color-hover,#f5f5f5)}.react-international-phone-country-selector-button--hide-dropdown{cursor:auto}.react-international-phone-country-selector-button--hide-dropdown:hover{background-color:transparent}.react-international-phone-country-selector-button__button-content{display:flex;align-items:center;justify-content:center}.react-international-phone-country-selector-button__flag-emoji{margin:0 4px}.react-international-phone-country-selector-button__flag-emoji--disabled{opacity:.75}.react-international-phone-country-selector-button__dropdown-arrow{border-top:var(--react-international-phone-country-selector-arrow-size,4px) solid var(--react-international-phone-country-selector-arrow-color,#777);border-right:var(--react-international-phone-country-selector-arrow-size,4px) solid transparent;border-left:var(--react-international-phone-country-selector-arrow-size,4px) solid transparent;margin-right:4px;transition:all .1s ease-out}.react-international-phone-country-selector-button__dropdown-arrow--active{transform:rotateX(180deg)}.react-international-phone-country-selector-button__dropdown-arrow--disabled{border-top-color:var(--react-international-phone-disabled-country-selector-arrow-color,#999)}.react-international-phone-country-selector-button--disabled{cursor:auto}.react-international-phone-country-selector-button--disabled,.react-international-phone-country-selector-button--disabled:hover{background-color:var(--react-international-phone-disabled-country-selector-background-color,var(--react-international-phone-disabled-background-color,#f5f5f5))}.react-international-phone-flag-emoji{width:var(--react-international-phone-flag-width,24px);height:var(--react-international-phone-flag-height,24px);box-sizing:border-box}.react-international-phone-country-selector-dropdown{position:absolute;z-index:1;top:var(--react-international-phone-dropdown-top,44px);left:var(--react-international-phone-dropdown-left,0);display:flex;width:300px;max-height:200px;flex-direction:column;padding:4px 0;margin:0;background-color:var(--react-international-phone-dropdown-item-background-color,var(--react-international-phone-background-color,#fff));box-shadow:var(--react-international-phone-dropdown-shadow,2px 2px 16px rgba(0,0,0,.25));color:var(--react-international-phone-dropdown-item-text-color,var(--react-international-phone-text-color,#222));list-style:none;overflow-y:scroll}.react-international-phone-country-selector-dropdown__preferred-list-divider{height:1px;border:none;margin:var(--react-international-phone-dropdown-preferred-list-divider-margin,0);background:var(--react-international-phone-dropdown-preferred-list-divider-color,var(--react-international-phone-border-color,#dcdcdc))}.react-international-phone-country-selector-dropdown__list-item{display:flex;min-height:var(--react-international-phone-dropdown-item-height,28px);box-sizing:border-box;align-items:center;padding:2px 8px}.react-international-phone-country-selector-dropdown__list-item-flag-emoji{margin-right:8px}.react-international-phone-country-selector-dropdown__list-item-country-name{overflow:hidden;margin-right:8px;font-size:var(--react-international-phone-dropdown-item-font-size,14px);text-overflow:ellipsis;white-space:nowrap}.react-international-phone-country-selector-dropdown__list-item-dial-code{color:var(--react-international-phone-dropdown-item-dial-code-color,gray);font-size:var(--react-international-phone-dropdown-item-font-size,14px)}.react-international-phone-country-selector-dropdown__list-item:hover{background-color:var(--react-international-phone-selected-dropdown-item-background-color,var(--react-international-phone-selected-dropdown-item-background-color,#f5f5f5));cursor:pointer}.react-international-phone-country-selector-dropdown__list-item--focused,.react-international-phone-country-selector-dropdown__list-item--selected{background-color:var(--react-international-phone-selected-dropdown-item-background-color,#f5f5f5);color:var(--react-international-phone-selected-dropdown-item-text-color,var(--react-international-phone-text-color,#222))}.react-international-phone-country-selector-dropdown__list-item--focused .react-international-phone-country-selector-dropdown__list-item-dial-code,.react-international-phone-country-selector-dropdown__list-item--selected .react-international-phone-country-selector-dropdown__list-item-dial-code{color:var(--react-international-phone-selected-dropdown-item-dial-code-color,var(--react-international-phone-dropdown-item-dial-code-color,gray))}.react-international-phone-country-selector-dropdown__list-item--focused{background-color:var(--react-international-phone-selected-dropdown-item-background-color,var(--react-international-phone-selected-dropdown-item-background-color,#f5f5f5))}.react-international-phone-dial-code-preview{display:flex;align-items:center;justify-content:center;padding:0 8px;border:1px solid var(--react-international-phone-dial-code-preview-border-color,var(--react-international-phone-border-color,#dcdcdc));margin-right:-1px;background-color:var(--react-international-phone-dial-code-preview-background-color,var(--react-international-phone-background-color,#fff));color:var(--react-international-phone-dial-code-preview-text-color,var(--react-international-phone-text-color,#222));font-size:var(--react-international-phone-dial-code-preview-font-size,var(--react-international-phone-font-size,13px))}.react-international-phone-dial-code-preview--disabled{background-color:var(--react-international-phone-dial-code-preview-disabled-background-color,var(--react-international-phone-disabled-background-color,#f5f5f5));color:var(--react-international-phone-dial-code-preview-disabled-text-color,var(--react-international-phone-disabled-text-color,#666))}.react-international-phone-input-container{display:flex}.react-international-phone-input-container .react-international-phone-country-selector-button{border-radius:var(--react-international-phone-border-radius,4px);margin-right:-1px;border-bottom-right-radius:0;border-top-right-radius:0}.react-international-phone-input-container .react-international-phone-input{overflow:visible;height:var(--react-international-phone-height,36px);box-sizing:border-box;padding:0 8px;border:1px solid var(--react-international-phone-border-color,#dcdcdc);border-radius:var(--react-international-phone-border-radius,4px);margin:0;background-color:var(--react-international-phone-background-color,#fff);border-bottom-left-radius:0;border-top-left-radius:0;color:var(--react-international-phone-text-color,#222);font-family:inherit;font-size:var(--react-international-phone-font-size,13px)}.react-international-phone-input-container .react-international-phone-input:focus{outline:none}.react-international-phone-input-container .react-international-phone-input--disabled{background-color:var(--react-international-phone-disabled-background-color,#f5f5f5);color:var(--react-international-phone-disabled-text-color,#666)}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration{display:none}input::-webkit-clear-button{display:none}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{display:none}input::-webkit-calendar-picker-indicator{display:none}input::-webkit-datetime-edit,input::-webkit-datetime-edit-ampm-field,input::-webkit-datetime-edit-day-field,input::-webkit-datetime-edit-fields-wrapper,input::-webkit-datetime-edit-hour-field,input::-webkit-datetime-edit-minute-field,input::-webkit-datetime-edit-month-field,input::-webkit-datetime-edit-second-field,input::-webkit-datetime-edit-text,input::-webkit-datetime-edit-year-field{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border-width:0;border-style:solid;border-color:var(--gray-200)}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:var(--font-sans);font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:var(--font-mono);font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:var(--gray-400)}input::placeholder,textarea::placeholder{opacity:1;color:var(--gray-400)}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}:root{--font-sans:Rubik;--font-display:Sora;--font-mono:DM Mono;--gray-900:#191c20;--gray-700:#3c424b;--gray-500:#657080;--gray-400:#9ba3ae;--gray-300:#d6d9dd;--gray-200:#ebecef;--gray-100:#f3f4f5;--gray-50:#f9fafb;--gray-25:#fbfbfc;--gray-0:#fff;--success-900:#18964f;--success-800:#00ab11;--success-700:#00c313;--success-300:#d6f6de;--success-100:#f5fdf7;--error-900:#b71b58;--error-800:#dc0025;--error-700:#ff5a76;--error-300:#ffd7df;--error-100:#fff5f7;--warning-900:#b47500;--warning-800:#dc8f00;--warning-700:#ffb11b;--warning-300:#ffeece;--warning-100:#fff9ef;--info-900:#054cb7;--info-800:#0025dc;--info-700:#5a9cff;--info-300:#cee2ff;--info-100:#f3f8ff}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.inset-x-0{left:0;right:0}.bottom-0{bottom:0}.bottom-1{bottom:.25rem}.left-1{left:.25rem}.right-1{right:.25rem}.top-1{top:.25rem}.z-10{z-index:10}.z-50{z-index:50}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-top:.5rem;margin-bottom:.5rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-ml-3{margin-left:-.75rem}.mb-2{margin-bottom:.5rem}.ml-auto{margin-left:auto}.mr-2{margin-right:.5rem}.mt-1{margin-top:.25rem}.mt-24{margin-top:6rem}.mt-5{margin-top:1.25rem}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.size-6{width:1.5rem;height:1.5rem}.size-\[3\.25rem\]{width:3.25rem;height:3.25rem}.size-\[3\.5rem\]{width:3.5rem;height:3.5rem}.h-1\.5{height:.375rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-9{height:2.25rem}.h-\[1\.625rem\]{height:1.625rem}.h-\[3\.125rem\]{height:3.125rem}.h-\[4\.25rem\]{height:4.25rem}.h-\[96\%\]{height:96%}.h-\[var\(--radix-select-trigger-height\)\]{height:var(--radix-select-trigger-height)}.h-auto{height:auto}.h-full{height:100%}.max-h-\[11\.75rem\]{max-height:11.75rem}.w-10{width:2.5rem}.w-12{width:3rem}.w-2\.5{width:.625rem}.w-32{width:8rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-80{width:20rem}.w-\[300px\]{width:300px}.w-\[400px\]{width:400px}.w-auto{width:auto}.w-full{width:100%}.min-w-10{min-width:2.5rem}.min-w-12{min-width:3rem}.min-w-14{min-width:3.5rem}.min-w-28{min-width:7rem}.min-w-\[6rem\]{min-width:6rem}.min-w-\[var\(--radix-select-trigger-width\)\]{min-width:var(--radix-select-trigger-width)}.max-w-md{max-width:28rem}.flex-grow{flex-grow:1}.translate-x-0{--tw-translate-x:0px}.translate-x-0,.translate-x-4{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-4{--tw-translate-x:1rem}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.animate-none{animation:none}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-12{gap:3rem}.gap-2{gap:.5rem}.gap-4{gap:1rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-\[0\.875rem\]{border-radius:.875rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-none{border-radius:0}.rounded-xl{border-radius:.75rem}.rounded-t-2xl{border-top-left-radius:1rem;border-top-right-radius:1rem}.rounded-t-\[10px\]{border-top-left-radius:10px;border-top-right-radius:10px}.border{border-width:1px}.border-2{border-width:2px}.border-\[0\.09375rem\]{border-width:.09375rem}.border-none{border-style:none}.border-error-700{border-color:var(--error-700)}.border-gray-100{border-color:var(--gray-100)}.border-gray-200{border-color:var(--gray-200)}.border-gray-300{border-color:var(--gray-300)}.border-gray-400{border-color:var(--gray-400)}.border-gray-900{border-color:var(--gray-900)}.bg-error-100{background-color:var(--error-100)}.bg-gray-0{background-color:var(--gray-0)}.bg-gray-100{background-color:var(--gray-100)}.bg-gray-200{background-color:var(--gray-200)}.bg-gray-300{background-color:var(--gray-300)}.bg-gray-50{background-color:var(--gray-50)}.bg-gray-900{background-color:var(--gray-900)}.bg-info-100{background-color:var(--info-100)}.bg-success-100{background-color:var(--success-100)}.bg-transparent{background-color:transparent}.bg-warning-100{background-color:var(--warning-100)}.fill-current{fill:currentColor}.fill-gray-900{fill:var(--gray-900)}.fill-transparent{fill:transparent}.stroke-gray-400{stroke:var(--gray-400)}.p-2{padding:.5rem}.p-4{padding:1rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-4{padding-top:1rem;padding-bottom:1rem}.pb-2{padding-bottom:.5rem}.pb-20{padding-bottom:5rem}.pb-4{padding-bottom:1rem}.pr-2{padding-right:.5rem}.pt-2{padding-top:.5rem}.text-center{text-align:center}.font-display{font-family:var(--font-display)}.font-mono{font-family:var(--font-mono)}.font-sans{font-family:var(--font-sans)}.text-\[0\.5rem\]{font-size:.5rem}.text-\[1\.125rem\]{font-size:1.125rem}.text-\[1\.25rem\]{font-size:1.25rem}.text-\[1\.625rem\]{font-size:1.625rem}.text-\[1\.875rem\]{font-size:1.875rem}.text-\[2\.125rem\]{font-size:2.125rem}.text-\[2\.75rem\]{font-size:2.75rem}.text-\[3\.5rem\]{font-size:3.5rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.leading-\[1\.2\]{line-height:1.2}.leading-compact{line-height:1.3}.leading-narrow{line-height:1.2}.leading-none{line-height:1}.tracking-\[-0\.01em\]{letter-spacing:-.01em}.tracking-normal{letter-spacing:0}.text-error-700{color:var(--error-700)}.text-gray-0{color:var(--gray-0)}.text-gray-300{color:var(--gray-300)}.text-gray-400{color:var(--gray-400)}.text-gray-500{color:var(--gray-500)}.text-gray-900{color:var(--gray-900)}.text-info-700{color:var(--info-700)}.text-success-700{color:var(--success-700)}.text-transparent{color:transparent}.text-warning-700{color:var(--warning-700)}.opacity-20{opacity:.2}.opacity-25{opacity:.25}.opacity-40{opacity:.4}.shadow-card{--tw-shadow:0 0.625rem 1.875rem 0 #191c201a;--tw-shadow-colored:0 0.625rem 1.875rem 0 var(--tw-shadow-color)}.shadow-card,.shadow-none{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.shadow-regular-large{--tw-shadow:0 1rem 2.5rem -0.5rem #585c5f29;--tw-shadow-colored:0 1rem 2.5rem -0.5rem var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.file\:hidden::file-selector-button{display:none}.hover\:bg-gray-100:hover{background-color:var(--gray-100)}.hover\:bg-gray-300:hover{background-color:var(--gray-300)}.hover\:bg-gray-700:hover{background-color:var(--gray-700)}.hover\:bg-transparent:hover{background-color:transparent}.focus\:border-error-700:focus{border-color:var(--error-700)}.focus\:bg-error-100:focus{background-color:var(--error-100)}.focus\:bg-gray-0:focus{background-color:var(--gray-0)}.focus\:shadow-card:focus{--tw-shadow:0 0.625rem 1.875rem 0 #191c201a;--tw-shadow-colored:0 0.625rem 1.875rem 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.placeholder\:focus\:border-gray-200:focus::-moz-placeholder{border-color:var(--gray-200)}.placeholder\:focus\:border-gray-200:focus::placeholder{border-color:var(--gray-200)}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.active\:bg-gray-200:active{background-color:var(--gray-200)}.active\:bg-gray-400:active{background-color:var(--gray-400)}.active\:bg-gray-50:active{background-color:var(--gray-50)}.active\:bg-gray-500:active{background-color:var(--gray-500)}.active\:bg-transparent:active{background-color:transparent}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-gray-100:disabled{background-color:var(--gray-100)}.disabled\:bg-transparent:disabled{background-color:transparent}.disabled\:text-gray-300:disabled{color:var(--gray-300)}.disabled\:text-transparent:disabled{color:transparent}.disabled\:opacity-20:disabled{opacity:.2}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:opacity-90:disabled{opacity:.9}.disabled\:active\:bg-transparent:active:disabled{background-color:transparent}.group:focus-within .group-focus-within\:bg-gray-100{background-color:var(--gray-100)}.has-\[\:disabled\]\:opacity-50:has(:disabled){opacity:.5}.data-\[state\=checked\]\:translate-x-4[data-state=checked]{--tw-translate-x:1rem}.data-\[state\=checked\]\:translate-x-4[data-state=checked],.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked]{--tw-translate-x:0px}.data-\[state\=checked\]\:border-gray-900[data-state=checked]{border-color:var(--gray-900)}.data-\[state\=unchecked\]\:border-gray-300[data-state=unchecked]{border-color:var(--gray-300)}.data-\[state\=unchecked\]\:border-gray-400[data-state=unchecked]{border-color:var(--gray-400)}.data-\[state\=checked\]\:bg-gray-900[data-state=checked]{background-color:var(--gray-900)}.data-\[state\=unchecked\]\:bg-gray-300[data-state=unchecked]{background-color:var(--gray-300)}.data-\[state\=unchecked\]\:bg-transparent[data-state=unchecked]{background-color:transparent}.data-\[placeholder\]\:text-gray-400[data-placeholder]{color:var(--gray-400)}@media (min-width:768px){.md\:grid-cols-\[1fr_2fr\]{grid-template-columns:1fr 2fr}}.\[\&\>span\:first-of-type\]\:line-clamp-1>span:first-of-type{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}
1
+ .react-international-phone-country-selector{position:relative}.react-international-phone-country-selector-button{display:flex;height:var(--react-international-phone-height,36px);box-sizing:border-box;align-items:center;justify-content:center;padding:0;border:1px solid var(--react-international-phone-country-selector-border-color,var(--react-international-phone-border-color,#dcdcdc));margin:0;-moz-appearance:button;appearance:button;-webkit-appearance:button;background-color:var(--react-international-phone-country-selector-background-color,var(--react-international-phone-background-color,#fff));cursor:pointer;text-transform:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.react-international-phone-country-selector-button:hover{background-color:var(--react-international-phone-country-selector-background-color-hover,#f5f5f5)}.react-international-phone-country-selector-button--hide-dropdown{cursor:auto}.react-international-phone-country-selector-button--hide-dropdown:hover{background-color:transparent}.react-international-phone-country-selector-button__button-content{display:flex;align-items:center;justify-content:center}.react-international-phone-country-selector-button__flag-emoji{margin:0 4px}.react-international-phone-country-selector-button__flag-emoji--disabled{opacity:.75}.react-international-phone-country-selector-button__dropdown-arrow{border-top:var(--react-international-phone-country-selector-arrow-size,4px) solid var(--react-international-phone-country-selector-arrow-color,#777);border-right:var(--react-international-phone-country-selector-arrow-size,4px) solid transparent;border-left:var(--react-international-phone-country-selector-arrow-size,4px) solid transparent;margin-right:4px;transition:all .1s ease-out}.react-international-phone-country-selector-button__dropdown-arrow--active{transform:rotateX(180deg)}.react-international-phone-country-selector-button__dropdown-arrow--disabled{border-top-color:var(--react-international-phone-disabled-country-selector-arrow-color,#999)}.react-international-phone-country-selector-button--disabled{cursor:auto}.react-international-phone-country-selector-button--disabled,.react-international-phone-country-selector-button--disabled:hover{background-color:var(--react-international-phone-disabled-country-selector-background-color,var(--react-international-phone-disabled-background-color,#f5f5f5))}.react-international-phone-flag-emoji{width:var(--react-international-phone-flag-width,24px);height:var(--react-international-phone-flag-height,24px);box-sizing:border-box}.react-international-phone-country-selector-dropdown{position:absolute;z-index:1;top:var(--react-international-phone-dropdown-top,44px);left:var(--react-international-phone-dropdown-left,0);display:flex;width:300px;max-height:200px;flex-direction:column;padding:4px 0;margin:0;background-color:var(--react-international-phone-dropdown-item-background-color,var(--react-international-phone-background-color,#fff));box-shadow:var(--react-international-phone-dropdown-shadow,2px 2px 16px rgba(0,0,0,.25));color:var(--react-international-phone-dropdown-item-text-color,var(--react-international-phone-text-color,#222));list-style:none;overflow-y:scroll}.react-international-phone-country-selector-dropdown__preferred-list-divider{height:1px;border:none;margin:var(--react-international-phone-dropdown-preferred-list-divider-margin,0);background:var(--react-international-phone-dropdown-preferred-list-divider-color,var(--react-international-phone-border-color,#dcdcdc))}.react-international-phone-country-selector-dropdown__list-item{display:flex;min-height:var(--react-international-phone-dropdown-item-height,28px);box-sizing:border-box;align-items:center;padding:2px 8px}.react-international-phone-country-selector-dropdown__list-item-flag-emoji{margin-right:8px}.react-international-phone-country-selector-dropdown__list-item-country-name{overflow:hidden;margin-right:8px;font-size:var(--react-international-phone-dropdown-item-font-size,14px);text-overflow:ellipsis;white-space:nowrap}.react-international-phone-country-selector-dropdown__list-item-dial-code{color:var(--react-international-phone-dropdown-item-dial-code-color,gray);font-size:var(--react-international-phone-dropdown-item-font-size,14px)}.react-international-phone-country-selector-dropdown__list-item:hover{background-color:var(--react-international-phone-selected-dropdown-item-background-color,var(--react-international-phone-selected-dropdown-item-background-color,#f5f5f5));cursor:pointer}.react-international-phone-country-selector-dropdown__list-item--focused,.react-international-phone-country-selector-dropdown__list-item--selected{background-color:var(--react-international-phone-selected-dropdown-item-background-color,#f5f5f5);color:var(--react-international-phone-selected-dropdown-item-text-color,var(--react-international-phone-text-color,#222))}.react-international-phone-country-selector-dropdown__list-item--focused .react-international-phone-country-selector-dropdown__list-item-dial-code,.react-international-phone-country-selector-dropdown__list-item--selected .react-international-phone-country-selector-dropdown__list-item-dial-code{color:var(--react-international-phone-selected-dropdown-item-dial-code-color,var(--react-international-phone-dropdown-item-dial-code-color,gray))}.react-international-phone-country-selector-dropdown__list-item--focused{background-color:var(--react-international-phone-selected-dropdown-item-background-color,var(--react-international-phone-selected-dropdown-item-background-color,#f5f5f5))}.react-international-phone-dial-code-preview{display:flex;align-items:center;justify-content:center;padding:0 8px;border:1px solid var(--react-international-phone-dial-code-preview-border-color,var(--react-international-phone-border-color,#dcdcdc));margin-right:-1px;background-color:var(--react-international-phone-dial-code-preview-background-color,var(--react-international-phone-background-color,#fff));color:var(--react-international-phone-dial-code-preview-text-color,var(--react-international-phone-text-color,#222));font-size:var(--react-international-phone-dial-code-preview-font-size,var(--react-international-phone-font-size,13px))}.react-international-phone-dial-code-preview--disabled{background-color:var(--react-international-phone-dial-code-preview-disabled-background-color,var(--react-international-phone-disabled-background-color,#f5f5f5));color:var(--react-international-phone-dial-code-preview-disabled-text-color,var(--react-international-phone-disabled-text-color,#666))}.react-international-phone-input-container{display:flex}.react-international-phone-input-container .react-international-phone-country-selector-button{border-radius:var(--react-international-phone-border-radius,4px);margin-right:-1px;border-bottom-right-radius:0;border-top-right-radius:0}.react-international-phone-input-container .react-international-phone-input{overflow:visible;height:var(--react-international-phone-height,36px);box-sizing:border-box;padding:0 8px;border:1px solid var(--react-international-phone-border-color,#dcdcdc);border-radius:var(--react-international-phone-border-radius,4px);margin:0;background-color:var(--react-international-phone-background-color,#fff);border-bottom-left-radius:0;border-top-left-radius:0;color:var(--react-international-phone-text-color,#222);font-family:inherit;font-size:var(--react-international-phone-font-size,13px)}.react-international-phone-input-container .react-international-phone-input:focus{outline:none}.react-international-phone-input-container .react-international-phone-input--disabled{background-color:var(--react-international-phone-disabled-background-color,#f5f5f5);color:var(--react-international-phone-disabled-text-color,#666)}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration{display:none}input::-webkit-clear-button{display:none}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{display:none}input::-webkit-calendar-picker-indicator{display:none}input::-webkit-datetime-edit,input::-webkit-datetime-edit-ampm-field,input::-webkit-datetime-edit-day-field,input::-webkit-datetime-edit-fields-wrapper,input::-webkit-datetime-edit-hour-field,input::-webkit-datetime-edit-minute-field,input::-webkit-datetime-edit-month-field,input::-webkit-datetime-edit-second-field,input::-webkit-datetime-edit-text,input::-webkit-datetime-edit-year-field{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border-width:0;border-style:solid;border-color:var(--gray-200)}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:var(--font-sans);font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:var(--font-mono);font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:var(--gray-400)}input::placeholder,textarea::placeholder{opacity:1;color:var(--gray-400)}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}:root{--font-sans:Rubik;--font-display:Sora;--font-mono:DM Mono;--gray-900:#191c20;--gray-700:#3c424b;--gray-500:#657080;--gray-400:#9ba3ae;--gray-300:#d6d9dd;--gray-200:#ebecef;--gray-100:#f3f4f5;--gray-50:#f9fafb;--gray-25:#fbfbfc;--gray-0:#fff;--success-900:#18964f;--success-800:#00ab11;--success-700:#00c313;--success-300:#d6f6de;--success-100:#f5fdf7;--error-900:#b71b58;--error-800:#dc0025;--error-700:#ff5a76;--error-300:#ffd7df;--error-100:#fff5f7;--warning-900:#b47500;--warning-800:#dc8f00;--warning-700:#ffb11b;--warning-300:#ffeece;--warning-100:#fff9ef;--info-900:#054cb7;--info-800:#0025dc;--info-700:#5a9cff;--info-300:#cee2ff;--info-100:#f3f8ff}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.inset-x-0{left:0;right:0}.bottom-0{bottom:0}.bottom-1{bottom:.25rem}.left-1{left:.25rem}.right-1{right:.25rem}.top-1{top:.25rem}.z-10{z-index:10}.z-50{z-index:50}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-top:.5rem;margin-bottom:.5rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-ml-3{margin-left:-.75rem}.mb-2{margin-bottom:.5rem}.ml-auto{margin-left:auto}.mr-2{margin-right:.5rem}.mt-1{margin-top:.25rem}.mt-24{margin-top:6rem}.mt-5{margin-top:1.25rem}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.size-5{width:1.25rem;height:1.25rem}.size-6{width:1.5rem;height:1.5rem}.size-\[3\.25rem\]{width:3.25rem;height:3.25rem}.size-\[3\.5rem\]{width:3.5rem;height:3.5rem}.h-1\.5{height:.375rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-9{height:2.25rem}.h-\[1\.625rem\]{height:1.625rem}.h-\[3\.125rem\]{height:3.125rem}.h-\[4\.25rem\]{height:4.25rem}.h-\[96\%\]{height:96%}.h-\[var\(--radix-select-trigger-height\)\]{height:var(--radix-select-trigger-height)}.h-auto{height:auto}.h-full{height:100%}.max-h-\[11\.75rem\]{max-height:11.75rem}.w-10{width:2.5rem}.w-12{width:3rem}.w-2\.5{width:.625rem}.w-32{width:8rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-80{width:20rem}.w-\[300px\]{width:300px}.w-\[400px\]{width:400px}.w-auto{width:auto}.w-full{width:100%}.min-w-10{min-width:2.5rem}.min-w-12{min-width:3rem}.min-w-14{min-width:3.5rem}.min-w-28{min-width:7rem}.min-w-\[6rem\]{min-width:6rem}.min-w-\[var\(--radix-select-trigger-width\)\]{min-width:var(--radix-select-trigger-width)}.max-w-md{max-width:28rem}.flex-grow{flex-grow:1}.translate-x-0{--tw-translate-x:0px}.translate-x-0,.translate-x-4{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-4{--tw-translate-x:1rem}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.animate-none{animation:none}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-12{gap:3rem}.gap-2{gap:.5rem}.gap-4{gap:1rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-\[0\.875rem\]{border-radius:.875rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-none{border-radius:0}.rounded-xl{border-radius:.75rem}.rounded-t-2xl{border-top-left-radius:1rem;border-top-right-radius:1rem}.rounded-t-\[10px\]{border-top-left-radius:10px;border-top-right-radius:10px}.border{border-width:1px}.border-2{border-width:2px}.border-\[0\.09375rem\]{border-width:.09375rem}.border-none{border-style:none}.border-error-700{border-color:var(--error-700)}.border-gray-100{border-color:var(--gray-100)}.border-gray-200{border-color:var(--gray-200)}.border-gray-300{border-color:var(--gray-300)}.border-gray-400{border-color:var(--gray-400)}.border-gray-900{border-color:var(--gray-900)}.bg-error-100{background-color:var(--error-100)}.bg-gray-0{background-color:var(--gray-0)}.bg-gray-100{background-color:var(--gray-100)}.bg-gray-200{background-color:var(--gray-200)}.bg-gray-300{background-color:var(--gray-300)}.bg-gray-50{background-color:var(--gray-50)}.bg-gray-900{background-color:var(--gray-900)}.bg-info-100{background-color:var(--info-100)}.bg-success-100{background-color:var(--success-100)}.bg-transparent{background-color:transparent}.bg-warning-100{background-color:var(--warning-100)}.fill-current{fill:currentColor}.fill-gray-900{fill:var(--gray-900)}.fill-transparent{fill:transparent}.stroke-gray-400{stroke:var(--gray-400)}.p-2{padding:.5rem}.p-4{padding:1rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-4{padding-top:1rem;padding-bottom:1rem}.pb-2{padding-bottom:.5rem}.pb-20{padding-bottom:5rem}.pb-4{padding-bottom:1rem}.pr-2{padding-right:.5rem}.pt-2{padding-top:.5rem}.text-center{text-align:center}.font-display{font-family:var(--font-display)}.font-mono{font-family:var(--font-mono)}.font-sans{font-family:var(--font-sans)}.text-\[0\.5rem\]{font-size:.5rem}.text-\[1\.125rem\]{font-size:1.125rem}.text-\[1\.25rem\]{font-size:1.25rem}.text-\[1\.625rem\]{font-size:1.625rem}.text-\[1\.875rem\]{font-size:1.875rem}.text-\[2\.125rem\]{font-size:2.125rem}.text-\[2\.75rem\]{font-size:2.75rem}.text-\[3\.5rem\]{font-size:3.5rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.leading-\[1\.2\]{line-height:1.2}.leading-compact{line-height:1.3}.leading-narrow{line-height:1.2}.leading-none{line-height:1}.tracking-\[-0\.01em\]{letter-spacing:-.01em}.tracking-normal{letter-spacing:0}.text-error-700{color:var(--error-700)}.text-gray-0{color:var(--gray-0)}.text-gray-300{color:var(--gray-300)}.text-gray-400{color:var(--gray-400)}.text-gray-500{color:var(--gray-500)}.text-gray-900{color:var(--gray-900)}.text-info-700{color:var(--info-700)}.text-success-700{color:var(--success-700)}.text-transparent{color:transparent}.text-warning-700{color:var(--warning-700)}.opacity-20{opacity:.2}.opacity-25{opacity:.25}.opacity-40{opacity:.4}.shadow-card{--tw-shadow:0 0.625rem 1.875rem 0 #191c201a;--tw-shadow-colored:0 0.625rem 1.875rem 0 var(--tw-shadow-color)}.shadow-card,.shadow-none{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.shadow-regular-large{--tw-shadow:0 1rem 2.5rem -0.5rem #585c5f29;--tw-shadow-colored:0 1rem 2.5rem -0.5rem var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.file\:hidden::file-selector-button{display:none}.hover\:bg-gray-100:hover{background-color:var(--gray-100)}.hover\:bg-gray-300:hover{background-color:var(--gray-300)}.hover\:bg-gray-700:hover{background-color:var(--gray-700)}.hover\:bg-transparent:hover{background-color:transparent}.focus\:border-error-700:focus{border-color:var(--error-700)}.focus\:bg-error-100:focus{background-color:var(--error-100)}.focus\:bg-gray-0:focus{background-color:var(--gray-0)}.focus\:shadow-card:focus{--tw-shadow:0 0.625rem 1.875rem 0 #191c201a;--tw-shadow-colored:0 0.625rem 1.875rem 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.placeholder\:focus\:border-gray-200:focus::-moz-placeholder{border-color:var(--gray-200)}.placeholder\:focus\:border-gray-200:focus::placeholder{border-color:var(--gray-200)}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.active\:bg-gray-200:active{background-color:var(--gray-200)}.active\:bg-gray-400:active{background-color:var(--gray-400)}.active\:bg-gray-50:active{background-color:var(--gray-50)}.active\:bg-gray-500:active{background-color:var(--gray-500)}.active\:bg-transparent:active{background-color:transparent}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-gray-100:disabled{background-color:var(--gray-100)}.disabled\:bg-transparent:disabled{background-color:transparent}.disabled\:text-gray-300:disabled{color:var(--gray-300)}.disabled\:text-transparent:disabled{color:transparent}.disabled\:opacity-20:disabled{opacity:.2}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:opacity-90:disabled{opacity:.9}.disabled\:active\:bg-transparent:active:disabled{background-color:transparent}.group:focus-within .group-focus-within\:bg-gray-100{background-color:var(--gray-100)}.has-\[\:disabled\]\:opacity-50:has(:disabled){opacity:.5}.data-\[state\=checked\]\:translate-x-4[data-state=checked]{--tw-translate-x:1rem}.data-\[state\=checked\]\:translate-x-4[data-state=checked],.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked]{--tw-translate-x:0px}.data-\[state\=checked\]\:border-gray-900[data-state=checked]{border-color:var(--gray-900)}.data-\[state\=unchecked\]\:border-gray-300[data-state=unchecked]{border-color:var(--gray-300)}.data-\[state\=unchecked\]\:border-gray-400[data-state=unchecked]{border-color:var(--gray-400)}.data-\[state\=checked\]\:bg-gray-900[data-state=checked]{background-color:var(--gray-900)}.data-\[state\=unchecked\]\:bg-gray-300[data-state=unchecked]{background-color:var(--gray-300)}.data-\[state\=unchecked\]\:bg-transparent[data-state=unchecked]{background-color:transparent}.data-\[placeholder\]\:text-gray-400[data-placeholder]{color:var(--gray-400)}@media (min-width:768px){.md\:grid-cols-\[1fr_2fr\]{grid-template-columns:1fr 2fr}}.\[\&\>span\:first-of-type\]\:line-clamp-1>span:first-of-type{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}