@react-native-vector-icons/common 0.0.1-alpha.6 → 0.0.1-alpha.7

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
@@ -33,11 +33,7 @@ For the integration of `.svg` files natively, you can explore [`react-native-vec
33
33
  ## Sponsorship
34
34
 
35
35
  Should you find this library beneficial, kindly contemplate the option of
36
- [sponsoring](https://github.com/sponsors/oblador). Our envisioned endeavors
37
- encompass the restructuring of the repository into a monorepo architecture.
38
- This transition will empower independent versioning of icon sets, enhance
39
- performance, reduce bundle size, and simplify community contributions. Your
40
- sponsorship plays a pivotal role in materializing these advancements.
36
+ [sponsoring](https://github.com/sponsors/oblador).
41
37
 
42
38
  ## Available Icon Sets
43
39
 
@@ -45,25 +41,28 @@ sponsorship plays a pivotal role in materializing these advancements.
45
41
 
46
42
  RNVI comes with the following supported icons. You can [search NPM](https://www.npmjs.com/search?q=keywords%3Areact-native-vector-icons-icon) for third party icons.
47
43
 
48
- - [`AntDesign`](https://ant.design/components/icon) from Ant Group (v4.3.1 with _421_ icons)
44
+ ### Actively maintained fonts
45
+ - [`AntDesign`](https://ant.design/components/icon) from Ant Group (v4.4.2 with _449_ icons)
46
+ - [`Feather`](http://feathericons.com) created by Cole Bemis & Contributors (v4.29.2 featuring _287_ icons)
47
+ - [`FontAwesome 6`](https://fontawesome.com/search) designed by Fonticons, Inc. (v6.5.2 featuring _2045_ free and _30199_ pro icons)
48
+ - [`Foundation`](http://zurb.com/playground/foundation-icon-fonts-3) by ZURB, Inc. (v3.0 with _283_ icons)
49
+ - [`Ionicons`](https://ionic.io/ionicons) crafted by Ionic (v7.4.0 containing _1356_ icons)
50
+ - [`MaterialDesignIcons`](https://pictogrammers.com/library/mdi/) from MaterialDesignIcons.com (v7.4.47 including _7448_ icons)
51
+ - [`Octicons`](https://primer.style/foundations/icons) designed by Github, Inc. (v19.9.0 with _321_ icons)
52
+
53
+ ### No longer maintained upstream
49
54
  - [`Entypo`](http://entypo.com) by Daniel Bruce (v1.0.1 with _411_ icons)
50
55
  - [`EvilIcons`](http://evil-icons.io) designed by Alexander Madyankin & Roman Shamin (v1.10.1 with _70_ icons)
51
- - [`Feather`](http://feathericons.com) created by Cole Bemis & Contributors (v4.29.1 featuring _287_ icons)
52
56
  - [`FontAwesome`](https://fontawesome.com/v4/icons) by Fonticons, Inc. (v4.7.0 containing _785_ icons)
53
- - [`FontAwesome 5`](https://fontawesome.com/v5/search) from Fonticons, Inc. (v5.15.4 offering _1608_ free and _7864_ pro icons)
54
- - [`FontAwesome 6`](https://fontawesome.com) designed by Fonticons, Inc. (v6.5.1 featuring _2037_ free and _30013_ pro icons)
57
+ - [`FontAwesome 5`](https://fontawesome.com/v5/search) from Fonticons, Inc. (v5.15.4 offering _1611_ free and _7869_ pro icons)
55
58
  - [`Fontisto`](https://github.com/kenangundogan/fontisto) created by Kenan Gündoğan (v3.0.4 featuring _617_ icons)
56
- - [`Foundation`](http://zurb.com/playground/foundation-icon-fonts-3) by ZURB, Inc. (v3.0 with _283_ icons)
57
- - [`Ionicons`](https://ionic.io/ionicons) crafted by Ionic (v7.2.2 containing _1338_ icons)
58
59
  - [`MaterialIcons`](https://fonts.google.com/icons?icon.set=Material+Icons) by Google, Inc. (v4.0.0 featuring _2234_ icons)
59
- - [`MaterialCommunityIcons`](https://pictogrammers.com/library/mdi/) from MaterialDesignIcons.com (v7.4.47 including _7447_ icons)
60
- - [`Octicons`](https://primer.style/foundations/icons) designed by Github, Inc. (v19.8.0 with _320_ icons)
61
60
  - [`SimpleLineIcons`](https://simplelineicons.github.io/) crafted by Sabbir & Contributors (v2.5.5 with _189_ icons)
62
61
  - [`Zocial`](https://smcllns.github.io/css-social-buttons) by Sam Collins (v1.1.1 with _100_ icons)
63
62
 
64
63
  ## Migration
65
64
 
66
- See [MIGRATION.md](./MIGRATION.md) if you are migrating from `react-native-vector-icons`
65
+ See [MIGRATION.md](MIGRATION.md) if you are migrating from `react-native-vector-icons`
67
66
 
68
67
  ## Installation
69
68
 
@@ -82,8 +81,13 @@ See [MIGRATION.md](./MIGRATION.md) if you are migrating from `react-native-vecto
82
81
  * [FontAwesome 6](packages/fontawesome6/README.md)
83
82
  * [FontAwesome 6 Pro](packages/fontawesome6-pro/README.md)
84
83
  * [Fontello](packages/fontello/README.md)
84
+ * [Icomoon](packages/icomoon/README.md)
85
+
86
+ ### android
87
+
88
+ Nothing else needed.
85
89
 
86
- ### iOS Setup
90
+ ### iOS
87
91
 
88
92
  To use the bundled icons on iOS, follow these steps:
89
93
 
@@ -92,11 +96,11 @@ To use the bundled icons on iOS, follow these steps:
92
96
  cd ios && pod update
93
97
  ```
94
98
 
95
- ### macOS Setup
99
+ ### macOS
96
100
 
97
101
  TBA: It should just work???
98
102
 
99
- ### Windows Setup
103
+ ### Windows
100
104
 
101
105
  TBA: It should just work???
102
106
 
@@ -119,7 +119,7 @@ task copyFonts(type: Exec) {
119
119
  standardOutput = fonts
120
120
 
121
121
  doLast {
122
- def files = fonts.toString().trim().split('\n')
122
+ def files = fonts.toString().trim().split('\n').findAll { it }
123
123
  copy {
124
124
  from files
125
125
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-vector-icons/common",
3
- "version": "0.0.1-alpha.6",
3
+ "version": "0.0.1-alpha.7",
4
4
  "description": "Customizable Icons for React Native with support for image source and full styling.",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -68,25 +68,25 @@
68
68
  "registry": "https://registry.npmjs.org/"
69
69
  },
70
70
  "dependencies": {
71
- "@react-native-community/cli-tools": "^13.6.5",
71
+ "@react-native-community/cli-tools": "^13.6.6",
72
72
  "prop-types": "^15.8.1",
73
73
  "yargs": "^17.7.2"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@types/jest": "^29.5.12",
77
- "@types/react": "~18.2.79",
77
+ "@types/react": "~18.3.2",
78
78
  "@types/react-native": "0.73.0",
79
79
  "css-social-buttons": "^1.1.1",
80
80
  "del-cli": "^5.1.0",
81
81
  "jest": "^29.7.0",
82
82
  "onchange": "^7.1.0",
83
83
  "oslllo-svg-fixer": "^4.0.1",
84
- "pod-install": "^0.2.1",
84
+ "pod-install": "^0.2.2",
85
85
  "prettier": "^3.2.5",
86
86
  "react": "18.2.0",
87
87
  "react-native": "0.73.7",
88
88
  "react-native-builder-bob": "^0.23.2",
89
- "release-it": "^17.2.0",
89
+ "release-it": "^17.2.1",
90
90
  "svg2ttf": "^6.0.3",
91
91
  "svgicons2svgfont": "^12.0.0",
92
92
  "typescript": "^5.4.5"
@@ -130,5 +130,5 @@
130
130
  "javaPackageName": "com.reactnativevectoricons.common"
131
131
  }
132
132
  },
133
- "gitHead": "c538d6b4b53c0572052f4d3692369a94ac574fbe"
133
+ "gitHead": "6a62ccfb5a26606b08a1abf56a92e0c6887e4ed7"
134
134
  }
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
11
11
  s.license = package["license"]
12
12
  s.authors = package["author"]
13
13
 
14
- s.platforms = { :ios => "12.0", :tvos => "9.0" }
14
+ s.platforms = { :ios => "12.0", :tvos => "9.0", :osx => "12.7" }
15
15
  s.source = { :git => "https://github.com/react-native-vector-icons/react-native-vector-icons.git", :tag => "#{s.version}" }
16
16
 
17
17
  s.source_files = "ios/**/*.{h,m,mm}"