@react-native-vector-icons/feather 4.29.2-alpha.15 → 4.29.2-alpha.17
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/fonts/Feather.ttf +0 -0
- package/lib/commonjs/index.js +1 -1
- package/lib/commonjs/index.js/"/" +17 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/index.js/"/" +10 -0
- package/package.json +5 -4
package/fonts/Feather.ttf
CHANGED
|
Binary file
|
package/lib/commonjs/index.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _common = require("@react-native-vector-icons/common");
|
|
8
8
|
var _Feather = _interopRequireDefault(require("../../glyphmaps/Feather.json"));
|
|
9
|
-
function _interopRequireDefault(
|
|
9
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
10
|
/**
|
|
11
11
|
* Feather icon set component.
|
|
12
12
|
* Usage: <Feather name="icon-name" size={20} color="#4F8EF7" />
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _common = require("@react-native-vector-icons/common");
|
|
8
|
+
var _Feather = _interopRequireDefault(require("../glyphmaps/Feather.json"));
|
|
9
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
+
/**
|
|
11
|
+
* Feather icon set component.
|
|
12
|
+
* Usage: <Feather name="icon-name" size={20} color="#4F8EF7" />
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
const Icon = (0, _common.createIconSet)(_Feather.default, 'Feather', 'Feather.ttf');
|
|
16
|
+
var _default = exports.default = Icon;
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_common","require","_Feather","_interopRequireDefault","
|
|
1
|
+
{"version":3,"names":["_common","require","_Feather","_interopRequireDefault","e","__esModule","default","Icon","createIconSet","glyphMap","_default","exports"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;;;;;AAKA,IAAAA,OAAA,GAAAC,OAAA;AACA,IAAAC,QAAA,GAAAC,sBAAA,CAAAF,OAAA;AAAiD,SAAAE,uBAAAC,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AANjD;AACA;AACA;AACA;;AAKA,MAAMG,IAAI,GAAG,IAAAC,qBAAa,EAACC,gBAAQ,EAAE,SAAS,EAAE,aAAa,CAAC;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAL,OAAA,GAEhDC,IAAI","ignoreList":[]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Feather icon set component.
|
|
3
|
+
* Usage: <Feather name="icon-name" size={20} color="#4F8EF7" />
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { createIconSet } from '@react-native-vector-icons/common';
|
|
7
|
+
import glyphMap from '../glyphmaps/Feather.json';
|
|
8
|
+
const Icon = createIconSet(glyphMap, 'Feather', 'Feather.ttf');
|
|
9
|
+
export default Icon;
|
|
10
|
+
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-vector-icons/feather",
|
|
3
|
-
"version": "4.29.2-alpha.
|
|
3
|
+
"version": "4.29.2-alpha.17",
|
|
4
4
|
"description": "Feather font for react native vector icons",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -73,14 +73,15 @@
|
|
|
73
73
|
"registry": "https://registry.npmjs.org/"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@react-native-vector-icons/common": "^0.0.1-alpha.
|
|
76
|
+
"@react-native-vector-icons/common": "^0.0.1-alpha.12"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
+
"@types/react-native": "^0.73.0",
|
|
79
80
|
"del-cli": "^5.1.0",
|
|
80
81
|
"feather-icons": "4.29.2",
|
|
81
82
|
"onchange": "^7.1.0",
|
|
82
83
|
"react-native-builder-bob": "^0.23.2",
|
|
83
|
-
"typescript": "^5.4.
|
|
84
|
+
"typescript": "^5.4.2"
|
|
84
85
|
},
|
|
85
86
|
"peerDependencies": {
|
|
86
87
|
"react": "*",
|
|
@@ -103,5 +104,5 @@
|
|
|
103
104
|
]
|
|
104
105
|
]
|
|
105
106
|
},
|
|
106
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "81705d3c613d370af68b3d3471b2492f3225ad2f"
|
|
107
108
|
}
|