@dicebear/collection 4.10.0 → 5.0.0-alpha.0
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 +8 -9
- package/dist/index.es.js +16 -18
- package/dist/index.js +26 -31
- package/dist/index.umd.js +230 -129
- package/package.json +26 -27
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
export * as adventurer from '@dicebear/adventurer';
|
|
2
2
|
export * as adventurerNeutral from '@dicebear/adventurer-neutral';
|
|
3
|
-
export * as avataaars from '@dicebear/
|
|
4
|
-
export * as
|
|
5
|
-
export * as
|
|
6
|
-
export * as
|
|
7
|
-
export * as
|
|
8
|
-
export * as identicon from '@dicebear/
|
|
9
|
-
export * as initials from '@dicebear/
|
|
10
|
-
export * as
|
|
11
|
-
export * as male from '@dicebear/avatars-male-sprites';
|
|
3
|
+
export * as avataaars from '@dicebear/avataaars';
|
|
4
|
+
export * as avataaarsNeutral from '@dicebear/avataaars-neutral';
|
|
5
|
+
export * as bottts from '@dicebear/bottts';
|
|
6
|
+
export * as botttsNeutral from '@dicebear/bottts-neutral';
|
|
7
|
+
export * as gridy from '@dicebear/gridy';
|
|
8
|
+
export * as identicon from '@dicebear/identicon';
|
|
9
|
+
export * as initials from '@dicebear/initials';
|
|
10
|
+
export * as shapes from '@dicebear/shapes';
|
|
12
11
|
export * as micah from '@dicebear/micah';
|
|
13
12
|
export * as croodles from '@dicebear/croodles';
|
|
14
13
|
export * as croodlesNeutral from '@dicebear/croodles-neutral';
|
package/dist/index.es.js
CHANGED
|
@@ -2,24 +2,22 @@ import * as adventurer from '@dicebear/adventurer';
|
|
|
2
2
|
export { adventurer };
|
|
3
3
|
import * as adventurerNeutral from '@dicebear/adventurer-neutral';
|
|
4
4
|
export { adventurerNeutral };
|
|
5
|
-
import * as
|
|
6
|
-
export {
|
|
7
|
-
import * as
|
|
8
|
-
export {
|
|
9
|
-
import * as
|
|
10
|
-
export {
|
|
11
|
-
import * as
|
|
12
|
-
export {
|
|
13
|
-
import * as
|
|
14
|
-
export {
|
|
15
|
-
import * as
|
|
16
|
-
export {
|
|
17
|
-
import * as
|
|
18
|
-
export {
|
|
19
|
-
import * as
|
|
20
|
-
export {
|
|
21
|
-
import * as avatarsMaleSprites from '@dicebear/avatars-male-sprites';
|
|
22
|
-
export { avatarsMaleSprites as male };
|
|
5
|
+
import * as avataaars from '@dicebear/avataaars';
|
|
6
|
+
export { avataaars };
|
|
7
|
+
import * as avataaarsNeutral from '@dicebear/avataaars-neutral';
|
|
8
|
+
export { avataaarsNeutral };
|
|
9
|
+
import * as bottts from '@dicebear/bottts';
|
|
10
|
+
export { bottts };
|
|
11
|
+
import * as botttsNeutral from '@dicebear/bottts-neutral';
|
|
12
|
+
export { botttsNeutral };
|
|
13
|
+
import * as gridy from '@dicebear/gridy';
|
|
14
|
+
export { gridy };
|
|
15
|
+
import * as identicon from '@dicebear/identicon';
|
|
16
|
+
export { identicon };
|
|
17
|
+
import * as initials from '@dicebear/initials';
|
|
18
|
+
export { initials };
|
|
19
|
+
import * as shapes from '@dicebear/shapes';
|
|
20
|
+
export { shapes };
|
|
23
21
|
import * as micah from '@dicebear/micah';
|
|
24
22
|
export { micah };
|
|
25
23
|
import * as croodles from '@dicebear/croodles';
|
package/dist/index.js
CHANGED
|
@@ -4,15 +4,14 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var adventurer = require('@dicebear/adventurer');
|
|
6
6
|
var adventurerNeutral = require('@dicebear/adventurer-neutral');
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
10
|
-
var
|
|
11
|
-
var
|
|
12
|
-
var
|
|
13
|
-
var
|
|
14
|
-
var
|
|
15
|
-
var avatarsMaleSprites = require('@dicebear/avatars-male-sprites');
|
|
7
|
+
var avataaars = require('@dicebear/avataaars');
|
|
8
|
+
var avataaarsNeutral = require('@dicebear/avataaars-neutral');
|
|
9
|
+
var bottts = require('@dicebear/bottts');
|
|
10
|
+
var botttsNeutral = require('@dicebear/bottts-neutral');
|
|
11
|
+
var gridy = require('@dicebear/gridy');
|
|
12
|
+
var identicon = require('@dicebear/identicon');
|
|
13
|
+
var initials = require('@dicebear/initials');
|
|
14
|
+
var shapes = require('@dicebear/shapes');
|
|
16
15
|
var micah = require('@dicebear/micah');
|
|
17
16
|
var croodles = require('@dicebear/croodles');
|
|
18
17
|
var croodlesNeutral = require('@dicebear/croodles-neutral');
|
|
@@ -34,28 +33,25 @@ function _interopNamespace(e) {
|
|
|
34
33
|
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
35
34
|
Object.defineProperty(n, k, d.get ? d : {
|
|
36
35
|
enumerable: true,
|
|
37
|
-
get: function () {
|
|
38
|
-
return e[k];
|
|
39
|
-
}
|
|
36
|
+
get: function () { return e[k]; }
|
|
40
37
|
});
|
|
41
38
|
}
|
|
42
39
|
});
|
|
43
40
|
}
|
|
44
|
-
n[
|
|
41
|
+
n["default"] = e;
|
|
45
42
|
return Object.freeze(n);
|
|
46
43
|
}
|
|
47
44
|
|
|
48
45
|
var adventurer__namespace = /*#__PURE__*/_interopNamespace(adventurer);
|
|
49
46
|
var adventurerNeutral__namespace = /*#__PURE__*/_interopNamespace(adventurerNeutral);
|
|
50
|
-
var
|
|
51
|
-
var
|
|
52
|
-
var
|
|
53
|
-
var
|
|
54
|
-
var
|
|
55
|
-
var
|
|
56
|
-
var
|
|
57
|
-
var
|
|
58
|
-
var avatarsMaleSprites__namespace = /*#__PURE__*/_interopNamespace(avatarsMaleSprites);
|
|
47
|
+
var avataaars__namespace = /*#__PURE__*/_interopNamespace(avataaars);
|
|
48
|
+
var avataaarsNeutral__namespace = /*#__PURE__*/_interopNamespace(avataaarsNeutral);
|
|
49
|
+
var bottts__namespace = /*#__PURE__*/_interopNamespace(bottts);
|
|
50
|
+
var botttsNeutral__namespace = /*#__PURE__*/_interopNamespace(botttsNeutral);
|
|
51
|
+
var gridy__namespace = /*#__PURE__*/_interopNamespace(gridy);
|
|
52
|
+
var identicon__namespace = /*#__PURE__*/_interopNamespace(identicon);
|
|
53
|
+
var initials__namespace = /*#__PURE__*/_interopNamespace(initials);
|
|
54
|
+
var shapes__namespace = /*#__PURE__*/_interopNamespace(shapes);
|
|
59
55
|
var micah__namespace = /*#__PURE__*/_interopNamespace(micah);
|
|
60
56
|
var croodles__namespace = /*#__PURE__*/_interopNamespace(croodles);
|
|
61
57
|
var croodlesNeutral__namespace = /*#__PURE__*/_interopNamespace(croodlesNeutral);
|
|
@@ -72,15 +68,14 @@ var bigEarsNeutral__namespace = /*#__PURE__*/_interopNamespace(bigEarsNeutral);
|
|
|
72
68
|
|
|
73
69
|
exports.adventurer = adventurer__namespace;
|
|
74
70
|
exports.adventurerNeutral = adventurerNeutral__namespace;
|
|
75
|
-
exports.avataaars =
|
|
76
|
-
exports.
|
|
77
|
-
exports.
|
|
78
|
-
exports.
|
|
79
|
-
exports.
|
|
80
|
-
exports.identicon =
|
|
81
|
-
exports.initials =
|
|
82
|
-
exports.
|
|
83
|
-
exports.male = avatarsMaleSprites__namespace;
|
|
71
|
+
exports.avataaars = avataaars__namespace;
|
|
72
|
+
exports.avataaarsNeutral = avataaarsNeutral__namespace;
|
|
73
|
+
exports.bottts = bottts__namespace;
|
|
74
|
+
exports.botttsNeutral = botttsNeutral__namespace;
|
|
75
|
+
exports.gridy = gridy__namespace;
|
|
76
|
+
exports.identicon = identicon__namespace;
|
|
77
|
+
exports.initials = initials__namespace;
|
|
78
|
+
exports.shapes = shapes__namespace;
|
|
84
79
|
exports.micah = micah__namespace;
|
|
85
80
|
exports.croodles = croodles__namespace;
|
|
86
81
|
exports.croodlesNeutral = croodlesNeutral__namespace;
|