@api3/logos 1.0.26 → 1.0.27
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.
- package/dist/cjs/SymbolLogo.js +3 -0
- package/dist/cjs/SymbolLogoMissing.json +1 -1
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +2 -2
- package/dist/esm/SymbolLogo.js +3 -0
- package/dist/esm/SymbolLogoMissing.json +1 -1
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/logos/symbol/Somi.svg +42 -0
- package/package.json +2 -2
package/dist/cjs/SymbolLogo.js
CHANGED
|
@@ -162,6 +162,7 @@ const SymbolSlp = require('../logos/symbol/Slp.svg');
|
|
|
162
162
|
const SymbolSnx = require('../logos/symbol/Snx.svg');
|
|
163
163
|
const SymbolSol = require('../logos/symbol/Sol.svg');
|
|
164
164
|
const SymbolSolvBtc = require('../logos/symbol/Solvbtc.svg');
|
|
165
|
+
const SymbolSomi = require('../logos/symbol/Somi.svg');
|
|
165
166
|
const SymbolSpk = require('../logos/symbol/Spk.svg');
|
|
166
167
|
const SymbolStg = require('../logos/symbol/Stg.svg');
|
|
167
168
|
const SymbolStone = require('../logos/symbol/Stone.svg');
|
|
@@ -556,6 +557,8 @@ function SymbolLogo(id, light = false) {
|
|
|
556
557
|
return SymbolSol;
|
|
557
558
|
case "solvbtc":
|
|
558
559
|
return SymbolSolvBtc;
|
|
560
|
+
case "somi":
|
|
561
|
+
return SymbolSomi;
|
|
559
562
|
case "spk":
|
|
560
563
|
return SymbolSpk;
|
|
561
564
|
case "stg":
|
|
@@ -1 +1 @@
|
|
|
1
|
-
[]
|
|
1
|
+
["wsrUSD","rUSD"]
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
2
|
-
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
3
1
|
export { default as ChainLogo } from './ChainLogo.js';
|
|
4
2
|
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
3
|
+
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
4
|
+
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
5
5
|
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
6
6
|
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
module.exports.SymbolLogo = require('./SymbolLogo.js');
|
|
2
|
-
module.exports.SymbolLogoMissing = require('./SymbolLogoMissing.json');
|
|
3
1
|
module.exports.ChainLogo = require('./ChainLogo.js');
|
|
4
2
|
module.exports.ChainLogoMissing = require('./ChainLogoMissing.json');
|
|
3
|
+
module.exports.SymbolLogo = require('./SymbolLogo.js');
|
|
4
|
+
module.exports.SymbolLogoMissing = require('./SymbolLogoMissing.json');
|
|
5
5
|
module.exports.ApiProviderLogo = require('./ApiProviderLogo.js');
|
|
6
6
|
module.exports.ApiProviderLogoMissing = require('./ApiProviderLogoMissing.json');
|
package/dist/esm/SymbolLogo.js
CHANGED
|
@@ -162,6 +162,7 @@ import SymbolSlp from '../logos/symbol/Slp.svg';
|
|
|
162
162
|
import SymbolSnx from '../logos/symbol/Snx.svg';
|
|
163
163
|
import SymbolSol from '../logos/symbol/Sol.svg';
|
|
164
164
|
import SymbolSolvBtc from '../logos/symbol/Solvbtc.svg';
|
|
165
|
+
import SymbolSomi from '../logos/symbol/Somi.svg';
|
|
165
166
|
import SymbolSpk from '../logos/symbol/Spk.svg';
|
|
166
167
|
import SymbolStg from '../logos/symbol/Stg.svg';
|
|
167
168
|
import SymbolStone from '../logos/symbol/Stone.svg';
|
|
@@ -556,6 +557,8 @@ function SymbolLogo(id, light = false) {
|
|
|
556
557
|
return SymbolSol;
|
|
557
558
|
case "solvbtc":
|
|
558
559
|
return SymbolSolvBtc;
|
|
560
|
+
case "somi":
|
|
561
|
+
return SymbolSomi;
|
|
559
562
|
case "spk":
|
|
560
563
|
return SymbolSpk;
|
|
561
564
|
case "stg":
|
|
@@ -1 +1 @@
|
|
|
1
|
-
[]
|
|
1
|
+
["wsrUSD","rUSD"]
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
2
2
|
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
3
|
-
export { default as ChainLogo } from './ChainLogo.js';
|
|
4
|
-
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
5
3
|
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
6
4
|
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
5
|
+
export { default as ChainLogo } from './ChainLogo.js';
|
|
6
|
+
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { default as ApiProviderLogo } from './ApiProviderLogo.js';
|
|
2
2
|
export { default as ApiProviderLogoMissing } from './ApiProviderLogoMissing.json';
|
|
3
|
-
export { default as ChainLogo } from './ChainLogo.js';
|
|
4
|
-
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
5
3
|
export { default as SymbolLogo } from './SymbolLogo.js';
|
|
6
4
|
export { default as SymbolLogoMissing } from './SymbolLogoMissing.json';
|
|
5
|
+
export { default as ChainLogo } from './ChainLogo.js';
|
|
6
|
+
export { default as ChainLogoMissing } from './ChainLogoMissing.json';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 42 42">
|
|
2
|
+
<rect width="42" height="42" x="0.00830078" fill="#1E2739" rx="21"/>
|
|
3
|
+
<path fill="#1812FF" d="M20.9263 38.0624C30.2932 38.1066 37.9953 30.5099 38.0704 21.1456C38.0852 19.2682 37.7957 17.4606 37.2501 15.7681C33.2167 16.1017 29.2771 17.809 26.1915 20.8937C22.8458 24.2384 21.1193 28.5868 21.0093 32.9688C21.0012 33.2972 20.5751 33.4177 20.3928 33.1456C18.1971 29.8667 14.4586 27.7078 10.2148 27.7078C8.62505 27.7078 7.10499 28.0107 5.71094 28.5628C8.48698 34.1682 14.2535 38.0301 20.9263 38.0624Z"/>
|
|
4
|
+
<path fill="#1812FF" d="M21.0077 9.03414C21.0158 8.70583 21.442 8.58522 21.6243 8.85725C23.82 12.1363 27.5584 14.2952 31.8023 14.2952C33.3934 14.2952 34.9134 13.991 36.3075 13.4389C33.5327 7.83077 27.7648 3.96743 21.0909 3.93526C11.7226 3.88971 4.01908 11.4904 3.94536 20.8559C3.93062 22.7334 4.22015 24.5424 4.76705 26.2349C8.79906 25.9013 12.7399 24.194 15.8243 21.1092C19.17 17.7645 20.8978 13.416 21.0077 9.03414Z"/>
|
|
5
|
+
<mask id="somi_svg__mask0_8473_46779" width="36" height="36" x="3" y="3" maskUnits="userSpaceOnUse" style="mask-type:alpha">
|
|
6
|
+
<path fill="#1812FF" d="M20.9263 38.0624C30.2932 38.1066 37.9953 30.5099 38.0704 21.1456C38.0852 19.2682 37.7957 17.4606 37.2501 15.7681C33.2167 16.1017 29.2771 17.809 26.1915 20.8937C22.8458 24.2384 21.1193 28.5868 21.0093 32.9688C21.0012 33.2972 20.5751 33.4177 20.3928 33.1456C18.1971 29.8667 14.4586 27.7078 10.2148 27.7078C8.62505 27.7078 7.10499 28.0107 5.71094 28.5628C8.48698 34.1682 14.2535 38.0301 20.9263 38.0624Z"/>
|
|
7
|
+
<path fill="#1812FF" d="M21.0077 9.03414C21.0158 8.70583 21.442 8.58522 21.6243 8.85725C23.82 12.1363 27.5584 14.2952 31.8023 14.2952C33.3934 14.2952 34.9134 13.991 36.3075 13.4389C33.5327 7.83077 27.7648 3.96743 21.0909 3.93526C11.7226 3.88971 4.01908 11.4904 3.94536 20.8559C3.93062 22.7334 4.22015 24.5424 4.76705 26.2349C8.79906 25.9013 12.7399 24.194 15.8243 21.1092C19.17 17.7645 20.8978 13.416 21.0077 9.03414Z"/>
|
|
8
|
+
</mask>
|
|
9
|
+
<g mask="url(#somi_svg__mask0_8473_46779)">
|
|
10
|
+
<g filter="url(#somi_svg__filter0_f_8473_46779)">
|
|
11
|
+
<path fill="#3CD1EE" d="M7.28446 33.1602C16.8676 33.1602 24.6363 25.3676 24.6363 15.7549C24.6363 6.14222 16.8676 -1.65039 7.28446 -1.65039C-2.2987 -1.65039 -10.0674 6.14222 -10.0674 15.7549C-10.0674 25.3676 -2.2987 33.1602 7.28446 33.1602Z"/>
|
|
12
|
+
</g>
|
|
13
|
+
<g filter="url(#somi_svg__filter1_f_8473_46779)">
|
|
14
|
+
<path fill="#CB19EA" d="M34.0161 52.4172C44.9693 52.4172 53.8486 43.5105 53.8486 32.5235C53.8486 21.5366 44.9693 12.6299 34.0161 12.6299C23.0629 12.6299 14.1836 21.5366 14.1836 32.5235C14.1836 43.5105 23.0629 52.4172 34.0161 52.4172Z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</g>
|
|
17
|
+
<mask id="somi_svg__mask1_8473_46779" width="34" height="24" x="5" y="15" maskUnits="userSpaceOnUse" style="mask-type:alpha">
|
|
18
|
+
<path fill="#1812FF" d="M20.9273 38.0643C30.2942 38.1085 37.9963 30.5118 38.0714 21.1476C38.0862 19.2702 37.7967 17.4625 37.2511 15.77C33.2177 16.1036 29.2781 17.8109 26.1925 20.8957C22.8467 24.2405 21.1203 28.5889 21.0103 32.9708C21.0022 33.2991 20.5761 33.4196 20.3938 33.1477C18.1981 29.8686 14.4596 27.7098 10.2158 27.7098C8.62603 27.7098 7.10598 28.0127 5.71191 28.5647C8.48796 34.1702 14.2545 38.0322 20.9273 38.0643Z"/>
|
|
19
|
+
</mask>
|
|
20
|
+
<g mask="url(#somi_svg__mask1_8473_46779)">
|
|
21
|
+
<g filter="url(#somi_svg__filter2_f_8473_46779)">
|
|
22
|
+
<path fill="#FF0833" d="M27.6592 19.2964C27.6592 25.2839 32.2892 30.1377 38.0006 30.1377C43.712 30.1377 48.342 25.2839 48.342 19.2964C48.342 13.3089 43.712 8.45508 38.0006 8.45508C32.2892 8.45508 27.6592 13.3089 27.6592 19.2964Z"/>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
|
+
<defs>
|
|
26
|
+
<filter id="somi_svg__filter0_f_8473_46779" width="63.1322" height="63.2392" x="-24.2817" y="-15.8647" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
27
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
28
|
+
<feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/>
|
|
29
|
+
<feGaussianBlur result="effect1_foregroundBlur_8473_46779" stdDeviation="7.10716"/>
|
|
30
|
+
</filter>
|
|
31
|
+
<filter id="somi_svg__filter1_f_8473_46779" width="68.0937" height="68.2157" x="-0.0307236" y="-1.58443" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
32
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
33
|
+
<feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/>
|
|
34
|
+
<feGaussianBlur result="effect1_foregroundBlur_8473_46779" stdDeviation="7.10716"/>
|
|
35
|
+
</filter>
|
|
36
|
+
<filter id="somi_svg__filter2_f_8473_46779" width="43.4258" height="44.4255" x="16.2877" y="-2.91637" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
37
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
38
|
+
<feBlend in="SourceGraphic" in2="BackgroundImageFix" mode="normal" result="shape"/>
|
|
39
|
+
<feGaussianBlur result="effect1_foregroundBlur_8473_46779" stdDeviation="5.68573"/>
|
|
40
|
+
</filter>
|
|
41
|
+
</defs>
|
|
42
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@api3/logos",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.27",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"homepage": "https://api3dao.github.io/logos/",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"api-provider"
|
|
20
20
|
],
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@api3/dapi-management": "3.
|
|
22
|
+
"@api3/dapi-management": "3.53.0",
|
|
23
23
|
"@babel/core": "^7.28.3",
|
|
24
24
|
"@babel/preset-react": "^7.27.1",
|
|
25
25
|
"@changesets/changelog-github": "^0.5.1",
|