laif-ds 0.2.53 → 0.2.54
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/components/ui/app-select.js +45 -44
- package/dist/components/ui/app-tooltip.js +123 -0
- package/dist/components/ui/button.js +1 -1
- package/dist/components/ui/file-preview.js +233 -286
- package/dist/index.d.ts +53 -0
- package/dist/index.js +41 -39
- package/dist/styles.v3.css +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -90,13 +90,14 @@ import { WeeklyCalendar as Hn } from "./components/ui/weekly-calendar/weekly-cal
|
|
|
90
90
|
import { cn as yn, downloadFile as Nn, hexContrast as On, hexToRgba as Vn, previewFile as zn, stringToHexColor as En } from "./lib/utils.js";
|
|
91
91
|
import { AppKanban as Kn } from "./components/ui/app-kanban.js";
|
|
92
92
|
import { AppStepper as Wn } from "./components/ui/app-stepper.js";
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
93
|
+
import { AppTooltip as Jn } from "./components/ui/app-tooltip.js";
|
|
94
|
+
import { createActionColumn as Xn, createBooleanColumn as Yn, createBooleanFilter as Zn, createComputedColumn as _n, createDateColumn as $n, createDateFilter as ei, createDateTimeColumn as ri, createDateTimeFilter as oi, createDisplayColumn as ti, createFilterBadge as ai, createFilterBadges as ni, createInitialState as ii, createListFilter as pi, createMultiSelectColumn as li, createNumberColumn as mi, createNumberFilter as ui, createSingleSelectColumn as xi, createSorting as di, createStringColumn as Ci, createStringFilter as gi, getColumnIds as fi, isValidOperatorForType as bi, pinColumns as si, toSelectOptions as ci, toSelectOptionsFromObjects as Si, updateColumnListOptions as Mi } from "./components/ui/tables/data-table/data-table.utils.js";
|
|
95
|
+
import { useAudioRecording as Di } from "./hooks/use-audio-recording.js";
|
|
96
|
+
import { useAutoScroll as Fi } from "./hooks/use-auto-scroll.js";
|
|
97
|
+
import { useAutosizeTextArea as Pi } from "./hooks/use-autosize-textarea.js";
|
|
98
|
+
import { useCopyToClipboard as vi } from "./hooks/use-copy-to-clipboard.js";
|
|
99
|
+
import { useDebounce as Gi } from "./hooks/use-debounce.js";
|
|
100
|
+
import { useIsMobile as Li } from "./hooks/use-mobile.js";
|
|
100
101
|
export {
|
|
101
102
|
pe as Accordion,
|
|
102
103
|
le as AccordionContent,
|
|
@@ -122,6 +123,7 @@ export {
|
|
|
122
123
|
pa as AppSelect,
|
|
123
124
|
ma as AppSidebar,
|
|
124
125
|
Wn as AppStepper,
|
|
126
|
+
Jn as AppTooltip,
|
|
125
127
|
a as AspectRatio,
|
|
126
128
|
Pe as AsyncSelect,
|
|
127
129
|
Ot as AudioVisualizer,
|
|
@@ -363,47 +365,47 @@ export {
|
|
|
363
365
|
g as buttonVariants,
|
|
364
366
|
yn as cn,
|
|
365
367
|
Sa as confirm,
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
368
|
+
Xn as createActionColumn,
|
|
369
|
+
Yn as createBooleanColumn,
|
|
370
|
+
Zn as createBooleanFilter,
|
|
371
|
+
_n as createComputedColumn,
|
|
372
|
+
$n as createDateColumn,
|
|
373
|
+
ei as createDateFilter,
|
|
374
|
+
ri as createDateTimeColumn,
|
|
375
|
+
oi as createDateTimeFilter,
|
|
376
|
+
ti as createDisplayColumn,
|
|
377
|
+
ai as createFilterBadge,
|
|
378
|
+
ni as createFilterBadges,
|
|
379
|
+
ii as createInitialState,
|
|
380
|
+
pi as createListFilter,
|
|
381
|
+
li as createMultiSelectColumn,
|
|
382
|
+
mi as createNumberColumn,
|
|
383
|
+
ui as createNumberFilter,
|
|
384
|
+
xi as createSingleSelectColumn,
|
|
385
|
+
di as createSorting,
|
|
386
|
+
Ci as createStringColumn,
|
|
387
|
+
gi as createStringFilter,
|
|
386
388
|
Nn as downloadFile,
|
|
387
|
-
|
|
389
|
+
fi as getColumnIds,
|
|
388
390
|
On as hexContrast,
|
|
389
391
|
Vn as hexToRgba,
|
|
390
|
-
|
|
391
|
-
|
|
392
|
+
bi as isValidOperatorForType,
|
|
393
|
+
si as pinColumns,
|
|
392
394
|
zn as previewFile,
|
|
393
395
|
Da as previewFileModal,
|
|
394
396
|
Aa as safePreviewFileModal,
|
|
395
397
|
En as stringToHexColor,
|
|
396
|
-
|
|
397
|
-
|
|
398
|
+
ci as toSelectOptions,
|
|
399
|
+
Si as toSelectOptionsFromObjects,
|
|
398
400
|
_ as toggleVariants,
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
401
|
+
Mi as updateColumnListOptions,
|
|
402
|
+
Di as useAudioRecording,
|
|
403
|
+
Fi as useAutoScroll,
|
|
404
|
+
Pi as useAutosizeTextArea,
|
|
405
|
+
vi as useCopyToClipboard,
|
|
406
|
+
Gi as useDebounce,
|
|
405
407
|
$t as useEditorModal,
|
|
406
408
|
yr as useFormField,
|
|
407
|
-
|
|
409
|
+
Li as useIsMobile,
|
|
408
410
|
Dn as useSidebar
|
|
409
411
|
};
|