marko 5.25.3 → 5.25.4

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 (2) hide show
  1. package/index.d.ts +12 -12
  2. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -203,18 +203,18 @@ declare namespace Marko {
203
203
  replace(target: ChildNode): this;
204
204
  /** Replaces the children of an existing DOM element with the dom for the current instance. */
205
205
  replaceChildrenOf(target: ParentNode): this;
206
- /** Called when the component is firsted created. */
207
- onCreate?(input: this["input"], out: Marko.Out): void;
208
- /** Called every time the component receives input from it's parent. */
209
- onInput?(input: this["input"], out: Marko.Out): void | this["input"];
210
- /** Called after a component has successfully rendered, but before it's update has been applied to the dom. */
211
- onRender?(out: Marko.Out): void;
212
- /** Called after the first time the component renders and is attached to the dom. */
213
- onMount?(): void;
214
- /** Called when a components render has been applied to the DOM (excluding when it is initially mounted). */
215
- onUpdate?(): void;
216
- /** Called when a component is destroyed and removed from the dom. */
217
- onDestroy?(): void;
206
+ // /** Called when the component is firsted created. */
207
+ // onCreate?(input: this["input"], out: Marko.Out): void;
208
+ // /** Called every time the component receives input from it's parent. */
209
+ // onInput?(input: this["input"], out: Marko.Out): void | this["input"];
210
+ // /** Called after a component has successfully rendered, but before it's update has been applied to the dom. */
211
+ // onRender?(out: Marko.Out): void;
212
+ // /** Called after the first time the component renders and is attached to the dom. */
213
+ // onMount?(): void;
214
+ // /** Called when a components render has been applied to the DOM (excluding when it is initially mounted). */
215
+ // onUpdate?(): void;
216
+ // /** Called when a component is destroyed and removed from the dom. */
217
+ // onDestroy?(): void;
218
218
  }
219
219
 
220
220
  /** The top level api for a Marko Template. */
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "5.25.3",
3
+ "version": "5.25.4",
4
4
  "license": "MIT",
5
5
  "description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
6
6
  "dependencies": {
7
- "@marko/compiler": "^5.27.3",
8
- "@marko/translator-default": "^5.25.3",
7
+ "@marko/compiler": "^5.27.4",
8
+ "@marko/translator-default": "^5.25.4",
9
9
  "app-module-path": "^2.2.0",
10
10
  "argly": "^1.2.0",
11
11
  "browser-refresh-client": "1.1.4",