@ztwoint/z-ui 0.1.52 → 0.1.53
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/table/components/cell/avatar-cell.js +3 -2
- package/dist/components/table/table-provider.js +5 -4
- package/dist/components/table-card/table-card.js +12 -11
- package/dist/components/text-preset/text-preset.js +21 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +178 -177
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -32,7 +32,8 @@ import { Avatar as p } from "../../../avatar/avatar.js";
|
|
|
32
32
|
import "../../table.context.js";
|
|
33
33
|
import "../../../tooltip/tooltip.js";
|
|
34
34
|
import "../../../badge/badge.js";
|
|
35
|
-
|
|
35
|
+
import "../../../text-preset/text-preset.js";
|
|
36
|
+
const W = ({
|
|
36
37
|
avatar: m,
|
|
37
38
|
value: a,
|
|
38
39
|
rightIcon: e,
|
|
@@ -70,5 +71,5 @@ const V = ({
|
|
|
70
71
|
}
|
|
71
72
|
);
|
|
72
73
|
export {
|
|
73
|
-
|
|
74
|
+
W as AvatarCell
|
|
74
75
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import * as
|
|
1
|
+
import { jsx as p } from "react/jsx-runtime";
|
|
2
|
+
import * as e from "react";
|
|
3
3
|
import { TableContext as a } from "./table.context.js";
|
|
4
4
|
import { TableBody as n } from "./table.js";
|
|
5
5
|
import { TableFilter as f } from "./components/table-filter/table-filter-provider.js";
|
|
@@ -38,6 +38,7 @@ import "@radix-ui/react-tabs";
|
|
|
38
38
|
import "../tooltip/tooltip.js";
|
|
39
39
|
import "../badge/badge.js";
|
|
40
40
|
import "../avatar/avatar.js";
|
|
41
|
+
import "../text-preset/text-preset.js";
|
|
41
42
|
import { TableHeaderWrapper as c } from "./components/table-header-wrapper.js";
|
|
42
43
|
import { TableHeaderContent as d } from "./components/table-header-content.js";
|
|
43
44
|
import { TableFooter as u } from "./components/table-footer.js";
|
|
@@ -50,13 +51,13 @@ const t = ({
|
|
|
50
51
|
filterComponents: x,
|
|
51
52
|
...r
|
|
52
53
|
}) => {
|
|
53
|
-
const m =
|
|
54
|
+
const m = e.useMemo(
|
|
54
55
|
() => ({
|
|
55
56
|
...r
|
|
56
57
|
}),
|
|
57
58
|
[r]
|
|
58
59
|
);
|
|
59
|
-
return /* @__PURE__ */
|
|
60
|
+
return /* @__PURE__ */ p(a.Provider, { value: m, children: i });
|
|
60
61
|
}, P = t, o = P;
|
|
61
62
|
o.Body = n;
|
|
62
63
|
o.Filter = f;
|
|
@@ -31,10 +31,11 @@ import "@radix-ui/react-tabs";
|
|
|
31
31
|
import "../tooltip/tooltip.js";
|
|
32
32
|
import "../badge/badge.js";
|
|
33
33
|
import "../avatar/avatar.js";
|
|
34
|
+
import "../text-preset/text-preset.js";
|
|
34
35
|
import "../table/table.context.js";
|
|
35
|
-
const
|
|
36
|
+
const nt = ({
|
|
36
37
|
dataSource: v,
|
|
37
|
-
schema:
|
|
38
|
+
schema: u,
|
|
38
39
|
loading: H,
|
|
39
40
|
emptyMessage: w,
|
|
40
41
|
className: T,
|
|
@@ -45,7 +46,7 @@ const dt = ({
|
|
|
45
46
|
search: m,
|
|
46
47
|
filter: e,
|
|
47
48
|
headerLeftContent: P,
|
|
48
|
-
headerActions:
|
|
49
|
+
headerActions: i,
|
|
49
50
|
body: r = {
|
|
50
51
|
cell: { hasBorder: !0 },
|
|
51
52
|
className: "",
|
|
@@ -58,8 +59,8 @@ const dt = ({
|
|
|
58
59
|
paginationQuickJumper: s
|
|
59
60
|
}) => {
|
|
60
61
|
var B;
|
|
61
|
-
const
|
|
62
|
-
return /* @__PURE__ */ o("div", { className: n("flex flex-col overflow-hidden", T), children: /* @__PURE__ */ c(t, { dataSource: v, schema:
|
|
62
|
+
const p = s && s.totalPage && s.totalPage >= 2, F = l && l.totalPage && l.totalPage >= 2 || !!a || p, g = m || e || P || i, R = typeof (e == null ? void 0 : e.showFilterButton) > "u" ? !0 : e == null ? void 0 : e.showFilterButton;
|
|
63
|
+
return /* @__PURE__ */ o("div", { className: n("flex flex-col overflow-hidden", T), children: /* @__PURE__ */ c(t, { dataSource: v, schema: u, loading: H, emptyMessage: w, children: [
|
|
63
64
|
C && g && /* @__PURE__ */ c(
|
|
64
65
|
t.Header,
|
|
65
66
|
{
|
|
@@ -87,7 +88,7 @@ const dt = ({
|
|
|
87
88
|
e && /* @__PURE__ */ c(
|
|
88
89
|
t.Filter,
|
|
89
90
|
{
|
|
90
|
-
schema:
|
|
91
|
+
schema: u,
|
|
91
92
|
filter: {
|
|
92
93
|
value: e.value || [],
|
|
93
94
|
onChange: e.onChange || (() => {
|
|
@@ -100,7 +101,7 @@ const dt = ({
|
|
|
100
101
|
}
|
|
101
102
|
)
|
|
102
103
|
] }),
|
|
103
|
-
|
|
104
|
+
i && /* @__PURE__ */ o(t.HeaderContent, { children: i })
|
|
104
105
|
]
|
|
105
106
|
}
|
|
106
107
|
),
|
|
@@ -113,7 +114,7 @@ const dt = ({
|
|
|
113
114
|
"flex-1 min-h-0",
|
|
114
115
|
h && "border-stroke-solid-light border-1",
|
|
115
116
|
d && !(C && g) && "rounded-t-xl",
|
|
116
|
-
d && !(x &&
|
|
117
|
+
d && !(x && F) && "rounded-b-xl",
|
|
117
118
|
h && "[&_td:first-child]:border-l-0 [&_td:last-child]:border-r-0",
|
|
118
119
|
h && "[&_th:first-child]:border-l-0 [&_th:last-child]:border-r-0",
|
|
119
120
|
r == null ? void 0 : r.className
|
|
@@ -121,7 +122,7 @@ const dt = ({
|
|
|
121
122
|
stickyHeader: r == null ? void 0 : r.stickyHeader
|
|
122
123
|
}
|
|
123
124
|
),
|
|
124
|
-
x &&
|
|
125
|
+
x && F && /* @__PURE__ */ c(
|
|
125
126
|
t.Footer,
|
|
126
127
|
{
|
|
127
128
|
className: n(
|
|
@@ -141,7 +142,7 @@ const dt = ({
|
|
|
141
142
|
}
|
|
142
143
|
) }) : s || l ? /* @__PURE__ */ o(t.FooterContent, { children: null }) : null,
|
|
143
144
|
(s || l) && /* @__PURE__ */ c(t.FooterContent, { children: [
|
|
144
|
-
|
|
145
|
+
p && /* @__PURE__ */ o(
|
|
145
146
|
t.PaginationQuickJumper,
|
|
146
147
|
{
|
|
147
148
|
currentPage: s.currentPage,
|
|
@@ -168,5 +169,5 @@ const dt = ({
|
|
|
168
169
|
] }) });
|
|
169
170
|
};
|
|
170
171
|
export {
|
|
171
|
-
|
|
172
|
+
nt as default
|
|
172
173
|
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import "react/jsx-runtime";
|
|
2
|
+
import { cva as t } from "class-variance-authority";
|
|
3
|
+
import "clsx";
|
|
4
|
+
import "tailwind-merge";
|
|
5
|
+
t("flex flex-col", {
|
|
6
|
+
variants: {
|
|
7
|
+
type: {
|
|
8
|
+
L: "text-left",
|
|
9
|
+
C: "text-center",
|
|
10
|
+
R: "text-right"
|
|
11
|
+
},
|
|
12
|
+
multiline: {
|
|
13
|
+
true: "gap-3",
|
|
14
|
+
false: "gap-2.5 *:data-[slot=support-text]:truncate"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
defaultVariants: {
|
|
18
|
+
type: "L",
|
|
19
|
+
multiline: !1
|
|
20
|
+
}
|
|
21
|
+
});
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export * from './components/tooltip/tooltip';
|
|
|
17
17
|
export * from './components/table-card';
|
|
18
18
|
export * from './components/badge/badge';
|
|
19
19
|
export * from './components/avatar/avatar';
|
|
20
|
+
export * from './components/text-preset/text-preset';
|
|
20
21
|
export * from './components/assets/icons/apartment-building';
|
|
21
22
|
export * from './components/assets/icons/chevron-down';
|
|
22
23
|
export * from './components/assets/icons/chevron-left';
|
package/dist/index.js
CHANGED
|
@@ -1,182 +1,183 @@
|
|
|
1
1
|
/* empty css */
|
|
2
|
-
import { Alert as
|
|
3
|
-
import { AlertCirclesIcon as
|
|
4
|
-
import { Button as
|
|
5
|
-
import { Z2SideNavBarProvider as
|
|
6
|
-
import { Z2SideNavBar as
|
|
7
|
-
import { Z2SideNavBarHeader as
|
|
8
|
-
import { Z2SideNavBarContent as
|
|
9
|
-
import { Z2SideNavBarFooter as
|
|
10
|
-
import { Z2SideNavBarGroup as
|
|
11
|
-
import { Z2SideNavBarItem as
|
|
12
|
-
import { Z2SideNavBarSeparator as
|
|
13
|
-
import { useZ2SideNavBar as
|
|
14
|
-
import { Z2Popover as
|
|
15
|
-
import { ChevronUpIcon as
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as
|
|
18
|
-
import { default as
|
|
19
|
-
import { default as
|
|
20
|
-
import { default as
|
|
21
|
-
import { SIDEBAR_WIDTH as
|
|
22
|
-
import { CountryFlags as
|
|
23
|
-
import { Z2Dialog as
|
|
24
|
-
import { DropdownContext as
|
|
25
|
-
import { Z2DropdownMenu as
|
|
26
|
-
import { FileUploadArea as
|
|
27
|
-
import { DEFAULT_ACCEPT as
|
|
28
|
-
import { Input as
|
|
29
|
-
import { NavHeader as
|
|
30
|
-
import { NavItem as
|
|
31
|
-
import { Z2Select as
|
|
32
|
-
import { Z2Stepper as
|
|
33
|
-
import { Z2StepperItem as
|
|
34
|
-
import { Z2Tabs as
|
|
35
|
-
import { Table as
|
|
36
|
-
import { TableBody as
|
|
37
|
-
import { extractCellValue as
|
|
38
|
-
import { DEFAULT_EMPTY_MESSAGE as
|
|
39
|
-
import { TableContext as
|
|
40
|
-
import { TableCell as
|
|
41
|
-
import { NumberCell as
|
|
42
|
-
import { BooleanCell as
|
|
2
|
+
import { Alert as n, AlertDescription as m, AlertTitle as l } from "./components/alert/alert.js";
|
|
3
|
+
import { AlertCirclesIcon as x } from "./components/alert/icons/circles-icon.js";
|
|
4
|
+
import { Button as Z, buttonVariants as d } from "./components/button/button.js";
|
|
5
|
+
import { Z2SideNavBarProvider as u } from "./components/collapsible-side-nav-bar/side-nav-bar-provider.js";
|
|
6
|
+
import { Z2SideNavBar as b, Z2SidebarVariants as T } from "./components/collapsible-side-nav-bar/side-nav-bar.js";
|
|
7
|
+
import { Z2SideNavBarHeader as C } from "./components/collapsible-side-nav-bar/side-nav-bar-header.js";
|
|
8
|
+
import { Z2SideNavBarContent as c } from "./components/collapsible-side-nav-bar/side-nav-bar-content.js";
|
|
9
|
+
import { Z2SideNavBarFooter as I } from "./components/collapsible-side-nav-bar/side-nav-bar-footer.js";
|
|
10
|
+
import { Z2SideNavBarGroup as B } from "./components/collapsible-side-nav-bar/side-nav-bar-group.js";
|
|
11
|
+
import { Z2SideNavBarItem as A } from "./components/collapsible-side-nav-bar/side-nav-bar-item.js";
|
|
12
|
+
import { Z2SideNavBarSeparator as L } from "./components/collapsible-side-nav-bar/side-nav-bar-separator.js";
|
|
13
|
+
import { useZ2SideNavBar as E } from "./components/collapsible-side-nav-bar/context.js";
|
|
14
|
+
import { Z2Popover as H } from "./components/collapsible-side-nav-bar/popover/popover.js";
|
|
15
|
+
import { ChevronUpIcon as y } from "./components/assets/icons/chevron-up-icon.js";
|
|
16
|
+
import { default as G } from "./components/assets/icons/sub-nav-indicator.js";
|
|
17
|
+
import { default as U } from "./components/assets/icons/circles-icon.js";
|
|
18
|
+
import { default as W } from "./components/assets/icons/database-copy.js";
|
|
19
|
+
import { default as O } from "./components/assets/icons/window-left-copy.js";
|
|
20
|
+
import { default as Q } from "./components/assets/icons/sidebar-left-show-copy.js";
|
|
21
|
+
import { SIDEBAR_WIDTH as j, SIDEBAR_WIDTH_COLLAPSED as q } from "./components/collapsible-side-nav-bar/constants.js";
|
|
22
|
+
import { CountryFlags as K } from "./components/country-flags/country-flags.js";
|
|
23
|
+
import { Z2Dialog as $, Z2DialogClose as oo, Z2DialogContent as ro, Z2DialogDescription as eo, Z2DialogFooter as to, Z2DialogHeader as ao, Z2DialogOverlay as po, Z2DialogPortal as no, Z2DialogTitle as mo, Z2DialogTrigger as lo } from "./components/dialog/dialog.js";
|
|
24
|
+
import { DropdownContext as xo, Z2Dropdown as io, Z2DropdownContent as Zo, Z2DropdownInput as So, Z2DropdownItem as uo, Z2DropdownSub as Do, Z2DropdownSubContent as bo, Z2DropdownSubItem as To, Z2DropdownSubTrigger as go } from "./components/dropdown/z2-dropdown.js";
|
|
25
|
+
import { Z2DropdownMenu as wo, Z2DropdownMenuCheckboxItem as co, Z2DropdownMenuContent as so, Z2DropdownMenuGroup as Io, Z2DropdownMenuItem as vo, Z2DropdownMenuLabel as Bo, Z2DropdownMenuPortal as Mo, Z2DropdownMenuRadioGroup as Ao, Z2DropdownMenuRadioItem as Po, Z2DropdownMenuSeparator as Lo, Z2DropdownMenuShortcut as No, Z2DropdownMenuSub as Eo, Z2DropdownMenuSubContent as Fo, Z2DropdownMenuSubTrigger as Ho, Z2DropdownMenuTrigger as _o } from "./components/dropdown-menu/z2-dropdown-menu.js";
|
|
26
|
+
import { FileUploadArea as ho } from "./components/file-upload-area/file-upload-area.js";
|
|
27
|
+
import { DEFAULT_ACCEPT as Ro } from "./components/file-upload-area/file-upload-area.const.js";
|
|
28
|
+
import { Input as Vo } from "./components/input/input.js";
|
|
29
|
+
import { NavHeader as ko } from "./components/nav-header/nav-header.js";
|
|
30
|
+
import { NavItem as Jo } from "./components/nav-header/nav-item/nav-item.js";
|
|
31
|
+
import { Z2Select as Yo, Z2SelectContent as jo, Z2SelectGroup as qo, Z2SelectItem as zo, Z2SelectLabel as Ko, Z2SelectScrollDownButton as Xo, Z2SelectScrollUpButton as $o, Z2SelectSeparator as or, Z2SelectTrigger as rr, Z2SelectValue as er } from "./components/select/z2-select.js";
|
|
32
|
+
import { Z2Stepper as ar } from "./components/stepper/stepper.js";
|
|
33
|
+
import { Z2StepperItem as nr } from "./components/stepper-item/stepper-item.js";
|
|
34
|
+
import { Z2Tabs as lr, Z2TabsContent as fr, Z2TabsList as xr, Z2TabsTrigger as ir } from "./components/tab/tab.js";
|
|
35
|
+
import { Table as dr, TableProvider as Sr } from "./components/table/table-provider.js";
|
|
36
|
+
import { TableBody as Dr } from "./components/table/table.js";
|
|
37
|
+
import { extractCellValue as Tr } from "./components/table/table.utils.js";
|
|
38
|
+
import { DEFAULT_EMPTY_MESSAGE as Cr, TABLE_CSS_CLASSES as wr } from "./components/table/table.const.js";
|
|
39
|
+
import { TableContext as sr, useTableContext as Ir } from "./components/table/table.context.js";
|
|
40
|
+
import { TableCell as Br } from "./components/table/components/table-cell.js";
|
|
41
|
+
import { NumberCell as Ar } from "./components/table/components/cell/number-cell.js";
|
|
42
|
+
import { BooleanCell as Lr } from "./components/table/components/cell/boolean-cell.js";
|
|
43
43
|
import "react/jsx-runtime";
|
|
44
|
-
import { useTheme as
|
|
45
|
-
import { cn as
|
|
46
|
-
import { Z2Tooltip as
|
|
47
|
-
import { default as
|
|
48
|
-
import { Badge as
|
|
49
|
-
import { Avatar as
|
|
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 {
|
|
44
|
+
import { useTheme as Er } from "./lib/theme.hook.js";
|
|
45
|
+
import { cn as Hr } from "./lib/utils.js";
|
|
46
|
+
import { Z2Tooltip as yr } from "./components/tooltip/tooltip.js";
|
|
47
|
+
import { default as Gr } from "./components/table-card/table-card.js";
|
|
48
|
+
import { Badge as Ur, badgeVariants as Vr } from "./components/badge/badge.js";
|
|
49
|
+
import { Avatar as kr, AvatarWithLabel as Or } from "./components/avatar/avatar.js";
|
|
50
|
+
import "./components/text-preset/text-preset.js";
|
|
51
|
+
import { InfoIcon as Qr } from "./components/assets/icons/info-icon.js";
|
|
52
|
+
import { MagnifierIcon as jr } from "./components/assets/icons/magnifier-icon.js";
|
|
53
|
+
import { TableHeader as zr } from "./components/table/components/table-header/table-header.js";
|
|
54
|
+
import { TableRow as Xr } from "./components/table/components/table-row.js";
|
|
55
|
+
import { TableEmptyState as oe } from "./components/table/components/table-empty-state.js";
|
|
56
|
+
import { TableLoadingState as ee } from "./components/table/components/table-loading-state.js";
|
|
57
|
+
import { Pagination as ae } from "./components/table/components/pagination/pagination.js";
|
|
58
|
+
import { TableHeaderWrapper as ne } from "./components/table/components/table-header-wrapper.js";
|
|
59
|
+
import { TableHeaderContent as le } from "./components/table/components/table-header-content.js";
|
|
60
|
+
import { TableFooter as xe } from "./components/table/components/table-footer.js";
|
|
61
|
+
import { TableFooterContent as Ze } from "./components/table/components/table-footer-content.js";
|
|
62
|
+
import { PaginationInfo as Se } from "./components/table/components/pagination/components/pagination-info.js";
|
|
63
|
+
import { PaginationQuickJumper as De } from "./components/table/components/pagination/components/pagination-quick-jumper.js";
|
|
63
64
|
import "react";
|
|
64
|
-
import { Z2PopoverTrigger as
|
|
65
|
-
import { Z2PopoverContent as
|
|
65
|
+
import { Z2PopoverTrigger as Te } from "./components/collapsible-side-nav-bar/popover/popover-trigger.js";
|
|
66
|
+
import { Z2PopoverContent as Ce } from "./components/collapsible-side-nav-bar/popover/popover-content.js";
|
|
66
67
|
export {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
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
|
-
|
|
68
|
+
n as Alert,
|
|
69
|
+
x as AlertCirclesIcon,
|
|
70
|
+
m as AlertDescription,
|
|
71
|
+
l as AlertTitle,
|
|
72
|
+
kr as Avatar,
|
|
73
|
+
Or as AvatarWithLabel,
|
|
74
|
+
Ur as Badge,
|
|
75
|
+
Lr as BooleanCell,
|
|
76
|
+
Z as Button,
|
|
77
|
+
y as ChevronUpIcon,
|
|
78
|
+
U as CirclesIcon,
|
|
79
|
+
K as CountryFlags,
|
|
80
|
+
Ro as DEFAULT_ACCEPT,
|
|
81
|
+
Cr as DEFAULT_EMPTY_MESSAGE,
|
|
82
|
+
W as DatabaseCopy,
|
|
83
|
+
xo as DropdownContext,
|
|
84
|
+
ho as FileUploadArea,
|
|
85
|
+
Qr as InfoIcon,
|
|
86
|
+
Vo as Input,
|
|
87
|
+
jr as MagnifierIcon,
|
|
88
|
+
ko as NavHeader,
|
|
89
|
+
Jo as NavItem,
|
|
90
|
+
Ar as NumberCell,
|
|
91
|
+
Se as PaginationInfo,
|
|
92
|
+
De as PaginationQuickJumper,
|
|
93
|
+
j as SIDEBAR_WIDTH,
|
|
94
|
+
q as SIDEBAR_WIDTH_COLLAPSED,
|
|
95
|
+
Q as SidebarLeftShowCopy,
|
|
96
|
+
G as SubNavIndicator,
|
|
97
|
+
wr as TABLE_CSS_CLASSES,
|
|
98
|
+
dr as Table,
|
|
99
|
+
Dr as TableBody,
|
|
100
|
+
Gr as TableCard,
|
|
101
|
+
Br as TableCell,
|
|
102
|
+
sr as TableContext,
|
|
103
|
+
oe as TableEmptyState,
|
|
104
|
+
xe as TableFooter,
|
|
105
|
+
Ze as TableFooterContent,
|
|
106
|
+
zr as TableHeader,
|
|
107
|
+
le as TableHeaderContent,
|
|
108
|
+
ne as TableHeaderWrapper,
|
|
109
|
+
ee as TableLoadingState,
|
|
110
|
+
ae as TablePagination,
|
|
111
|
+
Sr as TableProvider,
|
|
112
|
+
Xr as TableRow,
|
|
113
|
+
O as WindowLeftCopy,
|
|
114
|
+
$ as Z2Dialog,
|
|
115
|
+
oo as Z2DialogClose,
|
|
116
|
+
ro as Z2DialogContent,
|
|
117
|
+
eo as Z2DialogDescription,
|
|
118
|
+
to as Z2DialogFooter,
|
|
119
|
+
ao as Z2DialogHeader,
|
|
120
|
+
po as Z2DialogOverlay,
|
|
121
|
+
no as Z2DialogPortal,
|
|
122
|
+
mo as Z2DialogTitle,
|
|
123
|
+
lo as Z2DialogTrigger,
|
|
124
|
+
io as Z2Dropdown,
|
|
125
|
+
Zo as Z2DropdownContent,
|
|
126
|
+
So as Z2DropdownInput,
|
|
127
|
+
uo as Z2DropdownItem,
|
|
128
|
+
wo as Z2DropdownMenu,
|
|
129
|
+
co as Z2DropdownMenuCheckboxItem,
|
|
130
|
+
so as Z2DropdownMenuContent,
|
|
131
|
+
Io as Z2DropdownMenuGroup,
|
|
132
|
+
vo as Z2DropdownMenuItem,
|
|
133
|
+
Bo as Z2DropdownMenuLabel,
|
|
134
|
+
Mo as Z2DropdownMenuPortal,
|
|
135
|
+
Ao as Z2DropdownMenuRadioGroup,
|
|
136
|
+
Po as Z2DropdownMenuRadioItem,
|
|
137
|
+
Lo as Z2DropdownMenuSeparator,
|
|
138
|
+
No as Z2DropdownMenuShortcut,
|
|
139
|
+
Eo as Z2DropdownMenuSub,
|
|
140
|
+
Fo as Z2DropdownMenuSubContent,
|
|
141
|
+
Ho as Z2DropdownMenuSubTrigger,
|
|
142
|
+
_o as Z2DropdownMenuTrigger,
|
|
143
|
+
Do as Z2DropdownSub,
|
|
144
|
+
bo as Z2DropdownSubContent,
|
|
145
|
+
To as Z2DropdownSubItem,
|
|
146
|
+
go as Z2DropdownSubTrigger,
|
|
147
|
+
H as Z2Popover,
|
|
148
|
+
Ce as Z2PopoverContent,
|
|
149
|
+
Te as Z2PopoverTrigger,
|
|
150
|
+
Yo as Z2Select,
|
|
151
|
+
jo as Z2SelectContent,
|
|
152
|
+
qo as Z2SelectGroup,
|
|
153
|
+
zo as Z2SelectItem,
|
|
154
|
+
Ko as Z2SelectLabel,
|
|
155
|
+
Xo as Z2SelectScrollDownButton,
|
|
156
|
+
$o as Z2SelectScrollUpButton,
|
|
157
|
+
or as Z2SelectSeparator,
|
|
158
|
+
rr as Z2SelectTrigger,
|
|
159
|
+
er as Z2SelectValue,
|
|
160
|
+
b as Z2SideNavBar,
|
|
161
|
+
c as Z2SideNavBarContent,
|
|
162
|
+
I as Z2SideNavBarFooter,
|
|
163
|
+
B as Z2SideNavBarGroup,
|
|
164
|
+
C as Z2SideNavBarHeader,
|
|
165
|
+
A as Z2SideNavBarItem,
|
|
166
|
+
u as Z2SideNavBarProvider,
|
|
167
|
+
L as Z2SideNavBarSeparator,
|
|
168
|
+
T as Z2SidebarVariants,
|
|
169
|
+
ar as Z2Stepper,
|
|
170
|
+
nr as Z2StepperItem,
|
|
171
|
+
lr as Z2Tabs,
|
|
172
|
+
fr as Z2TabsContent,
|
|
173
|
+
xr as Z2TabsList,
|
|
174
|
+
ir as Z2TabsTrigger,
|
|
175
|
+
yr as Z2Tooltip,
|
|
176
|
+
Vr as badgeVariants,
|
|
177
|
+
d as buttonVariants,
|
|
178
|
+
Hr as cn,
|
|
179
|
+
Tr as extractCellValue,
|
|
180
|
+
Ir as useTableContext,
|
|
181
|
+
Er as useTheme,
|
|
182
|
+
E as useZ2SideNavBar
|
|
182
183
|
};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export * from './components/tooltip/tooltip';
|
|
|
18
18
|
export * from './components/table-card';
|
|
19
19
|
export * from './components/badge/badge';
|
|
20
20
|
export * from './components/avatar/avatar';
|
|
21
|
+
export * from './components/text-preset/text-preset';
|
|
21
22
|
export * from './components/assets/icons/apartment-building';
|
|
22
23
|
export * from './components/assets/icons/chevron-down';
|
|
23
24
|
export * from './components/assets/icons/chevron-left';
|