@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.
- package/lib/components/FormMakerInput.vue +2 -2
- package/lib/components/inputs/BasicInput.vue +1 -1
- package/lib/components/inputs/CheckboxInput.vue +1 -1
- package/lib/components/inputs/FileInput.vue +1 -1
- package/lib/components/inputs/RadioInput.vue +1 -1
- package/lib/components/inputs/SelectInput.vue +2 -2
- package/lib/components/inputs/TextAreaInput.vue +2 -2
- package/lib/components/texts/FormMakerInputError.vue +1 -1
- package/lib/components/texts/FormMakerInputHelp.vue +1 -1
- package/package.json +2 -1
|
@@ -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,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);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@josercl/form-maker",
|
|
3
|
-
"version": "1.1.0-
|
|
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",
|