@crystaltech/hsms-shared-ui 0.7.1-alpha.0 → 0.7.3-alpha-0.1
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/layout/layoutConfig.d.ts +0 -4
- package/dist/components/ui/SideDrawer.d.ts +0 -53
- package/dist/index.es.js +4055 -4015
- package/dist/index.js +48 -48
- package/dist/pages/table/index.d.ts +2 -2
- package/dist/pages/ui/index.d.ts +2 -2
- package/dist/preMountSplash.es.js +584 -584
- package/dist/preMountSplash.iife.js +86 -86
- package/dist/preMountSplash.js +31 -31
- package/dist/routes/ProtectedRoute.d.ts +0 -1
- package/dist/routes/access.d.ts +2 -0
- package/dist/sw.js +1 -1
- package/dist/utils/media.d.ts +1 -0
- package/package.json +2 -7
|
@@ -27,58 +27,6 @@ export interface IHospitalInfo {
|
|
|
27
27
|
bannerUrl: string | null;
|
|
28
28
|
backgroundImageUrl: string | null;
|
|
29
29
|
}
|
|
30
|
-
export interface IHospitalInfo {
|
|
31
|
-
createdAt: string | null;
|
|
32
|
-
updatedAt: string | null;
|
|
33
|
-
createdBy: string | null;
|
|
34
|
-
updatedBy: string | null;
|
|
35
|
-
status: string | null;
|
|
36
|
-
reasonToUpdate: string | null;
|
|
37
|
-
reasonToDelete: string | null;
|
|
38
|
-
id: string;
|
|
39
|
-
organizationId: string;
|
|
40
|
-
facilityId: string;
|
|
41
|
-
hospitalName: string;
|
|
42
|
-
address: string;
|
|
43
|
-
division: string;
|
|
44
|
-
district: string;
|
|
45
|
-
upazila: string;
|
|
46
|
-
city: string;
|
|
47
|
-
zip: string;
|
|
48
|
-
country: string;
|
|
49
|
-
phone: string;
|
|
50
|
-
email: string;
|
|
51
|
-
website: string | null;
|
|
52
|
-
logoUrl: string | null;
|
|
53
|
-
bannerUrl: string | null;
|
|
54
|
-
backgroundImageUrl: string | null;
|
|
55
|
-
}
|
|
56
|
-
export interface IHospitalInfo {
|
|
57
|
-
createdAt: string | null;
|
|
58
|
-
updatedAt: string | null;
|
|
59
|
-
createdBy: string | null;
|
|
60
|
-
updatedBy: string | null;
|
|
61
|
-
status: string | null;
|
|
62
|
-
reasonToUpdate: string | null;
|
|
63
|
-
reasonToDelete: string | null;
|
|
64
|
-
id: string;
|
|
65
|
-
organizationId: string;
|
|
66
|
-
facilityId: string;
|
|
67
|
-
hospitalName: string;
|
|
68
|
-
address: string;
|
|
69
|
-
division: string;
|
|
70
|
-
district: string;
|
|
71
|
-
upazila: string;
|
|
72
|
-
city: string;
|
|
73
|
-
zip: string;
|
|
74
|
-
country: string;
|
|
75
|
-
phone: string;
|
|
76
|
-
email: string;
|
|
77
|
-
website: string | null;
|
|
78
|
-
logoUrl: string | null;
|
|
79
|
-
bannerUrl: string | null;
|
|
80
|
-
backgroundImageUrl: string | null;
|
|
81
|
-
}
|
|
82
30
|
interface SideDrawerProps {
|
|
83
31
|
isSidebarOpen: boolean;
|
|
84
32
|
toggleSidebar: () => void;
|
|
@@ -90,6 +38,5 @@ interface SideDrawerProps {
|
|
|
90
38
|
userRoles: string[];
|
|
91
39
|
user?: UserInfo;
|
|
92
40
|
}
|
|
93
|
-
export declare const getImageFullUrl: (imagePath: string) => string;
|
|
94
41
|
declare const SideDrawer: React.FC<SideDrawerProps>;
|
|
95
42
|
export default SideDrawer;
|