@vuetify/one 1.9.4 → 1.9.6
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/dist/index.d.ts +1 -0
- package/dist/index.js +257 -253
- package/dist/style.css +1 -1
- package/package.json +8 -6
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.v-app-bar[data-v-
|
|
1
|
+
.v-app-bar[data-v-2a88ced7] .v-toolbar__image:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;-webkit-backdrop-filter:blur(calc(var(--0b9050b7) * 1px));backdrop-filter:blur(calc(var(--0b9050b7) * 1px));background:linear-gradient(15deg,#000000a6,#00000092,#0000007f,#0000006d,#0000005d,#0000004e,#00000041,#00000034,#00000029,#00000020,#00000017,#00000010,#0000000a,#00000006,#00000003,#00000001,#0000)}.v-list-item-subtitle[data-v-2a88ced7]{color:currentColor;opacity:var(--v-high-emphasis-opacity)}.v-footer__image[data-v-3135ada5]{display:flex;height:40px;flex:1 1 auto;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:-1}.social-link[data-v-d01d30e4] .v-icon{color:rgba(var(--v-theme-on-background),var(--v-disabled-opacity));text-decoration:none;transition:.2s ease-in-out}.social-link[data-v-d01d30e4] .v-icon:hover{color:rgb(var(--v-theme-primary))}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuetify/one",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"dev": "vite",
|
|
25
25
|
"build": "vite build",
|
|
26
|
-
"build:one": "vite build --config vite.build.config.ts &&
|
|
26
|
+
"build:one": "vite build --config vite.build.config.ts && pnpm build:types",
|
|
27
27
|
"build:dev": "vite build --mode development --config vite.build.config.ts ",
|
|
28
28
|
"build:types": "rimraf types-temp && vue-tsc --pretty -p tsconfig.json && rollup --config rollup.types.config.js && rimraf types-temp",
|
|
29
|
-
"release": "
|
|
30
|
-
"watch": "
|
|
29
|
+
"release": "pnpm build:dev && pnpm version && git push --follow-tags",
|
|
30
|
+
"watch": "pnpm build:dev --watch",
|
|
31
31
|
"preview": "vite preview",
|
|
32
32
|
"lint": "eslint . --ext .ts,.vue --fix --ignore-path .gitignore",
|
|
33
33
|
"test": "vitest",
|
|
34
34
|
"coverage": "vitest run --coverage",
|
|
35
|
-
"prepublishOnly": "
|
|
35
|
+
"prepublishOnly": "pnpm build:one",
|
|
36
36
|
"postversion": "git push --follow-tags"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
"rollup": "^4.18.0",
|
|
72
72
|
"rollup-plugin-dts": "^6.1.1",
|
|
73
73
|
"sass": "^1.77.6",
|
|
74
|
+
"swetrix": "^3.5.2",
|
|
74
75
|
"taze": "^0.14.2",
|
|
75
76
|
"typescript": "5.3.3",
|
|
76
77
|
"unplugin-auto-import": "^0.17.6",
|
|
@@ -86,5 +87,6 @@
|
|
|
86
87
|
"vue-router": "^4.4.0",
|
|
87
88
|
"vue-tsc": "^2.0.26",
|
|
88
89
|
"vuetify": "^3.6.11"
|
|
89
|
-
}
|
|
90
|
+
},
|
|
91
|
+
"packageManager": "pnpm@9.10.0"
|
|
90
92
|
}
|