@dicebear/identicon 7.0.3 → 7.0.5

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/lib/index.d.ts CHANGED
@@ -8,7 +8,7 @@
8
8
  * Identicon (@dicebear/identicon)
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 "Identicon" by Florian Körner licensed under CC0 1.0. / Remix of the original.
14
14
  * Source: https://dicebear.com
@@ -9,27 +9,27 @@ export function getComponents({ prng, options }) {
9
9
  const row1Component = pickComponent({
10
10
  prng,
11
11
  group: 'row1',
12
- values: options.row1
12
+ values: options.row1,
13
13
  });
14
14
  const row2Component = pickComponent({
15
15
  prng,
16
16
  group: 'row2',
17
- values: options.row2
17
+ values: options.row2,
18
18
  });
19
19
  const row3Component = pickComponent({
20
20
  prng,
21
21
  group: 'row3',
22
- values: options.row3
22
+ values: options.row3,
23
23
  });
24
24
  const row4Component = pickComponent({
25
25
  prng,
26
26
  group: 'row4',
27
- values: options.row4
27
+ values: options.row4,
28
28
  });
29
29
  const row5Component = pickComponent({
30
30
  prng,
31
31
  group: 'row5',
32
- values: options.row5
32
+ values: options.row5,
33
33
  });
34
34
  return {
35
35
  'row1': row1Component,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dicebear/identicon",
3
- "version": "7.0.3",
3
+ "version": "7.0.5",
4
4
  "description": "Avatar style for DiceBear",
5
5
  "keywords": [
6
6
  "dicebear"
@@ -29,7 +29,7 @@
29
29
  "test": "uvu tests"
30
30
  },
31
31
  "devDependencies": {
32
- "@dicebear/core": "7.0.3",
32
+ "@dicebear/core": "7.0.5",
33
33
  "@tsconfig/recommended": "^1.0.2",
34
34
  "del-cli": "^5.0.0",
35
35
  "typescript": "^5.1.6",
@@ -44,5 +44,5 @@
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "7c5acd36ec5369f1c43cdc0985c8640490ee1ead"
47
+ "gitHead": "644f1f7d23af086cdd17dda5bf64f5c3afa16a64"
48
48
  }