@wise/art 0.0.0-experimental-13f1a16 → 0.0.0-experimental-1648117

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/art",
3
- "version": "0.0.0-experimental-13f1a16",
3
+ "version": "0.0.0-experimental-1648117",
4
4
  "license": "MIT",
5
5
  "description": "React library for art elements in UI",
6
6
  "homepage": "https://github.com/transferwise/web-art#readme",
@@ -77,10 +77,10 @@
77
77
  "typescript": "^5.9.3",
78
78
  "vite": "^7.3.1",
79
79
  "wise-atoms": "git+https://github.com/transferwise/wise-atoms.git#7794401a6d26f748ea5d48e12f6dde0cd9c435ba",
80
- "3d-assets": "git+https://github.com/transferwise/3d-assets.git#e77d35360fe3a9828784f6f8fec2b6743b4a7a6d",
81
80
  "@storybook/addon-docs": "^10.2.10",
82
81
  "@changesets/cli": "^2.29.8",
83
- "@changesets/changelog-github": "0.5.2"
82
+ "@changesets/changelog-github": "0.5.2",
83
+ "3d-assets": "git+https://github.com/transferwise/3d-assets.git#b4091d40430a7e8f33870f05058845d86d8193a8"
84
84
  },
85
85
  "peerDependencies": {
86
86
  "@transferwise/neptune-css": "^14.25.2",
@@ -13,7 +13,7 @@ export default {
13
13
  export const Confetti = () => {
14
14
  return (
15
15
  <>
16
- <Illustration3D name={Assets.CONFETTI} />
16
+ <Illustration3D name={Assets.CONFETTI} size={Sizes.LARGE} />
17
17
  </>
18
18
  );
19
19
  };
@@ -21,37 +21,37 @@ export const Confetti = () => {
21
21
  export const Globe = () => {
22
22
  return (
23
23
  <>
24
- <Illustration3D name={Assets.GLOBE} />
24
+ <Illustration3D name={Assets.GLOBE} size={Sizes.LARGE} />
25
25
  </>
26
26
  );
27
27
  };
28
28
 
29
29
  export const Lock = () => {
30
- return <Illustration3D name={Assets.LOCK} />;
30
+ return <Illustration3D name={Assets.LOCK} size={Sizes.LARGE} />;
31
31
  };
32
32
 
33
33
  export const CheckMark = () => {
34
- return <Illustration3D name={Assets.CHECK_MARK} />;
34
+ return <Illustration3D name={Assets.CHECK_MARK} size={Sizes.LARGE} />;
35
35
  };
36
36
 
37
37
  export const DigitalCard = () => {
38
- return <Illustration3D name={Assets.DIGITAL_CARD} />;
38
+ return <Illustration3D name={Assets.DIGITAL_CARD} size={Sizes.LARGE} />;
39
39
  };
40
40
 
41
41
  export const Plane = () => {
42
- return <Illustration3D name={Assets.PLANE} />;
42
+ return <Illustration3D name={Assets.PLANE} size={Sizes.LARGE} />;
43
43
  };
44
44
 
45
45
  export const Graph = () => {
46
- return <Illustration3D name={Assets.GRAPH} />;
46
+ return <Illustration3D name={Assets.GRAPH} size={Sizes.LARGE} />;
47
47
  };
48
48
 
49
49
  export const MarbleCard = () => {
50
- return <Illustration3D name={Assets.MARBLE_CARD} />;
50
+ return <Illustration3D name={Assets.MARBLE_CARD} size={Sizes.LARGE} />;
51
51
  };
52
52
 
53
53
  export const Jars = () => {
54
- return <Illustration3D name={Assets.JARS} />;
54
+ return <Illustration3D name={Assets.JARS} size={Sizes.LARGE} />;
55
55
  };
56
56
 
57
57
  export const Interest = () => {