@worktile/theia 14.2.32 → 14.3.0
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/plugin-menu/plugin-menu.component.scss +1 -1
- package/custom-types.d.ts +2 -3
- package/esm2020/custom-types.mjs +1 -1
- package/esm2020/interfaces/image.mjs +1 -1
- package/esm2020/plugins/image/image.component.mjs +11 -3
- package/fesm2015/worktile-theia.mjs +11 -2
- package/fesm2015/worktile-theia.mjs.map +1 -1
- package/fesm2020/worktile-theia.mjs +10 -2
- package/fesm2020/worktile-theia.mjs.map +1 -1
- package/interfaces/image.d.ts +1 -0
- package/package.json +1 -1
package/interfaces/image.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export interface LayoutOption extends ToolbarItem {
|
|
|
23
23
|
export interface TheImageUploaderService {
|
|
24
24
|
uploadFileHandle: (files: any) => Observable<UploadFileEntity[]>;
|
|
25
25
|
getUploadingItems$: () => Observable<FileUploadingItem[]>;
|
|
26
|
+
getBaseUrl?: () => string;
|
|
26
27
|
}
|
|
27
28
|
export declare const THE_UPLOAD_SERVICE_TOKEN: InjectionToken<TheImageUploaderService>;
|
|
28
29
|
export interface ImagePluginOptions {
|