laif-ds 0.1.83 → 0.1.85
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 +3 -0
- package/dist/index.js +21 -20
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
|
5
5
|
import { ButtonProps as ButtonProps_2 } from './button';
|
|
6
6
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
7
7
|
import { ClassProp } from 'class-variance-authority/types';
|
|
8
|
+
import { ClassValue } from 'clsx';
|
|
8
9
|
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
9
10
|
import { ColumnDef } from '@tanstack/react-table';
|
|
10
11
|
import { Command as Command_2 } from 'cmdk';
|
|
@@ -503,6 +504,8 @@ declare interface CircularProgressProps {
|
|
|
503
504
|
showLabel?: boolean;
|
|
504
505
|
}
|
|
505
506
|
|
|
507
|
+
export declare function cn(...inputs: ClassValue[]): string;
|
|
508
|
+
|
|
506
509
|
export declare function Collapsible({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): JSX.Element;
|
|
507
510
|
|
|
508
511
|
export declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -79,15 +79,15 @@ import { DataCrossTable as un } from "./components/ui/tables/data-cross-table/da
|
|
|
79
79
|
import { DataCrossTableButtonsGroup as dn } from "./components/ui/tables/data-cross-table/data-cross-table-buttons.js";
|
|
80
80
|
import { DataCrossTableProvider as Cn } from "./components/ui/tables/data-cross-table/data-cross-table-context.js";
|
|
81
81
|
import { WeeklyCalendar as fn } from "./components/ui/weekly-calendar/weekly-calendar.js";
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import { useAudioRecording as
|
|
86
|
-
import { useAutoScroll as
|
|
87
|
-
import { useAutosizeTextArea as
|
|
88
|
-
import { useCopyToClipboard as
|
|
89
|
-
import { useDebounce as
|
|
90
|
-
import { useIsMobile as
|
|
82
|
+
import { useEditorModal as Sn } from "./components/editor/editor-hooks/use-modal.js";
|
|
83
|
+
import { AppEditor as cn } from "./components/ui/app-editor.js";
|
|
84
|
+
import { cn as Dn, hexContrast as An, hexToRgba as In, stringToHexColor as hn } from "./lib/utils.js";
|
|
85
|
+
import { useAudioRecording as vn } from "./hooks/use-audio-recording.js";
|
|
86
|
+
import { useAutoScroll as wn } from "./hooks/use-auto-scroll.js";
|
|
87
|
+
import { useAutosizeTextArea as Ln } from "./hooks/use-autosize-textarea.js";
|
|
88
|
+
import { useCopyToClipboard as Rn } from "./hooks/use-copy-to-clipboard.js";
|
|
89
|
+
import { useDebounce as kn } from "./hooks/use-debounce.js";
|
|
90
|
+
import { useIsMobile as Nn } from "./hooks/use-mobile.js";
|
|
91
91
|
export {
|
|
92
92
|
ne as Accordion,
|
|
93
93
|
ie as AccordionContent,
|
|
@@ -105,7 +105,7 @@ export {
|
|
|
105
105
|
Te as AlertDialogTitle,
|
|
106
106
|
De as AlertDialogTrigger,
|
|
107
107
|
de as AlertTitle,
|
|
108
|
-
|
|
108
|
+
cn as AppEditor,
|
|
109
109
|
mn as AppMultipleSelectDropdown,
|
|
110
110
|
nn as AppSelect,
|
|
111
111
|
en as AppSidebar,
|
|
@@ -344,18 +344,19 @@ export {
|
|
|
344
344
|
fn as WeeklyCalendar,
|
|
345
345
|
x as badgeVariants,
|
|
346
346
|
C as buttonVariants,
|
|
347
|
+
Dn as cn,
|
|
347
348
|
tn as confirm,
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
349
|
+
An as hexContrast,
|
|
350
|
+
In as hexToRgba,
|
|
351
|
+
hn as stringToHexColor,
|
|
351
352
|
U as toggleVariants,
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
353
|
+
vn as useAudioRecording,
|
|
354
|
+
wn as useAutoScroll,
|
|
355
|
+
Ln as useAutosizeTextArea,
|
|
356
|
+
Rn as useCopyToClipboard,
|
|
357
|
+
kn as useDebounce,
|
|
358
|
+
Sn as useEditorModal,
|
|
358
359
|
yr as useFormField,
|
|
359
|
-
|
|
360
|
+
Nn as useIsMobile,
|
|
360
361
|
Va as useSidebar
|
|
361
362
|
};
|