vueless 0.0.371 → 0.0.372

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.371",
3
+ "version": "0.0.372",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
@@ -27,12 +27,12 @@ export default /*tw*/ {
27
27
  {
28
28
  selected: true,
29
29
  variant: "primary",
30
- class: "!text-white bg-brand-600 border-brand-600 ",
30
+ class: "!text-white bg-brand-600 border-brand-600",
31
31
  },
32
32
  {
33
33
  selected: true,
34
34
  variant: "secondary",
35
- class: "text-brand-600 border-brand-600 bg-brand-600/10",
35
+ class: "text-brand-600 border-brand-600 bg-brand-600/10",
36
36
  },
37
37
  {
38
38
  selected: true,
package/utils/utilUI.js CHANGED
@@ -20,7 +20,8 @@ if (isSSR) {
20
20
  /* Load Vueless config from the project root in IIFE (no top-level await). */
21
21
  (async () => {
22
22
  try {
23
- vuelessConfig = (await import(`${process.cwd()}/vueless.config.js`)).default;
23
+ // eslint-disable-next-line prettier/prettier
24
+ vuelessConfig = (await import(/* @vite-ignore */ `${process.cwd()}/vueless.config.js`)).default;
24
25
  } catch (error) {
25
26
  vuelessConfig = {};
26
27
  }
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.371",
4
+ "version": "0.0.372",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",