create-nuxt-base 0.1.22 → 0.1.23
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
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.23](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.22...v0.1.23) (2023-10-21)
|
|
6
|
+
|
|
5
7
|
### [0.1.22](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.21...v0.1.22) (2023-10-21)
|
|
6
8
|
|
|
7
9
|
### [0.1.21](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.20...v0.1.21) (2023-10-19)
|
|
@@ -5,13 +5,13 @@ import formkitTheme from './formkit-theme.js'
|
|
|
5
5
|
import { addAsteriskPlugin } from '~/forms/plugins/asterisk-plugin';
|
|
6
6
|
import { scrollToErrors } from '~/forms/plugins/scroll-error-plugin';
|
|
7
7
|
import { createInput } from '@formkit/vue';
|
|
8
|
+
import { valueChangesPlugin } from "~/forms/plugins/value-changes-plugin";
|
|
8
9
|
|
|
9
10
|
import InputImage from "~/forms/inputs/InputImage.vue";
|
|
10
11
|
import InputTags from "~/forms/inputs/InputTags.vue";
|
|
11
12
|
import InputFreeTags from "~/forms/inputs/InputFreeTags.vue";
|
|
12
13
|
import InputCheckbox from "~/forms/inputs/InputCheckbox.vue";
|
|
13
14
|
import InputToggle from "~/forms/inputs/InputToggle.vue";
|
|
14
|
-
import {valueChangesPlugin} from "~/forms/plugins/value-changes-plugin";
|
|
15
15
|
|
|
16
16
|
export default {
|
|
17
17
|
locales: { de },
|
|
@@ -21,9 +21,7 @@ export default {
|
|
|
21
21
|
image: createInput(InputImage),
|
|
22
22
|
tags: createInput(InputTags),
|
|
23
23
|
freeTags: createInput(InputFreeTags),
|
|
24
|
-
perimeter: createInput(InputPerimeter),
|
|
25
24
|
checkbox: createInput(InputCheckbox),
|
|
26
|
-
autocomplete: createInput(InputAutoComplete),
|
|
27
25
|
toggle: createInput(InputToggle),
|
|
28
26
|
},
|
|
29
27
|
icons: {
|
package/package.json
CHANGED