@repobuddy/storybook 0.14.0 → 0.15.0

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.
@@ -31,6 +31,7 @@ export declare const codeOnlyBadge: TagBadgeParameter;
31
31
  export declare const snapshotBadge: TagBadgeParameter;
32
32
  export declare const unitBadge: TagBadgeParameter;
33
33
  export declare const integrationBadge: TagBadgeParameter;
34
+ export declare const keyboardBadge: TagBadgeParameter;
34
35
  export declare const internalBadge: TagBadgeParameter;
35
36
  export declare const tagBadges: TagBadgeParameters;
36
37
  export {};
@@ -141,6 +141,15 @@ export const integrationBadge = {
141
141
  sidebar: false
142
142
  }
143
143
  };
144
+ export const keyboardBadge = {
145
+ tags: 'keyboard',
146
+ badge: {
147
+ text: '⌨️',
148
+ bgColor: 'transparent',
149
+ borderColor: 'transparent',
150
+ tooltip: 'Keyboard Interaction'
151
+ }
152
+ };
144
153
  export const internalBadge = {
145
154
  tags: 'internal',
146
155
  badge: {
@@ -154,6 +163,7 @@ export const tagBadges = [
154
163
  editorBadge,
155
164
  unitBadge,
156
165
  integrationBadge,
166
+ keyboardBadge,
157
167
  newBadge,
158
168
  betaBadge,
159
169
  deprecatedBadge,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@repobuddy/storybook",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "Storybook repo buddy",
5
5
  "keywords": [
6
6
  "storybook",
@@ -157,6 +157,16 @@ export const integrationBadge: TagBadgeParameter = {
157
157
  }
158
158
  }
159
159
 
160
+ export const keyboardBadge: TagBadgeParameter = {
161
+ tags: 'keyboard',
162
+ badge: {
163
+ text: '⌨️',
164
+ bgColor: 'transparent',
165
+ borderColor: 'transparent',
166
+ tooltip: 'Keyboard Interaction'
167
+ }
168
+ }
169
+
160
170
  export const internalBadge: TagBadgeParameter = {
161
171
  tags: 'internal',
162
172
  badge: {
@@ -171,6 +181,7 @@ export const tagBadges: TagBadgeParameters = [
171
181
  editorBadge,
172
182
  unitBadge,
173
183
  integrationBadge,
184
+ keyboardBadge,
174
185
  newBadge,
175
186
  betaBadge,
176
187
  deprecatedBadge,