@adiba-banking-cloud/backoffice 0.2.9 → 0.2.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/build/index.cjs.js/{heatmap-DSwEvAgV.js → heatmap-CUUTLQjW.js} +1 -1
- package/build/index.cjs.js/{index-CmB3nHMK.js → index-CcnDfoGM.js} +86 -38
- package/build/index.cjs.js/index.js +2 -1
- package/build/index.esm.js/{heatmap-xZGxsnpC.js → heatmap-C69GShSj.js} +1 -1
- package/build/index.esm.js/{index-CYUn9N5k.js → index-Czqmm4p4.js} +86 -39
- package/build/index.esm.js/index.js +1 -1
- package/build/typings/components/index.d.ts +1 -0
- package/build/typings/shared/hooks/modals/useManagedModals.d.ts +1 -0
- package/build/typings/shared/hooks/modals/useModal.d.ts +2 -1
- package/build/typings/shared/hooks/modals/useModal.types.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { A as ApplicationMenu, p as ApplicationPanel, k as AvatarLabelPanel, B as BasicHeatmap, C as CalendarHeatmap, o as ConnectionPanel, u as CreditCard,
|
|
1
|
+
export { A as ApplicationMenu, p as ApplicationPanel, k as AvatarLabelPanel, B as BasicHeatmap, C as CalendarHeatmap, o as ConnectionPanel, u as CreditCard, a2 as DEFAULT_API_TIMEOUT, a0 as DEFAULT_PAGE_SIZE, v as DetailCard, D as DonutChart, Q as Drawer, e as DynamicLogo, f as DynamicShigaLogo, E as EqualizerColumn, G as ErrorModal, F as File, d as Icons, r as InfoGrid, H as InfoModal, I as InterpolatedHeatmap, L as LabelPanel, O as LoadingModal, a1 as MAX_PAGE_SIZE, V as MaskedTilePanel, X as MerchantCard, a5 as ModalContentWrapper, M as MultiAxisArea, m as PageTitle, w as PaymentMethod, x as PaymentMethodAdd, P as PieChart, j as SearchPanel, h as SideMenu, b as SimpleArea, S as SimpleColumn, R as SimpleForm, J as SimpleModal, i as SimplePanel, y as SimpleTable, l as SimpleText, c as StackedArea, a as StackedColumn, t as StatusAlert, q as SubscriptionPlans, K as SuccessModal, Y as TableStateView, W as TilePanel, n as TitleWithIndex, T as TitledPanel, N as TwoFactorModal, U as UserMenu, s as UserProfileCard, a4 as apiClient, a3 as createApiClient, a7 as extractBetweenBraces, a8 as extractOutsideBraces, z as theme, _ as useManagedModals, Z as useModal, $ as useUrlFilters, a6 as withProviders } from './index-Czqmm4p4.js';
|
|
2
2
|
import '@babel/runtime/helpers/objectWithoutProperties';
|
|
3
3
|
import '@babel/runtime/helpers/defineProperty';
|
|
4
4
|
import '@mantine/modals';
|
|
@@ -30,6 +30,7 @@ export { InfoModal } from "./modals/info/Info";
|
|
|
30
30
|
export { SimpleModal } from "./modals/simple/Simple";
|
|
31
31
|
export { SuccessModal } from "./modals/success/Success";
|
|
32
32
|
export { TwoFactorModal } from "./modals/twofactor/Twofactor";
|
|
33
|
+
export { LoadingModal } from "./modals/loading/Loading";
|
|
33
34
|
export { Drawer } from "./general/drawer/Drawer";
|
|
34
35
|
export { SimpleForm } from "./forms/simple/Simple";
|
|
35
36
|
export { MaskedTilePanel, TilePanel } from "./panels/tile/Tile";
|
|
@@ -17,4 +17,5 @@ export declare const useManagedModals: () => {
|
|
|
17
17
|
onClick: () => void;
|
|
18
18
|
};
|
|
19
19
|
}>) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
LoadingModal: ({ context, id, innerProps, }: import("@mantine/modals").ContextModalProps<import("../../../components/modals/loading/Loading.types").LoadingModalProps>) => import("react/jsx-runtime").JSX.Element;
|
|
20
21
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ConfirmationModalProps, ErrorModalProps, SimpleModalProps, SuccessModalProps, TwoFactorVerificationModalProps } from "./useModal.types";
|
|
1
|
+
import { ConfirmationModalProps, ErrorModalProps, SimpleModalProps, SuccessModalProps, TwoFactorVerificationModalProps, LoadingModalProps } from "./useModal.types";
|
|
2
2
|
export declare const useModal: () => {
|
|
3
3
|
ConfirmationModal: ({ title, children, onConfirm, labels, loading, }: ConfirmationModalProps) => string;
|
|
4
4
|
ErrorModal: ({ title, message, button, }: ErrorModalProps) => string;
|
|
@@ -6,4 +6,5 @@ export declare const useModal: () => {
|
|
|
6
6
|
SimpleModal: ({ title, message, loading, size, labels, }: SimpleModalProps) => string;
|
|
7
7
|
SuccessModal: ({ title, message, button, }: SuccessModalProps) => string;
|
|
8
8
|
TwoFactorVerificationModal: ({ title, children, loading, onConfirm, labels, pinLength, ...rest }: TwoFactorVerificationModalProps) => string;
|
|
9
|
+
LoadingModal: ({ message, loading }: LoadingModalProps) => string;
|
|
9
10
|
};
|
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.2.
|
|
4
|
+
"version": "0.2.11",
|
|
5
5
|
"description": "An ADIBA component library for backoffice and dashboard applications",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"main": "build/index.cjs.js",
|