@dargmuesli/nuxt-vio 3.0.0-beta.11 → 3.0.0-beta.13
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/assets/css/tailwind.css +24 -9
- package/nuxt.config.ts +1 -0
- package/package.json +13 -13
package/assets/css/tailwind.css
CHANGED
@@ -1,43 +1,58 @@
|
|
1
|
+
/* stylelint-disable at-rule-no-unknown */
|
1
2
|
@tailwind base;
|
2
3
|
@tailwind components;
|
3
4
|
@tailwind utilities;
|
5
|
+
/* stylelint-enable at-rule-no-unknown */
|
4
6
|
|
7
|
+
/* doiuse-disable css-cascade-layers */
|
5
8
|
@layer base {
|
9
|
+
/* doiuse-enable css-cascade-layers */
|
6
10
|
a:focus {
|
7
|
-
|
11
|
+
/* doiuse-disable css-nesting */
|
12
|
+
@apply outline-none ring; /* doiuse-enable css-nesting */
|
8
13
|
}
|
9
14
|
|
10
15
|
button:focus {
|
11
|
-
|
16
|
+
/* doiuse-disable css-nesting */
|
17
|
+
@apply outline-none ring; /* doiuse-enable css-nesting */
|
12
18
|
}
|
13
19
|
|
14
20
|
thead {
|
15
|
-
|
21
|
+
/* doiuse-disable css-nesting */
|
22
|
+
@apply vio-bg-darken sticky top-0 z-10; /* doiuse-enable css-nesting */
|
16
23
|
}
|
17
24
|
|
18
25
|
tbody {
|
19
|
-
|
26
|
+
/* doiuse-disable css-nesting */
|
27
|
+
@apply vio-divide-darken divide-y; /* doiuse-enable css-nesting */
|
20
28
|
}
|
21
29
|
}
|
22
30
|
|
31
|
+
/* doiuse-disable css-cascade-layers */
|
23
32
|
@layer utilities {
|
33
|
+
/* doiuse-enable css-cascade-layers */
|
24
34
|
.vio-prose {
|
25
|
-
|
35
|
+
/* doiuse-disable css-nesting */
|
36
|
+
@apply prose prose-sm m-auto dark:prose-invert sm:prose-base lg:prose-lg xl:prose-xl; /* 2xl:prose-2xl */ /* doiuse-enable css-nesting */
|
26
37
|
}
|
27
38
|
|
28
39
|
.vio-prose-fullwidth {
|
29
|
-
|
40
|
+
/* doiuse-disable css-nesting */
|
41
|
+
@apply vio-prose max-w-full sm:max-w-full md:max-w-full xl:max-w-full 2xl:max-w-full; /* doiuse-enable css-nesting */
|
30
42
|
}
|
31
43
|
|
32
44
|
.vio-divide-darken {
|
33
|
-
|
45
|
+
/* doiuse-disable css-nesting */
|
46
|
+
@apply divide-background-brighten dark:divide-background-darken; /* doiuse-enable css-nesting */
|
34
47
|
}
|
35
48
|
|
36
49
|
.vio-bg-darken {
|
37
|
-
|
50
|
+
/* doiuse-disable css-nesting */
|
51
|
+
@apply bg-background-brighten dark:bg-background-darken; /* doiuse-enable css-nesting */
|
38
52
|
}
|
39
53
|
|
40
54
|
.vio-border-darken {
|
41
|
-
|
55
|
+
/* doiuse-disable css-nesting */
|
56
|
+
@apply border-background-brighten dark:border-background-darken; /* doiuse-enable css-nesting */
|
42
57
|
}
|
43
58
|
}
|
package/nuxt.config.ts
CHANGED
@@ -23,6 +23,7 @@ const BASE_URL =
|
|
23
23
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
24
24
|
export default defineNuxtConfig({
|
25
25
|
alias: {
|
26
|
+
clipboard: 'clipboard',
|
26
27
|
dayjs: 'dayjs',
|
27
28
|
sweetalert2: 'sweetalert2',
|
28
29
|
}, // TODO: remove (https://github.com/nuxt/nuxt/issues/19426)
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dargmuesli/nuxt-vio",
|
3
|
-
"version": "3.0.0-beta.
|
3
|
+
"version": "3.0.0-beta.13",
|
4
4
|
"type": "module",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -35,26 +35,26 @@
|
|
35
35
|
"lint:fix": "pnpm lint:js --fix && pnpm lint:ts --fix && pnpm lint:style --fix",
|
36
36
|
"lint:js": "eslint --cache --ext .js,.ts,.vue --ignore-path .gitignore .",
|
37
37
|
"lint:staged": "lint-staged",
|
38
|
-
"lint:style": "stylelint
|
38
|
+
"lint:style": "stylelint --cache {,**/}*.{vue,css} --ignore-path .gitignore",
|
39
39
|
"lint:ts": "nuxt typecheck",
|
40
40
|
"lint": "pnpm lint:js && pnpm lint:ts && pnpm lint:style",
|
41
41
|
"prepare": "nuxt prepare .playground",
|
42
42
|
"preview": "nuxt preview .playground"
|
43
43
|
},
|
44
44
|
"dependencies": {
|
45
|
-
"@dargmuesli/nuxt-cookie-control": "6.
|
46
|
-
"@http-util/status-i18n": "0.
|
45
|
+
"@dargmuesli/nuxt-cookie-control": "6.4.0",
|
46
|
+
"@http-util/status-i18n": "0.8.1",
|
47
47
|
"@nuxt/image": "1.0.0-rc.1",
|
48
48
|
"@nuxtjs/color-mode": "3.3.0",
|
49
49
|
"@nuxtjs/html-validator": "1.5.2",
|
50
|
-
"@nuxtjs/i18n": "8.0.0-rc.
|
50
|
+
"@nuxtjs/i18n": "8.0.0-rc.3",
|
51
51
|
"@nuxtjs/tailwindcss": "6.8.0",
|
52
52
|
"@pinia/nuxt": "0.4.11",
|
53
53
|
"@tailwindcss/forms": "0.5.4",
|
54
54
|
"@tailwindcss/typography": "0.5.9",
|
55
55
|
"@urql/core": "4.1.1",
|
56
56
|
"@urql/devtools": "2.0.3",
|
57
|
-
"@urql/exchange-graphcache": "6.3.
|
57
|
+
"@urql/exchange-graphcache": "6.3.2",
|
58
58
|
"@urql/vue": "1.1.2",
|
59
59
|
"@vuelidate/core": "2.0.3",
|
60
60
|
"@vuelidate/validators": "2.0.3",
|
@@ -62,10 +62,10 @@
|
|
62
62
|
"dayjs": "2.0.0-alpha.4",
|
63
63
|
"is-https": "4.0.0",
|
64
64
|
"jose": "4.14.4",
|
65
|
-
"marked": "7.0.
|
66
|
-
"nuxt-seo-kit-module": "2.0.0-beta.
|
65
|
+
"marked": "7.0.4",
|
66
|
+
"nuxt-seo-kit-module": "2.0.0-beta.13",
|
67
67
|
"pinia": "2.1.6",
|
68
|
-
"sweetalert2": "11.7.
|
68
|
+
"sweetalert2": "11.7.27",
|
69
69
|
"vue-gtag": "2.0.1",
|
70
70
|
"vue-tsc": "1.8.8"
|
71
71
|
},
|
@@ -73,17 +73,17 @@
|
|
73
73
|
"@intlify/eslint-plugin-vue-i18n": "3.0.0-next.3",
|
74
74
|
"@nuxtjs/eslint-config-typescript": "12.0.0",
|
75
75
|
"@types/marked": "5.0.1",
|
76
|
-
"eslint": "8.
|
76
|
+
"eslint": "8.47.0",
|
77
77
|
"eslint-config-prettier": "9.0.0",
|
78
78
|
"eslint-plugin-compat": "4.1.4",
|
79
79
|
"eslint-plugin-nuxt": "4.0.0",
|
80
80
|
"eslint-plugin-prettier": "5.0.0",
|
81
81
|
"eslint-plugin-yml": "1.8.0",
|
82
|
-
"lint-staged": "
|
82
|
+
"lint-staged": "14.0.1",
|
83
83
|
"nuxt": "3.6.5",
|
84
|
-
"prettier": "3.0.
|
84
|
+
"prettier": "3.0.2",
|
85
85
|
"prettier-plugin-tailwindcss": "0.5.3",
|
86
|
-
"stylelint": "15.10.
|
86
|
+
"stylelint": "15.10.3",
|
87
87
|
"stylelint-config-recommended-vue": "1.5.0",
|
88
88
|
"stylelint-config-standard": "34.0.0",
|
89
89
|
"stylelint-no-unsupported-browser-features": "7.0.0",
|