@univerjs-pro/exchange-client 0.2.7 → 0.2.8
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/lib/cjs/index.js +2 -2
- package/lib/es/index.js +2 -2
- package/lib/types/controllers/exchange.controller.d.ts +0 -1
- package/lib/types/locale/en-US.d.ts +0 -1
- package/lib/types/locale/ru-RU.d.ts +0 -1
- package/lib/types/locale/vi-VN.d.ts +0 -1
- package/lib/types/locale/zh-TW.d.ts +0 -1
- package/lib/types/plugin.d.ts +0 -1
- package/lib/types/services/exchange.service.d.ts +0 -1
- package/lib/types/services/operate.service.d.ts +0 -1
- package/lib/types/services/request.service.d.ts +0 -1
- package/lib/types/services/upload-notification.service.d.ts +0 -1
- package/lib/types/services/upload-progress.service.d.ts +0 -1
- package/lib/types/services/utils/snapshot.d.ts +0 -1
- package/lib/types/services/utils/tool.d.ts +0 -1
- package/lib/types/views/UploadNotificationContainer.d.ts +0 -1
- package/lib/types/views/link-list/LinkList.d.ts +0 -1
- package/lib/types/views/upload-again/UploadAgain.d.ts +0 -1
- package/lib/types/views/upload-button/UploadButton.d.ts +0 -1
- package/lib/types/views/upload-error/UploadError.d.ts +0 -1
- package/lib/types/views/upload-notification/UploadNotification.d.ts +0 -1
- package/lib/types/views/upload-success/UploadSuccess.d.ts +0 -1
- package/lib/types/views/uploading/Uploading.d.ts +0 -1
- package/lib/types/views/uploading/upload-cancel/UploadCancel.d.ts +0 -1
- package/lib/types/views/uploading/upload-progress/UploadProgress.d.ts +0 -1
- package/lib/umd/index.js +2 -2
- package/package.json +8 -8
package/lib/types/plugin.d.ts
CHANGED
@@ -2,7 +2,6 @@ import { IDisposable, IDocumentData, IWorkbookData, Disposable } from '@univerjs
|
|
2
2
|
import { IError, UniverType } from '@univerjs/protocol';
|
3
3
|
import { Observable } from 'rxjs';
|
4
4
|
import { RequestService } from './request.service';
|
5
|
-
|
6
5
|
export declare enum RequestState {
|
7
6
|
UPLOAD = 0,
|
8
7
|
IMPORT = 1,
|
@@ -3,7 +3,6 @@ import { IProgressService, IMessageService } from '@univerjs/ui';
|
|
3
3
|
import { UniverType } from '@univerjs/protocol';
|
4
4
|
import { ExchangeService } from './exchange.service';
|
5
5
|
import { UploadNotificationService } from './upload-notification.service';
|
6
|
-
|
7
6
|
export interface IExchangeOperateService {
|
8
7
|
interrupt(): void;
|
9
8
|
/**
|
@@ -2,7 +2,6 @@ import { IConfigService, IDisposable } from '@univerjs/core';
|
|
2
2
|
import { HTTPService } from '@univerjs/network';
|
3
3
|
import { IError, UniverType } from '@univerjs/protocol';
|
4
4
|
import { ISheetBlockJson, ISnapshotJson } from './utils/snapshot';
|
5
|
-
|
6
5
|
export declare const EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY = "EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY";
|
7
6
|
export declare const EXCHANGE_IMPORT_SERVER_URL_KEY = "EXCHANGE_IMPORT_SERVER_URL_KEY";
|
8
7
|
export declare const EXCHANGE_EXPORT_SERVER_URL_KEY = "EXCHANGE_EXPORT_SERVER_URL_KEY";
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import { IWorkbookData, Nullable } from '@univerjs/core';
|
2
2
|
import { IDocumentMeta, ISheetBlock, ISnapshot, IWorkbookMeta, IWorksheetMeta } from '@univerjs/protocol';
|
3
|
-
|
4
3
|
export interface IWorksheetMetaJson extends Omit<IWorksheetMeta, 'originalMeta'> {
|
5
4
|
originalMeta: string;
|
6
5
|
}
|