@react-native-vector-icons/feather 4.29.2-alpha.14 → 4.29.2-alpha.16
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/lib/commonjs/index.js
CHANGED
|
@@ -5,8 +5,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _common = require("@react-native-vector-icons/common");
|
|
8
|
-
var _Feather = _interopRequireDefault(require("
|
|
9
|
-
function _interopRequireDefault(
|
|
8
|
+
var _Feather = _interopRequireDefault(require("../../glyphmaps/Feather.json"));
|
|
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":[]}
|
package/lib/module/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { createIconSet } from '@react-native-vector-icons/common';
|
|
7
|
-
import glyphMap from '
|
|
7
|
+
import glyphMap from '../../glyphmaps/Feather.json';
|
|
8
8
|
const Icon = createIconSet(glyphMap, 'Feather', 'Feather.ttf');
|
|
9
9
|
export default Icon;
|
|
10
10
|
//# sourceMappingURL=index.js.map
|
|
@@ -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.16",
|
|
4
4
|
"description": "Feather font for react native vector icons",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"typecheck": "tsc --noEmit",
|
|
32
32
|
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
33
33
|
"clean": "del-cli android/build ios/build lib",
|
|
34
|
-
"prepare": "bob build",
|
|
34
|
+
"prepare": "bob build && ../../scripts/fix-glyphmaps.sh",
|
|
35
35
|
"watch": "onchange 'src/**' --initial -- yarn run prepare"
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|
|
@@ -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.11"
|
|
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": "fcf73344c413643671bf7422c930458dfab82035"
|
|
107
108
|
}
|