@dicebear/collection 4.8.6 → 4.10.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/dist/index.d.ts +7 -0
- package/dist/index.es.js +14 -0
- package/dist/index.js +23 -4
- package/dist/index.umd.js +159 -8
- package/package.json +26 -19
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export * as adventurer from '@dicebear/adventurer';
|
|
2
|
+
export * as adventurerNeutral from '@dicebear/adventurer-neutral';
|
|
1
3
|
export * as avataaars from '@dicebear/avatars-avataaars-sprites';
|
|
2
4
|
export * as bottts from '@dicebear/avatars-bottts-sprites';
|
|
3
5
|
export * as female from '@dicebear/avatars-female-sprites';
|
|
@@ -13,3 +15,8 @@ export * as croodlesNeutral from '@dicebear/croodles-neutral';
|
|
|
13
15
|
export * as pixelArt from '@dicebear/pixel-art';
|
|
14
16
|
export * as pixelArtNeutral from '@dicebear/pixel-art-neutral';
|
|
15
17
|
export * as openPeeps from '@dicebear/open-peeps';
|
|
18
|
+
export * as personas from '@dicebear/personas';
|
|
19
|
+
export * as miniavs from '@dicebear/miniavs';
|
|
20
|
+
export * as bigSmile from '@dicebear/big-smile';
|
|
21
|
+
export * as bigEars from '@dicebear/big-ears';
|
|
22
|
+
export * as bigEarsNeutral from '@dicebear/big-ears-neutral';
|
package/dist/index.es.js
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
import * as adventurer from '@dicebear/adventurer';
|
|
2
|
+
export { adventurer };
|
|
3
|
+
import * as adventurerNeutral from '@dicebear/adventurer-neutral';
|
|
4
|
+
export { adventurerNeutral };
|
|
1
5
|
import * as avatarsAvataaarsSprites from '@dicebear/avatars-avataaars-sprites';
|
|
2
6
|
export { avatarsAvataaarsSprites as avataaars };
|
|
3
7
|
import * as avatarsBotttsSprites from '@dicebear/avatars-bottts-sprites';
|
|
@@ -28,3 +32,13 @@ import * as pixelArtNeutral from '@dicebear/pixel-art-neutral';
|
|
|
28
32
|
export { pixelArtNeutral };
|
|
29
33
|
import * as openPeeps from '@dicebear/open-peeps';
|
|
30
34
|
export { openPeeps };
|
|
35
|
+
import * as personas from '@dicebear/personas';
|
|
36
|
+
export { personas };
|
|
37
|
+
import * as miniavs from '@dicebear/miniavs';
|
|
38
|
+
export { miniavs };
|
|
39
|
+
import * as bigSmile from '@dicebear/big-smile';
|
|
40
|
+
export { bigSmile };
|
|
41
|
+
import * as bigEars from '@dicebear/big-ears';
|
|
42
|
+
export { bigEars };
|
|
43
|
+
import * as bigEarsNeutral from '@dicebear/big-ears-neutral';
|
|
44
|
+
export { bigEarsNeutral };
|
package/dist/index.js
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
var adventurer = require('@dicebear/adventurer');
|
|
6
|
+
var adventurerNeutral = require('@dicebear/adventurer-neutral');
|
|
5
7
|
var avatarsAvataaarsSprites = require('@dicebear/avatars-avataaars-sprites');
|
|
6
8
|
var avatarsBotttsSprites = require('@dicebear/avatars-bottts-sprites');
|
|
7
9
|
var avatarsFemaleSprites = require('@dicebear/avatars-female-sprites');
|
|
@@ -17,6 +19,11 @@ var croodlesNeutral = require('@dicebear/croodles-neutral');
|
|
|
17
19
|
var pixelArt = require('@dicebear/pixel-art');
|
|
18
20
|
var pixelArtNeutral = require('@dicebear/pixel-art-neutral');
|
|
19
21
|
var openPeeps = require('@dicebear/open-peeps');
|
|
22
|
+
var personas = require('@dicebear/personas');
|
|
23
|
+
var miniavs = require('@dicebear/miniavs');
|
|
24
|
+
var bigSmile = require('@dicebear/big-smile');
|
|
25
|
+
var bigEars = require('@dicebear/big-ears');
|
|
26
|
+
var bigEarsNeutral = require('@dicebear/big-ears-neutral');
|
|
20
27
|
|
|
21
28
|
function _interopNamespace(e) {
|
|
22
29
|
if (e && e.__esModule) return e;
|
|
@@ -27,17 +34,17 @@ function _interopNamespace(e) {
|
|
|
27
34
|
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
28
35
|
Object.defineProperty(n, k, d.get ? d : {
|
|
29
36
|
enumerable: true,
|
|
30
|
-
get: function () {
|
|
31
|
-
return e[k];
|
|
32
|
-
}
|
|
37
|
+
get: function () { return e[k]; }
|
|
33
38
|
});
|
|
34
39
|
}
|
|
35
40
|
});
|
|
36
41
|
}
|
|
37
|
-
n[
|
|
42
|
+
n["default"] = e;
|
|
38
43
|
return Object.freeze(n);
|
|
39
44
|
}
|
|
40
45
|
|
|
46
|
+
var adventurer__namespace = /*#__PURE__*/_interopNamespace(adventurer);
|
|
47
|
+
var adventurerNeutral__namespace = /*#__PURE__*/_interopNamespace(adventurerNeutral);
|
|
41
48
|
var avatarsAvataaarsSprites__namespace = /*#__PURE__*/_interopNamespace(avatarsAvataaarsSprites);
|
|
42
49
|
var avatarsBotttsSprites__namespace = /*#__PURE__*/_interopNamespace(avatarsBotttsSprites);
|
|
43
50
|
var avatarsFemaleSprites__namespace = /*#__PURE__*/_interopNamespace(avatarsFemaleSprites);
|
|
@@ -53,9 +60,16 @@ var croodlesNeutral__namespace = /*#__PURE__*/_interopNamespace(croodlesNeutral)
|
|
|
53
60
|
var pixelArt__namespace = /*#__PURE__*/_interopNamespace(pixelArt);
|
|
54
61
|
var pixelArtNeutral__namespace = /*#__PURE__*/_interopNamespace(pixelArtNeutral);
|
|
55
62
|
var openPeeps__namespace = /*#__PURE__*/_interopNamespace(openPeeps);
|
|
63
|
+
var personas__namespace = /*#__PURE__*/_interopNamespace(personas);
|
|
64
|
+
var miniavs__namespace = /*#__PURE__*/_interopNamespace(miniavs);
|
|
65
|
+
var bigSmile__namespace = /*#__PURE__*/_interopNamespace(bigSmile);
|
|
66
|
+
var bigEars__namespace = /*#__PURE__*/_interopNamespace(bigEars);
|
|
67
|
+
var bigEarsNeutral__namespace = /*#__PURE__*/_interopNamespace(bigEarsNeutral);
|
|
56
68
|
|
|
57
69
|
|
|
58
70
|
|
|
71
|
+
exports.adventurer = adventurer__namespace;
|
|
72
|
+
exports.adventurerNeutral = adventurerNeutral__namespace;
|
|
59
73
|
exports.avataaars = avatarsAvataaarsSprites__namespace;
|
|
60
74
|
exports.bottts = avatarsBotttsSprites__namespace;
|
|
61
75
|
exports.female = avatarsFemaleSprites__namespace;
|
|
@@ -71,3 +85,8 @@ exports.croodlesNeutral = croodlesNeutral__namespace;
|
|
|
71
85
|
exports.pixelArt = pixelArt__namespace;
|
|
72
86
|
exports.pixelArtNeutral = pixelArtNeutral__namespace;
|
|
73
87
|
exports.openPeeps = openPeeps__namespace;
|
|
88
|
+
exports.personas = personas__namespace;
|
|
89
|
+
exports.miniavs = miniavs__namespace;
|
|
90
|
+
exports.bigSmile = bigSmile__namespace;
|
|
91
|
+
exports.bigEars = bigEars__namespace;
|
|
92
|
+
exports.bigEarsNeutral = bigEarsNeutral__namespace;
|