@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.
@@ -1,23 +1,23 @@
1
1
  "use client";
2
2
  import "../styles/main.css";
3
- import { jsxs as a, jsx as o } from "react/jsx-runtime";
4
- import k from "./IconBase.js";
5
- import { forwardRef as C } from "react";
6
- const c = ({ className: r, ariaHidden: t, title: e = "Dashboard", description: n, size: s = 24, ...d }, i) => /* @__PURE__ */ a(
7
- k,
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: s,
9
+ size: n,
10
10
  className: r,
11
- title: e,
12
- description: n,
13
- ariaHidden: t,
14
- ref: i,
15
- ...d,
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: "M3.16962 6.91225C3.16962 5.60219 3.16962 4.94715 3.4247 4.44677C3.64907 4.00662 4.0071 3.64877 4.44747 3.42451C4.9481 3.16956 5.60346 3.16956 6.91418 3.16956H10.1907V7.84792H3.16962V6.91225Z",
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: "M13.345 15.6842H20.3661V16.6199C20.3661 17.9299 20.3661 18.585 20.111 19.0854C19.8867 19.5255 19.5286 19.8834 19.0883 20.1076C18.5877 20.3626 17.9322 20.3626 16.6215 20.3626H13.345V15.6842Z",
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: "M3.16956 11.0059H10.1906V20.3626H6.91412C5.6034 20.3626 4.94804 20.3626 4.44741 20.1076C4.00704 19.8834 3.64901 19.5255 3.42464 19.0854C3.16956 18.585 3.16956 17.93 3.16956 16.6199V11.0059Z",
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
- ), h = C(c);
60
- h.displayName = "DashboardIcon";
49
+ ), p = c(k);
50
+ p.displayName = "DashboardIcon";
61
51
  export {
62
- h as DashboardIcon
52
+ p as DashboardIcon
63
53
  };
@@ -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: any[]) => void;
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;