@repobuddy/storybook 0.9.0 → 0.9.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.
|
@@ -27,6 +27,7 @@ export declare const editorBadge: {
|
|
|
27
27
|
};
|
|
28
28
|
display: {
|
|
29
29
|
sidebar: string[];
|
|
30
|
+
toolbar: string[];
|
|
30
31
|
};
|
|
31
32
|
};
|
|
32
33
|
export declare const newBadge: {
|
|
@@ -93,6 +94,10 @@ export declare const snapshotBadge: {
|
|
|
93
94
|
bgColor: string;
|
|
94
95
|
tooltip: string;
|
|
95
96
|
};
|
|
97
|
+
display: {
|
|
98
|
+
sidebar: string[];
|
|
99
|
+
toolbar: string[];
|
|
100
|
+
};
|
|
96
101
|
};
|
|
97
102
|
export declare const unitBadge: {
|
|
98
103
|
tags: string;
|
|
@@ -27,7 +27,8 @@ export const editorBadge = {
|
|
|
27
27
|
tooltip: 'Editor'
|
|
28
28
|
},
|
|
29
29
|
display: {
|
|
30
|
-
sidebar: ['story']
|
|
30
|
+
sidebar: ['group', 'component', 'story'],
|
|
31
|
+
toolbar: ['group', 'component', 'story']
|
|
31
32
|
}
|
|
32
33
|
};
|
|
33
34
|
export const newBadge = {
|
|
@@ -93,6 +94,10 @@ export const snapshotBadge = {
|
|
|
93
94
|
text: '📸',
|
|
94
95
|
bgColor: 'transparent',
|
|
95
96
|
tooltip: 'Snapshot Test'
|
|
97
|
+
},
|
|
98
|
+
display: {
|
|
99
|
+
sidebar: ['story'],
|
|
100
|
+
toolbar: ['story']
|
|
96
101
|
}
|
|
97
102
|
};
|
|
98
103
|
export const unitBadge = {
|
package/package.json
CHANGED
|
@@ -29,7 +29,8 @@ export const editorBadge = {
|
|
|
29
29
|
tooltip: 'Editor'
|
|
30
30
|
},
|
|
31
31
|
display: {
|
|
32
|
-
sidebar: ['story']
|
|
32
|
+
sidebar: ['group', 'component', 'story'],
|
|
33
|
+
toolbar: ['group', 'component', 'story']
|
|
33
34
|
}
|
|
34
35
|
}
|
|
35
36
|
|
|
@@ -103,6 +104,10 @@ export const snapshotBadge = {
|
|
|
103
104
|
text: '📸',
|
|
104
105
|
bgColor: 'transparent',
|
|
105
106
|
tooltip: 'Snapshot Test'
|
|
107
|
+
},
|
|
108
|
+
display: {
|
|
109
|
+
sidebar: ['story'],
|
|
110
|
+
toolbar: ['story']
|
|
106
111
|
}
|
|
107
112
|
}
|
|
108
113
|
|