kmcom-nuxt-layers 1.6.10 → 1.6.11
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/layers/content/nuxt.config.ts +1 -1
- package/layers/core/app/assets/css/{main.css → core.css} +0 -2
- package/layers/core/nuxt.config.ts +1 -1
- package/layers/layout/nuxt.config.ts +1 -1
- package/layers/motion/nuxt.config.ts +1 -1
- package/layers/shader/nuxt.config.ts +1 -1
- package/layers/theme/app/assets/css/theme.css +11 -11
- package/layers/ui/app/assets/css/{main.css → ui.css} +4 -2
- package/layers/ui/app/components/Typography/Headline.vue +1 -1
- package/layers/ui/app/composables/typography.ts +1 -1
- package/layers/ui/app/types/typography.ts +9 -1
- package/layers/ui/nuxt.config.ts +1 -1
- package/package.json +20 -20
- /package/layers/content/app/assets/css/{main.css → content.css} +0 -0
- /package/layers/layout/app/assets/css/{main.css → layout.css} +0 -0
- /package/layers/motion/app/assets/css/{main.css → motion.css} +0 -0
- /package/layers/shader/app/assets/css/{main.css → shader.css} +0 -0
|
@@ -7,46 +7,46 @@
|
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/* --- Reduced Motion --- */
|
|
10
|
-
[data-theme-motion=
|
|
11
|
-
[data-theme-motion=
|
|
12
|
-
[data-theme-motion=
|
|
10
|
+
[data-theme-motion='reduced'] *,
|
|
11
|
+
[data-theme-motion='reduced'] *::before,
|
|
12
|
+
[data-theme-motion='reduced'] *::after {
|
|
13
13
|
animation-duration: 0.01ms !important;
|
|
14
14
|
animation-iteration-count: 1 !important;
|
|
15
15
|
transition-duration: 0.01ms !important;
|
|
16
16
|
scroll-behavior: auto !important;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
[data-theme-motion=
|
|
19
|
+
[data-theme-motion='reduced'] {
|
|
20
20
|
--duration-base: 0ms;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
/* --- Reduced Transparency --- */
|
|
24
|
-
[data-theme-transparency=
|
|
24
|
+
[data-theme-transparency='reduced'] {
|
|
25
25
|
--ui-bg-elevated: var(--ui-bg);
|
|
26
26
|
--opacity-glass: 1;
|
|
27
27
|
--backdrop-blur: 0px;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
[data-theme-transparency=
|
|
30
|
+
[data-theme-transparency='reduced'] :where([class*='backdrop-blur']) {
|
|
31
31
|
backdrop-filter: none !important;
|
|
32
32
|
-webkit-backdrop-filter: none !important;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
[data-theme-transparency=
|
|
35
|
+
[data-theme-transparency='reduced'] :where([class*='bg-default/'], [class*='bg-elevated/']) {
|
|
36
36
|
background-color: var(--ui-bg-elevated) !important;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
/* --- High Contrast --- */
|
|
40
|
-
[data-theme-contrast=
|
|
40
|
+
[data-theme-contrast='high'] {
|
|
41
41
|
--ui-border: var(--ui-border-accented);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
[data-theme-contrast=
|
|
44
|
+
[data-theme-contrast='high'] :where(button, a, [role='button']) {
|
|
45
45
|
outline-width: 2px;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
[data-theme-contrast=
|
|
49
|
-
[data-theme-contrast=
|
|
48
|
+
[data-theme-contrast='high'] .text-muted,
|
|
49
|
+
[data-theme-contrast='high'] .text-dimmed {
|
|
50
50
|
opacity: 1;
|
|
51
51
|
filter: contrast(1.25);
|
|
52
52
|
}
|
|
@@ -10,9 +10,11 @@
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.accent-blob {
|
|
13
|
-
transition:
|
|
13
|
+
transition:
|
|
14
|
+
background-color 400ms ease,
|
|
15
|
+
opacity 300ms ease;
|
|
14
16
|
}
|
|
15
17
|
|
|
16
|
-
[data-theme-transparency=
|
|
18
|
+
[data-theme-transparency='reduced'] .accent-blob {
|
|
17
19
|
opacity: 0 !important;
|
|
18
20
|
}
|
|
@@ -65,7 +65,15 @@ export type FontSize =
|
|
|
65
65
|
- Semantic abstraction over wdth axis
|
|
66
66
|
====================================================== */
|
|
67
67
|
|
|
68
|
-
export type FontWidth =
|
|
68
|
+
export type FontWidth =
|
|
69
|
+
| 'font-stretch-ultra-condensed'
|
|
70
|
+
| 'font-stretch-condensed'
|
|
71
|
+
| 'font-stretch-semi-condensed'
|
|
72
|
+
| 'font-stretch-normal'
|
|
73
|
+
| 'font-stretch-semi-expanded'
|
|
74
|
+
| 'font-stretch-expanded'
|
|
75
|
+
| 'font-stretch-ultra-expanded'
|
|
76
|
+
| number // variable wdth axis override
|
|
69
77
|
|
|
70
78
|
/* ======================================================
|
|
71
79
|
Font Slant
|
package/layers/ui/nuxt.config.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kmcom-nuxt-layers",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.11",
|
|
5
5
|
"description": "Composable Nuxt 4 layers for building scalable Vue applications",
|
|
6
6
|
"files": [
|
|
7
7
|
"layers/*/nuxt.config.ts",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@tresjs/nuxt": "^5.3.0",
|
|
32
32
|
"@tresjs/post-processing": "^3.4.0",
|
|
33
33
|
"@vite-pwa/nuxt": "^1.1.1",
|
|
34
|
-
"@vueuse/nuxt": "^14.
|
|
34
|
+
"@vueuse/nuxt": "^14.3.0",
|
|
35
35
|
"better-sqlite3": "^12.6.2",
|
|
36
36
|
"gsap": "^3.14.2",
|
|
37
37
|
"locomotive-scroll": "^5.0.1",
|
|
@@ -94,49 +94,49 @@
|
|
|
94
94
|
"@commitlint/cli": "^20.4.3",
|
|
95
95
|
"@commitlint/config-conventional": "^20.4.3",
|
|
96
96
|
"@culur/config-stylelint": "^1.6.5",
|
|
97
|
-
"@eslint/json": "^1.0
|
|
98
|
-
"@eslint/markdown": "^
|
|
97
|
+
"@eslint/json": "^1.2.0",
|
|
98
|
+
"@eslint/markdown": "^8.0.1",
|
|
99
99
|
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
|
|
100
|
-
"@iconify-json/lucide": "^1.2.
|
|
101
|
-
"@netlify/nuxt": "0.
|
|
100
|
+
"@iconify-json/lucide": "^1.2.105",
|
|
101
|
+
"@netlify/nuxt": "0.3.1",
|
|
102
102
|
"@nuxt/eslint": "^1.15.2",
|
|
103
103
|
"@nuxt/fonts": "^0.14.0",
|
|
104
104
|
"@nuxt/image": "^2.0.0",
|
|
105
105
|
"@nuxt/ui": "latest",
|
|
106
106
|
"@nuxtjs/device": "^4.0.0",
|
|
107
|
-
"@perplex-digital/stylelint-config": "^17.
|
|
107
|
+
"@perplex-digital/stylelint-config": "^17.4.0",
|
|
108
108
|
"@pinia/nuxt": "^0.11.3",
|
|
109
109
|
"@types/node": "^25.6.0",
|
|
110
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
111
|
-
"@typescript-eslint/parser": "^8.
|
|
110
|
+
"@typescript-eslint/eslint-plugin": "^8.59.1",
|
|
111
|
+
"@typescript-eslint/parser": "^8.59.1",
|
|
112
112
|
"@vue/eslint-config-typescript": "^14.7.0",
|
|
113
|
-
"@vueuse/core": "^14.
|
|
114
|
-
"@vueuse/nuxt": "^14.
|
|
113
|
+
"@vueuse/core": "^14.3.0",
|
|
114
|
+
"@vueuse/nuxt": "^14.3.0",
|
|
115
115
|
"@webgpu/glslang": "^0.0.15",
|
|
116
116
|
"browserslist": "^4.28.2",
|
|
117
117
|
"changesets": "^1.0.2",
|
|
118
118
|
"cypress": "^15.10.0",
|
|
119
119
|
"depcheck": "^1.4.7",
|
|
120
|
-
"eslint": "^10.
|
|
121
|
-
"eslint-plugin-compat": "^7.0.
|
|
120
|
+
"eslint": "^10.3.0",
|
|
121
|
+
"eslint-plugin-compat": "^7.0.2",
|
|
122
122
|
"eslint-plugin-glsl": "0.0.0-wip",
|
|
123
123
|
"eslint-plugin-pnpm": "^1.6.0",
|
|
124
124
|
"eslint-plugin-prettier": "^5.5.5",
|
|
125
125
|
"eslint-plugin-unicorn": "^64.0.0",
|
|
126
126
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
127
|
-
"eslint-plugin-vue": "^10.
|
|
127
|
+
"eslint-plugin-vue": "^10.9.0",
|
|
128
128
|
"npm-check-updates": "^21.0.3",
|
|
129
129
|
"nuxt": "latest",
|
|
130
130
|
"pinia": "^3.0.4",
|
|
131
131
|
"playwright": "^1.58.2",
|
|
132
132
|
"postcss-html": "^1.8.1",
|
|
133
|
-
"prettier": "^3.8.
|
|
133
|
+
"prettier": "^3.8.3",
|
|
134
134
|
"prettier-plugin-css-order": "^2.2.0",
|
|
135
135
|
"prettier-plugin-glsl": "^0.2.5",
|
|
136
136
|
"prettier-plugin-organize-attributes": "^1.0.0",
|
|
137
137
|
"prettier-plugin-tailwind-styled-components": "^2.0.2",
|
|
138
|
-
"prettier-plugin-tailwindcss": "^0.
|
|
139
|
-
"stylelint": "^17.
|
|
138
|
+
"prettier-plugin-tailwindcss": "^0.8.0",
|
|
139
|
+
"stylelint": "^17.10.0",
|
|
140
140
|
"stylelint-config-recommended-vue": "^1.6.1",
|
|
141
141
|
"stylelint-config-standard": "^40.0.0",
|
|
142
142
|
"stylelint-config-standard-vue": "^1.0.0",
|
|
@@ -144,12 +144,12 @@
|
|
|
144
144
|
"stylelint-no-unsupported-browser-features": "^8.1.1",
|
|
145
145
|
"stylelint-prettier": "^5.0.3",
|
|
146
146
|
"tailwindcss": "^4.2.4",
|
|
147
|
-
"turbo": "^2.9.
|
|
148
|
-
"typescript": "^6.0.
|
|
147
|
+
"turbo": "^2.9.8",
|
|
148
|
+
"typescript": "^6.0.3",
|
|
149
149
|
"vite-plugin-checker": "^0.13.0",
|
|
150
150
|
"vitest": "^4.1.5",
|
|
151
151
|
"vue": "latest",
|
|
152
|
-
"vue-tsc": "^3.2.
|
|
152
|
+
"vue-tsc": "^3.2.8",
|
|
153
153
|
"zod": "^4.3.6",
|
|
154
154
|
"zod-to-json-schema": "^3.25.1"
|
|
155
155
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|