@snailicid3/gbt-scope 0.0.1
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/CHANGELOG.md +7 -0
- package/README.md +23 -0
- package/dist/index.cjs +702 -0
- package/dist/index.d.cts +308 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.ts +308 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +669 -0
- package/dist/index.js.map +1 -0
- package/package.json +119 -0
- package/types/components/GbtScopeFlatViewer.d.ts +30 -0
- package/types/components/GbtScopeFlatViewer.d.ts.map +1 -0
- package/types/components/GbtScopeMaterial.d.ts +28 -0
- package/types/components/GbtScopeMaterial.d.ts.map +1 -0
- package/types/components/GbtScopeMeshViewer.d.ts +30 -0
- package/types/components/GbtScopeMeshViewer.d.ts.map +1 -0
- package/types/helpers.d.ts +34 -0
- package/types/helpers.d.ts.map +1 -0
- package/types/index.d.ts +18 -0
- package/types/index.d.ts.map +1 -0
- package/types/materials/shader-radial-symmetry.d.ts +5 -0
- package/types/materials/shader-radial-symmetry.d.ts.map +1 -0
- package/types/motion/animator.d.ts +42 -0
- package/types/motion/animator.d.ts.map +1 -0
- package/types/motion/curve.d.ts +18 -0
- package/types/motion/curve.d.ts.map +1 -0
- package/types/motion/driver.d.ts +28 -0
- package/types/motion/driver.d.ts.map +1 -0
- package/types/motion/pointer.d.ts +24 -0
- package/types/motion/pointer.d.ts.map +1 -0
- package/types/motion/scroll.d.ts +25 -0
- package/types/motion/scroll.d.ts.map +1 -0
- package/types/types.d.ts +84 -0
- package/types/types.d.ts.map +1 -0
package/CHANGELOG.md
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @snailicid3/gbt-scope
|
|
2
|
+
|
|
3
|
+
React components for rendering GBT Scope kaleidoscope viewers.
|
|
4
|
+
|
|
5
|
+
### Repository
|
|
6
|
+
|
|
7
|
+
- **GitHub:**
|
|
8
|
+
[`@snailicid3/gbt-scope`](https://github.com/gbtunney/gbt-monorepov2/tree/main/packages/gbt-scope)
|
|
9
|
+
in [`gbt-monorepov2`](https://github.com/gbtunney/gbt-monorepov2)
|
|
10
|
+
|
|
11
|
+
### Usage
|
|
12
|
+
|
|
13
|
+
Run from the repository root:
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
pnpm --filter=@snailicid3/gbt-scope build:nx
|
|
17
|
+
pnpm --filter=@snailicid3/gbt-scope dev:storybook
|
|
18
|
+
pnpm --filter=@snailicid3/gbt-scope build:storybook:nx
|
|
19
|
+
pnpm --filter=@snailicid3/gbt-scope test:nx
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Chromatic runs through its own Nx target and needs `CHROMATIC_GBT_SCOPE_PROJECT_TOKEN` in `.env` at
|
|
23
|
+
the package root. See `.env.example`.
|