
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
@juspay/svelte-ui-components
Advanced tools
This library provides a collection of reusable UI components built with [Svelte](https://svelte.dev/).
This library provides a collection of reusable UI components built with Svelte.
This library is publish on npm & can be installed via any npm client. Use the following command to install the library.
npm install @juspay/svelte-ui-components
The library contains a collection of components that can be imported & used in your svelte project.
All of the components can be easily imported from the 'svelte-ui-components' package.
<script lang="ts">
import { Button, defaultButtonProperties } from '@juspay/svelte-ui-components';
</script>
<Button properties={{ ...defaultButtonProperties, text: 'Click' }} />
Each component comes with a set of configuration options that can be used to customize the component. There are two ways to customize the component.
Using css variables:
Using props:
<script lang="ts">
import {
Button,
type ButtonProperties,
defaultButtonProperties
} from '@juspay/svelte-ui-components';
const buttonProperties: ButtonProperties = {
...defaultButtonProperties,
text: 'Submit'
};
function handleSubmitClick() {
// handle click
}
</script>
<div class="form">
<Button properties={buttonProperties} on:click={handleSubmitClick} />
</div>
<style>
.form {
--button-color: black;
--button-text-color: white;
/* Other styling values */
}
</style>
pnpm installpnpm run testFAQs
This library provides a collection of reusable UI components built with [Svelte](https://svelte.dev/).
The npm package @juspay/svelte-ui-components receives a total of 523 weekly downloads. As such, @juspay/svelte-ui-components popularity was classified as not popular.
We found that @juspay/svelte-ui-components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.