@storybook/blocks 7.3.2 → 7.4.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -5
- package/dist/index.mjs +4 -5
- package/package.json +14 -13
- package/src/blocks/internal/README.md +0 -8
- package/src/typings.d.ts +0 -7
package/dist/index.d.ts
CHANGED
|
@@ -95,7 +95,7 @@ interface ArgsTableErrorProps {
|
|
|
95
95
|
error: ArgsTableError;
|
|
96
96
|
}
|
|
97
97
|
interface ArgsTableLoadingProps {
|
|
98
|
-
isLoading:
|
|
98
|
+
isLoading: boolean;
|
|
99
99
|
}
|
|
100
100
|
type ArgsTableProps$1 = ArgsTableOptionProps & (ArgsTableDataProps | ArgsTableErrorProps | ArgsTableLoadingProps);
|
|
101
101
|
/**
|