@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.
Files changed (83) hide show
  1. package/dist/.js +93 -78
  2. package/dist/App.js +9 -1
  3. package/dist/Badge.js +9 -1
  4. package/dist/Button.js +10 -2
  5. package/dist/Card.js +13 -5
  6. package/dist/Drawer.js +24 -9
  7. package/dist/Icons/AnnotationsIcon.js +3 -3
  8. package/dist/Icons/CalendarIcon.js +8 -8
  9. package/dist/Icons/DeleteIcon.js +10 -10
  10. package/dist/Icons/DurationIcon.js +9 -9
  11. package/dist/Icons/EraserIcon.js +7 -7
  12. package/dist/Icons/GoToFirstIcon.js +10 -10
  13. package/dist/Icons/GoToLastIcon.js +8 -8
  14. package/dist/Icons/IconBase.js +8 -7
  15. package/dist/Icons/InfoIcon.js +32 -0
  16. package/dist/Icons/LabelIcon.js +6 -6
  17. package/dist/Icons/LassoIcon.js +3 -3
  18. package/dist/Icons/LineToolIcon.js +14 -14
  19. package/dist/Icons/LiveViewIcon.js +30 -30
  20. package/dist/Icons/LocationIcon.js +6 -6
  21. package/dist/Icons/MetadataIcon.js +8 -8
  22. package/dist/Icons/OntologyIcon.js +5 -5
  23. package/dist/Icons/PlayIcon.js +11 -11
  24. package/dist/Icons/PlusIcon.js +9 -9
  25. package/dist/Icons/ResetIcon.js +8 -8
  26. package/dist/Icons/ScissorsIcon.js +15 -15
  27. package/dist/Icons/SettingsIcon.js +42 -0
  28. package/dist/Icons/TrashIcon.js +1 -1
  29. package/dist/Icons/UndoIcon.js +5 -5
  30. package/dist/Icons/ZoomAllIcon.js +57 -25
  31. package/dist/Icons/ZoomXIcon.js +7 -7
  32. package/dist/Icons.js +47 -35
  33. package/dist/Label.js +9 -1
  34. package/dist/Popover.js +57 -43
  35. package/dist/RadioGroup/RadioGroupBase.js +120 -118
  36. package/dist/RadioGroup.js +49 -0
  37. package/dist/Skeleton.js +9 -1
  38. package/dist/Slider/SliderBase.js +1 -1
  39. package/dist/Slider.js +9 -1
  40. package/dist/Switch.js +9 -1
  41. package/dist/Toggle.js +9 -1
  42. package/dist/ToggleGroup.js +18 -10
  43. package/dist/Toolbar.js +9 -1
  44. package/dist/Tooltip.js +9 -1
  45. package/dist/assets/main.css +1 -1
  46. package/dist/components/Drawer/Drawer.d.ts +2 -0
  47. package/dist/components/Drawer/Drawer.d.ts.map +1 -1
  48. package/dist/components/Icons/IconBase.d.ts +5 -5
  49. package/dist/components/Icons/IconBase.d.ts.map +1 -1
  50. package/dist/components/Icons/InfoIcon.d.ts +3 -0
  51. package/dist/components/Icons/InfoIcon.d.ts.map +1 -0
  52. package/dist/components/Icons/SettingsIcon.d.ts +3 -0
  53. package/dist/components/Icons/SettingsIcon.d.ts.map +1 -0
  54. package/dist/components/Icons/ZoomAllIcon.d.ts.map +1 -1
  55. package/dist/components/Icons/index.d.ts +2 -0
  56. package/dist/components/Icons/index.d.ts.map +1 -1
  57. package/dist/components/Popover/Popover.d.ts +1 -1
  58. package/dist/components/Popover/Popover.d.ts.map +1 -1
  59. package/dist/components/RadioGroup/RadioGroup.d.ts +11 -0
  60. package/dist/components/RadioGroup/RadioGroup.d.ts.map +1 -0
  61. package/dist/components/RadioGroup/RadioGroupBase.d.ts +2 -0
  62. package/dist/components/RadioGroup/RadioGroupBase.d.ts.map +1 -1
  63. package/dist/{loader-circle-Btf6jOd5.js → createLucideIcon-CI1yJrZf.js} +9 -16
  64. package/dist/features/HorizonColorGrid/HorizonColorGrid.d.ts +3 -0
  65. package/dist/features/HorizonColorGrid/HorizonColorGrid.d.ts.map +1 -0
  66. package/dist/features/HorizonColorGrid.js +70 -0
  67. package/dist/features/LabelingTools.js +4 -2
  68. package/dist/features/SensorMetadata/SensorMetadata.d.ts +2 -0
  69. package/dist/features/SensorMetadata/SensorMetadata.d.ts.map +1 -0
  70. package/dist/features/SensorMetadata.js +85 -0
  71. package/dist/features/SettingsPopover/SettingsPopover.d.ts +2 -0
  72. package/dist/features/SettingsPopover/SettingsPopover.d.ts.map +1 -0
  73. package/dist/features/SettingsPopover.js +194 -0
  74. package/dist/index.d.ts +1 -0
  75. package/dist/index.d.ts.map +1 -1
  76. package/dist/loader-circle-CvdzOiQ_.js +11 -0
  77. package/dist/main.js +9 -1
  78. package/dist/themes/grayscale-theme.webp +0 -0
  79. package/dist/themes/green-black-theme.webp +0 -0
  80. package/dist/themes/reverse-grayscale-theme.webp +0 -0
  81. package/dist/themes/viridis-theme.webp +0 -0
  82. package/package.json +5 -2
  83. package/src/styles/main.css +1 -0
package/dist/.js CHANGED
@@ -1,92 +1,107 @@
1
1
  "use client";
2
- import './assets/main.css';
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 l, PopoverContent as i, PopoverTrigger as s } from "./Popover.js";
8
- import { Skeleton as g } from "./Skeleton.js";
9
- import { Slider as u } from "./Slider.js";
10
- import { Switch as L } from "./Switch.js";
11
- import { Toggle as P } from "./Toggle.js";
12
- import { ToggleGroup as G, ToggleGroupItem as h } from "./ToggleGroup.js";
13
- import { Toolbar as w } from "./Toolbar.js";
14
- import { Tooltip as D, TooltipContent as Z, TooltipTrigger as b } from "./Tooltip.js";
15
- import { AnnotationsIcon as A } from "./Icons/AnnotationsIcon.js";
16
- import { CalendarIcon as E } from "./Icons/CalendarIcon.js";
17
- import { ClockIcon as M } from "./Icons/ClockIcon.js";
18
- import { DeleteIcon as U } from "./Icons/DeleteIcon.js";
19
- import { DurationIcon as X } from "./Icons/DurationIcon.js";
20
- import { EraserIcon as j } from "./Icons/EraserIcon.js";
21
- import { GoToFirstIcon as z } from "./Icons/GoToFirstIcon.js";
22
- import { GoToLastIcon as J } from "./Icons/GoToLastIcon.js";
23
- import { LabelIcon as N } from "./Icons/LabelIcon.js";
24
- import { LassoIcon as W } from "./Icons/LassoIcon.js";
25
- import { LineToolIcon as $ } from "./Icons/LineToolIcon.js";
26
- import { LiveViewIcon as ro } from "./Icons/LiveViewIcon.js";
27
- import { LocationIcon as to } from "./Icons/LocationIcon.js";
28
- import { MetadataIcon as mo } from "./Icons/MetadataIcon.js";
29
- import { OntologyIcon as fo } from "./Icons/OntologyIcon.js";
30
- import { PlayIcon as co } from "./Icons/PlayIcon.js";
31
- import { PlusIcon as ao } from "./Icons/PlusIcon.js";
32
- import { ResetIcon as io } from "./Icons/ResetIcon.js";
33
- import { ScissorsIcon as To } from "./Icons/ScissorsIcon.js";
34
- import { TrashIcon as uo } from "./Icons/TrashIcon.js";
35
- import { UndoIcon as Lo } from "./Icons/UndoIcon.js";
36
- import { ZoomAllIcon as Po } from "./Icons/ZoomAllIcon.js";
37
- import { ZoomXIcon as Go } from "./Icons/ZoomXIcon.js";
38
- import { ZoomYIcon as ko } from "./Icons/ZoomYIcon.js";
39
- import { default as Bo, SvgIdContext as Do } from "./Icons/IconBase.js";
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 bo } from "./hooks/useOutsideClick.js";
42
- import { useTheme as Ao } from "./hooks/useTheme.js";
43
- import { c as Eo } from "./twUtils-CRiPKpXj.js";
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
- A as AnnotationsIcon,
57
+ E as AnnotationsIcon,
47
58
  p as Badge,
48
59
  n as Button,
49
- E as CalendarIcon,
60
+ M as CalendarIcon,
50
61
  x as Card,
51
- M as ClockIcon,
52
- U as DeleteIcon,
62
+ V as ClockIcon,
63
+ Y as DeleteIcon,
53
64
  I as Drawer,
54
- X as DurationIcon,
55
- j as EraserIcon,
56
- z as GoToFirstIcon,
57
- J as GoToLastIcon,
58
- Bo as IconBase,
59
- N as LabelIcon,
60
- W as LassoIcon,
61
- $ as LineToolIcon,
62
- ro as LiveViewIcon,
63
- to as LocationIcon,
64
- mo as MetadataIcon,
65
- fo as OntologyIcon,
66
- co as PlayIcon,
67
- ao as PlusIcon,
68
- l as Popover,
69
- i as PopoverContent,
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
- io as ResetIcon,
72
- To as ScissorsIcon,
73
- g as Skeleton,
74
- u as Slider,
75
- Do as SvgIdContext,
76
- L as Switch,
77
- P as Toggle,
78
- G as ToggleGroup,
79
- h as ToggleGroupItem,
80
- w as Toolbar,
81
- D as Tooltip,
82
- Z as TooltipContent,
83
- b as TooltipTrigger,
84
- uo as TrashIcon,
85
- Lo as UndoIcon,
86
- Po as ZoomAllIcon,
87
- Go as ZoomXIcon,
88
- ko as ZoomYIcon,
89
- Eo as cn,
90
- bo as useOutsideClick,
91
- Ao as useTheme
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
- import './assets/main.css';
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
- import './assets/main.css';
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
- import './assets/main.css';
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-Btf6jOd5.js";
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
- import './assets/main.css';
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-Btf6jOd5.js";
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-4.5 focus:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
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 p-4", l && "pt-0"), children: d })
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
- import './assets/main.css';
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 = "320px" }) => {
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, { asChild: !0, children: t }),
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(tt.Content, { className: `bg-drawer-bg z-10 flex flex-col p-4 outline-none ${v}`, style: D, children: [
1284
- /* @__PURE__ */ S(tt.Close, {}),
1285
- /* @__PURE__ */ S(tt.Title, { className: "text-text-primary mb-2 text-lg font-semibold", children: n }),
1286
- /* @__PURE__ */ S(tt.Description, { className: "!text-text-secondary mb-2 !text-xs uppercase", children: e }),
1287
- /* @__PURE__ */ S("div", { className: "pt-2", children: a })
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: r, ariaHidden: n, title: t = "Instagram", description: e, size: i = 24 }, s) => /* @__PURE__ */ o(
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: r,
9
+ className: n,
10
10
  title: t,
11
11
  description: e,
12
- "aria-hidden": n,
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 i, jsx as r } from "react/jsx-runtime";
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: t = "Instagram", description: n, size: s = 24 }, d) => /* @__PURE__ */ i(
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: s,
8
+ size: d,
9
9
  className: o,
10
- title: t,
11
- description: n,
10
+ title: n,
11
+ description: t,
12
12
  "aria-hidden": e,
13
- ref: d,
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
- ), C = k(c);
57
+ ), h = k(c);
58
58
  export {
59
- C as CalendarIcon
59
+ h as CalendarIcon
60
60
  };
@@ -1,18 +1,18 @@
1
1
  "use client";
2
- import { jsxs as d, jsx as r } from "react/jsx-runtime";
2
+ import { jsxs as d, jsx as o } from "react/jsx-runtime";
3
3
  import C from "./IconBase.js";
4
- import { forwardRef as a } from "react";
5
- const c = ({ className: o, ariaHidden: e, title: t = "Instagram", description: n, size: s = 24 }, i) => /* @__PURE__ */ d(
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: s,
9
- className: o,
8
+ size: i,
9
+ className: r,
10
10
  title: t,
11
11
  description: n,
12
12
  "aria-hidden": e,
13
- ref: i,
13
+ ref: s,
14
14
  children: [
15
- /* @__PURE__ */ r(
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__ */ r("path", { d: "M12 9L18 15", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }),
26
- /* @__PURE__ */ r("path", { d: "M18 9L12 15", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })
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 = a(c);
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 r } from "react/jsx-runtime";
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: o, ariaHidden: t, title: e = "Instagram", description: n, size: i = 24 }, s) => /* @__PURE__ */ d(
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: o,
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__ */ r(
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__ */ r(
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__ */ r(
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__ */ r(
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__ */ r(
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__ */ r(
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",
@@ -1,20 +1,20 @@
1
1
  "use client";
2
- import { jsxs as t, jsx as r } from "react/jsx-runtime";
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: e, ariaHidden: n, title: i = "Instagram", description: s, size: d = 24 }, c) => {
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__ */ t(
7
+ return /* @__PURE__ */ e(
8
8
  h,
9
9
  {
10
10
  size: d,
11
- className: e,
12
- title: i,
11
+ className: t,
12
+ title: n,
13
13
  description: s,
14
- "aria-hidden": n,
14
+ "aria-hidden": i,
15
15
  ref: c,
16
16
  children: [
17
- /* @__PURE__ */ t("g", { clipPath: `url(#${o}-clip0)`, children: [
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 a from "./IconBase.js";
4
- import { forwardRef as c } from "react";
5
- const k = ({ className: r, ariaHidden: t, title: n = "Instagram", description: e, size: s = 24 }, i) => /* @__PURE__ */ d(
6
- a,
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: s,
8
+ size: i,
9
9
  className: r,
10
- title: n,
11
- description: e,
10
+ title: e,
11
+ description: n,
12
12
  "aria-hidden": t,
13
- ref: i,
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
- ), h = c(k);
37
+ ), m = a(k);
38
38
  export {
39
- h as GoToFirstIcon
39
+ m as GoToFirstIcon
40
40
  };
@@ -1,14 +1,14 @@
1
1
  "use client";
2
- import { jsxs as a, jsx as o } from "react/jsx-runtime";
3
- import d from "./IconBase.js";
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 k = ({ className: r, ariaHidden: t, title: n = "Instagram", description: e, size: s = 24 }, i) => /* @__PURE__ */ a(
6
- d,
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: n,
11
- description: e,
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
- ), u = c(k);
37
+ ), h = c(L);
38
38
  export {
39
- u as GoToLastIcon
39
+ h as GoToLastIcon
40
40
  };
@@ -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 w, forwardRef as x, useId as f } from "react";
4
- const u = w(""), v = ({ children: d, title: i, size: n = 24, ariaHidden: e, description: t = "", className: h = "", style: a }, g) => {
5
- const l = f(), r = e ? "" : `${l}_title`, s = !e && t ? `${l}_desc` : "";
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(u.Provider, { value: l, children: d })
26
+ /* @__PURE__ */ o(v.Provider, { value: l, children: d })
26
27
  ]
27
28
  }
28
29
  );
29
- }, B = x(v);
30
+ });
30
31
  export {
31
- u as SvgIdContext,
32
- B as default
32
+ v as SvgIdContext,
33
+ b as default
33
34
  };