marko 5.38.23 → 5.38.25
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 +3 -3
- package/tags-html.d.ts +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "marko",
|
|
3
|
-
"version": "5.38.
|
|
3
|
+
"version": "5.38.25",
|
|
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.
|
|
73
|
-
"@marko/runtime-tags": "^6.0.
|
|
72
|
+
"@marko/compiler": "^5.39.56",
|
|
73
|
+
"@marko/runtime-tags": "^6.0.146",
|
|
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
|
@@ -705,6 +705,12 @@ declare global {
|
|
|
705
705
|
}
|
|
706
706
|
interface Dfn extends HTMLAttributes<HTMLElement> {}
|
|
707
707
|
interface Dialog extends HTMLAttributes<HTMLDialogElement> {
|
|
708
|
+
/**
|
|
709
|
+
* Specifies the types of user actions that can be used to close the `<dialog>` element.
|
|
710
|
+
* @see https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-dialog-closedby
|
|
711
|
+
*/
|
|
712
|
+
closedby?: AttrMissing | "any" | "closerequest" | "none";
|
|
713
|
+
|
|
708
714
|
/**
|
|
709
715
|
* Specifies whether the `<dialog>` element is open.
|
|
710
716
|
* @see https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-dialog-open
|
|
@@ -1308,7 +1314,7 @@ declare global {
|
|
|
1308
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`.
|
|
1309
1315
|
* If the `checkedValue` is falsy then `checked` is always `false`.
|
|
1310
1316
|
*/
|
|
1311
|
-
checkedValue?:
|
|
1317
|
+
checkedValue?: AttrStringOrNumber | string[] | number[];
|
|
1312
1318
|
/**
|
|
1313
1319
|
* Called whenever a `input type="checkbox"` or `input type="radio"` using the `checkedValue` attribute has changed.
|
|
1314
1320
|
* When `checkedValueChange` is a function, `checked` becomes controlled.
|
|
@@ -1896,7 +1902,7 @@ declare global {
|
|
|
1896
1902
|
* When the `value` is a string, nested `<option>` tags with a matching `value` attribute become `selected`.
|
|
1897
1903
|
* When the `value` is an array of strings, nested `<option>` tags with a `value` contained within the array are `selected.
|
|
1898
1904
|
*/
|
|
1899
|
-
value?:
|
|
1905
|
+
value?: AttrStringOrNumber | string[] | number[];
|
|
1900
1906
|
|
|
1901
1907
|
/**
|
|
1902
1908
|
* Called whenever a the `value` property of the `select` has changed.
|