@falcondev-oss/nuxt-layers-base 0.23.2 → 0.24.0

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.
@@ -84,7 +84,7 @@ const inputProps = computed(() => {
84
84
  <UPopover
85
85
  v-if="!!field.errors"
86
86
  mode="hover"
87
- :delay-duration="0"
87
+ :open-delay="0"
88
88
  :ui="{
89
89
  content: 'bg-error-50 ring-error-200! rounded py-1 px-2',
90
90
  }"
package/nuxt.config.ts CHANGED
@@ -11,6 +11,12 @@ export default defineNuxtConfig({
11
11
  typescript: {
12
12
  strict: true,
13
13
  tsConfig: {
14
+ vueCompilerOptions: {
15
+ strictTemplates: true,
16
+ strictVModel: false,
17
+ htmlAttributes: ['aria-*'],
18
+ dataAttributes: ['data-*'],
19
+ },
14
20
  compilerOptions: {
15
21
  allowArbitraryExtensions: true,
16
22
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@falcondev-oss/nuxt-layers-base",
3
3
  "type": "module",
4
- "version": "0.23.2",
4
+ "version": "0.24.0",
5
5
  "description": "Nuxt layer with lots of useful helpers and @nuxt/ui components",
6
6
  "license": "MIT",
7
7
  "repository": "github:falcondev-oss/nuxt-layers",
@@ -13,15 +13,18 @@
13
13
  "node": "24",
14
14
  "pnpm": "10"
15
15
  },
16
+ "peerDependencies": {
17
+ "@nuxt/ui": "~4.5.0"
18
+ },
16
19
  "dependencies": {
17
- "@falcondev-oss/form-core": "^0.21.1",
18
- "@falcondev-oss/form-vue": "^0.21.1",
20
+ "@falcondev-oss/form-core": "^0.21.2",
21
+ "@falcondev-oss/form-vue": "^0.21.2",
19
22
  "@falcondev-oss/trpc-typed-form-data": "^0.4.1",
20
23
  "@falcondev-oss/trpc-vue-query": "^0.5.2",
21
24
  "@iconify-json/lucide": "^1.2.94",
22
25
  "@internationalized/date": "^3.11.0",
23
26
  "@nuxt/icon": "^2.2.1",
24
- "@nuxt/ui": "4.4.0",
27
+ "@nuxt/ui": "~4.5.0",
25
28
  "@nuxtjs/color-mode": "^4.0.0",
26
29
  "@tanstack/vue-query": "^5.92.9",
27
30
  "@trpc/client": "^11.10.0",
@@ -52,7 +55,7 @@
52
55
  "scripts": {
53
56
  "dev": "nuxi dev .playground",
54
57
  "dev:prepare": "nuxt prepare .playground",
55
- "type-check": "vue-tsc --noEmit",
58
+ "type-check": "vue-tsc --build",
56
59
  "lint": "pnpm -w eslint:cmd \"$PWD\" && pnpm -w prettier:cmd \"$PWD\" --check",
57
60
  "lint:fix": "pnpm -w eslint:cmd \"$PWD\" --fix && pnpm -w prettier:cmd \"$PWD\" --write"
58
61
  }