@klu_dev/ui-klu-green 1.2.11 → 1.2.13

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
@@ -28,6 +28,7 @@ npm install @klu_dev/ui-klu-green
28
28
  - GridCard
29
29
  - CheckBox
30
30
  - InputPhone
31
+ - IconBadge
31
32
 
32
33
  ## Antes de comenzar a agregar componentes
33
34
 
@@ -962,4 +963,39 @@ export default RegistrationForm;
962
963
  | `onChange` | `(value: string) => void` | *Opcional* | Función callback que se ejecuta cada vez que el usuario escribe o modifica el valor. |
963
964
  | `error` | `string` | *Opcional* | Mensaje de error. Si se proporciona, el componente cambia visualmente a un estado de error y despliega el texto. |
964
965
  | `ladas` | `Array<{ label: string; code: string }>` | *Opcional* | Listado de códigos telefónicos de país para el menú desplegable. |
965
- | `defaultLadaIndex` | `number` | *Opcional* | Índice del arreglo de `ladas` que se seleccionará de manera inicial por defecto. |
966
+ | `defaultLadaIndex` | `number` | *Opcional* | Índice del arreglo de `ladas` que se seleccionará de manera inicial por defecto. |
967
+
968
+
969
+ ## Uso de IconBadge
970
+ El componente IconBadge es un contenedor circular optimizado para destacar iconografía de la interfaz o elementos de marca. Permite envolver dinámicamente cualquier elemento SVG/icono pasándole un elemento JSX instanciado, centralizando el control de colores corporativos (`uiklu-bg-primary300` y `uiklu-text-basewhite`) junto con un centrado de precisión matemática mediante Flexbox en variantes fijas de tamaño.
971
+
972
+ ```tsx
973
+ import React from 'react';
974
+ import { IconBadge } from './components/IconBadge';
975
+ import { Icons } from '../../assets/icons';
976
+
977
+ const BadgeContainer = () => {
978
+ return (
979
+ <div className="uiklu-flex uiklu-gap-4 uiklu-p-4">
980
+ <IconBadge
981
+ size="md"
982
+ icon={Icons.SEAL}
983
+ />
984
+
985
+ <IconBadge
986
+ size="lg"
987
+ icon={Icons.BOOKMARK}
988
+ />
989
+ </div>
990
+ );
991
+ };
992
+
993
+ export default BadgeContainer;
994
+ ```
995
+
996
+ ### Props de IconBadge
997
+
998
+ | Prop | Tipo | Por Defecto | Descripción |
999
+ | :--- | :--- | :--- | :--- |
1000
+ | `icon` | `React.ReactElement<{ className?: string }>` | *Requerido* | El elemento del icono a renderizar en formato JSX (ej: `<Icons.SEAL />`). Recibe de forma transparente las utilidades de tamaño asignadas por el contenedor. |
1001
+ | `size` | `'sm' \| 'md' \| 'lg'` | `'sm'` | Define las dimensiones fijas en píxeles tanto del contenedor circular como del icono interior (`sm`: 24px/14px, `md`: 30px/20px, `lg`: 36px/26px). |
package/dist/index.css CHANGED
@@ -462,6 +462,10 @@ button,
462
462
  .uiklu-h-\[100px\]{
463
463
  height: 100px;
464
464
 
465
+ }
466
+ .uiklu-h-\[14px\]{
467
+ height: 14px;
468
+
465
469
  }
466
470
  .uiklu-h-\[1px\]{
467
471
  height: 1px;
@@ -474,10 +478,22 @@ button,
474
478
  .uiklu-h-\[24px\]{
475
479
  height: 24px;
476
480
 
481
+ }
482
+ .uiklu-h-\[26px\]{
483
+ height: 26px;
484
+
485
+ }
486
+ .uiklu-h-\[30px\]{
487
+ height: 30px;
488
+
477
489
  }
478
490
  .uiklu-h-\[34px\]{
479
491
  height: 34px;
480
492
 
493
+ }
494
+ .uiklu-h-\[36px\]{
495
+ height: 36px;
496
+
481
497
  }
482
498
  .uiklu-h-\[40px\]{
483
499
  height: 40px;
@@ -590,6 +606,10 @@ button,
590
606
  .uiklu-w-\[141px\]{
591
607
  width: 141px;
592
608
 
609
+ }
610
+ .uiklu-w-\[14px\]{
611
+ width: 14px;
612
+
593
613
  }
594
614
  .uiklu-w-\[150px\]{
595
615
  width: 150px;
@@ -610,10 +630,22 @@ button,
610
630
  .uiklu-w-\[20px\]{
611
631
  width: 20px;
612
632
 
633
+ }
634
+ .uiklu-w-\[24px\]{
635
+ width: 24px;
636
+
613
637
  }
614
638
  .uiklu-w-\[250px\]{
615
639
  width: 250px;
616
640
 
641
+ }
642
+ .uiklu-w-\[26px\]{
643
+ width: 26px;
644
+
645
+ }
646
+ .uiklu-w-\[30px\]{
647
+ width: 30px;
648
+
617
649
  }
618
650
  .uiklu-w-\[317px\]{
619
651
  width: 317px;
@@ -622,6 +654,10 @@ button,
622
654
  .uiklu-w-\[350px\]{
623
655
  width: 350px;
624
656
 
657
+ }
658
+ .uiklu-w-\[36px\]{
659
+ width: 36px;
660
+
625
661
  }
626
662
  .uiklu-w-\[383px\]{
627
663
  width: 383px;
package/dist/index.d.ts CHANGED
@@ -6,9 +6,9 @@ import * as SelectPrimitive from '@radix-ui/react-select';
6
6
  import * as react_jsx_runtime from 'react/jsx-runtime';
7
7
  import * as ToastPrimitives from '@radix-ui/react-toast';
8
8
 
9
- type InputSize = "sm" | "md" | "lg" | "full";
9
+ type InputSize$1 = "sm" | "md" | "lg" | "full";
10
10
  interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> {
11
- size?: InputSize;
11
+ size?: InputSize$1;
12
12
  error?: string;
13
13
  isSearchable?: boolean;
14
14
  onSearchClick?: () => void;
@@ -128,8 +128,10 @@ interface NavItem {
128
128
 
129
129
  interface SidebarTabsProps {
130
130
  items: NavItem[];
131
+ activeTab: string;
132
+ onTabChange: (id: string) => void;
131
133
  }
132
- declare function SidebarTabs({ items }: SidebarTabsProps): react_jsx_runtime.JSX.Element;
134
+ declare function SidebarTabs({ items, activeTab, onTabChange }: SidebarTabsProps): react_jsx_runtime.JSX.Element;
133
135
 
134
136
  interface MobileMenuDrawerProps {
135
137
  isOpen: boolean;
@@ -173,6 +175,10 @@ declare const Icons: {
173
175
  GAMES: react_jsx_runtime.JSX.Element;
174
176
  CHECKED: react_jsx_runtime.JSX.Element;
175
177
  FILTER: react_jsx_runtime.JSX.Element;
178
+ SEAL: react_jsx_runtime.JSX.Element;
179
+ BOOKMARK: react_jsx_runtime.JSX.Element;
180
+ EDIT: react_jsx_runtime.JSX.Element;
181
+ DELETE: react_jsx_runtime.JSX.Element;
176
182
  };
177
183
 
178
184
  declare const searchSelectTriggerVariants: (props?: ({
@@ -219,4 +225,31 @@ interface CheckboxProps {
219
225
  }
220
226
  declare const Checkbox: React__default.FC<CheckboxProps>;
221
227
 
222
- export { BackButton, BalanceInfo, Button, Checkbox, type CheckboxProps, GridCard, Icons, Input, InputCode, LoadingScreen, MobileMenuDrawer, Modal, PromoBanner, SearchSelect, Select, SidebarTabs, ToastAction, Toaster, Typography, useToast };
228
+ interface LadaOption {
229
+ code: string;
230
+ label: string;
231
+ }
232
+ type InputSize = "sm" | "md" | "lg" | "full";
233
+ interface InputPhoneProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size" | "value" | "onChange"> {
234
+ size?: InputSize;
235
+ error?: string;
236
+ value?: string;
237
+ onChange?: (value: string) => void;
238
+ ladas?: LadaOption[];
239
+ defaultLadaIndex?: number;
240
+ }
241
+ declare const InputPhone: React.ForwardRefExoticComponent<InputPhoneProps & React.RefAttributes<HTMLInputElement>>;
242
+
243
+ type IconBadgeSize = 'sm' | 'md' | 'lg';
244
+ interface IconBadgeProps {
245
+ icon: React.ReactElement<{
246
+ className?: string;
247
+ }>;
248
+ /**
249
+ * @default 'sm'
250
+ */
251
+ size?: IconBadgeSize;
252
+ }
253
+ declare const IconBadge: React.FC<IconBadgeProps>;
254
+
255
+ export { BackButton, BalanceInfo, Button, Checkbox, type CheckboxProps, GridCard, IconBadge, type IconBadgeProps, Icons, Input, InputCode, InputPhone, type InputPhoneProps, type LadaOption, LoadingScreen, MobileMenuDrawer, Modal, PromoBanner, SearchSelect, Select, SidebarTabs, ToastAction, Toaster, Typography, useToast };
package/dist/index.js CHANGED
@@ -645,6 +645,54 @@ var KluIcon = ({ className }) => /* @__PURE__ */ jsxs7("svg", { xmlns: "http://w
645
645
  /* @__PURE__ */ jsx7("path", { d: "M23.837 27.174L14.0828 13.1165C18.0321 9.38277 21.5202 4.97216 23.837 0H18.4225C15.2728 5.5114 10.5798 10.465 5.23224 13.9347V0H0V30.997H5.23596V19.5651C6.93913 18.6131 8.57909 17.5532 10.1372 16.3966L19.9918 31.0007H26.4884L23.8333 27.1777L23.837 27.174Z", fill: "#F2F0EF" }),
646
646
  /* @__PURE__ */ jsx7("path", { d: "M64.4064 30.9527C66.3349 30.9527 67.8983 29.3892 67.8983 27.4606C67.8983 25.532 66.3349 23.9686 64.4064 23.9686C62.4779 23.9686 60.9146 25.532 60.9146 27.4606C60.9146 29.3892 62.4779 30.9527 64.4064 30.9527Z", fill: "#FDA400" })
647
647
  ] });
648
+ var SealIcon = ({ className }) => /* @__PURE__ */ jsx7(
649
+ "svg",
650
+ {
651
+ xmlns: "http://www.w3.org/2000/svg",
652
+ width: "14",
653
+ height: "14",
654
+ viewBox: "0 0 14 14",
655
+ fill: "none",
656
+ className,
657
+ children: /* @__PURE__ */ jsx7("path", { d: "M13.1163 5.42625C12.8806 5.18 12.6369 4.92625 12.545 4.70312C12.46 4.49875 \n 12.455 4.16 12.45 3.83187C12.4406 3.22187 12.4306 2.53062 11.95 2.05C11.4694 1.56937 \n 10.7781 1.55937 10.1681 1.55C9.84 1.545 9.50125 1.54 9.29688 1.455C9.07375 1.36312 \n 8.82 1.11937 8.57375 0.88375C8.14187 0.469375 7.6525 0 7 0C6.3475 0 5.85812 0.469375 \n 5.42625 0.88375C5.18 1.11937 4.92625 1.36312 4.70312 1.455C4.5 1.54 4.16 1.545 3.83187 \n 1.55C3.22187 1.55937 2.53062 1.56937 2.05 2.05C1.56937 2.53062 1.5625 3.22187 1.55 \n 3.83187C1.545 4.16 1.54 4.49875 1.455 4.70312C1.36312 4.92625 1.11937 5.18 0.88375 \n 5.42625C0.469375 5.8575 0 6.3475 0 7C0 7.6525 0.469375 8.14187 0.88375 8.57375C1.11937 \n 8.82 1.36312 9.07375 1.455 9.29688C1.54 9.50125 1.545 9.84 1.55 10.1681C1.55937 \n 10.7781 1.56937 11.4694 2.05 11.95C2.53062 12.4306 3.22187 12.4406 3.83187 12.45C4.16 \n 12.455 4.49875 12.46 4.70312 12.545C4.92562 12.6369 5.18 12.8806 5.42625 13.1163C5.85812 \n 13.5306 6.3475 14 7 14C7.6525 14 8.14187 13.5306 8.57375 13.1163C8.82 12.8806 9.07375 \n 12.6369 9.29688 12.545C9.50125 12.46 9.84 12.455 10.1681 12.45C10.7781 12.4406 11.4694 \n 12.4306 11.95 11.95C12.4306 11.4694 12.4406 10.7781 12.45 10.1681C12.455 9.84 12.46 \n 9.50125 12.545 9.29688C12.6369 9.07438 12.8806 8.82 13.1163 8.57375C13.5306 8.1425 \n 14 7.6525 14 7C14 6.3475 13.5306 5.85812 13.1163 5.42625ZM12.3944 7.88188C12.095 \n 8.19438 11.785 8.5175 11.6206 8.91438C11.4631 9.29563 11.4562 9.73125 11.45 \n 10.1531C11.4437 10.5906 11.4369 11.0488 11.2425 11.2425C11.0481 11.4363 10.5931 \n 11.4437 10.1531 11.45C9.73125 11.4562 9.29563 11.4631 8.91438 11.6206C8.5175 11.785 \n 8.19438 12.095 7.88188 12.3944C7.56938 12.6937 7.25 13 7 13C6.75 13 6.42875 12.6925 \n 6.11812 12.3944C5.8075 12.0962 5.4825 11.785 5.08563 11.6206C4.70438 11.4631 4.26875 \n 11.4562 3.84688 11.45C3.40938 11.4437 2.95125 11.4369 2.7575 11.2425C2.56375 11.0481 \n 2.55625 10.5931 2.55 10.1531C2.54375 9.73125 2.53687 9.29563 2.37937 8.91438C2.215 \n 8.5175 1.905 8.19438 1.60562 7.88188C1.30625 7.56938 1 7.25 1 7C1 6.75 1.3075 6.42875 \n 1.60562 6.11812C1.90375 5.8075 2.215 5.4825 2.37937 5.08563C2.53687 4.70438 2.54375 \n 4.26875 2.55 3.84688C2.55625 3.40938 2.56312 2.95125 2.7575 2.7575C2.95187 2.56375 \n 3.40688 2.55625 3.84688 2.55C4.26875 2.54375 4.70438 2.53687 5.08563 2.37937C5.4825 \n 2.215 5.80562 1.905 6.11812 1.60562C6.43062 1.30625 6.75 1 7 1C7.25 1 7.57125 1.3075 \n 7.88188 1.60562C8.1925 1.90375 8.5175 2.215 8.91438 2.37937C9.29563 2.53687 9.73125 \n 2.54375 10.1531 2.55C10.5906 2.55625 11.0488 2.56312 11.2425 2.7575C11.4363 2.95187 \n 11.4437 3.40688 11.45 3.84688C11.4562 4.26875 11.4631 4.70438 11.6206 5.08563C11.785 \n 5.4825 12.095 5.80562 12.3944 6.11812C12.6937 6.43062 13 6.75 13 7C13 7.25 12.6925 \n 7.57125 12.3944 7.88188Z", fill: "currentColor" })
658
+ }
659
+ );
660
+ var BookMarkIcon = ({ className }) => /* @__PURE__ */ jsx7(
661
+ "svg",
662
+ {
663
+ xmlns: "http://www.w3.org/2000/svg",
664
+ width: "16",
665
+ height: "16",
666
+ viewBox: "0 0 16 16",
667
+ fill: "none",
668
+ className,
669
+ children: /* @__PURE__ */ jsx7("path", { d: "M11.5 2H4.5C4.23478 2 3.98043 2.10536 3.79289 2.29289C3.60536 2.48043 3.5 \n 2.73478 3.5 3V14C3.50004 14.0892 3.52397 14.1768 3.56929 14.2537C3.6146 14.3306 3.67967 \n 14.3939 3.75772 14.4371C3.83578 14.4804 3.92399 14.5019 4.01319 14.4996C4.10239 14.4972 \n 4.18933 14.471 4.265 14.4237L8 12.0894L11.7356 14.4237C11.8113 14.4709 11.8982 14.4969 \n 11.9873 14.4992C12.0764 14.5015 12.1645 14.4799 12.2424 14.4367C12.3204 14.3934 12.3854 \n 14.3302 12.4307 14.2534C12.4759 14.1766 12.4999 14.0891 12.5 14V3C12.5 2.73478 12.3946 \n 2.48043 12.2071 2.29289C12.0196 2.10536 11.7652 2 11.5 2ZM11.5 13.0981L8.26437 \n 11.0763C8.18491 11.0266 8.09308 11.0002 7.99937 11.0002C7.90566 11.0002 7.81384 11.0266 \n 7.73438 11.0763L4.5 13.0981V3H11.5V13.0981Z", fill: "currentColor" })
670
+ }
671
+ );
672
+ var EditIcon = ({ className }) => /* @__PURE__ */ jsx7(
673
+ "svg",
674
+ {
675
+ xmlns: "http://www.w3.org/2000/svg",
676
+ width: "16",
677
+ height: "16",
678
+ viewBox: "0 0 16 16",
679
+ fill: "none",
680
+ className,
681
+ children: /* @__PURE__ */ jsx7("path", { d: "M14.3538 3.64615L12.3538 1.64615C12.3073 1.59967 12.2522 1.56279 12.1915 \n 1.53763C12.1308 1.51246 12.0657 1.49951 12 1.49951C11.9343 1.49951 11.8692 1.51246 \n 11.8085 1.53763C11.7478 1.56279 11.6927 1.59967 11.6462 1.64615L5.64625 7.64615C5.59983\n 7.69262 5.56303 7.74778 5.53793 7.80848C5.51284 7.86918 5.49995 7.93422 5.5 \n 7.99991V9.9999C5.5 10.1325 5.55268 10.2597 5.64645 10.3535C5.74021 10.4472 5.86739 \n 10.4999 6 10.4999H8C8.06568 10.5 8.13073 10.4871 8.19143 10.462C8.25212 10.4369 \n 8.30728 10.4001 8.35375 10.3537L14.3538 4.35366C14.4002 4.30722 14.4371 4.25207 \n 14.4623 4.19138C14.4874 4.13068 14.5004 4.06561 14.5004 3.99991C14.5004 3.9342 \n 14.4874 3.86913 14.4623 3.80843C14.4371 3.74774 14.4002 3.69259 14.3538 3.64615ZM7.79313 \n 9.4999H6.5V8.20678L10.5 4.20678L11.7931 5.49991L7.79313 9.4999ZM12.5 4.79303L11.2069 \n 3.49991L12 2.70678L13.2931 3.99991L12.5 4.79303ZM14 7.99991V12.9999C14 13.2651 13.8946 \n 13.5195 13.7071 13.707C13.5196 13.8945 13.2652 13.9999 13 13.9999H3C2.73478 13.9999 \n 2.48043 13.8945 2.29289 13.707C2.10536 13.5195 2 13.2651 2 12.9999V2.9999C2 2.73469 \n 2.10536 2.48033 2.29289 2.2928C2.48043 2.10526 2.73478 1.9999 3 1.9999H8C8.13261 \n 1.9999 8.25979 2.05258 8.35355 2.14635C8.44732 2.24012 8.5 2.3673 8.5 2.4999C8.5 \n 2.63251 8.44732 2.75969 8.35355 2.85346C8.25979 2.94723 8.13261 2.9999 8 \n 2.9999H3V12.9999H13V7.99991C13 7.8673 13.0527 7.74012 13.1464 7.64635C13.2402 \n 7.55258 13.3674 7.49991 13.5 7.49991C13.6326 7.49991 13.7598 7.55258 13.8536 \n 7.64635C13.9473 7.74012 14 7.8673 14 7.99991Z", fill: "currentColor" })
682
+ }
683
+ );
684
+ var DeleteIcon = ({ className }) => /* @__PURE__ */ jsx7(
685
+ "svg",
686
+ {
687
+ xmlns: "http://www.w3.org/2000/svg",
688
+ width: "16",
689
+ height: "16",
690
+ viewBox: "0 0 16 16",
691
+ fill: "none",
692
+ className,
693
+ children: /* @__PURE__ */ jsx7("path", { d: "M13.5 3H11V2.5C11 2.10218 10.842 1.72064 10.5607 1.43934C10.2794 1.15804 \n 9.89782 1 9.5 1H6.5C6.10218 1 5.72064 1.15804 5.43934 1.43934C5.15804 1.72064 5 \n 2.10218 5 2.5V3H2.5C2.36739 3 2.24021 3.05268 2.14645 3.14645C2.05268 3.24021 2 \n 3.36739 2 3.5C2 3.63261 2.05268 3.75979 2.14645 3.85355C2.24021 3.94732 2.36739 4 \n 2.5 4H3V13C3 13.2652 3.10536 13.5196 3.29289 13.7071C3.48043 13.8946 3.73478 14 4 \n 14H12C12.2652 14 12.5196 13.8946 12.7071 13.7071C12.8946 13.5196 13 13.2652 13 \n 13V4H13.5C13.6326 4 13.7598 3.94732 13.8536 3.85355C13.9473 3.75979 14 3.63261 \n 14 3.5C14 3.36739 13.9473 3.24021 13.8536 3.14645C13.7598 3.05268 13.6326 3 13.5 \n 3ZM6 2.5C6 2.36739 6.05268 2.24021 6.14645 2.14645C6.24021 2.05268 6.36739 2 6.5 \n 2H9.5C9.63261 2 9.75979 2.05268 9.85355 2.14645C9.94732 2.24021 10 2.36739 10 \n 2.5V3H6V2.5ZM12 13H4V4H12V13ZM7 6.5V10.5C7 10.6326 6.94732 10.7598 6.85355 \n 10.8536C6.75979 10.9473 6.63261 11 6.5 11C6.36739 11 6.24021 10.9473 6.14645 \n 10.8536C6.05268 10.7598 6 10.6326 6 10.5V6.5C6 6.36739 6.05268 6.24021 6.14645 \n 6.14645C6.24021 6.05268 6.36739 6 6.5 6C6.63261 6 6.75979 6.05268 6.85355 \n 6.14645C6.94732 6.24021 7 6.36739 7 6.5ZM10 6.5V10.5C10 10.6326 9.94732 10.7598 \n 9.85355 10.8536C9.75979 10.9473 9.63261 11 9.5 11C9.36739 11 9.24021 10.9473 9.14645 \n 10.8536C9.05268 10.7598 9 10.6326 9 10.5V6.5C9 6.36739 9.05268 6.24021 9.14645 \n 6.14645C9.24021 6.05268 9.36739 6 9.5 6C9.63261 6 9.75979 6.05268 9.85355 \n 6.14645C9.94732 6.24021 10 6.36739 10 6.5Z", fill: "currentColor" })
694
+ }
695
+ );
648
696
  var DesignedFreedom = ({ className }) => /* @__PURE__ */ jsx7("svg", { xmlns: "http://www.w3.org/2000/svg", width: "70", height: "25", viewBox: "0 0 70 25", fill: "none", className, children: /* @__PURE__ */ jsx7("path", { d: "M43.124 16.6631C44.2842 \n 16.6631 45.1821 16.9298 45.8135 17.4668C46.4448\n 18.0038 46.7607 18.7705 46.7607 19.7666V24.543H44.542V23.6162H44.4932C44.2759 \n 23.9564 43.952 24.2394 43.5176 24.4648C43.0872 24.6903 42.5951 24.8017 42.0459 \n 24.8018L42.041 24.793C41.2089 24.7929 40.5448 24.5671 40.0488 \n 24.1162C39.5488 23.6653 39.2988 23.0708 39.2988 22.333C39.2989 21.546 39.6025 \n 20.9267 40.2051 20.4717C40.8077 20.0168 41.5952 19.791 42.5625 19.791C42.9476 \n 19.791 43.3122 19.8286 43.6523 19.9023C43.9926 19.9761 44.2882 20.0698 44.5342 \n 20.1846V19.7422C44.5342 19.3079 44.3867 18.9637 44.0918 18.7178C43.7966 18.4677 \n 43.3857 18.3447 42.8691 18.3447C42.5538 18.3448 42.2875 18.3769 42.0703 \n 18.4424C41.853 18.508 41.6435 18.5944 41.4385 18.7051C41.2336 18.8158 40.9837 \n 19.0044 40.6846 19.2666L39.5488 18.0449C40.0817 17.6309 40.5039 17.3398 40.8154 \n 17.1758C41.127 17.0118 41.4757 16.8849 41.8652 16.7988C42.2547 16.7127 42.6731 \n 16.6631 43.124 16.6631ZM61.3594 16.6631C62.5194 16.6632 63.4175 16.9298 64.0488 \n 17.4668C64.6801 18.0038 64.9951 18.7706 64.9951 \n 19.7666V24.543H62.7773V23.6162H62.7285C62.5113 23.9564 62.1873 \n 24.2394 61.7529 24.4648C61.3224 24.6903 60.8297 24.8018 60.2803 24.8018L60.2764 \n 24.793C59.4442 24.7929 58.7802 24.5672 58.2842 24.1162C57.7841 23.6653 57.5342 \n 23.0709 57.5342 22.333C57.5343 21.546 57.8369 20.9267 58.4395 20.4717C59.0421 \n 20.0167 59.8295 19.7911 60.7969 19.791C61.1822 19.791 61.5474 19.8286 61.8877 \n 19.9023C62.228 19.9761 62.5235 20.0698 62.7695 20.1846V19.7422C62.7695 19.3077 \n 62.6213 18.9637 62.3262 18.7178C62.031 18.4677 61.6211 18.3447 61.1045 \n 18.3447C60.7891 18.3447 60.5228 18.3769 60.3057 18.4424C60.0884 18.508 59.8788 \n 18.5944 59.6738 18.7051C59.4689 18.8157 59.2191 19.0044 58.9199 19.2666L57.7842 \n 18.0449C58.317 17.631 58.7392 17.3397 59.0508 17.1758C59.3623 17.0118 59.7111 \n 16.8849 60.1006 16.7988C60.49 16.7128 60.9085 16.6631 61.3594 16.6631ZM25.4199 \n 16.6592C26.5269 16.6592 27.4417 17.0083 28.1592 17.7012C28.8765 18.394 29.2373 \n 19.2877 29.2373 20.374V21.1729H23.6641C23.7348 21.6745 23.9121 22.0879 24.1982 \n 22.4111C24.5795 22.8416 25.0842 23.0596 25.7197 23.0596C26.0024 23.0596 26.2524 \n 23.0182 26.4736 22.9404C26.695 22.8626 26.8921 22.7559 27.0684 22.6289C27.2446 \n 22.5018 27.446 22.2928 27.6797 22.0059L29.0361 23.0596C28.6795 23.5308 28.3347 \n 23.8791 28.0068 24.1045C27.6789 24.3299 27.3143 24.5022 26.9209 24.6211C26.5273 \n 24.7359 26.0392 24.793 25.457 24.793L25.4492 24.7979C24.2315 24.7979 23.2593 \n 24.4161 22.5254 23.6494C21.7916 22.8828 21.4229 21.9111 21.4229 20.7305C21.4229 \n 19.5498 21.7921 18.5823 22.5342 17.8115C23.2762 17.045 24.2353 16.6593 25.4199 \n 16.6592ZM17.1885 16.6514C17.6476 16.6514 18.0701 16.6969 18.4473 16.7871C18.8285 \n 16.8773 19.165 17.0039 19.4561 17.1719C19.7471 17.3399 20.0956 17.6232 20.4932 \n 18.0166L19.1816 19.165C18.9193 18.9191 18.6897 18.7421 18.4971 18.6396C18.3003 \n 18.5372 18.0907 18.4592 17.8652 18.4141C17.6398 18.369 17.4102 18.3447 17.1807 \n 18.3447C16.861 18.3447 16.603 18.4068 16.4062 18.5215C16.2095 18.6404 16.1143 \n 18.7876 16.1143 18.9639C16.1143 19.1402 16.2052 19.2922 16.3896 19.4111C16.5744 \n 19.5341 17.058 19.686 17.8486 19.8662C18.8285 20.0876 19.5385 20.3947 19.9854 \n 20.7842C20.4321 21.1736 20.6533 21.6658 20.6533 22.252C20.6533 23.0063 20.3419 \n 23.6215 19.7188 24.0889C19.0956 24.5562 18.267 24.79 17.2256 24.79L17.2295 \n 24.7939C16.6926 24.7939 16.2212 24.7405 15.8154 24.6299C15.4137 24.5192 15.0531 \n 24.3631 14.7334 24.1582C14.4136 23.9532 14.0446 23.6045 13.6182 23.1084L14.9951 \n 21.9521C15.2984 22.2964 15.5528 22.5387 15.7578 22.6699C15.9668 22.8051 16.1963 \n 22.9039 16.4463 22.9736C16.7004 23.0433 16.992 23.0762 17.3281 23.0762C17.693 \n 23.0762 17.9804 23.0146 18.1895 22.8916C18.3984 22.7687 18.5009 22.5882 18.501 \n 22.3506C18.501 22.1538 18.4065 21.9937 18.2139 21.8789C18.0253 21.7641 17.5376 \n 21.6159 16.7588 21.4355C15.7791 21.2142 15.0735 20.9073 14.6348 20.5098C14.1961\n 20.1162 13.9786 19.6159 13.9785 19.0215C13.9785 18.2958 14.2819 17.7174 14.8887 \n 17.291C15.4954 16.8647 16.2621 16.6514 17.1885 16.6514ZM8.26562 \n 24.5273H6.04297V23.5928H5.99023C5.77295 23.9535 5.44473 24.2405 \n 5.00195 24.4619C4.56326 24.6792 4.07127 24.79 3.53418 24.79C2.50922 24.79 \n 1.66418 24.4213 1 23.6875C0.331762 22.9496 0 21.9652 0 20.7354C1.18379e-05 \n 19.5055 0.340719 18.5504 1.02539 17.792C1.70998 17.0378 2.58286 16.6563 3.64453 \n 16.6562C4.13242 16.6562 4.58396 16.7591 4.99805 16.96C5.4119 17.1649 5.71907 \n 17.4271 5.91992 17.7549H5.97363V13.9131H8.26562V24.5273ZM56.2441 \n 24.5273H54.0215V23.5928H53.9688C53.7515 23.9535 53.4232 24.2405 52.9805 \n 24.4619C52.5418 24.6792 52.0498 24.79 51.5127 24.79C50.4877 24.79 49.6427 \n 24.4213 48.9785 23.6875C48.3103 22.9496 47.9785 21.9652 47.9785 20.7354C47.9785 \n 19.5055 48.3192 18.5504 49.0039 17.792C49.6885 17.0378 50.5614 16.6563 51.623 \n 16.6562C52.1109 16.6562 52.5625 16.7591 52.9766 16.96C53.3904 17.1649 53.6976 \n 17.4271 53.8984 17.7549H53.9521V13.9131H56.2441V24.5273ZM67.8867 21.8271C68.2885 \n 21.8271 68.6245 21.9627 68.9033 22.2373C69.1821 22.5119 69.3173 22.8438 69.3174 \n 23.2373C69.3174 23.6309 69.178 23.9753 68.9033 24.25C68.6286 24.5246 68.2885 \n 24.6602 67.8867 24.6602C67.485 24.6601 67.1489 24.5247 66.8701 24.25C66.5955 \n 23.9753 66.4561 23.6391 66.4561 23.2373C66.4561 22.8356 66.5955 22.5078 66.8701 \n 22.2373C67.1489 21.9667 67.485 21.8272 67.8867 21.8271ZM35.3398 16.6523C36.1843 \n 16.6523 36.8528 16.9105 37.3447 17.4229C37.8367 17.9353 38.083 18.6281 38.083 \n 19.4932V24.5361H35.7627V20.0342C35.7627 19.5506 35.6437 19.1817 35.4102 \n 18.9316C35.1765 18.6816 34.8317 18.5547 34.3848 18.5547C33.938 18.5547 33.5973 \n 18.7182 33.3145 19.042C33.0316 19.3659 32.8887 19.7723 32.8887 \n 20.252V24.5361H30.5684V16.9141L30.5635 16.9102H32.7822V18.0176H32.835C33.081 \n 17.5912 33.4379 17.2585 33.9053 17.0166C34.3725 16.7748 34.8521 16.6524 35.3398 \n 16.6523ZM12.4287 24.5293H10.1084V16.9082H12.4287V24.5293ZM43.0332 20.8906C42.5578 \n 20.8907 42.1723 20.9931 41.873 21.2021C41.574 21.4112 41.4268 21.7225 41.4268 \n 22.1445C41.4268 22.5093 41.5452 22.7923 41.791 22.9932C42.037 23.194 42.3535 \n 23.293 42.7471 23.293V23.2969C43.2716 23.2968 43.6981 23.1122 44.0342 \n 22.7393C44.3662 22.3704 44.5341 21.8702 44.5342 21.2432C44.3415 21.1407 \n 44.1155 21.0539 43.8613 20.9883C43.6073 20.9228 43.3323 20.8906 43.0332 \n 20.8906ZM61.2686 20.8906C60.793 20.8906 60.4077 20.9931 60.1084 21.2021C59.8093 \n 21.4112 59.6612 21.7224 59.6611 22.1445C59.6611 22.5093 59.7805 22.7923 60.0264 \n 22.9932C60.2723 23.194 60.588 23.2929 60.9814 23.293V23.2969C61.5062 23.2969 \n 61.9333 23.1123 62.2695 22.7393C62.6015 22.3704 62.7695 21.8701 62.7695 \n 21.2432C62.5768 21.1407 62.3509 21.0539 62.0967 20.9883C61.8426 20.9227 61.5677 \n 20.8906 61.2686 20.8906ZM4.13281 18.5957C3.59984 18.5957 3.15668 18.7918 2.7959 \n 19.1895C2.4311 19.5829 2.25107 20.0956 2.25098 20.7227C2.25098 21.3499 2.4312 \n 21.859 2.79199 22.2607C3.15277 22.6625 3.59985 22.8633 4.13281 22.8633C4.66983 \n 22.8633 5.12087 22.6624 5.47754 22.2607C5.83423 21.859 6.01465 21.3458 6.01465 \n 20.7227C6.01456 20.0997 5.83434 19.5829 5.47363 19.1895C5.11286 18.796 4.66574 \n 18.5957 4.13281 18.5957ZM52.1113 18.5957C51.5784 18.5957 51.1352 18.7918 50.7744 \n 19.1895C50.4096 19.5829 50.2296 20.0956 50.2295 20.7227C50.2295 21.3499 50.4097 \n 21.859 50.7705 22.2607C51.1313 22.6625 51.5784 22.8633 52.1113 22.8633C52.6483 \n 22.8633 53.0994 22.6624 53.4561 22.2607C53.8127 21.859 53.9932 21.3458 53.9932 \n 20.7227C53.9931 20.0997 53.8129 19.5829 53.4521 19.1895C53.0914 18.796 52.6443 \n 18.5957 52.1113 18.5957ZM25.4121 18.4512C24.8668 18.4512 24.4362 18.6437 24.1123 \n 19.0332C23.8949 19.2947 23.7535 19.6231 23.6826 20.0176H27.1016C27.0688 19.5543 \n 26.8999 19.1768 26.6006 18.8857C26.3013 18.5948 25.904 18.4512 25.4121 \n 18.4512ZM33.2988 13.417C33.5487 13.417 33.7864 13.4664 34.0117 13.5605C34.233 \n 13.6589 34.4379 13.766 34.6182 13.8848C34.7699 13.9914 34.91 14.086 35.0371 \n 14.168C35.1641 14.2457 35.2751 14.2908 35.3652 14.2949C35.4552 14.2949 35.5247 \n 14.2741 35.582 14.2373C35.6394 14.2004 35.685 14.1392 35.7178 14.0654C35.7506 \n 13.9916 35.7711 13.8192 35.7793 13.5527H37.2178C37.1973 14.2699 37.12 14.7537 \n 36.9766 15.0039C36.8372 15.254 36.6397 15.4506 36.3896 15.5859C36.1396 15.7212 \n 35.8611 15.791 35.5537 15.791C35.2708 15.791 35.0204 15.7416 34.7949 \n 15.6514C34.5696 15.5571 34.3686 15.4552 34.1924 15.3486C34.0325 15.2543 33.8845 \n 15.1642 33.7451 15.0781C33.6057 14.992 33.4826 14.9463 33.376 14.9463C33.3065 \n 14.9464 33.241 14.9671 33.1797 15.0039C33.1182 15.0449 33.0689 15.0985 33.0361 \n 15.1641C33.0034 15.2297 32.9746 15.3935 32.9541 15.6475H31.5234C31.5521 14.926 \n 31.6341 14.4505 31.7734 14.2168C31.9087 13.9832 32.1013 13.7942 32.3555 \n 13.6426C32.6096 13.4909 32.9217 13.417 33.2988 13.417ZM11.2734 13.1357C11.6382 \n 13.1358 11.9621 13.2551 12.208 13.501C12.4539 13.7428 12.577 14.0502 12.5771 \n 14.4189C12.5771 14.7879 12.4539 15.0917 12.208 15.3418C11.9621 15.5918 11.6504 \n 15.7148 11.2734 15.7148C10.9086 15.7148 10.5968 15.5918 10.3467 15.3418C10.0925 \n 15.0917 9.96973 14.7838 9.96973 14.4189C9.96983 14.0543 10.0967 13.7428 10.3467 \n 13.501C10.5967 13.2592 10.9086 13.1357 11.2734 13.1357ZM63.29 8.71484C63.6959 \n 8.71484 64.0409 8.84954 64.3115 9.12012C64.5821 9.39066 64.7168 9.72702 64.7168 \n 10.1328C64.7168 10.3501 64.6802 10.5597 64.6064 10.7646C64.5326 10.9696 64.3969 \n 11.2069 64.2002 11.4814L62.79 13.4746L61.582 12.6143L62.5889 11.207C62.3841 \n 11.1291 62.2164 10.9897 62.0771 10.7891C61.9378 10.5882 61.8682 10.3544 61.8682 \n 10.0879C61.8682 9.70665 62.0029 9.38268 62.2734 9.11621C62.5439 8.84981 62.8843 \n 8.71492 63.29 8.71484ZM40.5625 3.77734H42.3828V5.52832H40.5625V8.73828C40.5625 \n 9.1031 40.6403 9.37823 40.792 9.55859C40.9436 9.73885 41.1736 9.82905 41.4727 \n 9.8291C41.5711 9.8291 41.6741 9.82011 41.7725 9.80371C41.871 9.78723 42.0803 \n 9.72641 42.3916 9.62402V11.4111C42.0021 11.5259 41.7148 11.5955 41.5303 \n 11.6201C41.3458 11.6447 41.1327 11.6611 40.8867 11.6611L40.8906 11.6572C40.0584 \n 11.6572 39.4146 11.4394 38.9473 11.0049C38.4842 10.5703 38.25 9.91875 38.25 \n 9.0498V5.52832H37.1191V3.77734H38.25V1.70312H40.5625V3.77734ZM47.1865 \n 3.52344C48.3468 3.52345 49.2446 3.7901 49.876 4.32715C50.5073 4.8642 50.8232 \n 5.6308 50.8232 6.62695V11.4033H48.6055V10.4766H48.5557C48.3384 10.8168 48.0146 \n 11.0998 47.5801 11.3252C47.1497 11.5506 46.6577 11.6611 46.1084 11.6611L46.1045 \n 11.6533C45.2722 11.6533 44.6074 11.4275 44.1113 10.9766C43.6113 10.5256 43.3614 \n 9.93118 43.3613 9.19336C43.3613 8.40621 43.6649 7.7871 44.2676 7.33203C44.8703 \n 6.87702 45.6575 6.65137 46.625 6.65137C47.0103 6.65138 47.3756 6.68794 47.7158 \n 6.76172C48.0559 6.83549 48.3508 6.9302 48.5967 7.04492V6.60254C48.5967 6.16802 \n 48.4494 5.82313 48.1543 5.57715C47.8592 5.32712 47.449 5.20416 46.9326 \n 5.2041C46.6169 5.2041 46.3501 5.23714 46.1328 5.30273C45.9155 5.36833 \n 45.706 5.45474 45.501 5.56543C45.2961 5.67616 45.0461 5.86479 44.7471 \n 6.12695L43.6113 4.90527C44.1441 4.49136 44.5664 4.20016 44.8779 4.03613C45.1895 \n 3.87214 45.5382 3.7443 45.9277 3.6582C46.3172 3.57211 46.7355 3.52344 47.1865 \n 3.52344ZM15.29 4.61035H15.3428C15.6011 4.27418 15.942 4.00831 16.3643 \n 3.81152C16.7865 3.61475 17.2414 3.51563 17.7334 3.51562C18.7625 3.51562 19.6075 \n 3.88529 20.2676 4.61914C20.9315 5.35703 21.2598 6.33262 21.2598 7.5459C21.2598 \n 8.75941 20.9232 9.73941 20.2549 10.502C19.5866 11.2685 18.7296 11.6494 17.6924 \n 11.6494L17.6885 11.6543C17.1678 11.6543 16.6957 11.5435 16.2734 11.3262C15.8513 \n 11.1089 15.5028 10.817 15.2363 \n 10.4521H15.1875V11.3916H12.9697V0.777344H15.29V4.61035ZM60.3145 \n 11.3916H58.0928V10.457H58.0391C57.8218 10.8177 57.4935 11.1048 57.0508 \n 11.3262C56.6122 11.5434 56.12 11.6543 55.583 11.6543C54.5581 11.6542 53.7139 \n 11.2846 53.0498 10.5508C52.3816 9.81291 52.0489 8.82935 52.0488 7.59961C52.0488 \n 6.3697 52.3895 5.41372 53.0742 4.65527C53.7589 3.90111 54.6326 3.51953 55.6943 \n 3.51953C56.182 3.51959 56.6329 3.62244 57.0469 3.82324C57.461 4.02823 57.7688 \n 4.29116 57.9697 4.61914H58.0225V0.777344H60.3145V11.3916ZM26.0918 3.51172C27.1988 \n 3.51172 28.1136 3.85988 28.8311 4.55273C29.5485 5.24552 29.9091 6.13931 29.9092 \n 7.22559V8.02539H24.3359C24.4067 8.52701 24.5839 8.94052 24.8701 9.26367C25.2514 \n 9.69414 25.7561 9.91113 26.3916 9.91113C26.6744 9.91112 26.9242 9.86983 27.1455 \n 9.79199C27.3669 9.7141 27.5639 9.60756 27.7402 9.48047C27.9165 9.35337 28.1179 \n 9.14436 28.3516 8.85742L29.708 9.91113C29.3513 10.3826 29.0067 10.7316 28.6787 \n 10.957C28.3508 11.1823 27.9862 11.3548 27.5928 11.4736C27.1992 11.5884 26.7111 \n 11.6455 26.1289 11.6455L26.1211 11.6494C24.9034 11.6494 23.9311 11.2686 23.1973 \n 10.502C22.4635 9.7354 22.0948 8.76354 22.0947 7.58301C22.0947 6.40235 22.4641 \n 5.43479 23.2061 4.66406C23.9481 3.89749 24.9071 3.5118 26.0918 3.51172ZM3.02051 \n 9.22266H7.52246V11.4033H0.679688V0.785156H3.02051V9.22266ZM35.5693 3.51172C35.7087 \n 3.51172 35.8487 3.52423 35.9922 3.54883C36.1357 3.57344 36.3285 3.62684 36.5703 \n 3.71289V5.86035C36.2546 5.74146 36.004 5.66424 35.8154 5.61914C35.627 5.57411 \n 35.4551 5.55763 35.2871 5.55762C34.7746 5.55762 34.3561 5.73767 34.0322 \n 6.10254C33.7124 6.46741 33.5488 6.93483 33.5488 7.50879V11.3955H31.2275L31.2324 \n 11.3916V3.76953H33.4502V4.93457H33.5029C33.6464 4.51647 33.9132 4.17155 34.3066 \n 3.90918C34.7001 3.64688 35.1226 3.5118 35.5693 3.51172ZM11.1211 \n 11.3936H8.7998V3.77148H11.1211V11.3936ZM47.0967 7.75C46.6211 7.75 46.2348 7.85244 \n 45.9355 8.06152C45.6364 8.27061 45.4893 8.58272 45.4893 9.00488C45.4893 9.36955 \n 45.6077 9.65269 45.8535 9.85352C46.0995 10.0544 46.416 10.1523 46.8096 \n 10.1523V10.1562C47.3342 10.1562 47.7606 9.97163 48.0967 9.59863C48.4286 9.22968 \n 48.5967 8.72964 48.5967 8.10254C48.4041 8.00013 48.1788 7.9142 47.9248 \n 7.84863C47.6707 7.78307 47.3958 7.75003 47.0967 7.75ZM56.1855 5.45898C55.6528 \n 5.45907 55.2103 5.6562 54.8496 6.05371C54.4847 6.44728 54.3037 6.95967 54.3037 \n 7.58691C54.3037 8.21417 54.4849 8.72225 54.8457 9.12402C55.2064 9.52566 55.6527 \n 9.72647 56.1855 9.72656C56.7226 9.72656 57.1736 9.52578 57.5303 9.12402C57.887 \n 8.72225 58.0674 8.21007 58.0674 7.58691C58.0674 6.96377 57.8872 6.44728 57.5264 \n 6.05371C57.1656 5.66018 56.7185 5.45898 56.1855 5.45898ZM17.1182 5.45117C16.5855 \n 5.45125 16.1429 5.64775 15.7822 6.04102C15.4174 6.43454 15.2364 6.94316 15.2363 \n 7.57031C15.2363 8.19742 15.4167 8.71839 15.7773 9.12012C16.1381 9.52181 16.5853 \n 9.71867 17.1182 9.71875C17.6552 9.71875 18.1062 9.51771 18.4629 9.12012C18.8195 \n 8.72252 18.9999 8.20619 19 7.5791C19 6.95193 18.8197 6.43945 18.459 \n 6.0459C18.0982 5.65233 17.6512 5.45117 17.1182 5.45117ZM26.084 5.30273C25.5387 \n 5.30273 25.1081 5.49627 24.7842 5.88574C24.567 6.14705 24.4254 6.475 24.3545 \n 6.86914H27.7734C27.7406 6.40591 27.5717 6.02837 27.2725 5.7373C26.9732 5.44652 \n 26.5757 5.30274 26.084 5.30273ZM9.96094 0C10.3256 0.000100251 10.6496 0.119355 \n 10.8955 0.365234C11.1413 0.607069 11.2646 0.914387 11.2646 1.2832C11.2646 1.65218 \n 11.1415 1.95597 10.8955 2.20605C10.6496 2.45598 10.3379 2.579 9.96094 2.5791C9.59622 \n 2.5791 9.28421 2.4559 9.03418 2.20605C8.77999 1.95597 8.65625 1.64808 8.65625 \n 1.2832C8.65625 0.918347 8.78411 0.607111 9.03418 0.365234C9.28427 0.123351 9.59605 \n 0 9.96094 0Z", fill: "#AFD8D8" }) });
649
697
  var HomeIcon = ({ className }) => /* @__PURE__ */ jsx7("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", className, children: /* @__PURE__ */ jsx7(
650
698
  "path",
@@ -882,7 +930,7 @@ var FILTER = ({ className }) => /* @__PURE__ */ jsx7(
882
930
  alignItems: "center",
883
931
  aspectRatio: "1/1"
884
932
  },
885
- children: /* @__PURE__ */ jsx7("path", { d: "M0.75 3.75588H3.84375C4.00898 4.40119 4.38428 4.97316 \n 4.91048 5.38161C5.43669 5.79006 6.08387 6.01176 6.75 6.01176C7.41613 \n 6.01176 8.06331 5.79006 8.58952 5.38161C9.11572 4.97316 9.49102 \n 4.40119 9.65625 3.75588H17.25C17.4489 3.75588 17.6397 3.67686 17.7803 \n 3.53621C17.921 3.39556 18 3.20479 18 3.00588C18 2.80697 17.921 2.6162 \n 17.7803 2.47555C17.6397 2.3349 17.4489 2.25588 17.25 \n 2.25588H9.65625C9.49102 1.61057 9.11572 1.0386 8.58952 \n 0.630153C8.06331 0.221702 7.41613 0 6.75 0C6.08387 0 5.43669 0.221702 \n 4.91048 0.630153C4.38428 1.0386 4.00898 1.61057 3.84375 \n 2.25588H0.75C0.551088 2.25588 0.360322 2.3349 0.21967 \n 2.47555C0.0790178 2.6162 0 2.80697 0 3.00588C0 3.20479 0.0790178 \n 3.39556 0.21967 3.53621C0.360322 3.67686 0.551088 3.75588 0.75 \n 3.75588ZM6.75 1.50588C7.04667 1.50588 7.33668 1.59386 7.58335 \n 1.75868C7.83003 1.9235 8.02229 2.15777 8.13582 2.43186C8.24935 \n 2.70595 8.27906 3.00755 8.22118 3.29852C8.1633 3.58949 8.02044 \n 3.85676 7.81066 4.06654C7.60088 4.27632 7.33361 4.41918 7.04264 \n 4.47706C6.75166 4.53494 6.45006 4.50523 6.17597 4.3917C5.90189 \n 4.27817 5.66762 4.08591 5.5028 3.83924C5.33797 3.59256 5.25 \n 3.30255 5.25 3.00588C5.25 2.60806 5.40804 2.22653 5.68934 \n 1.94522C5.97064 1.66392 6.35218 1.50588 6.75 1.50588ZM17.25 \n 11.2559H15.6562C15.491 10.6106 15.1157 10.0386 14.5895 \n 9.63015C14.0633 9.2217 13.4161 9 12.75 9C12.0839 9 11.4367 9.2217 \n 10.9105 9.63015C10.3843 10.0386 10.009 10.6106 9.84375 \n 11.2559H0.75C0.551088 11.2559 0.360322 11.3349 0.21967 11.4756C0.0790178 \n 11.6162 0 11.807 0 12.0059C0 12.2048 0.0790178 12.3956 0.21967 \n 12.5362C0.360322 12.6769 0.551088 12.7559 0.75 12.7559H9.84375C10.009 \n 13.4012 10.3843 13.9732 10.9105 14.3816C11.4367 14.7901 12.0839 15.0118 \n 12.75 15.0118C13.4161 15.0118 14.0633 14.7901 14.5895 14.3816C15.1157 \n 13.9732 15.491 13.4012 15.6562 12.7559H17.25C17.4489 12.7559 17.6397 \n 12.6769 17.7803 12.5362C17.921 12.3956 18 12.2048 18 12.0059C18 11.807 \n 17.921 11.6162 17.7803 11.4756C17.6397 11.3349 17.4489 11.2559 17.25 \n 11.2559ZM12.75 13.5059C12.4533 13.5059 12.1633 13.4179 11.9166 \n 13.2531C11.67 13.0883 11.4777 12.854 11.3642 12.5799C11.2506 12.3058 \n 11.2209 12.0042 11.2788 11.7132C11.3367 11.4223 11.4796 11.155 11.6893 \n 10.9452C11.8991 10.7354 12.1664 10.5926 12.4574 10.5347C12.7483 10.4768 \n 13.0499 10.5065 13.324 10.6201C13.5981 10.7336 13.8324 10.9259 13.9972 \n 11.1725C14.162 11.4192 14.25 11.7092 14.25 12.0059C14.25 12.4037 \n 14.092 12.7852 13.8107 13.0665C13.5294 13.3478 13.1478 13.5059 12.75 \n 13.5059Z", fill: "white" })
933
+ children: /* @__PURE__ */ jsx7("path", { d: "M0.75 3.75588H3.84375C4.00898 4.40119 4.38428 4.97316 \n 4.91048 5.38161C5.43669 5.79006 6.08387 6.01176 6.75 6.01176C7.41613 \n 6.01176 8.06331 5.79006 8.58952 5.38161C9.11572 4.97316 9.49102 \n 4.40119 9.65625 3.75588H17.25C17.4489 3.75588 17.6397 3.67686 17.7803 \n 3.53621C17.921 3.39556 18 3.20479 18 3.00588C18 2.80697 17.921 2.6162 \n 17.7803 2.47555C17.6397 2.3349 17.4489 2.25588 17.25 \n 2.25588H9.65625C9.49102 1.61057 9.11572 1.0386 8.58952 \n 0.630153C8.06331 0.221702 7.41613 0 6.75 0C6.08387 0 5.43669 0.221702 \n 4.91048 0.630153C4.38428 1.0386 4.00898 1.61057 3.84375 \n 2.25588H0.75C0.551088 2.25588 0.360322 2.3349 0.21967 \n 2.47555C0.0790178 2.6162 0 2.80697 0 3.00588C0 3.20479 0.0790178 \n 3.39556 0.21967 3.53621C0.360322 3.67686 0.551088 3.75588 0.75 \n 3.75588ZM6.75 1.50588C7.04667 1.50588 7.33668 1.59386 7.58335 \n 1.75868C7.83003 1.9235 8.02229 2.15777 8.13582 2.43186C8.24935 \n 2.70595 8.27906 3.00755 8.22118 3.29852C8.1633 3.58949 8.02044 \n 3.85676 7.81066 4.06654C7.60088 4.27632 7.33361 4.41918 7.04264 \n 4.47706C6.75166 4.53494 6.45006 4.50523 6.17597 4.3917C5.90189 \n 4.27817 5.66762 4.08591 5.5028 3.83924C5.33797 3.59256 5.25 \n 3.30255 5.25 3.00588C5.25 2.60806 5.40804 2.22653 5.68934 \n 1.94522C5.97064 1.66392 6.35218 1.50588 6.75 1.50588ZM17.25 \n 11.2559H15.6562C15.491 10.6106 15.1157 10.0386 14.5895 \n 9.63015C14.0633 9.2217 13.4161 9 12.75 9C12.0839 9 11.4367 9.2217 \n 10.9105 9.63015C10.3843 10.0386 10.009 10.6106 9.84375 \n 11.2559H0.75C0.551088 11.2559 0.360322 11.3349 0.21967 11.4756C0.0790178 \n 11.6162 0 11.807 0 12.0059C0 12.2048 0.0790178 12.3956 0.21967 \n 12.5362C0.360322 12.6769 0.551088 12.7559 0.75 12.7559H9.84375C10.009 \n 13.4012 10.3843 13.9732 10.9105 14.3816C11.4367 14.7901 12.0839 15.0118 \n 12.75 15.0118C13.4161 15.0118 14.0633 14.7901 14.5895 14.3816C15.1157 \n 13.9732 15.491 13.4012 15.6562 12.7559H17.25C17.4489 12.7559 17.6397 \n 12.6769 17.7803 12.5362C17.921 12.3956 18 12.2048 18 12.0059C18 11.807 \n 17.921 11.6162 17.7803 11.4756C17.6397 11.3349 17.4489 11.2559 17.25 \n 11.2559ZM12.75 13.5059C12.4533 13.5059 12.1633 13.4179 11.9166 \n 13.2531C11.67 13.0883 11.4777 12.854 11.3642 12.5799C11.2506 12.3058 \n 11.2209 12.0042 11.2788 11.7132C11.3367 11.4223 11.4796 11.155 11.6893 \n 10.9452C11.8991 10.7354 12.1664 10.5926 12.4574 10.5347C12.7483 10.4768 \n 13.0499 10.5065 13.324 10.6201C13.5981 10.7336 13.8324 10.9259 13.9972 \n 11.1725C14.162 11.4192 14.25 11.7092 14.25 12.0059C14.25 12.4037 \n 14.092 12.7852 13.8107 13.0665C13.5294 13.3478 13.1478 13.5059 12.75 \n 13.5059Z", fill: "currentColor" })
886
934
  }
887
935
  );
888
936
  var Icons = {
@@ -917,7 +965,11 @@ var Icons = {
917
965
  SIGN: /* @__PURE__ */ jsx7(SIGN, {}),
918
966
  GAMES: /* @__PURE__ */ jsx7(GAMES, {}),
919
967
  CHECKED: /* @__PURE__ */ jsx7(CHECKED, {}),
920
- FILTER: /* @__PURE__ */ jsx7(FILTER, {})
968
+ FILTER: /* @__PURE__ */ jsx7(FILTER, {}),
969
+ SEAL: /* @__PURE__ */ jsx7(SealIcon, {}),
970
+ BOOKMARK: /* @__PURE__ */ jsx7(BookMarkIcon, {}),
971
+ EDIT: /* @__PURE__ */ jsx7(EditIcon, {}),
972
+ DELETE: /* @__PURE__ */ jsx7(DeleteIcon, {})
921
973
  };
922
974
 
923
975
  // src/components/ui/modal/modal.tsx
@@ -1479,9 +1531,6 @@ function PromoBanner({
1479
1531
  ] });
1480
1532
  }
1481
1533
 
1482
- // src/components/ui/sidebarTabs/sidebarTabs.tsx
1483
- import { useState as useState5 } from "react";
1484
-
1485
1534
  // src/components/ui/sidebarTabs/siderTab.tsx
1486
1535
  import * as React9 from "react";
1487
1536
  import { jsx as jsx16, jsxs as jsxs13 } from "react/jsx-runtime";
@@ -1565,8 +1614,7 @@ function SidebarNav({
1565
1614
 
1566
1615
  // src/components/ui/sidebarTabs/sidebarTabs.tsx
1567
1616
  import { jsx as jsx17, jsxs as jsxs14 } from "react/jsx-runtime";
1568
- function SidebarTabs({ items }) {
1569
- const [activeTab, setActiveTab] = useState5(items[0]?.id || "");
1617
+ function SidebarTabs({ items, activeTab, onTabChange }) {
1570
1618
  const currentActiveItem = items.find((item) => item.id === activeTab);
1571
1619
  return /* @__PURE__ */ jsxs14("div", { className: "uiklu-flex uiklu-w-full uiklu-h-screen uiklu-bg-white", children: [
1572
1620
  /* @__PURE__ */ jsx17("div", { className: "uiklu-w-[162px] uiklu-h-[40px] uiklu-p-4 ", children: /* @__PURE__ */ jsx17(
@@ -1574,7 +1622,7 @@ function SidebarTabs({ items }) {
1574
1622
  {
1575
1623
  items,
1576
1624
  activeTab,
1577
- onTabChange: setActiveTab
1625
+ onTabChange
1578
1626
  }
1579
1627
  ) }),
1580
1628
  /* @__PURE__ */ jsx17("div", { className: "uiklu-flex-1", children: currentActiveItem?.content ? currentActiveItem.content : /* @__PURE__ */ jsx17("div", { className: "uiklu-p-8", children: /* @__PURE__ */ jsx17("h2", { children: "Pr\xF3ximamente..." }) }) })
@@ -1839,14 +1887,14 @@ var SearchSelect = ({
1839
1887
  };
1840
1888
 
1841
1889
  // src/components/ui/inputCode/inputCode.tsx
1842
- import { useRef as useRef2, useState as useState7 } from "react";
1890
+ import { useRef as useRef2, useState as useState6 } from "react";
1843
1891
  import { jsx as jsx20, jsxs as jsxs17 } from "react/jsx-runtime";
1844
1892
  var InputCode = ({
1845
1893
  onComplete,
1846
1894
  title = "C\xF3digo de autenticaci\xF3n",
1847
1895
  hasError = false
1848
1896
  }) => {
1849
- const [code, setCode] = useState7(Array(6).fill(""));
1897
+ const [code, setCode] = useState6(Array(6).fill(""));
1850
1898
  const inputsRef = useRef2([]);
1851
1899
  const handleChange = (e, index) => {
1852
1900
  const value = e.target.value;
@@ -1947,7 +1995,7 @@ var GridCard = ({
1947
1995
  };
1948
1996
 
1949
1997
  // src/components/ui/checkBox/checkBox.tsx
1950
- import { useId, useState as useState8 } from "react";
1998
+ import { useId, useState as useState7 } from "react";
1951
1999
  import { jsx as jsx22, jsxs as jsxs19 } from "react/jsx-runtime";
1952
2000
  var Checkbox = ({
1953
2001
  id,
@@ -1959,7 +2007,7 @@ var Checkbox = ({
1959
2007
  }) => {
1960
2008
  const uniqueId = id || useId();
1961
2009
  const isControlled = controlledChecked !== void 0;
1962
- const [internalChecked, setInternalChecked] = useState8(defaultChecked || false);
2010
+ const [internalChecked, setInternalChecked] = useState7(defaultChecked || false);
1963
2011
  const isChecked = isControlled ? controlledChecked : internalChecked;
1964
2012
  const handleCheckboxChange = (e) => {
1965
2013
  const nextChecked = e.target.checked;
@@ -1995,15 +2043,233 @@ var Checkbox = ({
1995
2043
  )
1996
2044
  ] });
1997
2045
  };
2046
+
2047
+ // src/components/ui/inputPhone/inputPhone.tsx
2048
+ import * as React13 from "react";
2049
+ import * as Popover from "@radix-ui/react-popover";
2050
+ import { Check as Check3 } from "lucide-react";
2051
+ import { jsx as jsx23, jsxs as jsxs20 } from "react/jsx-runtime";
2052
+ var DEFAULT_LADAS = [
2053
+ { label: "MX", code: "+52" },
2054
+ { label: "US", code: "+1" },
2055
+ { label: "CA", code: "+1" }
2056
+ ];
2057
+ var containerSizes = {
2058
+ sm: "uiklu-h-[34px] uiklu-w-[150px]",
2059
+ md: "uiklu-h-[34px] uiklu-w-[250px]",
2060
+ lg: "uiklu-h-[44px] uiklu-w-[350px]",
2061
+ full: "uiklu-h-[44px] uiklu-w-full"
2062
+ };
2063
+ var fontSizes = {
2064
+ sm: "uiklu-text-sm",
2065
+ md: "uiklu-text-md",
2066
+ lg: "uiklu-text-lg",
2067
+ full: "uiklu-text-lg"
2068
+ };
2069
+ var errorSizes2 = {
2070
+ sm: "uiklu-text-sm",
2071
+ md: "uiklu-text-md",
2072
+ lg: "uiklu-text-lg",
2073
+ full: "uiklu-text-lg"
2074
+ };
2075
+ var InputPhone = React13.forwardRef(
2076
+ ({
2077
+ className,
2078
+ size = "lg",
2079
+ error,
2080
+ value = "",
2081
+ onChange,
2082
+ ladas,
2083
+ defaultLadaIndex = 0,
2084
+ ...props
2085
+ }, ref) => {
2086
+ const listaLadas = ladas && ladas.length > 0 ? ladas : DEFAULT_LADAS;
2087
+ const [selectedIndex, setSelectedIndex] = React13.useState(defaultLadaIndex);
2088
+ const [open, setOpen] = React13.useState(false);
2089
+ const [searchQuery, setSearchQuery] = React13.useState("");
2090
+ const containerRef = React13.useRef(null);
2091
+ const currentLada = listaLadas[selectedIndex]?.code || "+52";
2092
+ const ladasWithIndex = React13.useMemo(() => {
2093
+ return listaLadas.map((lada, index) => ({ ...lada, originalIndex: index }));
2094
+ }, [listaLadas]);
2095
+ const filteredLadas = React13.useMemo(() => {
2096
+ const query = searchQuery.toLowerCase().trim();
2097
+ if (!query) return ladasWithIndex;
2098
+ return ladasWithIndex.filter(
2099
+ (lada) => lada.code.toLowerCase().includes(query) || lada.label.toLowerCase().includes(query)
2100
+ );
2101
+ }, [searchQuery, ladasWithIndex]);
2102
+ const displayInputValue = React13.useMemo(() => {
2103
+ if (value.startsWith(currentLada)) {
2104
+ return value.slice(currentLada.length);
2105
+ }
2106
+ return value;
2107
+ }, [value, currentLada]);
2108
+ const handleInputChange = (digits, ladaCode) => {
2109
+ const limitedDigits = digits.slice(0, 10);
2110
+ if (onChange) {
2111
+ onChange(limitedDigits ? `${ladaCode}${limitedDigits}` : "");
2112
+ }
2113
+ };
2114
+ React13.useEffect(() => {
2115
+ if (!open) {
2116
+ setSearchQuery("");
2117
+ }
2118
+ }, [open]);
2119
+ return /* @__PURE__ */ jsxs20("div", { className: cn(
2120
+ "uiklu-flex uiklu-flex-col",
2121
+ size === "full" ? "uiklu-w-full" : "uiklu-w-fit"
2122
+ ), children: [
2123
+ /* @__PURE__ */ jsxs20(
2124
+ "div",
2125
+ {
2126
+ ref: containerRef,
2127
+ className: cn(
2128
+ "uiklu-relative uiklu-flex uiklu-items-center uiklu-box-border",
2129
+ "uiklu-bg-background uiklu-rounded-[50px] uiklu-border-[1px] uiklu-border-solid uiklu-transition-all",
2130
+ !error ? [
2131
+ "uiklu-border-inputlight",
2132
+ "focus-within:uiklu-border-primary900",
2133
+ "focus-within:uiklu-shadow-[0_0_0_3px_#AFD8D8]"
2134
+ ] : [
2135
+ "uiklu-border-destructive",
2136
+ "focus-within:uiklu-border-destructive",
2137
+ "focus-within:uiklu-shadow-[0_0_0_3px_rgba(220,38,38,0.20)]"
2138
+ ],
2139
+ containerSizes[size]
2140
+ ),
2141
+ children: [
2142
+ /* @__PURE__ */ jsxs20(Popover.Root, { open, onOpenChange: setOpen, children: [
2143
+ /* @__PURE__ */ jsx23(Popover.Trigger, { className: "uiklu-flex uiklu-items-center uiklu-pl-6 \n uiklu-pr-3 uiklu-h-full uiklu-bg-transparent uiklu-border-none uiklu-outline-none uiklu-cursor-pointer", children: /* @__PURE__ */ jsx23("span", { className: cn(
2144
+ "uiklu-font-sans uiklu-font-medium uiklu-text-gray800 uiklu-select-none",
2145
+ fontSizes[size],
2146
+ error && "uiklu-text-destructive"
2147
+ ), children: currentLada }) }),
2148
+ /* @__PURE__ */ jsx23(Popover.Portal, { children: /* @__PURE__ */ jsxs20(
2149
+ Popover.Content,
2150
+ {
2151
+ sideOffset: 4,
2152
+ align: "start",
2153
+ style: {
2154
+ width: containerRef.current ? containerRef.current.offsetWidth : "var(--radix-popover-trigger-width)"
2155
+ },
2156
+ className: "uiklu-z-[100] uiklu-overflow-hidden uiklu-rounded-[20px] \n uiklu-border-[1px] uiklu-border-solid uiklu-border-border uiklu-bg-background \n uiklu-text-inputtext uiklu-font-sans uiklu-shadow-md uiklu-pt-[10px] uiklu-box-border",
2157
+ children: [
2158
+ /* @__PURE__ */ jsx23("div", { className: "uiklu-mx-2", children: /* @__PURE__ */ jsx23(
2159
+ "input",
2160
+ {
2161
+ type: "text",
2162
+ placeholder: "Buscar...",
2163
+ value: searchQuery,
2164
+ onChange: (e) => setSearchQuery(e.target.value),
2165
+ className: "uiklu-w-full uiklu-box-border uiklu-py-2 uiklu-px-4 \n uiklu-mb-2 uiklu-text-sm uiklu-border uiklu-border-solid uiklu-border-gray-200 \n uiklu-rounded-[50px] uiklu-outline-none focus:uiklu-border-primary900 \n focus:uiklu-shadow-[0_0_0_3px_#AFD8D8] uiklu-font-sans"
2166
+ }
2167
+ ) }),
2168
+ /* @__PURE__ */ jsx23("div", { className: "uiklu-max-h-[150px] uiklu-overflow-y-auto uiklu-overflow-x-hidden \n uiklu-w-full uiklu-box-border uiklu-flex uiklu-flex-col uiklu-gap-[2px]", children: filteredLadas.length > 0 ? filteredLadas.map((lada) => {
2169
+ const isSelected = lada.originalIndex === selectedIndex;
2170
+ return /* @__PURE__ */ jsxs20(
2171
+ "button",
2172
+ {
2173
+ type: "button",
2174
+ onClick: () => {
2175
+ setSelectedIndex(lada.originalIndex);
2176
+ handleInputChange(displayInputValue, lada.code);
2177
+ setOpen(false);
2178
+ },
2179
+ className: cn(
2180
+ "uiklu-relative uiklu-flex uiklu-w-full uiklu-box-border uiklu-cursor-pointer",
2181
+ "uiklu-select-none uiklu-items-center uiklu-py-2.5 uiklu-pl-10 uiklu-pr-4",
2182
+ "uiklu-text-md uiklu-font-sans uiklu-outline-none uiklu-transition-colors",
2183
+ "uiklu-border-none",
2184
+ isSelected ? "uiklu-bg-primary/5 uiklu-text-primary uiklu-font-medium" : "uiklu-bg-transparent uiklu-text-gray800 hover:uiklu-bg-primary/10",
2185
+ "hover:uiklu-text-primary"
2186
+ ),
2187
+ children: [
2188
+ /* @__PURE__ */ jsx23("span", { className: "uiklu-absolute uiklu-left-3 uiklu-flex uiklu-h-3.5 uiklu-w-3.5 \n uiklu-items-center uiklu-justify-center", children: isSelected && /* @__PURE__ */ jsx23(Check3, { className: "uiklu-h-4 uiklu-w-4 uiklu-text-primary" }) }),
2189
+ /* @__PURE__ */ jsxs20("span", { className: "uiklu-flex-1 uiklu-truncate uiklu-text-left", children: [
2190
+ lada.label,
2191
+ " (",
2192
+ lada.code,
2193
+ ")"
2194
+ ] })
2195
+ ]
2196
+ },
2197
+ `${lada.label}-${lada.code}`
2198
+ );
2199
+ }) : /* @__PURE__ */ jsx23("div", { className: "uiklu-text-sm uiklu-text-center uiklu-py-3 uiklu-opacity-50 uiklu-font-sans", children: "Sin coincidencias" }) })
2200
+ ]
2201
+ }
2202
+ ) })
2203
+ ] }),
2204
+ /* @__PURE__ */ jsx23(
2205
+ "input",
2206
+ {
2207
+ ...props,
2208
+ ref,
2209
+ type: "tel",
2210
+ value: displayInputValue,
2211
+ onChange: (e) => {
2212
+ const cleanValue = e.target.value.replace(/[^\d]/g, "");
2213
+ handleInputChange(cleanValue, currentLada);
2214
+ },
2215
+ className: cn(
2216
+ "uiklu-flex-1 uiklu-h-full uiklu-bg-transparent uiklu-border-none uiklu-outline-none uiklu-font-sans",
2217
+ "uiklu-overflow-hidden uiklu-text-ellipsis uiklu-pl-1 uiklu-pr-6",
2218
+ "uiklu-text-gray800 placeholder:uiklu-text-gray500 placeholder:uiklu-opacity-100",
2219
+ "disabled:uiklu-cursor-not-allowed disabled:uiklu-text-gray200 disabled:placeholder:uiklu-text-gray200",
2220
+ fontSizes[size],
2221
+ error && "!uiklu-text-destructive placeholder:!uiklu-text-destructive",
2222
+ className
2223
+ )
2224
+ }
2225
+ )
2226
+ ]
2227
+ }
2228
+ ),
2229
+ /* @__PURE__ */ jsx23("div", { className: cn("uiklu-min-h-[20px] uiklu-mb-[10px] uiklu-ml-5 uiklu-flex uiklu-items-center", errorSizes2[size]), children: error && /* @__PURE__ */ jsx23("p", { className: "uiklu-error-message uiklu-leading-tight uiklu-text-destructive uiklu-font-sans uiklu-m-0", children: error }) })
2230
+ ] });
2231
+ }
2232
+ );
2233
+ InputPhone.displayName = "InputPhone";
2234
+
2235
+ // src/components/ui/iconBadge/iconBadge.tsx
2236
+ import * as React14 from "react";
2237
+ import { jsx as jsx24 } from "react/jsx-runtime";
2238
+ var sizeMap = {
2239
+ sm: {
2240
+ container: "uiklu-w-[24px] uiklu-h-[24px]",
2241
+ icon: "uiklu-w-[14px] uiklu-h-[14px]"
2242
+ },
2243
+ md: {
2244
+ container: "uiklu-w-[30px] uiklu-h-[30px]",
2245
+ icon: "uiklu-w-[20px] uiklu-h-[20px]"
2246
+ },
2247
+ lg: {
2248
+ container: "uiklu-w-[36px] uiklu-h-[36px]",
2249
+ icon: "uiklu-w-[26px] uiklu-h-[26px]"
2250
+ }
2251
+ };
2252
+ var IconBadge = ({
2253
+ icon,
2254
+ size = "sm"
2255
+ }) => {
2256
+ const currentSize = sizeMap[size];
2257
+ return /* @__PURE__ */ jsx24("div", { className: `uiklu-flex uiklu-items-center uiklu-justify-center uiklu-rounded-full
2258
+ uiklu-bg-primary300 uiklu-text-basewhite uiklu-leading-none ${currentSize.container}`, children: React14.cloneElement(icon, {
2259
+ className: `uiklu-block ${icon.props.className || ""} ${currentSize.icon}`.trim()
2260
+ }) });
2261
+ };
1998
2262
  export {
1999
2263
  BackButton,
2000
2264
  BalanceInfo,
2001
2265
  Button,
2002
2266
  Checkbox,
2003
2267
  GridCard,
2268
+ IconBadge,
2004
2269
  Icons,
2005
2270
  Input,
2006
2271
  InputCode,
2272
+ InputPhone,
2007
2273
  LoadingScreen,
2008
2274
  MobileMenuDrawer,
2009
2275
  Modal,