
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
@greatnonprofits-nfp/temba-components
Advanced tools
Web components to support rapidpro and related projects
temba-components is a suite of ui widgets used by various RapidPro projects.
Some of the components:
<temba-select/>
Advanced select widget with support for remote fetching and filtering. Also supports multi selection with the ability to enter expressions.
<temba-completion/>
Completion widget for completing RP-style expressions
<temba-textinput/>
- Standard text field with baked in support for date picking
<temba-charcount/>
- SMS segment counter attachable to elements for monitoring
<temba-store/>
- In page cache for RP core data types
<temba-options/>
- Generic option list with configurable rendering, remote list paging, and keyboard support. Used by temba-select, temba-completion, and temba-list
<temba-list/>
- Block rendered option list
<temba-dialog/>
- Basic modal
<temba-modax/>
- Fancier modal that fetches and submits html rendered forms and is triggered by a slot element
.. and many more
We use yarn, so you'll want to install with that if you care about our lock file.
% yarn install
To view the interactive demo, use start.
% yarn start
All tests live under /test. When running tests, some tests capture screenshots for pixel comparision under /screenshots.
% yarn test
Simply include the built file as a module and you should be off to the races!
<html>
<head>
<script type="module">
import '../out-tsc/temba-components.js';
</script>
</head>
<body>
<temba-select name="color">
<temba-option name="Red" value="r"></temba-option>
<temba-option name="Green" value="g"></temba-option>
<temba-option name="Blue" value="b"></temba-option>
</temba-select>
</body>
</html>
To interactively work with components whilst embedded in another project, it can easily be done with a couple nginx rules.
location ~ /out-tsc/(.*) {
proxy_pass http://localhost:3010/out-tsc/$1;
}
location ~ /node_modules/(.*) {
proxy_pass http://localhost:3010/node_modules/$1;
}
We've added the framework for storybook, but nothing to see here yet!
Starting with v1.0 we no longer ship a version with legacy polyfill support. This can still be accomplished manually if desired by toggling the legacyBuild
attribute in rollup.config.js.
FAQs
Web components to support rapidpro and related projects
The npm package @greatnonprofits-nfp/temba-components receives a total of 131 weekly downloads. As such, @greatnonprofits-nfp/temba-components popularity was classified as not popular.
We found that @greatnonprofits-nfp/temba-components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.