marko 5.38.24 → 5.38.26

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/package.json +3 -3
  2. package/tags-html.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "5.38.24",
3
+ "version": "5.38.26",
4
4
  "description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
5
5
  "keywords": [
6
6
  "front-end",
@@ -69,8 +69,8 @@
69
69
  "build": "babel ./src --out-dir ./dist --extensions .js --copy-files --config-file ../../babel.config.js --env-name=production"
70
70
  },
71
71
  "dependencies": {
72
- "@marko/compiler": "^5.39.53",
73
- "@marko/runtime-tags": "^6.0.145",
72
+ "@marko/compiler": "^5.39.57",
73
+ "@marko/runtime-tags": "^6.0.151",
74
74
  "app-module-path": "^2.2.0",
75
75
  "argly": "^1.2.0",
76
76
  "browser-refresh-client": "1.1.4",
package/tags-html.d.ts CHANGED
@@ -1314,7 +1314,7 @@ declare global {
1314
1314
  * When `checkedValue` is an array of strings, the `checked` attribute will be set to a boolean that is `true` if the `checkedValue` array includes the `value`.
1315
1315
  * If the `checkedValue` is falsy then `checked` is always `false`.
1316
1316
  */
1317
- checkedValue?: AttrMissing | string | string[];
1317
+ checkedValue?: AttrStringOrNumber | string[] | number[];
1318
1318
  /**
1319
1319
  * Called whenever a `input type="checkbox"` or `input type="radio"` using the `checkedValue` attribute has changed.
1320
1320
  * When `checkedValueChange` is a function, `checked` becomes controlled.
@@ -1902,7 +1902,7 @@ declare global {
1902
1902
  * When the `value` is a string, nested `<option>` tags with a matching `value` attribute become `selected`.
1903
1903
  * When the `value` is an array of strings, nested `<option>` tags with a `value` contained within the array are `selected.
1904
1904
  */
1905
- value?: AttrMissing | string | string[];
1905
+ value?: AttrStringOrNumber | string[] | number[];
1906
1906
 
1907
1907
  /**
1908
1908
  * Called whenever a the `value` property of the `select` has changed.