@epilot/base-elements 2.5.13 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/Dialog/types.d.ts +5 -1
- package/dist/bundle.js +33 -33
- package/dist/bundle.js.map +1 -1
- package/dist/styles/styles.d.ts +1 -1
- package/dist/styles/styles.js +4 -1
- package/dist/styles/styles.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [2.7.0](https://gitlab.com/e-pilot/frontend/base/elements/compare/v2.6.0...v2.7.0) (2022-02-24)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* expose more MUI color functions ([a820717](https://gitlab.com/e-pilot/frontend/base/elements/commit/a820717213654e28db1ac7913610279a516908fe))
|
|
11
|
+
|
|
12
|
+
## [2.6.0](https://gitlab.com/e-pilot/frontend/base/elements/compare/v2.5.14...v2.6.0) (2022-02-17)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* expose help MUI function ([76f6582](https://gitlab.com/e-pilot/frontend/base/elements/commit/76f6582ca1d9127fb1634fee0a618b4484a8c556))
|
|
18
|
+
|
|
19
|
+
### [2.5.14](https://gitlab.com/e-pilot/product/frontend/base/elements/compare/v2.5.13...v2.5.14) (2022-02-14)
|
|
20
|
+
|
|
5
21
|
### [2.5.13](https://gitlab.com/e-pilot/product/frontend/base/elements/compare/v2.5.12...v2.5.13) (2022-02-11)
|
|
6
22
|
|
|
7
23
|
### [2.5.12](https://gitlab.com/e-pilot/frontend/base/elements/compare/v2.5.11...v2.5.12) (2022-02-11)
|
package/dist/Dialog/types.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export declare type DialogProps = {
|
|
|
17
17
|
/**
|
|
18
18
|
* Override or extend the styles applied to the component. See https://v4.mui.com/api/dialog/#css for more details.
|
|
19
19
|
*/
|
|
20
|
-
classes
|
|
20
|
+
classes?: Partial<{
|
|
21
21
|
[P in DialogClassKey]: string;
|
|
22
22
|
}>;
|
|
23
23
|
/**
|
|
@@ -130,6 +130,10 @@ export declare type DialogProps = {
|
|
|
130
130
|
* Determine the container for scrolling the dialog.
|
|
131
131
|
*/
|
|
132
132
|
scroll?: 'body' | 'paper';
|
|
133
|
+
/**
|
|
134
|
+
* CSS override style
|
|
135
|
+
*/
|
|
136
|
+
style?: React.CSSProperties;
|
|
133
137
|
/**
|
|
134
138
|
* The component used for the transition.
|
|
135
139
|
* [Follow this guide](/components/transitions/#transitioncomponent-prop) to learn more about the requirements for this component.
|