string-tune-3d 0.0.11 → 0.0.13
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/index.cjs +134 -133
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +380 -120
- package/dist/index.d.ts +380 -120
- package/dist/index.js +135 -134
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +134 -133
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/readme.md +11 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "string-tune-3d",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "CSS-driven 3D graphics library that lets you control Three.js objects through CSS custom properties.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"3d",
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
},
|
|
70
70
|
"license": "MIT",
|
|
71
71
|
"peerDependencies": {
|
|
72
|
-
"@fiddle-digital/string-tune": "^1.1.
|
|
72
|
+
"@fiddle-digital/string-tune": "^1.1.49"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@fiddle-digital/string-tune": "^1.1.
|
|
75
|
+
"@fiddle-digital/string-tune": "^1.1.49",
|
|
76
76
|
"@types/node": "^20.4.2",
|
|
77
77
|
"terser": "^5.19.0",
|
|
78
78
|
"tsup": "^8.4.0",
|
package/readme.md
CHANGED
|
@@ -21,6 +21,16 @@
|
|
|
21
21
|
<a href="#examples">Examples</a>
|
|
22
22
|
</p>
|
|
23
23
|
|
|
24
|
+
## Live Examples
|
|
25
|
+
|
|
26
|
+
| Demo | What it shows | Open |
|
|
27
|
+
| --------------------------- | ------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
|
|
28
|
+
| 🌟 **Particles Playground** | Emitter + instanced particles, motion tuning, and visual density controls | [Launch](https://codesandbox.io/p/sandbox/ycqkng) |
|
|
29
|
+
| ✨ **Filters Playground** | Full filter list, chaining effects, and post-process styling patterns | [Launch](https://codesandbox.io/p/sandbox/stringtune-3d-filter-list-4v2z5q) |
|
|
30
|
+
| 🔤 **3D Text Playground** | Font setup, extrusion/bevel controls, and text styling workflow | [Launch](https://codesandbox.io/p/sandbox/stringtune-3d-text-svqvlq) |
|
|
31
|
+
|
|
32
|
+
> Tip: fork any sandbox and tweak CSS variables live to explore the engine faster.
|
|
33
|
+
|
|
24
34
|
---
|
|
25
35
|
|
|
26
36
|
<p align="center">
|
|
@@ -29,7 +39,7 @@
|
|
|
29
39
|
|
|
30
40
|
## Overview
|
|
31
41
|
|
|
32
|
-
**StringTune-3D** is a 3D graphics module for the [StringTune](https://
|
|
42
|
+
**StringTune-3D** is a 3D graphics module for the [StringTune](https://www.npmjs.com/package/@fiddle-digital/string-tune) ecosystem that lets you control 3D objects through **CSS custom properties**. No imperative Three.js code — just HTML attributes and CSS.
|
|
33
43
|
|
|
34
44
|
```html
|
|
35
45
|
<div
|