ikon-react-components-lib 1.0.6 → 1.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/dist/index.d.ts CHANGED
@@ -10,6 +10,7 @@ import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
10
10
  import { Column } from '@tanstack/react-table';
11
11
  import { ColumnDef } from '@tanstack/react-table';
12
12
  import { Command as Command_2 } from 'cmdk';
13
+ import { ComponentType } from 'react';
13
14
  import { Control } from 'react-hook-form';
14
15
  import { ControllerProps } from 'react-hook-form';
15
16
  import { DayButton } from 'react-day-picker';
@@ -27,12 +28,10 @@ import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
27
28
  import { InputHTMLAttributes } from 'react';
28
29
  import { JSX } from 'react/jsx-runtime';
29
30
  import * as LabelPrimitive from '@radix-ui/react-label';
30
- import { LucideIcon } from 'lucide-react';
31
31
  import { LucideProps } from 'lucide-react';
32
32
  import { Matcher } from 'react-day-picker';
33
33
  import { MemoExoticComponent } from 'react';
34
34
  import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
35
- import { OTPInput } from 'input-otp';
36
35
  import { PaginationState } from '@tanstack/react-table';
37
36
  import * as PopoverPrimitive from '@radix-ui/react-popover';
38
37
  import * as ProgressPrimitive from '@radix-ui/react-progress';
@@ -40,11 +39,12 @@ import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
40
39
  import * as React_2 from 'react';
41
40
  import { ReactNode } from 'react';
42
41
  import { RefAttributes } from 'react';
42
+ import { RenderProps } from 'input-otp';
43
43
  import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
44
44
  import * as SelectPrimitive from '@radix-ui/react-select';
45
45
  import * as SeparatorPrimitive from '@radix-ui/react-separator';
46
46
  import * as SliderPrimitive from '@radix-ui/react-slider';
47
- import * as Slot from '@radix-ui/react-slot';
47
+ import { Slot } from '@radix-ui/react-slot';
48
48
  import * as SwitchPrimitive from '@radix-ui/react-switch';
49
49
  import { Table as Table_2 } from '@tanstack/react-table';
50
50
  import * as TabsPrimitive from '@radix-ui/react-tabs';
@@ -111,31 +111,33 @@ export declare function Alert({ className, variant, ...props }: React_2.Componen
111
111
 
112
112
  export declare function AlertDescription({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
113
113
 
114
- export declare function AlertDialog({ ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Root>): JSX.Element;
115
-
116
- export declare function AlertDialogAction({ className, variant, size, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Action> & Pick<React_2.ComponentProps<typeof Button>, "variant" | "size">): JSX.Element;
114
+ export declare const AlertDialog: {
115
+ (props: React_2.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Root>): JSX.Element;
116
+ displayName: string;
117
+ };
117
118
 
118
- export declare function AlertDialogCancel({ className, variant, size, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Cancel> & Pick<React_2.ComponentProps<typeof Button>, "variant" | "size">): JSX.Element;
119
+ export declare const AlertDialogAction: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
119
120
 
120
- export declare function AlertDialogContent({ className, size, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Content> & {
121
- size?: "default" | "sm";
122
- }): JSX.Element;
121
+ export declare const AlertDialogCancel: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
123
122
 
124
- export declare function AlertDialogDescription({ className, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Description>): JSX.Element;
123
+ export declare const AlertDialogContent: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
125
124
 
126
- export declare function AlertDialogFooter({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
125
+ export declare const AlertDialogDescription: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React_2.RefAttributes<HTMLParagraphElement>, "ref"> & React_2.RefAttributes<HTMLParagraphElement>>;
127
126
 
128
- export declare function AlertDialogHeader({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
127
+ export declare const AlertDialogFooter: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
129
128
 
130
- export declare function AlertDialogMedia({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
129
+ export declare const AlertDialogHeader: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
131
130
 
132
- export declare function AlertDialogOverlay({ className, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Overlay>): JSX.Element;
131
+ export declare const AlertDialogOverlay: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
133
132
 
134
- export declare function AlertDialogPortal({ ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Portal>): JSX.Element;
133
+ export declare const AlertDialogPortal: {
134
+ (props: React_2.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Portal>): JSX.Element;
135
+ displayName: string;
136
+ };
135
137
 
136
- export declare function AlertDialogTitle({ className, ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Title>): JSX.Element;
138
+ export declare const AlertDialogTitle: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React_2.RefAttributes<HTMLHeadingElement>, "ref"> & React_2.RefAttributes<HTMLHeadingElement>>;
137
139
 
138
- export declare function AlertDialogTrigger({ ...props }: React_2.ComponentProps<typeof AlertDialogPrimitive.Trigger>): JSX.Element;
140
+ export declare const AlertDialogTrigger: React_2.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTriggerProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
139
141
 
140
142
  export declare function AlertTitle({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
141
143
 
@@ -171,18 +173,10 @@ declare interface AssistantComponentProps {
171
173
  currentUserDetails: UserData;
172
174
  }
173
175
 
174
- export declare function Avatar({ className, size, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Root> & {
175
- size?: "default" | "sm" | "lg";
176
- }): JSX.Element;
177
-
178
- export declare function AvatarBadge({ className, ...props }: React_2.ComponentProps<"span">): JSX.Element;
176
+ export declare function Avatar({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Root>): JSX.Element;
179
177
 
180
178
  export declare function AvatarFallback({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Fallback>): JSX.Element;
181
179
 
182
- export declare function AvatarGroup({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
183
-
184
- export declare function AvatarGroupCount({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
185
-
186
180
  export declare function AvatarImage({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Image>): JSX.Element;
187
181
 
188
182
  export declare const axiosInstance: AxiosInstance;
@@ -192,7 +186,7 @@ export declare function Badge({ className, variant, asChild, ...props }: React_2
192
186
  }): JSX.Element;
193
187
 
194
188
  export declare const badgeVariants: (props?: ({
195
- variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
189
+ variant?: "default" | "destructive" | "outline" | "secondary" | "verified" | null | undefined;
196
190
  } & ClassProp) | undefined) => string;
197
191
 
198
192
  export declare function BigCalendar({ events, extraParamsEvent, extraTools }: BigCalendarProps): JSX.Element;
@@ -266,7 +260,7 @@ export declare interface ButtonProps extends default_2.ButtonHTMLAttributes<HTML
266
260
 
267
261
  export declare const buttonVariants: (props?: ({
268
262
  variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | "dashed" | null | undefined;
269
- size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
263
+ size?: "default" | "sm" | "lg" | "icon" | "smIcon" | "circular" | "lgIcon" | null | undefined;
270
264
  } & ClassProp) | undefined) => string;
271
265
 
272
266
  export declare interface ButtonWithTooltipProps extends default_2.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
@@ -487,9 +481,7 @@ declare interface DialogContextProps {
487
481
 
488
482
  export declare function DialogDescription({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Description>): JSX.Element;
489
483
 
490
- export declare function DialogFooter({ className, showCloseButton, children, ...props }: React_2.ComponentProps<"div"> & {
491
- showCloseButton?: boolean;
492
- }): JSX.Element;
484
+ export declare function DialogFooter({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
493
485
 
494
486
  export declare function DialogHeader({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
495
487
 
@@ -729,7 +721,7 @@ export declare interface FormComboboxItemProps {
729
721
  disabled?: ((...args: any) => boolean) | boolean;
730
722
  }
731
723
 
732
- export declare function FormControl({ ...props }: React_2.ComponentProps<typeof Slot.Root>): JSX.Element;
724
+ export declare function FormControl({ ...props }: React_2.ComponentProps<typeof Slot>): JSX.Element;
733
725
 
734
726
  export declare function FormDateInput({ formControl, name, label, placeholder, dateFormat, calendarDateDisabled, formDescription, disabled, }: FormDateInputProps): JSX.Element;
735
727
 
@@ -890,17 +882,41 @@ export declare interface ImageFormProps {
890
882
 
891
883
  export declare function Input({ className, type, ...props }: React_2.ComponentProps<"input">): JSX.Element;
892
884
 
893
- export declare function InputOTP({ className, containerClassName, ...props }: React_2.ComponentProps<typeof OTPInput> & {
885
+ export declare const InputOTP: React_2.ForwardRefExoticComponent<(Omit<Omit<React_2.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
886
+ value?: string;
887
+ onChange?: (newValue: string) => unknown;
888
+ maxLength: number;
889
+ textAlign?: "left" | "center" | "right";
890
+ onComplete?: (...args: any[]) => unknown;
891
+ pushPasswordManagerStrategy?: "increase-width" | "none";
892
+ pasteTransformer?: (pasted: string) => string;
894
893
  containerClassName?: string;
895
- }): JSX.Element;
894
+ noScriptCSSFallback?: string | null;
895
+ } & {
896
+ render: (props: RenderProps) => React_2.ReactNode;
897
+ children?: never;
898
+ } & React_2.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React_2.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
899
+ value?: string;
900
+ onChange?: (newValue: string) => unknown;
901
+ maxLength: number;
902
+ textAlign?: "left" | "center" | "right";
903
+ onComplete?: (...args: any[]) => unknown;
904
+ pushPasswordManagerStrategy?: "increase-width" | "none";
905
+ pasteTransformer?: (pasted: string) => string;
906
+ containerClassName?: string;
907
+ noScriptCSSFallback?: string | null;
908
+ } & {
909
+ render?: never;
910
+ children: React_2.ReactNode;
911
+ } & React_2.RefAttributes<HTMLInputElement>, "ref">) & React_2.RefAttributes<HTMLInputElement>>;
896
912
 
897
- export declare function InputOTPGroup({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
913
+ export declare const InputOTPGroup: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
898
914
 
899
- export declare function InputOTPSeparator({ ...props }: React_2.ComponentProps<"div">): JSX.Element;
915
+ export declare const InputOTPSeparator: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
900
916
 
901
- export declare function InputOTPSlot({ index, className, ...props }: React_2.ComponentProps<"div"> & {
917
+ export declare const InputOTPSlot: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
902
918
  index: number;
903
- }): JSX.Element;
919
+ } & React_2.RefAttributes<HTMLDivElement>>;
904
920
 
905
921
  export declare interface ISVGProps extends React_2.SVGProps<SVGSVGElement> {
906
922
  size?: number;
@@ -951,7 +967,9 @@ export declare function NavigationMenuList({ className, ...props }: React_2.Comp
951
967
 
952
968
  export declare function NavigationMenuTrigger({ className, children, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Trigger>): JSX.Element;
953
969
 
954
- export declare const navigationMenuTriggerStyle: (props?: ClassProp | undefined) => string;
970
+ export declare const navigationMenuTriggerStyle: (props?: ({
971
+ variant?: "default" | null | undefined;
972
+ } & ClassProp) | undefined) => string;
955
973
 
956
974
  export declare function NavigationMenuViewport({ className, ...props }: React_2.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): JSX.Element;
957
975
 
@@ -1008,12 +1026,6 @@ export declare function PopoverAnchor({ ...props }: React_2.ComponentProps<typeo
1008
1026
 
1009
1027
  export declare function PopoverContent({ className, align, sideOffset, ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Content>): JSX.Element;
1010
1028
 
1011
- export declare function PopoverDescription({ className, ...props }: React_2.ComponentProps<"p">): JSX.Element;
1012
-
1013
- export declare function PopoverHeader({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
1014
-
1015
- export declare function PopoverTitle({ className, ...props }: React_2.ComponentProps<"h2">): JSX.Element;
1016
-
1017
1029
  export declare function PopoverTrigger({ ...props }: React_2.ComponentProps<typeof PopoverPrimitive.Trigger>): JSX.Element;
1018
1030
 
1019
1031
  export declare interface ProcessedFrameworkData {
@@ -1024,7 +1036,12 @@ export declare interface ProcessedFrameworkData {
1024
1036
  }>;
1025
1037
  }
1026
1038
 
1027
- export declare function Progress({ className, value, ...props }: React_2.ComponentProps<typeof ProgressPrimitive.Root>): JSX.Element;
1039
+ export declare function Progress({ className, value, indicatorColor, ...props }: ProgressProps): JSX.Element;
1040
+
1041
+ declare interface ProgressProps extends React_2.ComponentProps<typeof ProgressPrimitive.Root> {
1042
+ value?: number;
1043
+ indicatorColor?: string;
1044
+ }
1028
1045
 
1029
1046
  declare interface Props {
1030
1047
  parentDivProps?: any;
@@ -1125,7 +1142,7 @@ export declare function SearchInput({ className, ...props }: any): JSX.Element;
1125
1142
 
1126
1143
  export declare function Select({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Root>): JSX.Element;
1127
1144
 
1128
- export declare function SelectContent({ className, children, position, align, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Content>): JSX.Element;
1145
+ export declare function SelectContent({ className, children, position, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Content>): JSX.Element;
1129
1146
 
1130
1147
  export declare function SelectGroup({ ...props }: React_2.ComponentProps<typeof SelectPrimitive.Group>): JSX.Element;
1131
1148
 
@@ -1165,9 +1182,8 @@ export declare function SheetComponent({ buttonText, buttonIcon, buttonStyle, sh
1165
1182
  closeButton?: boolean;
1166
1183
  }): JSX.Element;
1167
1184
 
1168
- export declare function SheetContent({ className, children, side, showCloseButton, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Content> & {
1185
+ export declare function SheetContent({ className, children, side, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Content> & {
1169
1186
  side?: "top" | "right" | "bottom" | "left";
1170
- showCloseButton?: boolean;
1171
1187
  }): JSX.Element;
1172
1188
 
1173
1189
  export declare function SheetDescription({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Description>): JSX.Element;
@@ -1269,11 +1285,13 @@ export declare interface SidebarNavContextType {
1269
1285
 
1270
1286
  export declare interface SidebarNavItem {
1271
1287
  title: string;
1272
- url: string;
1273
- icon?: LucideIcon;
1288
+ url?: string;
1289
+ icon?: ComponentType<{
1290
+ className?: string;
1291
+ }>;
1292
+ items?: SidebarNavItem[];
1274
1293
  isActive?: boolean;
1275
1294
  default?: boolean;
1276
- items?: SidebarNavSubItem[];
1277
1295
  header?: ReactNode;
1278
1296
  footer?: ReactNode;
1279
1297
  }
@@ -1302,7 +1320,7 @@ export declare function SidebarTrigger({ className, onClick, ...props }: React_2
1302
1320
 
1303
1321
  export declare function SimpleWidget({ title, iconName, iconSize, iconClass, primaryText, secondaryText, mainClassName, loading, loadingMessage }: Props_3): JSX.Element;
1304
1322
 
1305
- export declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): JSX.Element;
1323
+ export declare function Skeleton({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
1306
1324
 
1307
1325
  export declare function SkeletonWidget({ count }: {
1308
1326
  count: number;
@@ -1320,9 +1338,9 @@ export declare interface Software {
1320
1338
  order: number;
1321
1339
  }
1322
1340
 
1323
- export declare function Switch({ className, size, ...props }: React_2.ComponentProps<typeof SwitchPrimitive.Root> & {
1324
- size?: "sm" | "default";
1325
- }): JSX.Element;
1341
+ export declare type StepStatus = "OUTSTANDING" | "IN PROGRESS" | "COMPLETED";
1342
+
1343
+ export declare function Switch({ className, ...props }: React_2.ComponentProps<typeof SwitchPrimitive.Root>): JSX.Element;
1326
1344
 
1327
1345
  export declare interface TabArray {
1328
1346
  tabName: string;
@@ -1361,15 +1379,11 @@ export declare interface TabProps {
1361
1379
  isSeperatePage?: boolean;
1362
1380
  }
1363
1381
 
1364
- export declare function Tabs({ className, orientation, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Root>): JSX.Element;
1382
+ export declare function Tabs({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Root>): JSX.Element;
1365
1383
 
1366
1384
  export declare function TabsContent({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Content>): JSX.Element;
1367
1385
 
1368
- export declare function TabsList({ className, variant, ...props }: React_2.ComponentProps<typeof TabsPrimitive.List> & VariantProps<typeof tabsListVariants>): JSX.Element;
1369
-
1370
- export declare const tabsListVariants: (props?: ({
1371
- variant?: "line" | "default" | null | undefined;
1372
- } & ClassProp) | undefined) => string;
1386
+ export declare function TabsList({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.List>): JSX.Element;
1373
1387
 
1374
1388
  export declare function TabsTrigger({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Trigger>): JSX.Element;
1375
1389
 
@@ -1487,6 +1501,26 @@ export declare interface WidgetsFunctionProps {
1487
1501
  widgetData: WidgetProps[];
1488
1502
  }
1489
1503
 
1504
+ export declare function Workflow({ name, steps, style }: WorkflowProps): JSX.Element;
1505
+
1506
+ declare type WorkflowProps = {
1507
+ name: string;
1508
+ title?: string;
1509
+ steps: WorkflowStep[];
1510
+ onDropdownSelect?: (stepId: string, value: string) => void;
1511
+ style?: React_2.CSSProperties;
1512
+ };
1513
+
1514
+ export declare type WorkflowStep = {
1515
+ id?: string;
1516
+ title: string;
1517
+ status: StepStatus;
1518
+ dropdownOptions?: React_2.ReactNode[];
1519
+ selectedOption?: string;
1520
+ owner?: string;
1521
+ createdAt?: string;
1522
+ };
1523
+
1490
1524
  export declare function WorkInProgress(): JSX.Element;
1491
1525
 
1492
1526
  export { }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ikon-react-components-lib",
3
3
  "private": false,
4
- "version": "1.0.6",
4
+ "version": "1.0.7",
5
5
  "type": "module",
6
6
  "main": "./dist/ikon-react-components-lib.cjs.js",
7
7
  "module": "./dist/ikon-react-components-lib.es.js",
@@ -82,6 +82,7 @@
82
82
  "use-debounce": "^10.1.1",
83
83
  "uuid": "^13.0.0",
84
84
  "vaul": "^1.1.2",
85
+ "webfontloader": "^1.6.28",
85
86
  "xlsx": "^0.18.5",
86
87
  "zod": "^4.3.6",
87
88
  "zxcvbn": "^4.4.2"
@@ -94,6 +95,7 @@
94
95
  "@types/react": "^19.2.7",
95
96
  "@types/react-big-calendar": "^1.16.3",
96
97
  "@types/react-dom": "^19.2.3",
98
+ "@types/webfontloader": "^1.6.38",
97
99
  "@types/zxcvbn": "^4.4.5",
98
100
  "@vitejs/plugin-react": "^5.1.1",
99
101
  "autoprefixer": "^10.4.24",