@visualizevalue/mint-app-base 0.1.2 → 0.1.3
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.
|
@@ -8,10 +8,10 @@ html {
|
|
|
8
8
|
/*
|
|
9
9
|
* Font settings
|
|
10
10
|
*/
|
|
11
|
+
font-size: var(--rem);
|
|
11
12
|
font-family: var(--font-family);
|
|
12
13
|
line-height: var(--line-height-base);
|
|
13
14
|
font-weight: var(--font-weight);
|
|
14
|
-
font-size: var(--rem);
|
|
15
15
|
font-style: normal;
|
|
16
16
|
letter-spacing: var(--letter-spacing);
|
|
17
17
|
text-transform: var(--text-transform);
|
|
@@ -23,6 +23,14 @@ html {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
body {
|
|
26
|
+
/*
|
|
27
|
+
* We treat font sizes are separate from the root em (--rem) seetting.
|
|
28
|
+
*/
|
|
29
|
+
font-size: var(--font-base);
|
|
30
|
+
|
|
31
|
+
/*
|
|
32
|
+
* We prevent horizontal overflow
|
|
33
|
+
*/
|
|
26
34
|
overflow-x: hidden;
|
|
27
35
|
}
|
|
28
36
|
|
|
@@ -13,13 +13,15 @@ defineProps({
|
|
|
13
13
|
})
|
|
14
14
|
</script>
|
|
15
15
|
|
|
16
|
-
<style
|
|
16
|
+
<style>
|
|
17
17
|
:root {
|
|
18
18
|
--breadcrumb-nav-color: var(--muted);
|
|
19
19
|
--breadcrumb-nav-active-color: var(--muted);
|
|
20
20
|
--breadcrumb-separator-color: var(--muted);
|
|
21
21
|
}
|
|
22
|
+
</style>
|
|
22
23
|
|
|
24
|
+
<style scoped>
|
|
23
25
|
.breadcrumb {
|
|
24
26
|
display: flex;
|
|
25
27
|
align-items: center;
|
package/package.json
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
2
|
+
"name": "@visualizevalue/mint-app-base",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./nuxt.config.ts",
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@csstools/postcss-global-data": "^2.1.1",
|
|
8
|
+
"@pinia-plugin-persistedstate/nuxt": "^1.2.1",
|
|
9
|
+
"@pinia/nuxt": "^0.5.3",
|
|
10
|
+
"@tanstack/vue-query": ">=5.45.0",
|
|
11
|
+
"@visualizevalue/mint-utils": "npm:@visualizevalue/mint-utils@^0.0.1",
|
|
12
|
+
"@vueuse/components": "^10.11.0",
|
|
13
|
+
"@vueuse/core": "^11.0.3",
|
|
14
|
+
"@vueuse/nuxt": "^11.0.3",
|
|
15
|
+
"@wagmi/vue": "^0.0.40",
|
|
16
|
+
"buffer": "^6.0.3",
|
|
17
|
+
"eventemitter3": "^5.0.1",
|
|
18
|
+
"feather-icons": "^4.29.2",
|
|
19
|
+
"multiformats": "^13.2.2",
|
|
20
|
+
"postcss-custom-media": "^10.0.6",
|
|
21
|
+
"postcss-custom-selectors": "^7.1.10",
|
|
22
|
+
"postcss-nested": "^6.0.1",
|
|
23
|
+
"postcss-preset-env": "^9.5.13",
|
|
24
|
+
"viem": "2.x",
|
|
25
|
+
"vue-feather": "^2.0.0",
|
|
26
|
+
"vue-router": "^4.3.2",
|
|
27
|
+
"vue-virtual-scroller": "^2.0.0-beta.8"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/node": "^22.5.4",
|
|
31
|
+
"@vue/devtools-api": "^6.6.3",
|
|
32
|
+
"@wagmi/core": "^2.13.5",
|
|
33
|
+
"eventemitter3": "^5.0.1",
|
|
34
|
+
"nuxt": "latest",
|
|
35
|
+
"typescript": "^5.5.4",
|
|
36
|
+
"vite": "^5.4.3"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "nuxt build",
|
|
40
|
+
"dev": "nuxt dev --port 1618",
|
|
41
|
+
"generate": "nuxt generate",
|
|
42
|
+
"preview": "nuxt preview",
|
|
43
|
+
"postinstall": "nuxt prepare"
|
|
44
|
+
}
|
|
45
|
+
}
|