@ztwoint/z-ui 0.1.53 → 0.1.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.
|
@@ -3,11 +3,14 @@ declare const textPresetVariants: (props?: ({
|
|
|
3
3
|
type?: "L" | "C" | "R" | null | undefined;
|
|
4
4
|
multiline?: boolean | null | undefined;
|
|
5
5
|
} & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
|
|
6
|
-
|
|
6
|
+
interface Z2TextPresetProps extends VariantProps<typeof textPresetVariants> {
|
|
7
7
|
primaryFirst?: boolean;
|
|
8
8
|
primaryText: string;
|
|
9
9
|
supportText?: string;
|
|
10
10
|
className?: string;
|
|
11
11
|
}
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
declare function Z2TextPreset({ type, multiline, primaryFirst, primaryText, supportText, className, }: Z2TextPresetProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare namespace Z2TextPreset {
|
|
14
|
+
var displayName: string;
|
|
15
|
+
}
|
|
16
|
+
export { Z2TextPreset, type Z2TextPresetProps };
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import "react/jsx-runtime";
|
|
2
|
-
import { cva as
|
|
3
|
-
import "
|
|
4
|
-
|
|
5
|
-
t("flex flex-col", {
|
|
1
|
+
import { jsxs as s, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { cva as c } from "class-variance-authority";
|
|
3
|
+
import { cn as x } from "../../lib/utils.js";
|
|
4
|
+
const d = c("flex flex-col", {
|
|
6
5
|
variants: {
|
|
7
6
|
type: {
|
|
8
7
|
L: "text-left",
|
|
@@ -19,3 +18,31 @@ t("flex flex-col", {
|
|
|
19
18
|
multiline: !1
|
|
20
19
|
}
|
|
21
20
|
});
|
|
21
|
+
function o({
|
|
22
|
+
type: l = "L",
|
|
23
|
+
multiline: n = !1,
|
|
24
|
+
primaryFirst: i = !0,
|
|
25
|
+
primaryText: a,
|
|
26
|
+
supportText: t,
|
|
27
|
+
className: m
|
|
28
|
+
}) {
|
|
29
|
+
const r = x(d({ type: l, multiline: n }), m);
|
|
30
|
+
return i ? /* @__PURE__ */ s("div", { className: r, children: [
|
|
31
|
+
/* @__PURE__ */ e("span", { "data-slot": "primary-text", className: "text-text-neutral-primary leading-none-medium-sm", children: a }),
|
|
32
|
+
t && /* @__PURE__ */ e("span", { "data-slot": "support-text", className: "text-text-neutral-secondary", children: t })
|
|
33
|
+
] }) : /* @__PURE__ */ s("div", { className: r, children: [
|
|
34
|
+
t && /* @__PURE__ */ e(
|
|
35
|
+
"p",
|
|
36
|
+
{
|
|
37
|
+
"data-slot": "support-text",
|
|
38
|
+
className: "text-text-neutral-secondary leading-none-regular-sm",
|
|
39
|
+
children: t
|
|
40
|
+
}
|
|
41
|
+
),
|
|
42
|
+
/* @__PURE__ */ e("p", { "data-slot": "primary-text", className: "text-text-neutral-primary", children: a })
|
|
43
|
+
] });
|
|
44
|
+
}
|
|
45
|
+
o.displayName = "Z2TextPreset";
|
|
46
|
+
export {
|
|
47
|
+
o as Z2TextPreset
|
|
48
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -1,183 +1,184 @@
|
|
|
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
|
|
2
|
+
import { Alert as p, AlertDescription as n, AlertTitle as m } from "./components/alert/alert.js";
|
|
3
|
+
import { AlertCirclesIcon as f } from "./components/alert/icons/circles-icon.js";
|
|
4
|
+
import { Button as i, buttonVariants as Z } from "./components/button/button.js";
|
|
5
|
+
import { Z2SideNavBarProvider as S } from "./components/collapsible-side-nav-bar/side-nav-bar-provider.js";
|
|
6
|
+
import { Z2SideNavBar as D, Z2SidebarVariants as T } from "./components/collapsible-side-nav-bar/side-nav-bar.js";
|
|
7
|
+
import { Z2SideNavBarHeader as g } from "./components/collapsible-side-nav-bar/side-nav-bar-header.js";
|
|
8
|
+
import { Z2SideNavBarContent as w } from "./components/collapsible-side-nav-bar/side-nav-bar-content.js";
|
|
9
|
+
import { Z2SideNavBarFooter as s } from "./components/collapsible-side-nav-bar/side-nav-bar-footer.js";
|
|
10
|
+
import { Z2SideNavBarGroup as v } from "./components/collapsible-side-nav-bar/side-nav-bar-group.js";
|
|
11
|
+
import { Z2SideNavBarItem as M } from "./components/collapsible-side-nav-bar/side-nav-bar-item.js";
|
|
12
|
+
import { Z2SideNavBarSeparator as P } from "./components/collapsible-side-nav-bar/side-nav-bar-separator.js";
|
|
13
|
+
import { useZ2SideNavBar as N } from "./components/collapsible-side-nav-bar/context.js";
|
|
14
|
+
import { Z2Popover as F } from "./components/collapsible-side-nav-bar/popover/popover.js";
|
|
15
|
+
import { ChevronUpIcon as _ } from "./components/assets/icons/chevron-up-icon.js";
|
|
16
|
+
import { default as h } from "./components/assets/icons/sub-nav-indicator.js";
|
|
17
|
+
import { default as R } from "./components/assets/icons/circles-icon.js";
|
|
18
|
+
import { default as V } from "./components/assets/icons/database-copy.js";
|
|
19
|
+
import { default as k } from "./components/assets/icons/window-left-copy.js";
|
|
20
|
+
import { default as J } from "./components/assets/icons/sidebar-left-show-copy.js";
|
|
21
|
+
import { SIDEBAR_WIDTH as Y, SIDEBAR_WIDTH_COLLAPSED as j } from "./components/collapsible-side-nav-bar/constants.js";
|
|
22
|
+
import { CountryFlags as z } from "./components/country-flags/country-flags.js";
|
|
23
|
+
import { Z2Dialog as X, Z2DialogClose as $, Z2DialogContent as oo, Z2DialogDescription as ro, Z2DialogFooter as eo, Z2DialogHeader as to, Z2DialogOverlay as ao, Z2DialogPortal as po, Z2DialogTitle as no, Z2DialogTrigger as mo } from "./components/dialog/dialog.js";
|
|
24
|
+
import { DropdownContext as fo, Z2Dropdown as xo, Z2DropdownContent as io, Z2DropdownInput as Zo, Z2DropdownItem as So, Z2DropdownSub as uo, Z2DropdownSubContent as Do, Z2DropdownSubItem as To, Z2DropdownSubTrigger as bo } from "./components/dropdown/z2-dropdown.js";
|
|
25
|
+
import { Z2DropdownMenu as Co, Z2DropdownMenuCheckboxItem as wo, Z2DropdownMenuContent as co, Z2DropdownMenuGroup as so, Z2DropdownMenuItem as Io, Z2DropdownMenuLabel as vo, Z2DropdownMenuPortal as Bo, Z2DropdownMenuRadioGroup as Mo, Z2DropdownMenuRadioItem as Ao, Z2DropdownMenuSeparator as Po, Z2DropdownMenuShortcut as Lo, Z2DropdownMenuSub as No, Z2DropdownMenuSubContent as Eo, Z2DropdownMenuSubTrigger as Fo, Z2DropdownMenuTrigger as Ho } from "./components/dropdown-menu/z2-dropdown-menu.js";
|
|
26
|
+
import { FileUploadArea as yo } from "./components/file-upload-area/file-upload-area.js";
|
|
27
|
+
import { DEFAULT_ACCEPT as Go } from "./components/file-upload-area/file-upload-area.const.js";
|
|
28
|
+
import { Input as Uo } from "./components/input/input.js";
|
|
29
|
+
import { NavHeader as Wo } from "./components/nav-header/nav-header.js";
|
|
30
|
+
import { NavItem as Oo } from "./components/nav-header/nav-item/nav-item.js";
|
|
31
|
+
import { Z2Select as Qo, Z2SelectContent as Yo, Z2SelectGroup as jo, Z2SelectItem as qo, Z2SelectLabel as zo, Z2SelectScrollDownButton as Ko, Z2SelectScrollUpButton as Xo, Z2SelectSeparator as $o, Z2SelectTrigger as or, Z2SelectValue as rr } from "./components/select/z2-select.js";
|
|
32
|
+
import { Z2Stepper as tr } from "./components/stepper/stepper.js";
|
|
33
|
+
import { Z2StepperItem as pr } from "./components/stepper-item/stepper-item.js";
|
|
34
|
+
import { Z2Tabs as mr, Z2TabsContent as lr, Z2TabsList as fr, Z2TabsTrigger as xr } from "./components/tab/tab.js";
|
|
35
|
+
import { Table as Zr, TableProvider as dr } from "./components/table/table-provider.js";
|
|
36
|
+
import { TableBody as ur } from "./components/table/table.js";
|
|
37
37
|
import { extractCellValue as Tr } from "./components/table/table.utils.js";
|
|
38
|
-
import { DEFAULT_EMPTY_MESSAGE as
|
|
39
|
-
import { TableContext as
|
|
40
|
-
import { TableCell as
|
|
41
|
-
import { NumberCell as
|
|
42
|
-
import { BooleanCell as
|
|
38
|
+
import { DEFAULT_EMPTY_MESSAGE as gr, TABLE_CSS_CLASSES as Cr } from "./components/table/table.const.js";
|
|
39
|
+
import { TableContext as cr, useTableContext as sr } from "./components/table/table.context.js";
|
|
40
|
+
import { TableCell as vr } from "./components/table/components/table-cell.js";
|
|
41
|
+
import { NumberCell as Mr } from "./components/table/components/cell/number-cell.js";
|
|
42
|
+
import { BooleanCell as Pr } 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 "./components/text-preset/text-preset.js";
|
|
51
|
-
import { InfoIcon as
|
|
52
|
-
import { MagnifierIcon as
|
|
53
|
-
import { TableHeader as
|
|
54
|
-
import { TableRow as
|
|
55
|
-
import { TableEmptyState as
|
|
56
|
-
import { TableLoadingState as
|
|
57
|
-
import { Pagination as
|
|
58
|
-
import { TableHeaderWrapper as
|
|
59
|
-
import { TableHeaderContent as
|
|
60
|
-
import { TableFooter as
|
|
61
|
-
import { TableFooterContent as
|
|
62
|
-
import { PaginationInfo as
|
|
63
|
-
import { PaginationQuickJumper as
|
|
44
|
+
import { useTheme as Nr } from "./lib/theme.hook.js";
|
|
45
|
+
import { cn as Fr } from "./lib/utils.js";
|
|
46
|
+
import { Z2Tooltip as _r } from "./components/tooltip/tooltip.js";
|
|
47
|
+
import { default as hr } from "./components/table-card/table-card.js";
|
|
48
|
+
import { Badge as Rr, badgeVariants as Ur } from "./components/badge/badge.js";
|
|
49
|
+
import { Avatar as Wr, AvatarWithLabel as kr } from "./components/avatar/avatar.js";
|
|
50
|
+
import { Z2TextPreset as Jr } from "./components/text-preset/text-preset.js";
|
|
51
|
+
import { InfoIcon as Yr } from "./components/assets/icons/info-icon.js";
|
|
52
|
+
import { MagnifierIcon as qr } from "./components/assets/icons/magnifier-icon.js";
|
|
53
|
+
import { TableHeader as Kr } from "./components/table/components/table-header/table-header.js";
|
|
54
|
+
import { TableRow as $r } from "./components/table/components/table-row.js";
|
|
55
|
+
import { TableEmptyState as re } from "./components/table/components/table-empty-state.js";
|
|
56
|
+
import { TableLoadingState as te } from "./components/table/components/table-loading-state.js";
|
|
57
|
+
import { Pagination as pe } from "./components/table/components/pagination/pagination.js";
|
|
58
|
+
import { TableHeaderWrapper as me } from "./components/table/components/table-header-wrapper.js";
|
|
59
|
+
import { TableHeaderContent as fe } from "./components/table/components/table-header-content.js";
|
|
60
|
+
import { TableFooter as ie } from "./components/table/components/table-footer.js";
|
|
61
|
+
import { TableFooterContent as de } from "./components/table/components/table-footer-content.js";
|
|
62
|
+
import { PaginationInfo as ue } from "./components/table/components/pagination/components/pagination-info.js";
|
|
63
|
+
import { PaginationQuickJumper as Te } from "./components/table/components/pagination/components/pagination-quick-jumper.js";
|
|
64
64
|
import "react";
|
|
65
|
-
import { Z2PopoverTrigger as
|
|
66
|
-
import { Z2PopoverContent as
|
|
65
|
+
import { Z2PopoverTrigger as ge } from "./components/collapsible-side-nav-bar/popover/popover-trigger.js";
|
|
66
|
+
import { Z2PopoverContent as we } from "./components/collapsible-side-nav-bar/popover/popover-content.js";
|
|
67
67
|
export {
|
|
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
|
-
|
|
68
|
+
p as Alert,
|
|
69
|
+
f as AlertCirclesIcon,
|
|
70
|
+
n as AlertDescription,
|
|
71
|
+
m as AlertTitle,
|
|
72
|
+
Wr as Avatar,
|
|
73
|
+
kr as AvatarWithLabel,
|
|
74
|
+
Rr as Badge,
|
|
75
|
+
Pr as BooleanCell,
|
|
76
|
+
i as Button,
|
|
77
|
+
_ as ChevronUpIcon,
|
|
78
|
+
R as CirclesIcon,
|
|
79
|
+
z as CountryFlags,
|
|
80
|
+
Go as DEFAULT_ACCEPT,
|
|
81
|
+
gr as DEFAULT_EMPTY_MESSAGE,
|
|
82
|
+
V as DatabaseCopy,
|
|
83
|
+
fo as DropdownContext,
|
|
84
|
+
yo as FileUploadArea,
|
|
85
|
+
Yr as InfoIcon,
|
|
86
|
+
Uo as Input,
|
|
87
|
+
qr as MagnifierIcon,
|
|
88
|
+
Wo as NavHeader,
|
|
89
|
+
Oo as NavItem,
|
|
90
|
+
Mr as NumberCell,
|
|
91
|
+
ue as PaginationInfo,
|
|
92
|
+
Te as PaginationQuickJumper,
|
|
93
|
+
Y as SIDEBAR_WIDTH,
|
|
94
|
+
j as SIDEBAR_WIDTH_COLLAPSED,
|
|
95
|
+
J as SidebarLeftShowCopy,
|
|
96
|
+
h as SubNavIndicator,
|
|
97
|
+
Cr as TABLE_CSS_CLASSES,
|
|
98
|
+
Zr as Table,
|
|
99
|
+
ur as TableBody,
|
|
100
|
+
hr as TableCard,
|
|
101
|
+
vr as TableCell,
|
|
102
|
+
cr as TableContext,
|
|
103
|
+
re as TableEmptyState,
|
|
104
|
+
ie as TableFooter,
|
|
105
|
+
de as TableFooterContent,
|
|
106
|
+
Kr as TableHeader,
|
|
107
|
+
fe as TableHeaderContent,
|
|
108
|
+
me as TableHeaderWrapper,
|
|
109
|
+
te as TableLoadingState,
|
|
110
|
+
pe as TablePagination,
|
|
111
|
+
dr as TableProvider,
|
|
112
|
+
$r as TableRow,
|
|
113
|
+
k as WindowLeftCopy,
|
|
114
|
+
X as Z2Dialog,
|
|
115
|
+
$ as Z2DialogClose,
|
|
116
|
+
oo as Z2DialogContent,
|
|
117
|
+
ro as Z2DialogDescription,
|
|
118
|
+
eo as Z2DialogFooter,
|
|
119
|
+
to as Z2DialogHeader,
|
|
120
|
+
ao as Z2DialogOverlay,
|
|
121
|
+
po as Z2DialogPortal,
|
|
122
|
+
no as Z2DialogTitle,
|
|
123
|
+
mo as Z2DialogTrigger,
|
|
124
|
+
xo as Z2Dropdown,
|
|
125
|
+
io as Z2DropdownContent,
|
|
126
|
+
Zo as Z2DropdownInput,
|
|
127
|
+
So as Z2DropdownItem,
|
|
128
|
+
Co as Z2DropdownMenu,
|
|
129
|
+
wo as Z2DropdownMenuCheckboxItem,
|
|
130
|
+
co as Z2DropdownMenuContent,
|
|
131
|
+
so as Z2DropdownMenuGroup,
|
|
132
|
+
Io as Z2DropdownMenuItem,
|
|
133
|
+
vo as Z2DropdownMenuLabel,
|
|
134
|
+
Bo as Z2DropdownMenuPortal,
|
|
135
|
+
Mo as Z2DropdownMenuRadioGroup,
|
|
136
|
+
Ao as Z2DropdownMenuRadioItem,
|
|
137
|
+
Po as Z2DropdownMenuSeparator,
|
|
138
|
+
Lo as Z2DropdownMenuShortcut,
|
|
139
|
+
No as Z2DropdownMenuSub,
|
|
140
|
+
Eo as Z2DropdownMenuSubContent,
|
|
141
|
+
Fo as Z2DropdownMenuSubTrigger,
|
|
142
|
+
Ho as Z2DropdownMenuTrigger,
|
|
143
|
+
uo as Z2DropdownSub,
|
|
144
|
+
Do as Z2DropdownSubContent,
|
|
145
145
|
To as Z2DropdownSubItem,
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
146
|
+
bo as Z2DropdownSubTrigger,
|
|
147
|
+
F as Z2Popover,
|
|
148
|
+
we as Z2PopoverContent,
|
|
149
|
+
ge as Z2PopoverTrigger,
|
|
150
|
+
Qo as Z2Select,
|
|
151
|
+
Yo as Z2SelectContent,
|
|
152
|
+
jo as Z2SelectGroup,
|
|
153
|
+
qo as Z2SelectItem,
|
|
154
|
+
zo as Z2SelectLabel,
|
|
155
|
+
Ko as Z2SelectScrollDownButton,
|
|
156
|
+
Xo as Z2SelectScrollUpButton,
|
|
157
|
+
$o as Z2SelectSeparator,
|
|
158
|
+
or as Z2SelectTrigger,
|
|
159
|
+
rr as Z2SelectValue,
|
|
160
|
+
D as Z2SideNavBar,
|
|
161
|
+
w as Z2SideNavBarContent,
|
|
162
|
+
s as Z2SideNavBarFooter,
|
|
163
|
+
v as Z2SideNavBarGroup,
|
|
164
|
+
g as Z2SideNavBarHeader,
|
|
165
|
+
M as Z2SideNavBarItem,
|
|
166
|
+
S as Z2SideNavBarProvider,
|
|
167
|
+
P as Z2SideNavBarSeparator,
|
|
168
168
|
T as Z2SidebarVariants,
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
169
|
+
tr as Z2Stepper,
|
|
170
|
+
pr as Z2StepperItem,
|
|
171
|
+
mr as Z2Tabs,
|
|
172
|
+
lr as Z2TabsContent,
|
|
173
|
+
fr as Z2TabsList,
|
|
174
|
+
xr as Z2TabsTrigger,
|
|
175
|
+
Jr as Z2TextPreset,
|
|
176
|
+
_r as Z2Tooltip,
|
|
177
|
+
Ur as badgeVariants,
|
|
178
|
+
Z as buttonVariants,
|
|
179
|
+
Fr as cn,
|
|
179
180
|
Tr as extractCellValue,
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
181
|
+
sr as useTableContext,
|
|
182
|
+
Nr as useTheme,
|
|
183
|
+
N as useZ2SideNavBar
|
|
183
184
|
};
|
|
@@ -3,11 +3,14 @@ declare const textPresetVariants: (props?: ({
|
|
|
3
3
|
type?: "L" | "C" | "R" | null | undefined;
|
|
4
4
|
multiline?: boolean | null | undefined;
|
|
5
5
|
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
|
6
|
-
|
|
6
|
+
interface Z2TextPresetProps extends VariantProps<typeof textPresetVariants> {
|
|
7
7
|
primaryFirst?: boolean;
|
|
8
8
|
primaryText: string;
|
|
9
9
|
supportText?: string;
|
|
10
10
|
className?: string;
|
|
11
11
|
}
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
declare function Z2TextPreset({ type, multiline, primaryFirst, primaryText, supportText, className, }: Z2TextPresetProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare namespace Z2TextPreset {
|
|
14
|
+
var displayName: string;
|
|
15
|
+
}
|
|
16
|
+
export { Z2TextPreset, type Z2TextPresetProps };
|