@visualizevalue/mint-app-base 0.1.1 → 0.1.2

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.
@@ -14,6 +14,12 @@ defineProps({
14
14
  </script>
15
15
 
16
16
  <style scoped>
17
+ :root {
18
+ --breadcrumb-nav-color: var(--muted);
19
+ --breadcrumb-nav-active-color: var(--muted);
20
+ --breadcrumb-separator-color: var(--muted);
21
+ }
22
+
17
23
  .breadcrumb {
18
24
  display: flex;
19
25
  align-items: center;
@@ -33,18 +39,18 @@ defineProps({
33
39
  }
34
40
 
35
41
  > span > a {
36
- color: var(--muted);
42
+ color: var(--breadcrumb-nav-color);
37
43
  transition: all var(--speed);
38
44
 
39
45
  &.router-link-active-exact,
40
46
  &:--highlight {
41
- color: var(--color);
47
+ color: var(--breadcrumb-nav-active-color);
42
48
  }
43
49
  }
44
50
 
45
51
  > span:not(:last-child):after {
46
52
  content: '/';
47
- color: var(--);
53
+ color: var(--breadcrumb-separator-color);
48
54
  margin-left: var(--spacer-sm);
49
55
  }
50
56
  }
package/package.json CHANGED
@@ -1,45 +1,45 @@
1
1
  {
2
- "name": "@visualizevalue/mint-app-base",
3
- "version": "0.1.1",
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
- }
2
+ "name": "@visualizevalue/mint-app-base",
3
+ "version": "0.1.2",
4
+ "type": "module",
5
+ "main": "./nuxt.config.ts",
6
+ "scripts": {
7
+ "build": "nuxt build",
8
+ "dev": "nuxt dev --port 1618",
9
+ "generate": "nuxt generate",
10
+ "preview": "nuxt preview",
11
+ "postinstall": "nuxt prepare"
12
+ },
13
+ "dependencies": {
14
+ "@csstools/postcss-global-data": "^2.1.1",
15
+ "@pinia-plugin-persistedstate/nuxt": "^1.2.1",
16
+ "@pinia/nuxt": "^0.5.3",
17
+ "@tanstack/vue-query": ">=5.45.0",
18
+ "@visualizevalue/mint-utils": "workspace:@visualizevalue/mint-utils@^0.0.1",
19
+ "@vueuse/components": "^10.11.0",
20
+ "@vueuse/core": "^11.0.3",
21
+ "@vueuse/nuxt": "^11.0.3",
22
+ "@wagmi/vue": "^0.0.40",
23
+ "buffer": "^6.0.3",
24
+ "eventemitter3": "^5.0.1",
25
+ "feather-icons": "^4.29.2",
26
+ "multiformats": "^13.2.2",
27
+ "postcss-custom-media": "^10.0.6",
28
+ "postcss-custom-selectors": "^7.1.10",
29
+ "postcss-nested": "^6.0.1",
30
+ "postcss-preset-env": "^9.5.13",
31
+ "viem": "2.x",
32
+ "vue-feather": "^2.0.0",
33
+ "vue-router": "^4.3.2",
34
+ "vue-virtual-scroller": "^2.0.0-beta.8"
35
+ },
36
+ "devDependencies": {
37
+ "@types/node": "^22.5.4",
38
+ "@vue/devtools-api": "^6.6.3",
39
+ "@wagmi/core": "^2.13.5",
40
+ "eventemitter3": "^5.0.1",
41
+ "nuxt": "latest",
42
+ "typescript": "^5.5.4",
43
+ "vite": "^5.4.3"
44
+ }
45
+ }