Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: move components #3673

Merged
merged 4 commits into from
Oct 19, 2023
Merged

chore: move components #3673

merged 4 commits into from
Oct 19, 2023

Conversation

huhuanming
Copy link
Contributor

No description provided.

@huhuanming huhuanming requested a review from loatheb October 18, 2023 14:28
@what-the-diff
Copy link

what-the-diff bot commented Oct 18, 2023

  • Added the following dependencies to the package.json files:
    • "@onekeyhq/components"
    • "@onekeyhq/shared"
    • "@onekeyhq/kit"
  • Deleted the App.js file in the mobile directory.
  • Added a new App.tsx file in the mobile directory. It imports and uses the KitProvider component from the @onekeyhq/kit package.
  • Added a .gitignore file in the android directory of the mobile app.
  • Added a build.gradle file in the android/app directory of the mobile app.
  • Added a debug.keystore file in the android/app directory of the mobile app.
  • Added a proguard-rules.pro file in the android/app directory of the mobile app.
  • Added an AndroidManifest.xml file in the android/app/src/debug directory of the mobile app.
  • Added a ReactNativeFlipper.java file in the android/app/src/debug/java/so/onekey/wallet directory of the mobile app.
  • Added an AndroidManifest.xml file in the android/app/src/main directory of the mobile app.
  • Added a MainActivity.java file in the android/app/src/main/java/so/onekey/wallet directory of the mobile app.
  • Added a MainApplication.java file in the android/app/src/main/java/so/onekey/wallet directory of the mobile app.
  • Added splash screen images in various resolutions to the android/app/src/main/res/drawable-* directories of the mobile app.
* Added a new file: `rn_edit_text_material.xml` in the `apps/mobile/android/app/src/main/res/drawable` directory.
* Added a new file: `splashscreen.xml` in the `apps/mobile/android/app/src/main/res/drawable` directory.
* Added multiple new files in the `apps/mobile/android/app/src/main/res/mipmap-<density>` directories: `ic_launcher.png` and `ic_launcher_foreground.png`.
* Added a new file: `colors.xml` in the `apps/mobile/android/app/src/main/res/values` directory.
* Added a new file: `strings.xml` in the `apps/mobile/android/app/src/main/res/values` directory.
* Added a new file: `styles.xml` in the `apps/mobile/android/app/src/main/res/values` directory.
* Added a new file: `ReactNativeFlipper.java` in the `apps/mobile/android/app/src/release/java/so/onekey/wallet` directory.
* Added a new file: `build.gradle` in the `apps/mobile/android` directory.
* Added a new file: `gradle.properties` in the `apps/mobile/android` directory.
* Added a new file: `gradle-wrapper.jar` in the `apps/mobile/android/gradle/wrapper` directory.
* Added a new file: `gradle-wrapper.properties` in the `apps/mobile/android/gradle/wrapper` directory.
* Added a new file: `gradlew` in the `apps/mobile/android` directory.
  • A new file gradlew.bat was added in the apps/mobile/android directory. This file is a Gradle startup script for Windows.
  • A new file settings.gradle was added in the apps/mobile/android directory. This file includes some Gradle settings and configurations.
  • In the app.json file in the apps/mobile directory, the assetBundlePatterns array was modified. Some additional assets were added.
  • In the index.js file in the apps/mobile directory, an empty line was added at the beginning of the file.
  • In the OneKeyWallet.xcodeproj/project.pbxproj file in the apps/mobile/ios/OneKeyWallet.xcodeproj directory, some changes were made related to project settings and dependencies.
  • A new file IDEWorkspaceChecks.plist was added in the OneKeyWallet.xcworkspace/xcshareddata directory. This file contains some IDEWorkspace checks.
  • Two new files PagingView.h and PagingView.m were added in the PagingView directory. These files include the implementation for a PagingView component.
  • Two new files PagingViewContainer.h and PagingViewContainer.m were added in the PagingView directory. These files include the implementation for a PagingViewContainer component.
  • A new file PagingViewManager.h was added in the PagingView directory. This file includes the implementation for a PagingViewManager class.
**Added Files:**
* `apps/mobile/android/gradlew.bat`
* `apps/mobile/android/settings.gradle`
* `apps/mobile/ios/OneKeyWallet.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist`
* `apps/mobile/ios/PagingView/PagingView.h`
* `apps/mobile/ios/PagingView/PagingView.m`
* `apps/mobile/ios/PagingView/PagingViewContainer.h`
* `apps/mobile/ios/PagingView/PagingViewContainer.m`
* `apps/mobile/ios/PagingView/PagingViewManager.h`
**Modified Files:**
* `apps/mobile/app.json`
* `apps/mobile/index.js`
* `apps/mobile/ios/OneKeyWallet.xcodeproj/project.pbxproj`
* Added a new file `PagingViewManager.m` in the `apps/mobile/ios/PagingView` directory. This file contains the implementation of the `PagingViewManager` class, which exports methods and properties for managing a paging view component in React Native.
* Added new files `RCTScrollView+swizzled.h` and `RCTScrollView+swizzled.m` in the `apps/mobile/ios/PagingView` directory. These files contain swizzled methods and properties for the `RCTScrollView` class, extending its functionality for use in the paging view component.
* Added new files `RNTabView.h` and `RNTabView.m` in the `apps/mobile/ios/PagingView` directory. These files contain the implementation of the `RNTabView` class, which represents a tab view component in React Native.
* Added new file `RCTScrollView+swizzled.h` in the `apps/mobile/ios/PagingView` directory. This file adds a new property `scrollViewDidScroll` to the `RCTScrollView` class, allowing for additional functionality when the scroll view is scrolled.
* Added new file `RNTabView.h` in the `apps/mobile/ios/PagingView` directory. This file contains the declaration of the `RNTabView` class, which represents a tab view component in React Native.
* Added new file `RNTabView.m` in the `apps/mobile/ios/PagingView` directory. This file contains the implementation of the `RNTabView` class, which represents a tab view component in React Native.
* Updated the `Podfile` in the `apps/mobile/ios` directory. Added new pods `JXPagingView/Pager` and `JXCategoryView` for managing the paging view component in iOS.
* Updated the `metro.config.js` file in the `apps/mobile` directory. Added new configuration for resolving packages and watching files in a monorepo setup.
* Updated the `package.json` file in the `apps/mobile` directory. Added new dependencies and updated existing ones.
* Added new file `PagingViewManager.m` in the `apps/mobile/ios/PagingView` directory. This file contains the implementation of the `PagingViewManager` class, which exports methods and properties for managing a paging view component in React Native.
* Added new files `RCTScrollView+swizzled.h` and `RCTScrollView+swizzled.m` in the `apps/mobile/ios/PagingView` directory. These files contain swizzled methods and properties for the `RCTScrollView` class, extending its functionality for use in the paging view component.
* Added new files `RNTabView.h` and `RNTabView.m` in the `apps/mobile/ios/PagingView` directory. These files contain the implementation of the `RNTabView` class, which represents a tab view component in React Native.
* Added new files `RCTScrollView+swizzled.h` and `RCTScrollView+swizzled.m` in the `apps/mobile/ios/PagingView` directory. These files contain extended functionality for the `RCTScrollView` class.
* Added new files `RNTabView.h` and `RNTabView.m` in the `apps/mobile/ios/PagingView` directory. These files contain the implementation of the `RNTabView` class, which represents a tab view component in React Native.
* Updated the `Podfile` in the `apps/mobile/ios` directory. Added new pods `JXPagingView/Pager` and `JXCategoryView` for managing the paging view component in iOS.
* Updated the `metro.config.js` file in the `apps/mobile` directory. Added new configuration for resolving packages and watching files in a monorepo setup.
* Updated the `package.json` file in the `apps/mobile` directory. Added new dependencies and updated existing ones.
* Added new file `index.tsx` in the `apps/web` directory. This file exports the `KitProvider` component from `@onekeyhq/kit` and imports the CSS styles from `@onekeyhq/shared` for web development.
* Updated the `index.js` file in the `apps/web` directory. Added imports for CSS styles and the `KitProvider` component.
* Updated the `package.json` file in the `apps/web` directory. Added new dependencies `@onekeyhq/components`, `@onekeyhq/shared`, and `@onekeyhq/kit`.
* Updated the `package.json` file in the `apps/web-embed` directory. Added new dependencies `@onekeyhq/components`, `@onekeyhq/shared`, and `@onekeyhq/kit`.
* Added new file `index.ext-bg-v3.js` in the `development/module-resolver/filecoin.js` directory. This file exports the `fileCoinJs` object from `filecoin.js`.
* Added new file `index.js` in the `development/module-resolver/react-native-fast-image-mock` directory. This file exports an object for mocking `react-native-fast-image` on web platforms.
* Added new file `index.js` in the `development/module-resolver/react-native-keyboard-manager-mock` directory. This file exports an object for mocking `react-native-keyboard-manager` on web platforms.
* Added new file `index.js` in the `development/module-resolver/react-native-restart-mock` directory. This file exports an object for mocking `react-native-restart` on web platforms.
* Updated the root `package.json` file. Added `postinstall` script to run `patch-package` after installing dependencies.
* Added new file `.eslintignore` in the `packages/components` directory. This file ignores the `src/Icon/react` directory for ESLint.
* Added new file `.svgrrc.json` in the `packages/components` directory. This file configures the SVG loader for React Native and TypeScript.
* Added new file `default.js` in the `packages/components/config` directory. This file exports the default configuration for the components package, including translations.
* Added new images `NFT_placeholder_bg.png` and `collection_default_logo.png` in the `packages/components/img` directory. These images are used as placeholders for NFTs and collection logos respectively.
* Added new image files: `deviceIcon_classic.png`, `deviceIcon_mini.png`, `deviceicon_touch.png`, `networks_all.png`, `nft_empty.png`.
* Updated `package.json` with new version and dependencies.
* Added new components: `ActionList`, `Alert`, `Badge`, `Button`.
* Added new files: `Button.stories.tsx`, `Checkbox.tsx`, `FreezeTab.tsx`, `NativeNestedTabView.tsx`.
* Created new context for active tab and tab status.
* Bug fixes and improvements.
  • A new file NestedTabView.tsx was added to the packages/components/src/CollapsibleTabView/NativeNestedTabView directory, which contains the implementation for a nested tab view component. This file exports a functional component NestedTabView with props and a ref handler. The component renders children and provides functions for setting the page index, refreshing, and setting the header height.
  • A new file types.ts was added to the packages/components/src/CollapsibleTabView/NativeNestedTabView directory, which contains type definitions for the nested tab view component.
  • A new file TabContainerNative.tsx was added to the packages/components/src/CollapsibleTabView directory, which is a native implementation of the tab container component. This file exports a functional component TabContainerNative that renders the nested tab view component and handles tab changes.
  • A new file TabContainerWeb.tsx was added to the packages/components/src/CollapsibleTabView directory, which is a web implementation of the tab container component. This file exports a functional component TabContainerWeb that renders the nested tab view component and handles tab changes. It also renders the tab bar component and supports sticky tab bar behavior.
  • A new file useIsActiveTab.ts was added to the packages/components/src/CollapsibleTabView/hooks directory, which contains a custom hook useIsActiveTab that returns true if the given tab name is active.
  • The file index.native.tsx in the packages/components/src/CollapsibleTabView directory was modified to export the TabContainerNative component as part of the Tabs object.
  • The file index.tsx in the packages/components/src/CollapsibleTabView directory was modified to export the TabContainerWeb component as part of the Tabs object.
  • The file types.ts in the packages/components/src/CollapsibleTabView directory was modified to add type definitions for the tab container component.
  • A new file index.tsx was added to the packages/components/src/DelayedFreeze directory, which exports a functional component DelayedFreeze that wraps the Freeze component and delays the freezing of the screen by one render.
  • A new file index.desktop.tsx was added to the packages/components/src/DesktopDragZoneBox directory, which exports the components DesktopDragZoneBox and DesktopDragZoneAbsoluteBar for handling desktop drag zones.
  • The file index.tsx in the packages/components/src/DesktopDragZoneBox directory was modified to export empty DesktopDragZoneAbsoluteBar and DesktopDragZoneBox components.
  • Added a new file useDesktopTopDragBarController.desktop.tsx in the packages/components/src/DesktopDragZoneBox directory.
  • Added a new file useDesktopTopDragBarController.tsx in the packages/components/src/DesktopDragZoneBox directory.
  • Added a new file index.tsx in the packages/components/src/Dialog directory.
  • Added a new file Divider.stories.tsx in the packages/components/src/Divider directory.
  • Added a new file index.tsx in the packages/components/src/Divider directory.
  • Added a new file index.tsx in the packages/components/src/Form directory.
  • Added a new file Icons.ext-bg.tsx in the packages/components/src/Icon directory.
  • Added a new file index.ext-bg.tsx in the packages/components/src/Icon directory.
  • Added a new file index.tsx in the packages/components/src/Icon directory.
  • Added a new file CheckboxChecked.tsx in the packages/components/src/Icon/react/custom directory.
  • Added a new file CheckboxIndeterminate.tsx in the packages/components/src/Icon/react/custom directory.
  • Added a new file index.ts in the packages/components/src/Icon/react/custom directory.
  • Added a new file Akash.tsx in the packages/components/src/Icon/react/illus directory.
  • Added a new file Algorand.tsx in the packages/components/src/Icon/react/illus directory.
  • Added a new file AllNetworks.tsx in the packages/components/src/Icon/react/illus directory.
  • Added a new file Aptos.tsx in the packages/components/src/Icon/react/illus directory.
* Added a new component called SvgArbitrum to the file packages/components/src/Icon/react/illus/Arbitrum.tsx. This component renders an SVG shape representing the Arbitrum logo.
* Added a new component called SvgArrowBottomLeft to the file packages/components/src/Icon/react/illus/ArrowBottomLeft.tsx. This component renders an SVG shape representing an arrow pointing bottom-left.
* Added a new component called SvgArrowTopRight to the file packages/components/src/Icon/react/illus/ArrowTopRight.tsx. This component renders an SVG shape representing an arrow pointing top-right.
* Added a new component called SvgAstar to the file packages/components/src/Icon/react/illus/Astar.tsx. This component renders an SVG shape representing the Astar logo.
* Added a new component called SvgAurora to the file packages/components/src/Icon/react/illus/Aurora.tsx. This component renders an SVG shape representing the Aurora logo.
* Added a new component called SvgAvalanche to the file packages/components/src/Icon/react/illus/Avalanche.tsx. This component renders an SVG shape representing the Avalanche logo.
* Added a new component called SvgBase to the file packages/components/src/Icon/react/illus/Base.tsx. This component renders an SVG shape representing the Base logo.
* Added a new component called SvgBitcoin to the file packages/components/src/Icon/react/illus/Bitcoin.tsx. This component renders an SVG shape representing the Bitcoin logo.
* Added a new component called SvgBitcoinCash to the file packages/components/src/Icon/react/illus/BitcoinCash.tsx. This component renders an SVG shape representing the Bitcoin Cash logo.
* Added a new component called SvgBnbSmartChain to the file packages/components/src/Icon/react/illus/BnbSmartChain.tsx. This component renders an SVG shape representing the Binance Smart Chain logo.
* Added a new component called SvgBobaNetwork to the file packages/components/src/Icon/react/illus/BobaNetwork.tsx. This component renders an SVG shape representing the Boba Network logo.
* Added a new component called SvgBrandLogo to the file packages/components/src/Icon/react/illus/BrandLogo.tsx. This component renders an SVG shape representing a brand logo.
* Added a new component called SvgCardano to the file packages/components/src/Icon/react/illus/Cardano.tsx. This component renders an SVG shape representing the Cardano logo.
* Added a new component called SvgCelo to the file packages/components/src/Icon/react/illus/Celo.tsx. This component renders an SVG shape representing the Celo logo.
* Added a new component called SvgConfluxEspace to the file packages/components/src/Icon/react/illus/ConfluxEspace.tsx. This component renders an SVG shape representing the Conflux Espace logo.
* Added a new component called SvgCosmos to the file packages/components/src/Icon/react/illus/Cosmos.tsx. This component renders an SVG shape representing the Cosmos logo.
* Added a new component called SvgCronos to the file packages/components/src/Icon/react/illus/Cronos.tsx. This component renders an SVG shape representing the Cronos logo.
* Added a new component called SvgCrownBadge to the file packages/components/src/Icon/react/illus/CrownBadge.tsx. This component renders an SVG shape representing a crown badge.
  • Added a new file CryptoOrg.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for CryptoOrg logo
  • Added a new file DiamondBadge.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for a diamond badge
  • Added a new file Dogecoin.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Dogecoin logo
  • Added a new file Ethereum.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Ethereum logo
  • Added a new file EthereumClassic.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Ethereum Classic logo
  • Added a new file EthereumFair.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Ethereum Fair logo
  • Added a new file Ethereumpow.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Ethereumpow logo
  • Added a new file Fantom.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Fantom logo
  • Added a new file FetchAi.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for FetchAi logo
  • Added a new file Filecoin.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Filecoin logo
  • Added a new file Gas.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Gas logo
  • Added a new file GnosisChain.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for GnosisChain logo
  • Added a new file HardwareAboutDeviceBg.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for HardwareAboutDeviceBg
  • Added a new file HuobiEcoChain.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for HuobiEcoChain logo
  • Added a new file ImageBroken.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for ImageBroken logo
  • Added a new file Juno.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Juno logo
  • Added a new file Kaspa.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Kaspa logo
  • Added a new file Kusama.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Kusama logo
  • Added a new file LightningNetwork.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for LightningNetwork logo
  • Added a new file Linea.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Linea logo
  • Added a new file Litecoin.tsx in packages/components/src/Icon/react/illus directory with the following changes:
  • Added a new SVG component for Litecoin logo
* Added `Logo.tsx`, `LogoBlack.tsx`, `LogoCircular.tsx`, `LogoPrimary.tsx`, `LogoWhite.tsx`, `Mantle.tsx`, `Metamask.tsx`, `MixinVirtualMachine.tsx`, `Monero.tsx`, `More.tsx`, and `Near.tsx` to the `illus` directory in the components package.
* A new file `Nexa.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `NftPeg.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `OkxChain.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `OpsideNetwork.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `Optimism.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `Osmosis.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `Polkadot.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `Polygon.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `Ripple.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `Scroll.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `SecretNetwork.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `Solana.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `StarBadge.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `Starcoin.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `Sui.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
* A new file `Terra.tsx` was added in the `packages/components/src/Icon/react/illus` directory.
  • Added 7 new SVG icons: Tron, TxStatusFailureCircle, TxStatusSuccessCircle, TxStatusWarningCircle, WalletconnectLogo, ZksyncEraMainnet, AiStar.
  • Added a new component: Tron.tsx, TxStatusFailureCircle.tsx, TxStatusSuccessCircle.tsx, TxStatusWarningCircle.tsx, WalletconnectLogo.tsx, ZksyncEraMainnet.tsx, AiStar.tsx.
  • Added new files: index.ts.
  • Created new file: Accessibility.tsx, AccessibilityEye.tsx, Activity.tsx, AddColumn.tsx, AddPages.tsx, AddPagesWide.tsx, AddPeople.tsx, AddRow.tsx, AddSheet.tsx, AddSlide.tsx, AddedPeople.tsx, Ai2Star.tsx, Ai3Star.tsx, AiAvatar.tsx, AiImages.tsx, AiStar.tsx.
  • Added the following files and components:
  • AiText.tsx
  • Airplay.tsx
  • Airpods.tsx
  • Albums.tsx
  • AlighRight.tsx
  • AlignBottom.tsx
  • AlignLeft.tsx
  • AlignRight.tsx
  • AlignTop.tsx
  • AlignmentBar.tsx
  • AlignmentCenter.tsx
  • AlignmentJustify.tsx
  • AlignmentLeft.tsx
  • AlignmentRight.tsx
  • Alt.tsx
  • AltText.tsx
  • Anchor.tsx
  • Animation.tsx
  • AnonymousHidden.tsx
  • AnonymousHidden2.tsx
  • Apple.tsx
  • Ar.tsx
  • Archive.tsx
  • ArchiveBox.tsx
  • Around.tsx
  • ArrowBottom.tsx
  • ArrowBottomCircle.tsx
* Added the respective code for each of those files.
* Added new files:
- ArrowBottomLeft.tsx
- ArrowBottomRight.tsx
- ArrowExpandH.tsx
- ArrowExpandV.tsx
- ArrowLeft.tsx
- ArrowLeftCircle.tsx
- ArrowPathDown.tsx
- ArrowPathLeft.tsx
- ArrowPathRight.tsx
- ArrowPathUp.tsx
- ArrowRightCircle.tsx
- ArrowTop.tsx
- ArrowTopCircle.tsx
- ArrowTopLeft.tsx
- ArrowTopRight.tsx
- ArrowTriangleBottom.tsx
- ArrowTriangleLeft.tsx
- ArrowTriangleRight.tsx
- ArrowTriangleTop.tsx
- AtSign.tsx
- Attachment.tsx
- AutoFlash.tsx
- AutoPageSize.tsx
- Avocado.tsx
- Back10.tsx
- BadgeVerified.tsx
- Bag.tsx
- BagSmile.tsx
- BallBaseball.tsx
- BallBasket.tsx
* Changed files:
None
* Removed files:
None
  • Added a new component BallFootball
  • Added a new component BallRugby
  • Added a new component BallTennis
  • Added a new component BallVolleyball
  • Added a new component Bank
  • Added a new component Barcode
  • Added a new component Basket
  • Added a new component BatteryEmpty
  • Added a new component BatteryError
  • Added a new component BatteryFull
  • Added a new component BatteryLoading
  • Added a new component BatteryLow
  • Added a new component BatteryMedium
  • Added a new component Bell
  • Added a new component BezierAdd
  • Added a new component BezierCircle
  • Added a new component BezierCurve
  • Added a new component BezierEdit
  • Added a new component BezierMouse
  • Added a new component BezierNodes
  • Added a new component BezierRemove
  • Added a new component Bill
  • Added a new component BillPercent
  • Added a new component Bitcoin
  • Added a new component Block
  • Added a new component Bluetooth
  • Added a new component BnoozeBell
  • Added a new component Bold
* Added a new file "Bomb.tsx" in the "Icon/react/outline" directory.
* Added a new file "Book.tsx" in the "Icon/react/outline" directory.
* Added a new file "BookOpen.tsx" in the "Icon/react/outline" directory.
* Added a new file "Bookmark.tsx" in the "Icon/react/outline" directory.
* Added a new file "BookmarkCheck.tsx" in the "Icon/react/outline" directory.
* Added a new file "BookmarkDelete.tsx" in the "Icon/react/outline" directory.
* Added a new file "BookmarkPlus.tsx" in the "Icon/react/outline" directory.
* Added a new file "Bot.tsx" in the "Icon/react/outline" directory.
* Added a new file "Brackets.tsx" in the "Icon/react/outline" directory.
* Added a new file "BrainAi.tsx" in the "Icon/react/outline" directory.
* Added a new file "Branches.tsx" in the "Icon/react/outline" directory.
* Added a new file "BrokenLink.tsx" in the "Icon/react/outline" directory.
* Added a new file "Broom.tsx" in the "Icon/react/outline" directory.
* Added a new file "Browser.tsx" in the "Icon/react/outline" directory.
* Added a new file "Brush.tsx" in the "Icon/react/outline" directory.
* Added a new file "Bubble.tsx" in the "Icon/react/outline" directory.
* Added a new file "BubbleAnnotation.tsx" in the "Icon/react/outline" directory.
* Added a new file "Bubbles.tsx" in the "Icon/react/outline" directory.
* Added a new file "Bucket.tsx" in the "Icon/react/outline" directory.
* Added a new file "Bug.tsx" in the "Icon/react/outline" directory.
  • Added new files:
    • Buildings.tsx
    • BulletList.tsx
    • BunnyHat.tsx
    • Burger1.tsx
    • Burger2.tsx
    • Business.tsx
    • Cake.tsx
    • Calculator.tsx
    • Calendar.tsx
    • Calendar2.tsx
    • Calendar3.tsx
    • Calendar3Add.tsx
    • Calendar3CheckDone.tsx
    • Calendar3History.tsx
    • Calendar3Remove.tsx
    • Calendar3Search.tsx
    • CalendarAdd.tsx
    • CalendarCheckDone.tsx
    • CalendarDays.tsx
    • CalendarEdit.tsx
    • CalendarFailur.tsx
    • Call.tsx
    • CallCancel.tsx
    • CallIncoming.tsx
    • CallOutgoing.tsx
  • Added the following files:
  • Camera.tsx
  • CameraAuto.tsx
  • CameraChangeLens.tsx
  • CameraCrossOff.tsx
  • CameraExposure.tsx
  • CameraExposureAutofocus.tsx
  • CameraExposureCross.tsx
  • CameraExposureFlash.tsx
  • CameraExposureFlower.tsx
  • CameraExposureLock.tsx
  • CameraExposureSparkles.tsx
  • CameraExposureSquare.tsx
  • CameraExposureZoomIn.tsx
  • CameraExposureZoomOut.tsx
  • CameraGopro.tsx
  • CameraLomo.tsx
  • CameraOff.tsx
  • CameraSquare.tsx
  • Car.tsx
  • Cards.tsx
  • Cart.tsx
  • Carussel.tsx
  • Cc.tsx
  • ChartColumnar.tsx
  • ChartColumnar2.tsx
  • ChartColumnar3.tsx
  • ChartColumnar4.tsx
  • ChartColumnarSignal.tsx
  • ChartColumnarSignal2.tsx
  • Added a new file: ChartColumnarSignal3.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChartDashbord.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChartDashbord2.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChartLine.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChartLine2.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChartPieDashboard.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChartPieDashboard2.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChartTrending.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChartTrending2.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChartTrendingUp.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChartTrendingUp2.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChartWhiteboard.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: Chat.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChatAnnotation.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChatGpt.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChatGroup.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: CheckLarge.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: CheckRadio.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: Checkbox.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: Checklist.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChecklistBox.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChecklistBoxNotification.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChecklistBoxSearch.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChevronBottom.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChevronDoubleDown.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChevronDoubleLeft.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChevronDoubleRight.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChevronDoubleUp.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChevronDownSmall.tsx in the components/src/Icon/react/outline directory.
  • Added a new file: ChevronGrabberHor.tsx in the components/src/Icon/react/outline directory.
* Added new SVG components for various icons:
- `ChevronGrabberVer`
- `ChevronLargeDown`
- `ChevronLargeLeft`
- `ChevronLargeRight`
- `ChevronLargeTop`
- `ChevronLeft`
- `ChevronRight`
- `ChevronRightSmall`
- `ChevronTop`
- `ChevronTopSmall`
- `Chromecast`
- `CirclePlaceholderOff`
- `CirclePlaceholderOn`
- `Clipboard`
- `ClockAlert`
- `ClockSnooze`
- `ClockTimeHistory`
- `CloseQuote`
- `Cloud`
- `CloudArrowDown`
- `CloudDisconnected`
- `CloudDownload`
- `CloudOff`
- `CloudSimple`
- `CloudSync`
- `CloudUpload`
- `Clouds`
- `Cloudy`
- `CloudySun`
- `Code`
- `CodeBrackets`
- `CodeInsert`
- `CodeLines`
- `Color`


@socket-security
Copy link

New and updated dependencies detected. Learn more about Socket for GitHub ↗︎

Packages Version New capabilities Transitives Size Publisher
@onekeyfe/hd-shared 0.3.27 None +0 38.8 kB 1keyfe
@types/socket.io-client 3.0.0 network +14 4.54 MB types
@onekeyfe/hd-ble-sdk 0.3.27 eval, network, filesystem, shell +21 20.9 MB 1keyfe
@onekeyfe/hd-core 0.3.27 eval, network, filesystem, shell +20 20.8 MB 1keyfe
eth-chains 1.0.0 None +0 355 kB tdawson
@onekeyfe/hd-transport 0.3.27 eval, network, filesystem, shell, environment +15 16.7 MB 1keyfe
@onekeyfe/hd-web-sdk 0.3.27 eval, network, filesystem, shell, environment +25 43 MB 1keyfe
zbar.wasm 2.1.1 network, filesystem +0 543 kB samsam2310
memoizee 0.4.15 eval +13 783 kB medikoo
@types/url-parse 1.4.9 None +0 6.21 kB types
@types/mime 3.0.2 None +0 3.57 kB types
react-native-typewriter 0.7.0 None +36 1.59 MB taylorbriggs
react-native-animated-splash-screen 2.0.5 None +4 1.24 MB fabio.fresan
@react-navigation/devtools 6.0.19 eval, network, environment +72 3.81 MB kacperkapusciak
react-native-file-logger 0.4.1 None +36 1.62 MB fdrault
react-native-tab-view 3.5.2 None +38 1.87 MB kacperkapusciak
@react-native-async-storage/async-storage 1.18.2 None +4 437 kB krizzu
react-native-get-random-values 1.9.0 None +38 1.6 MB linusu
@reduxjs/toolkit 1.9.7 network, environment +50 16.5 MB acemarke
@formatjs/intl-getcanonicallocales 1.9.2 None +0 288 kB longlho
socket.io-client 4.7.2 network +12 3.25 MB darrachequesne
@react-navigation/native 6.1.8 environment +52 4.06 MB satya164
@formatjs/intl-pluralrules 4.3.3 None +4 786 kB longlho
@formatjs/intl-locale 2.4.47 None +6 1.39 MB longlho
@types/d3-shape 3.1.4 None +2 153 kB types
@react-navigation/native-stack 6.9.14 environment +62 8.13 MB satya164
@react-navigation/elements 1.3.19 environment +28 2.65 MB satya164
@types/d3-scale 4.0.6 None +2 196 kB types
@react-navigation/bottom-tabs 6.5.9 None +70 8.3 MB satya164
react-intl 5.25.1 None +26 35.4 MB longlho
@react-navigation/drawer 6.6.4 None +78 16.8 MB satya164
natsort 2.0.3 None +0 12.7 kB bubkoo
@react-navigation/stack 6.3.18 None +78 17 MB satya164
react-native-draggable-flatlist 4.0.1 None +44 10.4 MB computerjazz
expo-application 5.1.1 None +1 238 kB brentvatne
dotbit 0.4.26 network +138 45.7 MB dotbithq
text-encoding 0.7.0 None +0 650 kB inexorabletash
expo-intent-launcher 10.7.0 None +2 405 kB brentvatne
expo-clipboard 4.5.0 None +2 529 kB wschurman
expo-linking 5.0.2 None +2 454 kB brentvatne
react-redux 8.1.3 environment +44 2.74 MB acemarke
react-native-keyboard-manager 6.5.11-2 None +36 1.62 MB douglasjunior
fuse.js 6.6.2 None +0 392 kB krisk
expo-keep-awake 12.0.1 None +1 223 kB brentvatne
react-async-hook 4.0.0 environment +0 163 kB slorber
expo-device 5.4.0 None +2 462 kB brentvatne
patch-package 7.0.2 eval, filesystem, environment +4 631 kB ds300
react-native-markdown-display 7.0.0-alpha.2 None +56 3.85 MB iamacup
redux-logger 3.0.6 None +2 246 kB evgenyrodionov
expo-linear-gradient 12.1.2 None +2 418 kB kudochien
lottie-react 2.4.0 network, filesystem +2 51.6 MB gamote
expo-secure-store 12.5.0 None +2 451 kB wschurman
expo-image-manipulator 11.5.0 None +4 498 kB wschurman
expo-blur 12.3.2 None +2 389 kB tsapeta
dequal 2.0.3 None +0 14.2 kB lukeed
react-native-progress 5.0.0 None +38 7.33 MB oblador
react-content-loader 6.2.1 None +0 169 kB danilowoz
expo-localization 14.5.0 None +4 522 kB wschurman
expo-haptics 12.6.0 None +2 384 kB wschurman
redux-flipper 2.0.2 None +19 805 kB plwai
@types/redux-logger 3.0.10 None +0 7.51 kB types
react-native-modalize 2.1.1 None +44 9.94 MB jeremy.barbet
use-debounce 9.0.4 None +0 106 kB xnimorz
react-dropzone 14.2.3 None +8 1.08 MB rolandjitsu
qrcode 1.5.3 filesystem +6 2.21 MB soldair
js-base64 3.7.5 None +0 34.7 kB dankogai
react-native-keyboard-aware-scroll-view 0.9.5 None +38 1.64 MB slorber
react-native-fs 2.20.0 None +40 2.19 MB hagen
react-player 2.13.0 filesystem +10 2.15 MB cookpete
expo-local-authentication 13.6.0 None +2 421 kB wschurman
expo-barcode-scanner 12.7.0 None +4 522 kB wschurman
react-native-camera-kit 14.0.0-beta2 None +36 1.88 MB scarlac
mime 3.0.0 None +0 60.1 kB broofa
iso-639-1 2.1.15 None +0 120 kB meikidd
burnt 0.12.1 None +40 2.27 MB fernandorojo
expo-av 13.6.0 None +2 1.2 MB wschurman
react-native-mmkv 2.10.2 None +36 2.37 MB mrousavy
react-native-gesture-handler 2.13.3 environment +42 6.55 MB jakub.piasecki
react-native-safe-area-context 4.7.2 environment +36 1.81 MB janicduplessis
react-native-root-siblings 4.1.1 None +0 41.4 kB magicismight
react-native-screens 3.26.0 None +38 2.88 MB tboba
react-native-zip-archive 6.1.0 None +36 1.69 MB plrthink
recyclerlistview 4.2.0 None +38 7.56 MB naqvitalha
lightweight-charts 3.8.0 environment +2 1.63 MB timocov
react-native-svg 13.14.0 network +54 5.22 MB wolewicki
react-hook-form 7.47.0 network +0 861 kB bluebill1049
expo-camera 13.2.1 None +12 1.71 MB brentvatne
react-native-device-info 10.11.0 None +36 2.25 MB schie
expo-notifications 0.20.1 network, filesystem +36 5.06 MB brentvatne
expo-image-picker 14.5.0 None +4 647 kB wschurman
swr 2.2.4 None +2 302 kB vercel-release-bot
lottie-react-native 6.3.1 None +36 1.73 MB matinzd
@types/react 18.2.28...18.2.29 None +0/-0 363 kB

@socket-security
Copy link

🚨 Potential security issues detected. Learn more about Socket for GitHub ↗︎

To accept the risk, merge this PR and you will not be notified again.

Issue Package Version Note Source
Protestware/Troll package es5-ext 0.10.62
  • Note: This package prints a protestware console message on install regarding Ukraine for users with Russian language locale

Next steps

What is protestware and troll packages?

This package is a joke, parody, or includes undocumented or hidden behavior unrelated to its primary function.

Consider that consuming this package my come along with functionality unrelated to its primary purpose.

Take a deeper look at the dependency

Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support [AT] socket [DOT] dev.

Remove the package

If you happen to install a dependency that Socket reports as Known Malware you should immediately remove it and select a different dependency. For other alert types, you may may wish to investigate alternative packages or consider if there are other ways to mitigate the specific risk posed by the dependency.

Mark a package as acceptable risk

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of package-name@version specifiers. e.g. @SocketSecurity ignore [email protected] bar@* or ignore all packages with @SocketSecurity ignore-all

@huhuanming huhuanming merged commit 9afe975 into x Oct 19, 2023
1 check failed
@huhuanming huhuanming deleted the feature/x-components branch October 19, 2023 01:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant