@dicebear/miniavs 9.2.1 → 9.2.3
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/lib/components/blushes.js +1 -1
- package/lib/components/body.js +2 -2
- package/lib/components/eyes.js +3 -3
- package/lib/components/glasses.js +1 -1
- package/lib/components/hair.js +9 -9
- package/lib/components/head.js +3 -3
- package/lib/components/mouth.js +2 -2
- package/lib/components/mustache.js +4 -4
- package/lib/index.js +1 -1
- package/lib/schema.js +105 -163
- package/lib/types.d.ts +2 -2
- package/lib/utils/getColors.js +3 -4
- package/lib/utils/getComponents.d.ts +1 -1
- package/lib/utils/getComponents.js +15 -10
- package/lib/utils/pickComponent.d.ts +1 -1
- package/lib/utils/pickComponent.js +1 -1
- package/package.json +6 -6
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe
|
|
6
6
|
*/
|
|
7
7
|
export const blushes = {
|
|
8
|
-
|
|
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
9
|
};
|
package/lib/components/body.js
CHANGED
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { escape } from '@dicebear/core';
|
|
8
8
|
export const body = {
|
|
9
|
-
|
|
10
|
-
|
|
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
11
|
};
|
package/lib/components/eyes.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { escape } from '@dicebear/core';
|
|
8
8
|
export const eyes = {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
12
|
};
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe
|
|
6
6
|
*/
|
|
7
7
|
export const glasses = {
|
|
8
|
-
|
|
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
9
|
};
|
package/lib/components/hair.js
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { escape } from '@dicebear/core';
|
|
8
8
|
export const hair = {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
18
|
};
|
package/lib/components/head.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { escape } from '@dicebear/core';
|
|
8
8
|
export const head = {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
12
|
};
|
package/lib/components/mouth.js
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe
|
|
6
6
|
*/
|
|
7
7
|
export const mouth = {
|
|
8
|
-
|
|
9
|
-
|
|
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
10
|
};
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { escape } from '@dicebear/core';
|
|
8
8
|
export const mustache = {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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
13
|
};
|
package/lib/index.js
CHANGED
|
@@ -24,7 +24,7 @@ export const create = ({ prng, options }) => {
|
|
|
24
24
|
attributes: {
|
|
25
25
|
viewBox: '0 0 64 64',
|
|
26
26
|
fill: 'none',
|
|
27
|
-
'shape-rendering': 'auto'
|
|
27
|
+
'shape-rendering': 'auto',
|
|
28
28
|
},
|
|
29
29
|
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 : ''}`,
|
|
30
30
|
extra: () => ({
|
package/lib/schema.js
CHANGED
|
@@ -5,191 +5,133 @@
|
|
|
5
5
|
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe
|
|
6
6
|
*/
|
|
7
7
|
export const schema = {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"default"
|
|
16
|
-
]
|
|
8
|
+
$schema: 'http://json-schema.org/draft-07/schema#',
|
|
9
|
+
properties: {
|
|
10
|
+
blushes: {
|
|
11
|
+
type: 'array',
|
|
12
|
+
items: {
|
|
13
|
+
type: 'string',
|
|
14
|
+
enum: ['default'],
|
|
17
15
|
},
|
|
18
|
-
|
|
19
|
-
"default"
|
|
20
|
-
]
|
|
16
|
+
default: ['default'],
|
|
21
17
|
},
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
18
|
+
blushesProbability: {
|
|
19
|
+
type: 'integer',
|
|
20
|
+
minimum: 0,
|
|
21
|
+
maximum: 100,
|
|
22
|
+
default: 50,
|
|
27
23
|
},
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"tShirt",
|
|
34
|
-
"golf"
|
|
35
|
-
]
|
|
24
|
+
body: {
|
|
25
|
+
type: 'array',
|
|
26
|
+
items: {
|
|
27
|
+
type: 'string',
|
|
28
|
+
enum: ['tShirt', 'golf'],
|
|
36
29
|
},
|
|
37
|
-
|
|
38
|
-
"tShirt",
|
|
39
|
-
"golf"
|
|
40
|
-
]
|
|
30
|
+
default: ['tShirt', 'golf'],
|
|
41
31
|
},
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
32
|
+
bodyColor: {
|
|
33
|
+
type: 'array',
|
|
34
|
+
items: {
|
|
35
|
+
type: 'string',
|
|
36
|
+
pattern: '^(transparent|[a-fA-F0-9]{6})$',
|
|
47
37
|
},
|
|
48
|
-
|
|
49
|
-
"e05a33",
|
|
50
|
-
"3633e0",
|
|
51
|
-
"ff4dd8"
|
|
52
|
-
]
|
|
38
|
+
default: ['e05a33', '3633e0', 'ff4dd8'],
|
|
53
39
|
},
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"normal",
|
|
60
|
-
"confident",
|
|
61
|
-
"happy"
|
|
62
|
-
]
|
|
40
|
+
eyes: {
|
|
41
|
+
type: 'array',
|
|
42
|
+
items: {
|
|
43
|
+
type: 'string',
|
|
44
|
+
enum: ['normal', 'confident', 'happy'],
|
|
63
45
|
},
|
|
64
|
-
|
|
65
|
-
"normal",
|
|
66
|
-
"confident",
|
|
67
|
-
"happy"
|
|
68
|
-
]
|
|
46
|
+
default: ['normal', 'confident', 'happy'],
|
|
69
47
|
},
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"normal"
|
|
76
|
-
]
|
|
48
|
+
glasses: {
|
|
49
|
+
type: 'array',
|
|
50
|
+
items: {
|
|
51
|
+
type: 'string',
|
|
52
|
+
enum: ['normal'],
|
|
77
53
|
},
|
|
78
|
-
|
|
79
|
-
"normal"
|
|
80
|
-
]
|
|
54
|
+
default: ['normal'],
|
|
81
55
|
},
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
56
|
+
glassesProbability: {
|
|
57
|
+
type: 'integer',
|
|
58
|
+
minimum: 0,
|
|
59
|
+
maximum: 100,
|
|
60
|
+
default: 20,
|
|
87
61
|
},
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
]
|
|
62
|
+
hair: {
|
|
63
|
+
type: 'array',
|
|
64
|
+
items: {
|
|
65
|
+
type: 'string',
|
|
66
|
+
enum: [
|
|
67
|
+
'balndess',
|
|
68
|
+
'slaughter',
|
|
69
|
+
'ponyTail',
|
|
70
|
+
'long',
|
|
71
|
+
'curly',
|
|
72
|
+
'stylish',
|
|
73
|
+
'elvis',
|
|
74
|
+
'classic02',
|
|
75
|
+
'classic01',
|
|
76
|
+
],
|
|
103
77
|
},
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
]
|
|
78
|
+
default: [
|
|
79
|
+
'balndess',
|
|
80
|
+
'slaughter',
|
|
81
|
+
'ponyTail',
|
|
82
|
+
'long',
|
|
83
|
+
'curly',
|
|
84
|
+
'stylish',
|
|
85
|
+
'elvis',
|
|
86
|
+
'classic02',
|
|
87
|
+
'classic01',
|
|
88
|
+
],
|
|
115
89
|
},
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
90
|
+
hairColor: {
|
|
91
|
+
type: 'array',
|
|
92
|
+
items: {
|
|
93
|
+
type: 'string',
|
|
94
|
+
pattern: '^(transparent|[a-fA-F0-9]{6})$',
|
|
121
95
|
},
|
|
122
|
-
|
|
123
|
-
"47280b",
|
|
124
|
-
"1b0b47",
|
|
125
|
-
"ad3a20"
|
|
126
|
-
]
|
|
96
|
+
default: ['47280b', '1b0b47', 'ad3a20'],
|
|
127
97
|
},
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
"normal",
|
|
134
|
-
"wide",
|
|
135
|
-
"thin"
|
|
136
|
-
]
|
|
98
|
+
head: {
|
|
99
|
+
type: 'array',
|
|
100
|
+
items: {
|
|
101
|
+
type: 'string',
|
|
102
|
+
enum: ['normal', 'wide', 'thin'],
|
|
137
103
|
},
|
|
138
|
-
|
|
139
|
-
"normal",
|
|
140
|
-
"wide",
|
|
141
|
-
"thin"
|
|
142
|
-
]
|
|
104
|
+
default: ['normal', 'wide', 'thin'],
|
|
143
105
|
},
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
"default",
|
|
150
|
-
"missingTooth"
|
|
151
|
-
]
|
|
106
|
+
mouth: {
|
|
107
|
+
type: 'array',
|
|
108
|
+
items: {
|
|
109
|
+
type: 'string',
|
|
110
|
+
enum: ['default', 'missingTooth'],
|
|
152
111
|
},
|
|
153
|
-
|
|
154
|
-
"default",
|
|
155
|
-
"missingTooth"
|
|
156
|
-
]
|
|
112
|
+
default: ['default', 'missingTooth'],
|
|
157
113
|
},
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
"pencilThinBeard",
|
|
164
|
-
"pencilThin",
|
|
165
|
-
"horshoe",
|
|
166
|
-
"freddy"
|
|
167
|
-
]
|
|
114
|
+
mustache: {
|
|
115
|
+
type: 'array',
|
|
116
|
+
items: {
|
|
117
|
+
type: 'string',
|
|
118
|
+
enum: ['pencilThinBeard', 'pencilThin', 'horshoe', 'freddy'],
|
|
168
119
|
},
|
|
169
|
-
|
|
170
|
-
"pencilThinBeard",
|
|
171
|
-
"pencilThin",
|
|
172
|
-
"horshoe",
|
|
173
|
-
"freddy"
|
|
174
|
-
]
|
|
120
|
+
default: ['pencilThinBeard', 'pencilThin', 'horshoe', 'freddy'],
|
|
175
121
|
},
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
122
|
+
mustacheProbability: {
|
|
123
|
+
type: 'integer',
|
|
124
|
+
minimum: 0,
|
|
125
|
+
maximum: 100,
|
|
126
|
+
default: 20,
|
|
181
127
|
},
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
128
|
+
skinColor: {
|
|
129
|
+
type: 'array',
|
|
130
|
+
items: {
|
|
131
|
+
type: 'string',
|
|
132
|
+
pattern: '^(transparent|[a-fA-F0-9]{6})$',
|
|
187
133
|
},
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
"836055"
|
|
192
|
-
]
|
|
193
|
-
}
|
|
194
|
-
}
|
|
134
|
+
default: ['ffcb7e', 'f5d0c5', '836055'],
|
|
135
|
+
},
|
|
136
|
+
},
|
|
195
137
|
};
|
package/lib/types.d.ts
CHANGED
|
@@ -10,11 +10,11 @@ export interface Options {
|
|
|
10
10
|
hair?: ('balndess' | 'slaughter' | 'ponyTail' | 'long' | 'curly' | 'stylish' | 'elvis' | 'classic02' | 'classic01')[];
|
|
11
11
|
mouth?: ('default' | 'missingTooth')[];
|
|
12
12
|
eyes?: ('normal' | 'confident' | 'happy')[];
|
|
13
|
-
glasses?:
|
|
13
|
+
glasses?: 'normal'[];
|
|
14
14
|
glassesProbability?: number;
|
|
15
15
|
mustache?: ('pencilThinBeard' | 'pencilThin' | 'horshoe' | 'freddy')[];
|
|
16
16
|
mustacheProbability?: number;
|
|
17
|
-
blushes?:
|
|
17
|
+
blushes?: 'default'[];
|
|
18
18
|
blushesProbability?: number;
|
|
19
19
|
skinColor?: string[];
|
|
20
20
|
hairColor?: string[];
|
package/lib/utils/getColors.js
CHANGED
|
@@ -8,9 +8,8 @@ import { convertColor } from './convertColor.js';
|
|
|
8
8
|
export function getColors({ prng, options }) {
|
|
9
9
|
var _a, _b, _c;
|
|
10
10
|
return {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
skin: convertColor(prng.pick((_a = options.skinColor) !== null && _a !== void 0 ? _a : [], 'transparent')),
|
|
12
|
+
hair: convertColor(prng.pick((_b = options.hairColor) !== null && _b !== void 0 ? _b : [], 'transparent')),
|
|
13
|
+
body: convertColor(prng.pick((_c = options.bodyColor) !== null && _c !== void 0 ? _c : [], 'transparent')),
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
-
;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe
|
|
6
6
|
*/
|
|
7
7
|
import { pickComponent } from './pickComponent.js';
|
|
8
|
-
export function getComponents({ prng, options }) {
|
|
8
|
+
export function getComponents({ prng, options, }) {
|
|
9
9
|
const headComponent = pickComponent({
|
|
10
10
|
prng,
|
|
11
11
|
group: 'head',
|
|
@@ -47,14 +47,19 @@ export function getComponents({ prng, options }) {
|
|
|
47
47
|
values: options.blushes,
|
|
48
48
|
});
|
|
49
49
|
return {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
50
|
+
head: headComponent,
|
|
51
|
+
body: bodyComponent,
|
|
52
|
+
hair: hairComponent,
|
|
53
|
+
mouth: mouthComponent,
|
|
54
|
+
eyes: eyesComponent,
|
|
55
|
+
glasses: prng.bool(options.glassesProbability)
|
|
56
|
+
? glassesComponent
|
|
57
|
+
: undefined,
|
|
58
|
+
mustache: prng.bool(options.mustacheProbability)
|
|
59
|
+
? mustacheComponent
|
|
60
|
+
: undefined,
|
|
61
|
+
blushes: prng.bool(options.blushesProbability)
|
|
62
|
+
? blushesComponent
|
|
63
|
+
: undefined,
|
|
58
64
|
};
|
|
59
65
|
}
|
|
60
|
-
;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* File: https://www.figma.com/file/Vh7N9shKJTNHNo9prUzkZe
|
|
6
6
|
*/
|
|
7
7
|
import * as components from '../components/index.js';
|
|
8
|
-
export function pickComponent({ prng, group, values = [] }) {
|
|
8
|
+
export function pickComponent({ prng, group, values = [], }) {
|
|
9
9
|
const componentCollection = components;
|
|
10
10
|
const key = prng.pick(values);
|
|
11
11
|
if (key && componentCollection[group][key]) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dicebear/miniavs",
|
|
3
|
-
"version": "9.2.
|
|
3
|
+
"version": "9.2.3",
|
|
4
4
|
"description": "Avatar style for DiceBear",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dicebear"
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"test": "uvu tests"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@dicebear/core": "9.2.
|
|
33
|
-
"@tsconfig/recommended": "^1.0.
|
|
34
|
-
"del-cli": "^
|
|
35
|
-
"typescript": "^5.
|
|
32
|
+
"@dicebear/core": "9.2.3",
|
|
33
|
+
"@tsconfig/recommended": "^1.0.10",
|
|
34
|
+
"del-cli": "^6.0.0",
|
|
35
|
+
"typescript": "^5.8.3",
|
|
36
36
|
"uvu": "^0.5.6"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "8cfdc4d029c9de6a82fef4e27ed67b5e2cd14a30"
|
|
48
48
|
}
|