@storybook/csf 0.1.4--canary.82.eb42c88.0 → 0.1.4--canary.82.1657476.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -80,7 +80,7 @@ interface ControlBase {
|
|
80
80
|
type?: ControlType;
|
81
81
|
disable?: boolean;
|
82
82
|
}
|
83
|
-
type Control = ControlType | false | (ControlBase & (
|
83
|
+
type Control = ControlType | false | (ControlBase & (ControlBase | {
|
84
84
|
type: 'color';
|
85
85
|
/**
|
86
86
|
* @see https://storybook.js.org/docs/api/arg-types#controlpresetcolors
|
@@ -148,6 +148,7 @@ interface InputType {
|
|
148
148
|
* @see https://storybook.js.org/docs/api/arg-types#table
|
149
149
|
*/
|
150
150
|
table?: {
|
151
|
+
[key: string]: unknown;
|
151
152
|
/**
|
152
153
|
* @see https://storybook.js.org/docs/api/arg-types#tablecategory
|
153
154
|
*/
|