@react-native-vector-icons/feather 12.0.0-beta.1 → 12.0.1
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/android/build.gradle +8 -1
- package/android/src/main/java/VectorIconsFeatherPackage.kt +1 -3
- package/lib/commonjs/index.js +3 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/index.js +3 -0
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/commonjs/src/index.d.ts +0 -7
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/index.d.ts +0 -7
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/react-native-vector-icons-feather.podspec +3 -0
- package/src/index.ts +3 -0
package/android/build.gradle
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
|
+
// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates
|
|
2
|
+
// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost
|
|
3
|
+
|
|
1
4
|
def isNewArchitectureEnabled() {
|
|
2
5
|
return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true"
|
|
3
6
|
}
|
|
4
7
|
|
|
8
|
+
def safeExtGet(prop, fallback) {
|
|
9
|
+
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
10
|
+
}
|
|
11
|
+
|
|
5
12
|
apply plugin: "com.android.library"
|
|
6
13
|
apply plugin: "kotlin-android"
|
|
7
14
|
|
|
@@ -29,7 +36,7 @@ android {
|
|
|
29
36
|
}
|
|
30
37
|
}
|
|
31
38
|
|
|
32
|
-
compileSdkVersion 31
|
|
39
|
+
compileSdkVersion safeExtGet('compileSdkVersion', 31)
|
|
33
40
|
}
|
|
34
41
|
|
|
35
42
|
dependencies {
|
|
@@ -3,7 +3,6 @@ package com.reactnativevectoricons.feather
|
|
|
3
3
|
import com.facebook.react.TurboReactPackage
|
|
4
4
|
import com.facebook.react.bridge.NativeModule
|
|
5
5
|
import com.facebook.react.bridge.ReactApplicationContext
|
|
6
|
-
import com.facebook.react.module.model.ReactModuleInfo
|
|
7
6
|
import com.facebook.react.module.model.ReactModuleInfoProvider
|
|
8
7
|
|
|
9
8
|
class VectorIconsFeatherPackage : TurboReactPackage() {
|
|
@@ -14,7 +13,6 @@ class VectorIconsFeatherPackage : TurboReactPackage() {
|
|
|
14
13
|
|
|
15
14
|
override fun getReactModuleInfoProvider(): ReactModuleInfoProvider =
|
|
16
15
|
ReactModuleInfoProvider {
|
|
17
|
-
|
|
18
|
-
moduleInfos
|
|
16
|
+
mapOf()
|
|
19
17
|
}
|
|
20
18
|
}
|
package/lib/commonjs/index.js
CHANGED
|
@@ -7,6 +7,9 @@ exports.default = void 0;
|
|
|
7
7
|
var _common = require("@react-native-vector-icons/common");
|
|
8
8
|
var _Feather = _interopRequireDefault(require("../../glyphmaps/Feather.json"));
|
|
9
9
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
|
+
// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates
|
|
11
|
+
// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost
|
|
12
|
+
|
|
10
13
|
/**
|
|
11
14
|
* This is a generated file. If you modify it manually, your changes will be lost!
|
|
12
15
|
* Instead, modify the template in `generator-react-native-vector-icons`.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_common","require","_Feather","_interopRequireDefault","e","__esModule","default","Icon","createIconSet","glyphMap","postScriptName","fontFileName","fontSource","_default","exports"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"names":["_common","require","_Feather","_interopRequireDefault","e","__esModule","default","Icon","createIconSet","glyphMap","postScriptName","fontFileName","fontSource","_default","exports"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;;;;;AAWA,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;AAZjD;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAKA,MAAMG,IAAI,GAAG,IAAAC,qBAAa,EAACC,gBAAQ,EAAE;EACnCC,cAAc,EAAE,SAAS;EACzBC,YAAY,EAAE,aAAa;EAC3BC,UAAU,EAAEX,OAAO,CAAC,sBAAsB,CAAC,CAAE;AAC/C,CAAC,CAAC;AAAC,IAAAY,QAAA,GAAAC,OAAA,CAAAR,OAAA,GAEYC,IAAI","ignoreList":[]}
|
package/lib/module/index.js
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates
|
|
4
|
+
// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost
|
|
5
|
+
|
|
3
6
|
/**
|
|
4
7
|
* This is a generated file. If you modify it manually, your changes will be lost!
|
|
5
8
|
* Instead, modify the template in `generator-react-native-vector-icons`.
|
package/lib/module/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["createIconSet","glyphMap","Icon","postScriptName","fontFileName","fontSource","require"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAASA,aAAa,QAAQ,mCAAmC;AACjE,OAAOC,QAAQ,MAAM,2BAA2B;AAEhD,MAAMC,IAAI,GAAGF,aAAa,CAACC,QAAQ,EAAE;EACnCE,cAAc,EAAE,SAAS;EACzBC,YAAY,EAAE,aAAa;EAC3BC,UAAU,EAAEC,OAAO,CAAC,sBAAsB,CAAC,CAAE;AAC/C,CAAC,CAAC;AAEF,eAAeJ,IAAI","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["createIconSet","glyphMap","Icon","postScriptName","fontFileName","fontSource","require"],"sourceRoot":"../../src","sources":["index.ts"],"mappings":";;AAAA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAASA,aAAa,QAAQ,mCAAmC;AACjE,OAAOC,QAAQ,MAAM,2BAA2B;AAEhD,MAAMC,IAAI,GAAGF,aAAa,CAACC,QAAQ,EAAE;EACnCE,cAAc,EAAE,SAAS;EACzBC,YAAY,EAAE,aAAa;EAC3BC,UAAU,EAAEC,OAAO,CAAC,sBAAsB,CAAC,CAAE;AAC/C,CAAC,CAAC;AAEF,eAAeJ,IAAI","ignoreList":[]}
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This is a generated file. If you modify it manually, your changes will be lost!
|
|
3
|
-
* Instead, modify the template in `generator-react-native-vector-icons`.
|
|
4
|
-
*
|
|
5
|
-
* Feather icon set component.
|
|
6
|
-
* Usage: <Feather name="icon-name" size={20} color="#4F8EF7" />
|
|
7
|
-
*/
|
|
8
1
|
declare const Icon: import("react").FC<import("react-native").TextProps & {
|
|
9
2
|
name: "activity" | "airplay" | "alert-circle" | "alert-octagon" | "alert-triangle" | "align-center" | "align-justify" | "align-left" | "align-right" | "anchor" | "aperture" | "archive" | "arrow-down" | "arrow-down-circle" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "arrow-up-left" | "arrow-up-right" | "at-sign" | "award" | "bar-chart" | "bar-chart-2" | "battery" | "battery-charging" | "bell" | "bell-off" | "bluetooth" | "bold" | "book" | "book-open" | "bookmark" | "box" | "briefcase" | "calendar" | "camera" | "camera-off" | "cast" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down" | "chevrons-left" | "chevrons-right" | "chevrons-up" | "chrome" | "circle" | "clipboard" | "clock" | "cloud" | "cloud-drizzle" | "cloud-lightning" | "cloud-off" | "cloud-rain" | "cloud-snow" | "code" | "codepen" | "codesandbox" | "coffee" | "columns" | "command" | "compass" | "copy" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "credit-card" | "crop" | "crosshair" | "database" | "delete" | "disc" | "divide" | "divide-circle" | "divide-square" | "dollar-sign" | "download" | "download-cloud" | "dribbble" | "droplet" | "edit" | "edit-2" | "edit-3" | "external-link" | "eye" | "eye-off" | "facebook" | "fast-forward" | "feather" | "figma" | "file" | "file-minus" | "file-plus" | "file-text" | "film" | "filter" | "flag" | "folder" | "folder-minus" | "folder-plus" | "framer" | "frown" | "gift" | "git-branch" | "git-commit" | "git-merge" | "git-pull-request" | "github" | "gitlab" | "globe" | "grid" | "hard-drive" | "hash" | "headphones" | "heart" | "help-circle" | "hexagon" | "home" | "image" | "inbox" | "info" | "instagram" | "italic" | "key" | "layers" | "layout" | "life-buoy" | "link" | "link-2" | "linkedin" | "list" | "loader" | "lock" | "log-in" | "log-out" | "mail" | "map" | "map-pin" | "maximize" | "maximize-2" | "meh" | "menu" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minimize-2" | "minus" | "minus-circle" | "minus-square" | "monitor" | "moon" | "more-horizontal" | "more-vertical" | "mouse-pointer" | "move" | "music" | "navigation" | "navigation-2" | "octagon" | "package" | "paperclip" | "pause" | "pause-circle" | "pen-tool" | "percent" | "phone" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "pie-chart" | "play" | "play-circle" | "plus" | "plus-circle" | "plus-square" | "pocket" | "power" | "printer" | "radio" | "refresh-ccw" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "rss" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "share-2" | "shield" | "shield-off" | "shopping-bag" | "shopping-cart" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slack" | "slash" | "sliders" | "smartphone" | "smile" | "speaker" | "square" | "star" | "stop-circle" | "sun" | "sunrise" | "sunset" | "table" | "tablet" | "tag" | "target" | "terminal" | "thermometer" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "tool" | "trash" | "trash-2" | "trello" | "trending-down" | "trending-up" | "triangle" | "truck" | "tv" | "twitch" | "twitter" | "type" | "umbrella" | "underline" | "unlock" | "upload" | "upload-cloud" | "user" | "user-check" | "user-minus" | "user-plus" | "user-x" | "users" | "video" | "video-off" | "voicemail" | "volume" | "volume-1" | "volume-2" | "volume-x" | "watch" | "wifi" | "wifi-off" | "wind" | "x" | "x-circle" | "x-octagon" | "x-square" | "youtube" | "zap" | "zap-off" | "zoom-in" | "zoom-out";
|
|
10
3
|
size?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"AAcA,QAAA,MAAM,IAAI;;;;;;;;;;;;;;CAIR,CAAC;AAEH,eAAe,IAAI,CAAC"}
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* This is a generated file. If you modify it manually, your changes will be lost!
|
|
3
|
-
* Instead, modify the template in `generator-react-native-vector-icons`.
|
|
4
|
-
*
|
|
5
|
-
* Feather icon set component.
|
|
6
|
-
* Usage: <Feather name="icon-name" size={20} color="#4F8EF7" />
|
|
7
|
-
*/
|
|
8
1
|
declare const Icon: import("react").FC<import("react-native").TextProps & {
|
|
9
2
|
name: "activity" | "airplay" | "alert-circle" | "alert-octagon" | "alert-triangle" | "align-center" | "align-justify" | "align-left" | "align-right" | "anchor" | "aperture" | "archive" | "arrow-down" | "arrow-down-circle" | "arrow-down-left" | "arrow-down-right" | "arrow-left" | "arrow-left-circle" | "arrow-right" | "arrow-right-circle" | "arrow-up" | "arrow-up-circle" | "arrow-up-left" | "arrow-up-right" | "at-sign" | "award" | "bar-chart" | "bar-chart-2" | "battery" | "battery-charging" | "bell" | "bell-off" | "bluetooth" | "bold" | "book" | "book-open" | "bookmark" | "box" | "briefcase" | "calendar" | "camera" | "camera-off" | "cast" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down" | "chevrons-left" | "chevrons-right" | "chevrons-up" | "chrome" | "circle" | "clipboard" | "clock" | "cloud" | "cloud-drizzle" | "cloud-lightning" | "cloud-off" | "cloud-rain" | "cloud-snow" | "code" | "codepen" | "codesandbox" | "coffee" | "columns" | "command" | "compass" | "copy" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "credit-card" | "crop" | "crosshair" | "database" | "delete" | "disc" | "divide" | "divide-circle" | "divide-square" | "dollar-sign" | "download" | "download-cloud" | "dribbble" | "droplet" | "edit" | "edit-2" | "edit-3" | "external-link" | "eye" | "eye-off" | "facebook" | "fast-forward" | "feather" | "figma" | "file" | "file-minus" | "file-plus" | "file-text" | "film" | "filter" | "flag" | "folder" | "folder-minus" | "folder-plus" | "framer" | "frown" | "gift" | "git-branch" | "git-commit" | "git-merge" | "git-pull-request" | "github" | "gitlab" | "globe" | "grid" | "hard-drive" | "hash" | "headphones" | "heart" | "help-circle" | "hexagon" | "home" | "image" | "inbox" | "info" | "instagram" | "italic" | "key" | "layers" | "layout" | "life-buoy" | "link" | "link-2" | "linkedin" | "list" | "loader" | "lock" | "log-in" | "log-out" | "mail" | "map" | "map-pin" | "maximize" | "maximize-2" | "meh" | "menu" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minimize-2" | "minus" | "minus-circle" | "minus-square" | "monitor" | "moon" | "more-horizontal" | "more-vertical" | "mouse-pointer" | "move" | "music" | "navigation" | "navigation-2" | "octagon" | "package" | "paperclip" | "pause" | "pause-circle" | "pen-tool" | "percent" | "phone" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "pie-chart" | "play" | "play-circle" | "plus" | "plus-circle" | "plus-square" | "pocket" | "power" | "printer" | "radio" | "refresh-ccw" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "rss" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "share-2" | "shield" | "shield-off" | "shopping-bag" | "shopping-cart" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slack" | "slash" | "sliders" | "smartphone" | "smile" | "speaker" | "square" | "star" | "stop-circle" | "sun" | "sunrise" | "sunset" | "table" | "tablet" | "tag" | "target" | "terminal" | "thermometer" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "tool" | "trash" | "trash-2" | "trello" | "trending-down" | "trending-up" | "triangle" | "truck" | "tv" | "twitch" | "twitter" | "type" | "umbrella" | "underline" | "unlock" | "upload" | "upload-cloud" | "user" | "user-check" | "user-minus" | "user-plus" | "user-x" | "users" | "video" | "video-off" | "voicemail" | "volume" | "volume-1" | "volume-2" | "volume-x" | "watch" | "wifi" | "wifi-off" | "wind" | "x" | "x-circle" | "x-octagon" | "x-square" | "youtube" | "zap" | "zap-off" | "zoom-in" | "zoom-out";
|
|
10
3
|
size?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/index.ts"],"names":[],"mappings":"AAcA,QAAA,MAAM,IAAI;;;;;;;;;;;;;;CAIR,CAAC;AAEH,eAAe,IAAI,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-vector-icons/feather",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.1",
|
|
4
4
|
"description": "Feather font for react native vector icons",
|
|
5
5
|
"source": "./src/index.ts",
|
|
6
6
|
"main": "./lib/commonjs/index.js",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"registry": "https://registry.npmjs.org/"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@react-native-vector-icons/common": "^12.0.
|
|
79
|
+
"@react-native-vector-icons/common": "^12.0.1"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
82
|
"@types/react": "^18.3.18",
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
# NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates
|
|
2
|
+
# If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost
|
|
3
|
+
|
|
1
4
|
require 'json'
|
|
2
5
|
|
|
3
6
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
package/src/index.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// NOTE:This file was generated from packages/generator-react-native-vector-icons/src/app/templates
|
|
2
|
+
// If you're contributing to react-native-vector-icons, make the change there, otherwise it'll be lost
|
|
3
|
+
|
|
1
4
|
/**
|
|
2
5
|
* This is a generated file. If you modify it manually, your changes will be lost!
|
|
3
6
|
* Instead, modify the template in `generator-react-native-vector-icons`.
|