@ztwoint/z-ui 0.1.95 → 0.1.96
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/arrow-left.d.ts +8 -0
- package/dist/components/assets/icons/arrow-left.js +53 -0
- package/dist/components/assets/icons/index.d.ts +1 -0
- package/dist/index.js +10 -8
- package/dist/types/components/assets/icons/arrow-left.d.ts +8 -0
- package/dist/types/components/assets/icons/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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 ArrowLeft({ fill, secondaryfill, width, height, title, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default ArrowLeft;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { jsxs as n, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
function u({
|
|
3
|
+
fill: e = "currentColor",
|
|
4
|
+
secondaryfill: o,
|
|
5
|
+
width: t = "1em",
|
|
6
|
+
height: i = "1em",
|
|
7
|
+
title: s = "badge 13",
|
|
8
|
+
...d
|
|
9
|
+
}) {
|
|
10
|
+
return o = o || e, /* @__PURE__ */ n(
|
|
11
|
+
"svg",
|
|
12
|
+
{
|
|
13
|
+
height: i,
|
|
14
|
+
width: t,
|
|
15
|
+
viewBox: "0 0 20 20",
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
...d,
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ r("title", { children: s }),
|
|
20
|
+
/* @__PURE__ */ n("g", { fill: e, children: [
|
|
21
|
+
/* @__PURE__ */ r(
|
|
22
|
+
"line",
|
|
23
|
+
{
|
|
24
|
+
fill: "none",
|
|
25
|
+
stroke: o,
|
|
26
|
+
strokeLinecap: "round",
|
|
27
|
+
strokeLinejoin: "round",
|
|
28
|
+
strokeWidth: "2",
|
|
29
|
+
x1: "17",
|
|
30
|
+
x2: "3",
|
|
31
|
+
y1: "10",
|
|
32
|
+
y2: "10"
|
|
33
|
+
}
|
|
34
|
+
),
|
|
35
|
+
/* @__PURE__ */ r(
|
|
36
|
+
"polyline",
|
|
37
|
+
{
|
|
38
|
+
fill: "none",
|
|
39
|
+
points: "8 5 3 10 8 15",
|
|
40
|
+
stroke: e,
|
|
41
|
+
strokeLinecap: "round",
|
|
42
|
+
strokeLinejoin: "round",
|
|
43
|
+
strokeWidth: "2"
|
|
44
|
+
}
|
|
45
|
+
)
|
|
46
|
+
] })
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
export {
|
|
52
|
+
u as default
|
|
53
|
+
};
|
|
@@ -37,3 +37,4 @@ export { default as Z2DataIcon } from './z2data';
|
|
|
37
37
|
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
|
+
export { default as ArrowLeftIcon } from './arrow-left';
|
package/dist/index.js
CHANGED
|
@@ -99,16 +99,18 @@ import { default as Ut } from "./components/assets/icons/z2data.js";
|
|
|
99
99
|
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
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
102
|
+
import { default as zt } from "./components/assets/icons/arrow-left.js";
|
|
103
|
+
import { useTheme as $t } from "./lib/theme.hook.js";
|
|
104
|
+
import { cn as ea } from "./lib/utils.js";
|
|
105
|
+
import { Z2PopoverTrigger as ta } from "./components/collapsible-side-nav-bar/popover/popover-trigger.js";
|
|
106
|
+
import { Z2PopoverContent as pa } from "./components/collapsible-side-nav-bar/popover/popover-content.js";
|
|
106
107
|
export {
|
|
107
108
|
p as Alert,
|
|
108
109
|
m as AlertCirclesIcon,
|
|
109
110
|
n as AlertDescription,
|
|
110
111
|
f as AlertTitle,
|
|
111
112
|
Ur as ApartmentBuildingIcon,
|
|
113
|
+
zt as ArrowLeftIcon,
|
|
112
114
|
gr as Avatar,
|
|
113
115
|
Ge as AvatarCell,
|
|
114
116
|
Tr as AvatarWithLabel,
|
|
@@ -231,8 +233,8 @@ export {
|
|
|
231
233
|
go as Z2DropdownSubTrigger,
|
|
232
234
|
Gt as Z2Icon,
|
|
233
235
|
k as Z2Popover,
|
|
234
|
-
|
|
235
|
-
|
|
236
|
+
pa as Z2PopoverContent,
|
|
237
|
+
ta as Z2PopoverTrigger,
|
|
236
238
|
Gr as Z2RadioGroup,
|
|
237
239
|
Wr as Z2RadioGroupIndicator,
|
|
238
240
|
_r as Z2RadioGroupItem,
|
|
@@ -266,9 +268,9 @@ export {
|
|
|
266
268
|
Zr as Z2Tooltip,
|
|
267
269
|
Cr as badgeVariants,
|
|
268
270
|
u as buttonVariants,
|
|
269
|
-
|
|
271
|
+
ea as cn,
|
|
270
272
|
De as extractCellValue,
|
|
271
273
|
Le as useTableContext,
|
|
272
|
-
|
|
274
|
+
$t as useTheme,
|
|
273
275
|
P as useZ2SideNavBar
|
|
274
276
|
};
|
|
@@ -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 ArrowLeft({ fill, secondaryfill, width, height, title, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default ArrowLeft;
|
|
@@ -37,3 +37,4 @@ export { default as Z2DataIcon } from './z2data';
|
|
|
37
37
|
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
|
+
export { default as ArrowLeftIcon } from './arrow-left';
|