spatial-ui-universe 0.1.6 → 0.1.8
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/.next/trace +1 -0
- package/.next/trace-build +1 -0
- package/dist/index.d.mts +19 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.js +923 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +883 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +1 -1
- package/src/Scene.tsx +12 -1
package/.next/trace
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"name":"generate-buildid","duration":207,"timestamp":8122340072,"id":4,"parentId":1,"tags":{},"startTime":1773997228014,"traceId":"f660e133f7979db9"},{"name":"load-custom-routes","duration":1272,"timestamp":8122340372,"id":5,"parentId":1,"tags":{},"startTime":1773997228015,"traceId":"f660e133f7979db9"},{"name":"create-dist-dir","duration":2052,"timestamp":8122341672,"id":6,"parentId":1,"tags":{},"startTime":1773997228016,"traceId":"f660e133f7979db9"},{"name":"clean","duration":1932,"timestamp":8122345019,"id":7,"parentId":1,"tags":{},"startTime":1773997228019,"traceId":"f660e133f7979db9"},{"name":"next-build","duration":56552,"timestamp":8122290827,"id":1,"tags":{"buildMode":"default","version":"16.2.0","bundler":"turbopack","failed":true},"startTime":1773997227965,"traceId":"f660e133f7979db9"}]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"name":"next-build","duration":56552,"timestamp":8122290827,"id":1,"tags":{"buildMode":"default","version":"16.2.0","bundler":"turbopack","failed":true},"startTime":1773997227965,"traceId":"f660e133f7979db9"}]
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
declare function Scene({ coreColor, particleColor, particleCount, particleShape, children }: {
|
|
5
|
+
coreColor?: string;
|
|
6
|
+
particleColor?: string;
|
|
7
|
+
particleCount?: number;
|
|
8
|
+
particleShape?: "dodecahedron" | "icosahedron" | "box";
|
|
9
|
+
children?: React.ReactNode;
|
|
10
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
declare const Button: ({ children, variant, className, customColor, customBg, customBorder, customRadius, customSize, style, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
13
|
+
declare const TextBox: ({ variant, className, customColor, customBg, customBorder, customRadius, style, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
14
|
+
declare const Dropdown: ({ options, variant, placeholder, className }: any) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
declare const Card: ({ children, variant, className, customColor, customBg, customBorder, customRadius, style, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
16
|
+
declare const Badge: ({ children, variant, className, customColor, customBg, customBorder, customRadius, style, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
17
|
+
declare const Switch: ({ checked, onChange, variant, className, customColor, customBg, customBorder, customRadius, style, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
18
|
+
|
|
19
|
+
export { Badge, Button, Card, Dropdown, Scene, Switch, TextBox };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
declare function Scene({ coreColor, particleColor, particleCount, particleShape, children }: {
|
|
5
|
+
coreColor?: string;
|
|
6
|
+
particleColor?: string;
|
|
7
|
+
particleCount?: number;
|
|
8
|
+
particleShape?: "dodecahedron" | "icosahedron" | "box";
|
|
9
|
+
children?: React.ReactNode;
|
|
10
|
+
}): react_jsx_runtime.JSX.Element;
|
|
11
|
+
|
|
12
|
+
declare const Button: ({ children, variant, className, customColor, customBg, customBorder, customRadius, customSize, style, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
13
|
+
declare const TextBox: ({ variant, className, customColor, customBg, customBorder, customRadius, style, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
14
|
+
declare const Dropdown: ({ options, variant, placeholder, className }: any) => react_jsx_runtime.JSX.Element;
|
|
15
|
+
declare const Card: ({ children, variant, className, customColor, customBg, customBorder, customRadius, style, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
16
|
+
declare const Badge: ({ children, variant, className, customColor, customBg, customBorder, customRadius, style, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
17
|
+
declare const Switch: ({ checked, onChange, variant, className, customColor, customBg, customBorder, customRadius, style, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
18
|
+
|
|
19
|
+
export { Badge, Button, Card, Dropdown, Scene, Switch, TextBox };
|