mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:01:07 +08:00
revert strictness
This commit is contained in:
parent
dc92a56c84
commit
4e900b5f0e
@ -1,6 +1,7 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"strict": false,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"storybook/internal/*": ["../../lib/cli/core/*"]
|
||||
|
@ -59,7 +59,7 @@ const Notification = styled.div<{ duration?: number }>(
|
||||
}
|
||||
);
|
||||
|
||||
const NotificationWithInteractiveStates = styled(Notification)(() => ({
|
||||
const NotificationWithInteractiveStates = styled(Notification)({
|
||||
cursor: 'pointer',
|
||||
border: 'none',
|
||||
outline: 'none',
|
||||
@ -80,7 +80,7 @@ const NotificationWithInteractiveStates = styled(Notification)(() => ({
|
||||
boxShadow:
|
||||
'rgba(2,156,253,1) 0 0 0 1px inset, 0 1px 3px 0 rgba(30,167,253,0.5), 0 2px 5px 0 rgba(0,0,0,0.05), 0 5px 15px 0 rgba(0,0,0,0.1)',
|
||||
},
|
||||
}));
|
||||
});
|
||||
const NotificationButton = NotificationWithInteractiveStates.withComponent('div');
|
||||
const NotificationLink = NotificationWithInteractiveStates.withComponent(Link);
|
||||
|
||||
|
@ -53,10 +53,10 @@ const IconWrapper = styled.div({
|
||||
marginTop: 2,
|
||||
});
|
||||
|
||||
const ResultRowContent = styled.div(() => ({
|
||||
const ResultRowContent = styled.div({
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
}));
|
||||
});
|
||||
|
||||
const NoResults = styled.div(({ theme }) => ({
|
||||
marginTop: 20,
|
||||
|
@ -20,6 +20,7 @@ import type {
|
||||
StoryRenderOptions,
|
||||
TeardownRenderToCanvas,
|
||||
} from '@storybook/core/types';
|
||||
import type { Canvas } from '@storybook/csf';
|
||||
|
||||
const { AbortController } = globalThis;
|
||||
|
||||
@ -188,7 +189,7 @@ export class StoryRender<TRenderer extends Renderer> implements Render<TRenderer
|
||||
loaded: {},
|
||||
step: (label, play) => runStep(label, play, context),
|
||||
context: null!,
|
||||
canvas: {},
|
||||
canvas: {} as Canvas,
|
||||
};
|
||||
context.context = context;
|
||||
|
||||
|
@ -27,7 +27,7 @@ import {
|
||||
normalizeProjectAnnotations,
|
||||
prepareContext,
|
||||
} from './csf';
|
||||
import type { CleanupCallback } from '@storybook/csf';
|
||||
import type { Canvas, CleanupCallback } from '@storybook/csf';
|
||||
import type {
|
||||
BoundStory,
|
||||
CSFFile,
|
||||
@ -374,7 +374,7 @@ export class StoryStore<TRenderer extends Renderer> {
|
||||
loaded: {},
|
||||
step: (label, play) => story.runStep(label, play, context),
|
||||
context: null!,
|
||||
canvas: {},
|
||||
canvas: {} as Canvas,
|
||||
viewMode: 'story',
|
||||
} as StoryContext<TRenderer>;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* eslint-disable no-underscore-dangle */
|
||||
/* eslint-disable @typescript-eslint/naming-convention */
|
||||
import { type CleanupCallback, isExportStory } from '@storybook/csf';
|
||||
import { type CleanupCallback, isExportStory, type Canvas } from '@storybook/csf';
|
||||
import { dedent } from 'ts-dedent';
|
||||
import type {
|
||||
Renderer,
|
||||
@ -106,7 +106,7 @@ export function composeStory<TRenderer extends Renderer = Renderer, TArgs extend
|
||||
step: (label, play) => story.runStep(label, play, context),
|
||||
canvasElement: globalThis?.document?.body,
|
||||
context: null!,
|
||||
canvas: {},
|
||||
canvas: {} as Canvas,
|
||||
...story,
|
||||
};
|
||||
|
||||
|
@ -29,7 +29,6 @@ function extractComponentArgTypes(
|
||||
if (!extractArgTypes) {
|
||||
throw new Error(ArgsTableError.ARGS_UNSUPPORTED);
|
||||
}
|
||||
// @ts-expect-error (non-strict)
|
||||
return extractArgTypes(component);
|
||||
}
|
||||
|
||||
@ -40,7 +39,6 @@ function getArgTypesFromResolved(resolved: ReturnType<typeof useOf>) {
|
||||
projectAnnotations: { parameters },
|
||||
} = resolved;
|
||||
return {
|
||||
// @ts-expect-error (non-strict)
|
||||
argTypes: extractComponentArgTypes(component, parameters),
|
||||
parameters,
|
||||
component,
|
||||
@ -69,7 +67,6 @@ export const ArgTypes: FC<ArgTypesProps> = (props) => {
|
||||
}
|
||||
const resolved = useOf(of || 'meta');
|
||||
const { argTypes, parameters, component, subcomponents } = getArgTypesFromResolved(resolved);
|
||||
// @ts-expect-error (non-strict)
|
||||
const argTypesParameters = parameters.docs?.argTypes || ({} as ArgTypesParameters);
|
||||
|
||||
const include = props.include ?? argTypesParameters.include;
|
||||
@ -78,7 +75,6 @@ export const ArgTypes: FC<ArgTypesProps> = (props) => {
|
||||
|
||||
const filteredArgTypes = filterArgTypes(argTypes, include, exclude);
|
||||
|
||||
// @ts-expect-error (non-strict)
|
||||
const hasSubcomponents = Boolean(subcomponents) && Object.keys(subcomponents).length > 0;
|
||||
|
||||
if (!hasSubcomponents) {
|
||||
@ -87,11 +83,9 @@ export const ArgTypes: FC<ArgTypesProps> = (props) => {
|
||||
|
||||
const mainComponentName = getComponentName(component);
|
||||
const subcomponentTabs = Object.fromEntries(
|
||||
// @ts-expect-error (non-strict)
|
||||
Object.entries(subcomponents).map(([key, comp]) => [
|
||||
key,
|
||||
{
|
||||
// @ts-expect-error (non-strict)
|
||||
rows: filterArgTypes(extractComponentArgTypes(comp, parameters), include, exclude),
|
||||
sort,
|
||||
},
|
||||
|
@ -32,7 +32,6 @@ function extractComponentArgTypes(
|
||||
if (!extractArgTypes) {
|
||||
throw new Error(ArgsTableError.ARGS_UNSUPPORTED);
|
||||
}
|
||||
// @ts-expect-error (non-strict)
|
||||
return extractArgTypes(component);
|
||||
}
|
||||
|
||||
@ -56,7 +55,6 @@ export const Controls: FC<ControlsProps> = (props) => {
|
||||
|
||||
const filteredArgTypes = filterArgTypes(argTypes, include, exclude);
|
||||
|
||||
// @ts-expect-error (non-strict)
|
||||
const hasSubcomponents = Boolean(subcomponents) && Object.keys(subcomponents).length > 0;
|
||||
|
||||
if (!hasSubcomponents) {
|
||||
@ -77,7 +75,6 @@ export const Controls: FC<ControlsProps> = (props) => {
|
||||
|
||||
const mainComponentName = getComponentName(component);
|
||||
const subcomponentTabs = Object.fromEntries(
|
||||
// @ts-expect-error (non-strict)
|
||||
Object.entries(subcomponents).map(([key, comp]) => [
|
||||
key,
|
||||
{
|
||||
|
@ -43,7 +43,6 @@ const getDescriptionFromResolvedOf = (resolvedOf: ReturnType<typeof useOf>): str
|
||||
projectAnnotations: { parameters },
|
||||
} = resolvedOf;
|
||||
return (
|
||||
// @ts-expect-error (non-strict)
|
||||
parameters.docs?.extractComponentDescription?.(component, {
|
||||
component,
|
||||
parameters,
|
||||
|
@ -54,7 +54,6 @@ export const DocsContainer: FC<PropsWithChildren<DocsContainerProps>> = ({
|
||||
return (
|
||||
<DocsContext.Provider value={context}>
|
||||
<SourceContainer channel={context.channel}>
|
||||
{/* @ts-expect-error (non-strict) */}
|
||||
<ThemeProvider theme={ensureTheme(theme)}>
|
||||
<DocsPageWrapper
|
||||
toc={toc ? <TableOfContents className="sbdocs sbdocs-toc--custom" {...toc} /> : null}
|
||||
|
@ -125,14 +125,12 @@ export const useSourceProps = (
|
||||
}
|
||||
}
|
||||
|
||||
// @ts-expect-error (non-strict)
|
||||
const sourceParameters = (story?.parameters?.docs?.source || {}) as SourceParameters;
|
||||
const { code } = props; // We will fall back to `sourceParameters.code`, but per story below
|
||||
let format = props.format ?? sourceParameters.format;
|
||||
const language = props.language ?? sourceParameters.language ?? 'jsx';
|
||||
const dark = props.dark ?? sourceParameters.dark ?? false;
|
||||
|
||||
// @ts-expect-error (non-strict)
|
||||
if (!code && !story) {
|
||||
return { error: SourceError.SOURCE_UNAVAILABLE };
|
||||
}
|
||||
@ -144,7 +142,6 @@ export const useSourceProps = (
|
||||
dark,
|
||||
};
|
||||
}
|
||||
// @ts-expect-error (non-strict)
|
||||
const storyContext = docsContext.getStoryContext(story);
|
||||
|
||||
// eslint-disable-next-line no-underscore-dangle
|
||||
@ -152,16 +149,13 @@ export const useSourceProps = (
|
||||
? storyContext.initialArgs
|
||||
: storyContext.unmappedArgs;
|
||||
|
||||
// @ts-expect-error (non-strict)
|
||||
const source = getStorySource(story.id, argsForSource, sourceContext);
|
||||
// @ts-expect-error (non-strict)
|
||||
format = source.format ?? story.parameters.docs?.source?.format ?? false;
|
||||
|
||||
return {
|
||||
code: getSnippet({
|
||||
snippet: source.code,
|
||||
storyContext: { ...storyContext, args: argsForSource },
|
||||
// @ts-expect-error (non-strict)
|
||||
typeFromProps: props.type,
|
||||
transformFromProps: props.transform,
|
||||
}),
|
||||
|
@ -44,7 +44,6 @@ export const SourceContainer: FC<PropsWithChildren<{ channel: DocsContextProps['
|
||||
useEffect(() => {
|
||||
const handleSnippetRendered = (
|
||||
idOrEvent: StoryId | SnippetRenderedEvent,
|
||||
// @ts-expect-error (non-strict)
|
||||
inputSource: string = null,
|
||||
inputFormat: SyntaxHighlighterFormatTypes = false
|
||||
) => {
|
||||
|
@ -90,7 +90,6 @@ export const getStoryProps = <TFramework extends Renderer>(
|
||||
const storyParameters = (docs.story || {}) as StoryParameters & { iframeHeight?: string };
|
||||
|
||||
if (docs.disable) {
|
||||
// @ts-expect-error (non-strict)
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -103,7 +102,6 @@ export const getStoryProps = <TFramework extends Renderer>(
|
||||
const height = props.height ?? storyParameters.height;
|
||||
const autoplay = props.autoplay ?? storyParameters.autoplay ?? false;
|
||||
return {
|
||||
// @ts-expect-error (non-strict)
|
||||
story,
|
||||
inline: true,
|
||||
height,
|
||||
@ -112,14 +110,12 @@ export const getStoryProps = <TFramework extends Renderer>(
|
||||
forceInitialArgs: !!props.__forceInitialArgs,
|
||||
// eslint-disable-next-line no-underscore-dangle
|
||||
primary: !!props.__primary,
|
||||
// @ts-expect-error (non-strict)
|
||||
renderStoryToElement: context.renderStoryToElement,
|
||||
};
|
||||
}
|
||||
|
||||
const height = props.height ?? storyParameters.height ?? storyParameters.iframeHeight ?? '100px';
|
||||
return {
|
||||
// @ts-expect-error (non-strict)
|
||||
story,
|
||||
inline: false,
|
||||
height,
|
||||
|
@ -29,7 +29,6 @@ export const Subtitle: FunctionComponent<SubtitleProps> = (props) => {
|
||||
try {
|
||||
preparedMeta = useOf(of || 'meta', ['meta']).preparedMeta;
|
||||
} catch (error) {
|
||||
// @ts-expect-error (non-strict)
|
||||
if (children && !error.message.includes('did you forget to use <Meta of={} />?')) {
|
||||
// ignore error about unattached CSF since we can still render children
|
||||
throw error;
|
||||
|
@ -36,14 +36,12 @@ export const Title: FunctionComponent<TitleProps> = (props) => {
|
||||
try {
|
||||
preparedMeta = useOf(of || 'meta', ['meta']).preparedMeta;
|
||||
} catch (error) {
|
||||
// @ts-expect-error (non-strict)
|
||||
if (children && !error.message.includes('did you forget to use <Meta of={} />?')) {
|
||||
// ignore error about unattached CSF since we can still render children
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
// @ts-expect-error (non-strict)
|
||||
const content = children || extractTitle(preparedMeta?.title);
|
||||
|
||||
return content ? <PureTitle className="sbdocs-title sb-unstyled">{content}</PureTitle> : null;
|
||||
|
@ -31,6 +31,5 @@ export function ExternalDocs<TRenderer extends Renderer = Renderer>({
|
||||
|
||||
const TDocs = Docs as typeof Docs<TRenderer>;
|
||||
|
||||
// @ts-expect-error (non-strict)
|
||||
return <TDocs docsParameter={docsParameter} context={preview.docsContext()} />;
|
||||
}
|
||||
|
@ -124,7 +124,6 @@ export const AnchorMdx: FC<PropsWithChildren<AnchorMdxProps>> = (props) => {
|
||||
event.preventDefault();
|
||||
// use the A element's href, which has been modified for
|
||||
// local paths without a `?path=` query param prefix
|
||||
// @ts-expect-error (non-strict)
|
||||
navigate(context, event.currentTarget.getAttribute('href'));
|
||||
}
|
||||
}}
|
||||
|
@ -183,12 +183,9 @@ export type SortType = 'alpha' | 'requiredFirst' | 'none';
|
||||
type SortFn = (a: ArgType, b: ArgType) => number;
|
||||
|
||||
const sortFns: Record<SortType, SortFn | null> = {
|
||||
// @ts-expect-error (non-strict)
|
||||
alpha: (a: ArgType, b: ArgType) => a.name.localeCompare(b.name),
|
||||
requiredFirst: (a: ArgType, b: ArgType) =>
|
||||
// @ts-expect-error (non-strict)
|
||||
Number(!!b.type?.required) - Number(!!a.type?.required) || a.name.localeCompare(b.name),
|
||||
// @ts-expect-error (non-strict)
|
||||
none: undefined,
|
||||
};
|
||||
|
||||
@ -271,14 +268,12 @@ const groupRows = (rows: ArgType, sort: SortType) => {
|
||||
};
|
||||
|
||||
const sorted = {
|
||||
// @ts-expect-error (non-strict)
|
||||
ungrouped: sections.ungrouped.sort(sortFn),
|
||||
ungroupedSubsections: sortSubsection(sections.ungroupedSubsections),
|
||||
sections: Object.keys(sections.sections).reduce<Record<string, Section>>(
|
||||
(acc, cur) => ({
|
||||
...acc,
|
||||
[cur]: {
|
||||
// @ts-expect-error (non-strict)
|
||||
ungrouped: sections.sections[cur].ungrouped.sort(sortFn),
|
||||
subsections: sortSubsection(sections.sections[cur].subsections),
|
||||
},
|
||||
@ -301,7 +296,6 @@ const safeIncludeConditionalArg = (row: ArgType, args: Args, globals: Globals) =
|
||||
try {
|
||||
return includeConditionalArg(row, args, globals);
|
||||
} catch (err) {
|
||||
// @ts-expect-error (non-strict)
|
||||
once.warn(err.message);
|
||||
return false;
|
||||
}
|
||||
@ -338,7 +332,6 @@ export const ArgsTable: FC<ArgsTableProps> = (props) => {
|
||||
// This happen when you load the manager and the story is not yet loaded
|
||||
if (isLoading) return <Skeleton />;
|
||||
|
||||
// @ts-expect-error (non-strict)
|
||||
const { rows, args, globals } = 'rows' in props && props;
|
||||
const groups = groupRows(
|
||||
pickBy(
|
||||
|
@ -92,7 +92,6 @@ const StyledSource = styled(Source)(({ theme }) => ({
|
||||
}));
|
||||
|
||||
const PreviewContainer = styled.div<PreviewProps>(
|
||||
// @ts-expect-error (non-strict)
|
||||
({ theme, withSource, isExpanded }) => ({
|
||||
position: 'relative',
|
||||
overflow: 'hidden',
|
||||
@ -122,7 +121,6 @@ const getSource = (
|
||||
switch (true) {
|
||||
case !!(withSource && withSource.error): {
|
||||
return {
|
||||
// @ts-expect-error (non-strict)
|
||||
source: null,
|
||||
actionItem: {
|
||||
title: 'No code available',
|
||||
@ -196,7 +194,6 @@ export const Preview: FC<PreviewProps> = ({
|
||||
...props
|
||||
}) => {
|
||||
const [expanded, setExpanded] = useState(isExpanded);
|
||||
// @ts-expect-error (non-strict)
|
||||
const { source, actionItem } = getSource(withSource, expanded, setExpanded);
|
||||
const [scale, setScale] = useState(1);
|
||||
const previewClasses = [className].concat(['sbdocs', 'sbdocs-preview', 'sb-unstyled']);
|
||||
@ -225,7 +222,6 @@ export const Preview: FC<PreviewProps> = ({
|
||||
|
||||
e.preventDefault();
|
||||
if (additionalActionItems.filter((item) => item.title === 'Copied').length === 0) {
|
||||
// @ts-expect-error (non-strict)
|
||||
copyToClipboard(source.props.code).then(() => {
|
||||
setAdditionalActionItems([
|
||||
...additionalActionItems,
|
||||
|
@ -114,7 +114,6 @@ const Source: FunctionComponent<SourceProps> = ({
|
||||
bordered
|
||||
copyable
|
||||
format={format}
|
||||
// @ts-expect-error (non-strict)
|
||||
language={language}
|
||||
className="docblock-source sb-unstyled"
|
||||
{...rest}
|
||||
|
@ -80,7 +80,6 @@ const InlineStory: FunctionComponent<InlineStoryProps> = (props) => {
|
||||
)} { min-height: ${height}; transform: translateZ(0); overflow: auto }`}</style>
|
||||
) : null}
|
||||
{showLoader && <StorySkeleton />}
|
||||
{/* @ts-expect-error (Type 'undefined' is not assignable to type 'HTMLDivElement | null') */}
|
||||
<div ref={storyRef} id={`${storyBlockIdFromId(props)}-inner`} data-name={story.name} />
|
||||
</>
|
||||
);
|
||||
|
@ -231,7 +231,6 @@ const useColorInput = (
|
||||
}, [initialValue]);
|
||||
|
||||
const realValue = useMemo(
|
||||
// @ts-expect-error (non-strict)
|
||||
() => getRealValue(value, color, colorSpace).toLowerCase(),
|
||||
[value, color, colorSpace]
|
||||
);
|
||||
@ -245,7 +244,6 @@ const useColorInput = (
|
||||
|
||||
if (v === '') {
|
||||
setColor(undefined);
|
||||
// @ts-expect-error (non-strict)
|
||||
onChange(undefined);
|
||||
}
|
||||
|
||||
@ -299,7 +297,6 @@ const usePresets = (
|
||||
const addPreset: (color: ParsedColor) => void = useCallback(
|
||||
(color) => {
|
||||
if (!color?.valid) return;
|
||||
// @ts-expect-error (non-strict)
|
||||
if (presets.some((preset) => id(preset[colorSpace]) === id(color[colorSpace]))) return;
|
||||
setSelectedColors((arr) => arr.concat(color));
|
||||
},
|
||||
@ -325,7 +322,6 @@ export const ColorControl: FC<ColorControlProps> = ({
|
||||
initialValue,
|
||||
debouncedOnChange
|
||||
);
|
||||
// @ts-expect-error (non-strict)
|
||||
const { presets, addPreset } = usePresets(presetColors, color, colorSpace);
|
||||
const Picker = ColorPicker[colorSpace];
|
||||
|
||||
@ -335,10 +331,8 @@ export const ColorControl: FC<ColorControlProps> = ({
|
||||
<Wrapper aria-readonly={readonly}>
|
||||
<PickerTooltip
|
||||
startOpen={startOpen}
|
||||
// @ts-expect-error (non-strict)
|
||||
trigger={readonly ? [null] : undefined}
|
||||
closeOnOutsideClick
|
||||
// @ts-expect-error (non-strict)
|
||||
onVisibleChange={() => addPreset(color)}
|
||||
tooltip={
|
||||
<TooltipContent>
|
||||
@ -350,19 +344,13 @@ export const ColorControl: FC<ColorControlProps> = ({
|
||||
<Swatches>
|
||||
{presets.map((preset, index: number) => (
|
||||
<WithTooltip
|
||||
// @ts-expect-error (non-strict)
|
||||
|
||||
key={`${preset.value}-${index}`}
|
||||
hasChrome={false}
|
||||
// @ts-expect-error (non-strict)
|
||||
tooltip={<Note note={preset.keyword || preset.value} />}
|
||||
>
|
||||
<Swatch
|
||||
// @ts-expect-error (non-strict)
|
||||
value={preset[colorSpace]}
|
||||
// @ts-expect-error (non-strict)
|
||||
active={color && id(preset[colorSpace]) === id(color[colorSpace])}
|
||||
// @ts-expect-error (non-strict)
|
||||
onClick={() => updateValue(preset.value)}
|
||||
/>
|
||||
</WithTooltip>
|
||||
|
@ -85,7 +85,6 @@ export const DateControl: FC<DateProps> = ({ name, value, onChange, onFocus, onB
|
||||
const onDateChange = (e: ChangeEvent<HTMLInputElement>) => {
|
||||
if (!e.target.value) return onChange();
|
||||
const parsed = parseDate(e.target.value);
|
||||
// @ts-expect-error (non-strict)
|
||||
const result = new Date(value);
|
||||
result.setFullYear(parsed.getFullYear(), parsed.getMonth(), parsed.getDate());
|
||||
const time = result.getTime();
|
||||
@ -96,7 +95,6 @@ export const DateControl: FC<DateProps> = ({ name, value, onChange, onFocus, onB
|
||||
const onTimeChange = (e: ChangeEvent<HTMLInputElement>) => {
|
||||
if (!e.target.value) return onChange();
|
||||
const parsed = parseTime(e.target.value);
|
||||
// @ts-expect-error (non-strict)
|
||||
const result = new Date(value);
|
||||
result.setHours(parsed.getHours());
|
||||
result.setMinutes(parsed.getMinutes());
|
||||
|
@ -49,14 +49,12 @@ export const FilesControl: FC<FilesControlProps> = ({
|
||||
}
|
||||
const fileUrls = Array.from(e.target.files).map((file) => URL.createObjectURL(file));
|
||||
onChange(fileUrls);
|
||||
// @ts-expect-error (non-strict)
|
||||
revokeOldUrls(value);
|
||||
}
|
||||
|
||||
// Added useEffect hook to reset the file value when value is null
|
||||
useEffect(() => {
|
||||
if (value == null && inputElement.current) {
|
||||
// @ts-expect-error (non-strict)
|
||||
inputElement.current.value = null;
|
||||
}
|
||||
}, [value, name]);
|
||||
|
@ -36,7 +36,6 @@ export const NumberControl: FC<NumberProps> = ({
|
||||
}) => {
|
||||
const [inputValue, setInputValue] = useState(typeof value === 'number' ? value : '');
|
||||
const [forceVisible, setForceVisible] = useState(false);
|
||||
// @ts-expect-error (non-strict)
|
||||
const [parseError, setParseError] = useState<Error>(null);
|
||||
const readonly = !!argType?.table?.readonly;
|
||||
|
||||
@ -49,7 +48,6 @@ export const NumberControl: FC<NumberProps> = ({
|
||||
setParseError(new Error(`'${event.target.value}' is not a number`));
|
||||
} else {
|
||||
onChange(result);
|
||||
// @ts-expect-error (non-strict)
|
||||
setParseError(null);
|
||||
}
|
||||
},
|
||||
@ -65,7 +63,6 @@ export const NumberControl: FC<NumberProps> = ({
|
||||
const htmlElRef = useRef(null);
|
||||
useEffect(() => {
|
||||
if (forceVisible && htmlElRef.current) {
|
||||
// @ts-expect-error (non-strict)
|
||||
htmlElRef.current.select();
|
||||
}
|
||||
}, [forceVisible]);
|
||||
@ -73,7 +70,6 @@ export const NumberControl: FC<NumberProps> = ({
|
||||
useEffect(() => {
|
||||
const newInputValue = typeof value === 'number' ? value : '';
|
||||
if (inputValue !== newInputValue) {
|
||||
// @ts-expect-error (non-strict)
|
||||
setInputValue(value);
|
||||
}
|
||||
}, [value]);
|
||||
@ -102,7 +98,6 @@ export const NumberControl: FC<NumberProps> = ({
|
||||
size="flex"
|
||||
placeholder="Edit number..."
|
||||
value={inputValue}
|
||||
// @ts-expect-error (non-strict)
|
||||
valid={parseError ? 'error' : null}
|
||||
autoFocus={forceVisible}
|
||||
readOnly={readonly}
|
||||
|
@ -250,7 +250,6 @@ export const ObjectControl: FC<ObjectProps> = ({ name, value, onChange, argType
|
||||
const hasData = data !== null && data !== undefined;
|
||||
const [showRaw, setShowRaw] = useState(!hasData);
|
||||
|
||||
// @ts-expect-error (non-strict)
|
||||
const [parseError, setParseError] = useState<Error>(null);
|
||||
const readonly = !!argType?.table?.readonly;
|
||||
const updateRaw: (raw: string) => void = useCallback(
|
||||
@ -259,10 +258,8 @@ export const ObjectControl: FC<ObjectProps> = ({ name, value, onChange, argType
|
||||
if (raw) {
|
||||
onChange(JSON.parse(raw));
|
||||
}
|
||||
// @ts-expect-error (non-strict)
|
||||
setParseError(undefined);
|
||||
} catch (e) {
|
||||
// @ts-expect-error (non-strict)
|
||||
setParseError(e);
|
||||
}
|
||||
},
|
||||
@ -278,7 +275,6 @@ export const ObjectControl: FC<ObjectProps> = ({ name, value, onChange, argType
|
||||
const htmlElRef = useRef(null);
|
||||
useEffect(() => {
|
||||
if (forceVisible && htmlElRef.current) {
|
||||
// @ts-expect-error (non-strict)
|
||||
htmlElRef.current.select();
|
||||
}
|
||||
}, [forceVisible]);
|
||||
@ -300,7 +296,6 @@ export const ObjectControl: FC<ObjectProps> = ({ name, value, onChange, argType
|
||||
onBlur={(event: FocusEvent<HTMLTextAreaElement>) => updateRaw(event.target.value)}
|
||||
placeholder="Edit JSON string..."
|
||||
autoFocus={forceVisible}
|
||||
// @ts-expect-error (non-strict)
|
||||
valid={parseError ? 'error' : null}
|
||||
readOnly={readonly}
|
||||
/>
|
||||
|
@ -219,7 +219,6 @@ export const RangeControl: FC<RangeProps> = ({
|
||||
return (
|
||||
<RangeWrapper aria-readonly={readonly}>
|
||||
<RangeLabel>{min}</RangeLabel>
|
||||
{/* @ts-expect-error (non-strict) */}
|
||||
<RangeInput
|
||||
id={getControlId(name)}
|
||||
type="range"
|
||||
@ -228,7 +227,6 @@ export const RangeControl: FC<RangeProps> = ({
|
||||
{...{ name, value, min, max, step, onFocus, onBlur }}
|
||||
/>
|
||||
<RangeCurrentAndMaxLabel numberOFDecimalsPlaces={numberOFDecimalsPlaces} max={max}>
|
||||
{/* @ts-expect-error (non-strict) */}
|
||||
{hasValue ? value.toFixed(numberOFDecimalsPlaces) : '--'} / {max}
|
||||
</RangeCurrentAndMaxLabel>
|
||||
</RangeWrapper>
|
||||
|
@ -66,7 +66,6 @@ export const TextControl: FC<TextProps> = ({
|
||||
size="flex"
|
||||
placeholder="Edit string..."
|
||||
autoFocus={forceVisible}
|
||||
// @ts-expect-error (non-strict)
|
||||
valid={isValid ? null : 'error'}
|
||||
{...{ name, value: isValid ? value : '', onFocus, onBlur }}
|
||||
/>
|
||||
|
@ -1,12 +1,12 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"module": "esnext",
|
||||
"rootDir": "./src",
|
||||
"baseUrl": ".",
|
||||
"module": "esnext",
|
||||
"paths": {
|
||||
"storybook/internal/*": ["../../lib/cli/core/*"]
|
||||
}
|
||||
},
|
||||
"strict": false
|
||||
},
|
||||
"extends": "../../tsconfig.json",
|
||||
"include": ["src/**/*"]
|
||||
}
|
||||
|
@ -2,6 +2,7 @@
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"strict": false,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"storybook/internal/*": ["../../lib/cli/core/*"]
|
||||
|
@ -203,7 +203,6 @@
|
||||
"storybook": "workspace:^",
|
||||
"svelte": "^5.0.0-next.65",
|
||||
"ts-dedent": "^2.0.0",
|
||||
"ts-plugin-sort-import-suggestions": "^1.0.4",
|
||||
"typescript": "^5.4.3",
|
||||
"util": "^0.12.4",
|
||||
"vite": "^4.0.0",
|
||||
|
@ -1,5 +1,7 @@
|
||||
import React from 'react';
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||
// @ts-ignore (js import not supported in TS)
|
||||
import { imported } from '../imported';
|
||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||
// @ts-ignore (css import not supported in TS)
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
// "allowJs": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"storybook/internal/*": ["../../lib/cli/core/*"]
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { TypeSystem } from 'storybook/internal/docs-tools';
|
||||
import type { VueDocgenInfo } from 'frameworks/vue3-vite/src';
|
||||
import type { VueDocgenInfo } from '../../../../../frameworks/vue3-vite/src';
|
||||
|
||||
type TestComponent = { __docgenInfo: VueDocgenInfo<'vue-component-meta'> };
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"resolveJsonModule": true,
|
||||
"paths": {
|
||||
"storybook/internal/*": ["../../lib/cli/core/*"]
|
||||
}
|
||||
|
@ -6557,7 +6557,6 @@ __metadata:
|
||||
storybook: "workspace:^"
|
||||
svelte: "npm:^5.0.0-next.65"
|
||||
ts-dedent: "npm:^2.0.0"
|
||||
ts-plugin-sort-import-suggestions: "npm:^1.0.4"
|
||||
typescript: "npm:^5.4.3"
|
||||
util: "npm:^0.12.4"
|
||||
vite: "npm:^4.0.0"
|
||||
@ -26720,13 +26719,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"ts-plugin-sort-import-suggestions@npm:^1.0.4":
|
||||
version: 1.0.4
|
||||
resolution: "ts-plugin-sort-import-suggestions@npm:1.0.4"
|
||||
checksum: 10c0/1817bdba9861b934af6aeb9403703047041e1944aadf91fde2dfc4ddcc3913bc48570eead52defb34622de94b68488b47e79492da304a6ca604c9a097b2dbe2d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"ts-pnp@npm:^1.1.6":
|
||||
version: 1.2.0
|
||||
resolution: "ts-pnp@npm:1.2.0"
|
||||
|
@ -473,8 +473,8 @@ async function run() {
|
||||
if (controller) controllers.push(controller);
|
||||
} catch (err) {
|
||||
invariant(err instanceof Error);
|
||||
logger.error(`Error running task ${getTaskKey(task)}:`);
|
||||
logger.error(JSON.stringify(err, null, 2));
|
||||
// logger.error(`Error running task ${getTaskKey(task)}:`);
|
||||
// logger.error(JSON.stringify(err, null, 2));
|
||||
|
||||
if (process.env.CI) {
|
||||
logger.error(
|
||||
@ -500,7 +500,8 @@ async function run() {
|
||||
controller.abort();
|
||||
});
|
||||
|
||||
throw err;
|
||||
process.exit(1);
|
||||
// throw err;
|
||||
}
|
||||
statuses.set(task, task.service ? 'serving' : 'complete');
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user