mario-core 2.5.1 → 2.5.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mario-core",
3
- "version": "2.5.1",
3
+ "version": "2.5.5",
4
4
  "description": "Contains core components && functions for Mario project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -1,13 +0,0 @@
1
- /// <reference types="react" />
2
- import { S3Object } from "../constants/gallery.types";
3
- interface FormDataMediaType {
4
- file: File;
5
- key?: string;
6
- }
7
- declare const useGalleryDetail: () => {
8
- targetMedia: S3Object | undefined;
9
- selectTargetMedia: import("react").Dispatch<import("react").SetStateAction<S3Object | undefined>>;
10
- openFolder: (key: string) => void;
11
- setFormDataMediaType: import("react").Dispatch<import("react").SetStateAction<FormDataMediaType | undefined>>;
12
- };
13
- export default useGalleryDetail;
@@ -1,31 +0,0 @@
1
- /// <reference types="react" />
2
- import { FilterType } from "../constants/gallery.types";
3
- import { S3Object } from "./../constants/gallery.types";
4
- interface FormDataMediaType {
5
- file: File;
6
- key?: string;
7
- }
8
- interface RouterType {
9
- link: string;
10
- step: number;
11
- }
12
- declare const useGalleryList: () => {
13
- mediaList: any;
14
- filters: FilterType;
15
- totalItems: any;
16
- targetMedia: S3Object;
17
- router: RouterType;
18
- breadcumb: string;
19
- getData: () => Promise<void>;
20
- changeFilters: (updatedFilters: FilterType) => void;
21
- handleSelectFile: import("react").Dispatch<import("react").SetStateAction<FormDataMediaType | undefined>>;
22
- handleOpenFolder: (media: S3Object) => void;
23
- handleSelectMedia: (media: S3Object) => void;
24
- handleRenameFile: (name: string) => Promise<void>;
25
- handleDownloadMedia: () => void;
26
- handleDeleteMediaOrFolder: () => Promise<void>;
27
- handleCreateFolder: (prefix: string, folderName: string) => Promise<void>;
28
- handleGoBack: () => void;
29
- showErrorAlert: (message: string) => void;
30
- };
31
- export default useGalleryList;
@@ -1 +0,0 @@
1
- export declare const setCurrentChildrenId: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, string>;
@@ -1,2 +0,0 @@
1
- declare const parent: import("redux").Reducer<any, import("redux").AnyAction>;
2
- export default parent;
@@ -1 +0,0 @@
1
- export declare const setSubjectCategoryList: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, string>;
@@ -1,2 +0,0 @@
1
- declare const commonReducer: import("redux").Reducer<any, import("redux").AnyAction>;
2
- export default commonReducer;