vueless 0.0.6 → 0.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
@@ -1,4 +1,4 @@
1
- import colors from "tailwindcss/colors";
1
+ import colors from "tailwindcss/colors.js";
2
2
  import forms from "@tailwindcss/forms";
3
3
  import vuelessConfig from "../../vueless.config.js";
4
4
 
@@ -83,7 +83,6 @@ export default class TailwindServiceDefault {
83
83
  "./vueless.config.{js,ts}",
84
84
  "./node_modules/vueless/**/*.{js,ts,vue}",
85
85
  // TODO: remove it after creating the package
86
- "./.vueless/**/*.{js,ts,vue}",
87
86
  "./.vueless-layouts/**/*.{js,ts,vue}",
88
87
  "./.vueless-services/**/*.{js,ts,vue}",
89
88
  ],
@@ -3,7 +3,7 @@ import { defineConfig } from "cva";
3
3
  import { twMerge } from "tailwind-merge";
4
4
  import colors from "tailwindcss/colors";
5
5
  import { brandColors, grayColors } from "../service.tailwind";
6
- import vuelessConfig from "../../vueless.config";
6
+ import vuelessConfig from "/vueless.config.js";
7
7
 
8
8
  /*
9
9
  Export cva (class variance authority) methods extended with tailwind-merge.
@@ -35,8 +35,8 @@ import { isEqual } from "lodash-es";
35
35
 
36
36
  import UIService, { getRandomId } from "../service.ui";
37
37
 
38
- import UCheckbox from "../ui.form-checkbox";
39
38
  import ULabel from "../ui.form-label";
39
+ import UCheckbox from "../ui.form-checkbox";
40
40
 
41
41
  import { UCheckboxGroup } from "./constants";
42
42
  import defaultConfig from "./configs/default.config";
@@ -18,6 +18,7 @@
18
18
  <script setup>
19
19
  import { computed, provide } from "vue";
20
20
 
21
+ import ULabel from "../ui.form-label";
21
22
  import UIService from "../service.ui";
22
23
 
23
24
  import defaultConfig from "./configs/default.config";
@@ -148,7 +148,7 @@ let generatedIcons = [];
148
148
 
149
149
  if (import.meta.env.PROD) {
150
150
  generatedIcons = Object.entries(
151
- import.meta.glob(`../../src/assets/images/.generated/**/*.svg`, {
151
+ import.meta.glob(`../../../../src/assets/images/.generated/**/*.svg`, {
152
152
  eager: true,
153
153
  query: "?component",
154
154
  }),