@code0-tech/pictor 0.13.1 → 0.15.0
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/LICENSE +2 -3
- package/dist/assets/components/avatar/Avatar.style.css +1 -1
- package/dist/assets/components/form/DateInput.style.css +1 -0
- package/dist/assets/components/toast/Toast.style.css +1 -1
- package/dist/components/command/Command.js +29 -21
- package/dist/components/dialog/Dialog.js +1 -1
- package/dist/components/form/DateInput.d.ts +37 -0
- package/dist/components/form/DateInput.js +285 -0
- package/dist/components/form/index.d.ts +1 -0
- package/dist/components/form/index.js +71 -63
- package/dist/components/toast/Toast.d.ts +5 -4
- package/dist/components/toast/Toast.js +76 -57
- package/dist/index.js +166 -158
- package/package.json +23 -21
- package/dist/assets/components/island/Island.style.css +0 -1
- package/dist/components/island/Island.d.ts +0 -6
- package/dist/components/island/Island.hook.d.ts +0 -19
- package/dist/components/island/Island.hook.js +0 -58
- package/dist/components/island/Island.js +0 -71
|
@@ -4,10 +4,11 @@ export interface ToastProps extends Omit<Component<HTMLDivElement>, "title" | "i
|
|
|
4
4
|
children?: React.ReactNode | React.ReactNode[];
|
|
5
5
|
id: string | number;
|
|
6
6
|
title: React.ReactNode;
|
|
7
|
-
color?: Color;
|
|
8
|
-
|
|
9
|
-
onClose?: (event: React.MouseEvent<HTMLSpanElement, MouseEvent>) => void;
|
|
7
|
+
color?: Color | (string & {});
|
|
8
|
+
icon?: React.ReactNode;
|
|
10
9
|
duration?: number;
|
|
11
10
|
}
|
|
12
|
-
export declare function toast(toast: Omit<ToastProps, 'id'>
|
|
11
|
+
export declare function toast({ wrapper, ...toast }: Omit<ToastProps, 'id'> & {
|
|
12
|
+
wrapper?: (children: React.ReactNode) => React.ReactNode;
|
|
13
|
+
}): string | number;
|
|
13
14
|
export declare function Toast(props: ToastProps): React.JSX.Element;
|
|
@@ -1,67 +1,86 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { c as
|
|
3
|
-
import { toast as
|
|
1
|
+
import { jsxs as N, jsx as o, Fragment as v } from "react/jsx-runtime";
|
|
2
|
+
import { c as z } from "../../_virtual/compiler-runtime.js";
|
|
3
|
+
import { toast as T } from "sonner";
|
|
4
4
|
import '../../assets/components/toast/Toast.style.css';/* empty css */
|
|
5
5
|
import "../../utils/contextStore.js";
|
|
6
6
|
import "react";
|
|
7
|
-
import { mergeComponentProps as
|
|
7
|
+
import { mergeComponentProps as j } from "../../utils/component.js";
|
|
8
8
|
import "js-md5";
|
|
9
|
-
import {
|
|
10
|
-
import { Text as
|
|
11
|
-
import { Flex as
|
|
12
|
-
|
|
13
|
-
function
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
import { IconCircleX as w, IconAlertCircle as F, IconCircleCheck as P, IconInfoCircle as S, IconCircleDot as u } from "@tabler/icons-react";
|
|
10
|
+
import { Text as b } from "../text/Text.js";
|
|
11
|
+
import { Flex as C } from "../flex/Flex.js";
|
|
12
|
+
const k = ["primary", "secondary", "tertiary", "info", "success", "warning", "error"], A = (r) => k.includes(r);
|
|
13
|
+
function U({
|
|
14
|
+
wrapper: r,
|
|
15
|
+
...e
|
|
16
|
+
}) {
|
|
17
|
+
return T.custom((s) => {
|
|
18
|
+
const t = /* @__PURE__ */ o(D, { id: s, ...e, children: e.children });
|
|
19
|
+
return /* @__PURE__ */ o(v, { children: r ? r(t) : t });
|
|
20
|
+
}, {
|
|
21
|
+
duration: e.duration ?? 4e3
|
|
16
22
|
});
|
|
17
23
|
}
|
|
18
|
-
function
|
|
19
|
-
const
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
24
|
+
function D(r) {
|
|
25
|
+
const e = z.c(24);
|
|
26
|
+
let s, t, i, c, n, l;
|
|
27
|
+
if (e[0] !== r) {
|
|
28
|
+
const {
|
|
29
|
+
color: h,
|
|
30
|
+
icon: I,
|
|
31
|
+
title: x,
|
|
32
|
+
children: g,
|
|
33
|
+
duration: R,
|
|
34
|
+
...y
|
|
35
|
+
} = r;
|
|
36
|
+
i = I, l = x, s = g, t = h === void 0 ? "secondary" : h;
|
|
37
|
+
let p;
|
|
38
|
+
e[7] !== t ? (p = A(t), e[7] = t, e[8] = p) : p = e[8], c = p;
|
|
39
|
+
const $ = c ? {} : {
|
|
40
|
+
style: {
|
|
41
|
+
color: t,
|
|
42
|
+
...y.style
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
n = j(`toast toast--${c ? t : "secondary"}`, {
|
|
46
|
+
...y,
|
|
47
|
+
...$
|
|
48
|
+
}), e[0] = r, e[1] = s, e[2] = t, e[3] = i, e[4] = c, e[5] = n, e[6] = l;
|
|
49
|
+
} else
|
|
50
|
+
s = e[1], t = e[2], i = e[3], c = e[4], n = e[5], l = e[6];
|
|
51
|
+
let a;
|
|
52
|
+
e[9] !== t || e[10] !== i || e[11] !== c ? (a = i ?? (c && /* @__PURE__ */ o(E, { color: t })), e[9] = t, e[10] = i, e[11] = c, e[12] = a) : a = e[12];
|
|
53
|
+
let m;
|
|
54
|
+
e[13] !== l ? (m = /* @__PURE__ */ o(b, { size: "md", hierarchy: "primary", children: l }), e[13] = l, e[14] = m) : m = e[14];
|
|
55
|
+
let d;
|
|
56
|
+
e[15] !== a || e[16] !== m ? (d = /* @__PURE__ */ o(C, { className: "toast__header", children: /* @__PURE__ */ N(C, { className: "toast__header-wrapper", children: [
|
|
57
|
+
a,
|
|
58
|
+
m
|
|
59
|
+
] }) }), e[15] = a, e[16] = m, e[17] = d) : d = e[17];
|
|
60
|
+
let _;
|
|
61
|
+
e[18] !== s ? (_ = s && /* @__PURE__ */ o("div", { className: "toast__content", children: s }), e[18] = s, e[19] = _) : _ = e[19];
|
|
62
|
+
let f;
|
|
63
|
+
return e[20] !== n || e[21] !== d || e[22] !== _ ? (f = /* @__PURE__ */ N("div", { ...n, children: [
|
|
64
|
+
d,
|
|
65
|
+
_
|
|
66
|
+
] }), e[20] = n, e[21] = d, e[22] = _, e[23] = f) : f = e[23], f;
|
|
48
67
|
}
|
|
49
|
-
const
|
|
50
|
-
const e =
|
|
51
|
-
color:
|
|
52
|
-
} =
|
|
53
|
-
let
|
|
54
|
-
return e[0] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (
|
|
55
|
-
primary: /* @__PURE__ */ o(
|
|
56
|
-
secondary: /* @__PURE__ */ o(
|
|
57
|
-
tertiary: /* @__PURE__ */ o(
|
|
58
|
-
info: /* @__PURE__ */ o(
|
|
59
|
-
success: /* @__PURE__ */ o(
|
|
60
|
-
warning: /* @__PURE__ */ o(
|
|
61
|
-
error: /* @__PURE__ */ o(
|
|
62
|
-
}, e[0] =
|
|
68
|
+
const E = (r) => {
|
|
69
|
+
const e = z.c(1), {
|
|
70
|
+
color: s
|
|
71
|
+
} = r;
|
|
72
|
+
let t;
|
|
73
|
+
return e[0] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (t = {
|
|
74
|
+
primary: /* @__PURE__ */ o(u, { className: "toast__icon", size: 16 }),
|
|
75
|
+
secondary: /* @__PURE__ */ o(u, { className: "toast__icon", size: 16 }),
|
|
76
|
+
tertiary: /* @__PURE__ */ o(u, { className: "toast__icon", size: 16 }),
|
|
77
|
+
info: /* @__PURE__ */ o(S, { className: "toast__icon", size: 16 }),
|
|
78
|
+
success: /* @__PURE__ */ o(P, { className: "toast__icon", size: 16 }),
|
|
79
|
+
warning: /* @__PURE__ */ o(F, { className: "toast__icon", size: 16 }),
|
|
80
|
+
error: /* @__PURE__ */ o(w, { className: "toast__icon", size: 16 })
|
|
81
|
+
}, e[0] = t) : t = e[0], t[s] ?? null;
|
|
63
82
|
};
|
|
64
83
|
export {
|
|
65
|
-
|
|
66
|
-
|
|
84
|
+
D as Toast,
|
|
85
|
+
U as toast
|
|
67
86
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,85 +1,86 @@
|
|
|
1
|
-
import { Alert as
|
|
1
|
+
import { Alert as o } from "./components/alert/Alert.js";
|
|
2
2
|
import { AuroraBackground as n } from "./components/aurora/Aurora.js";
|
|
3
3
|
import { Avatar as p } from "./components/avatar/Avatar.js";
|
|
4
4
|
import { Badge as l } from "./components/badge/Badge.js";
|
|
5
5
|
import { Breadcrumb as u } from "./components/breadcrumb/Breadcrumb.js";
|
|
6
|
-
import { Button as
|
|
6
|
+
import { Button as g } from "./components/button/Button.js";
|
|
7
7
|
import { ButtonGroup as I } from "./components/button-group/ButtonGroup.js";
|
|
8
8
|
import { Card as T } from "./components/card/Card.js";
|
|
9
9
|
import { Col as b } from "./components/col/Col.js";
|
|
10
|
-
import { Command as s, CommandDialog as
|
|
10
|
+
import { Command as s, CommandDialog as D, CommandEmpty as c, CommandGroup as M, CommandInput as F, CommandItem as P, CommandList as A, CommandSeparator as w, CommandShortcut as v } from "./components/command/Command.js";
|
|
11
11
|
import { Container as R } from "./components/container/Container.js";
|
|
12
12
|
import { ContextMenu as G, ContextMenuArrow as L, ContextMenuContent as y, ContextMenuGroup as z, ContextMenuItem as B, ContextMenuLabel as H, ContextMenuPortal as k, ContextMenuSeparator as E, ContextMenuSub as N, ContextMenuSubContent as O, ContextMenuSubTrigger as Q, ContextMenuTrigger as J } from "./components/context-menu/ContextMenu.js";
|
|
13
13
|
import { DataTable as j } from "./components/data-table/DataTable.js";
|
|
14
14
|
import { DataTableColumn as K } from "./components/data-table/DataTableColumn.js";
|
|
15
15
|
import { DataTableHeader as W, DataTableHeaderColumn as X } from "./components/data-table/DataTableHeader.js";
|
|
16
|
-
import { DataTableMaxPaginationValue as _, DataTablePagination as $, DataTablePaginationBackwardsTrigger as ee, DataTablePaginationContext as
|
|
16
|
+
import { DataTableMaxPaginationValue as _, DataTablePagination as $, DataTablePaginationBackwardsTrigger as ee, DataTablePaginationContext as te, DataTablePaginationForwardTrigger as oe, DataTablePaginationValue as re, useDataTablePagination as ne } from "./components/data-table/DataTablePagination.js";
|
|
17
17
|
import { DataTableFilterInput as pe, createFilterQueryLanguage as ie } from "./components/data-table/DataTableFilterInput.js";
|
|
18
18
|
import { DataTableFilterSuggestionMenu as me } from "./components/data-table/DataTableFilterSuggestionMenu.js";
|
|
19
|
-
import { Dialog as xe, DialogClose as
|
|
20
|
-
import { Editor as
|
|
19
|
+
import { Dialog as xe, DialogClose as ge, DialogContent as fe, DialogDescription as Ie, DialogFooter as Ce, DialogHeader as Te, DialogOverlay as Se, DialogPortal as be, DialogTitle as de, DialogTrigger as se } from "./components/dialog/Dialog.js";
|
|
20
|
+
import { Editor as ce } from "./components/editor/Editor.js";
|
|
21
21
|
import { FileTabsService as Fe } from "./components/file-tabs/FileTabs.service.js";
|
|
22
22
|
import { FileTabs as Ae, FileTabsContent as we, FileTabsList as ve, FileTabsTrigger as he } from "./components/file-tabs/FileTabs.js";
|
|
23
23
|
import { Flex as Ve } from "./components/flex/Flex.js";
|
|
24
24
|
import { CheckboxInput as Le } from "./components/form/CheckboxInput.js";
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
25
|
+
import { DateInput as ze, DateInputContent as Be, DateInputControl as He, DateInputField as ke, DateInputNextTrigger as Ee, DateInputPrevTrigger as Ne, DateInputTrigger as Oe } from "./components/form/DateInput.js";
|
|
26
|
+
import { EditorInput as Je } from "./components/form/EditorInput.js";
|
|
27
|
+
import { EmailInput as je, emailValidation as qe } from "./components/form/EmailInput.js";
|
|
28
|
+
import { FileInput as Ue, FileInputContext as We, FileInputDropzone as Xe, FileInputHiddenInput as Ye, FileInputItem as _e, FileInputItemDeleteTrigger as $e, FileInputItemGroup as et, FileInputItemName as tt, FileInputItemPreview as ot, FileInputItemPreviewImage as rt, FileInputItemSizeText as nt, FileInputTrigger as at } from "./components/form/FileInput.js";
|
|
29
|
+
import { Input as it } from "./components/form/Input.js";
|
|
30
|
+
import { InputDescription as mt } from "./components/form/InputDescription.js";
|
|
31
|
+
import { InputLabel as xt } from "./components/form/InputLabel.js";
|
|
32
|
+
import { InputMessage as ft } from "./components/form/InputMessage.js";
|
|
33
|
+
import { InputSuggestionMenuContent as Ct, InputSuggestionMenuContentItems as Tt } from "./components/form/InputSuggestion.js";
|
|
34
|
+
import { NumberInput as bt } from "./components/form/NumberInput.js";
|
|
35
|
+
import { PasswordInput as st, passwordValidation as Dt } from "./components/form/PasswordInput.js";
|
|
36
|
+
import { PinInput as Mt, PinInputField as Ft, PinInputHiddenField as Pt } from "./components/form/PinInput.js";
|
|
37
|
+
import { RadioGroup as wt } from "./components/form/RadioGroup.js";
|
|
38
|
+
import { RadioInput as ht } from "./components/form/RadioInput.js";
|
|
39
|
+
import { SelectContent as Vt, SelectInput as Gt, SelectItem as Lt, SelectItemText as yt, SelectPortal as zt, SelectTrigger as Bt, SelectValue as Ht, SelectViewport as kt } from "./components/form/SelectInput.js";
|
|
40
|
+
import { SwitchInput as Nt } from "./components/form/SwitchInput.js";
|
|
41
|
+
import { TextAreaInput as Qt } from "./components/form/TextAreaInput.js";
|
|
42
|
+
import { TextInput as Zt } from "./components/form/TextInput.js";
|
|
43
|
+
import { useForm as qt } from "./components/form/useForm.js";
|
|
44
|
+
import { buildDefaultSyntax as Ut } from "./components/form/Input.syntax.hook.js";
|
|
45
|
+
import { JsonView as Xt } from "./components/json-view/JsonView.js";
|
|
46
|
+
import { FullScreen as _t } from "./components/fullscreen/FullScreen.js";
|
|
47
|
+
import { Gantt as eo, getRelativeValue as to } from "./components/gantt/Gantt.js";
|
|
48
|
+
import { Icon as ro, resolveIcon as no } from "./components/icon/Icon.js";
|
|
49
|
+
import { Layout as po } from "./components/layout/Layout.js";
|
|
50
|
+
import { Menu as lo, MenuArrow as mo, MenuCheckboxItem as uo, MenuContent as xo, MenuGroup as go, MenuItem as fo, MenuItemIndicator as Io, MenuLabel as Co, MenuPortal as To, MenuSeparator as So, MenuSub as bo, MenuSubContent as so, MenuSubTrigger as Do, MenuTrigger as co } from "./components/menu/Menu.js";
|
|
51
|
+
import { Progress as Fo } from "./components/progress/Progress.js";
|
|
52
|
+
import { Quote as Ao } from "./components/quote/Quote.js";
|
|
53
|
+
import { ResizableHandle as vo, ResizablePanel as ho, ResizablePanelGroup as Ro } from "./components/resizable/Resizable.js";
|
|
54
|
+
import { Row as Go } from "./components/row/Row.js";
|
|
55
|
+
import { AutoScrollArea as yo, ScrollArea as zo, ScrollAreaCorner as Bo, ScrollAreaScrollbar as Ho, ScrollAreaThumb as ko, ScrollAreaViewport as Eo } from "./components/scroll-area/ScrollArea.js";
|
|
56
|
+
import { SegmentedControl as Oo, SegmentedControlItem as Qo } from "./components/segmented-control/SegmentedControl.js";
|
|
57
|
+
import { Spacing as Zo } from "./components/spacing/Spacing.js";
|
|
58
|
+
import { Tab as qo, TabContent as Ko, TabList as Uo, TabTrigger as Wo } from "./components/tab/Tab.js";
|
|
59
|
+
import { Text as Yo } from "./components/text/Text.js";
|
|
60
|
+
import { Toast as $o, toast as er } from "./components/toast/Toast.js";
|
|
61
|
+
import { Tooltip as or, TooltipArrow as rr, TooltipContent as nr, TooltipPortal as ar, TooltipTrigger as pr } from "./components/tooltip/Tooltip.js";
|
|
62
|
+
import { ContextStore as lr, ContextStoreProvider as mr, useService as ur, useStore as xr } from "./utils/contextStore.js";
|
|
63
|
+
import { ReactiveArrayService as fr, useReactiveArrayService as Ir } from "./utils/reactiveArrayService.js";
|
|
64
|
+
import { mergeComponentProps as Tr } from "./utils/component.js";
|
|
65
|
+
import { Colors as br, hashToColor as dr, withAlpha as sr } from "./utils/color.js";
|
|
66
|
+
import { getDOMSizeFromCodeZeroSize as cr } from "./utils/size.js";
|
|
66
67
|
export {
|
|
67
|
-
|
|
68
|
+
o as Alert,
|
|
68
69
|
n as AuroraBackground,
|
|
69
|
-
|
|
70
|
+
yo as AutoScrollArea,
|
|
70
71
|
p as Avatar,
|
|
71
72
|
l as Badge,
|
|
72
73
|
u as Breadcrumb,
|
|
73
|
-
|
|
74
|
+
g as Button,
|
|
74
75
|
I as ButtonGroup,
|
|
75
76
|
T as Card,
|
|
76
77
|
Le as CheckboxInput,
|
|
77
78
|
b as Col,
|
|
78
|
-
|
|
79
|
+
br as Colors,
|
|
79
80
|
s as Command,
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
81
|
+
D as CommandDialog,
|
|
82
|
+
c as CommandEmpty,
|
|
83
|
+
M as CommandGroup,
|
|
83
84
|
F as CommandInput,
|
|
84
85
|
P as CommandItem,
|
|
85
86
|
A as CommandList,
|
|
@@ -98,8 +99,8 @@ export {
|
|
|
98
99
|
O as ContextMenuSubContent,
|
|
99
100
|
Q as ContextMenuSubTrigger,
|
|
100
101
|
J as ContextMenuTrigger,
|
|
101
|
-
|
|
102
|
-
|
|
102
|
+
lr as ContextStore,
|
|
103
|
+
mr as ContextStoreProvider,
|
|
103
104
|
j as DataTable,
|
|
104
105
|
K as DataTableColumn,
|
|
105
106
|
pe as DataTableFilterInput,
|
|
@@ -109,12 +110,19 @@ export {
|
|
|
109
110
|
_ as DataTableMaxPaginationValue,
|
|
110
111
|
$ as DataTablePagination,
|
|
111
112
|
ee as DataTablePaginationBackwardsTrigger,
|
|
112
|
-
|
|
113
|
-
|
|
113
|
+
te as DataTablePaginationContext,
|
|
114
|
+
oe as DataTablePaginationForwardTrigger,
|
|
114
115
|
re as DataTablePaginationValue,
|
|
116
|
+
ze as DateInput,
|
|
117
|
+
Be as DateInputContent,
|
|
118
|
+
He as DateInputControl,
|
|
119
|
+
ke as DateInputField,
|
|
120
|
+
Ee as DateInputNextTrigger,
|
|
121
|
+
Ne as DateInputPrevTrigger,
|
|
122
|
+
Oe as DateInputTrigger,
|
|
115
123
|
xe as Dialog,
|
|
116
|
-
|
|
117
|
-
|
|
124
|
+
ge as DialogClose,
|
|
125
|
+
fe as DialogContent,
|
|
118
126
|
Ie as DialogDescription,
|
|
119
127
|
Ce as DialogFooter,
|
|
120
128
|
Te as DialogHeader,
|
|
@@ -122,110 +130,110 @@ export {
|
|
|
122
130
|
be as DialogPortal,
|
|
123
131
|
de as DialogTitle,
|
|
124
132
|
se as DialogTrigger,
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
133
|
+
ce as Editor,
|
|
134
|
+
Je as EditorInput,
|
|
135
|
+
je as EmailInput,
|
|
136
|
+
Ue as FileInput,
|
|
137
|
+
We as FileInputContext,
|
|
138
|
+
Xe as FileInputDropzone,
|
|
139
|
+
Ye as FileInputHiddenInput,
|
|
140
|
+
_e as FileInputItem,
|
|
141
|
+
$e as FileInputItemDeleteTrigger,
|
|
142
|
+
et as FileInputItemGroup,
|
|
143
|
+
tt as FileInputItemName,
|
|
144
|
+
ot as FileInputItemPreview,
|
|
145
|
+
rt as FileInputItemPreviewImage,
|
|
146
|
+
nt as FileInputItemSizeText,
|
|
147
|
+
at as FileInputTrigger,
|
|
140
148
|
Ae as FileTabs,
|
|
141
149
|
we as FileTabsContent,
|
|
142
150
|
ve as FileTabsList,
|
|
143
151
|
Fe as FileTabsService,
|
|
144
152
|
he as FileTabsTrigger,
|
|
145
153
|
Ve as Flex,
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
154
|
+
_t as FullScreen,
|
|
155
|
+
eo as Gantt,
|
|
156
|
+
ro as Icon,
|
|
157
|
+
it as Input,
|
|
158
|
+
mt as InputDescription,
|
|
159
|
+
xt as InputLabel,
|
|
160
|
+
ft as InputMessage,
|
|
161
|
+
Ct as InputSuggestionMenuContent,
|
|
162
|
+
Tt as InputSuggestionMenuContentItems,
|
|
163
|
+
Xt as JsonView,
|
|
164
|
+
po as Layout,
|
|
165
|
+
lo as Menu,
|
|
166
|
+
mo as MenuArrow,
|
|
167
|
+
uo as MenuCheckboxItem,
|
|
168
|
+
xo as MenuContent,
|
|
169
|
+
go as MenuGroup,
|
|
170
|
+
fo as MenuItem,
|
|
171
|
+
Io as MenuItemIndicator,
|
|
172
|
+
Co as MenuLabel,
|
|
173
|
+
To as MenuPortal,
|
|
174
|
+
So as MenuSeparator,
|
|
175
|
+
bo as MenuSub,
|
|
176
|
+
so as MenuSubContent,
|
|
177
|
+
Do as MenuSubTrigger,
|
|
178
|
+
co as MenuTrigger,
|
|
179
|
+
bt as NumberInput,
|
|
180
|
+
st as PasswordInput,
|
|
181
|
+
Mt as PinInput,
|
|
182
|
+
Ft as PinInputField,
|
|
183
|
+
Pt as PinInputHiddenField,
|
|
184
|
+
Fo as Progress,
|
|
185
|
+
Ao as Quote,
|
|
186
|
+
wt as RadioGroup,
|
|
187
|
+
ht as RadioInput,
|
|
188
|
+
fr as ReactiveArrayService,
|
|
189
|
+
vo as ResizableHandle,
|
|
190
|
+
ho as ResizablePanel,
|
|
191
|
+
Ro as ResizablePanelGroup,
|
|
192
|
+
Go as Row,
|
|
193
|
+
zo as ScrollArea,
|
|
194
|
+
Bo as ScrollAreaCorner,
|
|
195
|
+
Ho as ScrollAreaScrollbar,
|
|
196
|
+
ko as ScrollAreaThumb,
|
|
197
|
+
Eo as ScrollAreaViewport,
|
|
198
|
+
Oo as SegmentedControl,
|
|
199
|
+
Qo as SegmentedControlItem,
|
|
200
|
+
Vt as SelectContent,
|
|
201
|
+
Gt as SelectInput,
|
|
202
|
+
Lt as SelectItem,
|
|
203
|
+
yt as SelectItemText,
|
|
204
|
+
zt as SelectPortal,
|
|
205
|
+
Bt as SelectTrigger,
|
|
206
|
+
Ht as SelectValue,
|
|
207
|
+
kt as SelectViewport,
|
|
208
|
+
Zo as Spacing,
|
|
209
|
+
Nt as SwitchInput,
|
|
210
|
+
qo as Tab,
|
|
211
|
+
Ko as TabContent,
|
|
212
|
+
Uo as TabList,
|
|
213
|
+
Wo as TabTrigger,
|
|
214
|
+
Yo as Text,
|
|
215
|
+
Qt as TextAreaInput,
|
|
216
|
+
Zt as TextInput,
|
|
217
|
+
$o as Toast,
|
|
218
|
+
or as Tooltip,
|
|
219
|
+
rr as TooltipArrow,
|
|
220
|
+
nr as TooltipContent,
|
|
221
|
+
ar as TooltipPortal,
|
|
222
|
+
pr as TooltipTrigger,
|
|
223
|
+
Ut as buildDefaultSyntax,
|
|
216
224
|
ie as createFilterQueryLanguage,
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
+
qe as emailValidation,
|
|
226
|
+
cr as getDOMSizeFromCodeZeroSize,
|
|
227
|
+
to as getRelativeValue,
|
|
228
|
+
dr as hashToColor,
|
|
229
|
+
Tr as mergeComponentProps,
|
|
230
|
+
Dt as passwordValidation,
|
|
231
|
+
no as resolveIcon,
|
|
232
|
+
er as toast,
|
|
225
233
|
ne as useDataTablePagination,
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
234
|
+
qt as useForm,
|
|
235
|
+
Ir as useReactiveArrayService,
|
|
236
|
+
ur as useService,
|
|
237
|
+
xr as useStore,
|
|
238
|
+
sr as withAlpha
|
|
231
239
|
};
|