@visualizevalue/mint-app-base 0.1.43 → 0.1.44

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.
@@ -2,7 +2,7 @@
2
2
  /* GRAYS */
3
3
  --white: white;
4
4
  --gray: gray;
5
- --black: rgb(0, 0, 0);
5
+ --black: black;
6
6
 
7
7
  /* COLORS */
8
8
  --primary: blue;
@@ -0,0 +1,5 @@
1
+ <template>
2
+ <svg viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect width="64" height="64" fill="var(--black)"/>
4
+ </svg>
5
+ </template>
@@ -2,7 +2,8 @@
2
2
  <article class="token-detail">
3
3
  <div class="artifact">
4
4
  <div>
5
- <Image :src="token.artifact" :alt="token.name" />
5
+ <Image v-if="token.artifact" :src="token.artifact" :alt="token.name" />
6
+ <ImageVoid v-else />
6
7
  </div>
7
8
  </div>
8
9
 
@@ -32,7 +32,8 @@
32
32
  <p v-if="mintOpen" class="closes-in">Closes in {{ blocksRemaining }} {{ pluralize('block', Number(blocksRemaining))}}</p>
33
33
  <p v-else class="closed-at">Closed at block {{ token.untilBlock }}</p>
34
34
  </header>
35
- <Image :src="token.artifact" :alt="token.name" />
35
+ <Image v-if="token.artifact" :src="token.artifact" :alt="token.name" />
36
+ <ImageVoid v-else />
36
37
  <CardLink :to="{
37
38
  name: 'id-collection-tokenId',
38
39
  params: { id: collection.owner, collection: token.collection, tokenId: `${token.tokenId}` }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visualizevalue/mint-app-base",
3
- "version": "0.1.43",
3
+ "version": "0.1.44",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "dependencies": {