@inceptionbg/main 2.0.109 → 2.0.111
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/index.d.ts +11 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1496,10 +1496,12 @@ declare const DeleteItemDialog: FC<Props$1>;
|
|
|
1496
1496
|
|
|
1497
1497
|
interface Props {
|
|
1498
1498
|
textId: string;
|
|
1499
|
-
|
|
1500
|
-
|
|
1499
|
+
itemUuids: string[];
|
|
1500
|
+
setItemUuids: Dispatch<SetStateAction<string[]>>;
|
|
1501
1501
|
onSuccess: () => void;
|
|
1502
|
-
useDeleteItemMutation: ({ onSuccess, }: IUseMutationData) => UseMutationResult<AxiosResponse<any, any>, Error,
|
|
1502
|
+
useDeleteItemMutation: ({ onSuccess, }: IUseMutationData) => UseMutationResult<AxiosResponse<any, any>, Error, {
|
|
1503
|
+
itemUuids: string[];
|
|
1504
|
+
}, unknown>;
|
|
1503
1505
|
}
|
|
1504
1506
|
declare const DeleteItemsDialog: FC<Props>;
|
|
1505
1507
|
|
|
@@ -1660,6 +1662,9 @@ declare const i18nMainLatin: {
|
|
|
1660
1662
|
Report: string;
|
|
1661
1663
|
ReportDate: string;
|
|
1662
1664
|
ReportFromTo: string;
|
|
1665
|
+
DeleteDialogTitle: string;
|
|
1666
|
+
DeleteItemDesc: string;
|
|
1667
|
+
DeleteItemBulkDesc: string;
|
|
1663
1668
|
InApp: string;
|
|
1664
1669
|
MarkAllAsRead: string;
|
|
1665
1670
|
NoNewNotifications: string;
|
|
@@ -1850,6 +1855,9 @@ declare const i18nMainCyrilic: {
|
|
|
1850
1855
|
Report: string;
|
|
1851
1856
|
ReportDate: string;
|
|
1852
1857
|
ReportFromTo: string;
|
|
1858
|
+
DeleteDialogTitle: string;
|
|
1859
|
+
DeleteItemDesc: string;
|
|
1860
|
+
DeleteItemBulkDesc: string;
|
|
1853
1861
|
InApp: string;
|
|
1854
1862
|
MarkAllAsRead: string;
|
|
1855
1863
|
NoNewNotifications: string;
|