juxscript 1.0.61 → 1.0.63

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 (141) hide show
  1. package/bin/cli.js +161 -293
  2. package/docs/v2comps/HEADLESS.md +83 -0
  3. package/docs/v2comps/ISOMORPHISM.md +10 -0
  4. package/juxconfig.example.js +63 -58
  5. package/lib/componentsv2/base/BaseEngine.js +258 -0
  6. package/lib/componentsv2/base/BaseEngine.js.map +1 -0
  7. package/lib/componentsv2/base/BaseEngine.ts +303 -0
  8. package/lib/componentsv2/base/BaseSkin.js +108 -0
  9. package/lib/componentsv2/base/BaseSkin.js.map +1 -0
  10. package/lib/componentsv2/base/BaseSkin.ts +137 -0
  11. package/lib/componentsv2/base/GlobalBus.js +56 -0
  12. package/lib/componentsv2/base/GlobalBus.js.map +1 -0
  13. package/lib/componentsv2/base/GlobalBus.ts +60 -0
  14. package/lib/componentsv2/base/State.js +68 -0
  15. package/lib/componentsv2/base/State.js.map +1 -0
  16. package/lib/componentsv2/base/State.ts +62 -0
  17. package/lib/componentsv2/grid/component.js +41 -0
  18. package/lib/componentsv2/grid/component.js.map +1 -0
  19. package/lib/componentsv2/grid/component.ts +67 -0
  20. package/lib/componentsv2/grid/engine.js +73 -0
  21. package/lib/componentsv2/grid/engine.js.map +1 -0
  22. package/lib/componentsv2/grid/engine.ts +110 -0
  23. package/lib/componentsv2/grid/skin.js +95 -0
  24. package/lib/componentsv2/grid/skin.js.map +1 -0
  25. package/lib/componentsv2/grid/skin.ts +105 -0
  26. package/lib/componentsv2/grid/structure.css +58 -0
  27. package/lib/componentsv2/index.js +218 -0
  28. package/lib/componentsv2/index.js.map +1 -0
  29. package/lib/componentsv2/index.ts +253 -0
  30. package/lib/componentsv2/input/component.js +21 -0
  31. package/lib/componentsv2/input/component.js.map +1 -0
  32. package/lib/componentsv2/input/component.ts +28 -0
  33. package/lib/componentsv2/input/engine.js +50 -0
  34. package/lib/componentsv2/input/engine.js.map +1 -0
  35. package/lib/componentsv2/input/engine.ts +76 -0
  36. package/lib/componentsv2/input/skin.js +91 -0
  37. package/lib/componentsv2/input/skin.js.map +1 -0
  38. package/lib/componentsv2/input/skin.ts +91 -0
  39. package/lib/componentsv2/input/structure.css +47 -0
  40. package/lib/componentsv2/list/component.js +83 -0
  41. package/lib/componentsv2/list/component.js.map +1 -0
  42. package/lib/componentsv2/list/component.ts +97 -0
  43. package/lib/componentsv2/list/engine.js +261 -0
  44. package/lib/componentsv2/list/engine.js.map +1 -0
  45. package/lib/componentsv2/list/engine.ts +345 -0
  46. package/lib/componentsv2/list/skin.js +343 -0
  47. package/lib/componentsv2/list/skin.js.map +1 -0
  48. package/lib/componentsv2/list/skin.ts +367 -0
  49. package/lib/componentsv2/list/structure.css +359 -0
  50. package/lib/componentsv2/plugins/ClientSQLitePlugin.js +130 -0
  51. package/lib/componentsv2/plugins/ClientSQLitePlugin.js.map +1 -0
  52. package/lib/componentsv2/plugins/ClientSQLitePlugin.ts +154 -0
  53. package/lib/componentsv2/plugins/IndexedDBPlugin.js +75 -0
  54. package/lib/componentsv2/plugins/IndexedDBPlugin.js.map +1 -0
  55. package/lib/componentsv2/plugins/IndexedDBPlugin.ts +96 -0
  56. package/lib/componentsv2/plugins/LocalStoragePlugin.js +65 -0
  57. package/lib/componentsv2/plugins/LocalStoragePlugin.js.map +1 -0
  58. package/lib/componentsv2/plugins/LocalStoragePlugin.ts +86 -0
  59. package/lib/componentsv2/plugins/ServerSQLitePlugin.js +70 -0
  60. package/lib/componentsv2/plugins/ServerSQLitePlugin.js.map +1 -0
  61. package/lib/componentsv2/plugins/ServerSQLitePlugin.ts +99 -0
  62. package/lib/componentsv2/stubs/ComponentComposition.ts.stub +32 -0
  63. package/lib/componentsv2/stubs/ComponentEngine.ts.stub +36 -0
  64. package/lib/componentsv2/stubs/ComponentSkin.ts.stub +34 -0
  65. package/lib/componentsv2/stubs/ComponentStructure.css.stub +13 -0
  66. package/lib/componentsv2/tools/CreateSkin.js +62 -0
  67. package/lib/componentsv2/tools/DocSpam.js +134 -0
  68. package/lib/componentsv2/tools/FluencyAudit.js +141 -0
  69. package/lib/componentsv2/tools/OptionsAudit.js +177 -0
  70. package/lib/componentsv2/tools/Scaffold.js +140 -0
  71. package/lib/utils/fetch.js +428 -0
  72. package/lib/utils/fetch.js.map +1 -0
  73. package/machinery/build.js +2 -1
  74. package/machinery/compiler.js +200 -37
  75. package/machinery/config.js +93 -6
  76. package/machinery/diagnose.js +72 -0
  77. package/machinery/jux-module-pattern.md +118 -0
  78. package/machinery/server.js +23 -7
  79. package/machinery/verifier.js +143 -0
  80. package/machinery/watcher.js +53 -64
  81. package/package.json +11 -2
  82. package/lib/components/alert.ts +0 -200
  83. package/lib/components/app.ts +0 -258
  84. package/lib/components/badge.ts +0 -101
  85. package/lib/components/base/BaseComponent.ts +0 -417
  86. package/lib/components/base/FormInput.ts +0 -227
  87. package/lib/components/button.ts +0 -178
  88. package/lib/components/card.ts +0 -173
  89. package/lib/components/chart.ts +0 -231
  90. package/lib/components/checkbox.ts +0 -242
  91. package/lib/components/code.ts +0 -123
  92. package/lib/components/container.ts +0 -140
  93. package/lib/components/data.ts +0 -135
  94. package/lib/components/datepicker.ts +0 -234
  95. package/lib/components/dialog.ts +0 -172
  96. package/lib/components/divider.ts +0 -100
  97. package/lib/components/dropdown.ts +0 -186
  98. package/lib/components/element.ts +0 -267
  99. package/lib/components/error-handler.ts +0 -285
  100. package/lib/components/fileupload.ts +0 -309
  101. package/lib/components/grid.ts +0 -291
  102. package/lib/components/guard.ts +0 -92
  103. package/lib/components/heading.ts +0 -96
  104. package/lib/components/helpers.ts +0 -41
  105. package/lib/components/hero.ts +0 -224
  106. package/lib/components/icon.ts +0 -160
  107. package/lib/components/icons.ts +0 -175
  108. package/lib/components/include.ts +0 -440
  109. package/lib/components/input.ts +0 -457
  110. package/lib/components/list.ts +0 -419
  111. package/lib/components/loading.ts +0 -100
  112. package/lib/components/menu.ts +0 -260
  113. package/lib/components/modal.ts +0 -239
  114. package/lib/components/nav.ts +0 -257
  115. package/lib/components/paragraph.ts +0 -97
  116. package/lib/components/progress.ts +0 -139
  117. package/lib/components/radio.ts +0 -278
  118. package/lib/components/req.ts +0 -302
  119. package/lib/components/script.ts +0 -43
  120. package/lib/components/select.ts +0 -252
  121. package/lib/components/sidebar.ts +0 -167
  122. package/lib/components/style.ts +0 -43
  123. package/lib/components/switch.ts +0 -246
  124. package/lib/components/table.ts +0 -1249
  125. package/lib/components/tabs.ts +0 -250
  126. package/lib/components/theme-toggle.ts +0 -300
  127. package/lib/components/token-calculator.ts +0 -313
  128. package/lib/components/tooltip.ts +0 -144
  129. package/lib/components/view.ts +0 -190
  130. package/lib/components/write.ts +0 -272
  131. package/lib/jux.ts +0 -365
  132. package/lib/layouts/default.css +0 -260
  133. package/lib/layouts/figma.css +0 -334
  134. package/lib/reactivity/state.ts +0 -78
  135. package/machinery/bundleAssets.js +0 -0
  136. package/machinery/bundleJux.js +0 -0
  137. package/machinery/bundleVendors.js +0 -0
  138. package/presets/default/all.jux +0 -343
  139. package/presets/default/index.jux +0 -90
  140. package/presets/default/layout.css +0 -1612
  141. package/presets/default/layout.jux +0 -55
@@ -1,258 +0,0 @@
1
- import { ErrorHandler } from './error-handler.js';
2
-
3
- /**
4
- * App component options
5
- */
6
- export interface AppOptions {
7
- title?: string;
8
- theme?: 'light' | 'dark' | 'auto';
9
- favicon?: string;
10
- meta?: Record<string, string>;
11
- stylesheets?: string[];
12
- scripts?: string[];
13
- layout?: {
14
- header?: boolean | string;
15
- subheader?: boolean | string;
16
- sidebar?: boolean | string;
17
- main?: boolean | string;
18
- aside?: boolean | string;
19
- footer?: boolean | string;
20
- };
21
- }
22
-
23
- /**
24
- * App component state
25
- */
26
- type AppState = {
27
- title: string;
28
- theme: string;
29
- favicon: string;
30
- meta: Map<string, string>;
31
- stylesheets: string[];
32
- scripts: string[];
33
- layout: {
34
- header: boolean | string;
35
- subheader: boolean | string;
36
- sidebar: boolean | string;
37
- main: boolean | string;
38
- aside: boolean | string;
39
- footer: boolean | string;
40
- };
41
- };
42
-
43
- /**
44
- * App - Configure application-level settings
45
- * Manages document metadata, theme, and global configuration
46
- *
47
- * Usage:
48
- * jux.app('myApp').setup({
49
- * title: 'My App',
50
- * theme: 'dark',
51
- * favicon: '/favicon.ico',
52
- * stylesheets: [
53
- * '/lib/layouts/notion.css',
54
- * '/lib/presets/light.css'
55
- * ],
56
- * layout: {
57
- * header: true,
58
- * sidebar: true,
59
- * main: true,
60
- * footer: true
61
- * }
62
- * });
63
- *
64
- * // Or fluent
65
- * jux.app('myApp')
66
- * .title('My App')
67
- * .theme('dark')
68
- * .addStylesheet('/presets/main.css')
69
- * .render();
70
- */
71
- export class App {
72
- state: AppState;
73
- _componentId: string;
74
- id: string;
75
-
76
- constructor(id: string, options?: AppOptions) {
77
- this._componentId = id;
78
- this.id = id;
79
-
80
- const opts = options || {};
81
-
82
- this.state = {
83
- title: opts.title ?? '',
84
- theme: opts.theme ?? 'auto',
85
- favicon: opts.favicon ?? '',
86
- meta: new Map(Object.entries(opts.meta || {})),
87
- stylesheets: opts.stylesheets || [],
88
- scripts: opts.scripts || [],
89
- layout: {
90
- header: opts.layout?.header ?? false,
91
- subheader: opts.layout?.subheader ?? false,
92
- sidebar: opts.layout?.sidebar ?? false,
93
- main: opts.layout?.main ?? true,
94
- aside: opts.layout?.aside ?? false,
95
- footer: opts.layout?.footer ?? false
96
- }
97
- };
98
- }
99
-
100
- /* -------------------------
101
- * Fluent API
102
- * ------------------------- */
103
-
104
- title(value: string): this {
105
- this.state.title = value;
106
- return this;
107
- }
108
-
109
- theme(value: 'light' | 'dark' | 'auto'): this {
110
- this.state.theme = value;
111
- return this;
112
- }
113
-
114
- favicon(value: string): this {
115
- this.state.favicon = value;
116
- return this;
117
- }
118
-
119
- meta(name: string, content: string): this {
120
- this.state.meta.set(name, content);
121
- return this;
122
- }
123
-
124
- addStylesheet(url: string): this {
125
- if (!this.state.stylesheets.includes(url)) {
126
- this.state.stylesheets.push(url);
127
- }
128
- return this;
129
- }
130
-
131
- addScript(url: string): this {
132
- if (!this.state.scripts.includes(url)) {
133
- this.state.scripts.push(url);
134
- }
135
- return this;
136
- }
137
-
138
- /**
139
- * Setup app with comprehensive configuration
140
- */
141
- setup(options: AppOptions): this {
142
- if (options.title) this.state.title = options.title;
143
- if (options.theme) this.state.theme = options.theme;
144
- if (options.favicon) this.state.favicon = options.favicon;
145
-
146
- if (options.meta) {
147
- Object.entries(options.meta).forEach(([name, content]) => {
148
- this.state.meta.set(name, content);
149
- });
150
- }
151
-
152
- if (options.stylesheets) {
153
- options.stylesheets.forEach(url => this.addStylesheet(url));
154
- }
155
-
156
- if (options.scripts) {
157
- options.scripts.forEach(url => this.addScript(url));
158
- }
159
-
160
- if (options.layout) {
161
- this.state.layout = { ...this.state.layout, ...options.layout };
162
- }
163
-
164
- return this;
165
- }
166
-
167
- /* -------------------------
168
- * Render
169
- * ------------------------- */
170
-
171
- render(): this {
172
- if (typeof document === 'undefined') return this;
173
-
174
- try {
175
- const { title, theme, favicon, meta, stylesheets, scripts } = this.state;
176
-
177
- // Apply title
178
- if (title) {
179
- document.title = title;
180
- }
181
-
182
- // Apply theme
183
- if (theme) {
184
- document.body.setAttribute('data-theme', theme);
185
- document.body.classList.remove('theme-light', 'theme-dark', 'theme-auto');
186
- document.body.classList.add(`theme-${theme}`);
187
- }
188
-
189
- // Apply favicon
190
- if (favicon) {
191
- let link = document.querySelector<HTMLLinkElement>('link[rel="icon"]');
192
-
193
- if (!link) {
194
- link = document.createElement('link');
195
- link.rel = 'icon';
196
- document.head.appendChild(link);
197
- }
198
-
199
- link.href = favicon;
200
- }
201
-
202
- // Apply meta tags
203
- meta.forEach((content, name) => {
204
- let metaEl = document.querySelector<HTMLMetaElement>(`meta[name="${name}"]`);
205
-
206
- if (!metaEl) {
207
- metaEl = document.createElement('meta');
208
- metaEl.name = name;
209
- document.head.appendChild(metaEl);
210
- }
211
-
212
- metaEl.content = content;
213
- });
214
-
215
- // Load stylesheets
216
- stylesheets.forEach(url => {
217
- if (!document.querySelector(`link[href="${url}"]`)) {
218
- const link = document.createElement('link');
219
- link.rel = 'stylesheet';
220
- link.href = url;
221
- document.head.appendChild(link);
222
- }
223
- });
224
-
225
- // Load scripts
226
- scripts.forEach(url => {
227
- if (!document.querySelector(`script[src="${url}"]`)) {
228
- const script = document.createElement('script');
229
- script.src = url;
230
- document.head.appendChild(script);
231
- }
232
- });
233
-
234
- } catch (error: any) {
235
- ErrorHandler.captureError({
236
- component: 'App',
237
- method: 'render',
238
- message: error.message,
239
- stack: error.stack,
240
- timestamp: new Date(),
241
- context: {
242
- title: this.state.title,
243
- theme: this.state.theme,
244
- error: 'runtime_exception'
245
- }
246
- });
247
- }
248
-
249
- return this;
250
- }
251
- }
252
-
253
- /**
254
- * Factory helper
255
- */
256
- export function app(id: string, options?: AppOptions): App {
257
- return new App(id, options);
258
- }
@@ -1,101 +0,0 @@
1
- import { BaseComponent } from './base/BaseComponent.js';
2
-
3
- // Event definitions
4
- const TRIGGER_EVENTS = [] as const;
5
- const CALLBACK_EVENTS = [] as const;
6
-
7
- export interface BadgeOptions {
8
- text?: string;
9
- variant?: 'default' | 'success' | 'warning' | 'error' | 'info';
10
- pill?: boolean;
11
- style?: string;
12
- class?: string;
13
- }
14
-
15
- type BadgeState = {
16
- text: string;
17
- variant: string;
18
- pill: boolean;
19
- style: string;
20
- class: string;
21
- };
22
-
23
- export class Badge extends BaseComponent<BadgeState> {
24
- constructor(id: string, options: BadgeOptions = {}) {
25
- super(id, {
26
- text: options.text ?? '',
27
- variant: options.variant ?? 'default',
28
- pill: options.pill ?? false,
29
- style: options.style ?? '',
30
- class: options.class ?? ''
31
- });
32
- }
33
-
34
- protected getTriggerEvents(): readonly string[] {
35
- return TRIGGER_EVENTS;
36
- }
37
-
38
- protected getCallbackEvents(): readonly string[] {
39
- return CALLBACK_EVENTS;
40
- }
41
-
42
- /* ═════════════════════════════════════════════════════════════════
43
- * FLUENT API
44
- * ═════════════════════════════════════════════════════════════════ */
45
-
46
- // ✅ Inherited from BaseComponent
47
-
48
- text(value: string): this {
49
- this.state.text = value;
50
- return this;
51
- }
52
-
53
- variant(value: 'default' | 'success' | 'warning' | 'error' | 'info'): this {
54
- this.state.variant = value;
55
- return this;
56
- }
57
-
58
- pill(value: boolean): this {
59
- this.state.pill = value;
60
- return this;
61
- }
62
-
63
- /* ═════════════════════════════════════════════════════════════════
64
- * RENDER
65
- * ═════════════════════════════════════════════════════════════════ */
66
-
67
- render(targetId?: string): this {
68
- const container = this._setupContainer(targetId);
69
-
70
- const { text, variant, pill, style, class: className } = this.state;
71
-
72
- const badge = document.createElement('span');
73
- badge.className = `jux-badge jux-badge-${variant}`;
74
- if (pill) badge.classList.add('jux-badge-pill');
75
- badge.id = this._id;
76
- if (className) badge.className += ` ${className}`;
77
- if (style) badge.setAttribute('style', style);
78
- badge.textContent = text;
79
-
80
- this._wireStandardEvents(badge);
81
-
82
- // Wire sync for text
83
- this._syncBindings.forEach(({ property, stateObj, toState, toComponent }) => {
84
- if (property === 'text') {
85
- const transform = toComponent || ((v: any) => String(v));
86
- stateObj.subscribe((val: any) => {
87
- badge.textContent = transform(val);
88
- this.state.text = transform(val);
89
- });
90
- }
91
- });
92
-
93
- container.appendChild(badge);
94
-
95
- return this;
96
- }
97
- }
98
-
99
- export function badge(id: string, options: BadgeOptions = {}): Badge {
100
- return new Badge(id, options);
101
- }