@dicebear/open-peeps 8.0.0-rc.2 → 8.0.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 CHANGED
@@ -13,7 +13,7 @@ Applies to all non-design files in this package.
13
13
 
14
14
  MIT License
15
15
 
16
- Copyright (c) 2023 Florian Körner
16
+ Copyright (c) 2024 Florian Körner
17
17
 
18
18
  Permission is hereby granted, free of charge, to any person obtaining a copy
19
19
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- <h1 align="center"><img src="https://dicebear.com/logo-readme.svg" width="96" /> <br />DiceBear Open Peeps</h1>
1
+ <h1 align="center"><img src="https://www.dicebear.com/logo-readme.svg" width="96" /> <br />DiceBear Open Peeps</h1>
2
2
  <p align="center">
3
- <strong>Avatar Style for <a href="https://dicebear.com/">DiceBear</a></strong><br />
3
+ <strong>Avatar Style for <a href="https://www.dicebear.com/">DiceBear</a></strong><br />
4
4
  <a href="https://www.openpeeps.com/">Open Peeps</a> by <a href="https://twitter.com/pablostanley">Pablo Stanley</a>
5
5
  </p>
6
6
 
@@ -20,11 +20,11 @@
20
20
  <a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0</a>. / Remix of the original.
21
21
  </p>
22
22
  <p align="center">
23
- See <a href="https://dicebear.com/licenses">license overview</a> for more information.
23
+ See <a href="https://www.dicebear.com/licenses">license overview</a> for more information.
24
24
  </p>
25
25
 
26
26
  <p align="center">
27
- <a href="https://dicebear.com/styles/open-peeps">
27
+ <a href="https://www.dicebear.com/styles/open-peeps">
28
28
  Read Documentation
29
29
  </a>
30
30
  </p>
package/lib/index.d.ts CHANGED
@@ -8,7 +8,7 @@
8
8
  * Open Peeps (@dicebear/open-peeps)
9
9
  *
10
10
  * Code licensed under MIT License.
11
- * Copyright (c) 2023 Florian Körner
11
+ * Copyright (c) 2024 Florian Körner
12
12
  *
13
13
  * Design "Open Peeps" by Pablo Stanley licensed under CC0 1.0. / Remix of the original.
14
14
  * Source: https://www.openpeeps.com/
@@ -9,27 +9,27 @@ export function getComponents({ prng, options }) {
9
9
  const headComponent = pickComponent({
10
10
  prng,
11
11
  group: 'head',
12
- values: options.head
12
+ values: options.head,
13
13
  });
14
14
  const faceComponent = pickComponent({
15
15
  prng,
16
16
  group: 'face',
17
- values: options.face
17
+ values: options.face,
18
18
  });
19
19
  const facialHairComponent = pickComponent({
20
20
  prng,
21
21
  group: 'facialHair',
22
- values: options.facialHair
22
+ values: options.facialHair,
23
23
  });
24
24
  const maskComponent = pickComponent({
25
25
  prng,
26
26
  group: 'mask',
27
- values: options.mask
27
+ values: options.mask,
28
28
  });
29
29
  const accessoriesComponent = pickComponent({
30
30
  prng,
31
31
  group: 'accessories',
32
- values: options.accessories
32
+ values: options.accessories,
33
33
  });
34
34
  return {
35
35
  'head': headComponent,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dicebear/open-peeps",
3
- "version": "8.0.0-rc.2",
3
+ "version": "8.0.1",
4
4
  "description": "Avatar style for DiceBear",
5
5
  "keywords": [
6
6
  "dicebear"
@@ -29,14 +29,14 @@
29
29
  "test": "uvu tests"
30
30
  },
31
31
  "devDependencies": {
32
- "@dicebear/core": "8.0.0-rc.2",
32
+ "@dicebear/core": "8.0.1",
33
33
  "@tsconfig/recommended": "^1.0.2",
34
34
  "del-cli": "^5.0.0",
35
35
  "typescript": "^5.1.6",
36
36
  "uvu": "^0.5.6"
37
37
  },
38
38
  "peerDependencies": {
39
- "@dicebear/core": "^8.0.0-rc.2"
39
+ "@dicebear/core": "^8.0.0"
40
40
  },
41
41
  "engines": {
42
42
  "node": ">=16.0.0"
@@ -44,5 +44,5 @@
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "226c203a893f9e22401d35ab24c0418462d262c9"
47
+ "gitHead": "dc11ff0fa0328c521e5769fde4414ad5a6dc7d2d"
48
48
  }