@univerjs-pro/collaboration-client 0.5.0-nightly.202411121606 → 0.5.0-nightly.202411141606

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 (84) hide show
  1. package/lib/cjs/index.js +1 -1
  2. package/lib/cjs/locale/en-US.js +1 -1
  3. package/lib/cjs/locale/fa-IR.js +1 -1
  4. package/lib/cjs/locale/ru-RU.js +1 -1
  5. package/lib/cjs/locale/vi-VN.js +1 -1
  6. package/lib/cjs/locale/zh-CN.js +1 -1
  7. package/lib/cjs/locale/zh-TW.js +1 -1
  8. package/lib/es/index.js +1 -1
  9. package/lib/es/locale/en-US.js +1 -1
  10. package/lib/es/locale/fa-IR.js +1 -1
  11. package/lib/es/locale/ru-RU.js +1 -1
  12. package/lib/es/locale/vi-VN.js +1 -1
  13. package/lib/es/locale/zh-CN.js +1 -1
  14. package/lib/es/locale/zh-TW.js +1 -1
  15. package/lib/types/config/config.d.ts +48 -0
  16. package/lib/types/controllers/collab-cursor/__tests__/doc-collab-cursor.controller.spec.d.ts +23 -0
  17. package/lib/types/controllers/collab-cursor/__tests__/serialize-text-ranges.spec.d.ts +1 -0
  18. package/lib/types/controllers/collab-cursor/__tests__/sheet-collab-cursor.controller.spec.d.ts +1 -0
  19. package/lib/types/controllers/collab-cursor/collab-cursor.controller.d.ts +22 -0
  20. package/lib/types/controllers/collab-cursor/doc-collab-cursor-entity.d.ts +38 -0
  21. package/lib/types/controllers/collab-cursor/doc-collab-cursor-render.controller.d.ts +24 -0
  22. package/lib/types/controllers/collab-cursor/serialize-text-ranges.d.ts +3 -0
  23. package/lib/types/controllers/collab-cursor/sheet-collab-cursor-entity.d.ts +39 -0
  24. package/lib/types/controllers/collab-cursor/sheet-collab-cursor-render.controller.d.ts +21 -0
  25. package/lib/types/controllers/collab-status/collab-status.controller.d.ts +18 -0
  26. package/lib/types/controllers/collaboration/__tests__/collaboration.controller.spec.d.ts +4 -0
  27. package/lib/types/controllers/collaboration/__tests__/mock-text-selection-render-manager.service.d.ts +0 -0
  28. package/lib/types/controllers/collaboration/__tests__/mocks.d.ts +54 -0
  29. package/lib/types/controllers/collaboration/collaboration-entity.d.ts +91 -0
  30. package/lib/types/controllers/collaboration/collaboration-state.d.ts +303 -0
  31. package/lib/types/controllers/collaboration/collaboration.controller.d.ts +24 -0
  32. package/lib/types/controllers/collaboration/utils/changeset-utils.d.ts +18 -0
  33. package/lib/types/controllers/collaboration/utils/empty.d.ts +2 -0
  34. package/lib/types/controllers/config.schema.d.ts +29 -0
  35. package/lib/types/controllers/data-loader/__tests__/data-loader.controller.spec.d.ts +1 -0
  36. package/lib/types/controllers/data-loader/data-loader.controller.d.ts +22 -0
  37. package/lib/types/controllers/file-name/file-name.controller.d.ts +12 -0
  38. package/lib/types/controllers/telemetry.d.ts +11 -0
  39. package/lib/types/index.d.ts +35 -890
  40. package/lib/types/locale/en-US.d.ts +3 -0
  41. package/lib/types/locale/fa-IR.d.ts +3 -0
  42. package/lib/types/locale/ru-RU.d.ts +3 -0
  43. package/lib/types/locale/vi-VN.d.ts +3 -0
  44. package/lib/types/locale/zh-CN.d.ts +39 -0
  45. package/lib/types/locale/zh-TW.d.ts +3 -0
  46. package/lib/types/models/cursor.d.ts +30 -0
  47. package/lib/types/plugin.d.ts +18 -0
  48. package/lib/types/services/auth-server/auth-server.service.d.ts +10 -0
  49. package/lib/types/services/auth-server/authz-io-http.service.d.ts +30 -0
  50. package/lib/types/services/auth-server/domain-request.service.d.ts +6 -0
  51. package/lib/types/services/auth-server/util.d.ts +1 -0
  52. package/lib/types/services/collaboration-session/collaboration-session.d.ts +59 -0
  53. package/lib/types/services/collaboration-session/collaboration-session.service.d.ts +61 -0
  54. package/lib/types/services/color-assign/color-assign.service.d.ts +10 -0
  55. package/lib/types/services/comment/comment.service.d.ts +6 -0
  56. package/lib/types/services/image-remote/image-io.service.d.ts +34 -0
  57. package/lib/types/services/ime-cache-transform/doc-transform-ime-cache.service.d.ts +13 -0
  58. package/lib/types/services/local-cache/local-cache.service.d.ts +37 -0
  59. package/lib/types/services/member/member.service.d.ts +77 -0
  60. package/lib/types/services/permission/permission.service.d.ts +12 -0
  61. package/lib/types/services/range-selection/sheet-transform-selections.service.d.ts +13 -0
  62. package/lib/types/services/single-active-unit/single-active-unit.service.d.ts +39 -0
  63. package/lib/types/services/snapshot-server/snapshot-server.service.d.ts +21 -0
  64. package/lib/types/services/socket/collaboration-socket.service.d.ts +34 -0
  65. package/lib/types/services/socket/serialize.d.ts +3 -0
  66. package/lib/types/services/state-cache-transform/doc-transform-state-cache.service.d.ts +12 -0
  67. package/lib/types/services/sync-editing-collab-cursor/doc-sync-editing-collab-cursor.service.d.ts +13 -0
  68. package/lib/types/services/text-selection/doc-transform-selections.service.d.ts +8 -0
  69. package/lib/types/services/undoredo/collaborative-undoredo.service.d.ts +19 -0
  70. package/lib/types/services/url/url.service.d.ts +12 -0
  71. package/lib/types/services/url/web-url.service.d.ts +10 -0
  72. package/lib/types/views/components/CollabStatus.d.ts +10 -0
  73. package/lib/types/views/components/CollabStatus.stories.d.ts +8 -0
  74. package/lib/types/views/shapes/doc-collab-cursor.d.ts +27 -0
  75. package/lib/types/views/shapes/sheet-collab-cursor.shape.d.ts +27 -0
  76. package/lib/types/views/shapes/text-bubble.shape.d.ts +19 -0
  77. package/lib/umd/index.js +1 -1
  78. package/lib/umd/locale/en-US.js +1 -1
  79. package/lib/umd/locale/fa-IR.js +1 -1
  80. package/lib/umd/locale/ru-RU.js +1 -1
  81. package/lib/umd/locale/vi-VN.js +1 -1
  82. package/lib/umd/locale/zh-CN.js +1 -1
  83. package/lib/umd/locale/zh-TW.js +1 -1
  84. package/package.json +16 -16
@@ -1 +1 @@
1
- (function(_0xd45c65,_0x116486){var _0x39e743=_0x128d,_0x1a785a=_0xd45c65();while(!![]){try{var _0x2d3da2=parseInt(_0x39e743(0x170))/0x1*(parseInt(_0x39e743(0x163))/0x2)+-parseInt(_0x39e743(0x171))/0x3*(-parseInt(_0x39e743(0x166))/0x4)+-parseInt(_0x39e743(0x168))/0x5+-parseInt(_0x39e743(0x17b))/0x6+-parseInt(_0x39e743(0x178))/0x7+-parseInt(_0x39e743(0x162))/0x8*(-parseInt(_0x39e743(0x179))/0x9)+-parseInt(_0x39e743(0x165))/0xa;if(_0x2d3da2===_0x116486)break;else _0x1a785a['push'](_0x1a785a['shift']());}catch(_0x2669ee){_0x1a785a['push'](_0x1a785a['shift']());}}}(_0xa0af,0xe6c0f),function(_0x2aadf0,_0x809a79){var _0x40ac72=_0x128d;typeof exports==_0x40ac72(0x169)&&typeof module<'u'?module[_0x40ac72(0x177)]=_0x809a79():typeof define==_0x40ac72(0x16e)&&define['amd']?define(_0x809a79):(_0x2aadf0=typeof globalThis<'u'?globalThis:_0x2aadf0||self,_0x2aadf0[_0x40ac72(0x17a)]=_0x809a79());}(this,function(){'use strict';var _0x1fa0d7=_0x128d;return{'collab-client':{'tooltip':{'reconnect':_0x1fa0d7(0x161)}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':_0x1fa0d7(0x160),'notCollab':_0x1fa0d7(0x174),'synced':'Synced','syncing':_0x1fa0d7(0x16b),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x1fa0d7(0x167),'will-retry':_0x1fa0d7(0x175),'room-full':'Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','collaboration-timeout':_0x1fa0d7(0x16d)},'conflict':{'title':_0x1fa0d7(0x16f),'content':_0x1fa0d7(0x16c)},'permission':{'title':_0x1fa0d7(0x164),'content':_0x1fa0d7(0x176)},'collaboration':{'single-unit':{'warning':_0x1fa0d7(0x16a)},'closeRoom':_0x1fa0d7(0x172)},'auth':{'needGotoLoginAlert':_0x1fa0d7(0x173)}};}));function _0x128d(_0x5ec4fb,_0x77e285){var _0xa0af65=_0xa0af();return _0x128d=function(_0x128d55,_0x30e351){_0x128d55=_0x128d55-0x160;var _0x36a882=_0xa0af65[_0x128d55];return _0x36a882;},_0x128d(_0x5ec4fb,_0x77e285);}function _0xa0af(){var _0xa69037=['Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Local\x20file','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','exports','423885yWGtvQ','1665XLvWEw','UniverCollaborationClientEnUS','3799374VBXzxx','Edit\x20conflicts','Click\x20to\x20Reconnect','50824cBtOlx','869274olYjOD','Authentication\x20Error','23440250nsTZmI','1519348YjaafR','Connection\x20failed,\x20please\x20check\x20your\x20network.','2251125YDVhmy','object','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Syncing...','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','function','Collaboration\x20Conflict','4pbnqyi','12UiLKsI'];_0xa0af=function(){return _0xa69037;};return _0xa0af();}
1
+ function _0x21c9(_0x279dba,_0xb4bd55){var _0x5282fe=_0x5282();return _0x21c9=function(_0x21c9eb,_0x1be99c){_0x21c9eb=_0x21c9eb-0x1b9;var _0x37b4cb=_0x5282fe[_0x21c9eb];return _0x37b4cb;},_0x21c9(_0x279dba,_0xb4bd55);}function _0x5282(){var _0x1324a2=['Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','UniverProCollaborationClientEnUS','2080dXVodR','10jWvmpp','34648ceceyD','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Syncing...','2181KDhofC','Synced','1uLgtAi','amd','3786588YBnMBy','301494RFzteq','Click\x20to\x20Reconnect','Local\x20file','Connection\x20failed,\x20please\x20check\x20your\x20network.','object','Collaboration\x20Conflict','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','339562AKmMDC','2517779FmLnzO','exports','791xAptAq','Authentication\x20Error','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','25igZctz','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Syncing\x20server\x20data...','337185QYwqqZ'];_0x5282=function(){return _0x1324a2;};return _0x5282();}(function(_0x357fc9,_0x4fe305){var _0x44663f=_0x21c9,_0x2fe641=_0x357fc9();while(!![]){try{var _0x15c5cd=parseInt(_0x44663f(0x1c8))/0x1*(-parseInt(_0x44663f(0x1d2))/0x2)+-parseInt(_0x44663f(0x1c6))/0x3*(parseInt(_0x44663f(0x1c1))/0x4)+-parseInt(_0x44663f(0x1bb))/0x5*(parseInt(_0x44663f(0x1cb))/0x6)+parseInt(_0x44663f(0x1d5))/0x7*(parseInt(_0x44663f(0x1c3))/0x8)+parseInt(_0x44663f(0x1be))/0x9+-parseInt(_0x44663f(0x1c2))/0xa*(-parseInt(_0x44663f(0x1d3))/0xb)+parseInt(_0x44663f(0x1ca))/0xc;if(_0x15c5cd===_0x4fe305)break;else _0x2fe641['push'](_0x2fe641['shift']());}catch(_0x4dee08){_0x2fe641['push'](_0x2fe641['shift']());}}}(_0x5282,0x42770),function(_0x1dfbe9,_0x2f049a){var _0x5d62d9=_0x21c9;typeof exports==_0x5d62d9(0x1cf)&&typeof module<'u'?module[_0x5d62d9(0x1d4)]=_0x2f049a():typeof define=='function'&&define[_0x5d62d9(0x1c9)]?define(_0x2f049a):(_0x1dfbe9=typeof globalThis<'u'?globalThis:_0x1dfbe9||self,_0x1dfbe9[_0x5d62d9(0x1c0)]=_0x2f049a());}(this,function(){'use strict';var _0x1f6a25=_0x21c9;return{'collab-client':{'tooltip':{'reconnect':_0x1f6a25(0x1cc)}},'collabStatus':{'fetchMiss':_0x1f6a25(0x1bd),'conflict':'Edit\x20conflicts','notCollab':_0x1f6a25(0x1cd),'synced':_0x1f6a25(0x1c7),'syncing':_0x1f6a25(0x1c5),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x1f6a25(0x1ce),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x1f6a25(0x1bf),'collaboration-timeout':_0x1f6a25(0x1bc)},'conflict':{'title':_0x1f6a25(0x1d0),'content':_0x1f6a25(0x1ba)},'permission':{'title':_0x1f6a25(0x1b9),'content':_0x1f6a25(0x1d1)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x1f6a25(0x1c4)},'auth':{'needGotoLoginAlert':'Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.'}};}));
@@ -1 +1 @@
1
- function _0x165b(){var _0x22536c=['تداخل\x20ویرایش','8PTIWXc','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','یک\x20تداخل\x20بین\x20نسخه\x20محلی\x20شما\x20و\x20نسخه\x20در\x20سرور\x20وجود\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20ذخیره\x20کنید،\x20زیرا\x20آنها\x20پس\x20از\x20بازیابی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','exports','خطای\x20اعتبارسنجی','2181490EMOvWm','9WklUcg','117224vCYSuh','4052314eARpsW','115678kaHsaW','8796915baOsCw','اعمال\x20شما\x20با\x20مجوزهای\x20سرور\x20تداخل\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20در\x20جای\x20دیگر\x20ذخیره\x20کنید\x20زیرا\x20پس\x20از\x20تازه\x20سازی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','در\x20حال\x20همگام\x20سازی...','آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند','4192998ciDbde','همگام\x20سازی','ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.','amd','function','16605dnaFJs','object'];_0x165b=function(){return _0x22536c;};return _0x165b();}function _0x346c(_0x2506b1,_0x4e9211){var _0x165b4c=_0x165b();return _0x346c=function(_0x346c7c,_0x4fd3f7){_0x346c7c=_0x346c7c-0x15b;var _0x408f74=_0x165b4c[_0x346c7c];return _0x408f74;},_0x346c(_0x2506b1,_0x4e9211);}(function(_0x4d82f3,_0x47c613){var _0x1e4c0c=_0x346c,_0x19f78a=_0x4d82f3();while(!![]){try{var _0x49f7ad=-parseInt(_0x1e4c0c(0x161))/0x1*(-parseInt(_0x1e4c0c(0x164))/0x2)+parseInt(_0x1e4c0c(0x171))/0x3+-parseInt(_0x1e4c0c(0x162))/0x4+-parseInt(_0x1e4c0c(0x160))/0x5+parseInt(_0x1e4c0c(0x16c))/0x6+parseInt(_0x1e4c0c(0x163))/0x7*(parseInt(_0x1e4c0c(0x15b))/0x8)+-parseInt(_0x1e4c0c(0x165))/0x9;if(_0x49f7ad===_0x47c613)break;else _0x19f78a['push'](_0x19f78a['shift']());}catch(_0x4b2294){_0x19f78a['push'](_0x19f78a['shift']());}}}(_0x165b,0x5814e),function(_0x37ebb7,_0x5135a6){var _0x3f58fc=_0x346c;typeof exports==_0x3f58fc(0x172)&&typeof module<'u'?module[_0x3f58fc(0x15e)]=_0x5135a6():typeof define==_0x3f58fc(0x170)&&define[_0x3f58fc(0x16f)]?define(_0x5135a6):(_0x37ebb7=typeof globalThis<'u'?globalThis:_0x37ebb7||self,_0x37ebb7['UniverCollaborationClientFaIR']=_0x5135a6());}(this,function(){'use strict';var _0xce5a6e=_0x346c;return{'collab-client':{'tooltip':{'reconnect':_0xce5a6e(0x167)}},'collabStatus':{'fetchMiss':'در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','conflict':_0xce5a6e(0x173),'notCollab':'پرونده\x20محلی','synced':_0xce5a6e(0x16d),'syncing':_0xce5a6e(0x16a),'offline':_0xce5a6e(0x16b)},'session':{'connection-failed':_0xce5a6e(0x168),'will-retry':_0xce5a6e(0x15c),'room-full':_0xce5a6e(0x169),'collaboration-timeout':'سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.'},'conflict':{'title':'تداخل\x20همکاری','content':_0xce5a6e(0x15d)},'permission':{'title':_0xce5a6e(0x15f),'content':_0xce5a6e(0x166)},'collaboration':{'single-unit':{'warning':'شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.'},'closeRoom':'امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.'},'auth':{'needGotoLoginAlert':_0xce5a6e(0x16e)}};}));
1
+ (function(_0x4e3f90,_0x561046){var _0x16df3b=_0x29e9,_0x217a9f=_0x4e3f90();while(!![]){try{var _0x3b69b7=parseInt(_0x16df3b(0x111))/0x1+-parseInt(_0x16df3b(0x124))/0x2+-parseInt(_0x16df3b(0x10e))/0x3+-parseInt(_0x16df3b(0x11a))/0x4+parseInt(_0x16df3b(0x110))/0x5*(-parseInt(_0x16df3b(0x116))/0x6)+-parseInt(_0x16df3b(0x125))/0x7*(parseInt(_0x16df3b(0x11e))/0x8)+parseInt(_0x16df3b(0x112))/0x9*(parseInt(_0x16df3b(0x121))/0xa);if(_0x3b69b7===_0x561046)break;else _0x217a9f['push'](_0x217a9f['shift']());}catch(_0x161cea){_0x217a9f['push'](_0x217a9f['shift']());}}}(_0x2452,0x6a94b),function(_0x1d8a48,_0x419814){var _0x1744a1=_0x29e9;typeof exports==_0x1744a1(0x11c)&&typeof module<'u'?module['exports']=_0x419814():typeof define=='function'&&define[_0x1744a1(0x128)]?define(_0x419814):(_0x1d8a48=typeof globalThis<'u'?globalThis:_0x1d8a48||self,_0x1d8a48[_0x1744a1(0x129)]=_0x419814());}(this,function(){'use strict';var _0x4acdf1=_0x29e9;return{'collab-client':{'tooltip':{'reconnect':_0x4acdf1(0x11d)}},'collabStatus':{'fetchMiss':_0x4acdf1(0x11b),'conflict':_0x4acdf1(0x126),'notCollab':_0x4acdf1(0x119),'synced':'همگام\x20سازی','syncing':_0x4acdf1(0x122),'offline':_0x4acdf1(0x118)},'session':{'connection-failed':_0x4acdf1(0x10f),'will-retry':_0x4acdf1(0x120),'room-full':_0x4acdf1(0x127),'collaboration-timeout':_0x4acdf1(0x10d)},'conflict':{'title':_0x4acdf1(0x123),'content':_0x4acdf1(0x115)},'permission':{'title':_0x4acdf1(0x11f),'content':_0x4acdf1(0x117)},'collaboration':{'single-unit':{'warning':_0x4acdf1(0x113)},'closeRoom':_0x4acdf1(0x12a)},'auth':{'needGotoLoginAlert':_0x4acdf1(0x114)}};}));function _0x29e9(_0x19d276,_0xd98f00){var _0x24521c=_0x2452();return _0x29e9=function(_0x29e9fc,_0x5784e4){_0x29e9fc=_0x29e9fc-0x10d;var _0x365162=_0x24521c[_0x29e9fc];return _0x365162;},_0x29e9(_0x19d276,_0xd98f00);}function _0x2452(){var _0x3f58d0=['در\x20حال\x20همگام\x20سازی...','تداخل\x20همکاری','1454422TYUnzc','8666botvfI','تداخل\x20ویرایش','اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','amd','UniverProCollaborationClientFaIR','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.','سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.','2539518Qfnwup','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','40PbAOJu','834568hdDHun','9ccGUyX','شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.','ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.','یک\x20تداخل\x20بین\x20نسخه\x20محلی\x20شما\x20و\x20نسخه\x20در\x20سرور\x20وجود\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20ذخیره\x20کنید،\x20زیرا\x20آنها\x20پس\x20از\x20بازیابی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','202494KjHPRb','اعمال\x20شما\x20با\x20مجوزهای\x20سرور\x20تداخل\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20در\x20جای\x20دیگر\x20ذخیره\x20کنید\x20زیرا\x20پس\x20از\x20تازه\x20سازی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند','پرونده\x20محلی','1737828DMjnSF','در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','object','برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','2768lDcLEn','خطای\x20اعتبارسنجی','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','23085010MvOzDd'];_0x2452=function(){return _0x3f58d0;};return _0x2452();}
@@ -1 +1 @@
1
- function _0x510f(_0x16dff6,_0x15871a){var _0x5af4e3=_0x5af4();return _0x510f=function(_0x510f69,_0x1866de){_0x510f69=_0x510f69-0x195;var _0x513bad=_0x5af4e3[_0x510f69];return _0x513bad;},_0x510f(_0x16dff6,_0x15871a);}(function(_0x365426,_0x1facb7){var _0x563b02=_0x510f,_0x55fd53=_0x365426();while(!![]){try{var _0x2a7d95=parseInt(_0x563b02(0x1ae))/0x1+parseInt(_0x563b02(0x19c))/0x2*(-parseInt(_0x563b02(0x1af))/0x3)+parseInt(_0x563b02(0x19a))/0x4+-parseInt(_0x563b02(0x1a5))/0x5*(-parseInt(_0x563b02(0x199))/0x6)+-parseInt(_0x563b02(0x1a6))/0x7+-parseInt(_0x563b02(0x1aa))/0x8*(-parseInt(_0x563b02(0x1a0))/0x9)+-parseInt(_0x563b02(0x195))/0xa*(parseInt(_0x563b02(0x196))/0xb);if(_0x2a7d95===_0x1facb7)break;else _0x55fd53['push'](_0x55fd53['shift']());}catch(_0x267c69){_0x55fd53['push'](_0x55fd53['shift']());}}}(_0x5af4,0x4200e),function(_0x1fb77a,_0x224d7a){var _0x479489=_0x510f;typeof exports==_0x479489(0x198)&&typeof module<'u'?module[_0x479489(0x19b)]=_0x224d7a():typeof define==_0x479489(0x19d)&&define[_0x479489(0x1a9)]?define(_0x224d7a):(_0x1fb77a=typeof globalThis<'u'?globalThis:_0x1fb77a||self,_0x1fb77a[_0x479489(0x197)]=_0x224d7a());}(this,function(){'use strict';var _0x25cbda=_0x510f;return{'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0x25cbda(0x1b0),'conflict':_0x25cbda(0x1a4),'notCollab':_0x25cbda(0x1a2),'synced':_0x25cbda(0x1a7),'syncing':_0x25cbda(0x19e),'offline':_0x25cbda(0x19f)},'session':{'connection-failed':_0x25cbda(0x1ad),'will-retry':_0x25cbda(0x1ab),'room-full':_0x25cbda(0x1a3),'collaboration-timeout':_0x25cbda(0x1a1)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x25cbda(0x1a8)},'permission':{'title':'Authentication\x20Error','content':'Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.'},'collaboration':{'single-unit':{'warning':_0x25cbda(0x1ac)},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':'Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.'}};}));function _0x5af4(){var _0xca027c=['object','3282EIXzza','2078020eXcOID','exports','556654qYuaLi','function','Syncing...','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','27TPmiHh','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Local\x20file','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Edit\x20conflicts','1220ApJjDP','3659922HsrAay','Synced','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','amd','160696nuccgq','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Connection\x20failed,\x20please\x20check\x20your\x20network.','417277EpZoTo','3emDmcN','Syncing\x20server\x20data...','10lCOboZ','648868iXFAQd','UniverCollaborationClientRuRU'];_0x5af4=function(){return _0xca027c;};return _0x5af4();}
1
+ function _0xc9e1(_0x5d0be0,_0x93fb62){var _0x57ace4=_0x57ac();return _0xc9e1=function(_0xc9e13a,_0x2bd220){_0xc9e13a=_0xc9e13a-0x17b;var _0x3872f6=_0x57ace4[_0xc9e13a];return _0x3872f6;},_0xc9e1(_0x5d0be0,_0x93fb62);}function _0x57ac(){var _0x21752b=['amd','Edit\x20conflicts','object','Authentication\x20Error','function','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','8649322NNhJhx','558678sbUsQn','Synced','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20please\x20check\x20your\x20network.','2368224NreKnS','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','4899CFDZQU','30jwynKQ','Syncing\x20server\x20data...','Click\x20to\x20Reconnect','Collaboration\x20Conflict','549316Izonni','1XvhqvU','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','UniverProCollaborationClientRuRU','7WPDdcn','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','764QPkJyf','153165tQEXiC','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','63621iKmIkU','Local\x20file','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'];_0x57ac=function(){return _0x21752b;};return _0x57ac();}(function(_0x2e8719,_0x5c1e86){var _0x4219d9=_0xc9e1,_0x4bfe22=_0x2e8719();while(!![]){try{var _0x160672=-parseInt(_0x4219d9(0x18e))/0x1*(-parseInt(_0x4219d9(0x18d))/0x2)+-parseInt(_0x4219d9(0x188))/0x3*(-parseInt(_0x4219d9(0x193))/0x4)+-parseInt(_0x4219d9(0x194))/0x5+-parseInt(_0x4219d9(0x181))/0x6*(-parseInt(_0x4219d9(0x191))/0x7)+parseInt(_0x4219d9(0x186))/0x8+parseInt(_0x4219d9(0x196))/0x9*(parseInt(_0x4219d9(0x189))/0xa)+-parseInt(_0x4219d9(0x180))/0xb;if(_0x160672===_0x5c1e86)break;else _0x4bfe22['push'](_0x4bfe22['shift']());}catch(_0x237f3b){_0x4bfe22['push'](_0x4bfe22['shift']());}}}(_0x57ac,0x2bf06),function(_0xc6ce21,_0x1b7e03){var _0x1dcbe8=_0xc9e1;typeof exports==_0x1dcbe8(0x17c)&&typeof module<'u'?module['exports']=_0x1b7e03():typeof define==_0x1dcbe8(0x17e)&&define[_0x1dcbe8(0x199)]?define(_0x1b7e03):(_0xc6ce21=typeof globalThis<'u'?globalThis:_0xc6ce21||self,_0xc6ce21[_0x1dcbe8(0x190)]=_0x1b7e03());}(this,function(){'use strict';var _0x444459=_0xc9e1;return{'collab-client':{'tooltip':{'reconnect':_0x444459(0x18b)}},'collabStatus':{'fetchMiss':_0x444459(0x18a),'conflict':_0x444459(0x17b),'notCollab':_0x444459(0x197),'synced':_0x444459(0x182),'syncing':'Syncing...','offline':_0x444459(0x18f)},'session':{'connection-failed':_0x444459(0x185),'will-retry':_0x444459(0x192),'room-full':_0x444459(0x187),'collaboration-timeout':_0x444459(0x184)},'conflict':{'title':_0x444459(0x18c),'content':_0x444459(0x183)},'permission':{'title':_0x444459(0x17d),'content':'Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.'},'collaboration':{'single-unit':{'warning':_0x444459(0x17f)},'closeRoom':_0x444459(0x198)},'auth':{'needGotoLoginAlert':_0x444459(0x195)}};}));
@@ -1 +1 @@
1
- function _0x4b8a(_0x55f31c,_0x342eee){var _0x34bd6a=_0x34bd();return _0x4b8a=function(_0x4b8a13,_0x41d6b7){_0x4b8a13=_0x4b8a13-0xb3;var _0xbf342a=_0x34bd6a[_0x4b8a13];return _0xbf342a;},_0x4b8a(_0x55f31c,_0x342eee);}function _0x34bd(){var _0x575932=['UniverCollaborationClientViVN','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','object','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','function','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Syncing...','Collaboration\x20Conflict','Edit\x20conflicts','556NzxmVr','amd','95142JClPve','507770CfKUYC','1086YllcXA','67368OteTul','399mZKkBU','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Local\x20file','1123762lWNUKE','Click\x20to\x20Reconnect','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','4562289eRIIfI','Synced','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','7403840FtmOeD','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.'];_0x34bd=function(){return _0x575932;};return _0x34bd();}(function(_0x5d14cc,_0x25e9d0){var _0x2aba4e=_0x4b8a,_0x50dcc8=_0x5d14cc();while(!![]){try{var _0x5619b5=parseInt(_0x2aba4e(0xca))/0x1+-parseInt(_0x2aba4e(0xc6))/0x2+-parseInt(_0x2aba4e(0xc5))/0x3*(-parseInt(_0x2aba4e(0xc1))/0x4)+parseInt(_0x2aba4e(0xc4))/0x5+parseInt(_0x2aba4e(0xc3))/0x6*(parseInt(_0x2aba4e(0xc7))/0x7)+-parseInt(_0x2aba4e(0xb5))/0x8+-parseInt(_0x2aba4e(0xcd))/0x9;if(_0x5619b5===_0x25e9d0)break;else _0x50dcc8['push'](_0x50dcc8['shift']());}catch(_0x5ebe85){_0x50dcc8['push'](_0x50dcc8['shift']());}}}(_0x34bd,0xae2b6),function(_0x38d599,_0x555755){var _0x31789a=_0x4b8a;typeof exports==_0x31789a(0xba)&&typeof module<'u'?module['exports']=_0x555755():typeof define==_0x31789a(0xbc)&&define[_0x31789a(0xc2)]?define(_0x555755):(_0x38d599=typeof globalThis<'u'?globalThis:_0x38d599||self,_0x38d599[_0x31789a(0xb8)]=_0x555755());}(this,function(){'use strict';var _0x20e86f=_0x4b8a;return{'collab-client':{'tooltip':{'reconnect':_0x20e86f(0xcb)}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':_0x20e86f(0xc0),'notCollab':_0x20e86f(0xc9),'synced':_0x20e86f(0xb3),'syncing':_0x20e86f(0xbe),'offline':_0x20e86f(0xb9)},'session':{'connection-failed':'Connection\x20failed,\x20please\x20check\x20your\x20network.','will-retry':_0x20e86f(0xbd),'room-full':_0x20e86f(0xbb),'collaboration-timeout':_0x20e86f(0xcc)},'conflict':{'title':_0x20e86f(0xbf),'content':'There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.'},'permission':{'title':'Authentication\x20Error','content':_0x20e86f(0xb7)},'collaboration':{'single-unit':{'warning':_0x20e86f(0xb4)},'closeRoom':_0x20e86f(0xc8)},'auth':{'needGotoLoginAlert':_0x20e86f(0xb6)}};}));
1
+ function _0x489d(){var _0x401190=['Authentication\x20Error','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','UniverProCollaborationClientViVN','Syncing\x20server\x20data...','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Synced','Collaboration\x20Conflict','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','36Ukemnm','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','617008flEaqX','366VoVcht','object','22370eYFVeB','amd','3592990cOTSdf','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','368OlVxlf','219307oqKXes','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','14282XEkyqd','Syncing...','171346XseHsa','9YeWoJJ','348DvfzTo','Edit\x20conflicts','272660MplNrv'];_0x489d=function(){return _0x401190;};return _0x489d();}function _0x52db(_0x512062,_0x54bb02){var _0x489d3a=_0x489d();return _0x52db=function(_0x52db42,_0x81bc1a){_0x52db42=_0x52db42-0xa2;var _0x27fe09=_0x489d3a[_0x52db42];return _0x27fe09;},_0x52db(_0x512062,_0x54bb02);}(function(_0x52edff,_0x541163){var _0x61b3fc=_0x52db,_0xf12973=_0x52edff();while(!![]){try{var _0x3053d8=parseInt(_0x61b3fc(0xb0))/0x1+-parseInt(_0x61b3fc(0xbb))/0x2*(-parseInt(_0x61b3fc(0xae))/0x3)+parseInt(_0x61b3fc(0xa4))/0x4+parseInt(_0x61b3fc(0xb3))/0x5*(parseInt(_0x61b3fc(0xb1))/0x6)+-parseInt(_0x61b3fc(0xbd))/0x7*(parseInt(_0x61b3fc(0xb8))/0x8)+parseInt(_0x61b3fc(0xbe))/0x9*(parseInt(_0x61b3fc(0xb5))/0xa)+parseInt(_0x61b3fc(0xb9))/0xb*(parseInt(_0x61b3fc(0xa2))/0xc);if(_0x3053d8===_0x541163)break;else _0xf12973['push'](_0xf12973['shift']());}catch(_0x3c71b8){_0xf12973['push'](_0xf12973['shift']());}}}(_0x489d,0xd0cdf),function(_0x4500e6,_0x189db7){var _0x5e77ed=_0x52db;typeof exports==_0x5e77ed(0xb2)&&typeof module<'u'?module['exports']=_0x189db7():typeof define=='function'&&define[_0x5e77ed(0xb4)]?define(_0x189db7):(_0x4500e6=typeof globalThis<'u'?globalThis:_0x4500e6||self,_0x4500e6[_0x5e77ed(0xa8)]=_0x189db7());}(this,function(){'use strict';var _0x36723a=_0x52db;return{'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0x36723a(0xa9),'conflict':_0x36723a(0xa3),'notCollab':'Local\x20file','synced':_0x36723a(0xab),'syncing':_0x36723a(0xbc),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':'Connection\x20failed,\x20please\x20check\x20your\x20network.','will-retry':_0x36723a(0xb7),'room-full':_0x36723a(0xba),'collaboration-timeout':_0x36723a(0xaf)},'conflict':{'title':_0x36723a(0xac),'content':_0x36723a(0xa6)},'permission':{'title':_0x36723a(0xa5),'content':_0x36723a(0xb6)},'collaboration':{'single-unit':{'warning':_0x36723a(0xa7)},'closeRoom':_0x36723a(0xaa)},'auth':{'needGotoLoginAlert':_0x36723a(0xad)}};}));
@@ -1 +1 @@
1
- function _0x1349(_0x4f1bfe,_0x1b4926){var _0x1466ba=_0x1466();return _0x1349=function(_0x1349f2,_0x618010){_0x1349f2=_0x1349f2-0x1c2;var _0x5631cd=_0x1466ba[_0x1349f2];return _0x5631cd;},_0x1349(_0x4f1bfe,_0x1b4926);}function _0x1466(){var _0x1d5707=['点击重新连接','exports','10QsneeX','连接失败,将在一会儿之后重试连接','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','已离线,编辑将在本地缓存','由于协同房间被关闭,编辑权限被收回。','2447216YxEFLR','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','本地文件','155xZzuuf','33204DnWxpE','连接失败,请检查你的网络','权限错误','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','7256UUmxxr','276729urritw','保存中...','object','19VLvZFV','936530nlUujs','正在拉取服务端数据...','579088AYMgto','2185281OIBopS','function','你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','已同步'];_0x1466=function(){return _0x1d5707;};return _0x1466();}(function(_0x1cf2b0,_0x3772b5){var _0x284f9e=_0x1349,_0x960a02=_0x1cf2b0();while(!![]){try{var _0x2a826d=parseInt(_0x284f9e(0x1dc))/0x1*(-parseInt(_0x284f9e(0x1d8))/0x2)+-parseInt(_0x284f9e(0x1d9))/0x3+-parseInt(_0x284f9e(0x1c4))/0x4+-parseInt(_0x284f9e(0x1d3))/0x5*(parseInt(_0x284f9e(0x1d4))/0x6)+parseInt(_0x284f9e(0x1c2))/0x7+parseInt(_0x284f9e(0x1d0))/0x8+parseInt(_0x284f9e(0x1c5))/0x9*(parseInt(_0x284f9e(0x1cb))/0xa);if(_0x2a826d===_0x3772b5)break;else _0x960a02['push'](_0x960a02['shift']());}catch(_0x716675){_0x960a02['push'](_0x960a02['shift']());}}}(_0x1466,0x320c8),function(_0x2cbedb,_0x22bb44){var _0x59e764=_0x1349;typeof exports==_0x59e764(0x1db)&&typeof module<'u'?module[_0x59e764(0x1ca)]=_0x22bb44():typeof define==_0x59e764(0x1c6)&&define['amd']?define(_0x22bb44):(_0x2cbedb=typeof globalThis<'u'?globalThis:_0x2cbedb||self,_0x2cbedb['UniverCollaborationClientZhCN']=_0x22bb44());}(this,function(){'use strict';var _0x5ce36a=_0x1349;return{'collab-client':{'tooltip':{'reconnect':_0x5ce36a(0x1c9)}},'collabStatus':{'fetchMiss':_0x5ce36a(0x1c3),'conflict':'编辑冲突','notCollab':_0x5ce36a(0x1d2),'synced':_0x5ce36a(0x1c8),'syncing':_0x5ce36a(0x1da),'offline':_0x5ce36a(0x1ce)},'session':{'connection-failed':_0x5ce36a(0x1d5),'will-retry':_0x5ce36a(0x1cc),'room-full':'协同房间已满,你的编辑将在本地缓存','collaboration-timeout':'服务器未响应,你的编辑将在本地缓存'},'conflict':{'title':'协同冲突','content':_0x5ce36a(0x1d7)},'permission':{'title':_0x5ce36a(0x1d6),'content':_0x5ce36a(0x1c7)},'collaboration':{'single-unit':{'warning':_0x5ce36a(0x1cd)},'closeRoom':_0x5ce36a(0x1cf)},'auth':{'needGotoLoginAlert':_0x5ce36a(0x1d1)}};}));
1
+ function _0x195e(){var _0x281a68=['666420EKBIzn','object','UniverProCollaborationClientZhCN','连接失败,将在一会儿之后重试连接','2kSisKz','220649jfNjYm','1852TYGsFE','22053053yUGprn','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','本地文件','已离线,编辑将在本地缓存','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','权限错误','1140453IYqnrR','协同房间已满,你的编辑将在本地缓存','amd','协同冲突','保存中...','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','425vHIRxm','3013199GJiPMb','点击重新连接','1642536ibxDjL','exports','已同步','6szQybm','24wfNvBv','编辑冲突','正在拉取服务端数据...'];_0x195e=function(){return _0x281a68;};return _0x195e();}function _0x3ad1(_0x1ff649,_0xec6b84){var _0x195e54=_0x195e();return _0x3ad1=function(_0x3ad1b4,_0x408e71){_0x3ad1b4=_0x3ad1b4-0xd6;var _0x254a7e=_0x195e54[_0x3ad1b4];return _0x254a7e;},_0x3ad1(_0x1ff649,_0xec6b84);}(function(_0x4c16d5,_0xf0a57b){var _0x10269e=_0x3ad1,_0x54febf=_0x4c16d5();while(!![]){try{var _0x1aef1c=parseInt(_0x10269e(0xed))/0x1*(-parseInt(_0x10269e(0xec))/0x2)+-parseInt(_0x10269e(0xe1))/0x3+-parseInt(_0x10269e(0xee))/0x4*(parseInt(_0x10269e(0xde))/0x5)+-parseInt(_0x10269e(0xe4))/0x6*(parseInt(_0x10269e(0xdf))/0x7)+-parseInt(_0x10269e(0xe5))/0x8*(parseInt(_0x10269e(0xd8))/0x9)+-parseInt(_0x10269e(0xe8))/0xa+parseInt(_0x10269e(0xef))/0xb;if(_0x1aef1c===_0xf0a57b)break;else _0x54febf['push'](_0x54febf['shift']());}catch(_0x27cb17){_0x54febf['push'](_0x54febf['shift']());}}}(_0x195e,0x4e239),function(_0x24a982,_0x197254){var _0x134fb5=_0x3ad1;typeof exports==_0x134fb5(0xe9)&&typeof module<'u'?module[_0x134fb5(0xe2)]=_0x197254():typeof define=='function'&&define[_0x134fb5(0xda)]?define(_0x197254):(_0x24a982=typeof globalThis<'u'?globalThis:_0x24a982||self,_0x24a982[_0x134fb5(0xea)]=_0x197254());}(this,function(){'use strict';var _0x2fb47f=_0x3ad1;return{'collab-client':{'tooltip':{'reconnect':_0x2fb47f(0xe0)}},'collabStatus':{'fetchMiss':_0x2fb47f(0xe7),'conflict':_0x2fb47f(0xe6),'notCollab':_0x2fb47f(0xf1),'synced':_0x2fb47f(0xe3),'syncing':_0x2fb47f(0xdc),'offline':_0x2fb47f(0xf2)},'session':{'connection-failed':'连接失败,请检查你的网络','will-retry':_0x2fb47f(0xeb),'room-full':_0x2fb47f(0xd9),'collaboration-timeout':'服务器未响应,你的编辑将在本地缓存'},'conflict':{'title':_0x2fb47f(0xdb),'content':_0x2fb47f(0xf0)},'permission':{'title':_0x2fb47f(0xd7),'content':'你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。'},'collaboration':{'single-unit':{'warning':_0x2fb47f(0xd6)},'closeRoom':'由于协同房间被关闭,编辑权限被收回。'},'auth':{'needGotoLoginAlert':_0x2fb47f(0xdd)}};}));
@@ -1 +1 @@
1
- (function(_0x405021,_0x1fdbf7){var _0x419866=_0x54a0,_0x2024d6=_0x405021();while(!![]){try{var _0x3e7b9a=parseInt(_0x419866(0x176))/0x1*(parseInt(_0x419866(0x175))/0x2)+parseInt(_0x419866(0x16b))/0x3+parseInt(_0x419866(0x178))/0x4*(-parseInt(_0x419866(0x180))/0x5)+parseInt(_0x419866(0x177))/0x6*(parseInt(_0x419866(0x183))/0x7)+parseInt(_0x419866(0x17f))/0x8+-parseInt(_0x419866(0x171))/0x9+-parseInt(_0x419866(0x179))/0xa;if(_0x3e7b9a===_0x1fdbf7)break;else _0x2024d6['push'](_0x2024d6['shift']());}catch(_0xaf74a4){_0x2024d6['push'](_0x2024d6['shift']());}}}(_0x583c,0x6b94b),function(_0x234877,_0x3085ac){var _0x278c99=_0x54a0;typeof exports==_0x278c99(0x181)&&typeof module<'u'?module[_0x278c99(0x17a)]=_0x3085ac():typeof define==_0x278c99(0x182)&&define[_0x278c99(0x17b)]?define(_0x3085ac):(_0x234877=typeof globalThis<'u'?globalThis:_0x234877||self,_0x234877[_0x278c99(0x17d)]=_0x3085ac());}(this,function(){'use strict';var _0x3ebb79=_0x54a0;return{'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0x3ebb79(0x17e),'conflict':_0x3ebb79(0x173),'notCollab':'Local\x20file','synced':_0x3ebb79(0x169),'syncing':_0x3ebb79(0x17c),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x3ebb79(0x16e),'will-retry':_0x3ebb79(0x170),'room-full':_0x3ebb79(0x16a),'collaboration-timeout':_0x3ebb79(0x16d)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x3ebb79(0x174)},'permission':{'title':_0x3ebb79(0x172),'content':'Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.'},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x3ebb79(0x16c)},'auth':{'needGotoLoginAlert':_0x3ebb79(0x16f)}};}));function _0x54a0(_0x5033f0,_0x2b6dac){var _0x583c11=_0x583c();return _0x54a0=function(_0x54a0e1,_0x52b712){_0x54a0e1=_0x54a0e1-0x169;var _0x44a9ec=_0x583c11[_0x54a0e1];return _0x44a9ec;},_0x54a0(_0x5033f0,_0x2b6dac);}function _0x583c(){var _0x3fdea3=['228431BzjJBS','Synced','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','657531ECfUKN','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20please\x20check\x20your\x20network.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','2436948DZjyxT','Authentication\x20Error','Edit\x20conflicts','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','2atPVeH','771944neKhvj','138UUEHQd','9868hGNQms','7722680sNMsBx','exports','amd','Syncing...','UniverCollaborationClientZhTW','Syncing\x20server\x20data...','1212264gDSgyD','830dyEMjg','object','function'];_0x583c=function(){return _0x3fdea3;};return _0x583c();}
1
+ function _0x233d(){var _0x22d769=['Syncing\x20server\x20data...','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','UniverProCollaborationClientZhTW','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','50nlERsC','exports','3996795wwwttu','Local\x20file','4655928iQAZdV','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Collaboration\x20Conflict','6zNCYIU','2792qUqNqx','45jplOYE','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','amd','function','Authentication\x20Error','5656021LzBmoU','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Edit\x20conflicts','4254745vtPENR','Click\x20to\x20Reconnect','24574btChOl','object','16452ReDpmO','3438633rqDrTR'];_0x233d=function(){return _0x22d769;};return _0x233d();}function _0x4a66(_0x24dd9e,_0x1bde1e){var _0x233d4d=_0x233d();return _0x4a66=function(_0x4a66c0,_0x486726){_0x4a66c0=_0x4a66c0-0xd8;var _0x2e7ee5=_0x233d4d[_0x4a66c0];return _0x2e7ee5;},_0x4a66(_0x24dd9e,_0x1bde1e);}(function(_0x2c1991,_0x4e854e){var _0x58d786=_0x4a66,_0x4d977c=_0x2c1991();while(!![]){try{var _0x3f93f1=parseInt(_0x58d786(0xef))/0x1*(-parseInt(_0x58d786(0xdd))/0x2)+-parseInt(_0x58d786(0xe0))/0x3+parseInt(_0x58d786(0xe9))/0x4+parseInt(_0x58d786(0xdb))/0x5+-parseInt(_0x58d786(0xed))/0x6*(parseInt(_0x58d786(0xf4))/0x7)+parseInt(_0x58d786(0xee))/0x8*(-parseInt(_0x58d786(0xdf))/0x9)+parseInt(_0x58d786(0xe5))/0xa*(parseInt(_0x58d786(0xe7))/0xb);if(_0x3f93f1===_0x4e854e)break;else _0x4d977c['push'](_0x4d977c['shift']());}catch(_0x515560){_0x4d977c['push'](_0x4d977c['shift']());}}}(_0x233d,0xa79db),function(_0xc6207e,_0x4ffc){var _0xd29a32=_0x4a66;typeof exports==_0xd29a32(0xde)&&typeof module<'u'?module[_0xd29a32(0xe6)]=_0x4ffc():typeof define==_0xd29a32(0xf2)&&define[_0xd29a32(0xf1)]?define(_0x4ffc):(_0xc6207e=typeof globalThis<'u'?globalThis:_0xc6207e||self,_0xc6207e[_0xd29a32(0xe3)]=_0x4ffc());}(this,function(){'use strict';var _0x3f0b0f=_0x4a66;return{'collab-client':{'tooltip':{'reconnect':_0x3f0b0f(0xdc)}},'collabStatus':{'fetchMiss':_0x3f0b0f(0xe1),'conflict':_0x3f0b0f(0xda),'notCollab':_0x3f0b0f(0xe8),'synced':'Synced','syncing':'Syncing...','offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':'Connection\x20failed,\x20please\x20check\x20your\x20network.','will-retry':_0x3f0b0f(0xe2),'room-full':'Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','collaboration-timeout':_0x3f0b0f(0xea)},'conflict':{'title':_0x3f0b0f(0xec),'content':_0x3f0b0f(0xe4)},'permission':{'title':_0x3f0b0f(0xf3),'content':_0x3f0b0f(0xd8)},'collaboration':{'single-unit':{'warning':_0x3f0b0f(0xd9)},'closeRoom':_0x3f0b0f(0xeb)},'auth':{'needGotoLoginAlert':_0x3f0b0f(0xf0)}};}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs-pro/collaboration-client",
3
- "version": "0.5.0-nightly.202411121606",
3
+ "version": "0.5.0-nightly.202411141606",
4
4
  "private": false,
5
5
  "description": "Univer Collaboration Client",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -55,22 +55,22 @@
55
55
  "clsx": "^2.1.1",
56
56
  "crypto-js": "4.2.0",
57
57
  "uuid": "^11.0.2",
58
- "@univerjs-pro/collaboration": "0.5.0-nightly.202411121606",
59
- "@univerjs-pro/license": "0.5.0-nightly.202411121606",
60
- "@univerjs/docs": "0.5.0-nightly.202411121606",
61
- "@univerjs/design": "0.5.0-nightly.202411121606",
62
- "@univerjs/docs-ui": "0.5.0-nightly.202411121606",
63
- "@univerjs/core": "0.5.0-nightly.202411121606",
64
- "@univerjs/engine-formula": "0.5.0-nightly.202411121606",
65
- "@univerjs/drawing": "0.5.0-nightly.202411121606",
66
- "@univerjs/network": "0.5.0-nightly.202411121606",
58
+ "@univerjs-pro/license": "0.5.0-nightly.202411141606",
59
+ "@univerjs-pro/collaboration": "0.5.0-nightly.202411141606",
60
+ "@univerjs/core": "0.5.0-nightly.202411141606",
61
+ "@univerjs/docs": "0.5.0-nightly.202411141606",
62
+ "@univerjs/design": "0.5.0-nightly.202411141606",
63
+ "@univerjs/docs-ui": "0.5.0-nightly.202411141606",
64
+ "@univerjs/drawing": "0.5.0-nightly.202411141606",
65
+ "@univerjs/engine-formula": "0.5.0-nightly.202411141606",
66
+ "@univerjs/network": "0.5.0-nightly.202411141606",
67
+ "@univerjs/engine-render": "0.5.0-nightly.202411141606",
67
68
  "@univerjs/protocol": "0.1.39-alpha.38",
68
- "@univerjs/sheets": "0.5.0-nightly.202411121606",
69
- "@univerjs/rpc": "0.5.0-nightly.202411121606",
70
- "@univerjs/engine-render": "0.5.0-nightly.202411121606",
71
- "@univerjs/sheets-ui": "0.5.0-nightly.202411121606",
72
- "@univerjs/telemetry": "0.5.0-nightly.202411121606",
73
- "@univerjs/ui": "0.5.0-nightly.202411121606"
69
+ "@univerjs/rpc": "0.5.0-nightly.202411141606",
70
+ "@univerjs/sheets": "0.5.0-nightly.202411141606",
71
+ "@univerjs/sheets-ui": "0.5.0-nightly.202411141606",
72
+ "@univerjs/telemetry": "0.5.0-nightly.202411141606",
73
+ "@univerjs/ui": "0.5.0-nightly.202411141606"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@types/crypto-js": "^4.2.2",