Skip to content

Commit 3308383

Browse files
author
Daniel Vianna
committed
clean up removed docs tab
1 parent c76698f commit 3308383

File tree

8 files changed

+12
-17
lines changed

8 files changed

+12
-17
lines changed

.storybook/preview.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ export const parameters = {
22
actions: { argTypesRegex: "^on[A-Z].*" },
33
layout: 'centered',
44
previewTabs: {
5-
'storybook/docs/panel': { index: -1 },
5+
'storybook/docs/panel': {
6+
hidden: true
7+
}
68
},
79
controls: {
810
matchers: {

components/.DS_Store

0 Bytes
Binary file not shown.

components/introduction/button/Button.stories.tsx components/Button/Button.stories.tsx

-7
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,6 @@ export default {
1818
url:
1919
'https://www.figma.com/file/Klm6pxIZSaJFiOMX5FpTul9F/storybook-addon-designs-sample',
2020
},
21-
backgrounds: {
22-
values: [
23-
{ name: 'red', value: '#f00' },
24-
{ name: 'green', value: '#0f0' },
25-
{ name: 'blue', value: '#00f' },
26-
],
27-
},
2821
},
2922
} as ComponentMeta<typeof Button>;
3023

File renamed without changes.
File renamed without changes.

components/Test/Test.stories.mdx

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Meta title="Test" />
2+
3+
4+
# UX Framework
5+
6+
Test
7+

components/introduction/Introduction.stories.mdx

-7
This file was deleted.

tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"noImplicitAny": true,
34
"target": "es5",
45
"outDir": "lib",
56
"lib": [
@@ -21,10 +22,9 @@
2122
"isolatedModules": true,
2223
"noEmit": true,
2324
"jsx": "react",
24-
"rootDir": "./src",
2525
},
2626
"include": [
27-
"./src/"
27+
"src/"
2828
],
2929
"exclude": [
3030
"node_modules",

0 commit comments

Comments
 (0)