@adiba-banking-cloud/backoffice 0.0.33 → 0.0.34
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/build/index.cjs.js/index.js +231 -123
- package/build/index.esm.js/index.js +227 -124
- package/build/typings/components/index.d.ts +5 -0
- package/build/typings/components/modals/error/Error.d.ts +4 -0
- package/build/typings/components/modals/error/Error.stories.d.ts +0 -0
- package/build/typings/components/modals/error/Error.types.d.ts +0 -0
- package/build/typings/components/modals/info/Info.d.ts +4 -0
- package/build/typings/components/modals/info/Info.stories.d.ts +0 -0
- package/build/typings/components/modals/info/Info.types.d.ts +0 -0
- package/build/typings/components/modals/simple/Simple.d.ts +4 -0
- package/build/typings/components/modals/simple/Simple.stories.d.ts +0 -0
- package/build/typings/components/modals/simple/Simple.types.d.ts +0 -0
- package/build/typings/components/modals/success/Success.d.ts +4 -0
- package/build/typings/components/modals/success/Success.stories.d.ts +0 -0
- package/build/typings/components/modals/success/Success.types.d.ts +0 -0
- package/build/typings/components/modals/twofactor/Twofactor.d.ts +4 -0
- package/build/typings/components/modals/twofactor/Twofactor.stories.d.ts +0 -0
- package/build/typings/components/modals/twofactor/Twofactor.types.d.ts +0 -0
- package/build/typings/shared/hooks/modals/useManagedModals.d.ts +17 -0
- package/build/typings/shared/hooks/modals/useModal.d.ts +8 -0
- package/package.json +3 -1
|
@@ -18,3 +18,8 @@ export { PaymentMethod, PaymentMethodAdd, } from "./widgets/payment_method/Payme
|
|
|
18
18
|
export { SimpleTable } from "./tables/simple/Simple";
|
|
19
19
|
export { File } from "./documents/file/File";
|
|
20
20
|
export { theme } from "./theme";
|
|
21
|
+
export { ErrorModal } from "./modals/error/Error";
|
|
22
|
+
export { InfoModal } from "./modals/info/Info";
|
|
23
|
+
export { SimpleModal } from "./modals/simple/Simple";
|
|
24
|
+
export { SuccessModal } from "./modals/success/Success";
|
|
25
|
+
export { TwoFactorVerificationModal } from "./modals/twofactor/Twofactor";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const useManagedModals: () => {
|
|
2
|
+
ErrorModal: ({ context, id, innerProps, }: import("@mantine/modals").ContextModalProps<{
|
|
3
|
+
modalBody: string;
|
|
4
|
+
}>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
InfoModal: ({ context, id, innerProps, }: import("@mantine/modals").ContextModalProps<{
|
|
6
|
+
modalBody: string;
|
|
7
|
+
}>) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
SimpleModal: ({ context, id, innerProps, }: import("@mantine/modals").ContextModalProps<{
|
|
9
|
+
modalBody: string;
|
|
10
|
+
}>) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
SuccessModal: ({ context, id, innerProps, }: import("@mantine/modals").ContextModalProps<{
|
|
12
|
+
modalBody: string;
|
|
13
|
+
}>) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
TwoFactorVerificationModal: ({ context, id, innerProps, }: import("@mantine/modals").ContextModalProps<{
|
|
15
|
+
modalBody: string;
|
|
16
|
+
}>) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adiba-banking-cloud/backoffice",
|
|
3
3
|
"author": "TUROG Technologies",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.34",
|
|
5
5
|
"description": "An ADIBA component library for backoffice and dashboard applications",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"main": "build/index.cjs.js",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"@hello-pangea/dnd": "^16.5.0",
|
|
36
36
|
"@mantine/core": "^7.12.2",
|
|
37
37
|
"@mantine/hooks": "^7.12.2",
|
|
38
|
+
"@mantine/modals": "^7.17.8",
|
|
38
39
|
"highcharts-react-official": "^3.2.2",
|
|
39
40
|
"highcharts-rounded-corners": "^1.0.7",
|
|
40
41
|
"iconsax-react": "^0.0.8"
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"@hello-pangea/dnd": "^16.5.0",
|
|
100
101
|
"@mantine/core": "^7.12.2",
|
|
101
102
|
"@mantine/hooks": "^7.12.2",
|
|
103
|
+
"@mantine/modals": "^7.17.8",
|
|
102
104
|
"highcharts-react-official": "^3.2.2",
|
|
103
105
|
"highcharts-rounded-corners": "^1.0.7",
|
|
104
106
|
"iconsax-react": "^0.0.8"
|