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

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 _0x2d62(_0x36ead8,_0x31f32f){var _0x57604c=_0x5760();return _0x2d62=function(_0x2d624e,_0x4c1293){_0x2d624e=_0x2d624e-0x147;var _0x2ac12c=_0x57604c[_0x2d624e];return _0x2ac12c;},_0x2d62(_0x36ead8,_0x31f32f);}function _0x5760(){var _0x531bc4=['18gWlxaI','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','890100JyXrbg','Connection\x20failed,\x20please\x20check\x20your\x20network.','230005mMYMNt','328782shIZXg','2317jjKqIP','Syncing...','66GsBzey','238460TsSOZg','177eQadHn','Authentication\x20Error','exports','Synced','Syncing\x20server\x20data...','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.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','function','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Click\x20to\x20Reconnect','2056efJLpW','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','object','Collaboration\x20Conflict','168969ozGZLF','Local\x20file','4EOgKmi','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Edit\x20conflicts','UniverCollaborationClientEnUS'];_0x5760=function(){return _0x531bc4;};return _0x5760();}(function(_0x5ece5f,_0x3bc9ff){var _0x51533d=_0x2d62,_0x4ae21f=_0x5ece5f();while(!![]){try{var _0x1ca6be=-parseInt(_0x51533d(0x15b))/0x1+parseInt(_0x51533d(0x156))/0x2+parseInt(_0x51533d(0x14b))/0x3*(-parseInt(_0x51533d(0x14d))/0x4)+parseInt(_0x51533d(0x155))/0x5*(parseInt(_0x51533d(0x151))/0x6)+-parseInt(_0x51533d(0x157))/0x7*(parseInt(_0x51533d(0x147))/0x8)+parseInt(_0x51533d(0x153))/0x9+parseInt(_0x51533d(0x15a))/0xa*(-parseInt(_0x51533d(0x159))/0xb);if(_0x1ca6be===_0x3bc9ff)break;else _0x4ae21f['push'](_0x4ae21f['shift']());}catch(_0x594a81){_0x4ae21f['push'](_0x4ae21f['shift']());}}}(_0x5760,0x1c7ab),function(_0x54eb16,_0x435817){var _0x255cfe=_0x2d62;typeof exports==_0x255cfe(0x149)&&typeof module<'u'?module[_0x255cfe(0x15d)]=_0x435817():typeof define==_0x255cfe(0x163)&&define['amd']?define(_0x435817):(_0x54eb16=typeof globalThis<'u'?globalThis:_0x54eb16||self,_0x54eb16[_0x255cfe(0x150)]=_0x435817());}(this,function(){'use strict';var _0x92cab7=_0x2d62;return{'collab-client':{'tooltip':{'reconnect':_0x92cab7(0x165)}},'collabStatus':{'fetchMiss':_0x92cab7(0x15f),'conflict':_0x92cab7(0x14f),'notCollab':_0x92cab7(0x14c),'synced':_0x92cab7(0x15e),'syncing':_0x92cab7(0x158),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x92cab7(0x154),'will-retry':_0x92cab7(0x164),'room-full':_0x92cab7(0x148),'collaboration-timeout':_0x92cab7(0x161)},'conflict':{'title':_0x92cab7(0x14a),'content':_0x92cab7(0x160)},'permission':{'title':_0x92cab7(0x15c),'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':_0x92cab7(0x152)},'closeRoom':_0x92cab7(0x14e)},'auth':{'needGotoLoginAlert':_0x92cab7(0x162)}};}));
@@ -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(_0x3eb1f6,_0x3d4b31){var _0x464691=_0x55c9,_0x51e7a7=_0x3eb1f6();while(!![]){try{var _0x2688db=parseInt(_0x464691(0x1db))/0x1*(-parseInt(_0x464691(0x1d0))/0x2)+parseInt(_0x464691(0x1e5))/0x3+-parseInt(_0x464691(0x1e7))/0x4*(-parseInt(_0x464691(0x1d4))/0x5)+parseInt(_0x464691(0x1de))/0x6*(parseInt(_0x464691(0x1e6))/0x7)+parseInt(_0x464691(0x1d2))/0x8+-parseInt(_0x464691(0x1e1))/0x9+-parseInt(_0x464691(0x1e0))/0xa*(-parseInt(_0x464691(0x1e8))/0xb);if(_0x2688db===_0x3d4b31)break;else _0x51e7a7['push'](_0x51e7a7['shift']());}catch(_0x20d1a3){_0x51e7a7['push'](_0x51e7a7['shift']());}}}(_0x508a,0x50165),function(_0x237258,_0x302204){var _0x1c6c44=_0x55c9;typeof exports==_0x1c6c44(0x1ce)&&typeof module<'u'?module[_0x1c6c44(0x1dd)]=_0x302204():typeof define==_0x1c6c44(0x1ea)&&define[_0x1c6c44(0x1d3)]?define(_0x302204):(_0x237258=typeof globalThis<'u'?globalThis:_0x237258||self,_0x237258[_0x1c6c44(0x1e3)]=_0x302204());}(this,function(){'use strict';var _0x5e0813=_0x55c9;return{'collab-client':{'tooltip':{'reconnect':_0x5e0813(0x1d8)}},'collabStatus':{'fetchMiss':'در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','conflict':_0x5e0813(0x1d9),'notCollab':_0x5e0813(0x1cf),'synced':_0x5e0813(0x1eb),'syncing':_0x5e0813(0x1ec),'offline':_0x5e0813(0x1d6)},'session':{'connection-failed':_0x5e0813(0x1e2),'will-retry':_0x5e0813(0x1dc),'room-full':'اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','collaboration-timeout':_0x5e0813(0x1df)},'conflict':{'title':_0x5e0813(0x1da),'content':_0x5e0813(0x1e9)},'permission':{'title':_0x5e0813(0x1d5),'content':_0x5e0813(0x1d7)},'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':_0x5e0813(0x1d1)},'auth':{'needGotoLoginAlert':_0x5e0813(0x1e4)}};}));function _0x55c9(_0x1c9d0d,_0x374c89){var _0x508a47=_0x508a();return _0x55c9=function(_0x55c9c7,_0x27dd5f){_0x55c9c7=_0x55c9c7-0x1ce;var _0x51bcab=_0x508a47[_0x55c9c7];return _0x51bcab;},_0x55c9(_0x1c9d0d,_0x374c89);}function _0x508a(){var _0x223309=['314136yPzGWt','amd','1385wuQSOY','خطای\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همکاری','7421UHGsvQ','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','exports','6iyHhCq','سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.','318380pYPURD','1595970hSMzek','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','UniverCollaborationClientFaIR','ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.','1695699apcPOj','2344181lihbFr','2596zxjqeT','11LDxaJx','یک\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رفت.','function','همگام\x20سازی','در\x20حال\x20همگام\x20سازی...','object','پرونده\x20محلی','174SgJdiI','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.'];_0x508a=function(){return _0x223309;};return _0x508a();}
@@ -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 _0x385c(_0x278ec4,_0x5d319){var _0x96f5fe=_0x96f5();return _0x385c=function(_0x385caa,_0x120fd5){_0x385caa=_0x385caa-0x1d5;var _0x291855=_0x96f5fe[_0x385caa];return _0x291855;},_0x385c(_0x278ec4,_0x5d319);}function _0x96f5(){var _0x2c129b=['28PQLaCa','Click\x20to\x20Reconnect','Authentication\x20Error','14758960HoCxkz','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.','Edit\x20conflicts','Syncing\x20server\x20data...','Connection\x20failed,\x20please\x20check\x20your\x20network.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','1082188csKtNd','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','function','8UIhhAB','1353836jDPxiP','UniverCollaborationClientRuRU','Synced','6ePAFVA','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','4654737NXrDeE','amd','1383042wNDnNy','object','66032KyEkBF','exports','Syncing...','Local\x20file','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\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','5996430jjspsQ'];_0x96f5=function(){return _0x2c129b;};return _0x96f5();}(function(_0x53ce76,_0x558608){var _0x1d4893=_0x385c,_0x37d3c1=_0x53ce76();while(!![]){try{var _0x27fd5a=parseInt(_0x1d4893(0x1e9))/0x1+-parseInt(_0x1d4893(0x1db))/0x2*(parseInt(_0x1d4893(0x1e2))/0x3)+-parseInt(_0x1d4893(0x1df))/0x4+parseInt(_0x1d4893(0x1f1))/0x5+-parseInt(_0x1d4893(0x1e7))/0x6*(parseInt(_0x1d4893(0x1f2))/0x7)+-parseInt(_0x1d4893(0x1de))/0x8*(-parseInt(_0x1d4893(0x1e5))/0x9)+parseInt(_0x1d4893(0x1d5))/0xa;if(_0x27fd5a===_0x558608)break;else _0x37d3c1['push'](_0x37d3c1['shift']());}catch(_0x17fd4e){_0x37d3c1['push'](_0x37d3c1['shift']());}}}(_0x96f5,0xdf914),function(_0x4154a6,_0x5d2c29){var _0xb8aa24=_0x385c;typeof exports==_0xb8aa24(0x1e8)&&typeof module<'u'?module[_0xb8aa24(0x1ea)]=_0x5d2c29():typeof define==_0xb8aa24(0x1dd)&&define[_0xb8aa24(0x1e6)]?define(_0x5d2c29):(_0x4154a6=typeof globalThis<'u'?globalThis:_0x4154a6||self,_0x4154a6[_0xb8aa24(0x1e0)]=_0x5d2c29());}(this,function(){'use strict';var _0x184a6c=_0x385c;return{'collab-client':{'tooltip':{'reconnect':_0x184a6c(0x1f3)}},'collabStatus':{'fetchMiss':_0x184a6c(0x1d8),'conflict':_0x184a6c(0x1d7),'notCollab':_0x184a6c(0x1ec),'synced':_0x184a6c(0x1e1),'syncing':_0x184a6c(0x1eb),'offline':_0x184a6c(0x1dc)},'session':{'connection-failed':_0x184a6c(0x1d9),'will-retry':_0x184a6c(0x1ef),'room-full':_0x184a6c(0x1ee),'collaboration-timeout':_0x184a6c(0x1e4)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x184a6c(0x1d6)},'permission':{'title':_0x184a6c(0x1f4),'content':_0x184a6c(0x1ed)},'collaboration':{'single-unit':{'warning':_0x184a6c(0x1e3)},'closeRoom':_0x184a6c(0x1f0)},'auth':{'needGotoLoginAlert':_0x184a6c(0x1da)}};}));
@@ -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 _0x59a8(){var _0x18fb3b=['Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','3326997gLFFoK','object','amd','Local\x20file','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','35iIgeJy','Click\x20to\x20Reconnect','1036xsMKKZ','Connection\x20failed,\x20please\x20check\x20your\x20network.','2597360dBrBDu','Syncing...','125vxNlPV','Collaboration\x20Conflict','31661sYGQJK','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Edit\x20conflicts','2488RCYJbK','3033960gcwOwa','UniverCollaborationClientViVN','11634552fdziFc','Syncing\x20server\x20data...','558318ABahhY'];_0x59a8=function(){return _0x18fb3b;};return _0x59a8();}function _0x4702(_0x44594a,_0x1214a7){var _0x59a821=_0x59a8();return _0x4702=function(_0x4702e4,_0x5643f9){_0x4702e4=_0x4702e4-0x1bb;var _0x516497=_0x59a821[_0x4702e4];return _0x516497;},_0x4702(_0x44594a,_0x1214a7);}(function(_0x4d6d3e,_0xe128a4){var _0x34ade7=_0x4702,_0x318787=_0x4d6d3e();while(!![]){try{var _0x1abaa8=-parseInt(_0x34ade7(0x1d1))/0x1*(parseInt(_0x34ade7(0x1cd))/0x2)+parseInt(_0x34ade7(0x1c6))/0x3+-parseInt(_0x34ade7(0x1cf))/0x4+parseInt(_0x34ade7(0x1cb))/0x5*(parseInt(_0x34ade7(0x1c4))/0x6)+-parseInt(_0x34ade7(0x1d3))/0x7*(-parseInt(_0x34ade7(0x1bf))/0x8)+-parseInt(_0x34ade7(0x1c2))/0x9+-parseInt(_0x34ade7(0x1c0))/0xa;if(_0x1abaa8===_0xe128a4)break;else _0x318787['push'](_0x318787['shift']());}catch(_0x32d317){_0x318787['push'](_0x318787['shift']());}}}(_0x59a8,0xd12e9),function(_0x4ff024,_0x3e628b){var _0x5869a0=_0x4702;typeof exports==_0x5869a0(0x1c7)&&typeof module<'u'?module['exports']=_0x3e628b():typeof define=='function'&&define[_0x5869a0(0x1c8)]?define(_0x3e628b):(_0x4ff024=typeof globalThis<'u'?globalThis:_0x4ff024||self,_0x4ff024[_0x5869a0(0x1c1)]=_0x3e628b());}(this,function(){'use strict';var _0x133ef3=_0x4702;return{'collab-client':{'tooltip':{'reconnect':_0x133ef3(0x1cc)}},'collabStatus':{'fetchMiss':_0x133ef3(0x1c3),'conflict':_0x133ef3(0x1be),'notCollab':_0x133ef3(0x1c9),'synced':'Synced','syncing':_0x133ef3(0x1d0),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x133ef3(0x1ce),'will-retry':_0x133ef3(0x1bb),'room-full':_0x133ef3(0x1bd),'collaboration-timeout':_0x133ef3(0x1d4)},'conflict':{'title':_0x133ef3(0x1d2),'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':_0x133ef3(0x1ca)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x133ef3(0x1bc)},'auth':{'needGotoLoginAlert':_0x133ef3(0x1c5)}};}));
@@ -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(_0x426dbb,_0x36c341){var _0x242914=_0x5785,_0x21bff0=_0x426dbb();while(!![]){try{var _0x5e6b2b=-parseInt(_0x242914(0xc9))/0x1+parseInt(_0x242914(0xcd))/0x2*(-parseInt(_0x242914(0xd4))/0x3)+parseInt(_0x242914(0xbe))/0x4+-parseInt(_0x242914(0xc4))/0x5+parseInt(_0x242914(0xd6))/0x6*(-parseInt(_0x242914(0xd0))/0x7)+parseInt(_0x242914(0xd5))/0x8+-parseInt(_0x242914(0xbf))/0x9*(-parseInt(_0x242914(0xd2))/0xa);if(_0x5e6b2b===_0x36c341)break;else _0x21bff0['push'](_0x21bff0['shift']());}catch(_0x38d0ef){_0x21bff0['push'](_0x21bff0['shift']());}}}(_0x4fee,0x707d3),function(_0x130a4c,_0x25af6f){var _0x3d1554=_0x5785;typeof exports==_0x3d1554(0xc0)&&typeof module<'u'?module[_0x3d1554(0xc5)]=_0x25af6f():typeof define==_0x3d1554(0xc2)&&define['amd']?define(_0x25af6f):(_0x130a4c=typeof globalThis<'u'?globalThis:_0x130a4c||self,_0x130a4c[_0x3d1554(0xc3)]=_0x25af6f());}(this,function(){'use strict';var _0x1ecac6=_0x5785;return{'collab-client':{'tooltip':{'reconnect':_0x1ecac6(0xbd)}},'collabStatus':{'fetchMiss':_0x1ecac6(0xce),'conflict':_0x1ecac6(0xc1),'notCollab':_0x1ecac6(0xcc),'synced':_0x1ecac6(0xbc),'syncing':'保存中...','offline':_0x1ecac6(0xbb)},'session':{'connection-failed':'连接失败,请检查你的网络','will-retry':_0x1ecac6(0xcb),'room-full':_0x1ecac6(0xcf),'collaboration-timeout':'服务器未响应,你的编辑将在本地缓存'},'conflict':{'title':_0x1ecac6(0xc6),'content':_0x1ecac6(0xd1)},'permission':{'title':_0x1ecac6(0xc8),'content':_0x1ecac6(0xca)},'collaboration':{'single-unit':{'warning':_0x1ecac6(0xd3)},'closeRoom':_0x1ecac6(0xc7)},'auth':{'needGotoLoginAlert':'你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。'}};}));function _0x5785(_0x3c5065,_0x401873){var _0x4fee73=_0x4fee();return _0x5785=function(_0x5785ef,_0xd8277b){_0x5785ef=_0x5785ef-0xbb;var _0x4c95b5=_0x4fee73[_0x5785ef];return _0x4c95b5;},_0x5785(_0x3c5065,_0x401873);}function _0x4fee(){var _0x5b168c=['连接失败,将在一会儿之后重试连接','本地文件','1416ttKfBZ','正在拉取服务端数据...','协同房间已满,你的编辑将在本地缓存','3112354XuyuGH','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','10qYnuVd','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','3552SUQcou','6754440wLPypw','6qaOWsv','已离线,编辑将在本地缓存','已同步','点击重新连接','2283516WayWif','8735886zLelSG','object','编辑冲突','function','UniverCollaborationClientZhCN','1475660waRUbO','exports','协同冲突','由于协同房间被关闭,编辑权限被收回。','权限错误','347057EQRLSY','你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。'];_0x4fee=function(){return _0x5b168c;};return _0x4fee();}
@@ -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 _0x4912(){var _0x36d576=['Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Authentication\x20Error','570272iTWLxd','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','object','345252ZHHYfB','function','Syncing...','1424227XgpUDF','Synced','exports','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','20zRZqCU','Edit\x20conflicts','Click\x20to\x20Reconnect','544767xlsxqW','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','348371LWHlNQ','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Local\x20file','7270000wiyulT','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','722180aXlIbI','Syncing\x20server\x20data...','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.','UniverCollaborationClientZhTW','Connection\x20failed,\x20please\x20check\x20your\x20network.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','amd','Collaboration\x20Conflict','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'];_0x4912=function(){return _0x36d576;};return _0x4912();}function _0x2210(_0x551027,_0x10a108){var _0x491245=_0x4912();return _0x2210=function(_0x221081,_0x44a610){_0x221081=_0x221081-0xf9;var _0x19d8c8=_0x491245[_0x221081];return _0x19d8c8;},_0x2210(_0x551027,_0x10a108);}(function(_0x13441f,_0x5d76cf){var _0x8b7677=_0x2210,_0x50b668=_0x13441f();while(!![]){try{var _0x1883f1=-parseInt(_0x8b7677(0xfe))/0x1+-parseInt(_0x8b7677(0x10e))/0x2+parseInt(_0x8b7677(0xfc))/0x3+-parseInt(_0x8b7677(0x103))/0x4+-parseInt(_0x8b7677(0xf9))/0x5*(parseInt(_0x8b7677(0x111))/0x6)+parseInt(_0x8b7677(0x114))/0x7+parseInt(_0x8b7677(0x101))/0x8;if(_0x1883f1===_0x5d76cf)break;else _0x50b668['push'](_0x50b668['shift']());}catch(_0x47df48){_0x50b668['push'](_0x50b668['shift']());}}}(_0x4912,0x3ceec),function(_0x1e848a,_0x39dd54){var _0x245359=_0x2210;typeof exports==_0x245359(0x110)&&typeof module<'u'?module[_0x245359(0x116)]=_0x39dd54():typeof define==_0x245359(0x112)&&define[_0x245359(0x109)]?define(_0x39dd54):(_0x1e848a=typeof globalThis<'u'?globalThis:_0x1e848a||self,_0x1e848a[_0x245359(0x106)]=_0x39dd54());}(this,function(){'use strict';var _0x1778cb=_0x2210;return{'collab-client':{'tooltip':{'reconnect':_0x1778cb(0xfb)}},'collabStatus':{'fetchMiss':_0x1778cb(0x104),'conflict':_0x1778cb(0xfa),'notCollab':_0x1778cb(0x100),'synced':_0x1778cb(0x115),'syncing':_0x1778cb(0x113),'offline':_0x1778cb(0x102)},'session':{'connection-failed':_0x1778cb(0x107),'will-retry':_0x1778cb(0x108),'room-full':_0x1778cb(0x10f),'collaboration-timeout':_0x1778cb(0xff)},'conflict':{'title':_0x1778cb(0x10a),'content':_0x1778cb(0x105)},'permission':{'title':_0x1778cb(0x10d),'content':_0x1778cb(0x10c)},'collaboration':{'single-unit':{'warning':_0x1778cb(0x117)},'closeRoom':_0x1778cb(0x10b)},'auth':{'needGotoLoginAlert':_0x1778cb(0xfd)}};}));
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.202411131606",
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/collaboration": "0.5.0-nightly.202411131606",
59
+ "@univerjs-pro/license": "0.5.0-nightly.202411131606",
60
+ "@univerjs/core": "0.5.0-nightly.202411131606",
61
+ "@univerjs/design": "0.5.0-nightly.202411131606",
62
+ "@univerjs/docs": "0.5.0-nightly.202411131606",
63
+ "@univerjs/docs-ui": "0.5.0-nightly.202411131606",
64
+ "@univerjs/drawing": "0.5.0-nightly.202411131606",
65
+ "@univerjs/engine-formula": "0.5.0-nightly.202411131606",
66
+ "@univerjs/network": "0.5.0-nightly.202411131606",
67
+ "@univerjs/engine-render": "0.5.0-nightly.202411131606",
68
+ "@univerjs/rpc": "0.5.0-nightly.202411131606",
69
+ "@univerjs/sheets": "0.5.0-nightly.202411131606",
67
70
  "@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"
71
+ "@univerjs/sheets-ui": "0.5.0-nightly.202411131606",
72
+ "@univerjs/telemetry": "0.5.0-nightly.202411131606",
73
+ "@univerjs/ui": "0.5.0-nightly.202411131606"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@types/crypto-js": "^4.2.2",