Skip to content

Commit

Permalink
chore(release): 1.1.6 [skip ci]
Browse files Browse the repository at this point in the history
## [1.1.6](v1.1.5...v1.1.6) (2023-03-17)

### Bug Fixes

* export PropsColorOverrides ([90834b6](90834b6))
  • Loading branch information
semantic-release-bot committed Mar 17, 2023
1 parent 90834b6 commit 66c94a9
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.1.6](https://github.com/ocadotechnology/codeforlife-package-javascript/compare/v1.1.5...v1.1.6) (2023-03-17)


### Bug Fixes

* export PropsColorOverrides ([90834b6](https://github.com/ocadotechnology/codeforlife-package-javascript/commit/90834b61e32f7734d951be7aef391ea1a5432253))

## [1.1.5](https://github.com/ocadotechnology/codeforlife-package-javascript/compare/v1.1.4...v1.1.5) (2023-03-17)


Expand Down
4 changes: 2 additions & 2 deletions lib/cjs/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import theme from './theme';
import theme, { PropsColorOverrides } from './theme';
export * as components from './components';
export { theme };
export { theme, type PropsColorOverrides };
8 changes: 4 additions & 4 deletions lib/cjs/theme.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ declare module '@mui/material/styles' {
interface PaletteOptions extends CustomPaletteColors {
}
}
export interface PropsColorOverrides {
tertiary: true;
white: true;
}
declare module '@mui/material' {
interface PropsColorOverrides {
tertiary: true;
white: true;
}
interface ButtonPropsColorOverrides extends PropsColorOverrides {
}
}
Expand Down
4 changes: 2 additions & 2 deletions lib/esm/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import theme from './theme';
import theme, { PropsColorOverrides } from './theme';
export * as components from './components';
export { theme };
export { theme, type PropsColorOverrides };
8 changes: 4 additions & 4 deletions lib/esm/theme.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ declare module '@mui/material/styles' {
interface PaletteOptions extends CustomPaletteColors {
}
}
export interface PropsColorOverrides {
tertiary: true;
white: true;
}
declare module '@mui/material' {
interface PropsColorOverrides {
tertiary: true;
white: true;
}
interface ButtonPropsColorOverrides extends PropsColorOverrides {
}
}
Expand Down

0 comments on commit 66c94a9

Please sign in to comment.