@visualizevalue/mint-app-base 0.1.35 → 0.1.37

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.
@@ -125,10 +125,6 @@ onMounted(() => {
125
125
  input {
126
126
  border-radius: 0;
127
127
  border: 0;
128
-
129
- &.animate:not(:focus) {
130
- animation: highlight var(--speed-slow) infinite alternate;
131
- }
132
128
  }
133
129
  }
134
130
 
@@ -145,14 +141,5 @@ onMounted(() => {
145
141
  margin-left: auto;
146
142
  }
147
143
  }
148
-
149
- @keyframes highlight {
150
- from {
151
- background: var(--button-background);
152
- }
153
- to {
154
- background: var(--button-background-highlight);
155
- }
156
- }
157
144
  </style>
158
145
 
package/nuxt.config.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  import { fileURLToPath } from 'url'
2
2
  import { dirname, join } from 'path'
3
- import { nodePolyfills } from 'vite-plugin-node-polyfills'
4
3
 
5
4
  const currentDir = dirname(fileURLToPath(import.meta.url))
6
5
 
@@ -72,17 +71,6 @@ export default defineNuxtConfig({
72
71
  }
73
72
  },
74
73
 
75
- vite: {
76
- plugins: [
77
- nodePolyfills({
78
- globals: {
79
- Buffer: true,
80
- global: true,
81
- }
82
- })
83
- ],
84
- },
85
-
86
74
  nitro: {
87
75
  preset: 'node-cluster',
88
76
  esbuild: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visualizevalue/mint-app-base",
3
- "version": "0.1.35",
3
+ "version": "0.1.37",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "dependencies": {
@@ -13,6 +13,7 @@
13
13
  "@vueuse/core": "^11.1.0",
14
14
  "@wagmi/core": "^2.13.5",
15
15
  "@wagmi/vue": "^0.0.40",
16
+ "buffer": "^6.0.3",
16
17
  "multiformats": "^13.2.2",
17
18
  "postcss-custom-media": "^10.0.6",
18
19
  "postcss-custom-selectors": "^7.1.10",
@@ -20,7 +21,6 @@
20
21
  "postcss-preset-env": "^9.5.13",
21
22
  "viem": "2.x",
22
23
  "vite": "^5.4.3",
23
- "vite-plugin-node-polyfills": "^0.17.0",
24
24
  "vue-virtual-scroller": "^2.0.0-beta.8",
25
25
  "@visualizevalue/mint-utils": "^0.0.2"
26
26
  },
@@ -1,12 +1,12 @@
1
1
  import { defineNuxtPlugin } from '#app'
2
- // import { Buffer } from 'buffer/'
2
+ import { Buffer } from 'buffer/'
3
3
 
4
4
  // This also uses the server `polyfill` plugin...
5
5
  export default defineNuxtPlugin({
6
6
  name: 'client-polyfill',
7
7
  enforce: 'pre',
8
8
  async setup () {
9
- // window.global = window
10
- // window.Buffer = Buffer
9
+ window.global = window
10
+ window.Buffer = Buffer
11
11
  }
12
12
  })