@univerjs-pro/collaboration-client 0.5.0-alpha.0 → 0.5.0-beta.1

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 +49 -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 +58 -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 +33 -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 +75 -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 +23 -24
@@ -1 +1 @@
1
- (function(_0x266249,_0x119312){var _0x4146e6=_0x4c93,_0x5e152b=_0x266249();while(!![]){try{var _0x462c07=parseInt(_0x4146e6(0x159))/0x1+-parseInt(_0x4146e6(0x158))/0x2+parseInt(_0x4146e6(0x15c))/0x3*(-parseInt(_0x4146e6(0x15d))/0x4)+parseInt(_0x4146e6(0x166))/0x5*(parseInt(_0x4146e6(0x167))/0x6)+-parseInt(_0x4146e6(0x162))/0x7+-parseInt(_0x4146e6(0x157))/0x8*(-parseInt(_0x4146e6(0x16a))/0x9)+-parseInt(_0x4146e6(0x160))/0xa*(-parseInt(_0x4146e6(0x161))/0xb);if(_0x462c07===_0x119312)break;else _0x5e152b['push'](_0x5e152b['shift']());}catch(_0x17492b){_0x5e152b['push'](_0x5e152b['shift']());}}}(_0x459e,0x5f21e),function(_0x599203,_0x19ca62){var _0x911a00=_0x4c93;typeof exports=='object'&&typeof module<'u'?module[_0x911a00(0x16b)]=_0x19ca62():typeof define==_0x911a00(0x15a)&&define[_0x911a00(0x154)]?define(_0x19ca62):(_0x599203=typeof globalThis<'u'?globalThis:_0x599203||self,_0x599203[_0x911a00(0x16c)]=_0x19ca62());}(this,function(){'use strict';var _0x3983ad=_0x4c93;return{'collab-client':{'tooltip':{'reconnect':_0x3983ad(0x165)}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':_0x3983ad(0x164),'notCollab':_0x3983ad(0x168),'synced':'Synced','syncing':_0x3983ad(0x16d),'offline':_0x3983ad(0x15e)},'session':{'connection-failed':_0x3983ad(0x156),'will-retry':_0x3983ad(0x153),'room-full':'Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','collaboration-timeout':_0x3983ad(0x15f)},'conflict':{'title':'Collaboration\x20Conflict','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':_0x3983ad(0x16e),'content':_0x3983ad(0x155)},'collaboration':{'single-unit':{'warning':_0x3983ad(0x163)},'closeRoom':_0x3983ad(0x15b)},'auth':{'needGotoLoginAlert':_0x3983ad(0x169)}};}));function _0x4c93(_0x317ce1,_0xb9c234){var _0x459e53=_0x459e();return _0x4c93=function(_0x4c93c7,_0x1828ab){_0x4c93c7=_0x4c93c7-0x153;var _0x250455=_0x459e53[_0x4c93c7];return _0x250455;},_0x4c93(_0x317ce1,_0xb9c234);}function _0x459e(){var _0x5446d6=['25SdXcEI','180540kbLgQq','Local\x20file','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','9DmURYd','exports','UniverCollaborationClientEnUS','Syncing...','Authentication\x20Error','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','amd','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,\x20please\x20check\x20your\x20network.','1601416iqyuNN','361192HxInrz','656683IKbRYV','function','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','3PVNauA','2957684xJFtYQ','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','13660QggOhE','3091QaBAYB','570339Edoace','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Edit\x20conflicts','Click\x20to\x20Reconnect'];_0x459e=function(){return _0x5446d6;};return _0x459e();}
1
+ function _0x570d(){var _0x483234=['Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','1851409YgblLv','627635EQvbMW','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','16RtRgTZ','5833002CRMNdF','Syncing...','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','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.','264702dBOoNa','15vWwxwP','8813142fGNKOx','Connection\x20failed,\x20please\x20check\x20your\x20network.','1309664xChScl','1296084DUZaAx','Synced','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'];_0x570d=function(){return _0x483234;};return _0x570d();}function _0x25a9(_0x56274c,_0x486944){var _0x570dc4=_0x570d();return _0x25a9=function(_0x25a9b2,_0x78b238){_0x25a9b2=_0x25a9b2-0x184;var _0xbde9e6=_0x570dc4[_0x25a9b2];return _0xbde9e6;},_0x25a9(_0x56274c,_0x486944);}(function(_0x4da927,_0x5c9a24){var _0x41fa57=_0x25a9,_0x4f8b1c=_0x4da927();while(!![]){try{var _0x4363ec=parseInt(_0x41fa57(0x195))/0x1+parseInt(_0x41fa57(0x18e))/0x2+-parseInt(_0x41fa57(0x18a))/0x3+parseInt(_0x41fa57(0x18f))/0x4*(parseInt(_0x41fa57(0x18b))/0x5)+-parseInt(_0x41fa57(0x185))/0x6+parseInt(_0x41fa57(0x194))/0x7*(parseInt(_0x41fa57(0x184))/0x8)+-parseInt(_0x41fa57(0x18c))/0x9;if(_0x4363ec===_0x5c9a24)break;else _0x4f8b1c['push'](_0x4f8b1c['shift']());}catch(_0x39688d){_0x4f8b1c['push'](_0x4f8b1c['shift']());}}}(_0x570d,0xb59b9),function(_0x5694f6,_0x3fccc9){typeof exports=='object'&&typeof module<'u'?module['exports']=_0x3fccc9():typeof define=='function'&&define['amd']?define(_0x3fccc9):(_0x5694f6=typeof globalThis<'u'?globalThis:_0x5694f6||self,_0x5694f6['UniverProCollaborationClientEnUS']=_0x3fccc9());}(this,function(){'use strict';var _0x2a1f96=_0x25a9;return{'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':'Edit\x20conflicts','notCollab':'Local\x20file','synced':_0x2a1f96(0x190),'syncing':_0x2a1f96(0x186),'offline':_0x2a1f96(0x188)},'session':{'connection-failed':_0x2a1f96(0x18d),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x2a1f96(0x192),'collaboration-timeout':'The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'},'conflict':{'title':'Collaboration\x20Conflict','content':_0x2a1f96(0x189)},'permission':{'title':'Authentication\x20Error','content':_0x2a1f96(0x193)},'collaboration':{'single-unit':{'warning':_0x2a1f96(0x196)},'closeRoom':_0x2a1f96(0x191)},'auth':{'needGotoLoginAlert':_0x2a1f96(0x187)}};}));
@@ -1 +1 @@
1
- function _0x58b0(_0x2a2747,_0x3389b7){var _0x3f2845=_0x3f28();return _0x58b0=function(_0x58b08f,_0x164718){_0x58b08f=_0x58b08f-0xbe;var _0x411ec6=_0x3f2845[_0x58b08f];return _0x411ec6;},_0x58b0(_0x2a2747,_0x3389b7);}function _0x3f28(){var _0xb9a162=['برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','3555368wrxpNZ','1496065hXjiiQ','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','829zUncyR','در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.','object','خطای\x20اعتبارسنجی','1254216nZeJua','شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.','پرونده\x20محلی','12752595xezQXt','همگام\x20سازی','تداخل\x20همکاری','amd','424284JDbsoI','تداخل\x20ویرایش','887688CPyRab','3AJwgYX','UniverCollaborationClientFaIR','106oUDoyN','آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند','function'];_0x3f28=function(){return _0xb9a162;};return _0x3f28();}(function(_0x4e3b76,_0x47a288){var _0x766f89=_0x58b0,_0x49a524=_0x4e3b76();while(!![]){try{var _0x5e53e1=-parseInt(_0x766f89(0xd2))/0x1*(parseInt(_0x766f89(0xcb))/0x2)+parseInt(_0x766f89(0xc9))/0x3*(-parseInt(_0x766f89(0xcf))/0x4)+parseInt(_0x766f89(0xd0))/0x5+parseInt(_0x766f89(0xbf))/0x6+parseInt(_0x766f89(0xc6))/0x7+-parseInt(_0x766f89(0xc8))/0x8+parseInt(_0x766f89(0xc2))/0x9;if(_0x5e53e1===_0x47a288)break;else _0x49a524['push'](_0x49a524['shift']());}catch(_0x4ab230){_0x49a524['push'](_0x49a524['shift']());}}}(_0x3f28,0xe5ffc),function(_0x269cab,_0x519618){var _0x429eee=_0x58b0;typeof exports==_0x429eee(0xd5)&&typeof module<'u'?module['exports']=_0x519618():typeof define==_0x429eee(0xcd)&&define[_0x429eee(0xc5)]?define(_0x519618):(_0x269cab=typeof globalThis<'u'?globalThis:_0x269cab||self,_0x269cab[_0x429eee(0xca)]=_0x519618());}(this,function(){'use strict';var _0x41956b=_0x58b0;return{'collab-client':{'tooltip':{'reconnect':_0x41956b(0xce)}},'collabStatus':{'fetchMiss':_0x41956b(0xd3),'conflict':_0x41956b(0xc7),'notCollab':_0x41956b(0xc1),'synced':_0x41956b(0xc3),'syncing':'در\x20حال\x20همگام\x20سازی...','offline':_0x41956b(0xcc)},'session':{'connection-failed':_0x41956b(0xd1),'will-retry':'اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','room-full':'اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','collaboration-timeout':_0x41956b(0xd4)},'conflict':{'title':_0x41956b(0xc4),'content':'یک\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رفت.'},'permission':{'title':_0x41956b(0xbe),'content':'اعمال\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رفت.'},'collaboration':{'single-unit':{'warning':_0x41956b(0xc0)},'closeRoom':'امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.'},'auth':{'needGotoLoginAlert':'ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.'}};}));
1
+ function _0x503f(_0x5098ca,_0x340450){var _0xa8aaea=_0xa8aa();return _0x503f=function(_0x503f8c,_0x3ab72a){_0x503f8c=_0x503f8c-0xc6;var _0x3df501=_0xa8aaea[_0x503f8c];return _0x3df501;},_0x503f(_0x5098ca,_0x340450);}(function(_0x4273f1,_0x5f16c3){var _0x504a0a=_0x503f,_0x27e2c3=_0x4273f1();while(!![]){try{var _0x534c6d=parseInt(_0x504a0a(0xcb))/0x1+parseInt(_0x504a0a(0xdb))/0x2+parseInt(_0x504a0a(0xd1))/0x3+-parseInt(_0x504a0a(0xdc))/0x4+parseInt(_0x504a0a(0xdf))/0x5*(-parseInt(_0x504a0a(0xc6))/0x6)+-parseInt(_0x504a0a(0xce))/0x7+parseInt(_0x504a0a(0xc9))/0x8*(parseInt(_0x504a0a(0xcc))/0x9);if(_0x534c6d===_0x5f16c3)break;else _0x27e2c3['push'](_0x27e2c3['shift']());}catch(_0x12fad6){_0x27e2c3['push'](_0x27e2c3['shift']());}}}(_0xa8aa,0xe0602),function(_0x38f7dc,_0xe3b22e){var _0x509aae=_0x503f;typeof exports==_0x509aae(0xde)&&typeof module<'u'?module[_0x509aae(0xd3)]=_0xe3b22e():typeof define==_0x509aae(0xcf)&&define['amd']?define(_0xe3b22e):(_0x38f7dc=typeof globalThis<'u'?globalThis:_0x38f7dc||self,_0x38f7dc[_0x509aae(0xd7)]=_0xe3b22e());}(this,function(){'use strict';var _0xe0b2da=_0x503f;return{'collab-client':{'tooltip':{'reconnect':'برای\x20اتصال\x20مجدد\x20کلیک\x20کنید'}},'collabStatus':{'fetchMiss':_0xe0b2da(0xdd),'conflict':_0xe0b2da(0xd6),'notCollab':_0xe0b2da(0xd9),'synced':'همگام\x20سازی','syncing':_0xe0b2da(0xc8),'offline':'آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند'},'session':{'connection-failed':_0xe0b2da(0xca),'will-retry':'اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','room-full':_0xe0b2da(0xd4),'collaboration-timeout':_0xe0b2da(0xda)},'conflict':{'title':_0xe0b2da(0xc7),'content':_0xe0b2da(0xd0)},'permission':{'title':_0xe0b2da(0xd5),'content':'اعمال\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رفت.'},'collaboration':{'single-unit':{'warning':_0xe0b2da(0xcd)},'closeRoom':_0xe0b2da(0xd8)},'auth':{'needGotoLoginAlert':_0xe0b2da(0xd2)}};}));function _0xa8aa(){var _0x55db82=['تداخل\x20همکاری','در\x20حال\x20همگام\x20سازی...','74112ShMviX','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','439727obQDFc','1620qkhDyN','شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.','10450258ItqOhY','function','یک\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رفت.','1640259IeXtLu','ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.','exports','اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','خطای\x20اعتبارسنجی','تداخل\x20ویرایش','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می\x20شوند.','2213146XvxISv','229016YXItuD','در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','object','239145bMOzJb','162EAanIV'];_0xa8aa=function(){return _0x55db82;};return _0xa8aa();}
@@ -1 +1 @@
1
- function _0x3835(_0x5c7aa1,_0x1a6c3a){var _0x5a6ea6=_0x5a6e();return _0x3835=function(_0x3835bd,_0x453330){_0x3835bd=_0x3835bd-0x177;var _0x51906d=_0x5a6ea6[_0x3835bd];return _0x51906d;},_0x3835(_0x5c7aa1,_0x1a6c3a);}(function(_0x5f016b,_0x3054e2){var _0x4e96bc=_0x3835,_0x175997=_0x5f016b();while(!![]){try{var _0x27acec=parseInt(_0x4e96bc(0x193))/0x1*(-parseInt(_0x4e96bc(0x180))/0x2)+parseInt(_0x4e96bc(0x18b))/0x3*(parseInt(_0x4e96bc(0x191))/0x4)+parseInt(_0x4e96bc(0x17c))/0x5*(-parseInt(_0x4e96bc(0x17b))/0x6)+-parseInt(_0x4e96bc(0x179))/0x7+parseInt(_0x4e96bc(0x177))/0x8+parseInt(_0x4e96bc(0x18a))/0x9+parseInt(_0x4e96bc(0x194))/0xa*(parseInt(_0x4e96bc(0x192))/0xb);if(_0x27acec===_0x3054e2)break;else _0x175997['push'](_0x175997['shift']());}catch(_0x120e61){_0x175997['push'](_0x175997['shift']());}}}(_0x5a6e,0xa0a77),function(_0x2b4c48,_0x532d9a){var _0x324adf=_0x3835;typeof exports==_0x324adf(0x178)&&typeof module<'u'?module[_0x324adf(0x184)]=_0x532d9a():typeof define=='function'&&define[_0x324adf(0x183)]?define(_0x532d9a):(_0x2b4c48=typeof globalThis<'u'?globalThis:_0x2b4c48||self,_0x2b4c48['UniverCollaborationClientRuRU']=_0x532d9a());}(this,function(){'use strict';var _0x5f401d=_0x3835;return{'collab-client':{'tooltip':{'reconnect':_0x5f401d(0x189)}},'collabStatus':{'fetchMiss':_0x5f401d(0x17f),'conflict':_0x5f401d(0x188),'notCollab':_0x5f401d(0x186),'synced':_0x5f401d(0x18c),'syncing':_0x5f401d(0x17a),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x5f401d(0x18f),'will-retry':_0x5f401d(0x185),'room-full':_0x5f401d(0x190),'collaboration-timeout':'The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'},'conflict':{'title':_0x5f401d(0x17e),'content':_0x5f401d(0x18e)},'permission':{'title':_0x5f401d(0x181),'content':_0x5f401d(0x182)},'collaboration':{'single-unit':{'warning':_0x5f401d(0x187)},'closeRoom':_0x5f401d(0x18d)},'auth':{'needGotoLoginAlert':_0x5f401d(0x17d)}};}));function _0x5a6e(){var _0x1e757b=['Connection\x20failed,\x20please\x20check\x20your\x20network.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','748hrvLjM','49819PJfKLa','2xKAxDM','2510tXKDFq','4789376GATLPU','object','5070730AwBeBO','Syncing...','258Gxawcu','44535zSAjcJ','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Collaboration\x20Conflict','Syncing\x20server\x20data...','770358mzeWjM','Authentication\x20Error','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','amd','exports','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Local\x20file','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Edit\x20conflicts','Click\x20to\x20Reconnect','3195810FhJwOG','7143BXwxiq','Synced','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','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.'];_0x5a6e=function(){return _0x1e757b;};return _0x5a6e();}
1
+ (function(_0x58ab24,_0x4e7fe7){var _0x347039=_0x319f,_0x2d07d2=_0x58ab24();while(!![]){try{var _0x2dc36b=-parseInt(_0x347039(0x168))/0x1+-parseInt(_0x347039(0x176))/0x2+parseInt(_0x347039(0x16c))/0x3*(-parseInt(_0x347039(0x175))/0x4)+parseInt(_0x347039(0x172))/0x5+parseInt(_0x347039(0x16e))/0x6*(parseInt(_0x347039(0x161))/0x7)+parseInt(_0x347039(0x167))/0x8+parseInt(_0x347039(0x170))/0x9;if(_0x2dc36b===_0x4e7fe7)break;else _0x2d07d2['push'](_0x2d07d2['shift']());}catch(_0x26a1e6){_0x2d07d2['push'](_0x2d07d2['shift']());}}}(_0x4ad0,0xb6b45),function(_0x4ae46c,_0x2f01b9){var _0x51e8d1=_0x319f;typeof exports==_0x51e8d1(0x171)&&typeof module<'u'?module[_0x51e8d1(0x16a)]=_0x2f01b9():typeof define==_0x51e8d1(0x16f)&&define[_0x51e8d1(0x162)]?define(_0x2f01b9):(_0x4ae46c=typeof globalThis<'u'?globalThis:_0x4ae46c||self,_0x4ae46c[_0x51e8d1(0x166)]=_0x2f01b9());}(this,function(){'use strict';var _0x4651ea=_0x319f;return{'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0x4651ea(0x160),'conflict':'Edit\x20conflicts','notCollab':_0x4651ea(0x169),'synced':_0x4651ea(0x173),'syncing':'Syncing...','offline':_0x4651ea(0x16d)},'session':{'connection-failed':_0x4651ea(0x15e),'will-retry':_0x4651ea(0x165),'room-full':_0x4651ea(0x174),'collaboration-timeout':'The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'},'conflict':{'title':_0x4651ea(0x15d),'content':_0x4651ea(0x164)},'permission':{'title':_0x4651ea(0x15f),'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':_0x4651ea(0x16b)},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x4651ea(0x163)}};}));function _0x319f(_0x290d9e,_0x53eb54){var _0x4ad07b=_0x4ad0();return _0x319f=function(_0x319f44,_0x2ba058){_0x319f44=_0x319f44-0x15d;var _0x2d2539=_0x4ad07b[_0x319f44];return _0x2d2539;},_0x319f(_0x290d9e,_0x53eb54);}function _0x4ad0(){var _0x34b288=['Synced','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','4iuyuKx','968860NzBUXU','Collaboration\x20Conflict','Connection\x20failed,\x20please\x20check\x20your\x20network.','Authentication\x20Error','Syncing\x20server\x20data...','56itVvzf','amd','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','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.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','UniverProCollaborationClientRuRU','540984dcjqZl','539631fYvtlY','Local\x20file','exports','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','1413267unXKAT','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','93030zBWOgG','function','9163188QNwZXF','object','5168560AaGUCr'];_0x4ad0=function(){return _0x34b288;};return _0x4ad0();}
@@ -1 +1 @@
1
- function _0x31c2(_0x487daf,_0x13cae7){var _0x36706c=_0x3670();return _0x31c2=function(_0x31c20b,_0x208630){_0x31c20b=_0x31c20b-0x19f;var _0x1d3c3a=_0x36706c[_0x31c20b];return _0x1d3c3a;},_0x31c2(_0x487daf,_0x13cae7);}(function(_0x37819a,_0xbc2098){var _0x377b5e=_0x31c2,_0x487750=_0x37819a();while(!![]){try{var _0x2161e7=parseInt(_0x377b5e(0x1ba))/0x1*(-parseInt(_0x377b5e(0x1a9))/0x2)+-parseInt(_0x377b5e(0x1ab))/0x3*(-parseInt(_0x377b5e(0x1b3))/0x4)+-parseInt(_0x377b5e(0x1a1))/0x5*(-parseInt(_0x377b5e(0x1b5))/0x6)+parseInt(_0x377b5e(0x1ad))/0x7*(parseInt(_0x377b5e(0x1ac))/0x8)+-parseInt(_0x377b5e(0x1b2))/0x9*(-parseInt(_0x377b5e(0x1bb))/0xa)+-parseInt(_0x377b5e(0x1bd))/0xb*(-parseInt(_0x377b5e(0x1b8))/0xc)+-parseInt(_0x377b5e(0x1a8))/0xd*(-parseInt(_0x377b5e(0x1b4))/0xe);if(_0x2161e7===_0xbc2098)break;else _0x487750['push'](_0x487750['shift']());}catch(_0xc89281){_0x487750['push'](_0x487750['shift']());}}}(_0x3670,0x69add),function(_0x3fbed2,_0x11265c){var _0x3c1254=_0x31c2;typeof exports==_0x3c1254(0x1b7)&&typeof module<'u'?module[_0x3c1254(0x1a6)]=_0x11265c():typeof define==_0x3c1254(0x1b6)&&define[_0x3c1254(0x1a3)]?define(_0x11265c):(_0x3fbed2=typeof globalThis<'u'?globalThis:_0x3fbed2||self,_0x3fbed2['UniverCollaborationClientViVN']=_0x11265c());}(this,function(){'use strict';var _0x15ba6b=_0x31c2;return{'collab-client':{'tooltip':{'reconnect':_0x15ba6b(0x1a4)}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':_0x15ba6b(0x1ae),'notCollab':'Local\x20file','synced':_0x15ba6b(0x1b0),'syncing':_0x15ba6b(0x1af),'offline':_0x15ba6b(0x19f)},'session':{'connection-failed':_0x15ba6b(0x1a7),'will-retry':_0x15ba6b(0x1b1),'room-full':_0x15ba6b(0x1b9),'collaboration-timeout':'The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'},'conflict':{'title':'Collaboration\x20Conflict','content':_0x15ba6b(0x1aa)},'permission':{'title':_0x15ba6b(0x1a5),'content':_0x15ba6b(0x1a0)},'collaboration':{'single-unit':{'warning':_0x15ba6b(0x1be)},'closeRoom':_0x15ba6b(0x1bc)},'auth':{'needGotoLoginAlert':_0x15ba6b(0x1a2)}};}));function _0x3670(){var _0x1d1fe3=['12897ZJLyjv','4ahDEMU','14BPsCAv','156012MeAWNI','function','object','382272KvyFWN','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','89LsJJOW','470LEcWKL','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','154pQrWAB','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','40fCBigM','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','amd','Click\x20to\x20Reconnect','Authentication\x20Error','exports','Connection\x20failed,\x20please\x20check\x20your\x20network.','442DfBqcs','17188nMlzou','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.','405750ahAAtY','682184sBicLi','28PkMDNZ','Edit\x20conflicts','Syncing...','Synced','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.'];_0x3670=function(){return _0x1d1fe3;};return _0x3670();}
1
+ function _0xa1eb(_0x3ac5d0,_0x540df0){var _0x47859d=_0x4785();return _0xa1eb=function(_0xa1eb89,_0xfa3afc){_0xa1eb89=_0xa1eb89-0x80;var _0x4e70fc=_0x47859d[_0xa1eb89];return _0x4e70fc;},_0xa1eb(_0x3ac5d0,_0x540df0);}function _0x4785(){var _0x299859=['3677023orvGwu','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','amd','Authentication\x20Error','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Syncing...','Edit\x20conflicts','object','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','323512BEIAZc','exports','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Click\x20to\x20Reconnect','8wXYAeK','10EQQfUs','17707077oxrLVr','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','6460224EFcgem','Syncing\x20server\x20data...','UniverProCollaborationClientViVN','572367vsOhoQ','Local\x20file','2995235oPbINa','Connection\x20failed,\x20please\x20check\x20your\x20network.','886034EBPUvH','Collaboration\x20Conflict'];_0x4785=function(){return _0x299859;};return _0x4785();}(function(_0x5befed,_0x284cba){var _0x4abd24=_0xa1eb,_0x4bf4da=_0x5befed();while(!![]){try{var _0x4b83a4=parseInt(_0x4abd24(0x94))/0x1+-parseInt(_0x4abd24(0x8a))/0x2*(parseInt(_0x4abd24(0x90))/0x3)+parseInt(_0x4abd24(0x85))/0x4+-parseInt(_0x4abd24(0x92))/0x5+-parseInt(_0x4abd24(0x8d))/0x6+parseInt(_0x4abd24(0x96))/0x7*(parseInt(_0x4abd24(0x89))/0x8)+parseInt(_0x4abd24(0x8b))/0x9;if(_0x4b83a4===_0x284cba)break;else _0x4bf4da['push'](_0x4bf4da['shift']());}catch(_0x1c45c3){_0x4bf4da['push'](_0x4bf4da['shift']());}}}(_0x4785,0xcaa06),function(_0x3a5225,_0x6cc643){var _0x11972d=_0xa1eb;typeof exports==_0x11972d(0x83)&&typeof module<'u'?module[_0x11972d(0x86)]=_0x6cc643():typeof define=='function'&&define[_0x11972d(0x98)]?define(_0x6cc643):(_0x3a5225=typeof globalThis<'u'?globalThis:_0x3a5225||self,_0x3a5225[_0x11972d(0x8f)]=_0x6cc643());}(this,function(){'use strict';var _0x169b3a=_0xa1eb;return{'collab-client':{'tooltip':{'reconnect':_0x169b3a(0x88)}},'collabStatus':{'fetchMiss':_0x169b3a(0x8e),'conflict':_0x169b3a(0x82),'notCollab':_0x169b3a(0x91),'synced':'Synced','syncing':_0x169b3a(0x81),'offline':_0x169b3a(0x9a)},'session':{'connection-failed':_0x169b3a(0x93),'will-retry':_0x169b3a(0x87),'room-full':'Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','collaboration-timeout':_0x169b3a(0x97)},'conflict':{'title':_0x169b3a(0x95),'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':_0x169b3a(0x99),'content':_0x169b3a(0x84)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x169b3a(0x8c)},'auth':{'needGotoLoginAlert':_0x169b3a(0x80)}};}));
@@ -1 +1 @@
1
- function _0x2bfd(){var _0x376461=['协同房间已满,你的编辑将在本地缓存','function','你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','保存中...','由于协同房间被关闭,编辑权限被收回。','协同冲突','85071ReLbAE','连接失败,请检查你的网络','权限错误','编辑冲突','2321agLvbe','点击重新连接','7275177XutRAL','5758512jlTpUg','object','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','amd','946961WwwmCe','784683tqhygk','6aOhGCi','224PfFNDJ','本地文件','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','已同步','152040hfWNBI','已离线,编辑将在本地缓存','2dCAIYU','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','4999265AYrhUD'];_0x2bfd=function(){return _0x376461;};return _0x2bfd();}function _0xc24f(_0x3127dd,_0x266498){var _0x2bfd4f=_0x2bfd();return _0xc24f=function(_0xc24ff0,_0x5df8e2){_0xc24ff0=_0xc24ff0-0x17f;var _0x56a75a=_0x2bfd4f[_0xc24ff0];return _0x56a75a;},_0xc24f(_0x3127dd,_0x266498);}(function(_0x396e0f,_0x41a35d){var _0x161fa2=_0xc24f,_0x3008c9=_0x396e0f();while(!![]){try{var _0x410d5f=parseInt(_0x161fa2(0x197))/0x1+-parseInt(_0x161fa2(0x183))/0x2*(parseInt(_0x161fa2(0x198))/0x3)+-parseInt(_0x161fa2(0x193))/0x4+parseInt(_0x161fa2(0x185))/0x5*(-parseInt(_0x161fa2(0x199))/0x6)+parseInt(_0x161fa2(0x18c))/0x7*(parseInt(_0x161fa2(0x19a))/0x8)+-parseInt(_0x161fa2(0x192))/0x9+-parseInt(_0x161fa2(0x181))/0xa*(-parseInt(_0x161fa2(0x190))/0xb);if(_0x410d5f===_0x41a35d)break;else _0x3008c9['push'](_0x3008c9['shift']());}catch(_0x297da1){_0x3008c9['push'](_0x3008c9['shift']());}}}(_0x2bfd,0xf0b26),function(_0x4b578e,_0x42980f){var _0x803402=_0xc24f;typeof exports==_0x803402(0x194)&&typeof module<'u'?module['exports']=_0x42980f():typeof define==_0x803402(0x187)&&define[_0x803402(0x196)]?define(_0x42980f):(_0x4b578e=typeof globalThis<'u'?globalThis:_0x4b578e||self,_0x4b578e['UniverCollaborationClientZhCN']=_0x42980f());}(this,function(){'use strict';var _0xc5c2cf=_0xc24f;return{'collab-client':{'tooltip':{'reconnect':_0xc5c2cf(0x191)}},'collabStatus':{'fetchMiss':'正在拉取服务端数据...','conflict':_0xc5c2cf(0x18f),'notCollab':_0xc5c2cf(0x19b),'synced':_0xc5c2cf(0x180),'syncing':_0xc5c2cf(0x189),'offline':_0xc5c2cf(0x182)},'session':{'connection-failed':_0xc5c2cf(0x18d),'will-retry':'连接失败,将在一会儿之后重试连接','room-full':_0xc5c2cf(0x186),'collaboration-timeout':'服务器未响应,你的编辑将在本地缓存'},'conflict':{'title':_0xc5c2cf(0x18b),'content':_0xc5c2cf(0x17f)},'permission':{'title':_0xc5c2cf(0x18e),'content':_0xc5c2cf(0x188)},'collaboration':{'single-unit':{'warning':_0xc5c2cf(0x195)},'closeRoom':_0xc5c2cf(0x18a)},'auth':{'needGotoLoginAlert':_0xc5c2cf(0x184)}};}));
1
+ function _0x1a2d(){var _0x1abfb2=['已离线,编辑将在本地缓存','210711WwhgdN','7319672yywVjn','权限错误','编辑冲突','本地文件','你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','协同房间已满,你的编辑将在本地缓存','保存中...','20suJtCI','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','55tPJalD','12MGzmSy','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','22YiQMhr','协同冲突','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','18KNozvD','4520LIoEdQ','已同步','740076EmtLPQ','959230ujkmYr','984ayRuQP','连接失败,将在一会儿之后重试连接','3478531MusSwG','exports','连接失败,请检查你的网络'];_0x1a2d=function(){return _0x1abfb2;};return _0x1a2d();}function _0x7c7e(_0x3ed3bb,_0x345e0e){var _0x1a2d11=_0x1a2d();return _0x7c7e=function(_0x7c7ed1,_0x40ab47){_0x7c7ed1=_0x7c7ed1-0x1d0;var _0x325265=_0x1a2d11[_0x7c7ed1];return _0x325265;},_0x7c7e(_0x3ed3bb,_0x345e0e);}(function(_0x58b024,_0x341544){var _0x10e7db=_0x7c7e,_0x48dc0d=_0x58b024();while(!![]){try{var _0x5f28af=-parseInt(_0x10e7db(0x1d5))/0x1*(parseInt(_0x10e7db(0x1e8))/0x2)+parseInt(_0x10e7db(0x1db))/0x3*(parseInt(_0x10e7db(0x1e3))/0x4)+-parseInt(_0x10e7db(0x1d4))/0x5+-parseInt(_0x10e7db(0x1e6))/0x6*(-parseInt(_0x10e7db(0x1d7))/0x7)+-parseInt(_0x10e7db(0x1dc))/0x8+-parseInt(_0x10e7db(0x1d0))/0x9*(-parseInt(_0x10e7db(0x1d1))/0xa)+-parseInt(_0x10e7db(0x1e5))/0xb*(-parseInt(_0x10e7db(0x1d3))/0xc);if(_0x5f28af===_0x341544)break;else _0x48dc0d['push'](_0x48dc0d['shift']());}catch(_0x3f2aa8){_0x48dc0d['push'](_0x48dc0d['shift']());}}}(_0x1a2d,0x83073),function(_0x50c635,_0x5ce19a){var _0x3d154d=_0x7c7e;typeof exports=='object'&&typeof module<'u'?module[_0x3d154d(0x1d8)]=_0x5ce19a():typeof define=='function'&&define['amd']?define(_0x5ce19a):(_0x50c635=typeof globalThis<'u'?globalThis:_0x50c635||self,_0x50c635['UniverProCollaborationClientZhCN']=_0x5ce19a());}(this,function(){'use strict';var _0x3a2561=_0x7c7e;return{'collab-client':{'tooltip':{'reconnect':'点击重新连接'}},'collabStatus':{'fetchMiss':'正在拉取服务端数据...','conflict':_0x3a2561(0x1de),'notCollab':_0x3a2561(0x1df),'synced':_0x3a2561(0x1d2),'syncing':_0x3a2561(0x1e2),'offline':_0x3a2561(0x1da)},'session':{'connection-failed':_0x3a2561(0x1d9),'will-retry':_0x3a2561(0x1d6),'room-full':_0x3a2561(0x1e1),'collaboration-timeout':'服务器未响应,你的编辑将在本地缓存'},'conflict':{'title':_0x3a2561(0x1e9),'content':_0x3a2561(0x1e7)},'permission':{'title':_0x3a2561(0x1dd),'content':_0x3a2561(0x1e0)},'collaboration':{'single-unit':{'warning':_0x3a2561(0x1ea)},'closeRoom':'由于协同房间被关闭,编辑权限被收回。'},'auth':{'needGotoLoginAlert':_0x3a2561(0x1e4)}};}));
@@ -1 +1 @@
1
- function _0x1bd8(){var _0x1e4691=['50kkshWY','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.','366530XEjksd','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','8uvYlCC','Collaboration\x20Conflict','856890dXQcMA','function','3340804WEXDkd','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','amd','12PJQeIk','709740LAPUJm','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','45mMWGsT','UniverCollaborationClientZhTW','9738379LGdAJn','Local\x20file','1026864HHFfyr','Syncing\x20server\x20data...','Connection\x20failed,\x20please\x20check\x20your\x20network.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','object','2023549YjbYoG','Synced','exports','Syncing...'];_0x1bd8=function(){return _0x1e4691;};return _0x1bd8();}function _0x53a4(_0x700952,_0x429a51){var _0x1bd81c=_0x1bd8();return _0x53a4=function(_0x53a4b5,_0x5bc732){_0x53a4b5=_0x53a4b5-0x86;var _0x1864fc=_0x1bd81c[_0x53a4b5];return _0x1864fc;},_0x53a4(_0x700952,_0x429a51);}(function(_0x534fa5,_0x2936cc){var _0x59d4fb=_0x53a4,_0x5e3d6f=_0x534fa5();while(!![]){try{var _0x42fb2a=-parseInt(_0x59d4fb(0x8c))/0x1+-parseInt(_0x59d4fb(0x98))/0x2*(parseInt(_0x59d4fb(0xa1))/0x3)+parseInt(_0x59d4fb(0x9e))/0x4+-parseInt(_0x59d4fb(0x88))/0x5*(-parseInt(_0x59d4fb(0x9c))/0x6)+parseInt(_0x59d4fb(0x8a))/0x7*(parseInt(_0x59d4fb(0x9a))/0x8)+-parseInt(_0x59d4fb(0x86))/0x9+-parseInt(_0x59d4fb(0x95))/0xa*(parseInt(_0x59d4fb(0x91))/0xb);if(_0x42fb2a===_0x2936cc)break;else _0x5e3d6f['push'](_0x5e3d6f['shift']());}catch(_0x33cc80){_0x5e3d6f['push'](_0x5e3d6f['shift']());}}}(_0x1bd8,0xb7e02),function(_0x2e9801,_0x53f1b0){var _0x29ce86=_0x53a4;typeof exports==_0x29ce86(0x90)&&typeof module<'u'?module[_0x29ce86(0x93)]=_0x53f1b0():typeof define==_0x29ce86(0x9d)&&define[_0x29ce86(0xa0)]?define(_0x53f1b0):(_0x2e9801=typeof globalThis<'u'?globalThis:_0x2e9801||self,_0x2e9801[_0x29ce86(0x89)]=_0x53f1b0());}(this,function(){'use strict';var _0x5585e9=_0x53a4;return{'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0x5585e9(0x8d),'conflict':_0x5585e9(0x96),'notCollab':_0x5585e9(0x8b),'synced':_0x5585e9(0x92),'syncing':_0x5585e9(0x94),'offline':_0x5585e9(0x87)},'session':{'connection-failed':_0x5585e9(0x8e),'will-retry':_0x5585e9(0x8f),'room-full':'Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','collaboration-timeout':_0x5585e9(0x9f)},'conflict':{'title':_0x5585e9(0x9b),'content':_0x5585e9(0x97)},'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':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x5585e9(0x99)}};}));
1
+ function _0x5263(_0x3403f0,_0x1b9c77){var _0x571f09=_0x571f();return _0x5263=function(_0x526387,_0x4eec07){_0x526387=_0x526387-0x184;var _0x34b7f6=_0x571f09[_0x526387];return _0x34b7f6;},_0x5263(_0x3403f0,_0x1b9c77);}(function(_0xa559a,_0x268343){var _0x5d01aa=_0x5263,_0xdb165f=_0xa559a();while(!![]){try{var _0x608577=parseInt(_0x5d01aa(0x19b))/0x1*(-parseInt(_0x5d01aa(0x19a))/0x2)+-parseInt(_0x5d01aa(0x188))/0x3+parseInt(_0x5d01aa(0x19f))/0x4+parseInt(_0x5d01aa(0x194))/0x5*(parseInt(_0x5d01aa(0x185))/0x6)+parseInt(_0x5d01aa(0x196))/0x7+-parseInt(_0x5d01aa(0x184))/0x8+-parseInt(_0x5d01aa(0x18f))/0x9*(-parseInt(_0x5d01aa(0x18b))/0xa);if(_0x608577===_0x268343)break;else _0xdb165f['push'](_0xdb165f['shift']());}catch(_0xe67991){_0xdb165f['push'](_0xdb165f['shift']());}}}(_0x571f,0xb674d),function(_0x4a703f,_0x4bcb30){var _0x41cc64=_0x5263;typeof exports=='object'&&typeof module<'u'?module[_0x41cc64(0x186)]=_0x4bcb30():typeof define=='function'&&define['amd']?define(_0x4bcb30):(_0x4a703f=typeof globalThis<'u'?globalThis:_0x4a703f||self,_0x4a703f[_0x41cc64(0x189)]=_0x4bcb30());}(this,function(){'use strict';var _0x5218e=_0x5263;return{'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0x5218e(0x18d),'conflict':_0x5218e(0x192),'notCollab':'Local\x20file','synced':_0x5218e(0x198),'syncing':_0x5218e(0x18a),'offline':_0x5218e(0x19c)},'session':{'connection-failed':_0x5218e(0x187),'will-retry':_0x5218e(0x18e),'room-full':_0x5218e(0x191),'collaboration-timeout':_0x5218e(0x190)},'conflict':{'title':_0x5218e(0x193),'content':_0x5218e(0x19d)},'permission':{'title':_0x5218e(0x19e),'content':_0x5218e(0x18c)},'collaboration':{'single-unit':{'warning':_0x5218e(0x197)},'closeRoom':_0x5218e(0x195)},'auth':{'needGotoLoginAlert':_0x5218e(0x199)}};}));function _0x571f(){var _0x47fecb=['You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Synced','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','56tXSTFX','43228iyzwiz','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','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.','Authentication\x20Error','1227288coCibi','6615696ssDuOu','1958910gIPAyW','exports','Connection\x20failed,\x20please\x20check\x20your\x20network.','1000578xaXita','UniverProCollaborationClientZhTW','Syncing...','904690TXtHhj','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Syncing\x20server\x20data...','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','171WnPelW','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Edit\x20conflicts','Collaboration\x20Conflict','15VtlkLf','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','791175COUgcG'];_0x571f=function(){return _0x47fecb;};return _0x571f();}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs-pro/collaboration-client",
3
- "version": "0.5.0-alpha.0",
3
+ "version": "0.5.0-beta.1",
4
4
  "private": false,
5
5
  "description": "Univer Collaboration Client",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -54,32 +54,31 @@
54
54
  "@univerjs/icons": "^0.2.5",
55
55
  "clsx": "^2.1.1",
56
56
  "crypto-js": "4.2.0",
57
- "uuid": "^11.0.2",
58
- "@univerjs-pro/collaboration": "0.5.0-alpha.0",
59
- "@univerjs-pro/license": "0.5.0-alpha.0",
60
- "@univerjs/core": "0.5.0-alpha.0",
61
- "@univerjs/docs": "0.5.0-alpha.0",
62
- "@univerjs/design": "0.5.0-alpha.0",
63
- "@univerjs/docs-ui": "0.5.0-alpha.0",
64
- "@univerjs/engine-formula": "0.5.0-alpha.0",
65
- "@univerjs/drawing": "0.5.0-alpha.0",
66
- "@univerjs/engine-render": "0.5.0-alpha.0",
67
- "@univerjs/network": "0.5.0-alpha.0",
68
- "@univerjs/sheets": "0.5.0-alpha.0",
69
- "@univerjs/protocol": "0.1.39-alpha.38",
70
- "@univerjs/sheets-ui": "0.5.0-alpha.0",
71
- "@univerjs/rpc": "0.5.0-alpha.0",
72
- "@univerjs/telemetry": "0.5.0-alpha.0",
73
- "@univerjs/ui": "0.5.0-alpha.0"
57
+ "uuid": "^11.0.3",
58
+ "@univerjs-pro/collaboration": "0.5.0-beta.1",
59
+ "@univerjs-pro/license": "0.5.0-beta.1",
60
+ "@univerjs/core": "0.5.0-beta.1",
61
+ "@univerjs/design": "0.5.0-beta.1",
62
+ "@univerjs/docs": "0.5.0-beta.1",
63
+ "@univerjs/docs-ui": "0.5.0-beta.1",
64
+ "@univerjs/drawing": "0.5.0-beta.1",
65
+ "@univerjs/engine-render": "0.5.0-beta.1",
66
+ "@univerjs/network": "0.5.0-beta.1",
67
+ "@univerjs/rpc": "0.5.0-beta.1",
68
+ "@univerjs/protocol": "0.1.39-alpha.45",
69
+ "@univerjs/engine-formula": "0.5.0-beta.1",
70
+ "@univerjs/sheets": "0.5.0-beta.1",
71
+ "@univerjs/sheets-ui": "0.5.0-beta.1",
72
+ "@univerjs/telemetry": "0.5.0-beta.1",
73
+ "@univerjs/ui": "0.5.0-beta.1"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@types/crypto-js": "^4.2.2",
77
- "@types/react": "^18.3.12",
78
77
  "rxjs": "^7.8.1",
79
- "typescript": "5.6.3",
80
- "vite": "^5.4.10",
81
- "vitest": "^2.1.4",
82
- "@univerjs-infra/shared": "0.5.0-alpha.0"
78
+ "typescript": "^5.6.3",
79
+ "vite": "^5.4.11",
80
+ "vitest": "^2.1.5",
81
+ "@univerjs-infra/shared": "0.5.0-beta.1"
83
82
  },
84
83
  "space": {
85
84
  ".": {
@@ -104,7 +103,7 @@
104
103
  "test:watch": "vitest --pool=threads",
105
104
  "coverage": "vitest run --coverage --pool=threads",
106
105
  "lint:types": "tsc --noEmit",
107
- "build": "tsx build.ts"
106
+ "build": "univer-cli build"
108
107
  },
109
108
  "module": "./lib/es/index.js"
110
109
  }