Skip to content

Commit

Permalink
feat (catalog): Support uploading OSCAL files (#944)
Browse files Browse the repository at this point in the history
Closes https://github.com/EasyDynamics/oscal-react-library/issues/888

---------

Co-authored-by: Bradley Fellstrom <[email protected]>
  • Loading branch information
mpemy and Bronstrom authored Oct 10, 2023
1 parent 40f4183 commit 69c4a85
Show file tree
Hide file tree
Showing 14 changed files with 1,249 additions and 362 deletions.
37 changes: 37 additions & 0 deletions packages/oscal-react-library/createPalette.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,46 @@ declare module "@mui/material/styles/createPalette" {
interface Palette {
backgroundGray: PaletteColor;
primaryAccent: PaletteColor;
lightGray: PaletteColor;
lightGrayBlue: PaletteColor;
offWhite: PaletteColor;
white: PaletteColor;
black: PaletteColor;
gray: PaletteColor;
destructive: PaletteColor;
lightPink: PaletteColor;
lightGreen: PaletteColor;
lightYellow: PaletteColor;
lightBlue: PaletteColor;
darkGray: PaletteColor;
darkGray: PaletteColor;
lightBlack: PaletteColor;
lightMagenta: PaletteColor;
darkBrown: PaletteColor;
shadyGray: PaletteColor;
shadyBlue: PaletteColor;
smokyWhite: PaletteColor;
}
interface PaletteOptions {
backgroundGray?: PaletteColorOptions;
primaryAccent?: PaletteColorOptions;
lightGray?: PaletteColorOptions;
lightGrayBlue?: PaletteColorOptions;
offWhite?: PaletteColorOptions;
white?: PaletteColorOptions;
black?: PaletteColorOptions;
gray?: PaletteColorOptions;
destructive?: PaletteColorOptions;
lightPink?: PaletteColorOptions;
lightGreen?: PaletteColorOptions;
lightYellow?: PaletteColorOptions;
lightBlue?: PaletteColorOptions;
darkGray?: PaletteColorOptions;
lightBlack?: PaletteColorOptions;
lightMagenta?: PaletteColorOptions;
darkBrown?: PaletteColorOptions;
shadyGray?: PaletteColorOptions;
shadyBlue?: PaletteColorOptions;
smokyWhite?: PaletteColorOptions;
}
}
Loading

0 comments on commit 69c4a85

Please sign in to comment.