Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@storybook/addon-svelte-csf
Advanced tools
Allows you to write your stories in .svelte
syntax rather than .js
syntax.
It supports:
@storybook/addon-svelte-csf/jest-transform
)<script context="module">
import Button from './Button.svelte';
export const meta = {
title: "Button",
component: Button
}
</script>
<script>
import { Story, Template } from '@storybook/addon-svelte-csf';
let count = 0;
function handleClick() {
count += 1;
}
</script>
<Template let:args>
<!--👇 'on:click' allows to forward event to addon-actions -->
<Button {...args}
on:click
on:click={handleClick}>
You clicked: {count}
</Button>
</Template>
<Story name="Rounded" args={{rounded: true}}/>
<Story name="Square" source args={{rounded: false}}/>
<!-- Dynamic snippet should be disabled for this story -->
<Story name="Button No Args">
<Button>Label</Button>
</Story>
Actions are automatically registered by Storybook. To be used by this addon, you just have to forward the event (on:click
in the previous example).
npm install --save-dev @storybook/addon-svelte-csf
or yarn add --dev @storybook/addon-svelte-csf
.storybook/main.js
, add @storybook/addon-svelte-csf
to the addons array.storybook/main.js
, add *.stories.svelte
to the stories patternsAn example main.js
configuration could look like this:
module.exports = {
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx|svelte)'],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-interactions',
'@storybook/addon-svelte-csf',
],
framework: '@storybook/svelte-vite',
};
Version 4 of this addon requires at least:
@sveltejs/vite-plugin-svelte
v2 (if using Vite)If you're using Svelte v3 you can use version ^3.0.0
of this addon instead.
Version 3 of this addon requires at least Storybook v7.
If you're using Storybook between v6.4.20 and v7.0.0, you should instead use version ^2.0.0
of this addon.
FAQs
Allows to write stories in Svelte syntax
The npm package @storybook/addon-svelte-csf receives a total of 33,341 weekly downloads. As such, @storybook/addon-svelte-csf popularity was classified as popular.
We found that @storybook/addon-svelte-csf demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.