Skip to content

Commit

Permalink
dummy data updates
Browse files Browse the repository at this point in the history
  • Loading branch information
joduplessis committed Jun 24, 2024
1 parent a753b13 commit 07635b7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fold-dev/docs",
"version": "24.6.24.2",
"version": "24.6.24.4",
"description": "UI components for product teams.",
"scripts": {
"prepare": "husky install",
Expand Down
7 changes: 5 additions & 2 deletions src/dummy-data/kanban.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ export const swimlanes: KanbanTypes.Swimlane[] = [
{
id: 'column-2463',
name: 'Todo',
description: 'Everything in this column needs to be done.',
prefix: <IconLib icon="circle" />,
description: 'Everything in this column needs to be done this sprint.',
color: Token.ColorElectric400,
collapsed: false,
cards: [
Expand Down Expand Up @@ -57,7 +58,7 @@ export const swimlanes: KanbanTypes.Swimlane[] = [
{
id: 'column-46868',
name: 'Doing',
prefix: <IconLib icon="check" />,
prefix: <IconLib icon="circle" />,
color: Token.ColorTeal400,
cards: [
{
Expand All @@ -71,6 +72,7 @@ export const swimlanes: KanbanTypes.Swimlane[] = [
{
id: 'column-468688',
name: 'Done',
prefix: <IconLib icon="circle" />,
color: Token.ColorPurple400,
cards: [
{
Expand Down Expand Up @@ -112,6 +114,7 @@ export const swimlanes: KanbanTypes.Swimlane[] = [
{
id: 'column-4686881',
name: 'Backlog',
prefix: <IconLib icon="circle" />,
color: Token.ColorNeonpink400,
cards: [
{
Expand Down
7 changes: 5 additions & 2 deletions src/dummy-data/todo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const sections: TodoTypes.Section[] = [
description: '',
collapsible: true,
color: undefined,
prefix: <IconLib icon="circle" />,
tasks: [
{
id: 'section1-1',
Expand Down Expand Up @@ -98,9 +99,10 @@ export const sections: TodoTypes.Section[] = [
{
id: 'section2',
name: 'Done',
description: 'Create content strategy and outline website sections ',
description: '',
collapsible: true,
color: Token.ColorNeonpink400,
prefix: <IconLib icon="circle" />,
tasks: [
{
id: 'section2-1',
Expand Down Expand Up @@ -143,9 +145,10 @@ export const sections: TodoTypes.Section[] = [
{
id: 'section3',
name: 'Backlog',
description: 'Everything that has no home should go here.',
description: 'Everything that has no status should go here.',
collapsible: true,
color: Token.ColorTeal400,
prefix: <IconLib icon="circle" />,
tasks: [
{
id: 'section3-1',
Expand Down

0 comments on commit 07635b7

Please sign in to comment.