Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@jsamr/react-native-li
Advanced tools
A pure JavaScript React Native component to render CSS3 compliant ordered and unordered lists.
A pure-JavaScript React Native component to render CSS3 compliant ordered and unordered lists.
Supports more than 4 dozens numeric, alphabetic, symbolic and additive presets, including
Arabic (numeric), Persian, Thai, Hebrew, Roman, Katana, Latin, disk, circle, square...
All presets can be easily extended (add prefix, suffix).
Plus, it has premium RTL support 🚀
npm add --save @jsamr/react-native-li @jsamr/counter-style
yarn add @jsamr/react-native-li @jsamr/counter-style
You must provide a counter style renderer from @jsamr/counter-style
library
to the counterRenderer
prop of MarkedList
component. This library exports
dozens of presets as individual modules (see examples below) and also provides
an easy API to create custom counter styles. Check the docs
here.
MarkedList
will render every children as a list item (li). If you want to
render items in a different container, you should instead use MarkedListItem
in
combination with useMarkedList
. The latter takes exactly the same props as MarkedListItem
+ a length
prop corresponding to the number of list items to render. It returns base props for the MarkedListItem
component.
The full API including components props is available here.
import React from 'react';
import { ScrollView, StyleSheet, Text } from 'react-native';
import lowerLatin from '@jsamr/counter-style/presets/lowerLatin';
import MarkedList from '@jsamr/react-native-li';
export default function App() {
return (
<ScrollView style={{ flexGrow: 1 }}>
<MarkedList counterRenderer={lowerLatin}>
{[...Array(100).keys()].map((index) => (
<Text key={index} style={{ flexShrink: 1 }}>
The World Wide Web Consortium (W3C)
develops international standards
for the web and HTML, CSS, and more.
</Text>
))}
</MarkedList>
</ScrollView>
);
}
import React from 'react';
import { ScrollView, StyleSheet, Text } from 'react-native';
import disc from '@jsamr/counter-style/presets/disc';
import MarkedList from '@jsamr/react-native-li';
export default function App() {
return (
<ScrollView style={{ flexGrow: 1 }}>
<MarkedList counterRenderer={disc}>
{[...Array(100).keys()].map((index) => (
<Text key={index} style={{ flexShrink: 1 }}>
The World Wide Web Consortium (W3C)
develops international standards
for the web and HTML, CSS, and more.
</Text>
))}
</MarkedList>
</ScrollView>
);
}
import React from 'react';
import { ScrollView, StyleSheet, Text } from 'react-native';
import arabicIndic from '@jsamr/counter-style/presets/arabicIndic';
import MarkedList from '@jsamr/react-native-li';
export default function App() {
return (
<ScrollView style={{ flexGrow: 1 }}>
<MarkedList
counterRenderer={arabicIndic}
rtlLineReversed
rtlMarkerReversed>
{[...Array(100).keys()].map((index) => (
<Text key={index} style={{ flexShrink: 1 }}>
يقوم اتحاد شبكة الويب العالمية
(W3C) بتطوير معايير دولية للويب و
HTML و CSS وغير ذلك الكثير.
</Text>
))}
</MarkedList>
</ScrollView>
);
}
import React from 'react';
import { ScrollView, StyleSheet, Text } from 'react-native';
import disc from '@jsamr/counter-style/presets/disc';
import MarkedList from '@jsamr/react-native-li';
export default function App() {
return (
<ScrollView style={{ flexGrow: 1 }}>
<MarkedList counterRenderer={disc} rtlLineReversed rtlMarkerReversed>
{[...Array(100).keys()].map((index) => (
<Text key={index} style={{ flexShrink: 1 }}>
يقوم اتحاد شبكة الويب العالمية
(W3C) بتطوير معايير دولية للويب و
HTML و CSS وغير ذلك الكثير.
</Text>
))}
</MarkedList>
</ScrollView>
);
}
Width is approximated with the maximum marker string length in range, but letter widths may vary a lot depending on font and scripts. Use computeMarkerBoxWidth
prop to customize width, or use markerStyle
to override width.
Don't forget to add flexShrink: 1
to your Text
element.
That's really stunningly easy:
import arabicIndic from '@jsamr/counter-style/presets/arabicIndic';
const myCustomArabicIndic = arabicIndic.withPrefix('(').withSuffix(')');
// Expect comes from jest testing framework.
// Just a showcase of expected returned values.
expect(myCustomArabicIndic.renderMarker(78)).toBe('(٧٨)');
That's really quite easy. Check @jsamr/counter-style
examples section.
FAQs
A pure JavaScript React Native component to render CSS3 compliant ordered and unordered lists.
We found that @jsamr/react-native-li demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.