@dynamicforms/vuetify-inputs 0.1.5 → 0.1.6
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.
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/* jshint esversion: 11 */
|
|
3
2
|
import * as VuetifyComponents from './vuetify-components-list';
|
|
4
3
|
|
|
5
4
|
const DynamicFormsInputsVuetify = {
|
|
6
|
-
install: (app
|
|
5
|
+
install: (app) => {
|
|
7
6
|
Object.entries(VuetifyComponents).map(([name, component]) => app.component(name, component));
|
|
8
7
|
},
|
|
9
8
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamicforms/vuetify-inputs",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Visual components for data entry using @dynamicforms/vue-forms",
|
|
7
7
|
"author": "Jure Erznožnik",
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"import": "./dist/dynamicforms-vuetify-inputs.js"
|
|
15
15
|
},
|
|
16
16
|
"./vuetify-components": {
|
|
17
|
-
"require": "./dist/vuetify-components.
|
|
18
|
-
"import": "./dist/vuetify-components.
|
|
17
|
+
"require": "./dist/vuetify-components.js",
|
|
18
|
+
"import": "./dist/vuetify-components.js"
|
|
19
19
|
},
|
|
20
20
|
"./vuetify-components-list": {
|
|
21
|
-
"require": "./dist/vuetify-components-list.
|
|
22
|
-
"import": "./dist/vuetify-components-list.
|
|
21
|
+
"require": "./dist/vuetify-components-list.js",
|
|
22
|
+
"import": "./dist/vuetify-components-list.js"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"workspaces": [
|