Skip to content

Commit 46176f5

Browse files
authored
feat: storybook split color palette (#1125)
1 parent 010576f commit 46176f5

File tree

94 files changed

+210
-119
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+210
-119
lines changed

frontend/src/components/Board/AddCardOrComment.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import AddCommentDto from '@/types/comment/addComment.dto';
1515
import UpdateCommentDto from '@/types/comment/updateComment.dto';
1616
import { styled } from '@/styles/stitches/stitches.config';
1717
import { CARD_TEXT_DEFAULT } from '@/utils/constants';
18-
import Icon from '../icons/Icon';
18+
import Icon from '../Primitives/Icon';
1919

2020
const StyledForm = styled('form', Flex, { width: '100%' });
2121

frontend/src/components/Board/Card/CardBoard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Draggable } from '@hello-pangea/dnd';
33

44
import { styled } from '@/styles/stitches/stitches.config';
55

6-
import Icon from '@/components/icons/Icon';
6+
import Icon from '@/components/Primitives/Icon';
77
import Flex from '@/components/Primitives/Flex';
88
import Text from '@/components/Primitives/Text';
99
import { cardBlur } from '@/helper/board/blurFilter';

frontend/src/components/Board/Card/CardFooter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useEffect, useMemo, useState } from 'react';
22

3-
import Icon from '@/components/icons/Icon';
3+
import Icon from '@/components/Primitives/Icon';
44
import Avatar from '@/components/Primitives/Avatar/Avatar';
55
import Button from '@/components/Primitives/Button';
66
import Flex from '@/components/Primitives/Flex';

frontend/src/components/Board/Card/CardItem/CardItemList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Icon from '@/components/icons/Icon';
1+
import Icon from '@/components/Primitives/Icon';
22
import Flex from '@/components/Primitives/Flex';
33
import Separator from '@/components/Primitives/Separator';
44
import { CardItemType } from '@/types/card/cardItem';

frontend/src/components/Board/Card/PopoverSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useState } from 'react';
22

3-
import Icon from '@/components/icons/Icon';
3+
import Icon from '@/components/Primitives/Icon';
44
import {
55
Popover,
66
PopoverContent,

frontend/src/components/Board/Column/Column.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { ColumnBoardType } from '@/types/column';
88
import { useSetRecoilState } from 'recoil';
99
import { filteredColumnsState } from '@/store/board/atoms/filterColumns';
1010
import { countColumnCards } from '@/helper/board/countCards';
11-
import Icon from '@/components/icons/Icon';
11+
import Icon from '@/components/Primitives/Icon';
1212
import AddCardOrComment from '../AddCardOrComment';
1313
import CardsList from './CardsList';
1414
import SortMenu from './partials/SortMenu';

frontend/src/components/Board/Column/partials/OptionsMenu/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Icon from '@/components/icons/Icon';
1+
import Icon from '@/components/Primitives/Icon';
22
import Flex from '@/components/Primitives/Flex';
33
import {
44
Popover,

frontend/src/components/Board/Column/partials/SortMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Icon from '@/components/icons/Icon';
1+
import Icon from '@/components/Primitives/Icon';
22
import {
33
Popover,
44
PopoverContent,

frontend/src/components/Board/Comment/Comments.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useState } from 'react';
22

3-
import Icon from '@/components/icons/Icon';
3+
import Icon from '@/components/Primitives/Icon';
44
import Flex from '@/components/Primitives/Flex';
55
import Separator from '@/components/Primitives/Separator';
66
import Text from '@/components/Primitives/Text';

frontend/src/components/Board/Comment/PopoverSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22

3-
import Icon from '@/components/icons/Icon';
3+
import Icon from '@/components/Primitives/Icon';
44
import {
55
Popover,
66
PopoverContent,

0 commit comments

Comments
 (0)