
Research
6 Malicious Packagist Themes Ship Trojanized jQuery and FUNNULL Redirect Payloads
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.
concentric-sheet
Advanced tools
n iOS sheet view controller that supports concentric corners + glass.
React Native Modal replacement for iOS sheet presentation.
This package keeps React Native's Modal behavior, and adds runtime access to
native UIViewController / UISheetPresentationController options such as:
medium, large)[78, 350])isModalInPresentation)bun add concentric-sheet react-native-nitro-modules
Then install iOS pods in your app:
bunx pod-install ./ios
import React from 'react'
import { View, Text, Button } from 'react-native'
import { Modal } from 'concentric-sheet'
export function Example() {
const [visible, setVisible] = React.useState(false)
return (
<>
<Button title="Open" onPress={() => setVisible(true)} />
<Modal
visible={visible}
onRequestClose={() => setVisible(false)}
detents={['medium', 'large']}
prefersGrabberVisible
preferredCornerRadius={24}
>
<View style={{ flex: 1, padding: 20 }}>
<Text>Native sheet modal</Text>
<Button title="Close" onPress={() => setVisible(false)} />
</View>
</Modal>
</>
)
}
Modal accepts all React Native Modal props, plus:
detents?: ('medium' | 'large')[]customDetentHeights?: number[] (iOS 16+)selectedDetentIdentifier?: 'medium' | 'large'selectedCustomDetentHeight?: number (iOS 16+)largestUndimmedDetentIdentifier?: 'medium' | 'large'largestUndimmedCustomDetentHeight?: number (iOS 16+)prefersGrabberVisible?: booleanpreferredCornerRadius?: numberprefersScrollingExpandsWhenScrolledToEdge?: booleanprefersEdgeAttachedInCompactHeight?: booleanwidthFollowsPreferredContentSizeWhenEdgeAttached?: booleanisModalInPresentation?: booleanpreferredContentWidth?: numberpreferredContentHeight?: numbermodalViewBackground?: 'clear' | 'systemBackground'cornerConfiguration?: { type: 'none' | 'fixed' | 'containerConcentric' | 'capsule', radius?: number, minimumRadius?: number, maximumRadius?: number }Imperative helpers:
applyPresentedModalConfig(config)dismissPresentedNativeModal(animated?)The native Swift implementation lives in ios/SheetModalController.swift.
The Nitro TypeScript API is defined in src/. When you change props or the spec, regenerate the native bridge code by running:
bunx nitrogen
Commit the generated files in nitrogen/ alongside your changes.
All commits must be signed off per the Developer Certificate of Origin. Use the -s flag when committing:
git commit -s -m "your commit message"
UISheetPresentationController options require iOS 15+.cornerConfiguration requires iOS 26+.presentationStyle="pageSheet" or formSheet.largestUndimmedDetentIdentifier can disable outside-tap dismissal at/under that detent because the dimming view is removed.FAQs
n iOS sheet view controller that supports concentric corners + glass.
We found that concentric-sheet demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.

Security News
The GCVE initiative operated by CIRCL has officially opened its publishing ecosystem, letting organizations issue and share vulnerability identifiers without routing through a central authority.

Security News
The project is retiring its odd/even release model in favor of a simpler annual cadence where every major version becomes LTS.