@dicebear/miniavs 5.0.0-alpha.9 → 5.0.0-beta.1
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/LICENSE +1 -1
- package/README.md +3 -3
- package/lib/components/blushes.d.ts +8 -0
- package/lib/components/blushes.js +9 -0
- package/lib/components/body.d.ts +8 -0
- package/lib/components/body.js +11 -0
- package/lib/components/eyes.d.ts +8 -0
- package/lib/components/eyes.js +12 -0
- package/lib/components/glasses.d.ts +8 -0
- package/lib/components/glasses.js +9 -0
- package/lib/components/hair.d.ts +8 -0
- package/lib/components/hair.js +18 -0
- package/lib/components/head.d.ts +8 -0
- package/lib/components/head.js +12 -0
- package/lib/components/index.d.ts +14 -0
- package/lib/components/index.js +14 -0
- package/lib/components/mouth.d.ts +8 -0
- package/lib/components/mouth.js +10 -0
- package/lib/components/mustache.d.ts +8 -0
- package/lib/components/mustache.js +13 -0
- package/lib/core.d.ts +9 -0
- package/lib/core.js +39 -0
- package/lib/hooks/onPostCreate.d.ts +16 -0
- package/lib/hooks/onPostCreate.js +9 -0
- package/lib/hooks/onPreCreate.d.ts +14 -0
- package/lib/hooks/onPreCreate.js +9 -0
- package/lib/index.d.ts +9 -0
- package/lib/index.js +20 -0
- package/lib/schema.d.ts +8 -0
- package/lib/schema.js +195 -0
- package/lib/types.d.ts +31 -0
- package/lib/types.js +7 -0
- package/lib/utils/getColors.d.ts +14 -0
- package/lib/utils/getColors.js +15 -0
- package/lib/utils/getComponents.d.ts +14 -0
- package/lib/utils/getComponents.js +60 -0
- package/lib/utils/pickComponent.d.ts +15 -0
- package/lib/utils/pickComponent.js +20 -0
- package/package.json +19 -28
- package/dist/index.d.ts +0 -24
- package/dist/index.d.ts.map +0 -1
- package/dist/index.es.js +0 -373
- package/dist/index.es.js.map +0 -1
- package/dist/index.js +0 -377
- package/dist/index.js.map +0 -1
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<h1 align="center"><img src="./tests/svg/0.svg" width="124" /> <br />Miniavs</h1>
|
|
2
2
|
<p align="center">
|
|
3
3
|
<strong>Avatar Style for <a href="https://dicebear.com/">DiceBear</a></strong><br />
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
<a href="https://www.figma.com/community/file/923211396597067458">Miniavs - Free Avatar Creator</a>
|
|
5
|
+
by <a href="https://webpixels.io/">Webpixels</a>
|
|
6
6
|
</p>
|
|
7
7
|
|
|
8
8
|
<p align="center">
|
|
9
9
|
While our code is MIT licensed, the design is licensed under
|
|
10
|
-
|
|
10
|
+
<a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.
|
|
11
11
|
See <a href="https://dicebear.com/licenses">license overview</a> for more information.
|
|
12
12
|
</p>
|
|
13
13
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import type { ComponentGroup } from '../types.js';
|
|
8
|
+
export declare const blushes: ComponentGroup;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
export const blushes = {
|
|
8
|
+
'default': (components, colors) => `<g fill="#FF859B"><rect x="24" y="39" width="5" height="3" rx="1.5"/><rect x="43" y="39" width="4" height="3" rx="1.5"/></g>`,
|
|
9
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import type { ComponentGroup } from '../types.js';
|
|
8
|
+
export declare const body: ComponentGroup;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import { escape } from '@dicebear/core';
|
|
8
|
+
export const body = {
|
|
9
|
+
'tShirt': (components, colors) => `<rect x="7" y="60" width="40" height="23" rx="9" fill="${escape.xml(`#${colors.body}`)}"/>`,
|
|
10
|
+
'golf': (components, colors) => `<rect x="7" y="60" width="40" height="23" rx="9" fill="${escape.xml(`#${colors.body}`)}"/><path d="M17 58h19v3s-5 1-9.5 1-9.5-1-9.5-1v-3Z" fill="${escape.xml(`#${colors.body}`)}"/><path d="M17 58h19v2s-3 1.5-9.5 1.5S17 60 17 60v-2Z" fill="#000" fill-opacity=".2"/><path d="M16.5 59c0-1.1.9-2 2-2h16a2 2 0 0 1 2 2s-5 1-10 1-10-1-10-1Z" fill="${escape.xml(`#${colors.body}`)}"/>`,
|
|
11
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import type { ComponentGroup } from '../types.js';
|
|
8
|
+
export declare const eyes: ComponentGroup;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import { escape } from '@dicebear/core';
|
|
8
|
+
export const eyes = {
|
|
9
|
+
'normal': (components, colors) => { var _a, _b; return `<g fill="${escape.xml(`#${colors.hair}`)}"><rect x="30" y="36" width="3" height="4" rx="1.5"/><rect x="40" y="36" width="3" height="4" rx="1.5"/></g>${(_b = (_a = components.blushes) === null || _a === void 0 ? void 0 : _a.value(components, colors)) !== null && _b !== void 0 ? _b : ''}`; },
|
|
10
|
+
'confident': (components, colors) => { var _a, _b; return `${(_b = (_a = components.blushes) === null || _a === void 0 ? void 0 : _a.value(components, colors)) !== null && _b !== void 0 ? _b : ''}<path d="M43 37.5a1.5 1.5 0 0 1-3 0v-1.23c0-.15.12-.27.27-.27h2.46c.15 0 .27.12.27.27v1.23ZM33 37.5a1.5 1.5 0 0 1-3 0v-1.23c0-.15.12-.27.27-.27h2.46c.15 0 .27.12.27.27v1.23Z" fill="${escape.xml(`#${colors.hair}`)}"/><path stroke="${escape.xml(`#${colors.hair}`)}" stroke-linecap="round" d="M29.5 36.5h4M39.5 36.5h4"/>`; },
|
|
11
|
+
'happy': (components, colors) => { var _a, _b; return `${(_b = (_a = components.blushes) === null || _a === void 0 ? void 0 : _a.value(components, colors)) !== null && _b !== void 0 ? _b : ''}<path d="M30 37.5a1.5 1.5 0 0 1 3 0v1.23c0 .15-.12.27-.27.27h-2.46a.27.27 0 0 1-.27-.27V37.5ZM40 37.5a1.5 1.5 0 0 1 3 0v1.23c0 .15-.12.27-.27.27h-2.46a.27.27 0 0 1-.27-.27V37.5Z" fill="#1B0B47"/>`; },
|
|
12
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import type { ComponentGroup } from '../types.js';
|
|
8
|
+
export declare const glasses: ComponentGroup;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
export const glasses = {
|
|
8
|
+
'normal': (components, colors) => `<g stroke="#000" stroke-width="2"><circle cx="30.27" cy="36.27" r="4.27"/><circle cx="44.27" cy="36.27" r="4.27"/><path d="m33.99 35.11 7-.1"/></g>`,
|
|
9
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import type { ComponentGroup } from '../types.js';
|
|
8
|
+
export declare const hair: ComponentGroup;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import { escape } from '@dicebear/core';
|
|
8
|
+
export const hair = {
|
|
9
|
+
'balndess': (components, colors) => `<g fill="${escape.xml(`#${colors.hair}`)}"><rect x="14" y="26" width="9" height="2" rx="1"/><rect x="14" y="33" width="7" height="2" rx="1"/><rect x="12" y="29" width="13" height="3" rx="1.5"/></g>`,
|
|
10
|
+
'slaughter': (components, colors) => `<path d="M24 25c0 .53-.1 1.04-.3 1.5A3.99 3.99 0 0 1 20 32a4 4 0 0 1-8 0c0-1.05.07-2.78.37-4.32a4 4 0 0 1 4.8-5.5A3.99 3.99 0 0 1 24 25ZM45.85 33.9a4 4 0 0 0 2.78-5.4 3.99 3.99 0 0 0-3.13-5.46c.6 3.14.48 6.61.38 9.78 0 .36-.02.72-.03 1.07Z" fill="${escape.xml(`#${colors.hair}`)}"/>`,
|
|
11
|
+
'ponyTail': (components, colors) => `<path d="M0 10c8-8 13 3 13 3l-2 8s-2 2.5 0 10-2.5 11.5-2.5 11.5S5 45 2 43s-3.4-3.92-3-7.5c.5-4.5 2-3 2-7.5s-9-10-1-18Z" fill="${escape.xml(`#${colors.hair}`)}"/><path d="m13.03 13.18 5.5 2.38-3.56 8.26-5.51-2.38S8.5 19.5 10 16.5c1.5-3 3.03-3.32 3.03-3.32Z" fill="#FF6C98"/><path d="m18 41-1.32-8.82A5 5 0 0 0 18 42v8.3c-1.55-1.37-2.93-3-4.08-4.83-1.7-2.7-2.9-5.8-3.48-9.1-.6-3.28-.58-6.68.04-9.96a25.57 25.57 0 0 1 3.55-9.05 21.32 21.32 0 0 1 6.43-6.5A17.85 17.85 0 0 1 31 8c2.5 0 4.97.45 7.27 1.33 2.3.88 4.4 2.17 6.16 3.8a17.48 17.48 0 0 1 4.12 5.67c.75 1.66 1.21 3.42 1.38 5.2H50v4.29s-.33.15-1 .36v8.5s0 1.4-1.5 2.45c-.52.36-1.22.64-1.9.85.19-1.45.29-2.91.29-4.35 0-1.04.03-2.14.07-3.29.04-1.11.07-2.27.08-3.44-1.85.34-4.37.63-7.58.63C30.62 30 26 28.29 26 28.29v-1A26.13 26.13 0 0 0 24 31c-.75 1.75-.75 3.54-.75 5.05 0 1.5 0 2.73-.75 3.34-1.5 1.2-4.5 1.6-4.5 1.6Z" fill="${escape.xml(`#${colors.hair}`)}"/>`,
|
|
12
|
+
'long': (components, colors) => `<path fill-rule="evenodd" clip-rule="evenodd" d="M48 25a18 18 0 0 0-36-.5V65h11V34.6a65.12 65.12 0 0 0 12.2-3.76 53.45 53.45 0 0 0 10.68-5.64c.24 2.53.15 5.16.08 7.61-.04 1.15-.08 2.25-.08 3.29 0 .4 0 .82-.02 1.23.23-.07.45-.15.64-.24 1.5-.69 1.5-1.6 1.5-1.6V25Zm-33 8a4.98 4.98 0 0 0 0 8v-8Z" fill="${escape.xml(`#${colors.hair}`)}"/>`,
|
|
13
|
+
'curly': (components, colors) => `<g fill="${escape.xml(`#${colors.hair}`)}"><path d="M45.97 32.48a4 4 0 0 0 1.78-4.88 4 4 0 0 0-2.97-7.41c1.42 3.67 1.31 8.22 1.19 12.3Z"/><path d="M36.3 22.76a4.98 4.98 0 0 1-6.36.2 6.98 6.98 0 0 1-6.99 1.74c-.26.28-.56.53-.89.73a3.98 3.98 0 0 1-1.35 6.19c.2.24.3.55.3.88a1.5 1.5 0 0 1-1.53 1.5 4 4 0 0 1-7.3-3.17 3.99 3.99 0 0 1 0-5.66 4 4 0 0 1 .74-3.71 7 7 0 0 1 4.1-10.17V11a4 4 0 0 1 5.94-3.5 7 7 0 0 1 9.8-2.42 6.48 6.48 0 0 1 10.78 1.95 4 4 0 0 1 3.43 4.58 7.33 7.33 0 0 1 3.05 5.9c0 4.14-3.58 7.5-8 7.5a8.25 8.25 0 0 1-5.7-2.24Z"/></g>`,
|
|
14
|
+
'stylish': (components, colors) => `<path d="M20.67 28.22v6.02c0 .76-.67 1.76-1.17 2.26-.5.5-2 1.5-2.85 1.5-.85 0-3.54-.45-4.83-2.26-1.28-1.8-.89-11.32 0-13.54.9-2.21 4.19-6.88 8.85-10.45a26.26 26.26 0 0 1 12.88-5.34C58.48 3.4 49.22 20.99 46 25.5c-5.5-2-9.5-2.5-16.72-1.53-7.21.99-8.01 1.99-8.6 4.24Z" fill="${escape.xml(`#${colors.hair}`)}"/>`,
|
|
15
|
+
'elvis': (components, colors) => `<path d="M22 28c-.63 3 1 6.98 1 7.74 0 .77-3.93 3.03-5 3.76-1.07.73-1.5-7-1.5-7-3 0-3.5 5.5-3.5 5.5s-2.25-.74-3-4.5c-.51-2.54.3-8.09.5-9.5.5-3.5 1-11.5 7.5-15.5s23-4 27-3C54.9 7.97 56.22 21.5 53 26c-5 5.5-19-1-23.5-1s-6.87 0-7.5 3Z" fill="${escape.xml(`#${colors.hair}`)}"/>`,
|
|
16
|
+
'classic02': (components, colors) => `<path d="M28.12 27.47C35.92 28.6 49.6 30.6 51 18 52 9 38.5-1.5 24 8c-9.1 1.35-11.39 8.28-11.9 14.26a3.99 3.99 0 0 0-.8 4.24 3.99 3.99 0 0 0 .87 4.33A4 4 0 1 0 20 32a4 4 0 0 0 3.87-5H24c.95 0 2.4.21 4.12.47Z" fill="${escape.xml(`#${colors.hair}`)}"/>`,
|
|
17
|
+
'classic01': (components, colors) => `<path d="M29.7 26.2c5.6 1.87 13.39 4.45 21.53-3.7 4-4-14-21-28.5-11.5-11.33 1.68-10.68 8.47-10.18 13.71.1 1 .18 1.95.18 2.8 0 .52.07.92.2 1.2-.16 1.24-.2 2.48-.2 3.3a4 4 0 1 0 8 0A4 4 0 0 0 24.61 27h.12a4 4 0 0 0 3.06-1.41c.6.18 1.24.4 1.9.61Z" fill="${escape.xml(`#${colors.hair}`)}"/>`,
|
|
18
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import type { ComponentGroup } from '../types.js';
|
|
8
|
+
export declare const head: ComponentGroup;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import { escape } from '@dicebear/core';
|
|
8
|
+
export const head = {
|
|
9
|
+
'normal': (components, colors) => `<path d="M45.89 36.1c0 8.5-1.26 18.86-10.89 19.82v9.95S31.36 68 26.5 68c-4.86 0-8.5-3.48-8.5-3.48V42a5 5 0 0 1-1.3-9.83C15.36 22.64 17.5 13 32 13c14.59 0 14.24 11.08 13.96 19.81-.04 1.15-.07 2.25-.07 3.29Z" fill="${escape.xml(`#${colors.skin}`)}"/><path d="M35 55.92c-.48.05-.98.07-1.5.07-8.88 0-13.9-7.15-15.5-14.6v23.13S21.64 68 26.5 68c4.86 0 8.5-2.13 8.5-2.13v-9.95Z" fill="#000" fill-opacity=".07"/><path d="M34.63 55.95c-.37.03-.74.04-1.13.04-6.53 0-10.97-3.86-13.5-8.87V48.24c0 5.38 2.61 9.75 8.28 9.75h1.35c3.34.03 4.59.04 5-2.04ZM16.7 32.17A5 5 0 0 0 18.14 42c-.48-1.98-.71-3.99-.71-5.9a46.7 46.7 0 0 1-.73-3.93Z" fill="#000" fill-opacity=".07"/><rect x="36" y="41" width="3" height="2" rx="1" fill="#000" fill-opacity=".07"/>`,
|
|
10
|
+
'wide': (components, colors) => `<path d="M46.07 40.4c.47 7.5.94 15-11.07 15.56v9.91S31.36 68 26.5 68c-4.86 0-8.5-3.48-8.5-3.48V45.1c-.2-1.02-.33-2.06-.41-3.12a5 5 0 0 1-.9-9.8C15.37 22.63 17.52 13 32 13c14.59 0 14.24 11.08 13.96 19.81-.04 1.15-.07 2.25-.07 3.29 0 1.4.09 2.86.18 4.3Z" fill="${escape.xml(`#${colors.skin}`)}"/><path d="M17.59 41.98c-.16-1.97-.16-3.97-.16-5.88a46.7 46.7 0 0 1-.73-3.93 5 5 0 0 0 .89 9.81ZM18 45.1v19.42S21.64 68 26.5 68c4.86 0 8.5-2.13 8.5-2.13v-9.91c-.48.02-.98.03-1.5.03-10.79 0-14.34-4.95-15.5-10.9Z" fill="#000" fill-opacity=".07"/><path d="M34.93 55.96c-.46.02-.93.03-1.43.03-7.25 0-11.23-2.23-13.41-5.5.5 4.82 3.16 8.5 8.3 8.5h1.36c3.8.03 4.92.04 5.18-3.03Z" fill="#000" fill-opacity=".07"/><rect x="36" y="41" width="3" height="2" rx="1" fill="#000" fill-opacity=".07"/>`,
|
|
11
|
+
'thin': (components, colors) => `<path d="M45.89 36.1c0 8.92-3.9 18.9-10.39 20.4l-.5-.06v9.43S31.36 68 26.5 68c-4.86 0-8.5-3.48-8.5-3.48V42a5 5 0 0 1-1.3-9.83C15.36 22.64 17.5 13 32 13c14.59 0 14.24 11.08 13.96 19.81-.04 1.15-.07 2.25-.07 3.29Z" fill="${escape.xml(`#${colors.skin}`)}"/><path d="M18 42v22.52S21.64 68 26.5 68c4.86 0 8.5-2.13 8.5-2.13v-9.43c-7.26-1.02-13.9-7.5-16.45-14.47-.18.02-.37.03-.55.03Z" fill="#000" fill-opacity=".07"/><path d="M16.7 32.17a5 5 0 0 0 1.85 9.8 17.14 17.14 0 0 1-1.12-5.87 46.7 46.7 0 0 1-.73-3.93ZM34.7 56.4c-6.75-1.1-12.9-6.87-15.7-13.3v.4c0 5.65 6.27 14.47 9.38 15.49 2.57.83 5.4.65 6.32-2.6Z" fill="#000" fill-opacity=".07"/><rect x="36" y="41" width="3" height="2" rx="1" fill="#000" fill-opacity=".07"/>`,
|
|
12
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
export { head } from './head.js';
|
|
8
|
+
export { body } from './body.js';
|
|
9
|
+
export { hair } from './hair.js';
|
|
10
|
+
export { mouth } from './mouth.js';
|
|
11
|
+
export { eyes } from './eyes.js';
|
|
12
|
+
export { glasses } from './glasses.js';
|
|
13
|
+
export { mustache } from './mustache.js';
|
|
14
|
+
export { blushes } from './blushes.js';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
export { head } from './head.js';
|
|
8
|
+
export { body } from './body.js';
|
|
9
|
+
export { hair } from './hair.js';
|
|
10
|
+
export { mouth } from './mouth.js';
|
|
11
|
+
export { eyes } from './eyes.js';
|
|
12
|
+
export { glasses } from './glasses.js';
|
|
13
|
+
export { mustache } from './mustache.js';
|
|
14
|
+
export { blushes } from './blushes.js';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import type { ComponentGroup } from '../types.js';
|
|
8
|
+
export declare const mouth: ComponentGroup;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
export const mouth = {
|
|
8
|
+
'default': (components, colors) => `<path d="M27.93 46a1 1 0 0 1 1-1h9.14a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-1.14a5 5 0 0 1-5-5Z" fill="#66253C"/><path d="M35.76 50.7a5 5 0 0 1-1.69.3h-1.14a5 5 0 0 1-5-4.8c.77-.29 1.9-.25 3.02-.22L32 46c2.21 0 4 1.57 4 3.5 0 .42-.09.83-.24 1.2Z" fill="#B03E67"/><path d="M29 45h10v1a1 1 0 0 1-1 1h-8a1 1 0 0 1-1-1v-1Z" fill="#fff"/>`,
|
|
9
|
+
'missingTooth': (components, colors) => `<path d="M27.93 46a1 1 0 0 1 1-1h9.14a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-1.14a5 5 0 0 1-5-5Z" fill="#66253C"/><path d="M35.76 50.7a5 5 0 0 1-1.69.3h-1.14a5 5 0 0 1-5-4.8c.77-.29 1.9-.25 3.02-.22L32 46c2.21 0 4 1.57 4 3.5 0 .42-.09.83-.24 1.2Z" fill="#B03E67"/><path d="M29 45h10v1a1 1 0 0 1-1 1h-8a1 1 0 0 1-1-1v-1Z" fill="#fff"/><path d="M31 45.3c0-.17.13-.3.3-.3h1.4c.17 0 .3.13.3.3v2.4a.3.3 0 0 1-.3.3h-1.4a.3.3 0 0 1-.3-.3v-2.4Z" fill="#B03E67"/>`,
|
|
10
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import type { ComponentGroup } from '../types.js';
|
|
8
|
+
export declare const mustache: ComponentGroup;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import { escape } from '@dicebear/core';
|
|
8
|
+
export const mustache = {
|
|
9
|
+
'pencilThinBeard': (components, colors) => `<path d="M26.5 45s4.5-.5 11-2v2c-1.5.67-5.5 1.6-7.5 2-2.5.5-3.5-2-3.5-2ZM48 44.76S44 44 38 43v2c1.43.59 4.6 1.15 6.5 1.5 2.38.44 3.5-1.74 3.5-1.74ZM33.31 55.24a1 1 0 0 1 .97-1.24h3.44a1 1 0 0 1 .97 1.24l-.25 1a1 1 0 0 1-.97.76h-2.94a1 1 0 0 1-.97-.76l-.25-1Z" fill="${escape.xml(`#${colors.hair}`)}"/>`,
|
|
10
|
+
'pencilThin': (components, colors) => `<path d="M37.5 43c-6.5 1.5-11 2-11 2s1 2.5 3.5 2c2-.4 6-1.33 7.5-2v-2ZM38 43c6 1 10 1.76 10 1.76s-1.12 2.18-3.5 1.74l-.32-.06c-1.92-.35-4.83-.89-6.18-1.44v-2Z" fill="${escape.xml(`#${colors.hair}`)}"/>`,
|
|
11
|
+
'horshoe': (components, colors) => `<path d="M27 46a3 3 0 0 1 3-3h11a3 3 0 0 1 3 3v11a4 4 0 0 1-4-4v-7h-9v7a4 4 0 0 1-4 4V46Z" fill="${escape.xml(`#${colors.hair}`)}"/>`,
|
|
12
|
+
'freddy': (components, colors) => `<path d="M28 46a3 3 0 0 1 3-3h9a3 3 0 0 1 3 3H28Z" fill="${escape.xml(`#${colors.hair}`)}"/>`,
|
|
13
|
+
};
|
package/lib/core.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import type { Style } from '@dicebear/core';
|
|
8
|
+
import type { Options } from './types.js';
|
|
9
|
+
export declare const style: Style<Options>;
|
package/lib/core.js
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import { schema } from './schema.js';
|
|
8
|
+
import { getComponents } from './utils/getComponents.js';
|
|
9
|
+
import { getColors } from './utils/getColors.js';
|
|
10
|
+
import { onPreCreate } from './hooks/onPreCreate.js';
|
|
11
|
+
import { onPostCreate } from './hooks/onPostCreate.js';
|
|
12
|
+
export const style = {
|
|
13
|
+
meta: {
|
|
14
|
+
title: 'Miniavs - Free Avatar Creator',
|
|
15
|
+
creator: 'Webpixels',
|
|
16
|
+
source: 'https://www.figma.com/community/file/923211396597067458',
|
|
17
|
+
homepage: 'https://webpixels.io/',
|
|
18
|
+
license: {
|
|
19
|
+
name: 'CC BY 4.0',
|
|
20
|
+
url: 'https://creativecommons.org/licenses/by/4.0/',
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
schema: schema,
|
|
24
|
+
create: ({ prng, options }) => {
|
|
25
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p;
|
|
26
|
+
onPreCreate({ prng, options });
|
|
27
|
+
const components = getComponents({ prng, options });
|
|
28
|
+
const colors = getColors({ prng, options });
|
|
29
|
+
onPostCreate({ prng, options, components, colors });
|
|
30
|
+
return {
|
|
31
|
+
attributes: {
|
|
32
|
+
viewBox: '0 0 64 64',
|
|
33
|
+
fill: 'none',
|
|
34
|
+
'shape-rendering': 'auto'
|
|
35
|
+
},
|
|
36
|
+
body: `${(_b = (_a = components.head) === null || _a === void 0 ? void 0 : _a.value(components, colors)) !== null && _b !== void 0 ? _b : ''}${(_d = (_c = components.body) === null || _c === void 0 ? void 0 : _c.value(components, colors)) !== null && _d !== void 0 ? _d : ''}${(_f = (_e = components.hair) === null || _e === void 0 ? void 0 : _e.value(components, colors)) !== null && _f !== void 0 ? _f : ''}<g transform="translate(1)">${(_h = (_g = components.mouth) === null || _g === void 0 ? void 0 : _g.value(components, colors)) !== null && _h !== void 0 ? _h : ''}</g><g transform="translate(0 -1)">${(_k = (_j = components.eyes) === null || _j === void 0 ? void 0 : _j.value(components, colors)) !== null && _k !== void 0 ? _k : ''}</g>${(_m = (_l = components.glasses) === null || _l === void 0 ? void 0 : _l.value(components, colors)) !== null && _m !== void 0 ? _m : ''}${(_p = (_o = components.mustache) === null || _o === void 0 ? void 0 : _o.value(components, colors)) !== null && _p !== void 0 ? _p : ''}`,
|
|
37
|
+
};
|
|
38
|
+
},
|
|
39
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import { Prng, StyleOptions } from "@dicebear/core";
|
|
8
|
+
import { Options, ColorPickCollection, ComponentPickCollection } from "../types.js";
|
|
9
|
+
declare type Props = {
|
|
10
|
+
prng: Prng;
|
|
11
|
+
options: StyleOptions<Options>;
|
|
12
|
+
components: ComponentPickCollection;
|
|
13
|
+
colors: ColorPickCollection;
|
|
14
|
+
};
|
|
15
|
+
export declare function onPostCreate({ prng, options, components, colors }: Props): void;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
export function onPostCreate({ prng, options, components, colors }) {
|
|
8
|
+
// Write your modifications here
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import { Prng, StyleOptions } from "@dicebear/core";
|
|
8
|
+
import { Options } from "../types.js";
|
|
9
|
+
declare type Props = {
|
|
10
|
+
prng: Prng;
|
|
11
|
+
options: StyleOptions<Options>;
|
|
12
|
+
};
|
|
13
|
+
export declare function onPreCreate({ prng, options }: Props): void;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
export function onPreCreate({ prng, options }) {
|
|
8
|
+
// Write your modifications here
|
|
9
|
+
}
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
declare const create: import("@dicebear/core").StyleCreate<import("./types.js").Options>, meta: import("@dicebear/core").StyleMeta, schema: import("json-schema").JSONSchema7;
|
|
8
|
+
export { create, meta, schema };
|
|
9
|
+
export type { Options } from './types.js';
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
/*!
|
|
8
|
+
* Miniavs (@dicebear/miniavs)
|
|
9
|
+
*
|
|
10
|
+
* Code licensed under MIT License.
|
|
11
|
+
* Copyright (c) 2022 Florian Körner
|
|
12
|
+
*
|
|
13
|
+
* Design "Miniavs - Free Avatar Creator" by Webpixels licensed under CC BY 4.0. / Remix of the original.
|
|
14
|
+
* Source: https://www.figma.com/community/file/923211396597067458
|
|
15
|
+
* Homepage: https://webpixels.io/
|
|
16
|
+
* License: https://creativecommons.org/licenses/by/4.0/
|
|
17
|
+
*/
|
|
18
|
+
import { style } from './core.js';
|
|
19
|
+
const { create, meta, schema } = style;
|
|
20
|
+
export { create, meta, schema };
|
package/lib/schema.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
import type { StyleSchema } from '@dicebear/core';
|
|
8
|
+
export declare const schema: StyleSchema;
|
package/lib/schema.js
ADDED
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
export const schema = {
|
|
8
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
9
|
+
"properties": {
|
|
10
|
+
"blushes": {
|
|
11
|
+
"type": "array",
|
|
12
|
+
"items": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"enum": [
|
|
15
|
+
"default"
|
|
16
|
+
]
|
|
17
|
+
},
|
|
18
|
+
"default": [
|
|
19
|
+
"default"
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"blushesProbability": {
|
|
23
|
+
"type": "integer",
|
|
24
|
+
"minimum": 0,
|
|
25
|
+
"maximum": 100,
|
|
26
|
+
"default": 50
|
|
27
|
+
},
|
|
28
|
+
"body": {
|
|
29
|
+
"type": "array",
|
|
30
|
+
"items": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"enum": [
|
|
33
|
+
"tShirt",
|
|
34
|
+
"golf"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"default": [
|
|
38
|
+
"tShirt",
|
|
39
|
+
"golf"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"bodyColor": {
|
|
43
|
+
"type": "array",
|
|
44
|
+
"items": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"pattern": "^[a-fA-F0-9]{6}$"
|
|
47
|
+
},
|
|
48
|
+
"default": [
|
|
49
|
+
"e05a33",
|
|
50
|
+
"3633e0",
|
|
51
|
+
"ff4dd8"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"eyes": {
|
|
55
|
+
"type": "array",
|
|
56
|
+
"items": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"enum": [
|
|
59
|
+
"normal",
|
|
60
|
+
"confident",
|
|
61
|
+
"happy"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
"default": [
|
|
65
|
+
"normal",
|
|
66
|
+
"confident",
|
|
67
|
+
"happy"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
"glasses": {
|
|
71
|
+
"type": "array",
|
|
72
|
+
"items": {
|
|
73
|
+
"type": "string",
|
|
74
|
+
"enum": [
|
|
75
|
+
"normal"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"default": [
|
|
79
|
+
"normal"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
"glassesProbability": {
|
|
83
|
+
"type": "integer",
|
|
84
|
+
"minimum": 0,
|
|
85
|
+
"maximum": 100,
|
|
86
|
+
"default": 20
|
|
87
|
+
},
|
|
88
|
+
"hair": {
|
|
89
|
+
"type": "array",
|
|
90
|
+
"items": {
|
|
91
|
+
"type": "string",
|
|
92
|
+
"enum": [
|
|
93
|
+
"balndess",
|
|
94
|
+
"slaughter",
|
|
95
|
+
"ponyTail",
|
|
96
|
+
"long",
|
|
97
|
+
"curly",
|
|
98
|
+
"stylish",
|
|
99
|
+
"elvis",
|
|
100
|
+
"classic02",
|
|
101
|
+
"classic01"
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
"default": [
|
|
105
|
+
"balndess",
|
|
106
|
+
"slaughter",
|
|
107
|
+
"ponyTail",
|
|
108
|
+
"long",
|
|
109
|
+
"curly",
|
|
110
|
+
"stylish",
|
|
111
|
+
"elvis",
|
|
112
|
+
"classic02",
|
|
113
|
+
"classic01"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
"hairColor": {
|
|
117
|
+
"type": "array",
|
|
118
|
+
"items": {
|
|
119
|
+
"type": "string",
|
|
120
|
+
"pattern": "^[a-fA-F0-9]{6}$"
|
|
121
|
+
},
|
|
122
|
+
"default": [
|
|
123
|
+
"47280b",
|
|
124
|
+
"1b0b47",
|
|
125
|
+
"ad3a20"
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
"head": {
|
|
129
|
+
"type": "array",
|
|
130
|
+
"items": {
|
|
131
|
+
"type": "string",
|
|
132
|
+
"enum": [
|
|
133
|
+
"normal",
|
|
134
|
+
"wide",
|
|
135
|
+
"thin"
|
|
136
|
+
]
|
|
137
|
+
},
|
|
138
|
+
"default": [
|
|
139
|
+
"normal",
|
|
140
|
+
"wide",
|
|
141
|
+
"thin"
|
|
142
|
+
]
|
|
143
|
+
},
|
|
144
|
+
"mouth": {
|
|
145
|
+
"type": "array",
|
|
146
|
+
"items": {
|
|
147
|
+
"type": "string",
|
|
148
|
+
"enum": [
|
|
149
|
+
"default",
|
|
150
|
+
"missingTooth"
|
|
151
|
+
]
|
|
152
|
+
},
|
|
153
|
+
"default": [
|
|
154
|
+
"default",
|
|
155
|
+
"missingTooth"
|
|
156
|
+
]
|
|
157
|
+
},
|
|
158
|
+
"mustache": {
|
|
159
|
+
"type": "array",
|
|
160
|
+
"items": {
|
|
161
|
+
"type": "string",
|
|
162
|
+
"enum": [
|
|
163
|
+
"pencilThinBeard",
|
|
164
|
+
"pencilThin",
|
|
165
|
+
"horshoe",
|
|
166
|
+
"freddy"
|
|
167
|
+
]
|
|
168
|
+
},
|
|
169
|
+
"default": [
|
|
170
|
+
"pencilThinBeard",
|
|
171
|
+
"pencilThin",
|
|
172
|
+
"horshoe",
|
|
173
|
+
"freddy"
|
|
174
|
+
]
|
|
175
|
+
},
|
|
176
|
+
"mustacheProbability": {
|
|
177
|
+
"type": "integer",
|
|
178
|
+
"minimum": 0,
|
|
179
|
+
"maximum": 100,
|
|
180
|
+
"default": 20
|
|
181
|
+
},
|
|
182
|
+
"skinColor": {
|
|
183
|
+
"type": "array",
|
|
184
|
+
"items": {
|
|
185
|
+
"type": "string",
|
|
186
|
+
"pattern": "^[a-fA-F0-9]{6}$"
|
|
187
|
+
},
|
|
188
|
+
"default": [
|
|
189
|
+
"ffcb7e",
|
|
190
|
+
"f5d0c5",
|
|
191
|
+
"836055"
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
};
|
package/lib/types.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma.
|
|
3
|
+
*
|
|
4
|
+
* Plugin: https://www.figma.com/community/plugin/1005765655729342787
|
|
5
|
+
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe/%40dicebear%2Fminiavs?node-id=274%3A4378
|
|
6
|
+
*/
|
|
7
|
+
export interface Options {
|
|
8
|
+
head?: ('normal' | 'wide' | 'thin')[];
|
|
9
|
+
body?: ('tShirt' | 'golf')[];
|
|
10
|
+
hair?: ('balndess' | 'slaughter' | 'ponyTail' | 'long' | 'curly' | 'stylish' | 'elvis' | 'classic02' | 'classic01')[];
|
|
11
|
+
mouth?: ('default' | 'missingTooth')[];
|
|
12
|
+
eyes?: ('normal' | 'confident' | 'happy')[];
|
|
13
|
+
glasses?: ('normal')[];
|
|
14
|
+
glassesProbability?: number;
|
|
15
|
+
mustache?: ('pencilThinBeard' | 'pencilThin' | 'horshoe' | 'freddy')[];
|
|
16
|
+
mustacheProbability?: number;
|
|
17
|
+
blushes?: ('default')[];
|
|
18
|
+
blushesProbability?: number;
|
|
19
|
+
skinColor?: string[];
|
|
20
|
+
hairColor?: string[];
|
|
21
|
+
bodyColor?: string[];
|
|
22
|
+
}
|
|
23
|
+
export declare type ColorPickCollection = Record<string, string>;
|
|
24
|
+
export declare type ComponentGroup = Record<string, ComponentGroupItem>;
|
|
25
|
+
export declare type ComponentGroupCollection = Record<string, ComponentGroup>;
|
|
26
|
+
export declare type ComponentGroupItem = (components: ComponentPickCollection, colors: ColorPickCollection) => string;
|
|
27
|
+
export declare type ComponentPickCollection = Record<string, ComponentPick>;
|
|
28
|
+
export declare type ComponentPick = {
|
|
29
|
+
name: string;
|
|
30
|
+
value: ComponentGroupItem;
|
|
31
|
+
} | undefined;
|