@operato/input 9.0.34 → 9.2.0
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/CHANGELOG.md +23 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +2 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/ox-input-audio.d.ts +15 -0
- package/dist/src/ox-input-audio.js +171 -0
- package/dist/src/ox-input-audio.js.map +1 -0
- package/dist/src/ox-input-video.d.ts +15 -0
- package/dist/src/ox-input-video.js +178 -0
- package/dist/src/ox-input-video.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +15 -7
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@operato/input",
|
|
3
3
|
"description": "Webcomponents for input following open-wc recommendations",
|
|
4
4
|
"author": "heartyoh@hatiolab.com",
|
|
5
|
-
"version": "9.0
|
|
5
|
+
"version": "9.2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/src/index.js",
|
|
8
8
|
"module": "dist/src/index.js",
|
|
@@ -45,6 +45,8 @@
|
|
|
45
45
|
"./ox-input-file.js": "./dist/src/ox-input-file.js",
|
|
46
46
|
"./ox-input-switch.js": "./dist/src/ox-input-switch.js",
|
|
47
47
|
"./ox-input-image.js": "./dist/src/ox-input-image.js",
|
|
48
|
+
"./ox-input-audio.js": "./dist/src/ox-input-audio.js",
|
|
49
|
+
"./ox-input-video.js": "./dist/src/ox-input-video.js",
|
|
48
50
|
"./ox-input-options.js": "./dist/src/ox-input-options.js",
|
|
49
51
|
"./ox-input-select-buttons.js": "./dist/src/ox-input-select-buttons.js",
|
|
50
52
|
"./ox-input-search.js": "./dist/src/ox-input-search.js",
|
|
@@ -144,6 +146,12 @@
|
|
|
144
146
|
"./ox-input-image.js": [
|
|
145
147
|
"./dist/src/ox-input-image.d.ts"
|
|
146
148
|
],
|
|
149
|
+
"./ox-input-audio.js": [
|
|
150
|
+
"./dist/src/ox-input-image.d.ts"
|
|
151
|
+
],
|
|
152
|
+
"./ox-input-video.js": [
|
|
153
|
+
"./dist/src/ox-input-image.d.ts"
|
|
154
|
+
],
|
|
147
155
|
"./ox-input-options.js": [
|
|
148
156
|
"./dist/src/ox-input-options.d.ts"
|
|
149
157
|
],
|
|
@@ -235,11 +243,11 @@
|
|
|
235
243
|
"@ctrl/tinycolor": "4.1.0",
|
|
236
244
|
"@lit/localize": "^0.12.1",
|
|
237
245
|
"@material/web": "^2.0.0",
|
|
238
|
-
"@operato/i18n": "^9.0
|
|
239
|
-
"@operato/pickr": "^9.0
|
|
240
|
-
"@operato/popup": "^9.0
|
|
241
|
-
"@operato/styles": "^9.0
|
|
242
|
-
"@operato/utils": "^9.0
|
|
246
|
+
"@operato/i18n": "^9.1.0",
|
|
247
|
+
"@operato/pickr": "^9.1.0",
|
|
248
|
+
"@operato/popup": "^9.1.0",
|
|
249
|
+
"@operato/styles": "^9.1.0",
|
|
250
|
+
"@operato/utils": "^9.1.0",
|
|
243
251
|
"@types/codemirror": "^5.60.5",
|
|
244
252
|
"@undecaf/zbar-wasm": "^0.11.0",
|
|
245
253
|
"codemirror": "^6.0.1",
|
|
@@ -281,5 +289,5 @@
|
|
|
281
289
|
"prettier --write"
|
|
282
290
|
]
|
|
283
291
|
},
|
|
284
|
-
"gitHead": "
|
|
292
|
+
"gitHead": "67d8efae40e89117c87959c157d928ba3c54c797"
|
|
285
293
|
}
|