@spear-ai/spectral 1.4.11 → 1.4.13
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/.js +119 -113
- package/dist/Accordion.d.ts +1 -0
- package/dist/Accordion.js +132 -129
- package/dist/Alert.js +5 -2
- package/dist/ButtonIcon.js +3 -0
- package/dist/Checkbox.js +3 -0
- package/dist/Combination-BtmnusWq.js +480 -0
- package/dist/Dialog/DialogBase.js +78 -77
- package/dist/Drawer.js +1 -1
- package/dist/Icons/EditIcon.d.ts +3 -0
- package/dist/Icons/EditIcon.js +31 -0
- package/dist/Icons/IconBase.d.ts +1 -2
- package/dist/Icons/IconBase.js +8 -8
- package/dist/Icons/SortAtoZIcon.d.ts +3 -0
- package/dist/Icons/SortAtoZIcon.js +16 -0
- package/dist/Icons/SortZtoAIcon.d.ts +3 -0
- package/dist/Icons/SortZtoAIcon.js +16 -0
- package/dist/Icons/index.d.ts +3 -0
- package/dist/Icons.js +102 -96
- package/dist/Input.js +18 -15
- package/dist/InputOTP.js +5 -2
- package/dist/MultiSelect/MultiSelectBase.js +3 -0
- package/dist/Popover.js +26 -25
- package/dist/Select.js +14 -11
- package/dist/Textarea.js +9 -6
- package/dist/Tray.js +4 -1
- package/dist/{index-CevVJ05e.js → index-7IR9qVCR.js} +31 -30
- package/dist/{index-CAKA12cC.js → index-Dc8KxzeM.js} +9 -8
- package/dist/index-MZS7zxk4.js +200 -0
- package/dist/primitives/select.js +20 -17
- package/dist/styles/main.css +1 -1
- package/package.json +2 -1
- package/dist/index-B-GQStVW.js +0 -674
|
@@ -1,99 +1,100 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import "../styles/main.css";
|
|
3
3
|
import { jsx as r, jsxs as I } from "react/jsx-runtime";
|
|
4
|
-
import { CloseIcon as
|
|
5
|
-
import { cn as
|
|
6
|
-
import { c as
|
|
7
|
-
import { createContext as
|
|
8
|
-
import { createPortal as
|
|
9
|
-
|
|
4
|
+
import { CloseIcon as $ } from "../Icons/CloseIcon.js";
|
|
5
|
+
import { cn as m } from "../utils/twUtils.js";
|
|
6
|
+
import { c as j } from "../index-D29mdTf5.js";
|
|
7
|
+
import { createContext as S, useContext as W, useState as N, useMemo as B, useCallback as k, cloneElement as z, useEffect as C, useRef as h, useLayoutEffect as M, isValidElement as O } from "react";
|
|
8
|
+
import { createPortal as A } from "react-dom";
|
|
9
|
+
import { R as F } from "../Combination-BtmnusWq.js";
|
|
10
|
+
const P = S(null);
|
|
10
11
|
function p() {
|
|
11
|
-
const t = W(
|
|
12
|
+
const t = W(P);
|
|
12
13
|
if (!t)
|
|
13
14
|
throw new Error("Dialog components must be used within <Dialog>");
|
|
14
15
|
return t;
|
|
15
16
|
}
|
|
16
|
-
function
|
|
17
|
-
return
|
|
17
|
+
function T(t) {
|
|
18
|
+
return O(t) && typeof t.type != "string" ? !0 : O(t);
|
|
18
19
|
}
|
|
19
20
|
let E = 0;
|
|
20
|
-
function
|
|
21
|
-
const [l, u] =
|
|
21
|
+
function Z({ isOpen: t, defaultOpen: o = !1, onOpenChange: e, children: n, modal: a = !1 }) {
|
|
22
|
+
const [l, u] = N(o), s = t !== void 0, f = s ? t : l, b = B(
|
|
22
23
|
() => ({
|
|
23
24
|
contentId: `dialog-content-${++E}`,
|
|
24
25
|
descriptionId: `dialog-description-${E}`,
|
|
25
26
|
titleId: `dialog-title-${E}`
|
|
26
27
|
}),
|
|
27
28
|
[]
|
|
28
|
-
),
|
|
29
|
+
), y = k(
|
|
29
30
|
(c) => {
|
|
30
31
|
s || u(c), e?.(c);
|
|
31
32
|
},
|
|
32
33
|
[s, e]
|
|
33
|
-
),
|
|
34
|
+
), D = B(
|
|
34
35
|
() => ({
|
|
35
36
|
modal: a,
|
|
36
37
|
isOpen: f,
|
|
37
|
-
setIsOpen:
|
|
38
|
-
...
|
|
38
|
+
setIsOpen: y,
|
|
39
|
+
...b
|
|
39
40
|
}),
|
|
40
|
-
[f,
|
|
41
|
+
[f, y, a, b]
|
|
41
42
|
);
|
|
42
|
-
return /* @__PURE__ */ r(
|
|
43
|
+
return /* @__PURE__ */ r(P.Provider, { value: D, children: n });
|
|
43
44
|
}
|
|
44
|
-
function
|
|
45
|
-
const { setIsOpen: n } = p(), a =
|
|
45
|
+
function _({ children: t, asChild: o = !0, dataTestId: e }) {
|
|
46
|
+
const { setIsOpen: n } = p(), a = k(() => {
|
|
46
47
|
n(!0);
|
|
47
48
|
}, [n]);
|
|
48
49
|
if (!o)
|
|
49
50
|
return /* @__PURE__ */ r("button", { "data-slot": "dialog-trigger", "data-testid": e, onClick: a, tabIndex: 0, children: t });
|
|
50
|
-
if (!
|
|
51
|
+
if (!T(t))
|
|
51
52
|
throw new Error("DialogTrigger expects a single React element as child");
|
|
52
53
|
const l = t.props.onClick;
|
|
53
|
-
return
|
|
54
|
+
return z(t, {
|
|
54
55
|
onClick: (...u) => {
|
|
55
56
|
l?.(...u), a();
|
|
56
57
|
}
|
|
57
58
|
});
|
|
58
59
|
}
|
|
59
|
-
function
|
|
60
|
-
const { setIsOpen: n } = p(), a =
|
|
60
|
+
function H({ children: t, asChild: o = !0, dataTestId: e }) {
|
|
61
|
+
const { setIsOpen: n } = p(), a = k(() => {
|
|
61
62
|
n(!1);
|
|
62
63
|
}, [n]);
|
|
63
64
|
if (!o)
|
|
64
65
|
return /* @__PURE__ */ r("button", { className: "cursor-pointer focus-visible:outline-none outline-transparent focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-1", "data-slot": "dialog-close", "data-testid": e, onClick: a, tabIndex: 0, children: t });
|
|
65
|
-
if (!
|
|
66
|
+
if (!T(t))
|
|
66
67
|
throw new Error("DialogClose expects a single React element as child");
|
|
67
68
|
const l = t.props.onClick;
|
|
68
|
-
return
|
|
69
|
+
return z(t, {
|
|
69
70
|
onClick: (...u) => {
|
|
70
71
|
l?.(...u), a();
|
|
71
72
|
}
|
|
72
73
|
});
|
|
73
74
|
}
|
|
74
|
-
function
|
|
75
|
-
const [e, n] =
|
|
76
|
-
return
|
|
75
|
+
function L({ children: t, container: o }) {
|
|
76
|
+
const [e, n] = N(!1);
|
|
77
|
+
return C(() => (n(!0), () => n(!1)), []), e ? A(t, o ?? document.body) : null;
|
|
77
78
|
}
|
|
78
|
-
function
|
|
79
|
-
const { isOpen: e, setIsOpen: n } = p(), a =
|
|
79
|
+
function tt({ className: t, dataTestId: o }) {
|
|
80
|
+
const { isOpen: e, setIsOpen: n } = p(), a = k(
|
|
80
81
|
(l) => {
|
|
81
82
|
l.target === l.currentTarget && n(!1);
|
|
82
83
|
},
|
|
83
84
|
[n]
|
|
84
85
|
);
|
|
85
|
-
return e ? /* @__PURE__ */ r(
|
|
86
|
+
return e ? /* @__PURE__ */ r(L, { children: /* @__PURE__ */ r(
|
|
86
87
|
"div",
|
|
87
88
|
{
|
|
88
89
|
"aria-hidden": "true",
|
|
89
|
-
className:
|
|
90
|
+
className: m("fixed inset-0 z-40 bg-black/50 backdrop-blur-sm data-[state=open]:animate-in data-[state=open]:fade-in-0", "data-[state=closed]:animate-out data-[state=closed]:fade-out-0", t),
|
|
90
91
|
"data-state": e ? "open" : "closed",
|
|
91
92
|
"data-testid": o,
|
|
92
93
|
onClick: a
|
|
93
94
|
}
|
|
94
95
|
) }) : null;
|
|
95
96
|
}
|
|
96
|
-
const
|
|
97
|
+
const U = j(
|
|
97
98
|
[
|
|
98
99
|
"fixed left-1/2 top-1/2 z-50 w-full -translate-x-1/2 -translate-y-1/2 rounded-lg shadow-lg outline-none data-[state=open]:animate-in data-[state=open]:fade-in-0",
|
|
99
100
|
"data-[state=open]:zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 max-h-[80vh] overflow-y-auto"
|
|
@@ -113,22 +114,22 @@ const F = $(
|
|
|
113
114
|
}
|
|
114
115
|
}
|
|
115
116
|
);
|
|
116
|
-
function
|
|
117
|
-
const { isOpen: s, setIsOpen: f, contentId:
|
|
118
|
-
return
|
|
117
|
+
function et({ children: t, className: o, dataTestId: e, onEscapeKeyDown: n, onInteractOutside: a, onPointerDownOutside: l, size: u }) {
|
|
118
|
+
const { isOpen: s, setIsOpen: f, contentId: b, titleId: y, descriptionId: D, modal: c } = p(), g = h(null), R = h(null), x = h(null), v = h(!1);
|
|
119
|
+
return C(() => {
|
|
119
120
|
if (!s) {
|
|
120
|
-
|
|
121
|
+
v.current && x.current && typeof x.current.focus == "function" && x.current.focus(), x.current = null, v.current = !1;
|
|
121
122
|
return;
|
|
122
123
|
}
|
|
123
|
-
if (!
|
|
124
|
-
|
|
125
|
-
const d =
|
|
124
|
+
if (!g.current || v.current) return;
|
|
125
|
+
v.current = !0;
|
|
126
|
+
const d = g.current;
|
|
126
127
|
x.current = document.activeElement, setTimeout(() => {
|
|
127
|
-
if (!d || !
|
|
128
|
+
if (!d || !g.current) return;
|
|
128
129
|
const i = document.activeElement;
|
|
129
130
|
(!d.contains(i) || i === document.body) && d.focus();
|
|
130
131
|
}, 0);
|
|
131
|
-
}, [s, f]),
|
|
132
|
+
}, [s, f]), C(() => {
|
|
132
133
|
if (!s) return;
|
|
133
134
|
const d = (i) => {
|
|
134
135
|
i.key === "Escape" && (n?.(i), a?.(i), i.defaultPrevented || (i.preventDefault(), f(!1)));
|
|
@@ -136,80 +137,80 @@ function Z({ children: t, className: o, dataTestId: e, onEscapeKeyDown: n, onInt
|
|
|
136
137
|
return document.addEventListener("keydown", d, { capture: !0 }), () => {
|
|
137
138
|
document.removeEventListener("keydown", d, { capture: !0 });
|
|
138
139
|
};
|
|
139
|
-
}, [s, n, a]),
|
|
140
|
+
}, [s, n, a]), C(() => {
|
|
140
141
|
if (!s) return;
|
|
141
142
|
const d = (i) => {
|
|
142
|
-
const
|
|
143
|
-
|
|
143
|
+
const w = i.target;
|
|
144
|
+
g.current && !g.current.contains(w) && (l?.(i), a?.(i), !c && !i.defaultPrevented && f(!1));
|
|
144
145
|
};
|
|
145
146
|
return document.addEventListener("pointerdown", d), () => document.removeEventListener("pointerdown", d);
|
|
146
147
|
}, [s, l, a, f, c]), M(() => {
|
|
147
148
|
if (!s || !c || typeof window > "u") return;
|
|
148
|
-
const d = document.body.style.overflow, i = document.body.style.paddingRight,
|
|
149
|
-
if (document.body.style.overflow = "hidden",
|
|
150
|
-
const
|
|
151
|
-
document.body.style.paddingRight = `calc(${
|
|
149
|
+
const d = document.body.style.overflow, i = document.body.style.paddingRight, w = window.innerWidth - document.documentElement.clientWidth;
|
|
150
|
+
if (document.body.style.overflow = "hidden", w > 0) {
|
|
151
|
+
const V = window.getComputedStyle(document.body).paddingRight;
|
|
152
|
+
document.body.style.paddingRight = `calc(${V} + ${w}px)`;
|
|
152
153
|
}
|
|
153
154
|
return () => {
|
|
154
155
|
document.body.style.overflow = d, document.body.style.paddingRight = i;
|
|
155
156
|
};
|
|
156
|
-
}, [s, c]), s ? /* @__PURE__ */ r(
|
|
157
|
+
}, [s, c]), s ? /* @__PURE__ */ r(L, { children: /* @__PURE__ */ I(
|
|
157
158
|
"div",
|
|
158
159
|
{
|
|
159
|
-
"aria-describedby":
|
|
160
|
-
"aria-labelledby":
|
|
160
|
+
"aria-describedby": D,
|
|
161
|
+
"aria-labelledby": y,
|
|
161
162
|
"aria-modal": c ? "true" : void 0,
|
|
162
|
-
className:
|
|
163
|
+
className: m(U({ size: u }), o),
|
|
163
164
|
"data-slot": "dialog-content",
|
|
164
165
|
"data-state": s ? "open" : "closed",
|
|
165
166
|
"data-testid": e,
|
|
166
|
-
id:
|
|
167
|
-
ref:
|
|
167
|
+
id: b,
|
|
168
|
+
ref: g,
|
|
168
169
|
role: "dialog",
|
|
169
170
|
tabIndex: -1,
|
|
170
171
|
children: [
|
|
171
|
-
/* @__PURE__ */ r(
|
|
172
|
+
/* @__PURE__ */ r(H, { asChild: !0, children: /* @__PURE__ */ I(
|
|
172
173
|
"button",
|
|
173
174
|
{
|
|
174
175
|
"aria-label": "Close dialog",
|
|
175
|
-
className:
|
|
176
|
+
className: m("absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100", "focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none cursor-pointer"),
|
|
176
177
|
"data-slot": "dialog-close",
|
|
177
178
|
"data-testid": "spectral-dialog-close-icon",
|
|
178
179
|
children: [
|
|
179
|
-
/* @__PURE__ */ r(
|
|
180
|
+
/* @__PURE__ */ r($, { size: 16 }),
|
|
180
181
|
/* @__PURE__ */ r("span", { className: "sr-only", children: "Close" })
|
|
181
182
|
]
|
|
182
183
|
}
|
|
183
184
|
) }),
|
|
184
|
-
t
|
|
185
|
+
/* @__PURE__ */ r(F, { shards: [R], children: /* @__PURE__ */ r("div", { ref: R, children: t }) })
|
|
185
186
|
]
|
|
186
187
|
}
|
|
187
188
|
) }) : null;
|
|
188
189
|
}
|
|
189
|
-
function
|
|
190
|
+
function nt({ children: t, className: o, dataTestId: e }) {
|
|
190
191
|
const { titleId: n } = p();
|
|
191
|
-
return /* @__PURE__ */ r("h2", { className:
|
|
192
|
+
return /* @__PURE__ */ r("h2", { className: m("text-base font-semibold leading-none tracking-tight", o), "data-slot": "dialog-title", "data-testid": e, id: n, children: t });
|
|
192
193
|
}
|
|
193
|
-
function
|
|
194
|
+
function ot({ children: t, className: o, dataTestId: e }) {
|
|
194
195
|
const { descriptionId: n } = p();
|
|
195
|
-
return /* @__PURE__ */ r("p", { className:
|
|
196
|
+
return /* @__PURE__ */ r("p", { className: m("text-sm text-text-secondary", o), "data-slot": "dialog-description", "data-testid": e, id: n, children: t });
|
|
196
197
|
}
|
|
197
|
-
function
|
|
198
|
-
return /* @__PURE__ */ r("div", { className:
|
|
198
|
+
function at({ children: t, className: o, dataTestId: e }) {
|
|
199
|
+
return /* @__PURE__ */ r("div", { className: m("flex flex-col space-y-1.5 text-center text-left", o), "data-slot": "dialog-header", "data-testid": e, children: t });
|
|
199
200
|
}
|
|
200
|
-
function
|
|
201
|
-
return /* @__PURE__ */ r("div", { className:
|
|
201
|
+
function it({ children: t, className: o, dataTestId: e }) {
|
|
202
|
+
return /* @__PURE__ */ r("div", { className: m("flex flex-col-reverse flex-row justify-end space-x-2", o), "data-slot": "dialog-footer", "data-testid": e, children: t });
|
|
202
203
|
}
|
|
203
204
|
export {
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
205
|
+
Z as DialogBase,
|
|
206
|
+
H as DialogCloseBase,
|
|
207
|
+
et as DialogContentBase,
|
|
208
|
+
ot as DialogDescriptionBase,
|
|
209
|
+
it as DialogFooterBase,
|
|
210
|
+
at as DialogHeaderBase,
|
|
211
|
+
tt as DialogOverlayBase,
|
|
212
|
+
L as DialogPortalBase,
|
|
213
|
+
nt as DialogTitleBase,
|
|
214
|
+
_ as DialogTriggerBase,
|
|
214
215
|
p as useDialogContext
|
|
215
216
|
};
|
package/dist/Drawer.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "./styles/main.css";
|
|
2
2
|
import { jsx as t, jsxs as s } from "react/jsx-runtime";
|
|
3
3
|
import { SpectralProvider as f } from "./SpectralProvider.js";
|
|
4
|
-
import { D as e } from "./index-
|
|
4
|
+
import { D as e } from "./index-Dc8KxzeM.js";
|
|
5
5
|
const u = ({ children: d, defaultOpen: o = !1, description: i, direction: l = "right", dismissible: c = !0, modal: p = !0, onOpenChange: n, open: m, size: r = "380px", title: x, trigger: h }) => {
|
|
6
6
|
const a = "!font-sans fixed", w = {
|
|
7
7
|
left: {
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "../styles/main.css";
|
|
3
|
+
import { jsxs as d, jsx as o } from "react/jsx-runtime";
|
|
4
|
+
import c from "./IconBase.js";
|
|
5
|
+
import { forwardRef as p } from "react";
|
|
6
|
+
const a = ({ className: r, ariaHidden: t, title: e, description: n, size: C = 24, ...i }, s) => /* @__PURE__ */ d(c, { size: C, className: r, title: e, description: n, ariaHidden: t, ref: s, ...i, children: [
|
|
7
|
+
/* @__PURE__ */ o(
|
|
8
|
+
"path",
|
|
9
|
+
{
|
|
10
|
+
d: "M12 3H5C4.46957 3 3.96086 3.21071 3.58579 3.58579C3.21071 3.96086 3 4.46957 3 5V19C3 19.5304 3.21071 20.0391 3.58579 20.4142C3.96086 20.7893 4.46957 21 5 21H19C19.5304 21 20.0391 20.7893 20.4142 20.4142C20.7893 20.0391 21 19.5304 21 19V12",
|
|
11
|
+
stroke: "currentColor",
|
|
12
|
+
strokeWidth: "2",
|
|
13
|
+
strokeLinecap: "round",
|
|
14
|
+
strokeLinejoin: "round"
|
|
15
|
+
}
|
|
16
|
+
),
|
|
17
|
+
/* @__PURE__ */ o(
|
|
18
|
+
"path",
|
|
19
|
+
{
|
|
20
|
+
d: "M18.375 2.62498C18.7728 2.22716 19.3124 2.00366 19.875 2.00366C20.4376 2.00366 20.9771 2.22716 21.375 2.62498C21.7728 3.02281 21.9963 3.56237 21.9963 4.12498C21.9963 4.68759 21.7728 5.22716 21.375 5.62498L12.362 14.639C12.1245 14.8762 11.8312 15.0499 11.509 15.144L8.63597 15.984C8.54992 16.0091 8.45871 16.0106 8.37188 15.9883C8.28505 15.9661 8.2058 15.9209 8.14242 15.8575C8.07904 15.7942 8.03386 15.7149 8.01162 15.6281C7.98937 15.5412 7.99087 15.45 8.01597 15.364L8.85597 12.491C8.9505 12.169 9.12451 11.876 9.36197 11.639L18.375 2.62498Z",
|
|
21
|
+
stroke: "currentColor",
|
|
22
|
+
strokeWidth: "2",
|
|
23
|
+
strokeLinecap: "round",
|
|
24
|
+
strokeLinejoin: "round"
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
] }), k = p(a);
|
|
28
|
+
k.displayName = "EditIcon";
|
|
29
|
+
export {
|
|
30
|
+
k as EditIcon
|
|
31
|
+
};
|
package/dist/Icons/IconBase.d.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { IconProps } from './iconTypes';
|
|
2
|
-
import { ComponentPropsWithoutRef,
|
|
2
|
+
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
3
3
|
export declare const SvgIdContext: import('react').Context<string>;
|
|
4
4
|
interface IconBaseProps extends Omit<IconProps, 'strokeWidth'>, ComponentPropsWithoutRef<'svg'> {
|
|
5
5
|
children: ReactNode;
|
|
6
6
|
className?: string;
|
|
7
7
|
size?: number;
|
|
8
8
|
title?: string;
|
|
9
|
-
style?: CSSProperties;
|
|
10
9
|
color?: string;
|
|
11
10
|
}
|
|
12
11
|
declare const IconBase: import('react').ForwardRefExoticComponent<IconBaseProps & import('react').RefAttributes<SVGSVGElement>>;
|
package/dist/Icons/IconBase.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import "../styles/main.css";
|
|
3
|
-
import { jsxs as
|
|
4
|
-
import { createContext as
|
|
5
|
-
const
|
|
6
|
-
const s =
|
|
7
|
-
return /* @__PURE__ */
|
|
3
|
+
import { jsxs as u, jsx as t } from "react/jsx-runtime";
|
|
4
|
+
import { createContext as w, forwardRef as x, useId as B } from "react";
|
|
5
|
+
const g = w(""), A = x(function({ children: c, title: o, size: n = 24, ariaHidden: r = !0, description: d, className: a, ...f }, h) {
|
|
6
|
+
const s = B(), e = o !== void 0 ? !1 : r, i = !e && o ? `${s}_title` : "", l = !e && d ? `${s}_desc` : "", v = [i, l].filter(Boolean).join(" ") || void 0;
|
|
7
|
+
return /* @__PURE__ */ u("svg", { height: n, width: n, xmlns: "http://www.w3.org/2000/svg", className: a, role: "img", "aria-hidden": e, "aria-labelledby": v, ref: h, fill: "none", viewBox: "0 0 24 24", ...f, children: [
|
|
8
8
|
!e && o && /* @__PURE__ */ t("title", { id: i, children: o }),
|
|
9
9
|
!e && d && /* @__PURE__ */ t("desc", { id: l, children: d }),
|
|
10
|
-
/* @__PURE__ */ t(
|
|
10
|
+
/* @__PURE__ */ t(g.Provider, { value: s, children: c })
|
|
11
11
|
] });
|
|
12
12
|
});
|
|
13
13
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
g as SvgIdContext,
|
|
15
|
+
A as default
|
|
16
16
|
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "../styles/main.css";
|
|
3
|
+
import { jsxs as k, jsx as o } from "react/jsx-runtime";
|
|
4
|
+
import c from "./IconBase.js";
|
|
5
|
+
import { forwardRef as u } from "react";
|
|
6
|
+
const p = ({ className: r, ariaHidden: t, title: e, description: n, size: s = 24, ...i }, d) => /* @__PURE__ */ k(c, { size: s, className: r, title: e, description: n, ariaHidden: t, ref: d, ...i, children: [
|
|
7
|
+
/* @__PURE__ */ o("path", { d: "M3 16L7 20L11 16", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
8
|
+
/* @__PURE__ */ o("path", { d: "M7 20V4", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
9
|
+
/* @__PURE__ */ o("path", { d: "M20 8H15", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
10
|
+
/* @__PURE__ */ o("path", { d: "M15 10V6.5C15 5.83696 15.2634 5.20107 15.7322 4.73223C16.2011 4.26339 16.837 4 17.5 4C18.163 4 18.7989 4.26339 19.2678 4.73223C19.7366 5.20107 20 5.83696 20 6.5V10", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
11
|
+
/* @__PURE__ */ o("path", { d: "M15 14H20L15 20H20", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
12
|
+
] }), a = u(p);
|
|
13
|
+
a.displayName = "SortAtoZIcon";
|
|
14
|
+
export {
|
|
15
|
+
a as SortAtoZIcon
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "../styles/main.css";
|
|
3
|
+
import { jsxs as k, jsx as o } from "react/jsx-runtime";
|
|
4
|
+
import c from "./IconBase.js";
|
|
5
|
+
import { forwardRef as u } from "react";
|
|
6
|
+
const p = ({ className: r, ariaHidden: t, title: e, description: n, size: s = 24, ...i }, d) => /* @__PURE__ */ k(c, { size: s, className: r, title: e, description: n, ariaHidden: t, ref: d, ...i, children: [
|
|
7
|
+
/* @__PURE__ */ o("path", { d: "M3 8L7 4L11 8", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
8
|
+
/* @__PURE__ */ o("path", { d: "M7 4V20", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
9
|
+
/* @__PURE__ */ o("path", { d: "M20 8H15", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
10
|
+
/* @__PURE__ */ o("path", { d: "M15 10V6.5C15 5.83696 15.2634 5.20107 15.7322 4.73223C16.2011 4.26339 16.837 4 17.5 4C18.163 4 18.7989 4.26339 19.2678 4.73223C19.7366 5.20107 20 5.83696 20 6.5V10", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
11
|
+
/* @__PURE__ */ o("path", { d: "M15 14H20L15 20H20", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
12
|
+
] }), a = u(p);
|
|
13
|
+
a.displayName = "SortZtoAIcon";
|
|
14
|
+
export {
|
|
15
|
+
a as SortZtoAIcon
|
|
16
|
+
};
|
package/dist/Icons/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { DashboardIcon } from './DashboardIcon';
|
|
|
16
16
|
export { DatabaseIcon } from './DatabaseIcon';
|
|
17
17
|
export { DeleteIcon } from './DeleteIcon';
|
|
18
18
|
export { DurationIcon } from './DurationIcon';
|
|
19
|
+
export { EditIcon } from './EditIcon';
|
|
19
20
|
export { EmailIcon } from './EmailIcon';
|
|
20
21
|
export { EraserIcon } from './EraserIcon';
|
|
21
22
|
export { ErrorIcon } from './ErrorIcon';
|
|
@@ -47,7 +48,9 @@ export { ReviewedIcon } from './ReviewedIcon';
|
|
|
47
48
|
export { ScissorsIcon } from './ScissorsIcon';
|
|
48
49
|
export { SettingsIcon } from './SettingsIcon';
|
|
49
50
|
export { SortAscendingIcon } from './SortAscendingIcon';
|
|
51
|
+
export { SortAtoZIcon } from './SortAtoZIcon';
|
|
50
52
|
export { SortDescendingIcon } from './SortDescendingIcon';
|
|
53
|
+
export { SortZtoAIcon } from './SortZtoAIcon';
|
|
51
54
|
export { StackIcon } from './StackIcon';
|
|
52
55
|
export { StarIcon } from './StarIcon';
|
|
53
56
|
export { TrashIcon } from './TrashIcon';
|