@spear-ai/spectral 1.3.59 → 1.3.61
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/Icons/DashboardIcon.js +17 -27
- package/dist/InputOTP.d.ts +4 -1
- package/dist/InputOTP.js +268 -203
- package/dist/components/Icons/DashboardIcon.d.ts.map +1 -1
- package/dist/components/InputOTP/InputOTP.d.ts +4 -1
- package/dist/components/InputOTP/InputOTP.d.ts.map +1 -1
- package/dist/features/LabelingTools/LabelingTools.d.ts.map +1 -1
- package/dist/features/LabelingTools.js +48 -54
- package/dist/styles/main.css +1 -1
- package/package.json +1 -1
- package/dist/features/HorizonColorGrid/HorizonColorGrid.d.ts +0 -3
- package/dist/features/HorizonColorGrid/HorizonColorGrid.d.ts.map +0 -1
- package/dist/features/HorizonColorGrid.js +0 -71
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import "../styles/main.css";
|
|
3
|
-
import { jsxs as
|
|
4
|
-
import
|
|
5
|
-
import { forwardRef as
|
|
6
|
-
const
|
|
7
|
-
|
|
3
|
+
import { jsxs as h, jsx as o } from "react/jsx-runtime";
|
|
4
|
+
import i from "./IconBase.js";
|
|
5
|
+
import { forwardRef as c } from "react";
|
|
6
|
+
const k = ({ className: r, ariaHidden: a, title: t = "Dashboard", description: e, size: n = 24, ...s }, d) => /* @__PURE__ */ h(
|
|
7
|
+
i,
|
|
8
8
|
{
|
|
9
|
-
size:
|
|
9
|
+
size: n,
|
|
10
10
|
className: r,
|
|
11
|
-
title:
|
|
12
|
-
description:
|
|
13
|
-
ariaHidden:
|
|
14
|
-
ref:
|
|
15
|
-
...
|
|
11
|
+
title: t,
|
|
12
|
+
description: e,
|
|
13
|
+
ariaHidden: a,
|
|
14
|
+
ref: d,
|
|
15
|
+
...s,
|
|
16
16
|
children: [
|
|
17
17
|
/* @__PURE__ */ o(
|
|
18
18
|
"path",
|
|
19
19
|
{
|
|
20
|
-
d: "
|
|
20
|
+
d: "M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z",
|
|
21
21
|
stroke: "currentColor",
|
|
22
22
|
strokeWidth: "2",
|
|
23
23
|
strokeLinecap: "round",
|
|
@@ -27,7 +27,7 @@ const c = ({ className: r, ariaHidden: t, title: e = "Dashboard", description: n
|
|
|
27
27
|
/* @__PURE__ */ o(
|
|
28
28
|
"path",
|
|
29
29
|
{
|
|
30
|
-
d: "
|
|
30
|
+
d: "M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z",
|
|
31
31
|
stroke: "currentColor",
|
|
32
32
|
strokeWidth: "2",
|
|
33
33
|
strokeLinecap: "round",
|
|
@@ -37,17 +37,7 @@ const c = ({ className: r, ariaHidden: t, title: e = "Dashboard", description: n
|
|
|
37
37
|
/* @__PURE__ */ o(
|
|
38
38
|
"path",
|
|
39
39
|
{
|
|
40
|
-
d: "
|
|
41
|
-
stroke: "currentColor",
|
|
42
|
-
strokeWidth: "2",
|
|
43
|
-
strokeLinecap: "round",
|
|
44
|
-
strokeLinejoin: "round"
|
|
45
|
-
}
|
|
46
|
-
),
|
|
47
|
-
/* @__PURE__ */ o(
|
|
48
|
-
"path",
|
|
49
|
-
{
|
|
50
|
-
d: "M13.345 3.16956H16.6215C17.9322 3.16956 18.5877 3.16956 19.0883 3.42451C19.5286 3.64877 19.8867 4.00662 20.111 4.44677C20.3661 4.94715 20.3661 5.60219 20.3661 6.91225V12.5263H13.345V3.16956Z",
|
|
40
|
+
d: "M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z",
|
|
51
41
|
stroke: "currentColor",
|
|
52
42
|
strokeWidth: "2",
|
|
53
43
|
strokeLinecap: "round",
|
|
@@ -56,8 +46,8 @@ const c = ({ className: r, ariaHidden: t, title: e = "Dashboard", description: n
|
|
|
56
46
|
)
|
|
57
47
|
]
|
|
58
48
|
}
|
|
59
|
-
),
|
|
60
|
-
|
|
49
|
+
), p = c(k);
|
|
50
|
+
p.displayName = "DashboardIcon";
|
|
61
51
|
export {
|
|
62
|
-
|
|
52
|
+
p as DashboardIcon
|
|
63
53
|
};
|
package/dist/InputOTP.d.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { OTPInputProps } from 'input-otp';
|
|
2
2
|
type InputOTPRootProps = Omit<OTPInputProps, 'textAlign' | 'pushPasswordManagerStrategy' | 'pasteTransformer' | 'noScriptCSSFallback' | 'placeholder' | 'containerClassName' | 'render'> & {
|
|
3
|
-
onComplete?: (...args:
|
|
3
|
+
onComplete?: (...args: unknown[]) => void;
|
|
4
4
|
inputMode?: 'numeric' | 'text' | 'decimal' | 'tel' | 'search' | 'email' | 'url';
|
|
5
5
|
className?: string;
|
|
6
6
|
separator?: boolean;
|
|
7
|
+
variant?: 'outlined' | 'filled';
|
|
8
|
+
groupSize?: number;
|
|
9
|
+
separatorPositions?: number[];
|
|
7
10
|
};
|
|
8
11
|
export type InputOTPProps = InputOTPRootProps & ({
|
|
9
12
|
value: number | string;
|