@ztwoint/z-ui 0.1.99 → 0.1.100
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/chain.d.ts +7 -0
- package/dist/components/assets/icons/chain.js +44 -0
- package/dist/components/assets/icons/descending.d.ts +8 -0
- package/dist/components/assets/icons/descending.js +96 -0
- package/dist/components/assets/icons/filter-icon.d.ts +6 -0
- package/dist/components/assets/icons/filter-icon.js +36 -0
- package/dist/components/assets/icons/index.d.ts +3 -0
- package/dist/index.js +44 -38
- package/dist/types/components/assets/icons/chain.d.ts +7 -0
- package/dist/types/components/assets/icons/descending.d.ts +8 -0
- package/dist/types/components/assets/icons/filter-icon.d.ts +6 -0
- package/dist/types/components/assets/icons/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
3
|
+
secondaryfill?: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
};
|
|
6
|
+
declare function Link({ fill, secondaryfill, width, height, title, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default Link;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { jsxs as r, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
function l({
|
|
3
|
+
fill: C = "currentColor",
|
|
4
|
+
secondaryfill: e,
|
|
5
|
+
width: d = "1em",
|
|
6
|
+
height: n = "1em",
|
|
7
|
+
title: L = "badge 13",
|
|
8
|
+
...o
|
|
9
|
+
}) {
|
|
10
|
+
return e = e || C, /* @__PURE__ */ r(
|
|
11
|
+
"svg",
|
|
12
|
+
{
|
|
13
|
+
height: n,
|
|
14
|
+
width: d,
|
|
15
|
+
viewBox: "0 0 18 18",
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
...o,
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ t("title", { children: L }),
|
|
20
|
+
/* @__PURE__ */ r("g", { fill: C, children: [
|
|
21
|
+
/* @__PURE__ */ t(
|
|
22
|
+
"path",
|
|
23
|
+
{
|
|
24
|
+
d: "M9.03166 6.54197C9.22575 6.9079 9.08644 7.36188 8.72052 7.55597C8.47184 7.68787 8.24717 7.85851 8.04832 8.05733C6.96021 9.14544 6.96021 10.9086 8.04832 11.9967L10.2233 14.1717C11.3114 15.2598 13.0746 15.2598 14.1627 14.1717C15.2507 13.0836 15.2608 11.3104 14.1727 10.2223L13.4103 9.45993C13.1174 9.16703 13.1174 8.69216 13.4103 8.39927C13.7032 8.10638 14.178 8.10638 14.4709 8.39927L15.2333 9.16167C16.9072 10.8356 16.9072 13.5484 15.2333 15.2223C13.5594 16.8962 10.8365 16.9062 9.16266 15.2323L6.98766 13.0573C5.31377 11.3834 5.31377 8.67056 6.98766 6.99667C7.29576 6.68747 7.64975 6.42597 8.01766 6.23083C8.38359 6.03674 8.83757 6.17604 9.03166 6.54197Z",
|
|
25
|
+
fill: e,
|
|
26
|
+
fillRule: "evenodd"
|
|
27
|
+
}
|
|
28
|
+
),
|
|
29
|
+
/* @__PURE__ */ t(
|
|
30
|
+
"path",
|
|
31
|
+
{
|
|
32
|
+
d: "M2.77868 2.76766C4.45257 1.09376 7.16544 1.09376 8.83934 2.76766L11.0143 4.94266C12.6882 6.61655 12.6882 9.32942 11.0143 11.0033C10.7101 11.3075 10.3647 11.5674 9.98433 11.7692C9.6184 11.9633 9.16442 11.824 8.97033 11.458C8.77624 11.0921 8.91554 10.6381 9.28147 10.444C9.53006 10.3122 9.7549 10.1414 9.95368 9.94267C11.0418 8.85455 11.0418 7.09142 9.95368 6.00332L7.77868 3.82832C6.69057 2.74021 4.92744 2.74021 3.83934 3.82832C2.76193 4.90573 2.74775 6.69607 3.82934 7.77766L4.59174 8.54006C4.88463 8.83295 4.88463 9.30782 4.59174 9.60072C4.29884 9.89361 3.82397 9.89361 3.53108 9.60072L2.76868 8.83832C1.10903 7.17867 1.1232 4.42314 2.77868 2.76766Z",
|
|
33
|
+
fill: C,
|
|
34
|
+
fillRule: "evenodd"
|
|
35
|
+
}
|
|
36
|
+
)
|
|
37
|
+
] })
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
export {
|
|
43
|
+
l as default
|
|
44
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
3
|
+
secondaryfill?: string;
|
|
4
|
+
strokewidth?: number;
|
|
5
|
+
title?: string;
|
|
6
|
+
};
|
|
7
|
+
declare function DescendingSorting({ fill, secondaryfill, strokewidth, width, height, title, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default DescendingSorting;
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { jsxs as i, jsx as n } from "react/jsx-runtime";
|
|
2
|
+
function x({
|
|
3
|
+
fill: e = "currentColor",
|
|
4
|
+
secondaryfill: r,
|
|
5
|
+
strokewidth: o = 1,
|
|
6
|
+
width: t = "1em",
|
|
7
|
+
height: s = "1em",
|
|
8
|
+
title: k = "badge 13",
|
|
9
|
+
...d
|
|
10
|
+
}) {
|
|
11
|
+
return r = r || e, /* @__PURE__ */ i(
|
|
12
|
+
"svg",
|
|
13
|
+
{
|
|
14
|
+
height: s,
|
|
15
|
+
width: t,
|
|
16
|
+
viewBox: "0 0 18 18",
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
...d,
|
|
19
|
+
children: [
|
|
20
|
+
/* @__PURE__ */ n("title", { children: k }),
|
|
21
|
+
/* @__PURE__ */ i("g", { fill: e, children: [
|
|
22
|
+
/* @__PURE__ */ n(
|
|
23
|
+
"polyline",
|
|
24
|
+
{
|
|
25
|
+
fill: "none",
|
|
26
|
+
points: "10.25 12.75 12.75 15.25 15.25 12.75",
|
|
27
|
+
stroke: r,
|
|
28
|
+
strokeLinecap: "round",
|
|
29
|
+
strokeLinejoin: "round",
|
|
30
|
+
strokeWidth: o
|
|
31
|
+
}
|
|
32
|
+
),
|
|
33
|
+
/* @__PURE__ */ n(
|
|
34
|
+
"line",
|
|
35
|
+
{
|
|
36
|
+
fill: "none",
|
|
37
|
+
stroke: r,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round",
|
|
40
|
+
strokeWidth: o,
|
|
41
|
+
x1: "12.75",
|
|
42
|
+
x2: "12.75",
|
|
43
|
+
y1: "15.25",
|
|
44
|
+
y2: "6.25"
|
|
45
|
+
}
|
|
46
|
+
),
|
|
47
|
+
/* @__PURE__ */ n(
|
|
48
|
+
"line",
|
|
49
|
+
{
|
|
50
|
+
fill: "none",
|
|
51
|
+
stroke: e,
|
|
52
|
+
strokeLinecap: "round",
|
|
53
|
+
strokeLinejoin: "round",
|
|
54
|
+
strokeWidth: o,
|
|
55
|
+
x1: "2.75",
|
|
56
|
+
x2: "9.25",
|
|
57
|
+
y1: "9.75",
|
|
58
|
+
y2: "9.75"
|
|
59
|
+
}
|
|
60
|
+
),
|
|
61
|
+
/* @__PURE__ */ n(
|
|
62
|
+
"line",
|
|
63
|
+
{
|
|
64
|
+
fill: "none",
|
|
65
|
+
stroke: e,
|
|
66
|
+
strokeLinecap: "round",
|
|
67
|
+
strokeLinejoin: "round",
|
|
68
|
+
strokeWidth: o,
|
|
69
|
+
x1: "2.75",
|
|
70
|
+
x2: "9.25",
|
|
71
|
+
y1: "6.25",
|
|
72
|
+
y2: "6.25"
|
|
73
|
+
}
|
|
74
|
+
),
|
|
75
|
+
/* @__PURE__ */ n(
|
|
76
|
+
"line",
|
|
77
|
+
{
|
|
78
|
+
fill: "none",
|
|
79
|
+
stroke: e,
|
|
80
|
+
strokeLinecap: "round",
|
|
81
|
+
strokeLinejoin: "round",
|
|
82
|
+
strokeWidth: o,
|
|
83
|
+
x1: "2.75",
|
|
84
|
+
x2: "12.75",
|
|
85
|
+
y1: "2.75",
|
|
86
|
+
y2: "2.75"
|
|
87
|
+
}
|
|
88
|
+
)
|
|
89
|
+
] })
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
export {
|
|
95
|
+
x as default
|
|
96
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsxs as s, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
function d({
|
|
3
|
+
fill: o = "currentColor",
|
|
4
|
+
width: r = "1em",
|
|
5
|
+
height: n = "1em",
|
|
6
|
+
title: t = "badge 13",
|
|
7
|
+
...i
|
|
8
|
+
}) {
|
|
9
|
+
return /* @__PURE__ */ s(
|
|
10
|
+
"svg",
|
|
11
|
+
{
|
|
12
|
+
height: n,
|
|
13
|
+
width: r,
|
|
14
|
+
viewBox: "0 0 20 20",
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
...i,
|
|
17
|
+
children: [
|
|
18
|
+
/* @__PURE__ */ e("title", { children: t }),
|
|
19
|
+
/* @__PURE__ */ e("g", { fill: o, children: /* @__PURE__ */ e(
|
|
20
|
+
"polygon",
|
|
21
|
+
{
|
|
22
|
+
fill: "none",
|
|
23
|
+
points: "4 3 8 9 8 17 12 15 12 9 16 3 4 3",
|
|
24
|
+
stroke: o,
|
|
25
|
+
strokeLinecap: "round",
|
|
26
|
+
strokeLinejoin: "round",
|
|
27
|
+
strokeWidth: "2"
|
|
28
|
+
}
|
|
29
|
+
) })
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
export {
|
|
35
|
+
d as default
|
|
36
|
+
};
|
|
@@ -38,3 +38,6 @@ export { default as Vector3Icon } from './vector_3';
|
|
|
38
38
|
export { default as TableCols2Icon } from './table-cols-2';
|
|
39
39
|
export { default as TriangleWarningIcon } from './triangle-warning';
|
|
40
40
|
export { default as ArrowLeftIcon } from './arrow-left';
|
|
41
|
+
export { default as FilterIcon } from './filter-icon';
|
|
42
|
+
export { default as DescendingSortingIcon } from './descending';
|
|
43
|
+
export { default as ChainIcon } from './chain';
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { Alert as p, AlertDescription as n, AlertTitle as f } from "./components
|
|
|
3
3
|
import { AlertCirclesIcon as m } from "./components/alert/icons/circles-icon.js";
|
|
4
4
|
import { Button as x, buttonVariants as u } from "./components/button/button.js";
|
|
5
5
|
import { Z2SideNavBarProvider as c } from "./components/collapsible-side-nav-bar/side-nav-bar-provider.js";
|
|
6
|
-
import { Z2SideNavBar as
|
|
6
|
+
import { Z2SideNavBar as Z, Z2SidebarVariants as I } from "./components/collapsible-side-nav-bar/side-nav-bar.js";
|
|
7
7
|
import { Z2SideNavBarHeader as C } from "./components/collapsible-side-nav-bar/side-nav-bar-header.js";
|
|
8
8
|
import { Z2SideNavBarContent as D } from "./components/collapsible-side-nav-bar/side-nav-bar-content.js";
|
|
9
9
|
import { Z2SideNavBarFooter as T } from "./components/collapsible-side-nav-bar/side-nav-bar-footer.js";
|
|
@@ -13,8 +13,8 @@ import { Z2SideNavBarSeparator as h } from "./components/collapsible-side-nav-ba
|
|
|
13
13
|
import { useZ2SideNavBar as P } from "./components/collapsible-side-nav-bar/context.js";
|
|
14
14
|
import { Z2Popover as k } from "./components/collapsible-side-nav-bar/popover/popover.js";
|
|
15
15
|
import "react/jsx-runtime";
|
|
16
|
-
import { default as R, default as
|
|
17
|
-
import { default as
|
|
16
|
+
import { default as R, default as F } from "./components/assets/icons/sub-nav-indicator.js";
|
|
17
|
+
import { default as y } from "./components/assets/icons/circles-icon.js";
|
|
18
18
|
import { default as W, default as _ } from "./components/assets/icons/database-copy.js";
|
|
19
19
|
import { default as U, default as O } from "./components/assets/icons/window-left-copy.js";
|
|
20
20
|
import { default as J, default as Q } from "./components/assets/icons/sidebar-left-show-copy.js";
|
|
@@ -22,8 +22,8 @@ import { SIDEBAR_WIDTH as j, SIDEBAR_WIDTH_COLLAPSED as q } from "./components/c
|
|
|
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 fo, Z2DialogOverlay as lo, Z2DialogPortal as mo, Z2DialogTitle as xo, Z2DialogTrigger as uo } from "./components/dialog/dialog.js";
|
|
25
|
-
import { DropdownContext as co, Z2Dropdown as
|
|
26
|
-
import { Z2DropdownMenu as wo, Z2DropdownMenuCheckboxItem as vo, Z2DropdownMenuContent as Bo, Z2DropdownMenuGroup as Lo, Z2DropdownMenuItem as Mo, Z2DropdownMenuLabel as ho, Z2DropdownMenuPortal as Ao, Z2DropdownMenuRadioGroup as Po, Z2DropdownMenuRadioItem as No, Z2DropdownMenuSeparator as ko, Z2DropdownMenuShortcut as Eo, Z2DropdownMenuSub as Ro, Z2DropdownMenuSubContent as
|
|
25
|
+
import { DropdownContext as co, Z2Dropdown as so, Z2DropdownContent as Zo, Z2DropdownInput as Io, Z2DropdownItem as So, Z2DropdownSub as Co, Z2DropdownSubContent as bo, Z2DropdownSubItem as Do, Z2DropdownSubTrigger as go } from "./components/dropdown/z2-dropdown.js";
|
|
26
|
+
import { Z2DropdownMenu as wo, Z2DropdownMenuCheckboxItem as vo, Z2DropdownMenuContent as Bo, Z2DropdownMenuGroup as Lo, Z2DropdownMenuItem as Mo, Z2DropdownMenuLabel as ho, Z2DropdownMenuPortal as Ao, Z2DropdownMenuRadioGroup as Po, Z2DropdownMenuRadioItem as No, Z2DropdownMenuSeparator as ko, Z2DropdownMenuShortcut as Eo, Z2DropdownMenuSub as Ro, Z2DropdownMenuSubContent as Fo, Z2DropdownMenuSubTrigger as Ho, Z2DropdownMenuTrigger as yo } from "./components/dropdown-menu/z2-dropdown-menu.js";
|
|
27
27
|
import { FileUploadArea as Wo } 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 Oo } from "./components/input/input.js";
|
|
@@ -33,7 +33,7 @@ import { Z2Select as qo, Z2SelectContent as zo, Z2SelectGroup as Ko, Z2SelectIte
|
|
|
33
33
|
import { Z2Stepper as fe } 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 ue, Z2TabsList as ie, Z2TabsTrigger as ce } from "./components/tab/tab.js";
|
|
36
|
-
import { Table as
|
|
36
|
+
import { Table as Ze, TableProvider as Ie } from "./components/table/table-provider.js";
|
|
37
37
|
import { TableBody as Ce } from "./components/table/table.js";
|
|
38
38
|
import { extractCellValue as De } from "./components/table/table.utils.js";
|
|
39
39
|
import { DEFAULT_EMPTY_MESSAGE as Te, TABLE_CSS_CLASSES as we } from "./components/table/table.const.js";
|
|
@@ -42,7 +42,7 @@ import { TableCell as he } from "./components/table/components/table-cell.js";
|
|
|
42
42
|
import { NumberCell as Pe } from "./components/table/components/cell/number-cell.js";
|
|
43
43
|
import { BooleanCell as ke } from "./components/table/components/cell/boolean-cell.js";
|
|
44
44
|
import { LinkCell as Re } from "./components/table/components/cell/link-cell.js";
|
|
45
|
-
import { DescriptionCell as
|
|
45
|
+
import { DescriptionCell as He } from "./components/table/components/cell/description-cell.js";
|
|
46
46
|
import { AvatarCell as Ge } from "./components/table/components/cell/avatar-cell.js";
|
|
47
47
|
import { LabelCell as _e } from "./components/table/components/cell/label-cell.js";
|
|
48
48
|
import { TableHeader as Ue } from "./components/table/components/table-header/table-header.js";
|
|
@@ -59,14 +59,14 @@ import { MagnifierIcon as mr } from "./components/assets/icons/magnifier-icon.js
|
|
|
59
59
|
import { PaginationInfo as xr } from "./components/table/components/pagination/components/pagination-info.js";
|
|
60
60
|
import { PaginationQuickJumper as ir } from "./components/table/components/pagination/components/pagination-quick-jumper.js";
|
|
61
61
|
import "react";
|
|
62
|
-
import { Z2Tooltip as
|
|
62
|
+
import { Z2Tooltip as sr } from "./components/tooltip/tooltip.js";
|
|
63
63
|
import { default as Ir } from "./components/table-card/table-card.js";
|
|
64
64
|
import { Badge as Cr, badgeVariants as br } from "./components/badge/badge.js";
|
|
65
65
|
import { Avatar as gr, AvatarWithLabel as Tr } from "./components/avatar/avatar.js";
|
|
66
66
|
import { Z2TextPreset as vr } from "./components/text-preset/text-preset.js";
|
|
67
67
|
import { ColumnReOrder as Lr } from "./components/column-reorder/column-reorder.js";
|
|
68
68
|
import { default as hr } from "./components/tree-checkbox-select/TreeCheckboxSelect.js";
|
|
69
|
-
import { Z2Breadcrumb as Pr, Z2BreadcrumbEllipsis as Nr, Z2BreadcrumbItem as kr, Z2BreadcrumbLink as Er, Z2BreadcrumbList as Rr, Z2BreadcrumbPage as
|
|
69
|
+
import { Z2Breadcrumb as Pr, Z2BreadcrumbEllipsis as Nr, Z2BreadcrumbItem as kr, Z2BreadcrumbLink as Er, Z2BreadcrumbList as Rr, Z2BreadcrumbPage as Fr, Z2BreadcrumbSeparator as Hr } from "./components/breadcrumb/z2-breadcrumb.js";
|
|
70
70
|
import { Z2RadioGroup as Gr, Z2RadioGroupIndicator as Wr, Z2RadioGroupItem as _r } from "./components/radio/z2-radio.js";
|
|
71
71
|
import { default as Ur } from "./components/assets/icons/apartment-building.js";
|
|
72
72
|
import { Check as Xr } from "./components/assets/icons/check.js";
|
|
@@ -81,7 +81,7 @@ import { default as ft } from "./components/assets/icons/drag-handle.js";
|
|
|
81
81
|
import { default as mt } from "./components/assets/icons/home.js";
|
|
82
82
|
import { InfoIcon as xt } from "./components/assets/icons/info-icon.js";
|
|
83
83
|
import { default as it } from "./components/assets/icons/left-arrow.js";
|
|
84
|
-
import { default as
|
|
84
|
+
import { default as st } from "./components/assets/icons/link.js";
|
|
85
85
|
import { default as It } from "./components/assets/icons/list-tree.js";
|
|
86
86
|
import { default as Ct } from "./components/assets/icons/media-record.js";
|
|
87
87
|
import { Minus as Dt } from "./components/assets/icons/minus.js";
|
|
@@ -92,7 +92,7 @@ import { default as ht } from "./components/assets/icons/slider.js";
|
|
|
92
92
|
import { default as Pt } from "./components/assets/icons/upload.js";
|
|
93
93
|
import { default as kt } from "./components/assets/icons/vector.js";
|
|
94
94
|
import { XMark as Rt } from "./components/assets/icons/x-mark.js";
|
|
95
|
-
import { default as
|
|
95
|
+
import { default as Ht } from "./components/assets/icons/x.js";
|
|
96
96
|
import { default as Gt } from "./components/assets/icons/z2-icon.js";
|
|
97
97
|
import { default as _t } from "./components/assets/icons/z2-slash.js";
|
|
98
98
|
import { default as Ut } from "./components/assets/icons/z2data.js";
|
|
@@ -100,12 +100,15 @@ import { default as Xt } from "./components/assets/icons/vector_3.js";
|
|
|
100
100
|
import { default as Qt } from "./components/assets/icons/table-cols-2.js";
|
|
101
101
|
import { default as jt } from "./components/assets/icons/triangle-warning.js";
|
|
102
102
|
import { default as zt } from "./components/assets/icons/arrow-left.js";
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
103
|
+
import { default as $t } from "./components/assets/icons/filter-icon.js";
|
|
104
|
+
import { default as ea } from "./components/assets/icons/descending.js";
|
|
105
|
+
import { default as ta } from "./components/assets/icons/chain.js";
|
|
106
|
+
import { SegmentedControl as pa } from "./components/segmented-control/controller.js";
|
|
107
|
+
import { SegmentedControlItem as fa } from "./components/segmented-control/item.js";
|
|
108
|
+
import { useTheme as ma } from "./lib/theme.hook.js";
|
|
109
|
+
import { cn as xa } from "./lib/utils.js";
|
|
110
|
+
import { Z2PopoverTrigger as ia } from "./components/collapsible-side-nav-bar/popover/popover-trigger.js";
|
|
111
|
+
import { Z2PopoverContent as sa } from "./components/collapsible-side-nav-bar/popover/popover-content.js";
|
|
109
112
|
export {
|
|
110
113
|
p as Alert,
|
|
111
114
|
m as AlertCirclesIcon,
|
|
@@ -119,33 +122,36 @@ export {
|
|
|
119
122
|
Cr as Badge,
|
|
120
123
|
ke as BooleanCell,
|
|
121
124
|
x as Button,
|
|
125
|
+
ta as ChainIcon,
|
|
122
126
|
Xr as CheckIcon,
|
|
123
127
|
Xe as ChevronDownIcon,
|
|
124
128
|
Qr as ChevronLeftIcon,
|
|
125
129
|
jr as ChevronRightIcon,
|
|
126
130
|
zr as CircleCheckFilledIcon,
|
|
127
131
|
$r as CircleCheckIcon,
|
|
128
|
-
|
|
132
|
+
y as CirclesIcon,
|
|
129
133
|
Lr as ColumnReOrder,
|
|
130
134
|
K as CountryFlags,
|
|
131
135
|
Vo as DEFAULT_ACCEPT,
|
|
132
136
|
Te as DEFAULT_EMPTY_MESSAGE,
|
|
133
137
|
W as DatabaseCopy,
|
|
134
138
|
_ as DatabaseCopyIcon,
|
|
135
|
-
|
|
139
|
+
ea as DescendingSortingIcon,
|
|
140
|
+
He as DescriptionCell,
|
|
136
141
|
et as DotsIcon,
|
|
137
142
|
tt as DoubleChevronLeftIcon,
|
|
138
143
|
pt as DoubleChevronRightIcon,
|
|
139
144
|
ft as DragHandleIcon,
|
|
140
145
|
co as DropdownContext,
|
|
141
146
|
Wo as FileUploadArea,
|
|
147
|
+
$t as FilterIcon,
|
|
142
148
|
mt as HomeIcon,
|
|
143
149
|
xt as InfoIcon,
|
|
144
150
|
Oo as Input,
|
|
145
151
|
_e as LabelCell,
|
|
146
152
|
it as LeftArrowIcon,
|
|
147
153
|
Re as LinkCell,
|
|
148
|
-
|
|
154
|
+
st as LinkIcon,
|
|
149
155
|
It as ListTreeIcon,
|
|
150
156
|
mr as MagnifierIcon,
|
|
151
157
|
Ct as MediaRecordIcon,
|
|
@@ -159,16 +165,16 @@ export {
|
|
|
159
165
|
vt as PinIcon,
|
|
160
166
|
j as SIDEBAR_WIDTH,
|
|
161
167
|
q as SIDEBAR_WIDTH_COLLAPSED,
|
|
162
|
-
|
|
163
|
-
|
|
168
|
+
pa as SegmentedControl,
|
|
169
|
+
fa as SegmentedControlItem,
|
|
164
170
|
J as SidebarLeftShowCopy,
|
|
165
171
|
Q as SidebarLeftShowCopyIcon,
|
|
166
172
|
Lt as SitemapIcon,
|
|
167
173
|
ht as SliderIcon,
|
|
168
174
|
R as SubNavIndicator,
|
|
169
|
-
|
|
175
|
+
F as SubNavIndicatorIcon,
|
|
170
176
|
we as TABLE_CSS_CLASSES,
|
|
171
|
-
|
|
177
|
+
Ze as Table,
|
|
172
178
|
Ce as TableBody,
|
|
173
179
|
Ir as TableCard,
|
|
174
180
|
he as TableCell,
|
|
@@ -191,15 +197,15 @@ export {
|
|
|
191
197
|
kt as VectorIcon,
|
|
192
198
|
U as WindowLeftCopy,
|
|
193
199
|
O as WindowLeftCopyIcon,
|
|
194
|
-
|
|
200
|
+
Ht as XIcon,
|
|
195
201
|
Rt as XMarkIcon,
|
|
196
202
|
Pr as Z2Breadcrumb,
|
|
197
203
|
Nr as Z2BreadcrumbEllipsis,
|
|
198
204
|
kr as Z2BreadcrumbItem,
|
|
199
205
|
Er as Z2BreadcrumbLink,
|
|
200
206
|
Rr as Z2BreadcrumbList,
|
|
201
|
-
|
|
202
|
-
|
|
207
|
+
Fr as Z2BreadcrumbPage,
|
|
208
|
+
Hr as Z2BreadcrumbSeparator,
|
|
203
209
|
oo as Z2Checkbox,
|
|
204
210
|
Ut as Z2DataIcon,
|
|
205
211
|
ro as Z2Dialog,
|
|
@@ -212,8 +218,8 @@ export {
|
|
|
212
218
|
mo as Z2DialogPortal,
|
|
213
219
|
xo as Z2DialogTitle,
|
|
214
220
|
uo as Z2DialogTrigger,
|
|
215
|
-
|
|
216
|
-
|
|
221
|
+
so as Z2Dropdown,
|
|
222
|
+
Zo as Z2DropdownContent,
|
|
217
223
|
Io as Z2DropdownInput,
|
|
218
224
|
So as Z2DropdownItem,
|
|
219
225
|
wo as Z2DropdownMenu,
|
|
@@ -228,17 +234,17 @@ export {
|
|
|
228
234
|
ko as Z2DropdownMenuSeparator,
|
|
229
235
|
Eo as Z2DropdownMenuShortcut,
|
|
230
236
|
Ro as Z2DropdownMenuSub,
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
237
|
+
Fo as Z2DropdownMenuSubContent,
|
|
238
|
+
Ho as Z2DropdownMenuSubTrigger,
|
|
239
|
+
yo as Z2DropdownMenuTrigger,
|
|
234
240
|
Co as Z2DropdownSub,
|
|
235
241
|
bo as Z2DropdownSubContent,
|
|
236
242
|
Do as Z2DropdownSubItem,
|
|
237
243
|
go as Z2DropdownSubTrigger,
|
|
238
244
|
Gt as Z2Icon,
|
|
239
245
|
k as Z2Popover,
|
|
240
|
-
|
|
241
|
-
|
|
246
|
+
sa as Z2PopoverContent,
|
|
247
|
+
ia as Z2PopoverTrigger,
|
|
242
248
|
Gr as Z2RadioGroup,
|
|
243
249
|
Wr as Z2RadioGroupIndicator,
|
|
244
250
|
_r as Z2RadioGroupItem,
|
|
@@ -252,7 +258,7 @@ export {
|
|
|
252
258
|
te as Z2SelectSeparator,
|
|
253
259
|
ae as Z2SelectTrigger,
|
|
254
260
|
pe as Z2SelectValue,
|
|
255
|
-
|
|
261
|
+
Z as Z2SideNavBar,
|
|
256
262
|
D as Z2SideNavBarContent,
|
|
257
263
|
T as Z2SideNavBarFooter,
|
|
258
264
|
v as Z2SideNavBarGroup,
|
|
@@ -269,12 +275,12 @@ export {
|
|
|
269
275
|
ie as Z2TabsList,
|
|
270
276
|
ce as Z2TabsTrigger,
|
|
271
277
|
vr as Z2TextPreset,
|
|
272
|
-
|
|
278
|
+
sr as Z2Tooltip,
|
|
273
279
|
br as badgeVariants,
|
|
274
280
|
u as buttonVariants,
|
|
275
|
-
|
|
281
|
+
xa as cn,
|
|
276
282
|
De as extractCellValue,
|
|
277
283
|
Le as useTableContext,
|
|
278
|
-
|
|
284
|
+
ma as useTheme,
|
|
279
285
|
P as useZ2SideNavBar
|
|
280
286
|
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
3
|
+
secondaryfill?: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
};
|
|
6
|
+
declare function Link({ fill, secondaryfill, width, height, title, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default Link;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
type IconProps = SVGProps<SVGSVGElement> & {
|
|
3
|
+
secondaryfill?: string;
|
|
4
|
+
strokewidth?: number;
|
|
5
|
+
title?: string;
|
|
6
|
+
};
|
|
7
|
+
declare function DescendingSorting({ fill, secondaryfill, strokewidth, width, height, title, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default DescendingSorting;
|
|
@@ -38,3 +38,6 @@ export { default as Vector3Icon } from './vector_3';
|
|
|
38
38
|
export { default as TableCols2Icon } from './table-cols-2';
|
|
39
39
|
export { default as TriangleWarningIcon } from './triangle-warning';
|
|
40
40
|
export { default as ArrowLeftIcon } from './arrow-left';
|
|
41
|
+
export { default as FilterIcon } from './filter-icon';
|
|
42
|
+
export { default as DescendingSortingIcon } from './descending';
|
|
43
|
+
export { default as ChainIcon } from './chain';
|