@ledgerhq/icons-ui 0.2.4 → 0.2.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/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  ## Reference
10
10
 
11
- [**🔗 Icons list**](https://ledger-live-ui-react.vercel.app/?path=/story/asorted-icons--list)
11
+ [**🔗 Icons list**](https://react-ui-storybook.vercel.app/?path=/story/asorted-icons--list)
12
12
 
13
13
  ## Installation
14
14
 
package/index.js CHANGED
@@ -1 +1 @@
1
- // dummy
1
+ // dummy
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
- declare const _default: import("styled-components").StyledComponent<import("react").ComponentClass<import("react-native-svg").SvgProps, any>, any, any, string | number | symbol>;
1
+ declare const _default: import("styled-components").StyledComponent<any, any, any, string | number | symbol>;
3
2
  export default _default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ledgerhq/icons-ui",
3
3
  "description": "Icons used by the Ledger design system.",
4
- "version": "0.2.4",
4
+ "version": "0.2.5",
5
5
  "license": "MIT",
6
6
  "files": [
7
7
  "react",
@@ -16,16 +16,19 @@
16
16
  "./react": {
17
17
  "require": "./react/cjs/index.js",
18
18
  "default": "./react/index.js"
19
- }
19
+ },
20
+ "./native/": "./native/",
21
+ "./package.json": "./package.json"
20
22
  },
21
- "scripts": {
22
- "build": "npm run clean && node scripts/buildReactIcons && tsc --noEmit false && node scripts/transpile",
23
- "prepublishOnly": "npm run build",
24
- "clean": "rimraf react native src/react src/native"
23
+ "peerDependencies": {
24
+ "styled-components": "*",
25
+ "styled-system": "*",
26
+ "@types/react": "*"
25
27
  },
26
- "dependencies": {
27
- "@types/styled-components": "^5.1.14",
28
- "styled-components": "^5.2.3"
28
+ "peerDependenciesMeta": {
29
+ "@types/react": {
30
+ "optional": true
31
+ }
29
32
  },
30
33
  "devDependencies": {
31
34
  "@svgr/core": "^5.5.0",
@@ -42,5 +45,9 @@
42
45
  "rimraf": "^3.0.2",
43
46
  "tiny-glob": "^0.2.9",
44
47
  "typescript": "^4.5.2"
48
+ },
49
+ "scripts": {
50
+ "build": "pnpm run clean && node scripts/buildReactIcons && tsc --noEmit false && node scripts/transpile",
51
+ "clean": "rimraf react native src/react src/native"
45
52
  }
46
- }
53
+ }