marko 6.0.86 → 6.0.88
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/debug/dom.js +6 -4
 - package/dist/debug/dom.mjs +6 -4
 - package/dist/debug/html.js +67 -58
 - package/dist/debug/html.mjs +67 -58
 - package/dist/dom/queue.d.ts +1 -1
 - package/dist/dom.js +5 -3
 - package/dist/dom.mjs +5 -3
 - package/dist/html/writer.d.ts +1 -0
 - package/dist/html.js +14 -12
 - package/dist/html.mjs +14 -12
 - package/dist/translator/core/index.d.ts +1 -0
 - package/dist/translator/core/textarea.d.ts +3 -0
 - package/dist/translator/index.d.ts +1 -0
 - package/dist/translator/index.js +767 -674
 - package/dist/translator/visitors/program/index.d.ts +4 -0
 - package/dist/translator/visitors/program/pre-analyze.d.ts +3 -0
 - package/dist/translator/visitors/tag/index.d.ts +0 -3
 - package/dist/translator/visitors/tag/native-tag.d.ts +0 -3
 - package/package.json +1 -1
 
| 
         @@ -1,6 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import { types as t } from "@marko/compiler";
         
     | 
| 
       2 
2 
     | 
    
         
             
            import { type BindingPropTree } from "../../util/binding-prop-tree";
         
     | 
| 
       3 
3 
     | 
    
         
             
            import { type Sources } from "../../util/references";
         
     | 
| 
      
 4 
     | 
    
         
            +
            import { preAnalyze } from "./pre-analyze";
         
     | 
| 
       4 
5 
     | 
    
         
             
            export type ParamSerializeReason = NonNullable<Sources["param"]>;
         
     | 
| 
       5 
6 
     | 
    
         
             
            export interface ParamSerializeReasonGroup {
         
     | 
| 
       6 
7 
     | 
    
         
             
                id: symbol;
         
     | 
| 
         @@ -30,6 +31,9 @@ declare const _default: { 
     | 
|
| 
       30 
31 
     | 
    
         
             
                    enter(this: unknown, program: t.NodePath<t.Program>): void;
         
     | 
| 
       31 
32 
     | 
    
         
             
                    exit(this: unknown, program: t.NodePath<t.Program>): void;
         
     | 
| 
       32 
33 
     | 
    
         
             
                };
         
     | 
| 
      
 34 
     | 
    
         
            +
                transform: {
         
     | 
| 
      
 35 
     | 
    
         
            +
                    exit: typeof preAnalyze;
         
     | 
| 
      
 36 
     | 
    
         
            +
                };
         
     | 
| 
       33 
37 
     | 
    
         
             
                analyze: {
         
     | 
| 
       34 
38 
     | 
    
         
             
                    enter(this: unknown, program: t.NodePath<t.Program>): void;
         
     | 
| 
       35 
39 
     | 
    
         
             
                    exit(this: unknown, program: t.NodePath<t.Program>): void;
         
     | 
| 
         @@ -1,8 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import { types as t } from "@marko/compiler";
         
     | 
| 
       2 
2 
     | 
    
         
             
            declare const _default: {
         
     | 
| 
       3 
     | 
    
         
            -
                transform: {
         
     | 
| 
       4 
     | 
    
         
            -
                    enter(this: unknown, tag: t.NodePath<t.MarkoTag>): void;
         
     | 
| 
       5 
     | 
    
         
            -
                };
         
     | 
| 
       6 
3 
     | 
    
         
             
                analyze: {
         
     | 
| 
       7 
4 
     | 
    
         
             
                    enter(this: unknown, tag: t.NodePath<t.MarkoTag>): void;
         
     | 
| 
       8 
5 
     | 
    
         
             
                    exit(this: unknown, tag: t.NodePath<t.MarkoTag>): void;
         
     |