@visualizevalue/mint-app-base 0.1.106 → 0.1.108

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.
@@ -55,7 +55,7 @@
55
55
 
56
56
  <div class="mint-status">
57
57
  <p v-if="mintOpen">
58
- <TokenMintOpen :blocks="blocksRemaining" :time="countDownStr" />
58
+ <TokenMintOpen :blocks="blocksRemaining?.toString()" :time="countDownStr" />
59
59
  </p>
60
60
  <p v-else-if="currentBlock">
61
61
  {{ $t('token.closed_at_block', { block: endBlock })}}
@@ -5,6 +5,6 @@
5
5
  <script setup>
6
6
  defineProps({
7
7
  time: String,
8
- blocks: String,
8
+ blocks: [String, BigInt],
9
9
  })
10
10
  </script>
@@ -60,7 +60,7 @@ export const usePriceFeedStore = () => {
60
60
  this.ethUSDRaw = answer
61
61
  this.lastUpdated = nowInSeconds()
62
62
  } catch (error) {
63
- console.error('Error fetching price:', error)
63
+ console.warn('Error fetching price:', error)
64
64
  }
65
65
 
66
66
  return this.ethUSD
package/nuxt.config.ts CHANGED
@@ -117,5 +117,9 @@ export default defineNuxtConfig({
117
117
  storage: 'localStorage'
118
118
  },
119
119
 
120
+ i18n: {
121
+ restructureDir: false,
122
+ },
123
+
120
124
  compatibilityDate: '2024-08-14',
121
125
  })
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@visualizevalue/mint-app-base",
3
- "version": "0.1.106",
3
+ "version": "0.1.108",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "dependencies": {
7
7
  "@csstools/postcss-global-data": "^2.1.1",
8
- "@nuxtjs/i18n": "^8.5.5",
8
+ "@nuxtjs/i18n": "^9.5.2",
9
9
  "@pinia-plugin-persistedstate/nuxt": "^1.2.1",
10
10
  "@pinia/nuxt": "^0.5.3",
11
11
  "@tanstack/vue-query": ">=5.45.0",