@josercl/form-maker 1.1.0-beta05 → 1.1.0-beta06

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,8 +1,8 @@
1
1
  <script setup>
2
2
  import { computed } from 'vue';
3
- import setupVModel, { useValidator } from '../utils';
3
+ import setupVModel, { useValidator } from '../utils.js';
4
4
 
5
- import { FormInputMixin, injectFormClasses } from './inputs/FormInputMixin';
5
+ import { FormInputMixin, injectFormClasses } from './inputs/FormInputMixin.js';
6
6
 
7
7
  const props = defineProps({
8
8
  ...FormInputMixin.props,
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import setupVModel from '../../utils';
3
- import { FormInputMixin } from './FormInputMixin';
3
+ import { FormInputMixin } from './FormInputMixin.js';
4
4
 
5
5
  const props = defineProps(FormInputMixin.props);
6
6
  const emit = defineEmits(FormInputMixin.emits);
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import { computed, toRefs } from 'vue';
3
- import { FormInputMixin } from './FormInputMixin';
3
+ import { FormInputMixin } from './FormInputMixin.js';
4
4
 
5
5
  const props = defineProps({
6
6
  ...FormInputMixin.props,
@@ -1,5 +1,5 @@
1
1
  <script setup>
2
- import { FormInputMixin } from './FormInputMixin';
2
+ import { FormInputMixin } from './FormInputMixin.js';
3
3
 
4
4
  defineProps(FormInputMixin.props);
5
5
  const emit = defineEmits(FormInputMixin.emits);
@@ -1,5 +1,5 @@
1
1
  <script setup>
2
- import { FormInputMixin } from './FormInputMixin';
2
+ import { FormInputMixin } from './FormInputMixin.js';
3
3
 
4
4
  defineProps({
5
5
  ...FormInputMixin.props,
@@ -1,7 +1,7 @@
1
1
  <script setup>
2
2
  import { computed } from 'vue';
3
- import { FormInputMixin } from './FormInputMixin';
4
- import setupVModel from '../../utils';
3
+ import { FormInputMixin } from './FormInputMixin.js';
4
+ import setupVModel from '../../utils.js';
5
5
 
6
6
  const props = defineProps({
7
7
  ...FormInputMixin.props,
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
- import setupVModel from '../../utils';
3
- import { FormInputMixin } from './FormInputMixin';
2
+ import setupVModel from '../../utils.js';
3
+ import { FormInputMixin } from './FormInputMixin.js';
4
4
 
5
5
  const props = defineProps(FormInputMixin.props);
6
6
  const emit = defineEmits(FormInputMixin.emits);
@@ -1,5 +1,5 @@
1
1
  <script>
2
- import { simpleComponent } from '../../utils';
2
+ import { simpleComponent } from '../../utils.js';
3
3
 
4
4
  export default simpleComponent();
5
5
  </script>
@@ -1,5 +1,5 @@
1
1
  <script>
2
- import { simpleComponent } from '../../utils';
2
+ import { simpleComponent } from '../../utils.js';
3
3
 
4
4
  export default simpleComponent();
5
5
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@josercl/form-maker",
3
- "version": "1.1.0-beta05",
3
+ "version": "1.1.0-beta06",
4
4
  "description": "Form generator using vue 3",
5
5
  "author": "Jose Carrero <josercl@gmail.com>",
6
6
  "scripts": {
@@ -33,6 +33,7 @@
33
33
  "@vitejs/plugin-vue": "^2.2.2",
34
34
  "@vue/eslint-config-airbnb": "^6.0.0",
35
35
  "autoprefixer": "^10.4.2",
36
+ "cssnano": "^5.1.14",
36
37
  "eslint": "^8.10.0",
37
38
  "eslint-plugin-vue": "^8.5.0",
38
39
  "highlight.js": "^10.2.1",