@vueless/nuxt 0.0.3 → 0.0.5

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/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.13.0"
6
6
  },
7
- "version": "0.0.3",
7
+ "version": "0.0.5",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.4",
10
10
  "unbuild": "2.0.0"
package/dist/module.mjs CHANGED
@@ -15,7 +15,7 @@ async function installTailwind(_nuxt = useNuxt()) {
15
15
  write: true,
16
16
  getContents: async () => `
17
17
  import forms from "@tailwindcss/forms";
18
- import { getSafelist, vuelessTailwindConfig } from "vueless/preset-tailwind.js";
18
+ import { getSafelist, vuelessTailwindConfig } from "vueless/preset-tailwind";
19
19
 
20
20
  export default {
21
21
  plugins: [forms],
@@ -25,7 +25,8 @@ async function installTailwind(_nuxt = useNuxt()) {
25
25
  `
26
26
  });
27
27
  const configPaths = [vuelessConfigFile.dst, join(_nuxt.options.rootDir, "tailwind.config")];
28
- const { configPath: userConfigPath = [], ...twModuleConfig } = _nuxt.options.tailwindcss ?? {};
28
+ const { configPath = [], ...twModuleConfig } = _nuxt.options.tailwindcss ?? {};
29
+ const userConfigPath = configPath;
29
30
  if (typeof userConfigPath === "string") {
30
31
  configPaths.push(userConfigPath);
31
32
  } else {
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vueless/nuxt",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "license": "MIT",
5
5
  "description": "Nuxt Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -58,7 +58,7 @@
58
58
  "@nuxtjs/tailwindcss": "^6.12.1",
59
59
  "defu": "^6.1.4",
60
60
  "pathe": "^1.1.2",
61
- "vueless": "^0.0.492"
61
+ "vueless": "^0.0.740"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@material-symbols/svg-500": "^0.25.0",
@@ -73,7 +73,7 @@
73
73
  "nuxt": "^3.13.2",
74
74
  "release-it": "^17.6.0",
75
75
  "typescript": "latest",
76
- "vitest": "^2.0.5",
76
+ "vitest": "^3.0.5",
77
77
  "vue-tsc": "^2.1.6"
78
78
  },
79
79
  "repository": {
@@ -4,7 +4,7 @@ import vTooltip from "vueless/directives/tooltip/vTooltip";
4
4
  import { defineNuxtPlugin } from "#app";
5
5
  export default defineNuxtPlugin((_nuxtApp) => {
6
6
  const vueless = createVueless();
7
- _nuxtApp.vueApp.use(vueless, {});
7
+ _nuxtApp.vueApp.use(vueless, []);
8
8
  _nuxtApp.vueApp.directive("clickOutside", vClickOutside);
9
9
  _nuxtApp.vueApp.directive("tooltip", vTooltip);
10
10
  if (import.meta.server) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vueless/nuxt",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "license": "MIT",
5
5
  "description": "Nuxt Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -58,7 +58,7 @@
58
58
  "@nuxtjs/tailwindcss": "^6.12.1",
59
59
  "defu": "^6.1.4",
60
60
  "pathe": "^1.1.2",
61
- "vueless": "^0.0.492"
61
+ "vueless": "^0.0.740"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@material-symbols/svg-500": "^0.25.0",
@@ -73,7 +73,7 @@
73
73
  "nuxt": "^3.13.2",
74
74
  "release-it": "^17.6.0",
75
75
  "typescript": "latest",
76
- "vitest": "^2.0.5",
76
+ "vitest": "^3.0.5",
77
77
  "vue-tsc": "^2.1.6"
78
78
  },
79
79
  "repository": {