@dicebear/initials 5.0.0-beta.4 → 5.0.0-beta.6
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/index.d.ts +1 -1
- package/package.json +4 -3
package/lib/index.d.ts
CHANGED
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
* Code licensed under MIT (https://github.com/dicebear/dicebear/blob/v4/packages/initials/LICENSE)
|
|
5
5
|
* Copyright (c) 2022 Florian Körner
|
|
6
6
|
*/
|
|
7
|
-
declare let create: import("@dicebear/core").StyleCreate<import("./types.js").Options>, meta: import("@dicebear/core").StyleMeta, schema: import("json-schema").JSONSchema7;
|
|
7
|
+
declare let create: import("@dicebear/core").StyleCreate<import("./types.js").Options>, meta: import("@dicebear/core").StyleMeta | undefined, schema: import("json-schema").JSONSchema7 | undefined;
|
|
8
8
|
export { create, meta, schema };
|
|
9
9
|
export * from './types.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dicebear/initials",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.6",
|
|
4
4
|
"description": "Initials avatar style for DiceBear",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dicebear"
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"type": "module",
|
|
17
|
+
"main": "./lib/index.js",
|
|
17
18
|
"exports": "./lib/index.js",
|
|
18
19
|
"types": "./lib/index.d.ts",
|
|
19
20
|
"files": [
|
|
@@ -31,7 +32,7 @@
|
|
|
31
32
|
"initials": "^3.1.2"
|
|
32
33
|
},
|
|
33
34
|
"devDependencies": {
|
|
34
|
-
"@dicebear/core": "^5.0.0-beta.
|
|
35
|
+
"@dicebear/core": "^5.0.0-beta.6",
|
|
35
36
|
"@tsconfig/recommended": "^1.0.1",
|
|
36
37
|
"del-cli": "^4.0.1",
|
|
37
38
|
"typescript": "^4.6.3",
|
|
@@ -46,5 +47,5 @@
|
|
|
46
47
|
"publishConfig": {
|
|
47
48
|
"access": "public"
|
|
48
49
|
},
|
|
49
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "1a81759251d30336383497f31843b48809d0f56b"
|
|
50
51
|
}
|