@spear-ai/spectral 1.3.21 → 1.3.23
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 +93 -78
- package/dist/App.js +9 -1
- package/dist/Badge.js +9 -1
- package/dist/Button.js +10 -2
- package/dist/Card.js +13 -5
- package/dist/Drawer.js +24 -9
- package/dist/Icons/AnnotationsIcon.js +3 -3
- package/dist/Icons/CalendarIcon.js +8 -8
- package/dist/Icons/DeleteIcon.js +10 -10
- package/dist/Icons/DurationIcon.js +9 -9
- package/dist/Icons/EraserIcon.js +7 -7
- package/dist/Icons/GoToFirstIcon.js +10 -10
- package/dist/Icons/GoToLastIcon.js +8 -8
- package/dist/Icons/IconBase.js +8 -7
- package/dist/Icons/InfoIcon.js +32 -0
- package/dist/Icons/LabelIcon.js +6 -6
- package/dist/Icons/LassoIcon.js +3 -3
- package/dist/Icons/LineToolIcon.js +14 -14
- package/dist/Icons/LiveViewIcon.js +30 -30
- package/dist/Icons/LocationIcon.js +6 -6
- package/dist/Icons/MetadataIcon.js +8 -8
- package/dist/Icons/OntologyIcon.js +5 -5
- package/dist/Icons/PlayIcon.js +11 -11
- package/dist/Icons/PlusIcon.js +9 -9
- package/dist/Icons/ResetIcon.js +8 -8
- package/dist/Icons/ScissorsIcon.js +15 -15
- package/dist/Icons/SettingsIcon.js +42 -0
- package/dist/Icons/TrashIcon.js +1 -1
- package/dist/Icons/UndoIcon.js +5 -5
- package/dist/Icons/ZoomAllIcon.js +57 -25
- package/dist/Icons/ZoomXIcon.js +7 -7
- package/dist/Icons.js +47 -35
- package/dist/Label.js +9 -1
- package/dist/Popover.js +57 -43
- package/dist/RadioGroup/RadioGroupBase.js +120 -118
- package/dist/RadioGroup.js +49 -0
- package/dist/Skeleton.js +9 -1
- package/dist/Slider/SliderBase.js +1 -1
- package/dist/Slider.js +9 -1
- package/dist/Switch.js +9 -1
- package/dist/Toggle.js +9 -1
- package/dist/ToggleGroup.js +18 -10
- package/dist/Toolbar.js +9 -1
- package/dist/Tooltip.js +9 -1
- package/dist/assets/main.css +1 -1
- package/dist/components/Drawer/Drawer.d.ts +2 -0
- package/dist/components/Drawer/Drawer.d.ts.map +1 -1
- package/dist/components/Icons/IconBase.d.ts +5 -5
- package/dist/components/Icons/IconBase.d.ts.map +1 -1
- package/dist/components/Icons/InfoIcon.d.ts +3 -0
- package/dist/components/Icons/InfoIcon.d.ts.map +1 -0
- package/dist/components/Icons/SettingsIcon.d.ts +3 -0
- package/dist/components/Icons/SettingsIcon.d.ts.map +1 -0
- package/dist/components/Icons/ZoomAllIcon.d.ts.map +1 -1
- package/dist/components/Icons/index.d.ts +2 -0
- package/dist/components/Icons/index.d.ts.map +1 -1
- package/dist/components/Popover/Popover.d.ts +1 -1
- package/dist/components/Popover/Popover.d.ts.map +1 -1
- package/dist/components/RadioGroup/RadioGroup.d.ts +11 -0
- package/dist/components/RadioGroup/RadioGroup.d.ts.map +1 -0
- package/dist/components/RadioGroup/RadioGroupBase.d.ts +2 -0
- package/dist/components/RadioGroup/RadioGroupBase.d.ts.map +1 -1
- package/dist/{loader-circle-Btf6jOd5.js → createLucideIcon-CI1yJrZf.js} +9 -16
- package/dist/features/HorizonColorGrid/HorizonColorGrid.d.ts +3 -0
- package/dist/features/HorizonColorGrid/HorizonColorGrid.d.ts.map +1 -0
- package/dist/features/HorizonColorGrid.js +70 -0
- package/dist/features/LabelingTools.js +4 -2
- package/dist/features/SensorMetadata/SensorMetadata.d.ts +2 -0
- package/dist/features/SensorMetadata/SensorMetadata.d.ts.map +1 -0
- package/dist/features/SensorMetadata.js +85 -0
- package/dist/features/SettingsPopover/SettingsPopover.d.ts +2 -0
- package/dist/features/SettingsPopover/SettingsPopover.d.ts.map +1 -0
- package/dist/features/SettingsPopover.js +194 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/loader-circle-CvdzOiQ_.js +11 -0
- package/dist/main.js +9 -1
- package/dist/themes/grayscale-theme.webp +0 -0
- package/dist/themes/green-black-theme.webp +0 -0
- package/dist/themes/reverse-grayscale-theme.webp +0 -0
- package/dist/themes/viridis-theme.webp +0 -0
- package/package.json +5 -2
- package/src/styles/main.css +1 -0
package/dist/.js
CHANGED
|
@@ -1,92 +1,107 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
|
|
2
|
+
(function(){
|
|
3
|
+
if (typeof document === 'undefined') return;
|
|
4
|
+
if (document.querySelector('link[data-spectral-css]')) return;
|
|
5
|
+
var link = document.createElement('link');
|
|
6
|
+
link.rel = 'stylesheet';
|
|
7
|
+
link.setAttribute('data-spectral-css', '');
|
|
8
|
+
link.href = new URL('./assets/main.css', import.meta.url).href;
|
|
9
|
+
document.head.appendChild(link);
|
|
10
|
+
})();
|
|
3
11
|
import { Badge as p } from "./Badge.js";
|
|
4
12
|
import { Button as n } from "./Button.js";
|
|
5
13
|
import { Card as x } from "./Card.js";
|
|
6
14
|
import { Drawer as I } from "./Drawer.js";
|
|
7
|
-
import { Popover as
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
15
|
+
import { Popover as i, PopoverContent as l, PopoverTrigger as s } from "./Popover.js";
|
|
16
|
+
import { RadioGroup as T, RadioGroupItem as d } from "./RadioGroup.js";
|
|
17
|
+
import { Skeleton as C } from "./Skeleton.js";
|
|
18
|
+
import { Slider as L } from "./Slider.js";
|
|
19
|
+
import { Switch as v } from "./Switch.js";
|
|
20
|
+
import { Toggle as h } from "./Toggle.js";
|
|
21
|
+
import { ToggleGroup as w, ToggleGroupItem as B } from "./ToggleGroup.js";
|
|
22
|
+
import { Toolbar as R } from "./Toolbar.js";
|
|
23
|
+
import { Tooltip as b, TooltipContent as y, TooltipTrigger as A } from "./Tooltip.js";
|
|
24
|
+
import { AnnotationsIcon as E } from "./Icons/AnnotationsIcon.js";
|
|
25
|
+
import { CalendarIcon as M } from "./Icons/CalendarIcon.js";
|
|
26
|
+
import { ClockIcon as V } from "./Icons/ClockIcon.js";
|
|
27
|
+
import { DeleteIcon as Y } from "./Icons/DeleteIcon.js";
|
|
28
|
+
import { DurationIcon as q } from "./Icons/DurationIcon.js";
|
|
29
|
+
import { EraserIcon as H } from "./Icons/EraserIcon.js";
|
|
30
|
+
import { GoToFirstIcon as K } from "./Icons/GoToFirstIcon.js";
|
|
31
|
+
import { GoToLastIcon as Q } from "./Icons/GoToLastIcon.js";
|
|
32
|
+
import { InfoIcon as _ } from "./Icons/InfoIcon.js";
|
|
33
|
+
import { LabelIcon as oo } from "./Icons/LabelIcon.js";
|
|
34
|
+
import { LassoIcon as eo } from "./Icons/LassoIcon.js";
|
|
35
|
+
import { LineToolIcon as po } from "./Icons/LineToolIcon.js";
|
|
36
|
+
import { LiveViewIcon as no } from "./Icons/LiveViewIcon.js";
|
|
37
|
+
import { LocationIcon as xo } from "./Icons/LocationIcon.js";
|
|
38
|
+
import { MetadataIcon as Io } from "./Icons/MetadataIcon.js";
|
|
39
|
+
import { OntologyIcon as io } from "./Icons/OntologyIcon.js";
|
|
40
|
+
import { PlayIcon as so } from "./Icons/PlayIcon.js";
|
|
41
|
+
import { PlusIcon as To } from "./Icons/PlusIcon.js";
|
|
42
|
+
import { ResetIcon as Co } from "./Icons/ResetIcon.js";
|
|
43
|
+
import { ScissorsIcon as Lo } from "./Icons/ScissorsIcon.js";
|
|
44
|
+
import { SettingsIcon as vo } from "./Icons/SettingsIcon.js";
|
|
45
|
+
import { TrashIcon as ho } from "./Icons/TrashIcon.js";
|
|
46
|
+
import { UndoIcon as wo } from "./Icons/UndoIcon.js";
|
|
47
|
+
import { ZoomAllIcon as Do } from "./Icons/ZoomAllIcon.js";
|
|
48
|
+
import { ZoomXIcon as Zo } from "./Icons/ZoomXIcon.js";
|
|
49
|
+
import { ZoomYIcon as yo } from "./Icons/ZoomYIcon.js";
|
|
50
|
+
import { default as Oo, SvgIdContext as Eo } from "./Icons/IconBase.js";
|
|
40
51
|
import "react";
|
|
41
|
-
import { useOutsideClick as
|
|
42
|
-
import { useTheme as
|
|
43
|
-
import { c as
|
|
52
|
+
import { useOutsideClick as Mo } from "./hooks/useOutsideClick.js";
|
|
53
|
+
import { useTheme as Vo } from "./hooks/useTheme.js";
|
|
54
|
+
import { c as Yo } from "./twUtils-CRiPKpXj.js";
|
|
44
55
|
/* empty css */
|
|
45
56
|
export {
|
|
46
|
-
|
|
57
|
+
E as AnnotationsIcon,
|
|
47
58
|
p as Badge,
|
|
48
59
|
n as Button,
|
|
49
|
-
|
|
60
|
+
M as CalendarIcon,
|
|
50
61
|
x as Card,
|
|
51
|
-
|
|
52
|
-
|
|
62
|
+
V as ClockIcon,
|
|
63
|
+
Y as DeleteIcon,
|
|
53
64
|
I as Drawer,
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
i as
|
|
65
|
+
q as DurationIcon,
|
|
66
|
+
H as EraserIcon,
|
|
67
|
+
K as GoToFirstIcon,
|
|
68
|
+
Q as GoToLastIcon,
|
|
69
|
+
Oo as IconBase,
|
|
70
|
+
_ as InfoIcon,
|
|
71
|
+
oo as LabelIcon,
|
|
72
|
+
eo as LassoIcon,
|
|
73
|
+
po as LineToolIcon,
|
|
74
|
+
no as LiveViewIcon,
|
|
75
|
+
xo as LocationIcon,
|
|
76
|
+
Io as MetadataIcon,
|
|
77
|
+
io as OntologyIcon,
|
|
78
|
+
so as PlayIcon,
|
|
79
|
+
To as PlusIcon,
|
|
80
|
+
i as Popover,
|
|
81
|
+
l as PopoverContent,
|
|
70
82
|
s as PopoverTrigger,
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
83
|
+
T as RadioGroup,
|
|
84
|
+
d as RadioGroupItem,
|
|
85
|
+
Co as ResetIcon,
|
|
86
|
+
Lo as ScissorsIcon,
|
|
87
|
+
vo as SettingsIcon,
|
|
88
|
+
C as Skeleton,
|
|
89
|
+
L as Slider,
|
|
90
|
+
Eo as SvgIdContext,
|
|
91
|
+
v as Switch,
|
|
92
|
+
h as Toggle,
|
|
93
|
+
w as ToggleGroup,
|
|
94
|
+
B as ToggleGroupItem,
|
|
95
|
+
R as Toolbar,
|
|
96
|
+
b as Tooltip,
|
|
97
|
+
y as TooltipContent,
|
|
98
|
+
A as TooltipTrigger,
|
|
99
|
+
ho as TrashIcon,
|
|
100
|
+
wo as UndoIcon,
|
|
101
|
+
Do as ZoomAllIcon,
|
|
102
|
+
Zo as ZoomXIcon,
|
|
103
|
+
yo as ZoomYIcon,
|
|
104
|
+
Yo as cn,
|
|
105
|
+
Mo as useOutsideClick,
|
|
106
|
+
Vo as useTheme
|
|
92
107
|
};
|
package/dist/App.js
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
|
|
2
|
+
(function(){
|
|
3
|
+
if (typeof document === 'undefined') return;
|
|
4
|
+
if (document.querySelector('link[data-spectral-css]')) return;
|
|
5
|
+
var link = document.createElement('link');
|
|
6
|
+
link.rel = 'stylesheet';
|
|
7
|
+
link.setAttribute('data-spectral-css', '');
|
|
8
|
+
link.href = new URL('./assets/main.css', import.meta.url).href;
|
|
9
|
+
document.head.appendChild(link);
|
|
10
|
+
})();
|
|
3
11
|
import { jsx as r } from "react/jsx-runtime";
|
|
4
12
|
function p() {
|
|
5
13
|
return /* @__PURE__ */ r("div", { children: "spectral | spear.ai" });
|
package/dist/Badge.js
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
|
|
2
|
+
(function(){
|
|
3
|
+
if (typeof document === 'undefined') return;
|
|
4
|
+
if (document.querySelector('link[data-spectral-css]')) return;
|
|
5
|
+
var link = document.createElement('link');
|
|
6
|
+
link.rel = 'stylesheet';
|
|
7
|
+
link.setAttribute('data-spectral-css', '');
|
|
8
|
+
link.href = new URL('./assets/main.css', import.meta.url).href;
|
|
9
|
+
document.head.appendChild(link);
|
|
10
|
+
})();
|
|
3
11
|
import { jsx as e } from "react/jsx-runtime";
|
|
4
12
|
import { BadgeBase as t } from "./Badge/BadgeBase.js";
|
|
5
13
|
const p = ({ children: r, ...o }) => /* @__PURE__ */ e(t, { ...o, children: r });
|
package/dist/Button.js
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
|
|
2
|
+
(function(){
|
|
3
|
+
if (typeof document === 'undefined') return;
|
|
4
|
+
if (document.querySelector('link[data-spectral-css]')) return;
|
|
5
|
+
var link = document.createElement('link');
|
|
6
|
+
link.rel = 'stylesheet';
|
|
7
|
+
link.setAttribute('data-spectral-css', '');
|
|
8
|
+
link.href = new URL('./assets/main.css', import.meta.url).href;
|
|
9
|
+
document.head.appendChild(link);
|
|
10
|
+
})();
|
|
3
11
|
import { jsxs as l, jsx as e } from "react/jsx-runtime";
|
|
4
12
|
import { c as u } from "./twUtils-CRiPKpXj.js";
|
|
5
13
|
import { c as f } from "./index-CRBC94ik.js";
|
|
6
14
|
import { forwardRef as v } from "react";
|
|
7
|
-
import { L as h } from "./loader-circle-
|
|
15
|
+
import { L as h } from "./loader-circle-CvdzOiQ_.js";
|
|
8
16
|
const N = f(
|
|
9
17
|
`
|
|
10
18
|
!font-sans flex relative items-center justify-center gap-2 whitespace-nowrap transition-colors cursor-pointer rounded-lg border font-semibold disabled:pointer-events-none
|
package/dist/Card.js
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
|
|
2
|
+
(function(){
|
|
3
|
+
if (typeof document === 'undefined') return;
|
|
4
|
+
if (document.querySelector('link[data-spectral-css]')) return;
|
|
5
|
+
var link = document.createElement('link');
|
|
6
|
+
link.rel = 'stylesheet';
|
|
7
|
+
link.setAttribute('data-spectral-css', '');
|
|
8
|
+
link.href = new URL('./assets/main.css', import.meta.url).href;
|
|
9
|
+
document.head.appendChild(link);
|
|
10
|
+
})();
|
|
3
11
|
import { jsxs as n, jsx as e } from "react/jsx-runtime";
|
|
4
12
|
import { c as a } from "./twUtils-CRiPKpXj.js";
|
|
5
13
|
import { forwardRef as u } from "react";
|
|
6
|
-
import { L as b } from "./loader-circle-
|
|
14
|
+
import { L as b } from "./loader-circle-CvdzOiQ_.js";
|
|
7
15
|
const h = u(
|
|
8
16
|
({ className: t, title: s, icon: r, width: o = "full", isLoading: i = !1, children: d, ...c }, f) => {
|
|
9
17
|
const l = s || r, m = a(
|
|
10
|
-
"!font-sans shadow-neumorphic-large relative bg-card-bg rounded-2xl p-
|
|
11
|
-
o === "full" ? "w-full" : "w-fit",
|
|
18
|
+
"!font-sans shadow-neumorphic-large relative bg-card-bg rounded-2xl p-3 focus:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
|
|
19
|
+
o === "full" ? "w-full min-w-0" : "w-fit",
|
|
12
20
|
t
|
|
13
21
|
);
|
|
14
22
|
return /* @__PURE__ */ n("div", { ref: f, className: m, "aria-busy": i, ...c, children: [
|
|
@@ -26,7 +34,7 @@ const h = u(
|
|
|
26
34
|
s && /* @__PURE__ */ e("h3", { className: "text-card-text m-0 min-w-0 flex-1 truncate font-semibold", children: s }),
|
|
27
35
|
r && /* @__PURE__ */ e("div", { className: "size-5 flex-shrink-0 overflow-hidden [&>svg]:size-5", "aria-hidden": "true", children: r })
|
|
28
36
|
] }),
|
|
29
|
-
/* @__PURE__ */ e("div", { className: a("min-h-40
|
|
37
|
+
/* @__PURE__ */ e("div", { className: a("min-h-40", l && "pt-0"), children: d })
|
|
30
38
|
] });
|
|
31
39
|
}
|
|
32
40
|
);
|
package/dist/Drawer.js
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
|
|
2
|
+
(function(){
|
|
3
|
+
if (typeof document === 'undefined') return;
|
|
4
|
+
if (document.querySelector('link[data-spectral-css]')) return;
|
|
5
|
+
var link = document.createElement('link');
|
|
6
|
+
link.rel = 'stylesheet';
|
|
7
|
+
link.setAttribute('data-spectral-css', '');
|
|
8
|
+
link.href = new URL('./assets/main.css', import.meta.url).href;
|
|
9
|
+
document.head.appendChild(link);
|
|
10
|
+
})();
|
|
3
11
|
import { jsx as S, jsxs as gt, Fragment as te } from "react/jsx-runtime";
|
|
4
12
|
import * as O from "react";
|
|
5
13
|
import i, { useMemo as je, useLayoutEffect as qe, useEffect as Xe } from "react";
|
|
@@ -1257,7 +1265,7 @@ const tt = {
|
|
|
1257
1265
|
Close: Rn,
|
|
1258
1266
|
Title: bn,
|
|
1259
1267
|
Description: Dn
|
|
1260
|
-
}, rr = ({ trigger: t, title: n, description: e, children: a, direction: o = "right", size: r = "
|
|
1268
|
+
}, rr = ({ trigger: t, title: n, description: e, children: a, direction: o = "right", size: r = "380px" }) => {
|
|
1261
1269
|
const l = "!font-sans fixed", s = {
|
|
1262
1270
|
left: {
|
|
1263
1271
|
className: `${l} top-0 bottom-0 left-0 shadow-[20px_0_20px_rgba(0,0,0,0.4)]`,
|
|
@@ -1277,15 +1285,22 @@ const tt = {
|
|
|
1277
1285
|
}
|
|
1278
1286
|
}, { className: v, style: D } = s[o];
|
|
1279
1287
|
return /* @__PURE__ */ gt(tt.Root, { direction: o, children: [
|
|
1280
|
-
/* @__PURE__ */ S(tt.Trigger, {
|
|
1288
|
+
/* @__PURE__ */ S(tt.Trigger, { children: t }),
|
|
1281
1289
|
/* @__PURE__ */ gt(tt.Portal, { children: [
|
|
1282
1290
|
/* @__PURE__ */ S(tt.Overlay, { className: "fixed inset-0 bg-transparent" }),
|
|
1283
|
-
/* @__PURE__ */ gt(
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1291
|
+
/* @__PURE__ */ gt(
|
|
1292
|
+
tt.Content,
|
|
1293
|
+
{
|
|
1294
|
+
className: `bg-drawer-bg z-10 flex flex-col outline-none [&_*]:box-border ${v}`,
|
|
1295
|
+
style: D,
|
|
1296
|
+
children: [
|
|
1297
|
+
/* @__PURE__ */ S(tt.Close, {}),
|
|
1298
|
+
/* @__PURE__ */ S(tt.Title, { className: "text-text-primary px-3 text-lg font-medium", children: n }),
|
|
1299
|
+
/* @__PURE__ */ S(tt.Description, { className: "!text-text-secondary mb-2 px-3 !text-xs uppercase", children: e }),
|
|
1300
|
+
/* @__PURE__ */ S("div", { className: "w-auto min-w-0 overflow-hidden px-3 py-2 [&_*]:min-w-0 [&>*]:min-w-0", children: a })
|
|
1301
|
+
]
|
|
1302
|
+
}
|
|
1303
|
+
)
|
|
1289
1304
|
] })
|
|
1290
1305
|
] });
|
|
1291
1306
|
};
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import { jsx as o } from "react/jsx-runtime";
|
|
3
3
|
import a from "./IconBase.js";
|
|
4
4
|
import { forwardRef as c } from "react";
|
|
5
|
-
const d = ({ className:
|
|
5
|
+
const d = ({ className: n, ariaHidden: r, title: t = "Annotations", description: e, size: i = 24 }, s) => /* @__PURE__ */ o(
|
|
6
6
|
a,
|
|
7
7
|
{
|
|
8
8
|
size: i,
|
|
9
|
-
className:
|
|
9
|
+
className: n,
|
|
10
10
|
title: t,
|
|
11
11
|
description: e,
|
|
12
|
-
"aria-hidden":
|
|
12
|
+
"aria-hidden": r,
|
|
13
13
|
ref: s,
|
|
14
14
|
children: /* @__PURE__ */ o(
|
|
15
15
|
"path",
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as
|
|
2
|
+
import { jsxs as s, jsx as r } from "react/jsx-runtime";
|
|
3
3
|
import a from "./IconBase.js";
|
|
4
4
|
import { forwardRef as k } from "react";
|
|
5
|
-
const c = ({ className: o, ariaHidden: e, title:
|
|
5
|
+
const c = ({ className: o, ariaHidden: e, title: n = "Calendar", description: t, size: d = 24 }, i) => /* @__PURE__ */ s(
|
|
6
6
|
a,
|
|
7
7
|
{
|
|
8
|
-
size:
|
|
8
|
+
size: d,
|
|
9
9
|
className: o,
|
|
10
|
-
title:
|
|
11
|
-
description:
|
|
10
|
+
title: n,
|
|
11
|
+
description: t,
|
|
12
12
|
"aria-hidden": e,
|
|
13
|
-
ref:
|
|
13
|
+
ref: i,
|
|
14
14
|
children: [
|
|
15
15
|
/* @__PURE__ */ r(
|
|
16
16
|
"path",
|
|
@@ -54,7 +54,7 @@ const c = ({ className: o, ariaHidden: e, title: t = "Instagram", description: n
|
|
|
54
54
|
)
|
|
55
55
|
]
|
|
56
56
|
}
|
|
57
|
-
),
|
|
57
|
+
), h = k(c);
|
|
58
58
|
export {
|
|
59
|
-
|
|
59
|
+
h as CalendarIcon
|
|
60
60
|
};
|
package/dist/Icons/DeleteIcon.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as d, jsx as
|
|
2
|
+
import { jsxs as d, jsx as o } from "react/jsx-runtime";
|
|
3
3
|
import C from "./IconBase.js";
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const
|
|
4
|
+
import { forwardRef as c } from "react";
|
|
5
|
+
const k = ({ className: r, ariaHidden: e, title: t = "Delete", description: n, size: i = 24 }, s) => /* @__PURE__ */ d(
|
|
6
6
|
C,
|
|
7
7
|
{
|
|
8
|
-
size:
|
|
9
|
-
className:
|
|
8
|
+
size: i,
|
|
9
|
+
className: r,
|
|
10
10
|
title: t,
|
|
11
11
|
description: n,
|
|
12
12
|
"aria-hidden": e,
|
|
13
|
-
ref:
|
|
13
|
+
ref: s,
|
|
14
14
|
children: [
|
|
15
|
-
/* @__PURE__ */
|
|
15
|
+
/* @__PURE__ */ o(
|
|
16
16
|
"path",
|
|
17
17
|
{
|
|
18
18
|
d: "M10 5C9.50309 5.00003 9.02397 5.18504 8.656 5.519L2.328 11.259C2.22472 11.3527 2.14219 11.467 2.08572 11.5946C2.02924 11.7221 2.00006 11.86 2.00006 11.9995C2.00006 12.139 2.02924 12.2769 2.08572 12.4044C2.14219 12.532 2.22472 12.6463 2.328 12.74L8.656 18.481C9.02397 18.815 9.50309 19 10 19H20C20.5304 19 21.0391 18.7893 21.4142 18.4142C21.7893 18.0391 22 17.5304 22 17V7C22 6.46957 21.7893 5.96086 21.4142 5.58579C21.0391 5.21071 20.5304 5 20 5H10Z",
|
|
@@ -22,11 +22,11 @@ const c = ({ className: o, ariaHidden: e, title: t = "Instagram", description: n
|
|
|
22
22
|
strokeLinejoin: "round"
|
|
23
23
|
}
|
|
24
24
|
),
|
|
25
|
-
/* @__PURE__ */
|
|
26
|
-
/* @__PURE__ */
|
|
25
|
+
/* @__PURE__ */ o("path", { d: "M12 9L18 15", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
26
|
+
/* @__PURE__ */ o("path", { d: "M18 9L12 15", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
27
27
|
]
|
|
28
28
|
}
|
|
29
|
-
), L =
|
|
29
|
+
), L = c(k);
|
|
30
30
|
export {
|
|
31
31
|
L as DeleteIcon
|
|
32
32
|
};
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as d, jsx as
|
|
2
|
+
import { jsxs as d, jsx as o } from "react/jsx-runtime";
|
|
3
3
|
import k from "./IconBase.js";
|
|
4
4
|
import { forwardRef as u } from "react";
|
|
5
|
-
const a = ({ className:
|
|
5
|
+
const a = ({ className: r, ariaHidden: t, title: e = "Duration", description: n, size: i = 24 }, s) => /* @__PURE__ */ d(
|
|
6
6
|
k,
|
|
7
7
|
{
|
|
8
8
|
size: i,
|
|
9
|
-
className:
|
|
9
|
+
className: r,
|
|
10
10
|
title: e,
|
|
11
11
|
description: n,
|
|
12
12
|
"aria-hidden": t,
|
|
13
13
|
ref: s,
|
|
14
14
|
children: [
|
|
15
|
-
/* @__PURE__ */
|
|
15
|
+
/* @__PURE__ */ o(
|
|
16
16
|
"path",
|
|
17
17
|
{
|
|
18
18
|
d: "M11.5652 3.36353C13.2523 3.36322 14.903 3.85034 16.3162 4.76551C17.7294 5.68069 18.8441 6.9844 19.5243 8.51774C20.2045 10.0511 20.421 11.7478 20.1472 13.4012C19.8735 15.0546 19.1214 16.5932 17.9826 17.8294",
|
|
@@ -22,7 +22,7 @@ const a = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
22
22
|
strokeLinejoin: "round"
|
|
23
23
|
}
|
|
24
24
|
),
|
|
25
|
-
/* @__PURE__ */
|
|
25
|
+
/* @__PURE__ */ o(
|
|
26
26
|
"path",
|
|
27
27
|
{
|
|
28
28
|
d: "M11.5652 6.81812V11.9999L15.0435 13.7272",
|
|
@@ -32,7 +32,7 @@ const a = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
32
32
|
strokeLinejoin: "round"
|
|
33
33
|
}
|
|
34
34
|
),
|
|
35
|
-
/* @__PURE__ */
|
|
35
|
+
/* @__PURE__ */ o(
|
|
36
36
|
"path",
|
|
37
37
|
{
|
|
38
38
|
d: "M3.30435 9.30103C3.02726 10.1376 2.88064 11.0113 2.86957 11.8919",
|
|
@@ -42,7 +42,7 @@ const a = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
42
42
|
strokeLinejoin: "round"
|
|
43
43
|
}
|
|
44
44
|
),
|
|
45
|
-
/* @__PURE__ */
|
|
45
|
+
/* @__PURE__ */ o(
|
|
46
46
|
"path",
|
|
47
47
|
{
|
|
48
48
|
d: "M3.59128 15.4546C4.07954 16.5703 4.79961 17.5709 5.70432 18.391",
|
|
@@ -52,7 +52,7 @@ const a = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
52
52
|
strokeLinejoin: "round"
|
|
53
53
|
}
|
|
54
54
|
),
|
|
55
|
-
/* @__PURE__ */
|
|
55
|
+
/* @__PURE__ */ o(
|
|
56
56
|
"path",
|
|
57
57
|
{
|
|
58
58
|
d: "M5.16171 6.15737C5.40436 5.89503 5.66311 5.64784 5.93649 5.41724",
|
|
@@ -62,7 +62,7 @@ const a = ({ className: o, ariaHidden: t, title: e = "Instagram", description: n
|
|
|
62
62
|
strokeLinejoin: "round"
|
|
63
63
|
}
|
|
64
64
|
),
|
|
65
|
-
/* @__PURE__ */
|
|
65
|
+
/* @__PURE__ */ o(
|
|
66
66
|
"path",
|
|
67
67
|
{
|
|
68
68
|
d: "M8.64697 20.1356C10.8154 20.9028 13.2017 20.7848 15.2826 19.8074",
|
package/dist/Icons/EraserIcon.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as
|
|
2
|
+
import { jsxs as e, jsx as r } from "react/jsx-runtime";
|
|
3
3
|
import h, { SvgIdContext as a } from "./IconBase.js";
|
|
4
4
|
import { forwardRef as l, useContext as p } from "react";
|
|
5
|
-
const C = ({ className:
|
|
5
|
+
const C = ({ className: t, ariaHidden: i, title: n = "Eraser", description: s, size: d = 24 }, c) => {
|
|
6
6
|
const o = p(a);
|
|
7
|
-
return /* @__PURE__ */
|
|
7
|
+
return /* @__PURE__ */ e(
|
|
8
8
|
h,
|
|
9
9
|
{
|
|
10
10
|
size: d,
|
|
11
|
-
className:
|
|
12
|
-
title:
|
|
11
|
+
className: t,
|
|
12
|
+
title: n,
|
|
13
13
|
description: s,
|
|
14
|
-
"aria-hidden":
|
|
14
|
+
"aria-hidden": i,
|
|
15
15
|
ref: c,
|
|
16
16
|
children: [
|
|
17
|
-
/* @__PURE__ */
|
|
17
|
+
/* @__PURE__ */ e("g", { clipPath: `url(#${o}-clip0)`, children: [
|
|
18
18
|
/* @__PURE__ */ r(
|
|
19
19
|
"path",
|
|
20
20
|
{
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs as d, jsx as o } from "react/jsx-runtime";
|
|
3
|
-
import
|
|
4
|
-
import { forwardRef as
|
|
5
|
-
const k = ({ className: r, ariaHidden: t, title:
|
|
6
|
-
|
|
3
|
+
import c from "./IconBase.js";
|
|
4
|
+
import { forwardRef as a } from "react";
|
|
5
|
+
const k = ({ className: r, ariaHidden: t, title: e = "Go to First", description: n, size: i = 24 }, s) => /* @__PURE__ */ d(
|
|
6
|
+
c,
|
|
7
7
|
{
|
|
8
|
-
size:
|
|
8
|
+
size: i,
|
|
9
9
|
className: r,
|
|
10
|
-
title:
|
|
11
|
-
description:
|
|
10
|
+
title: e,
|
|
11
|
+
description: n,
|
|
12
12
|
"aria-hidden": t,
|
|
13
|
-
ref:
|
|
13
|
+
ref: s,
|
|
14
14
|
children: [
|
|
15
15
|
/* @__PURE__ */ o(
|
|
16
16
|
"path",
|
|
@@ -34,7 +34,7 @@ const k = ({ className: r, ariaHidden: t, title: n = "Instagram", description: e
|
|
|
34
34
|
)
|
|
35
35
|
]
|
|
36
36
|
}
|
|
37
|
-
),
|
|
37
|
+
), m = a(k);
|
|
38
38
|
export {
|
|
39
|
-
|
|
39
|
+
m as GoToFirstIcon
|
|
40
40
|
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsxs as
|
|
3
|
-
import
|
|
2
|
+
import { jsxs as d, jsx as o } from "react/jsx-runtime";
|
|
3
|
+
import a from "./IconBase.js";
|
|
4
4
|
import { forwardRef as c } from "react";
|
|
5
|
-
const
|
|
6
|
-
|
|
5
|
+
const L = ({ className: r, ariaHidden: t, title: e = "Go to Last", description: n, size: s = 24 }, i) => /* @__PURE__ */ d(
|
|
6
|
+
a,
|
|
7
7
|
{
|
|
8
8
|
size: s,
|
|
9
9
|
className: r,
|
|
10
|
-
title:
|
|
11
|
-
description:
|
|
10
|
+
title: e,
|
|
11
|
+
description: n,
|
|
12
12
|
"aria-hidden": t,
|
|
13
13
|
ref: i,
|
|
14
14
|
children: [
|
|
@@ -34,7 +34,7 @@ const k = ({ className: r, ariaHidden: t, title: n = "Instagram", description: e
|
|
|
34
34
|
)
|
|
35
35
|
]
|
|
36
36
|
}
|
|
37
|
-
),
|
|
37
|
+
), h = c(L);
|
|
38
38
|
export {
|
|
39
|
-
|
|
39
|
+
h as GoToLastIcon
|
|
40
40
|
};
|
package/dist/Icons/IconBase.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs as c, jsx as o, Fragment as m } from "react/jsx-runtime";
|
|
3
|
-
import { createContext as
|
|
4
|
-
const
|
|
5
|
-
const l =
|
|
3
|
+
import { createContext as u, forwardRef as w, useId as x } from "react";
|
|
4
|
+
const v = u(""), b = w(function({ children: d, title: i, size: n = 24, ariaHidden: e, description: t = "", className: h = "", style: a, ...f }, g) {
|
|
5
|
+
const l = x(), r = e ? "" : `${l}_title`, s = !e && t ? `${l}_desc` : "";
|
|
6
6
|
return /* @__PURE__ */ c(
|
|
7
7
|
"svg",
|
|
8
8
|
{
|
|
@@ -17,17 +17,18 @@ const u = w(""), v = ({ children: d, title: i, size: n = 24, ariaHidden: e, desc
|
|
|
17
17
|
style: a,
|
|
18
18
|
fill: "none",
|
|
19
19
|
viewBox: "0 0 24 24",
|
|
20
|
+
...f,
|
|
20
21
|
children: [
|
|
21
22
|
e ? null : /* @__PURE__ */ c(m, { children: [
|
|
22
23
|
/* @__PURE__ */ o("title", { id: r, children: i }),
|
|
23
24
|
t ? /* @__PURE__ */ o("desc", { id: s, children: t }) : null
|
|
24
25
|
] }),
|
|
25
|
-
/* @__PURE__ */ o(
|
|
26
|
+
/* @__PURE__ */ o(v.Provider, { value: l, children: d })
|
|
26
27
|
]
|
|
27
28
|
}
|
|
28
29
|
);
|
|
29
|
-
}
|
|
30
|
+
});
|
|
30
31
|
export {
|
|
31
|
-
|
|
32
|
-
|
|
32
|
+
v as SvgIdContext,
|
|
33
|
+
b as default
|
|
33
34
|
};
|