@repobuddy/storybook 0.9.0 → 0.9.2

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.
@@ -23,10 +23,12 @@ export declare const editorBadge: {
23
23
  badge: {
24
24
  text: string;
25
25
  bgColor: string;
26
+ borderColor: string;
26
27
  tooltip: string;
27
28
  };
28
29
  display: {
29
30
  sidebar: string[];
31
+ toolbar: string[];
30
32
  };
31
33
  };
32
34
  export declare const newBadge: {
@@ -34,6 +36,7 @@ export declare const newBadge: {
34
36
  badge: {
35
37
  text: string;
36
38
  bgColor: string;
39
+ borderColor: string;
37
40
  tooltip: string;
38
41
  };
39
42
  };
@@ -51,6 +54,7 @@ export declare const deprecatedBadge: {
51
54
  badge: {
52
55
  text: string;
53
56
  bgColor: string;
57
+ borderColor: string;
54
58
  tooltip: string;
55
59
  };
56
60
  };
@@ -59,6 +63,7 @@ export declare const outdatedBadge: {
59
63
  badge: {
60
64
  text: string;
61
65
  bgColor: string;
66
+ borderColor: string;
62
67
  tooltip: string;
63
68
  };
64
69
  };
@@ -67,6 +72,7 @@ export declare const dangerBadge: {
67
72
  badge: {
68
73
  text: string;
69
74
  bgColor: string;
75
+ borderColor: string;
70
76
  tooltip: string;
71
77
  };
72
78
  };
@@ -75,6 +81,7 @@ export declare const todoBadge: {
75
81
  badge: {
76
82
  text: string;
77
83
  bgColor: string;
84
+ borderColor: string;
78
85
  tooltip: string;
79
86
  };
80
87
  };
@@ -83,6 +90,7 @@ export declare const codeOnlyBadge: {
83
90
  badge: {
84
91
  text: string;
85
92
  bgColor: string;
93
+ borderColor: string;
86
94
  tooltip: string;
87
95
  };
88
96
  };
@@ -91,14 +99,20 @@ export declare const snapshotBadge: {
91
99
  badge: {
92
100
  text: string;
93
101
  bgColor: string;
102
+ borderColor: string;
94
103
  tooltip: string;
95
104
  };
105
+ display: {
106
+ sidebar: string[];
107
+ toolbar: string[];
108
+ };
96
109
  };
97
110
  export declare const unitBadge: {
98
111
  tags: string;
99
112
  badge: {
100
113
  text: string;
101
114
  bgColor: string;
115
+ borderColor: string;
102
116
  tooltip: string;
103
117
  };
104
118
  };
@@ -107,6 +121,7 @@ export declare const integrationBadge: {
107
121
  badge: {
108
122
  text: string;
109
123
  bgColor: string;
124
+ borderColor: string;
110
125
  tooltip: string;
111
126
  };
112
127
  };
@@ -24,10 +24,12 @@ export const editorBadge = {
24
24
  badge: {
25
25
  text: '✏️',
26
26
  bgColor: 'transparent',
27
+ borderColor: 'transparent',
27
28
  tooltip: 'Editor'
28
29
  },
29
30
  display: {
30
- sidebar: ['story']
31
+ sidebar: ['group', 'component', 'story'],
32
+ toolbar: ['group', 'component', 'story']
31
33
  }
32
34
  };
33
35
  export const newBadge = {
@@ -35,6 +37,7 @@ export const newBadge = {
35
37
  badge: {
36
38
  text: '🆕',
37
39
  bgColor: 'transparent',
40
+ borderColor: 'transparent',
38
41
  tooltip: 'New'
39
42
  }
40
43
  };
@@ -42,8 +45,8 @@ export const betaBadge = {
42
45
  tags: 'beta',
43
46
  badge: {
44
47
  text: '🅱️',
45
- bgColor: '#E3F2FD',
46
- borderColor: '#90CAF9',
48
+ bgColor: 'transparent',
49
+ borderColor: 'transparent',
47
50
  tooltip: 'Beta'
48
51
  }
49
52
  };
@@ -52,6 +55,7 @@ export const deprecatedBadge = {
52
55
  badge: {
53
56
  text: '🪦',
54
57
  bgColor: 'transparent',
58
+ borderColor: 'transparent',
55
59
  tooltip: 'Deprecated'
56
60
  }
57
61
  };
@@ -60,6 +64,7 @@ export const outdatedBadge = {
60
64
  badge: {
61
65
  text: '⚠️',
62
66
  bgColor: 'transparent',
67
+ borderColor: 'transparent',
63
68
  tooltip: 'Outdated'
64
69
  }
65
70
  };
@@ -68,6 +73,7 @@ export const dangerBadge = {
68
73
  badge: {
69
74
  text: '🚨',
70
75
  bgColor: 'transparent',
76
+ borderColor: 'transparent',
71
77
  tooltip: 'Dangerous'
72
78
  }
73
79
  };
@@ -76,6 +82,7 @@ export const todoBadge = {
76
82
  badge: {
77
83
  text: '📋',
78
84
  bgColor: 'transparent',
85
+ borderColor: 'transparent',
79
86
  tooltip: 'Todo'
80
87
  }
81
88
  };
@@ -84,6 +91,7 @@ export const codeOnlyBadge = {
84
91
  badge: {
85
92
  text: '📝',
86
93
  bgColor: 'transparent',
94
+ borderColor: 'transparent',
87
95
  tooltip: 'Code Only'
88
96
  }
89
97
  };
@@ -92,7 +100,12 @@ export const snapshotBadge = {
92
100
  badge: {
93
101
  text: '📸',
94
102
  bgColor: 'transparent',
103
+ borderColor: 'transparent',
95
104
  tooltip: 'Snapshot Test'
105
+ },
106
+ display: {
107
+ sidebar: ['story'],
108
+ toolbar: ['story']
96
109
  }
97
110
  };
98
111
  export const unitBadge = {
@@ -100,6 +113,7 @@ export const unitBadge = {
100
113
  badge: {
101
114
  text: '🧪',
102
115
  bgColor: 'transparent',
116
+ borderColor: 'transparent',
103
117
  tooltip: 'Unit Test'
104
118
  }
105
119
  };
@@ -108,6 +122,7 @@ export const integrationBadge = {
108
122
  badge: {
109
123
  text: '🔗',
110
124
  bgColor: 'transparent',
125
+ borderColor: 'transparent',
111
126
  tooltip: 'Integration Test'
112
127
  }
113
128
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@repobuddy/storybook",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "Storybook repo buddy",
5
5
  "keywords": [
6
6
  "storybook",
@@ -26,10 +26,12 @@ export const editorBadge = {
26
26
  badge: {
27
27
  text: '✏️',
28
28
  bgColor: 'transparent',
29
+ borderColor: 'transparent',
29
30
  tooltip: 'Editor'
30
31
  },
31
32
  display: {
32
- sidebar: ['story']
33
+ sidebar: ['group', 'component', 'story'],
34
+ toolbar: ['group', 'component', 'story']
33
35
  }
34
36
  }
35
37
 
@@ -38,6 +40,7 @@ export const newBadge = {
38
40
  badge: {
39
41
  text: '🆕',
40
42
  bgColor: 'transparent',
43
+ borderColor: 'transparent',
41
44
  tooltip: 'New'
42
45
  }
43
46
  }
@@ -46,8 +49,8 @@ export const betaBadge = {
46
49
  tags: 'beta',
47
50
  badge: {
48
51
  text: '🅱️',
49
- bgColor: '#E3F2FD',
50
- borderColor: '#90CAF9',
52
+ bgColor: 'transparent',
53
+ borderColor: 'transparent',
51
54
  tooltip: 'Beta'
52
55
  }
53
56
  }
@@ -57,6 +60,7 @@ export const deprecatedBadge = {
57
60
  badge: {
58
61
  text: '🪦',
59
62
  bgColor: 'transparent',
63
+ borderColor: 'transparent',
60
64
  tooltip: 'Deprecated'
61
65
  }
62
66
  }
@@ -66,6 +70,7 @@ export const outdatedBadge = {
66
70
  badge: {
67
71
  text: '⚠️',
68
72
  bgColor: 'transparent',
73
+ borderColor: 'transparent',
69
74
  tooltip: 'Outdated'
70
75
  }
71
76
  }
@@ -75,6 +80,7 @@ export const dangerBadge = {
75
80
  badge: {
76
81
  text: '🚨',
77
82
  bgColor: 'transparent',
83
+ borderColor: 'transparent',
78
84
  tooltip: 'Dangerous'
79
85
  }
80
86
  }
@@ -84,6 +90,7 @@ export const todoBadge = {
84
90
  badge: {
85
91
  text: '📋',
86
92
  bgColor: 'transparent',
93
+ borderColor: 'transparent',
87
94
  tooltip: 'Todo'
88
95
  }
89
96
  }
@@ -93,6 +100,7 @@ export const codeOnlyBadge = {
93
100
  badge: {
94
101
  text: '📝',
95
102
  bgColor: 'transparent',
103
+ borderColor: 'transparent',
96
104
  tooltip: 'Code Only'
97
105
  }
98
106
  }
@@ -102,7 +110,12 @@ export const snapshotBadge = {
102
110
  badge: {
103
111
  text: '📸',
104
112
  bgColor: 'transparent',
113
+ borderColor: 'transparent',
105
114
  tooltip: 'Snapshot Test'
115
+ },
116
+ display: {
117
+ sidebar: ['story'],
118
+ toolbar: ['story']
106
119
  }
107
120
  }
108
121
 
@@ -111,6 +124,7 @@ export const unitBadge = {
111
124
  badge: {
112
125
  text: '🧪',
113
126
  bgColor: 'transparent',
127
+ borderColor: 'transparent',
114
128
  tooltip: 'Unit Test'
115
129
  }
116
130
  }
@@ -120,6 +134,7 @@ export const integrationBadge = {
120
134
  badge: {
121
135
  text: '🔗',
122
136
  bgColor: 'transparent',
137
+ borderColor: 'transparent',
123
138
  tooltip: 'Integration Test'
124
139
  }
125
140
  }