@crystaltech/hsms-shared-ui 0.0.2-alpha-0.0.9 → 0.0.2-alpha-0.0.11
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/LoginView.d.ts +2 -0
- package/dist/components/LogoWithTitle.d.ts +9 -0
- package/dist/components/layout/dummyData.d.ts +7 -0
- package/dist/components/styled-components/index.d.ts +1 -1
- package/dist/images/medical-care.jpg +0 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +48704 -39148
- package/dist/index.js +339 -119
- package/dist/routes/ProtectedRoute.d.ts +8 -0
- package/package.json +4 -3
|
@@ -13,4 +13,11 @@ export interface ISettingsConfig {
|
|
|
13
13
|
footerText: string;
|
|
14
14
|
}
|
|
15
15
|
export declare const menuConfig: IMenuConfig[];
|
|
16
|
+
export interface ISettingsConfig {
|
|
17
|
+
logo: string;
|
|
18
|
+
title: string;
|
|
19
|
+
subTitle: string;
|
|
20
|
+
moduleName: string;
|
|
21
|
+
footerText: string;
|
|
22
|
+
}
|
|
16
23
|
export declare const settingsConfig: ISettingsConfig;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Theme } from '@mui/material/styles';
|
|
2
|
-
declare const StyledComponent: import('@emotion/styled').StyledComponent<import('@mui/system').BoxOwnProps<import('@mui/system').Theme> & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('@mui/system').BoxOwnProps<import('@mui/system').Theme>> & import('@mui/system').MUIStyledCommonProps<Theme> & import('@mui/material').ContainerOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "
|
|
2
|
+
declare const StyledComponent: import('@emotion/styled').StyledComponent<import('@mui/system').BoxOwnProps<import('@mui/system').Theme> & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('@mui/system').BoxOwnProps<import('@mui/system').Theme>> & import('@mui/system').MUIStyledCommonProps<Theme> & import('@mui/material').ContainerOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "maxWidth" | "children" | "sx" | "style" | "className" | "fixed" | "classes" | "disableGutters"> & {
|
|
3
3
|
component?: React.ElementType;
|
|
4
4
|
}, {}, {}>;
|
|
5
5
|
export default StyledComponent;
|
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as ThemeSetting } from './components/ThemeSetting';
|
|
1
2
|
export { default as AsyncAutocomplete } from './components/ui/AsyncAutocomplete';
|
|
2
3
|
export { default as CheckboxListWithAvatar } from './components/ui/CheckboxListWithAvatar';
|
|
3
4
|
export { default as ControlledDatePicker } from './components/ui/ControlledDatePicker';
|