This commit is contained in:
Norbert de Langen 2022-06-29 21:07:07 +02:00
parent 6b559e831c
commit 73d821fe3a
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
5 changed files with 4 additions and 10 deletions

View File

@ -21,6 +21,7 @@ export function useStories<TFramework extends AnyFramework = AnyFramework>(
const [storiesById, setStories] = useState<Record<StoryId, Story<TFramework>>>({}); const [storiesById, setStories] = useState<Record<StoryId, Story<TFramework>>>({});
useEffect(() => { useEffect(() => {
// deepscan-disable-next-line NO_EFFECT_CALL
Promise.all( Promise.all(
storyIds.map(async (storyId) => { storyIds.map(async (storyId) => {
// loadStory will be called every single time useStory is called // loadStory will be called every single time useStory is called

View File

@ -78,7 +78,6 @@ const Label = styled.label(({ theme }) => ({
}, },
})); }));
const format = (value: BooleanValue): string | null => (value ? String(value) : null);
const parse = (value: string | null): boolean => value === 'true'; const parse = (value: string | null): boolean => value === 'true';
export type BooleanProps = ControlProps<BooleanValue> & BooleanConfig; export type BooleanProps = ControlProps<BooleanValue> & BooleanConfig;

View File

@ -1,4 +1,4 @@
import React, { FC, ChangeEvent, useState, Fragment } from 'react'; import React, { FC, ChangeEvent, useState } from 'react';
import { styled } from '@storybook/theming'; import { styled } from '@storybook/theming';
import { logger } from '@storybook/client-logger'; import { logger } from '@storybook/client-logger';
import { ControlProps, OptionsMultiSelection, NormalizedOptionsConfig } from '../types'; import { ControlProps, OptionsMultiSelection, NormalizedOptionsConfig } from '../types';
@ -61,7 +61,7 @@ export const CheckboxControl: FC<CheckboxProps> = ({
const handleChange = (e: ChangeEvent<HTMLInputElement>) => { const handleChange = (e: ChangeEvent<HTMLInputElement>) => {
const option = (e.target as HTMLInputElement).value; const option = (e.target as HTMLInputElement).value;
const updated = [...selected]; const updated = [...selected];
if (updated?.includes(option)) { if (updated.includes(option)) {
updated.splice(updated.indexOf(option), 1); updated.splice(updated.indexOf(option), 1);
} else { } else {
updated.push(option); updated.push(option);

View File

@ -24,12 +24,6 @@ const Wrapper = styled.div<{ isInline: boolean }>(({ isInline }) =>
} }
); );
const Fieldset = styled.fieldset({
border: 0,
padding: 0,
margin: 0,
});
const Text = styled.span({}); const Text = styled.span({});
const Label = styled.label({ const Label = styled.label({

View File

@ -154,7 +154,7 @@ export async function baseGenerator(
packages: frameworkPackages, packages: frameworkPackages,
type, type,
// @ts-ignore // @ts-ignore
renderer: rendererInclude, renderer: rendererInclude, // deepscan-disable-line UNUSED_DECL
framework: frameworkInclude, framework: frameworkInclude,
builder: builderInclude, builder: builderInclude,
} = getFrameworkDetails(renderer, builder, pnp); } = getFrameworkDetails(renderer, builder, pnp);