@ztwoint/z-ui 0.1.123 → 0.1.124
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/assets/icons/index.d.ts +2 -0
- package/dist/components/assets/icons/left-square-bracket.d.ts +6 -0
- package/dist/components/assets/icons/left-square-bracket.js +23 -0
- package/dist/components/assets/icons/right-square-bracket.d.ts +6 -0
- package/dist/components/assets/icons/right-square-bracket.js +23 -0
- package/dist/index.js +154 -150
- package/dist/types/components/assets/icons/index.d.ts +2 -0
- package/dist/types/components/assets/icons/left-square-bracket.d.ts +6 -0
- package/dist/types/components/assets/icons/right-square-bracket.d.ts +6 -0
- package/package.json +2 -2
|
@@ -42,3 +42,5 @@ export { default as FilterIcon } from './filter-icon';
|
|
|
42
42
|
export { default as DescendingSortingIcon } from './descending';
|
|
43
43
|
export { default as ChainIcon } from './chain';
|
|
44
44
|
export { default as EraserIcon } from './eraser';
|
|
45
|
+
export { default as LeftSquareBracketIcon } from './left-square-bracket';
|
|
46
|
+
export { default as RightSquareBracketIcon } from './right-square-bracket';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
function a({
|
|
3
|
+
fill: r = "currentColor",
|
|
4
|
+
width: t = "1em",
|
|
5
|
+
height: n = "1em",
|
|
6
|
+
...o
|
|
7
|
+
}) {
|
|
8
|
+
return /* @__PURE__ */ e(
|
|
9
|
+
"svg",
|
|
10
|
+
{
|
|
11
|
+
height: n,
|
|
12
|
+
id: "left-square-bracket",
|
|
13
|
+
width: t,
|
|
14
|
+
viewBox: "0 0 3 12",
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
...o,
|
|
17
|
+
children: /* @__PURE__ */ e("g", { fill: "none", children: /* @__PURE__ */ e("path", { d: "M0 12V0H3V1.01448H1.2288V10.9808H3V12H0Z", fill: r }) })
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
export {
|
|
22
|
+
a as default
|
|
23
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx as r } from "react/jsx-runtime";
|
|
2
|
+
function a({
|
|
3
|
+
fill: e = "currentColor",
|
|
4
|
+
width: t = "1em",
|
|
5
|
+
height: i = "1em",
|
|
6
|
+
...n
|
|
7
|
+
}) {
|
|
8
|
+
return /* @__PURE__ */ r(
|
|
9
|
+
"svg",
|
|
10
|
+
{
|
|
11
|
+
height: i,
|
|
12
|
+
id: "right-square-bracket",
|
|
13
|
+
width: t,
|
|
14
|
+
viewBox: "0 0 3 12",
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
...n,
|
|
17
|
+
children: /* @__PURE__ */ r("g", { fill: "none", children: /* @__PURE__ */ r("path", { d: "M3 0V12H0V10.9808H1.7712V1.01448H0V0H3Z", fill: e }) })
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
export {
|
|
22
|
+
a as default
|
|
23
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -5,51 +5,51 @@ import { Button as x, buttonVariants as i } from "./components/button/button.js"
|
|
|
5
5
|
import { Z2SideNavBarProvider as Z } from "./components/collapsible-side-nav-bar/side-nav-bar-provider.js";
|
|
6
6
|
import { Z2SideNavBar as s, Z2SidebarVariants as C } from "./components/collapsible-side-nav-bar/side-nav-bar.js";
|
|
7
7
|
import { Z2SideNavBarHeader as S } from "./components/collapsible-side-nav-bar/side-nav-bar-header.js";
|
|
8
|
-
import { Z2SideNavBarContent as
|
|
8
|
+
import { Z2SideNavBarContent as T } from "./components/collapsible-side-nav-bar/side-nav-bar-content.js";
|
|
9
9
|
import { Z2SideNavBarFooter as g } from "./components/collapsible-side-nav-bar/side-nav-bar-footer.js";
|
|
10
|
-
import { Z2SideNavBarGroup as
|
|
10
|
+
import { Z2SideNavBarGroup as B } from "./components/collapsible-side-nav-bar/side-nav-bar-group.js";
|
|
11
11
|
import { Z2SideNavBarItem as h } from "./components/collapsible-side-nav-bar/side-nav-bar-item.js";
|
|
12
12
|
import { Z2SideNavBarSeparator as M } from "./components/collapsible-side-nav-bar/side-nav-bar-separator.js";
|
|
13
13
|
import { useZ2SideNavBar as R } from "./components/collapsible-side-nav-bar/context.js";
|
|
14
14
|
import { Z2Popover as E } from "./components/collapsible-side-nav-bar/popover/popover.js";
|
|
15
15
|
import "react/jsx-runtime";
|
|
16
|
-
import { default as
|
|
16
|
+
import { default as k, default as N } from "./components/assets/icons/sub-nav-indicator.js";
|
|
17
17
|
import { default as _ } from "./components/assets/icons/circles-icon.js";
|
|
18
18
|
import { default as O, default as G } from "./components/assets/icons/database-copy.js";
|
|
19
19
|
import { default as W, default as U } from "./components/assets/icons/window-left-copy.js";
|
|
20
|
-
import { default as
|
|
21
|
-
import { SIDEBAR_WIDTH as
|
|
20
|
+
import { default as q, default as z } from "./components/assets/icons/sidebar-left-show-copy.js";
|
|
21
|
+
import { SIDEBAR_WIDTH as Q, SIDEBAR_WIDTH_COLLAPSED as Y } from "./components/collapsible-side-nav-bar/constants.js";
|
|
22
22
|
import { CountryFlags as K } from "./components/country-flags/country-flags.js";
|
|
23
23
|
import { Z2Checkbox as oo } from "./components/checkbox/checkbox.js";
|
|
24
24
|
import { Z2Dialog as ro, Z2DialogClose as to, Z2DialogContent as ao, Z2DialogDescription as po, Z2DialogFooter as no, Z2DialogHeader as lo, Z2DialogOverlay as fo, Z2DialogPortal as mo, Z2DialogTitle as xo, Z2DialogTrigger as io } from "./components/dialog/dialog.js";
|
|
25
|
-
import { DropdownContext as Zo, Z2Dropdown as co, Z2DropdownContent as so, Z2DropdownInput as Co, Z2DropdownItem as bo, Z2DropdownSub as So, Z2DropdownSubContent as
|
|
26
|
-
import { Z2DropdownMenu as wo, Z2DropdownMenuCheckboxItem as
|
|
25
|
+
import { DropdownContext as Zo, Z2Dropdown as co, Z2DropdownContent as so, Z2DropdownInput as Co, Z2DropdownItem as bo, Z2DropdownSub as So, Z2DropdownSubContent as Io, Z2DropdownSubItem as To, Z2DropdownSubTrigger as Do } from "./components/dropdown/z2-dropdown.js";
|
|
26
|
+
import { Z2DropdownMenu as wo, Z2DropdownMenuCheckboxItem as Bo, Z2DropdownMenuContent as vo, Z2DropdownMenuGroup as ho, Z2DropdownMenuItem as Lo, Z2DropdownMenuLabel as Mo, Z2DropdownMenuPortal as Po, Z2DropdownMenuRadioGroup as Ro, Z2DropdownMenuRadioItem as Ao, Z2DropdownMenuSeparator as Eo, Z2DropdownMenuShortcut as yo, Z2DropdownMenuSub as ko, Z2DropdownMenuSubContent as No, Z2DropdownMenuSubTrigger as Ho, Z2DropdownMenuTrigger as _o } from "./components/dropdown-menu/z2-dropdown-menu.js";
|
|
27
27
|
import { FileUploadArea as Oo } from "./components/file-upload-area/file-upload-area.js";
|
|
28
28
|
import { DEFAULT_ACCEPT as Vo } from "./components/file-upload-area/file-upload-area.const.js";
|
|
29
29
|
import { Input as Uo } from "./components/input/input.js";
|
|
30
|
-
import { NavHeader as
|
|
31
|
-
import { NavItem as
|
|
32
|
-
import { Z2Select as
|
|
30
|
+
import { NavHeader as qo } from "./components/nav-header/nav-header.js";
|
|
31
|
+
import { NavItem as Jo } from "./components/nav-header/nav-item/nav-item.js";
|
|
32
|
+
import { Z2Select as Yo, Z2SelectContent as jo, Z2SelectGroup as Ko, Z2SelectItem as $o, Z2SelectLabel as oe, Z2SelectScrollDownButton as ee, Z2SelectScrollUpButton as re, Z2SelectSeparator as te, Z2SelectTrigger as ae, Z2SelectValue as pe } from "./components/select/z2-select.js";
|
|
33
33
|
import { Z2Stepper as le } from "./components/stepper/stepper.js";
|
|
34
34
|
import { Z2StepperItem as me } from "./components/stepper-item/stepper-item.js";
|
|
35
35
|
import { Z2Tabs as xe, Z2TabsContent as ie, Z2TabsList as ue, Z2TabsTrigger as Ze } from "./components/tab/tab.js";
|
|
36
36
|
import { Table as se, TableProvider as Ce } from "./components/table/table-provider.js";
|
|
37
37
|
import { TableBody as Se } from "./components/table/table.js";
|
|
38
|
-
import { extractCellValue as
|
|
38
|
+
import { extractCellValue as Te } from "./components/table/table.utils.js";
|
|
39
39
|
import { DEFAULT_EMPTY_MESSAGE as ge, TABLE_CSS_CLASSES as we } from "./components/table/table.const.js";
|
|
40
|
-
import { TableContext as
|
|
40
|
+
import { TableContext as ve, useTableContext as he } from "./components/table/table.context.js";
|
|
41
41
|
import { TableCell as Me } from "./components/table/components/table-cell.js";
|
|
42
42
|
import { NumberCell as Re } from "./components/table/components/cell/number-cell.js";
|
|
43
43
|
import { BooleanCell as Ee } from "./components/table/components/cell/boolean-cell.js";
|
|
44
|
-
import { LinkCell as
|
|
44
|
+
import { LinkCell as ke } from "./components/table/components/cell/link-cell.js";
|
|
45
45
|
import { DescriptionCell as He } from "./components/table/components/cell/description-cell.js";
|
|
46
46
|
import { AvatarCell as Fe } from "./components/table/components/cell/avatar-cell.js";
|
|
47
47
|
import { LabelCell as Ge } from "./components/table/components/cell/label-cell.js";
|
|
48
48
|
import { TableHeader as We } from "./components/table/components/table-header/table-header.js";
|
|
49
49
|
import { default as Xe } from "./components/assets/icons/chevron-down.js";
|
|
50
|
-
import { TableRow as
|
|
51
|
-
import { TableMessageState as
|
|
52
|
-
import { TableLoadingState as
|
|
50
|
+
import { TableRow as ze } from "./components/table/components/table-row.js";
|
|
51
|
+
import { TableMessageState as Qe } from "./components/table/components/table-message-state.js";
|
|
52
|
+
import { TableLoadingState as je } from "./components/table/components/table-loading-state.js";
|
|
53
53
|
import { Pagination as $e } from "./components/table/components/pagination/pagination.js";
|
|
54
54
|
import { TableHeaderWrapper as er } from "./components/table/components/table-header-wrapper.js";
|
|
55
55
|
import { TableHeaderContent as tr } from "./components/table/components/table-header-content.js";
|
|
@@ -61,18 +61,18 @@ import { PaginationQuickJumper as ur } from "./components/table/components/pagin
|
|
|
61
61
|
import "react";
|
|
62
62
|
import { Z2Tooltip as cr } from "./components/tooltip/tooltip.js";
|
|
63
63
|
import { default as Cr } from "./components/table-card/table-card.js";
|
|
64
|
-
import { Badge as Sr, badgeVariants as
|
|
64
|
+
import { Badge as Sr, badgeVariants as Ir } from "./components/badge/badge.js";
|
|
65
65
|
import { Avatar as Dr, AvatarWithLabel as gr } from "./components/avatar/avatar.js";
|
|
66
|
-
import { Z2TextPreset as
|
|
66
|
+
import { Z2TextPreset as Br } from "./components/text-preset/text-preset.js";
|
|
67
67
|
import { ColumnReOrder as hr } from "./components/column-reorder/column-reorder.js";
|
|
68
68
|
import { default as Mr } from "./components/tree-checkbox-select/TreeCheckboxSelect.js";
|
|
69
|
-
import { Z2Breadcrumb as Rr, Z2BreadcrumbEllipsis as Ar, Z2BreadcrumbItem as Er, Z2BreadcrumbLink as yr, Z2BreadcrumbList as
|
|
69
|
+
import { Z2Breadcrumb as Rr, Z2BreadcrumbEllipsis as Ar, Z2BreadcrumbItem as Er, Z2BreadcrumbLink as yr, Z2BreadcrumbList as kr, Z2BreadcrumbPage as Nr, Z2BreadcrumbSeparator as Hr } from "./components/breadcrumb/z2-breadcrumb.js";
|
|
70
70
|
import { Z2RadioGroup as Fr, Z2RadioGroupIndicator as Or, Z2RadioGroupItem as Gr } from "./components/radio/z2-radio.js";
|
|
71
71
|
import { default as Wr } from "./components/assets/icons/apartment-building.js";
|
|
72
72
|
import { Check as Xr } from "./components/assets/icons/check.js";
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
73
|
+
import { default as zr } from "./components/assets/icons/chevron-left.js";
|
|
74
|
+
import { default as Qr } from "./components/assets/icons/chevron-right.js";
|
|
75
|
+
import { default as jr } from "./components/assets/icons/circle-check-filled.js";
|
|
76
76
|
import { default as $r } from "./components/assets/icons/circle-check.js";
|
|
77
77
|
import { default as et } from "./components/assets/icons/dots.js";
|
|
78
78
|
import { default as tt } from "./components/assets/icons/double-chevron-left.js";
|
|
@@ -84,82 +84,84 @@ import { default as ut } from "./components/assets/icons/left-arrow.js";
|
|
|
84
84
|
import { default as ct } from "./components/assets/icons/link.js";
|
|
85
85
|
import { default as Ct } from "./components/assets/icons/list-tree.js";
|
|
86
86
|
import { default as St } from "./components/assets/icons/media-record.js";
|
|
87
|
-
import { Minus as
|
|
87
|
+
import { Minus as Tt } from "./components/assets/icons/minus.js";
|
|
88
88
|
import { default as gt } from "./components/assets/icons/octagon-warning-Copy.js";
|
|
89
|
-
import { default as
|
|
89
|
+
import { default as Bt } from "./components/assets/icons/pin.js";
|
|
90
90
|
import { default as ht } from "./components/assets/icons/sitemap.js";
|
|
91
91
|
import { default as Mt } from "./components/assets/icons/slider.js";
|
|
92
92
|
import { default as Rt } from "./components/assets/icons/upload.js";
|
|
93
93
|
import { default as Et } from "./components/assets/icons/vector.js";
|
|
94
|
-
import { XMark as
|
|
94
|
+
import { XMark as kt } from "./components/assets/icons/x-mark.js";
|
|
95
95
|
import { default as Ht } from "./components/assets/icons/x.js";
|
|
96
96
|
import { default as Ft } from "./components/assets/icons/z2-icon.js";
|
|
97
97
|
import { default as Gt } from "./components/assets/icons/z2-slash.js";
|
|
98
98
|
import { default as Wt } from "./components/assets/icons/z2data.js";
|
|
99
99
|
import { default as Xt } from "./components/assets/icons/vector_3.js";
|
|
100
|
-
import { default as
|
|
101
|
-
import { default as
|
|
102
|
-
import { default as
|
|
100
|
+
import { default as zt } from "./components/assets/icons/table-cols-2.js";
|
|
101
|
+
import { default as Qt } from "./components/assets/icons/triangle-warning.js";
|
|
102
|
+
import { default as jt } from "./components/assets/icons/arrow-left.js";
|
|
103
103
|
import { default as $t } from "./components/assets/icons/filter-icon.js";
|
|
104
104
|
import { default as ea } from "./components/assets/icons/descending.js";
|
|
105
105
|
import { default as ta } from "./components/assets/icons/chain.js";
|
|
106
106
|
import { default as pa } from "./components/assets/icons/eraser.js";
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
107
|
+
import { default as la } from "./components/assets/icons/left-square-bracket.js";
|
|
108
|
+
import { default as ma } from "./components/assets/icons/right-square-bracket.js";
|
|
109
|
+
import { SegmentedControl as xa } from "./components/segmented-control/controller.js";
|
|
110
|
+
import { SegmentedControlItem as ua } from "./components/segmented-control/item.js";
|
|
111
|
+
import { Popover as ca, PopoverAnchor as sa, PopoverContent as Ca, PopoverTrigger as ba } from "./components/popover/popover.js";
|
|
112
|
+
import { Z2Table as Ia, Z2TableBase as Ta, Z2TableBody as Da, Z2TableBodyRow as ga, Z2TableBodyRowCell as wa, Z2TableBodyRowExpandded as Ba, Z2TableBodyRowSkeleton as va, Z2TableBodyRowSkeletonCell as ha, Z2TableEmpty as La, Z2TableHead as Ma, Z2TableHeadRow as Pa, Z2TableHeadRowCell as Ra, Z2TableHeadRowCellResize as Aa, Z2TableLoader as Ea, Z2TableRowSelect as ya, Z2TableRowSelectAll as ka, Z2TableRowSpacer as Na } from "./components/dynamic-table/z2-table.js";
|
|
113
|
+
import { Z2TableContainer as _a, Z2TableProvider as Fa, Z2TableRoot as Oa, useZ2Table as Ga } from "./components/dynamic-table/z2-table-context.js";
|
|
114
|
+
import { Z2TablePagination as Wa } from "./components/dynamic-table/z2-table-pagination.js";
|
|
115
|
+
import { Z2TableColumnHeader as Xa } from "./components/dynamic-table/z2-column-header.js";
|
|
116
|
+
import { Chart as za } from "./components/chart/chart.js";
|
|
117
|
+
import { ChartCard as Qa } from "./components/chart-card/chart-card.js";
|
|
118
|
+
import { EmptyState as ja, ErrorState as Ka, LoadingState as $a } from "./components/chart-card/chart-card-states.js";
|
|
119
|
+
import { COLOR_PALETTES as ep, UI_COLORS as rp, getThemePalette as tp } from "./components/chart-card/config/colors.js";
|
|
120
|
+
import { validateChartConfig as pp, validateChartData as np } from "./components/chart-card/validators/config-validator.js";
|
|
121
|
+
import { buildBarChartOptions as fp } from "./components/chart-card/builders/bar-chart-builder.js";
|
|
122
|
+
import { buildLineChartOptions as dp } from "./components/chart-card/builders/line-chart-builder.js";
|
|
123
|
+
import { buildChartOptions as ip, isChartTypeSupported as up, registeredChartTypes as Zp } from "./components/chart-card/builders/chart-builder-factory.js";
|
|
124
|
+
import { Z2RadioCard as sp } from "./components/radio-card/radio-card.js";
|
|
125
|
+
import { default as bp } from "./components/z2map/map.js";
|
|
126
|
+
import { DEFAULT_MAP_CONFIG as Ip, MAP_VARIANTS as Tp, PIN_SIZES as Dp } from "./components/z2map/map.constants.js";
|
|
127
|
+
import { MapPinComponent as wp } from "./components/z2map/components/map-pin.js";
|
|
128
|
+
import { MapPinContent as vp } from "./components/z2map/components/map-pin-content.js";
|
|
129
|
+
import { MapControls as Lp } from "./components/z2map/components/map-controls.js";
|
|
130
|
+
import { MapZoomControl as Pp } from "./components/z2map/components/map-zoom-control.js";
|
|
131
|
+
import { MapStyleControl as Ap } from "./components/z2map/components/map-style-control.js";
|
|
132
|
+
import { useTheme as yp } from "./lib/theme.hook.js";
|
|
133
|
+
import { cn as Np } from "./lib/utils.js";
|
|
134
|
+
import { Z2PopoverTrigger as _p } from "./components/collapsible-side-nav-bar/popover/popover-trigger.js";
|
|
135
|
+
import { Z2PopoverContent as Op } from "./components/collapsible-side-nav-bar/popover/popover-content.js";
|
|
134
136
|
export {
|
|
135
137
|
p as Alert,
|
|
136
138
|
m as AlertCirclesIcon,
|
|
137
139
|
n as AlertDescription,
|
|
138
140
|
l as AlertTitle,
|
|
139
141
|
Wr as ApartmentBuildingIcon,
|
|
140
|
-
|
|
142
|
+
jt as ArrowLeftIcon,
|
|
141
143
|
Dr as Avatar,
|
|
142
144
|
Fe as AvatarCell,
|
|
143
145
|
gr as AvatarWithLabel,
|
|
144
146
|
Sr as Badge,
|
|
145
147
|
Ee as BooleanCell,
|
|
146
148
|
x as Button,
|
|
147
|
-
|
|
149
|
+
ep as COLOR_PALETTES,
|
|
148
150
|
ta as ChainIcon,
|
|
149
|
-
|
|
150
|
-
|
|
151
|
+
za as Chart,
|
|
152
|
+
Qa as ChartCard,
|
|
151
153
|
Xr as CheckIcon,
|
|
152
154
|
Xe as ChevronDownIcon,
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
155
|
+
zr as ChevronLeftIcon,
|
|
156
|
+
Qr as ChevronRightIcon,
|
|
157
|
+
jr as CircleCheckFilledIcon,
|
|
156
158
|
$r as CircleCheckIcon,
|
|
157
159
|
_ as CirclesIcon,
|
|
158
160
|
hr as ColumnReOrder,
|
|
159
161
|
K as CountryFlags,
|
|
160
162
|
Vo as DEFAULT_ACCEPT,
|
|
161
163
|
ge as DEFAULT_EMPTY_MESSAGE,
|
|
162
|
-
|
|
164
|
+
Ip as DEFAULT_MAP_CONFIG,
|
|
163
165
|
O as DatabaseCopy,
|
|
164
166
|
G as DatabaseCopyIcon,
|
|
165
167
|
ea as DescendingSortingIcon,
|
|
@@ -169,9 +171,9 @@ export {
|
|
|
169
171
|
pt as DoubleChevronRightIcon,
|
|
170
172
|
lt as DragHandleIcon,
|
|
171
173
|
Zo as DropdownContext,
|
|
172
|
-
|
|
174
|
+
ja as EmptyState,
|
|
173
175
|
pa as EraserIcon,
|
|
174
|
-
|
|
176
|
+
Ka as ErrorState,
|
|
175
177
|
Oo as FileUploadArea,
|
|
176
178
|
$t as FilterIcon,
|
|
177
179
|
mt as HomeIcon,
|
|
@@ -179,74 +181,76 @@ export {
|
|
|
179
181
|
Uo as Input,
|
|
180
182
|
Ge as LabelCell,
|
|
181
183
|
ut as LeftArrowIcon,
|
|
182
|
-
|
|
184
|
+
la as LeftSquareBracketIcon,
|
|
185
|
+
ke as LinkCell,
|
|
183
186
|
ct as LinkIcon,
|
|
184
187
|
Ct as ListTreeIcon,
|
|
185
|
-
|
|
186
|
-
|
|
188
|
+
$a as LoadingState,
|
|
189
|
+
Tp as MAP_VARIANTS,
|
|
187
190
|
mr as MagnifierIcon,
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
191
|
+
Lp as MapControls,
|
|
192
|
+
wp as MapPinComponent,
|
|
193
|
+
vp as MapPinContent,
|
|
194
|
+
Ap as MapStyleControl,
|
|
195
|
+
Pp as MapZoomControl,
|
|
193
196
|
St as MediaRecordIcon,
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
+
Tt as MinusIcon,
|
|
198
|
+
qo as NavHeader,
|
|
199
|
+
Jo as NavItem,
|
|
197
200
|
Re as NumberCell,
|
|
198
201
|
gt as OctagonWarningIcon,
|
|
199
|
-
|
|
202
|
+
Dp as PIN_SIZES,
|
|
200
203
|
xr as PaginationInfo,
|
|
201
204
|
ur as PaginationQuickJumper,
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
205
|
+
Bt as PinIcon,
|
|
206
|
+
ca as Popover,
|
|
207
|
+
sa as PopoverAnchor,
|
|
208
|
+
Ca as PopoverContent,
|
|
209
|
+
ba as PopoverTrigger,
|
|
210
|
+
ma as RightSquareBracketIcon,
|
|
211
|
+
Q as SIDEBAR_WIDTH,
|
|
212
|
+
Y as SIDEBAR_WIDTH_COLLAPSED,
|
|
213
|
+
xa as SegmentedControl,
|
|
214
|
+
ua as SegmentedControlItem,
|
|
215
|
+
q as SidebarLeftShowCopy,
|
|
216
|
+
z as SidebarLeftShowCopyIcon,
|
|
213
217
|
ht as SitemapIcon,
|
|
214
218
|
Mt as SliderIcon,
|
|
215
|
-
|
|
216
|
-
|
|
219
|
+
k as SubNavIndicator,
|
|
220
|
+
N as SubNavIndicatorIcon,
|
|
217
221
|
we as TABLE_CSS_CLASSES,
|
|
218
222
|
se as Table,
|
|
219
223
|
Se as TableBody,
|
|
220
224
|
Cr as TableCard,
|
|
221
225
|
Me as TableCell,
|
|
222
|
-
|
|
223
|
-
|
|
226
|
+
zt as TableCols2Icon,
|
|
227
|
+
ve as TableContext,
|
|
224
228
|
pr as TableFooter,
|
|
225
229
|
lr as TableFooterContent,
|
|
226
230
|
We as TableHeader,
|
|
227
231
|
tr as TableHeaderContent,
|
|
228
232
|
er as TableHeaderWrapper,
|
|
229
|
-
|
|
230
|
-
|
|
233
|
+
je as TableLoadingState,
|
|
234
|
+
Qe as TableMessageState,
|
|
231
235
|
$e as TablePagination,
|
|
232
236
|
Ce as TableProvider,
|
|
233
|
-
|
|
237
|
+
ze as TableRow,
|
|
234
238
|
Mr as TreeCheckboxSelect,
|
|
235
|
-
|
|
236
|
-
|
|
239
|
+
Qt as TriangleWarningIcon,
|
|
240
|
+
rp as UI_COLORS,
|
|
237
241
|
Rt as UploadIcon,
|
|
238
242
|
Xt as Vector3Icon,
|
|
239
243
|
Et as VectorIcon,
|
|
240
244
|
W as WindowLeftCopy,
|
|
241
245
|
U as WindowLeftCopyIcon,
|
|
242
246
|
Ht as XIcon,
|
|
243
|
-
|
|
247
|
+
kt as XMarkIcon,
|
|
244
248
|
Rr as Z2Breadcrumb,
|
|
245
249
|
Ar as Z2BreadcrumbEllipsis,
|
|
246
250
|
Er as Z2BreadcrumbItem,
|
|
247
251
|
yr as Z2BreadcrumbLink,
|
|
248
|
-
|
|
249
|
-
|
|
252
|
+
kr as Z2BreadcrumbList,
|
|
253
|
+
Nr as Z2BreadcrumbPage,
|
|
250
254
|
Hr as Z2BreadcrumbSeparator,
|
|
251
255
|
oo as Z2Checkbox,
|
|
252
256
|
Wt as Z2DataIcon,
|
|
@@ -265,8 +269,8 @@ export {
|
|
|
265
269
|
Co as Z2DropdownInput,
|
|
266
270
|
bo as Z2DropdownItem,
|
|
267
271
|
wo as Z2DropdownMenu,
|
|
268
|
-
|
|
269
|
-
|
|
272
|
+
Bo as Z2DropdownMenuCheckboxItem,
|
|
273
|
+
vo as Z2DropdownMenuContent,
|
|
270
274
|
ho as Z2DropdownMenuGroup,
|
|
271
275
|
Lo as Z2DropdownMenuItem,
|
|
272
276
|
Mo as Z2DropdownMenuLabel,
|
|
@@ -275,25 +279,25 @@ export {
|
|
|
275
279
|
Ao as Z2DropdownMenuRadioItem,
|
|
276
280
|
Eo as Z2DropdownMenuSeparator,
|
|
277
281
|
yo as Z2DropdownMenuShortcut,
|
|
278
|
-
|
|
279
|
-
|
|
282
|
+
ko as Z2DropdownMenuSub,
|
|
283
|
+
No as Z2DropdownMenuSubContent,
|
|
280
284
|
Ho as Z2DropdownMenuSubTrigger,
|
|
281
285
|
_o as Z2DropdownMenuTrigger,
|
|
282
286
|
So as Z2DropdownSub,
|
|
283
|
-
|
|
284
|
-
|
|
287
|
+
Io as Z2DropdownSubContent,
|
|
288
|
+
To as Z2DropdownSubItem,
|
|
285
289
|
Do as Z2DropdownSubTrigger,
|
|
286
290
|
Ft as Z2Icon,
|
|
287
|
-
|
|
291
|
+
bp as Z2Map,
|
|
288
292
|
E as Z2Popover,
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
293
|
+
Op as Z2PopoverContent,
|
|
294
|
+
_p as Z2PopoverTrigger,
|
|
295
|
+
sp as Z2RadioCard,
|
|
292
296
|
Fr as Z2RadioGroup,
|
|
293
297
|
Or as Z2RadioGroupIndicator,
|
|
294
298
|
Gr as Z2RadioGroupItem,
|
|
295
|
-
|
|
296
|
-
|
|
299
|
+
Yo as Z2Select,
|
|
300
|
+
jo as Z2SelectContent,
|
|
297
301
|
Ko as Z2SelectGroup,
|
|
298
302
|
$o as Z2SelectItem,
|
|
299
303
|
oe as Z2SelectLabel,
|
|
@@ -303,9 +307,9 @@ export {
|
|
|
303
307
|
ae as Z2SelectTrigger,
|
|
304
308
|
pe as Z2SelectValue,
|
|
305
309
|
s as Z2SideNavBar,
|
|
306
|
-
|
|
310
|
+
T as Z2SideNavBarContent,
|
|
307
311
|
g as Z2SideNavBarFooter,
|
|
308
|
-
|
|
312
|
+
B as Z2SideNavBarGroup,
|
|
309
313
|
S as Z2SideNavBarHeader,
|
|
310
314
|
h as Z2SideNavBarItem,
|
|
311
315
|
Z as Z2SideNavBarProvider,
|
|
@@ -314,48 +318,48 @@ export {
|
|
|
314
318
|
Gt as Z2SlashIcon,
|
|
315
319
|
le as Z2Stepper,
|
|
316
320
|
me as Z2StepperItem,
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
321
|
+
Ia as Z2Table,
|
|
322
|
+
Ta as Z2TableBase,
|
|
323
|
+
Da as Z2TableBody,
|
|
324
|
+
ga as Z2TableBodyRow,
|
|
325
|
+
wa as Z2TableBodyRowCell,
|
|
326
|
+
Ba as Z2TableBodyRowExpandded,
|
|
327
|
+
va as Z2TableBodyRowSkeleton,
|
|
328
|
+
ha as Z2TableBodyRowSkeletonCell,
|
|
329
|
+
Xa as Z2TableColumnHeader,
|
|
330
|
+
_a as Z2TableContainer,
|
|
331
|
+
La as Z2TableEmpty,
|
|
332
|
+
Ma as Z2TableHead,
|
|
333
|
+
Pa as Z2TableHeadRow,
|
|
334
|
+
Ra as Z2TableHeadRowCell,
|
|
335
|
+
Aa as Z2TableHeadRowCellResize,
|
|
336
|
+
Ea as Z2TableLoader,
|
|
337
|
+
Wa as Z2TablePagination,
|
|
338
|
+
Fa as Z2TableProvider,
|
|
339
|
+
Oa as Z2TableRoot,
|
|
340
|
+
ya as Z2TableRowSelect,
|
|
341
|
+
ka as Z2TableRowSelectAll,
|
|
342
|
+
Na as Z2TableRowSpacer,
|
|
339
343
|
xe as Z2Tabs,
|
|
340
344
|
ie as Z2TabsContent,
|
|
341
345
|
ue as Z2TabsList,
|
|
342
346
|
Ze as Z2TabsTrigger,
|
|
343
|
-
|
|
347
|
+
Br as Z2TextPreset,
|
|
344
348
|
cr as Z2Tooltip,
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
+
Ir as badgeVariants,
|
|
350
|
+
fp as buildBarChartOptions,
|
|
351
|
+
ip as buildChartOptions,
|
|
352
|
+
dp as buildLineChartOptions,
|
|
349
353
|
i as buttonVariants,
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
354
|
+
Np as cn,
|
|
355
|
+
Te as extractCellValue,
|
|
356
|
+
tp as getThemePalette,
|
|
357
|
+
up as isChartTypeSupported,
|
|
358
|
+
Zp as registeredChartTypes,
|
|
355
359
|
he as useTableContext,
|
|
356
|
-
|
|
360
|
+
yp as useTheme,
|
|
357
361
|
R as useZ2SideNavBar,
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
362
|
+
Ga as useZ2Table,
|
|
363
|
+
pp as validateChartConfig,
|
|
364
|
+
np as validateChartData
|
|
361
365
|
};
|
|
@@ -42,3 +42,5 @@ export { default as FilterIcon } from './filter-icon';
|
|
|
42
42
|
export { default as DescendingSortingIcon } from './descending';
|
|
43
43
|
export { default as ChainIcon } from './chain';
|
|
44
44
|
export { default as EraserIcon } from './eraser';
|
|
45
|
+
export { default as LeftSquareBracketIcon } from './left-square-bracket';
|
|
46
|
+
export { default as RightSquareBracketIcon } from './right-square-bracket';
|
package/package.json
CHANGED