@iclips/ui 0.0.2 → 0.0.5

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.js CHANGED
@@ -45,6 +45,8 @@ import { HexColorPicker } from 'react-colorful';
45
45
  import { format, differenceInDays, startOfMonth, endOfMonth, eachDayOfInterval, isWeekend, isSameDay, subMonths, addMonths, startOfWeek, endOfWeek, isToday, isSameMonth, setHours, formatDistanceToNow, getHours, getMinutes, addDays, addHours, differenceInMinutes } from 'date-fns';
46
46
  import { ptBR } from 'date-fns/locale';
47
47
  import ReactDOM, { flushSync } from 'react-dom';
48
+ import { useSyncExternalStore } from 'use-sync-external-store/shim/index.js';
49
+ import { useSyncExternalStoreWithSelector } from 'use-sync-external-store/shim/with-selector.js';
48
50
 
49
51
  var __create = Object.create;
50
52
  var __defProp = Object.defineProperty;
@@ -52,13 +54,7 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
52
54
  var __getOwnPropNames = Object.getOwnPropertyNames;
53
55
  var __getProtoOf = Object.getPrototypeOf;
54
56
  var __hasOwnProp = Object.prototype.hasOwnProperty;
55
- var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
56
- get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
57
- }) : x)(function(x) {
58
- if (typeof require !== "undefined") return require.apply(this, arguments);
59
- throw Error('Dynamic require of "' + x + '" is not supported');
60
- });
61
- var __commonJS = (cb, mod) => function __require2() {
57
+ var __commonJS = (cb, mod) => function __require() {
62
58
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
63
59
  };
64
60
  var __export = (target, all) => {
@@ -82,132 +78,6 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
82
78
  mod
83
79
  ));
84
80
 
85
- // ../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js
86
- var require_use_sync_external_store_shim_production = __commonJS({
87
- "../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js"(exports$1) {
88
- var React31 = __require("react");
89
- function is(x, y) {
90
- return x === y && (0 !== x || 1 / x === 1 / y) || x !== x && y !== y;
91
- }
92
- var objectIs = "function" === typeof Object.is ? Object.is : is;
93
- var useState18 = React31.useState;
94
- var useEffect16 = React31.useEffect;
95
- var useLayoutEffect4 = React31.useLayoutEffect;
96
- var useDebugValue3 = React31.useDebugValue;
97
- function useSyncExternalStore$2(subscribe, getSnapshot) {
98
- var value = getSnapshot(), _useState = useState18({ inst: { value, getSnapshot } }), inst = _useState[0].inst, forceUpdate = _useState[1];
99
- useLayoutEffect4(
100
- function() {
101
- inst.value = value;
102
- inst.getSnapshot = getSnapshot;
103
- checkIfSnapshotChanged(inst) && forceUpdate({ inst });
104
- },
105
- [subscribe, value, getSnapshot]
106
- );
107
- useEffect16(
108
- function() {
109
- checkIfSnapshotChanged(inst) && forceUpdate({ inst });
110
- return subscribe(function() {
111
- checkIfSnapshotChanged(inst) && forceUpdate({ inst });
112
- });
113
- },
114
- [subscribe]
115
- );
116
- useDebugValue3(value);
117
- return value;
118
- }
119
- function checkIfSnapshotChanged(inst) {
120
- var latestGetSnapshot = inst.getSnapshot;
121
- inst = inst.value;
122
- try {
123
- var nextValue = latestGetSnapshot();
124
- return !objectIs(inst, nextValue);
125
- } catch (error) {
126
- return true;
127
- }
128
- }
129
- function useSyncExternalStore$1(subscribe, getSnapshot) {
130
- return getSnapshot();
131
- }
132
- var shim = "undefined" === typeof window || "undefined" === typeof window.document || "undefined" === typeof window.document.createElement ? useSyncExternalStore$1 : useSyncExternalStore$2;
133
- exports$1.useSyncExternalStore = void 0 !== React31.useSyncExternalStore ? React31.useSyncExternalStore : shim;
134
- }
135
- });
136
-
137
- // ../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js
138
- var require_use_sync_external_store_shim_development = __commonJS({
139
- "../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js"(exports$1) {
140
- "production" !== process.env.NODE_ENV && (function() {
141
- function is(x, y) {
142
- return x === y && (0 !== x || 1 / x === 1 / y) || x !== x && y !== y;
143
- }
144
- function useSyncExternalStore$2(subscribe, getSnapshot) {
145
- didWarnOld18Alpha || void 0 === React31.startTransition || (didWarnOld18Alpha = true, console.error(
146
- "You are using an outdated, pre-release alpha of React 18 that does not support useSyncExternalStore. The use-sync-external-store shim will not work correctly. Upgrade to a newer pre-release."
147
- ));
148
- var value = getSnapshot();
149
- if (!didWarnUncachedGetSnapshot) {
150
- var cachedValue = getSnapshot();
151
- objectIs(value, cachedValue) || (console.error(
152
- "The result of getSnapshot should be cached to avoid an infinite loop"
153
- ), didWarnUncachedGetSnapshot = true);
154
- }
155
- cachedValue = useState18({
156
- inst: { value, getSnapshot }
157
- });
158
- var inst = cachedValue[0].inst, forceUpdate = cachedValue[1];
159
- useLayoutEffect4(
160
- function() {
161
- inst.value = value;
162
- inst.getSnapshot = getSnapshot;
163
- checkIfSnapshotChanged(inst) && forceUpdate({ inst });
164
- },
165
- [subscribe, value, getSnapshot]
166
- );
167
- useEffect16(
168
- function() {
169
- checkIfSnapshotChanged(inst) && forceUpdate({ inst });
170
- return subscribe(function() {
171
- checkIfSnapshotChanged(inst) && forceUpdate({ inst });
172
- });
173
- },
174
- [subscribe]
175
- );
176
- useDebugValue3(value);
177
- return value;
178
- }
179
- function checkIfSnapshotChanged(inst) {
180
- var latestGetSnapshot = inst.getSnapshot;
181
- inst = inst.value;
182
- try {
183
- var nextValue = latestGetSnapshot();
184
- return !objectIs(inst, nextValue);
185
- } catch (error) {
186
- return true;
187
- }
188
- }
189
- function useSyncExternalStore$1(subscribe, getSnapshot) {
190
- return getSnapshot();
191
- }
192
- "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
193
- var React31 = __require("react"), objectIs = "function" === typeof Object.is ? Object.is : is, useState18 = React31.useState, useEffect16 = React31.useEffect, useLayoutEffect4 = React31.useLayoutEffect, useDebugValue3 = React31.useDebugValue, didWarnOld18Alpha = false, didWarnUncachedGetSnapshot = false, shim = "undefined" === typeof window || "undefined" === typeof window.document || "undefined" === typeof window.document.createElement ? useSyncExternalStore$1 : useSyncExternalStore$2;
194
- exports$1.useSyncExternalStore = void 0 !== React31.useSyncExternalStore ? React31.useSyncExternalStore : shim;
195
- "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());
196
- })();
197
- }
198
- });
199
-
200
- // ../node_modules/use-sync-external-store/shim/index.js
201
- var require_shim = __commonJS({
202
- "../node_modules/use-sync-external-store/shim/index.js"(exports$1, module) {
203
- if (process.env.NODE_ENV === "production") {
204
- module.exports = require_use_sync_external_store_shim_production();
205
- } else {
206
- module.exports = require_use_sync_external_store_shim_development();
207
- }
208
- }
209
- });
210
-
211
81
  // ../node_modules/fast-deep-equal/es6/react.js
212
82
  var require_react = __commonJS({
213
83
  "../node_modules/fast-deep-equal/es6/react.js"(exports$1, module) {
@@ -266,151 +136,6 @@ var require_react = __commonJS({
266
136
  }
267
137
  });
268
138
 
269
- // ../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.js
270
- var require_with_selector_production = __commonJS({
271
- "../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.js"(exports$1) {
272
- var React31 = __require("react");
273
- var shim = require_shim();
274
- function is(x, y) {
275
- return x === y && (0 !== x || 1 / x === 1 / y) || x !== x && y !== y;
276
- }
277
- var objectIs = "function" === typeof Object.is ? Object.is : is;
278
- var useSyncExternalStore3 = shim.useSyncExternalStore;
279
- var useRef4 = React31.useRef;
280
- var useEffect16 = React31.useEffect;
281
- var useMemo21 = React31.useMemo;
282
- var useDebugValue3 = React31.useDebugValue;
283
- exports$1.useSyncExternalStoreWithSelector = function(subscribe, getSnapshot, getServerSnapshot, selector, isEqual) {
284
- var instRef = useRef4(null);
285
- if (null === instRef.current) {
286
- var inst = { hasValue: false, value: null };
287
- instRef.current = inst;
288
- } else inst = instRef.current;
289
- instRef = useMemo21(
290
- function() {
291
- function memoizedSelector(nextSnapshot) {
292
- if (!hasMemo) {
293
- hasMemo = true;
294
- memoizedSnapshot = nextSnapshot;
295
- nextSnapshot = selector(nextSnapshot);
296
- if (void 0 !== isEqual && inst.hasValue) {
297
- var currentSelection = inst.value;
298
- if (isEqual(currentSelection, nextSnapshot))
299
- return memoizedSelection = currentSelection;
300
- }
301
- return memoizedSelection = nextSnapshot;
302
- }
303
- currentSelection = memoizedSelection;
304
- if (objectIs(memoizedSnapshot, nextSnapshot)) return currentSelection;
305
- var nextSelection = selector(nextSnapshot);
306
- if (void 0 !== isEqual && isEqual(currentSelection, nextSelection))
307
- return memoizedSnapshot = nextSnapshot, currentSelection;
308
- memoizedSnapshot = nextSnapshot;
309
- return memoizedSelection = nextSelection;
310
- }
311
- var hasMemo = false, memoizedSnapshot, memoizedSelection, maybeGetServerSnapshot = void 0 === getServerSnapshot ? null : getServerSnapshot;
312
- return [
313
- function() {
314
- return memoizedSelector(getSnapshot());
315
- },
316
- null === maybeGetServerSnapshot ? void 0 : function() {
317
- return memoizedSelector(maybeGetServerSnapshot());
318
- }
319
- ];
320
- },
321
- [getSnapshot, getServerSnapshot, selector, isEqual]
322
- );
323
- var value = useSyncExternalStore3(subscribe, instRef[0], instRef[1]);
324
- useEffect16(
325
- function() {
326
- inst.hasValue = true;
327
- inst.value = value;
328
- },
329
- [value]
330
- );
331
- useDebugValue3(value);
332
- return value;
333
- };
334
- }
335
- });
336
-
337
- // ../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js
338
- var require_with_selector_development = __commonJS({
339
- "../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js"(exports$1) {
340
- "production" !== process.env.NODE_ENV && (function() {
341
- function is(x, y) {
342
- return x === y && (0 !== x || 1 / x === 1 / y) || x !== x && y !== y;
343
- }
344
- "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
345
- var React31 = __require("react"), shim = require_shim(), objectIs = "function" === typeof Object.is ? Object.is : is, useSyncExternalStore3 = shim.useSyncExternalStore, useRef4 = React31.useRef, useEffect16 = React31.useEffect, useMemo21 = React31.useMemo, useDebugValue3 = React31.useDebugValue;
346
- exports$1.useSyncExternalStoreWithSelector = function(subscribe, getSnapshot, getServerSnapshot, selector, isEqual) {
347
- var instRef = useRef4(null);
348
- if (null === instRef.current) {
349
- var inst = { hasValue: false, value: null };
350
- instRef.current = inst;
351
- } else inst = instRef.current;
352
- instRef = useMemo21(
353
- function() {
354
- function memoizedSelector(nextSnapshot) {
355
- if (!hasMemo) {
356
- hasMemo = true;
357
- memoizedSnapshot = nextSnapshot;
358
- nextSnapshot = selector(nextSnapshot);
359
- if (void 0 !== isEqual && inst.hasValue) {
360
- var currentSelection = inst.value;
361
- if (isEqual(currentSelection, nextSnapshot))
362
- return memoizedSelection = currentSelection;
363
- }
364
- return memoizedSelection = nextSnapshot;
365
- }
366
- currentSelection = memoizedSelection;
367
- if (objectIs(memoizedSnapshot, nextSnapshot))
368
- return currentSelection;
369
- var nextSelection = selector(nextSnapshot);
370
- if (void 0 !== isEqual && isEqual(currentSelection, nextSelection))
371
- return memoizedSnapshot = nextSnapshot, currentSelection;
372
- memoizedSnapshot = nextSnapshot;
373
- return memoizedSelection = nextSelection;
374
- }
375
- var hasMemo = false, memoizedSnapshot, memoizedSelection, maybeGetServerSnapshot = void 0 === getServerSnapshot ? null : getServerSnapshot;
376
- return [
377
- function() {
378
- return memoizedSelector(getSnapshot());
379
- },
380
- null === maybeGetServerSnapshot ? void 0 : function() {
381
- return memoizedSelector(maybeGetServerSnapshot());
382
- }
383
- ];
384
- },
385
- [getSnapshot, getServerSnapshot, selector, isEqual]
386
- );
387
- var value = useSyncExternalStore3(subscribe, instRef[0], instRef[1]);
388
- useEffect16(
389
- function() {
390
- inst.hasValue = true;
391
- inst.value = value;
392
- },
393
- [value]
394
- );
395
- useDebugValue3(value);
396
- return value;
397
- };
398
- "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());
399
- })();
400
- }
401
- });
402
-
403
- // ../node_modules/use-sync-external-store/shim/with-selector.js
404
- var require_with_selector = __commonJS({
405
- "../node_modules/use-sync-external-store/shim/with-selector.js"(exports$1, module) {
406
- if (process.env.NODE_ENV === "production") {
407
- module.exports = require_with_selector_production();
408
- } else {
409
- module.exports = require_with_selector_development();
410
- }
411
- }
412
- });
413
-
414
139
  // ../node_modules/fast-deep-equal/index.js
415
140
  var require_fast_deep_equal = __commonJS({
416
141
  "../node_modules/fast-deep-equal/index.js"(exports$1, module) {
@@ -4117,9 +3842,6 @@ function ColorPickerInline({
4117
3842
  );
4118
3843
  }
4119
3844
 
4120
- // ../node_modules/@tiptap/react/dist/index.js
4121
- var import_shim = __toESM(require_shim());
4122
-
4123
3845
  // ../node_modules/orderedmap/dist/index.js
4124
3846
  function OrderedMap(content) {
4125
3847
  this.content = content;
@@ -21753,9 +21475,7 @@ function markPasteRule(config) {
21753
21475
  }
21754
21476
 
21755
21477
  // ../node_modules/@tiptap/react/dist/index.js
21756
- var import_shim2 = __toESM(require_shim());
21757
21478
  var import_react5 = __toESM(require_react());
21758
- var import_with_selector = __toESM(require_with_selector());
21759
21479
  var mergeRefs = (...refs) => {
21760
21480
  return (node) => {
21761
21481
  refs.forEach((ref) => {
@@ -21768,7 +21488,7 @@ var mergeRefs = (...refs) => {
21768
21488
  };
21769
21489
  };
21770
21490
  var Portals = ({ contentComponent }) => {
21771
- const renderers = (0, import_shim.useSyncExternalStore)(
21491
+ const renderers = useSyncExternalStore(
21772
21492
  contentComponent.subscribe,
21773
21493
  contentComponent.getSnapshot,
21774
21494
  contentComponent.getServerSnapshot
@@ -21972,7 +21692,7 @@ var EditorStateManager = class {
21972
21692
  function useEditorState(options) {
21973
21693
  var _a;
21974
21694
  const [editorStateManager] = useState(() => new EditorStateManager(options.editor));
21975
- const selectedState = (0, import_with_selector.useSyncExternalStoreWithSelector)(
21695
+ const selectedState = useSyncExternalStoreWithSelector(
21976
21696
  editorStateManager.subscribe,
21977
21697
  editorStateManager.getSnapshot,
21978
21698
  editorStateManager.getServerSnapshot,
@@ -22222,7 +21942,7 @@ function useEditor(options = {}, deps = []) {
22222
21942
  const mostRecentOptions = useRef(options);
22223
21943
  mostRecentOptions.current = options;
22224
21944
  const [instanceManager] = useState(() => new EditorInstanceManager(mostRecentOptions));
22225
- const editor = (0, import_shim2.useSyncExternalStore)(
21945
+ const editor = useSyncExternalStore(
22226
21946
  instanceManager.subscribe,
22227
21947
  instanceManager.getEditor,
22228
21948
  instanceManager.getServerSnapshot
@@ -59507,52 +59227,6 @@ function UnderlineTabsContent({
59507
59227
  }
59508
59228
  );
59509
59229
  }
59510
- /*! Bundled license information:
59511
-
59512
- use-sync-external-store/cjs/use-sync-external-store-shim.production.js:
59513
- (**
59514
- * @license React
59515
- * use-sync-external-store-shim.production.js
59516
- *
59517
- * Copyright (c) Meta Platforms, Inc. and affiliates.
59518
- *
59519
- * This source code is licensed under the MIT license found in the
59520
- * LICENSE file in the root directory of this source tree.
59521
- *)
59522
-
59523
- use-sync-external-store/cjs/use-sync-external-store-shim.development.js:
59524
- (**
59525
- * @license React
59526
- * use-sync-external-store-shim.development.js
59527
- *
59528
- * Copyright (c) Meta Platforms, Inc. and affiliates.
59529
- *
59530
- * This source code is licensed under the MIT license found in the
59531
- * LICENSE file in the root directory of this source tree.
59532
- *)
59533
-
59534
- use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.js:
59535
- (**
59536
- * @license React
59537
- * use-sync-external-store-shim/with-selector.production.js
59538
- *
59539
- * Copyright (c) Meta Platforms, Inc. and affiliates.
59540
- *
59541
- * This source code is licensed under the MIT license found in the
59542
- * LICENSE file in the root directory of this source tree.
59543
- *)
59544
-
59545
- use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.js:
59546
- (**
59547
- * @license React
59548
- * use-sync-external-store-shim/with-selector.development.js
59549
- *
59550
- * Copyright (c) Meta Platforms, Inc. and affiliates.
59551
- *
59552
- * This source code is licensed under the MIT license found in the
59553
- * LICENSE file in the root directory of this source tree.
59554
- *)
59555
- */
59556
59230
 
59557
59231
  export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, BrandLogo, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent2 as CollapsibleContent, CollapsibleTrigger2 as CollapsibleTrigger, ColorPicker, ColorPickerInline, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommentSystem, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DateRangePicker, DateTimePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DocumentEditor, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditorialCalendar, FilterBar, FilterBuilder, FilterChip, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GanttChart, GanttLegend, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, KanbanCard, Label3 as Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup4 as RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, SavedFilters, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator5 as Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TaskCalendar, TaskEditDialog, Textarea, TimePicker, Timeline, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UnderlineTabs, UnderlineTabsContent, UnderlineTabsList, UnderlineTabsTrigger, badgeVariants, buttonVariants, cn, navigationMenuTriggerStyle, toggleVariants, useFormField, useIsMobile, useSidebar };
59558
59232
  //# sourceMappingURL=index.js.map