@repobuddy/storybook 0.9.1 → 0.9.3

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