@dynamicforms/vuetify-inputs 0.1.4 → 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,3 +1,4 @@
1
+ /* jshint esversion: 11 */
1
2
  export { VAutocomplete } from 'vuetify/components/VAutocomplete';
2
3
  export { VBtn } from 'vuetify/components/VBtn';
3
4
  export { VCheckbox } from 'vuetify/components/VCheckbox';
@@ -1,9 +1,8 @@
1
- import { App } from '~/vue';
2
-
1
+ /* jshint esversion: 11 */
3
2
  import * as VuetifyComponents from './vuetify-components-list';
4
3
 
5
4
  const DynamicFormsInputsVuetify = {
6
- install: (app: 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",
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",
@@ -13,13 +13,13 @@
13
13
  "require": "./dist/dynamicforms-vuetify-inputs.umd.cjs",
14
14
  "import": "./dist/dynamicforms-vuetify-inputs.js"
15
15
  },
16
- "./dist/vuetify-components": {
17
- "require": "./dist/vuetify-components.ts",
18
- "import": "./dist/vuetify-components.ts"
16
+ "./vuetify-components": {
17
+ "require": "./dist/vuetify-components.js",
18
+ "import": "./dist/vuetify-components.js"
19
19
  },
20
- "./dist/vuetify-components-list": {
21
- "require": "./dist/vuetify-components-list.ts",
22
- "import": "./dist/vuetify-components-list.ts"
20
+ "./vuetify-components-list": {
21
+ "require": "./dist/vuetify-components-list.js",
22
+ "import": "./dist/vuetify-components-list.js"
23
23
  }
24
24
  },
25
25
  "workspaces": [