marko 5.38.29 → 5.38.31
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/docs/custom-tags.md +1 -1
- package/package.json +3 -3
- package/tags-html.d.ts +6 -0
package/docs/custom-tags.md
CHANGED
|
@@ -146,7 +146,7 @@ To use [tags from npm](https://www.npmjs.com/search?q=keywords%3Amarko%20compone
|
|
|
146
146
|
npm install --save @marko-tags/match-media
|
|
147
147
|
```
|
|
148
148
|
|
|
149
|
-
Marko
|
|
149
|
+
Marko discovers tags from packages defined in your `package.json`, so you can start using them right away:
|
|
150
150
|
|
|
151
151
|
```marko
|
|
152
152
|
<div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "marko",
|
|
3
|
-
"version": "5.38.
|
|
3
|
+
"version": "5.38.31",
|
|
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.61",
|
|
73
|
+
"@marko/runtime-tags": "^6.0.157",
|
|
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
|
@@ -1293,6 +1293,12 @@ declare global {
|
|
|
1293
1293
|
*/
|
|
1294
1294
|
value?: AttrStringOrNumber;
|
|
1295
1295
|
|
|
1296
|
+
/**
|
|
1297
|
+
* Indicates that the file input allows the user to select a directory instead of a file.
|
|
1298
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory
|
|
1299
|
+
*/
|
|
1300
|
+
webkitdirectory?: AttrBoolean;
|
|
1301
|
+
|
|
1296
1302
|
/**
|
|
1297
1303
|
* The width of an image input in pixels.
|
|
1298
1304
|
* @see https://html.spec.whatwg.org/multipage/embedded-content-other.html#attr-dim-width
|