allaw-ui 0.1.43 → 0.1.44
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.
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import "./LoadingBox.css";
|
|
3
|
-
type
|
|
3
|
+
export type LoadingBoxProps = {
|
|
4
4
|
boxHeigth: string;
|
|
5
5
|
boxWidth: string;
|
|
6
6
|
boxRadius: string;
|
|
7
7
|
};
|
|
8
|
-
declare function LoadingBox({ boxHeigth, boxWidth, boxRadius }:
|
|
8
|
+
declare function LoadingBox({ boxHeigth, boxWidth, boxRadius }: LoadingBoxProps): React.JSX.Element;
|
|
9
9
|
export default LoadingBox;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LoadingBox } from "./LoadingBox";
|
package/dist/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export { default as CaseCard } from "./components/molecules/caseCard/CaseCard";
|
|
|
37
37
|
export { default as ContactCard } from "./components/molecules/contactCard/ContactCard";
|
|
38
38
|
export { default as CaseCardLink } from "./components/molecules/caseLinkCard/CaseLinkCard";
|
|
39
39
|
export { default as ClientLinkCard } from "./components/molecules/clientLinkCard/ClientLinkCard";
|
|
40
|
+
export { default as LoadingBox } from "./components/molecules/loadingBox/LoadingBox";
|
|
40
41
|
export { default as DocumentCard } from "./components/molecules/documentCard/DocumentCard";
|
|
41
42
|
export { default as EmployeeCard } from "./components/molecules/employeeCard/EmployeeCard";
|
|
42
43
|
export { default as Stepper } from "./components/molecules/stepper/Stepper";
|
package/dist/index.js
CHANGED
|
@@ -51,6 +51,7 @@ export { default as ContactCard } from "./components/molecules/contactCard/Conta
|
|
|
51
51
|
export { default as CaseCardLink } from "./components/molecules/caseLinkCard/CaseLinkCard";
|
|
52
52
|
// Case Link Card
|
|
53
53
|
export { default as ClientLinkCard } from "./components/molecules/clientLinkCard/ClientLinkCard";
|
|
54
|
+
export { default as LoadingBox } from "./components/molecules/loadingBox/LoadingBox";
|
|
54
55
|
// Document Card
|
|
55
56
|
export { default as DocumentCard } from "./components/molecules/documentCard/DocumentCard";
|
|
56
57
|
// Employee Card
|