@lark.js/mvc 0.0.15 → 0.0.17

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 (62) hide show
  1. package/README.md +324 -215
  2. package/dist/chunk-OGPBFCIK.js +105 -0
  3. package/dist/client.d.cts +63 -0
  4. package/dist/client.d.ts +10 -34
  5. package/dist/compiler.cjs +15534 -15854
  6. package/dist/compiler.d.cts +1 -1
  7. package/dist/compiler.d.ts +1 -1
  8. package/dist/compiler.js +15519 -15851
  9. package/dist/devtool.cjs +2617 -4152
  10. package/dist/devtool.d.cts +1 -2
  11. package/dist/devtool.d.ts +1 -2
  12. package/dist/devtool.js +2543 -4159
  13. package/dist/index.cjs +4128 -6008
  14. package/dist/index.d.cts +571 -1291
  15. package/dist/index.d.ts +571 -1291
  16. package/dist/index.js +4058 -5976
  17. package/dist/rspack.cjs +15648 -15935
  18. package/dist/rspack.d.cts +8 -45
  19. package/dist/rspack.d.ts +8 -45
  20. package/dist/rspack.js +15641 -15934
  21. package/dist/runtime.cjs +79 -79
  22. package/dist/runtime.js +19 -85
  23. package/dist/vite.cjs +15841 -15957
  24. package/dist/vite.d.cts +6 -7
  25. package/dist/vite.d.ts +6 -7
  26. package/dist/vite.js +15834 -15955
  27. package/dist/webpack.cjs +15648 -15985
  28. package/dist/webpack.d.cts +5 -33
  29. package/dist/webpack.d.ts +5 -33
  30. package/dist/webpack.js +15641 -15984
  31. package/package.json +3 -4
  32. package/dist/apply-style.d.ts +0 -9
  33. package/dist/cache.d.ts +0 -69
  34. package/dist/common.d.ts +0 -64
  35. package/dist/compiler/compile-template.d.ts +0 -16
  36. package/dist/compiler/compile-to-vdom-function.d.ts +0 -13
  37. package/dist/compiler/extract-global-vars.d.ts +0 -17
  38. package/dist/compiler/template-syntax.d.ts +0 -61
  39. package/dist/cross-site.d.ts +0 -29
  40. package/dist/dom.d.ts +0 -45
  41. package/dist/event-delegator.d.ts +0 -28
  42. package/dist/event-emitter.d.ts +0 -38
  43. package/dist/frame.d.ts +0 -143
  44. package/dist/framework.d.ts +0 -9
  45. package/dist/hmr.d.ts +0 -53
  46. package/dist/index.amd.js +0 -6285
  47. package/dist/index.umd.js +0 -6272
  48. package/dist/mark.d.ts +0 -26
  49. package/dist/module-loader.d.ts +0 -20
  50. package/dist/router.d.ts +0 -14
  51. package/dist/runtime.amd.js +0 -94
  52. package/dist/runtime.umd.js +0 -98
  53. package/dist/service.d.ts +0 -173
  54. package/dist/state.d.ts +0 -8
  55. package/dist/store.d.ts +0 -60
  56. package/dist/types.d.ts +0 -1259
  57. package/dist/updater.d.ts +0 -90
  58. package/dist/url-state.d.ts +0 -32
  59. package/dist/utils.d.ts +0 -90
  60. package/dist/vdom.d.ts +0 -45
  61. package/dist/view-registry.d.ts +0 -20
  62. package/dist/view.d.ts +0 -214
@@ -1,33 +1,6 @@
1
- /**
2
- * @lark.js/mvc Vite Plugin for Template Compilation
3
- *
4
- * Compiles .html template files using @lark.js/mvc template syntax
5
- * into JS function modules at build/dev time.
6
- *
7
- * 0 configuration — just add the plugin and it works.
8
- * - All template operators: = (escape), ! (raw), @ (ref lookup), : (binding)
9
- * - @event attribute processing with $g prefix
10
- * - $eu (URI encoding), $eq (quote encoding), $i (reference lookup)
11
- * - Debug mode with line tracking
12
- * - View ID injection
13
- * - Auto variable extraction
14
- *
15
- * Usage in vite.config.ts:
16
- * ```ts
17
- * import { larkMvcPlugin } from '@lark.js/mvc/vite';
18
- *
19
- * export default defineConfig({
20
- * plugins: [larkMvcPlugin()],
21
- * });
22
- * ```
23
- */
24
-
25
- interface LarkMvcVitePluginOptions {
26
- /** Enable debug mode with line tracking (default: false) */
27
- debug?: boolean;
28
- /** Enable virtual DOM output (default: false) */
29
- virtualDom?: boolean;
30
- }
1
+ import { LarkMvcVitePluginOptions } from './vite.cjs';
2
+ import 'vite';
3
+ import 'vite7';
31
4
 
32
5
  type LarkMvcWebpackLoaderOptions = LarkMvcVitePluginOptions;
33
6
  /** Webpack loader context */
@@ -70,7 +43,7 @@ declare function larkMvcLoader(this: LoaderContext, source: string): Promise<str
70
43
  * plugins: [
71
44
  * new LarkMvcPlugin({
72
45
  * debug: true,
73
- * virtualDom: false,
46
+ * vdom: false,
74
47
  * }),
75
48
  * ],
76
49
  * };
@@ -92,5 +65,4 @@ declare class LarkMvcPlugin {
92
65
  }): void;
93
66
  }
94
67
 
95
- export { LarkMvcPlugin, larkMvcLoader as default, larkMvcLoader };
96
- export type { LarkMvcWebpackLoaderOptions, LarkMvcWebpackPluginOptions };
68
+ export { LarkMvcPlugin, type LarkMvcWebpackLoaderOptions, type LarkMvcWebpackPluginOptions, larkMvcLoader as default, larkMvcLoader };
package/dist/webpack.d.ts CHANGED
@@ -1,33 +1,6 @@
1
- /**
2
- * @lark.js/mvc Vite Plugin for Template Compilation
3
- *
4
- * Compiles .html template files using @lark.js/mvc template syntax
5
- * into JS function modules at build/dev time.
6
- *
7
- * 0 configuration — just add the plugin and it works.
8
- * - All template operators: = (escape), ! (raw), @ (ref lookup), : (binding)
9
- * - @event attribute processing with $g prefix
10
- * - $eu (URI encoding), $eq (quote encoding), $i (reference lookup)
11
- * - Debug mode with line tracking
12
- * - View ID injection
13
- * - Auto variable extraction
14
- *
15
- * Usage in vite.config.ts:
16
- * ```ts
17
- * import { larkMvcPlugin } from '@lark.js/mvc/vite';
18
- *
19
- * export default defineConfig({
20
- * plugins: [larkMvcPlugin()],
21
- * });
22
- * ```
23
- */
24
-
25
- interface LarkMvcVitePluginOptions {
26
- /** Enable debug mode with line tracking (default: false) */
27
- debug?: boolean;
28
- /** Enable virtual DOM output (default: false) */
29
- virtualDom?: boolean;
30
- }
1
+ import { LarkMvcVitePluginOptions } from './vite.js';
2
+ import 'vite';
3
+ import 'vite7';
31
4
 
32
5
  type LarkMvcWebpackLoaderOptions = LarkMvcVitePluginOptions;
33
6
  /** Webpack loader context */
@@ -70,7 +43,7 @@ declare function larkMvcLoader(this: LoaderContext, source: string): Promise<str
70
43
  * plugins: [
71
44
  * new LarkMvcPlugin({
72
45
  * debug: true,
73
- * virtualDom: false,
46
+ * vdom: false,
74
47
  * }),
75
48
  * ],
76
49
  * };
@@ -92,5 +65,4 @@ declare class LarkMvcPlugin {
92
65
  }): void;
93
66
  }
94
67
 
95
- export { LarkMvcPlugin, larkMvcLoader as default, larkMvcLoader };
96
- export type { LarkMvcWebpackLoaderOptions, LarkMvcWebpackPluginOptions };
68
+ export { LarkMvcPlugin, type LarkMvcWebpackLoaderOptions, type LarkMvcWebpackPluginOptions, larkMvcLoader as default, larkMvcLoader };