juxscript 1.1.245 → 1.1.246

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.
Files changed (36) hide show
  1. package/dist/lib/components/dataframe.d.ts +1 -0
  2. package/dist/lib/components/dataframe.d.ts.map +1 -0
  3. package/dist/lib/components/dataframe.js +1 -0
  4. package/dist/lib/components/include.d.ts +86 -0
  5. package/dist/lib/components/include.d.ts.map +1 -0
  6. package/{lib/components/include.ts → dist/lib/components/include.js} +57 -100
  7. package/dist/lib/components/tag.d.ts +27 -0
  8. package/dist/lib/components/tag.d.ts.map +1 -0
  9. package/{lib/components/tag.ts → dist/lib/components/tag.js} +14 -25
  10. package/dist/lib/index.d.ts +17 -0
  11. package/dist/lib/index.d.ts.map +1 -0
  12. package/{index.js → dist/lib/index.js} +4 -2
  13. package/dist/lib/utils/codeparser.d.ts +29 -0
  14. package/dist/lib/utils/codeparser.d.ts.map +1 -0
  15. package/{lib/utils/codeparser.ts → dist/lib/utils/codeparser.js} +64 -91
  16. package/dist/lib/utils/fetch.d.ts +176 -0
  17. package/dist/lib/utils/fetch.d.ts.map +1 -0
  18. package/{lib/utils/fetch.ts → dist/lib/utils/fetch.js} +80 -206
  19. package/dist/lib/utils/formatId.d.ts +16 -0
  20. package/dist/lib/utils/formatId.d.ts.map +1 -0
  21. package/{lib/utils/formatId.ts → dist/lib/utils/formatId.js} +7 -8
  22. package/dist/lib/utils/idgen.d.ts +2 -0
  23. package/dist/lib/utils/idgen.d.ts.map +1 -0
  24. package/{lib/utils/idgen.ts → dist/lib/utils/idgen.js} +2 -4
  25. package/package.json +2 -7
  26. package/lib/components/dataframe.ts +0 -0
  27. package/lib/styles/animations.css +0 -218
  28. package/lib/styles/foundation.css +0 -542
  29. package/lib/styles/gradients.css +0 -326
  30. package/lib/styles/link.css +0 -158
  31. package/lib/styles/modal.css +0 -402
  32. package/lib/styles/modifiers.css +0 -103
  33. package/lib/styles/nav.css +0 -322
  34. package/lib/styles/shadcn.css +0 -960
  35. package/lib/styles/stacks.css +0 -132
  36. package/lib/styles/themes.css +0 -486
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.1.245",
3
+ "version": "1.1.246",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "./dist/index.js",
@@ -18,17 +18,12 @@
18
18
  "./package.json": "./package.json"
19
19
  },
20
20
  "files": [
21
- "index.js",
22
- "index.d.ts",
23
- "index.d.ts.map",
21
+ "dist",
24
22
  "css-classes-inventory.json",
25
23
  "dom-structure-map.json",
26
24
  "bin",
27
25
  "create",
28
- "lib",
29
26
  "machinery",
30
- "reactivity",
31
- "types",
32
27
  "juxconfig.example.js",
33
28
  "README.md",
34
29
  "LICENSE"
File without changes
@@ -1,218 +0,0 @@
1
- /* ═══════════════════════════════════════════════════════════════════
2
- * JUX ANIMATION SYSTEM
3
- * Keyframes, animation classes, speed/timing modifiers
4
- * ═══════════════════════════════════════════════════════════════════ */
5
-
6
- /* ═════════════════════════════════════════════════════════════════
7
- * KEYFRAME DEFINITIONS
8
- * ═════════════════════════════════════════════════════════════════ */
9
-
10
- @keyframes jux-fade-in {
11
- from { opacity: 0; }
12
- to { opacity: 1; }
13
- }
14
-
15
- @keyframes jux-slide-in-up {
16
- from { transform: translateY(20px); opacity: 0; }
17
- to { transform: translateY(0); opacity: 1; }
18
- }
19
-
20
- @keyframes jux-slide-in-down {
21
- from { transform: translateY(-20px); opacity: 0; }
22
- to { transform: translateY(0); opacity: 1; }
23
- }
24
-
25
- @keyframes jux-slide-in-left {
26
- from { transform: translateX(-20px); opacity: 0; }
27
- to { transform: translateX(0); opacity: 1; }
28
- }
29
-
30
- @keyframes jux-slide-in-right {
31
- from { transform: translateX(20px); opacity: 0; }
32
- to { transform: translateX(0); opacity: 1; }
33
- }
34
-
35
- @keyframes jux-scale-in {
36
- from { transform: scale(0.8); opacity: 0; }
37
- to { transform: scale(1); opacity: 1; }
38
- }
39
-
40
- @keyframes jux-zoom-in {
41
- from { transform: scale(0); opacity: 0; }
42
- to { transform: scale(1); opacity: 1; }
43
- }
44
-
45
- @keyframes jux-rotate-in {
46
- from { transform: rotate(-10deg); opacity: 0; }
47
- to { transform: rotate(0); opacity: 1; }
48
- }
49
-
50
- @keyframes jux-flip-in-x {
51
- from { transform: perspective(400px) rotateX(90deg); opacity: 0; }
52
- to { transform: perspective(400px) rotateX(0); opacity: 1; }
53
- }
54
-
55
- @keyframes jux-flip-in-y {
56
- from { transform: perspective(400px) rotateY(90deg); opacity: 0; }
57
- to { transform: perspective(400px) rotateY(0); opacity: 1; }
58
- }
59
-
60
- @keyframes jux-bounce-in {
61
- 0% { transform: scale(0); opacity: 0; }
62
- 50% { transform: scale(1.1); }
63
- 70% { transform: scale(0.9); }
64
- 100% { transform: scale(1); opacity: 1; }
65
- }
66
-
67
- @keyframes jux-elastic-in {
68
- 0% { transform: scale(0); }
69
- 55% { transform: scale(1.2); }
70
- 70% { transform: scale(0.9); }
71
- 85% { transform: scale(1.05); }
72
- 100% { transform: scale(1); }
73
- }
74
-
75
- @keyframes jux-blur-in {
76
- from { filter: blur(10px); opacity: 0; }
77
- to { filter: blur(0); opacity: 1; }
78
- }
79
-
80
- @keyframes jux-glow-pulse {
81
- 0%, 100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
82
- 50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.8); }
83
- }
84
-
85
- /* ═════════════════════════════════════════════════════════════════
86
- * CONTAINER-LEVEL ANIMATIONS (Apply to element itself)
87
- * ═════════════════════════════════════════════════════════════════ */
88
-
89
- .jux-stack-fade-in { animation: jux-fade-in 0.3s ease-out; }
90
- .jux-stack-slide-up { animation: jux-slide-in-up 0.4s ease-out; }
91
- .jux-stack-slide-down { animation: jux-slide-in-down 0.4s ease-out; }
92
- .jux-stack-slide-left { animation: jux-slide-in-left 0.4s ease-out; }
93
- .jux-stack-slide-right { animation: jux-slide-in-right 0.4s ease-out; }
94
- .jux-stack-scale-in { animation: jux-scale-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
95
- .jux-stack-zoom-in { animation: jux-zoom-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
96
- .jux-stack-rotate-in { animation: jux-rotate-in 0.5s ease-out; }
97
- .jux-stack-flip-x { animation: jux-flip-in-x 0.6s ease-out; }
98
- .jux-stack-flip-y { animation: jux-flip-in-y 0.6s ease-out; }
99
- .jux-stack-bounce-in { animation: jux-bounce-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
100
- .jux-stack-elastic-in { animation: jux-elastic-in 0.8s ease-out; }
101
- .jux-stack-blur-in { animation: jux-blur-in 0.5s ease-out; }
102
- .jux-stack-glow { animation: jux-glow-pulse 2s ease-in-out infinite; }
103
-
104
- /* ═════════════════════════════════════════════════════════════════
105
- * ITEM-LEVEL ANIMATIONS (Apply to direct children)
106
- * ═════════════════════════════════════════════════════════════════ */
107
-
108
- .jux-stack-fade-in-items > * { animation: jux-fade-in 0.3s ease-out; }
109
- .jux-stack-slide-up-items > * { animation: jux-slide-in-up 0.4s ease-out; }
110
- .jux-stack-slide-down-items > * { animation: jux-slide-in-down 0.4s ease-out; }
111
- .jux-stack-slide-left-items > * { animation: jux-slide-in-left 0.4s ease-out; }
112
- .jux-stack-slide-right-items > * { animation: jux-slide-in-right 0.4s ease-out; }
113
- .jux-stack-scale-in-items > * { animation: jux-scale-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
114
- .jux-stack-zoom-in-items > * { animation: jux-zoom-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
115
- .jux-stack-rotate-in-items > * { animation: jux-rotate-in 0.5s ease-out; }
116
- .jux-stack-flip-x-items > * { animation: jux-flip-in-x 0.6s ease-out; }
117
- .jux-stack-flip-y-items > * { animation: jux-flip-in-y 0.6s ease-out; }
118
- .jux-stack-bounce-in-items > * { animation: jux-bounce-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
119
- .jux-stack-elastic-in-items > * { animation: jux-elastic-in 0.8s ease-out; }
120
- .jux-stack-blur-in-items > * { animation: jux-blur-in 0.5s ease-out; }
121
- .jux-stack-glow-items > * { animation: jux-glow-pulse 2s ease-in-out infinite; }
122
-
123
- /* ═════════════════════════════════════════════════════════════════
124
- * SPEED MODIFIERS (Override animation duration)
125
- * ═════════════════════════════════════════════════════════════════ */
126
-
127
- .jux-stack-instant,
128
- .jux-stack-instant > * { animation-duration: 0.15s !important; }
129
-
130
- .jux-stack-fast,
131
- .jux-stack-fast > * { animation-duration: 0.3s !important; }
132
-
133
- .jux-stack-normal,
134
- .jux-stack-normal > * { animation-duration: 0.5s !important; }
135
-
136
- .jux-stack-slow,
137
- .jux-stack-slow > * { animation-duration: 0.8s !important; }
138
-
139
- .jux-stack-slower,
140
- .jux-stack-slower > * { animation-duration: 1.2s !important; }
141
-
142
- /* ═════════════════════════════════════════════════════════════════
143
- * TIMING FUNCTIONS (Override easing)
144
- * ═════════════════════════════════════════════════════════════════ */
145
-
146
- .jux-stack-linear,
147
- .jux-stack-linear > * { animation-timing-function: linear !important; }
148
-
149
- .jux-stack-ease,
150
- .jux-stack-ease > * { animation-timing-function: ease !important; }
151
-
152
- .jux-stack-ease-in,
153
- .jux-stack-ease-in > * { animation-timing-function: ease-in !important; }
154
-
155
- .jux-stack-ease-out,
156
- .jux-stack-ease-out > * { animation-timing-function: ease-out !important; }
157
-
158
- .jux-stack-ease-in-out,
159
- .jux-stack-ease-in-out > * { animation-timing-function: ease-in-out !important; }
160
-
161
- .jux-stack-bounce-timing,
162
- .jux-stack-bounce-timing > * { animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55) !important; }
163
-
164
- .jux-stack-elastic-timing,
165
- .jux-stack-elastic-timing > * { animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1) !important; }
166
-
167
- /* ═════════════════════════════════════════════════════════════════
168
- * DELAY MODIFIERS (Animation start delay)
169
- * ═════════════════════════════════════════════════════════════════ */
170
-
171
- .jux-stack-delay-100 { animation-delay: 100ms !important; }
172
- .jux-stack-delay-200 { animation-delay: 200ms !important; }
173
- .jux-stack-delay-300 { animation-delay: 300ms !important; }
174
- .jux-stack-delay-500 { animation-delay: 500ms !important; }
175
- .jux-stack-delay-1000 { animation-delay: 1000ms !important; }
176
-
177
- /* ═════════════════════════════════════════════════════════════════
178
- * STAGGER DELAYS (Sequential item delays)
179
- * DEFAULT: 100ms between items
180
- * Use .stagger(customMs) to override with inline styles
181
- * ═════════════════════════════════════════════════════════════════ */
182
-
183
- .jux-stack-stagger > *:nth-child(1) { animation-delay: 0ms; }
184
- .jux-stack-stagger > *:nth-child(2) { animation-delay: 100ms; }
185
- .jux-stack-stagger > *:nth-child(3) { animation-delay: 200ms; }
186
- .jux-stack-stagger > *:nth-child(4) { animation-delay: 300ms; }
187
- .jux-stack-stagger > *:nth-child(5) { animation-delay: 400ms; }
188
- .jux-stack-stagger > *:nth-child(6) { animation-delay: 500ms; }
189
- .jux-stack-stagger > *:nth-child(7) { animation-delay: 600ms; }
190
- .jux-stack-stagger > *:nth-child(8) { animation-delay: 700ms; }
191
- .jux-stack-stagger > *:nth-child(9) { animation-delay: 800ms; }
192
- .jux-stack-stagger > *:nth-child(10) { animation-delay: 900ms; }
193
-
194
- /* ═════════════════════════════════════════════════════════════════
195
- * INTERACTIVE EFFECTS (Hover/Focus transitions)
196
- * ═════════════════════════════════════════════════════════════════ */
197
-
198
- .jux-stack-interactive > * {
199
- transition: transform 0.3s ease, box-shadow 0.3s ease;
200
- cursor: pointer;
201
- }
202
-
203
- .jux-stack-interactive > *:hover {
204
- transform: translateY(-4px);
205
- box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
206
- }
207
-
208
- /* ═════════════════════════════════════════════════════════════════
209
- * TRANSITION UTILITIES
210
- * ═════════════════════════════════════════════════════════════════ */
211
-
212
- .jux-stack-smooth {
213
- transition: all 0.3s ease;
214
- }
215
-
216
- .jux-stack-smooth-items > * {
217
- transition: all 0.3s ease;
218
- }