Skip to content

Commit

Permalink
chore: 0.4.8 버전 배포 잘못된 default image 수정하여 재배포
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 committed Mar 15, 2024
1 parent 6464949 commit e88dc2b
Show file tree
Hide file tree
Showing 12 changed files with 338 additions and 750 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "concept-be-design-system",
"description": "컨셉비 디자인 시스템",
"version": "0.4.7",
"version": "0.4.8",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down
Binary file added src/assets/image/default_login_profile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file removed src/assets/image/default_profile_icon.png
Binary file not shown.
Binary file added src/assets/image/default_profile_info.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 0 additions & 4 deletions src/assets/svg/login/default_image.svg

This file was deleted.

5 changes: 0 additions & 5 deletions src/assets/svg/login/default_profile.svg

This file was deleted.

12 changes: 6 additions & 6 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import PNGAgreementBackground from './assets/image/agreement_bg.png';
import PNGBottomBackground from './assets/image/bottom_bg.png';
import PNGDefaultProfileIcon from './assets/image/default_profile_icon.png';
import PNGDefaultProfileImage from './assets/image/default_profile_image.png';
import PNGDefaultProfileInfo100 from './assets/image/default_login_profile.png';
import PNGDefaultProfileBackground from './assets/image/default_profile_background.png';
import PNGDefaultProfileInfo36 from './assets/image/default_profile_info.png';
import PNGErrorBackground from './assets/image/error_back.png';
import PNGIdeaBackground1 from './assets/image/idea_back_1.png';
import PNGIdeaBackground2 from './assets/image/idea_back_2.png';
Expand Down Expand Up @@ -74,8 +75,6 @@ export { ReactComponent as SVGLoginImageWrite } from './assets/svg/login/image_w
export { ReactComponent as SVGLoginNaver } from './assets/svg/login/naver.svg';
export { ReactComponent as SVGLoginKakao } from './assets/svg/login/kakao.svg';
export { ReactComponent as SVGLoginLogo } from './assets/svg/login/login_logo.svg';
export { ReactComponent as SVGLoginDefaultImage } from './assets/svg/login/default_image.svg';
export { ReactComponent as SVGLoginDefaultProfile } from './assets/svg/login/default_profile.svg';

export { ReactComponent as SVGFeedWrite40 } from './assets/svg/feed/write40.svg';
export { ReactComponent as SVGFeedLike } from './assets/svg/feed/like.svg';
Expand Down Expand Up @@ -124,6 +123,7 @@ export {
PNGIdeaBackground4,
PNGIdeaBackground5,
PNGErrorBackground,
PNGDefaultProfileIcon,
PNGDefaultProfileImage,
PNGDefaultProfileInfo36,
PNGDefaultProfileInfo100,
PNGDefaultProfileBackground,
};
23 changes: 15 additions & 8 deletions src/stories/PNGCommon.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ import { Meta, StoryObj } from '@storybook/react';
import {
PNGAgreementBackground,
PNGBottomBackground,
PNGDefaultProfileIcon,
PNGDefaultProfileImage,
PNGDefaultProfileBackground,
PNGDefaultProfileInfo100,
PNGDefaultProfileInfo36,
PNGIdeaBackground1,
PNGIdeaBackground2,
PNGIdeaBackground3,
Expand Down Expand Up @@ -73,14 +74,20 @@ export const Default: Story = {
<img
width={420}
height={420}
src={PNGDefaultProfileImage}
alt="PNGDefaultProfileImage"
src={PNGDefaultProfileBackground}
alt="PNGDefaultProfileBackground"
/>
<img
width={60}
height={60}
src={PNGDefaultProfileIcon}
alt="PNGDefaultProfileIcon"
width={36}
height={36}
src={PNGDefaultProfileInfo36}
alt="PNGDefaultProfileInfo36"
/>
<img
width={100}
height={100}
src={PNGDefaultProfileInfo100}
alt="PNGDefaultProfileInfo100"
/>
</div>
</div>
Expand Down
4 changes: 0 additions & 4 deletions src/stories/SVGLogin.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import {
SVGLoginNaver,
SVGLoginKakao,
SVGLoginLogo,
SVGLoginDefaultImage,
SVGLoginImageWrite,
SVGLoginDefaultProfile,
} from '../.';

const meta = {
Expand Down Expand Up @@ -42,8 +40,6 @@ export const Default: Story = {
>
<SVGLoginKakao />
</div>
<SVGLoginDefaultImage />
<SVGLoginDefaultProfile />
<SVGLoginImageWrite />
<SVGLoginLogo />
</div>
Expand Down
Loading

0 comments on commit e88dc2b

Please sign in to comment.