-
-
Notifications
You must be signed in to change notification settings - Fork 415
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6adae94
commit c0a6546
Showing
12 changed files
with
5,439 additions
and
5,417 deletions.
There are no files selected for viewing
1,037 changes: 0 additions & 1,037 deletions
1,037
packages/blocks/src/page-block/edgeless/components/toolbar/template/json/flow-chart.json
This file was deleted.
Oops, something went wrong.
1,038 changes: 1,038 additions & 0 deletions
1,038
packages/blocks/src/page-block/edgeless/components/toolbar/template/json/flow-chart.ts
Large diffs are not rendered by default.
Oops, something went wrong.
999 changes: 0 additions & 999 deletions
999
packages/blocks/src/page-block/edgeless/components/toolbar/template/json/gantt-chart.json
This file was deleted.
Oops, something went wrong.
1,000 changes: 1,000 additions & 0 deletions
1,000
packages/blocks/src/page-block/edgeless/components/toolbar/template/json/gantt-chart.ts
Large diffs are not rendered by default.
Oops, something went wrong.
899 changes: 0 additions & 899 deletions
899
packages/blocks/src/page-block/edgeless/components/toolbar/template/json/kanban.json
This file was deleted.
Oops, something went wrong.
905 changes: 905 additions & 0 deletions
905
packages/blocks/src/page-block/edgeless/components/toolbar/template/json/kanban.ts
Large diffs are not rendered by default.
Oops, something went wrong.
1,125 changes: 0 additions & 1,125 deletions
1,125
...ges/blocks/src/page-block/edgeless/components/toolbar/template/json/monthly-calendar.json
This file was deleted.
Oops, something went wrong.
1,133 changes: 1,133 additions & 0 deletions
1,133
packages/blocks/src/page-block/edgeless/components/toolbar/template/json/monthly-calendar.ts
Large diffs are not rendered by default.
Oops, something went wrong.
1,345 changes: 0 additions & 1,345 deletions
1,345
packages/blocks/src/page-block/edgeless/components/toolbar/template/json/storyboard.json
This file was deleted.
Oops, something went wrong.
1,351 changes: 1,351 additions & 0 deletions
1,351
packages/blocks/src/page-block/edgeless/components/toolbar/template/json/storyboard.ts
Large diffs are not rendered by default.
Oops, something went wrong.
12 changes: 6 additions & 6 deletions
12
packages/blocks/src/page-block/edgeless/components/toolbar/template/templates.ts
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,13 +1,13 @@ | ||
import type { TemplateCategory } from './builtin-templates.js'; | ||
import flowchart from './json/flow-chart.json'; | ||
import ganttchart from './json/gantt-chart.json'; | ||
import kanban from './json/kanban.json'; | ||
import monthlycalendar from './json/monthly-calendar.json'; | ||
import storyboard from './json/storyboard.json'; | ||
import { flowChart } from './json/flow-chart.js'; | ||
import { ganttChart } from './json/gantt-chart.js'; | ||
import { kanban } from './json/kanban.js'; | ||
import { monthlyCalendar } from './json/monthly-calendar.js'; | ||
import { storyboard } from './json/storyboard.js'; | ||
|
||
export const templates: TemplateCategory[] = [ | ||
{ | ||
name: 'Project managerment', | ||
templates: [kanban, storyboard, monthlycalendar, ganttchart, flowchart], | ||
templates: [kanban, storyboard, monthlyCalendar, ganttChart, flowChart], | ||
}, | ||
]; |
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