marko 6.0.40 → 6.0.42

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "6.0.40",
3
+ "version": "6.0.42",
4
4
  "description": "Optimized runtime for Marko templates.",
5
5
  "keywords": [
6
6
  "api",
@@ -48,7 +48,7 @@
48
48
  "build": "node -r ~ts ./scripts/bundle.ts"
49
49
  },
50
50
  "dependencies": {
51
- "@marko/compiler": "^5.39.29",
51
+ "@marko/compiler": "^5.39.31",
52
52
  "csstype": "^3.1.3",
53
53
  "magic-string": "^0.30.17"
54
54
  },
package/tags-html.d.ts CHANGED
@@ -4346,7 +4346,10 @@ declare global {
4346
4346
  * Provide body content for the tag as a Marko.Body.
4347
4347
  * @see Marko.Body
4348
4348
  */
4349
- content?: Marko.Body<[], void>;
4349
+ content?:
4350
+ | AttrMissing
4351
+ | Marko.Body<[], void>
4352
+ | Marko.Template<Record<any, never>, void>;
4350
4353
 
4351
4354
  /**
4352
4355
  * data-* global attributes form a class of attributes called custom data attributes, that allow proprietary