-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from Duri-Salon/feat/storybook-ci/cd(DURI-315)
[feat] storybook ci/cd
- Loading branch information
Showing
16 changed files
with
223 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,7 @@ | ||
import { addons } from '@storybook/manager-api'; | ||
import { addons } from '@storybook/addons'; | ||
|
||
import theme from './theme'; | ||
|
||
addons.setConfig({ | ||
navSize: 300, | ||
bottomPanelHeight: 300, | ||
rightPanelWidth: 300, | ||
panelPosition: 'bottom', | ||
enableShortcuts: true, | ||
showToolbar: true, | ||
theme: undefined, | ||
selectedPanel: undefined, | ||
initialActive: 'sidebar', | ||
sidebar: { | ||
showRoots: false, | ||
collapsedRoots: ['other'], | ||
}, | ||
toolbar: { | ||
title: { hidden: false }, | ||
zoom: { hidden: false }, | ||
eject: { hidden: false }, | ||
copy: { hidden: false }, | ||
fullscreen: { hidden: false }, | ||
}, | ||
theme, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
<link | ||
rel="stylesheet" | ||
as="style" | ||
crossorigin="anonymous" | ||
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard-dynamic-subset.css" | ||
/> | ||
rel="stylesheet" | ||
as="style" | ||
crossorigin="anonymous" | ||
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard-dynamic-subset.css" | ||
/> | ||
|
||
<link | ||
rel="shortcut icon" | ||
type="image/svg+xml" | ||
href="../packages/ui/src/assets/svgs/Doori.svg" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { create } from '@storybook/theming/create'; | ||
import logo from '../packages/ui/src/assets/svgs/Doori.svg'; | ||
|
||
export default create({ | ||
base: 'light', | ||
colorPrimary: '#BBD029', | ||
colorSecondary: '#BBD029', | ||
|
||
// UI | ||
appBg: 'white', | ||
appContentBg: 'white', | ||
appBorderColor: '#CAC9CF', | ||
appBorderRadius: 4, | ||
|
||
// Typography | ||
fontBase: 'Pretendard, sans-serif', | ||
fontCode: 'monospace', | ||
|
||
// Text colors | ||
textColor: 'black', | ||
textInverseColor: 'white', | ||
|
||
// Toolbar default and active colors | ||
barTextColor: '#343434', | ||
barSelectedColor: '#BBD029', | ||
barBg: 'white', | ||
|
||
// Form colors | ||
inputBg: 'white', | ||
inputBorder: '#F4F4F6', | ||
inputTextColor: 'black', | ||
inputBorderRadius: 4, | ||
|
||
brandTitle: '두리묭실', | ||
brandUrl: "here's the brandurl", | ||
brandImage: logo, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { Navbar } from './Navbar'; | ||
export { DuriNavbar } from './DuriNavbar'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.