@emailmaker/filemanager 0.10.26 → 0.10.28
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/components/PixieEditor/PixieEditor.d.ts +1 -1
- package/file-manager.css +88 -40
- package/file-manager.d.ts +0 -1
- package/file-manager.esm.js +9 -9
- package/file-manager.esm.js.map +1 -1
- package/file-manager.js +1 -1
- package/file-manager.js.LICENSE.txt +0 -2
- package/package.json +1 -1
- package/shared/config.d.ts +2 -0
- package/types.d.ts +1 -1
|
@@ -131,8 +131,6 @@ and limitations under the License.
|
|
|
131
131
|
|
|
132
132
|
/** */
|
|
133
133
|
|
|
134
|
-
/** */
|
|
135
|
-
|
|
136
134
|
/** */
|
|
137
135
|
|
|
138
136
|
/** */
|
package/package.json
CHANGED
package/shared/config.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { IconProps } from '../types';
|
|
1
2
|
export interface Config {
|
|
2
3
|
theme?: 'light' | 'dark' | 'system';
|
|
3
4
|
activeTab?: string;
|
|
@@ -10,4 +11,5 @@ export interface Config {
|
|
|
10
11
|
createFile?: string;
|
|
11
12
|
deleteFile?: string;
|
|
12
13
|
};
|
|
14
|
+
noFilesIconProps?: IconProps;
|
|
13
15
|
}
|
package/types.d.ts
CHANGED
|
@@ -338,6 +338,7 @@ export interface Config {
|
|
|
338
338
|
mode?: 'fileManager' | 'imageCenter' | 'plugin';
|
|
339
339
|
enabledTabs?: string[];
|
|
340
340
|
iconStrokeWidth?: number;
|
|
341
|
+
noFilesIconProps?: IconProps;
|
|
341
342
|
features?: {
|
|
342
343
|
enableRenameFolder?: boolean;
|
|
343
344
|
enableRenameFile?: boolean;
|
|
@@ -452,7 +453,6 @@ export interface ImageAIProps {
|
|
|
452
453
|
customRequest: (file: {
|
|
453
454
|
file: globalThis.File;
|
|
454
455
|
}) => Promise<void | File>;
|
|
455
|
-
aiTabRef: RefObject<HTMLElement>;
|
|
456
456
|
inputAiRef: RefObject<HTMLTextAreaElement>;
|
|
457
457
|
isImageUploaded: boolean;
|
|
458
458
|
setIsImageUploaded: (val: boolean) => void;
|