fui-material 1.0.50-beta → 1.0.52-beta
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/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/material/Dialog/FDialogFooter/FDialogFooter.d.ts +3 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/material/Dialog/FDialogFooter/FDialogFooter.d.ts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import React, { FC } from "react";
|
|
2
2
|
export interface IFDialogFooter {
|
|
3
3
|
children?: React.ReactChild | React.ReactNode;
|
|
4
|
+
className?: string;
|
|
5
|
+
st?: React.CSSProperties | undefined;
|
|
6
|
+
id?: string;
|
|
4
7
|
}
|
|
5
8
|
declare const FDialogFooter: FC<IFDialogFooter>;
|
|
6
9
|
export default FDialogFooter;
|
package/dist/index.d.ts
CHANGED
|
@@ -211,6 +211,9 @@ declare const FDialogBody: FC<IFDialogBody>;
|
|
|
211
211
|
|
|
212
212
|
interface IFDialogFooter {
|
|
213
213
|
children?: React.ReactChild | React.ReactNode;
|
|
214
|
+
className?: string;
|
|
215
|
+
st?: React.CSSProperties | undefined;
|
|
216
|
+
id?: string;
|
|
214
217
|
}
|
|
215
218
|
declare const FDialogFooter: FC<IFDialogFooter>;
|
|
216
219
|
|