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 +1 -1
- package/ui.button-toggle-item/config.js +2 -2
- package/utils/utilUI.js +2 -1
- package/web-types.json +1 -1
package/package.json
CHANGED
|
@@ -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
|
|
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
|
-
|
|
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
|
}
|