@univerjs-pro/sheets-exchange-client 0.1.11 → 0.1.13

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.
Files changed (36) hide show
  1. package/README.md +1 -4
  2. package/lib/cjs/index.js +2 -1
  3. package/lib/es/index.js +2 -1
  4. package/lib/index.css +1 -0
  5. package/lib/locale/en-US.json +24 -0
  6. package/lib/locale/ru-RU.json +24 -0
  7. package/lib/locale/zh-CN.json +24 -0
  8. package/lib/types/commands/operations/exchange.operation.d.ts +4 -2
  9. package/lib/types/controllers/exchange.controller.d.ts +10 -5
  10. package/lib/types/controllers/menu.d.ts +5 -3
  11. package/lib/types/index.d.ts +9 -5
  12. package/lib/types/locale/en-US.d.ts +6 -0
  13. package/lib/types/locale/ru-RU.d.ts +25 -0
  14. package/lib/types/locale/zh-CN.d.ts +6 -0
  15. package/lib/types/plugin.d.ts +4 -4
  16. package/lib/types/services/exchange.service.d.ts +56 -31
  17. package/lib/types/services/operate.service.d.ts +66 -0
  18. package/lib/types/services/request.service.d.ts +17 -31
  19. package/lib/types/services/upload-notification.service.d.ts +54 -0
  20. package/lib/types/services/upload-progress.service.d.ts +5 -0
  21. package/lib/types/services/utils/snapshot.d.ts +27 -5
  22. package/lib/types/services/utils/tool.d.ts +13 -4
  23. package/lib/types/views/UploadNotificationContainer.d.ts +3 -0
  24. package/lib/types/views/link-list/LinkList.d.ts +7 -0
  25. package/lib/types/views/upload-again/UploadAgain.d.ts +3 -0
  26. package/lib/types/views/upload-button/UploadButton.d.ts +8 -0
  27. package/lib/types/views/upload-error/UploadError.d.ts +3 -0
  28. package/lib/types/views/upload-notification/UploadNotification.d.ts +3 -0
  29. package/lib/types/views/upload-success/UploadSuccess.d.ts +6 -0
  30. package/lib/types/views/uploading/Uploading.d.ts +3 -0
  31. package/lib/types/views/uploading/upload-cancel/UploadCancel.d.ts +3 -0
  32. package/lib/types/views/uploading/upload-progress/UploadProgress.d.ts +6 -0
  33. package/lib/umd/index.js +2 -1
  34. package/package.json +23 -11
  35. package/lib/types/locale/index.d.ts +0 -2
  36. package/lib/types/services/config.service.d.ts +0 -24
package/README.md CHANGED
@@ -20,8 +20,5 @@ npm i @univerjs-pro/sheets-exchange-client
20
20
  ```javascript
21
21
  import { UniverSheetsExchangeClientPlugin } from '@univerjs-pro/sheets-exchange-client';
22
22
 
23
- univer.registerPlugin(UniverSheetsExchangeClientPlugin, {
24
- // Show the menu in the toolbar, default is true
25
- showMenu: true,
26
- });
23
+ univer.registerPlugin(UniverSheetsExchangeClientPlugin);
27
24
  ```