-
Notifications
You must be signed in to change notification settings - Fork 1
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 #59 from etn-ccis/dev
R33 updates and R34 Roadmap
- Loading branch information
Showing
6 changed files
with
98 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[ | ||
{ | ||
"name": "Reusable Workflows", | ||
"description": "Components for implementing common workflows across applications", | ||
"type": "development", | ||
"framework": ["react"], | ||
"items": [ | ||
{ | ||
"name": "React User Management Workflow", | ||
"description": | ||
"Develop a workflow for managing user accounts and permissions", | ||
"year": 2024, | ||
"quarter": "Q4", | ||
"status": "backlog", | ||
"author": "Brightlayer UI" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "React Libraries", | ||
"description": | ||
"The Brightlayer UI react libraries", | ||
"type": "development", | ||
"framework": ["react"], | ||
"items": [ | ||
{ | ||
"name": "MUI 6 Support", | ||
"description": "Update libraries to build using MUI version 6", | ||
"year": 2024, | ||
"quarter": "Q4", | ||
"status": "in-progress", | ||
"author": "Brightlayer UI" | ||
} | ||
] | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { Quarter, RoadmapBucket } from "./_types"; | ||
|
||
const CURRENT_YEAR = 2024; | ||
const CURRENT_QUARTER: Quarter = "Q4"; | ||
|
||
export const roadmap: RoadmapBucket[] = [ | ||
{ | ||
name: "Reusable Workflows", | ||
description: "Components for implementing common workflows across applications", | ||
type: "development", | ||
framework: ["react"], | ||
items: [ | ||
{ | ||
name: "React User Management Workflow", | ||
description: | ||
"Develop a workflow for managing user accounts and permissions", | ||
year: CURRENT_YEAR, | ||
quarter: CURRENT_QUARTER, | ||
status: "backlog", | ||
author: "Brightlayer UI", | ||
}, | ||
], | ||
}, | ||
{ | ||
name: "React Libraries", | ||
description: | ||
"The Brightlayer UI react libraries", | ||
type: "development", | ||
framework: ["react"], | ||
items: [ | ||
{ | ||
name: 'MUI 6 Support', | ||
description: 'Update libraries to build using MUI version 6', | ||
year: CURRENT_YEAR, | ||
quarter: CURRENT_QUARTER, | ||
status: 'in-progress', | ||
author: 'Brightlayer UI', | ||
}, | ||
], | ||
}, | ||
]; |
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