@crystaltech/hsms-shared-ui 0.7.16-alpha.3 → 0.7.16-alpha.4
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/components/ui/Footer.d.ts +6 -1
- package/dist/index.es.js +4546 -4518
- package/dist/index.js +32 -32
- package/dist/sw.js +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
interface FooterProps {
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Replaces the default attribution entirely. Hosts that already render
|
|
5
|
+
* their own copyright line should pass it here — the default is not
|
|
6
|
+
* appended, so the two never appear together.
|
|
7
|
+
*/
|
|
8
|
+
footerText?: React.ReactNode;
|
|
4
9
|
}
|
|
5
10
|
declare const Footer: React.FC<FooterProps>;
|
|
6
11
|
export default Footer;
|