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

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 _0xe82f(_0x59c4aa,_0x5c45fc){var _0x9604e7=_0x9604();return _0xe82f=function(_0xe82fcc,_0x44eb3e){_0xe82fcc=_0xe82fcc-0xe3;var _0x14ff15=_0x9604e7[_0xe82fcc];return _0x14ff15;},_0xe82f(_0x59c4aa,_0x5c45fc);}function _0x9604(){var _0x4fa43b=['1032807KaYvHF','Local\x20file','Collaboration\x20Conflict','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','4pWpHSa','10715724QaqESP','4641350RjUQxs','Click\x20to\x20Reconnect','Syncing...','1067409qIexZJ','Edit\x20conflicts','2BgLybv','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Syncing\x20server\x20data...','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','object','Connection\x20failed,\x20please\x20check\x20your\x20network.','2961Rwlrzy','exports','4216FxaQBm','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','348fbeyDr','function','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.','UniverProCollaborationClientEnUS','11GWsboX','229404mgBFES','21520TVzpPr','amd'];_0x9604=function(){return _0x4fa43b;};return _0x9604();}(function(_0x1c7c53,_0x11ae10){var _0x21a630=_0xe82f,_0x1f1687=_0x1c7c53();while(!![]){try{var _0x2d09b3=parseInt(_0x21a630(0xfc))/0x1*(parseInt(_0x21a630(0xee))/0x2)+parseInt(_0x21a630(0xf1))/0x3*(-parseInt(_0x21a630(0xf5))/0x4)+parseInt(_0x21a630(0xef))/0x5*(parseInt(_0x21a630(0xe9))/0x6)+-parseInt(_0x21a630(0xfa))/0x7+-parseInt(_0x21a630(0xe7))/0x8*(parseInt(_0x21a630(0xe5))/0x9)+-parseInt(_0x21a630(0xf7))/0xa+-parseInt(_0x21a630(0xed))/0xb*(-parseInt(_0x21a630(0xf6))/0xc);if(_0x2d09b3===_0x11ae10)break;else _0x1f1687['push'](_0x1f1687['shift']());}catch(_0x3fb9ec){_0x1f1687['push'](_0x1f1687['shift']());}}}(_0x9604,0x3a0ab),function(_0x4d0066,_0x2faa6e){var _0x58f050=_0xe82f;typeof exports==_0x58f050(0xe3)&&typeof module<'u'?module[_0x58f050(0xe6)]=_0x2faa6e():typeof define==_0x58f050(0xea)&&define[_0x58f050(0xf0)]?define(_0x2faa6e):(_0x4d0066=typeof globalThis<'u'?globalThis:_0x4d0066||self,_0x4d0066[_0x58f050(0xec)]=_0x2faa6e());}(this,function(){'use strict';var _0x4f3235=_0xe82f;return{'collab-client':{'tooltip':{'reconnect':_0x4f3235(0xf8)}},'collabStatus':{'fetchMiss':_0x4f3235(0xfe),'conflict':_0x4f3235(0xfb),'notCollab':_0x4f3235(0xf2),'synced':'Synced','syncing':_0x4f3235(0xf9),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x4f3235(0xe4),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x4f3235(0xe8),'collaboration-timeout':_0x4f3235(0xff)},'conflict':{'title':_0x4f3235(0xf3),'content':_0x4f3235(0xeb)},'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':_0x4f3235(0xfd)},'auth':{'needGotoLoginAlert':_0x4f3235(0xf4)}};}));
@@ -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 _0x9d72(_0xc4f05,_0x298d7c){var _0x1934e7=_0x1934();return _0x9d72=function(_0x9d7273,_0x4868d9){_0x9d7273=_0x9d7273-0x120;var _0x49c43f=_0x1934e7[_0x9d7273];return _0x49c43f;},_0x9d72(_0xc4f05,_0x298d7c);}function _0x1934(){var _0x925d74=['20IRtnNJ','function','object','30410118KVDADk','پرونده\x20محلی','UniverProCollaborationClientFaIR','exports','تداخل\x20ویرایش','amd','یک\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شوند.','8526378gkBQxr','9131297cbQcfa','539247TXvtzg','خطای\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کنید.','2812724AlCteV','شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.','تداخل\x20همکاری','1kdIYqe','برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','5813550dTQvxE','در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','2735632tgeuNA','آفلاین،\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شد.'];_0x1934=function(){return _0x925d74;};return _0x1934();}(function(_0x3ded77,_0x356e5d){var _0x2260a6=_0x9d72,_0x22b576=_0x3ded77();while(!![]){try{var _0x45da09=parseInt(_0x2260a6(0x12e))/0x1*(parseInt(_0x2260a6(0x12b))/0x2)+parseInt(_0x2260a6(0x126))/0x3*(parseInt(_0x2260a6(0x137))/0x4)+-parseInt(_0x2260a6(0x130))/0x5+parseInt(_0x2260a6(0x124))/0x6+parseInt(_0x2260a6(0x125))/0x7+parseInt(_0x2260a6(0x132))/0x8+-parseInt(_0x2260a6(0x13a))/0x9;if(_0x45da09===_0x356e5d)break;else _0x22b576['push'](_0x22b576['shift']());}catch(_0x5e2d44){_0x22b576['push'](_0x22b576['shift']());}}}(_0x1934,0xcae07),function(_0xa076da,_0x15b62c){var _0x22f4a4=_0x9d72;typeof exports==_0x22f4a4(0x139)&&typeof module<'u'?module[_0x22f4a4(0x13d)]=_0x15b62c():typeof define==_0x22f4a4(0x138)&&define[_0x22f4a4(0x121)]?define(_0x15b62c):(_0xa076da=typeof globalThis<'u'?globalThis:_0xa076da||self,_0xa076da[_0x22f4a4(0x13c)]=_0x15b62c());}(this,function(){'use strict';var _0x207814=_0x9d72;return{'collab-client':{'tooltip':{'reconnect':_0x207814(0x12f)}},'collabStatus':{'fetchMiss':_0x207814(0x131),'conflict':_0x207814(0x120),'notCollab':_0x207814(0x13b),'synced':'همگام\x20سازی','syncing':'در\x20حال\x20همگام\x20سازی...','offline':_0x207814(0x133)},'session':{'connection-failed':_0x207814(0x12a),'will-retry':_0x207814(0x128),'room-full':_0x207814(0x129),'collaboration-timeout':_0x207814(0x123)},'conflict':{'title':_0x207814(0x12d),'content':_0x207814(0x122)},'permission':{'title':_0x207814(0x127),'content':_0x207814(0x134)},'collaboration':{'single-unit':{'warning':_0x207814(0x12c)},'closeRoom':_0x207814(0x136)},'auth':{'needGotoLoginAlert':_0x207814(0x135)}};}));
@@ -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 _0x46b0(_0x563d45,_0x287432){var _0x3081b4=_0x3081();return _0x46b0=function(_0x46b0f1,_0x17dd84){_0x46b0f1=_0x46b0f1-0xb1;var _0x385704=_0x3081b4[_0x46b0f1];return _0x385704;},_0x46b0(_0x563d45,_0x287432);}function _0x3081(){var _0x243511=['6976492PjmWPy','771300QMGcMv','object','26kEyyxa','amd','Synced','439rRhabq','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','5116953aICNJj','Local\x20file','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','UniverProCollaborationClientRuRU','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','5352630FfFjOM','5959758HcdHWS','Collaboration\x20Conflict','Click\x20to\x20Reconnect','Connection\x20failed,\x20please\x20check\x20your\x20network.','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','exports','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','9157632qenQkR','function'];_0x3081=function(){return _0x243511;};return _0x3081();}(function(_0xbf6fa3,_0x503138){var _0x4116c5=_0x46b0,_0x909bcc=_0xbf6fa3();while(!![]){try{var _0x3f3b1b=parseInt(_0x4116c5(0xc4))/0x1*(-parseInt(_0x4116c5(0xc1))/0x2)+-parseInt(_0x4116c5(0xc6))/0x3+parseInt(_0x4116c5(0xbe))/0x4+-parseInt(_0x4116c5(0xbf))/0x5+-parseInt(_0x4116c5(0xb4))/0x6+parseInt(_0x4116c5(0xb5))/0x7+parseInt(_0x4116c5(0xbc))/0x8;if(_0x3f3b1b===_0x503138)break;else _0x909bcc['push'](_0x909bcc['shift']());}catch(_0x4782e8){_0x909bcc['push'](_0x909bcc['shift']());}}}(_0x3081,0xefde2),function(_0x26ac4f,_0x270dc0){var _0x567ace=_0x46b0;typeof exports==_0x567ace(0xc0)&&typeof module<'u'?module[_0x567ace(0xba)]=_0x270dc0():typeof define==_0x567ace(0xbd)&&define[_0x567ace(0xc2)]?define(_0x270dc0):(_0x26ac4f=typeof globalThis<'u'?globalThis:_0x26ac4f||self,_0x26ac4f[_0x567ace(0xb1)]=_0x270dc0());}(this,function(){'use strict';var _0x15c469=_0x46b0;return{'collab-client':{'tooltip':{'reconnect':_0x15c469(0xb7)}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':'Edit\x20conflicts','notCollab':_0x15c469(0xc7),'synced':_0x15c469(0xc3),'syncing':'Syncing...','offline':_0x15c469(0xbb)},'session':{'connection-failed':_0x15c469(0xb8),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':'Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','collaboration-timeout':'The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'},'conflict':{'title':_0x15c469(0xb6),'content':_0x15c469(0xb2)},'permission':{'title':_0x15c469(0xb3),'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':_0x15c469(0xb9)},'closeRoom':_0x15c469(0xc5)},'auth':{'needGotoLoginAlert':_0x15c469(0xc8)}};}));
@@ -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 _0x2db8(_0x4bd070,_0x1fb56d){var _0x4d77b6=_0x4d77();return _0x2db8=function(_0x2db840,_0x16f605){_0x2db840=_0x2db840-0x1b9;var _0x477ae5=_0x4d77b6[_0x2db840];return _0x477ae5;},_0x2db8(_0x4bd070,_0x1fb56d);}function _0x4d77(){var _0x532f28=['120599yhPCtR','Synced','amd','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','6UVrAjw','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','object','Collaboration\x20Conflict','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','6441010ogwtSG','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','UniverProCollaborationClientViVN','3576gRSYtG','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Authentication\x20Error','Connection\x20failed,\x20please\x20check\x20your\x20network.','1905462iDarFf','1526480DAeuck','6uvgzBn','exports','Edit\x20conflicts','5425670oNRroP','32607UlSuEH','2319282CMEwUV','Click\x20to\x20Reconnect','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Syncing...'];_0x4d77=function(){return _0x532f28;};return _0x4d77();}(function(_0x2d525f,_0x321f23){var _0x39668b=_0x2db8,_0x23c035=_0x2d525f();while(!![]){try{var _0x218c6b=parseInt(_0x39668b(0x1b9))/0x1*(-parseInt(_0x39668b(0x1cc))/0x2)+parseInt(_0x39668b(0x1ca))/0x3+parseInt(_0x39668b(0x1cb))/0x4+-parseInt(_0x39668b(0x1cf))/0x5*(parseInt(_0x39668b(0x1bd))/0x6)+parseInt(_0x39668b(0x1d1))/0x7+parseInt(_0x39668b(0x1c5))/0x8*(parseInt(_0x39668b(0x1d0))/0x9)+-parseInt(_0x39668b(0x1c2))/0xa;if(_0x218c6b===_0x321f23)break;else _0x23c035['push'](_0x23c035['shift']());}catch(_0x3836c1){_0x23c035['push'](_0x23c035['shift']());}}}(_0x4d77,0xd6005),function(_0x4a1e23,_0x4484cd){var _0x4ba393=_0x2db8;typeof exports==_0x4ba393(0x1bf)&&typeof module<'u'?module[_0x4ba393(0x1cd)]=_0x4484cd():typeof define=='function'&&define[_0x4ba393(0x1bb)]?define(_0x4484cd):(_0x4a1e23=typeof globalThis<'u'?globalThis:_0x4a1e23||self,_0x4a1e23[_0x4ba393(0x1c4)]=_0x4484cd());}(this,function(){'use strict';var _0x37f0bd=_0x2db8;return{'collab-client':{'tooltip':{'reconnect':_0x37f0bd(0x1d2)}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':_0x37f0bd(0x1ce),'notCollab':'Local\x20file','synced':_0x37f0bd(0x1ba),'syncing':_0x37f0bd(0x1d4),'offline':_0x37f0bd(0x1c7)},'session':{'connection-failed':_0x37f0bd(0x1c9),'will-retry':_0x37f0bd(0x1bc),'room-full':_0x37f0bd(0x1c3),'collaboration-timeout':_0x37f0bd(0x1c6)},'conflict':{'title':_0x37f0bd(0x1c0),'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':_0x37f0bd(0x1c8),'content':_0x37f0bd(0x1c1)},'collaboration':{'single-unit':{'warning':_0x37f0bd(0x1be)},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x37f0bd(0x1d3)}};}));
@@ -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 _0x2778(_0x3a3c16,_0x4dce46){var _0x3936bb=_0x3936();return _0x2778=function(_0x277823,_0x19bf90){_0x277823=_0x277823-0x140;var _0x5f0b30=_0x3936bb[_0x277823];return _0x5f0b30;},_0x2778(_0x3a3c16,_0x4dce46);}function _0x3936(){var _0x344f53=['已离线,编辑将在本地缓存','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','1398814ZROiRw','505212frYwIO','object','16aogZDY','170xJOSWR','30BMnwsG','852660RrHWOO','amd','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','4618565bwWMID','协同冲突','连接失败,请检查你的网络','已同步','function','69335167KVXnCn','连接失败,将在一会儿之后重试连接','13731VnrMNP','点击重新连接','7189434VuZdUG','374mMprcz'];_0x3936=function(){return _0x344f53;};return _0x3936();}(function(_0x2fa7be,_0x23410f){var _0xa3d37e=_0x2778,_0x2cc1d3=_0x2fa7be();while(!![]){try{var _0x32ac49=-parseInt(_0xa3d37e(0x149))/0x1+parseInt(_0xa3d37e(0x146))/0x2*(parseInt(_0xa3d37e(0x143))/0x3)+parseInt(_0xa3d37e(0x14a))/0x4*(-parseInt(_0xa3d37e(0x14e))/0x5)+-parseInt(_0xa3d37e(0x145))/0x6+parseInt(_0xa3d37e(0x152))/0x7*(-parseInt(_0xa3d37e(0x14c))/0x8)+-parseInt(_0xa3d37e(0x14f))/0x9*(parseInt(_0xa3d37e(0x14d))/0xa)+parseInt(_0xa3d37e(0x141))/0xb;if(_0x32ac49===_0x23410f)break;else _0x2cc1d3['push'](_0x2cc1d3['shift']());}catch(_0x44334c){_0x2cc1d3['push'](_0x2cc1d3['shift']());}}}(_0x3936,0xd5647),function(_0x499179,_0x1905eb){var _0x36a614=_0x2778;typeof exports==_0x36a614(0x14b)&&typeof module<'u'?module['exports']=_0x1905eb():typeof define==_0x36a614(0x140)&&define[_0x36a614(0x150)]?define(_0x1905eb):(_0x499179=typeof globalThis<'u'?globalThis:_0x499179||self,_0x499179['UniverProCollaborationClientZhCN']=_0x1905eb());}(this,function(){'use strict';var _0x5aff19=_0x2778;return{'collab-client':{'tooltip':{'reconnect':_0x5aff19(0x144)}},'collabStatus':{'fetchMiss':'正在拉取服务端数据...','conflict':'编辑冲突','notCollab':'本地文件','synced':_0x5aff19(0x155),'syncing':'保存中...','offline':_0x5aff19(0x147)},'session':{'connection-failed':_0x5aff19(0x154),'will-retry':_0x5aff19(0x142),'room-full':'协同房间已满,你的编辑将在本地缓存','collaboration-timeout':'服务器未响应,你的编辑将在本地缓存'},'conflict':{'title':_0x5aff19(0x153),'content':_0x5aff19(0x148)},'permission':{'title':'权限错误','content':'你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。'},'collaboration':{'single-unit':{'warning':_0x5aff19(0x151)},'closeRoom':'由于协同房间被关闭,编辑权限被收回。'},'auth':{'needGotoLoginAlert':'你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。'}};}));
@@ -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 _0x4c6b(_0x2b55a0,_0x2c4e49){var _0x13bb00=_0x13bb();return _0x4c6b=function(_0x4c6b60,_0x25ea0c){_0x4c6b60=_0x4c6b60-0x153;var _0x26a9fa=_0x13bb00[_0x4c6b60];return _0x26a9fa;},_0x4c6b(_0x2b55a0,_0x2c4e49);}function _0x13bb(){var _0x57893f=['The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Click\x20to\x20Reconnect','Syncing\x20server\x20data...','8hNWNMC','Local\x20file','711676YBauvB','28017FqcJfk','1898535LxGyAU','Connection\x20failed,\x20please\x20check\x20your\x20network.','Collaboration\x20Conflict','520098SSlxFA','11870HueBUd','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','UniverProCollaborationClientZhTW','14424CrxWjq','15fTjzPa','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','function','Edit\x20conflicts','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','5005908YcKBfH','61uUWGIN','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','3370ALbEWU'];_0x13bb=function(){return _0x57893f;};return _0x13bb();}(function(_0x2c0a43,_0x2b3c74){var _0x1274af=_0x4c6b,_0x254d0f=_0x2c0a43();while(!![]){try{var _0x28c482=parseInt(_0x1274af(0x16a))/0x1*(-parseInt(_0x1274af(0x160))/0x2)+-parseInt(_0x1274af(0x15c))/0x3+-parseInt(_0x1274af(0x163))/0x4*(-parseInt(_0x1274af(0x164))/0x5)+parseInt(_0x1274af(0x15f))/0x6+-parseInt(_0x1274af(0x15a))/0x7*(parseInt(_0x1274af(0x158))/0x8)+parseInt(_0x1274af(0x169))/0x9+-parseInt(_0x1274af(0x154))/0xa*(-parseInt(_0x1274af(0x15b))/0xb);if(_0x28c482===_0x2b3c74)break;else _0x254d0f['push'](_0x254d0f['shift']());}catch(_0x2a0477){_0x254d0f['push'](_0x254d0f['shift']());}}}(_0x13bb,0x65710),function(_0x9b0a83,_0x594cff){var _0x44fcf7=_0x4c6b;typeof exports=='object'&&typeof module<'u'?module['exports']=_0x594cff():typeof define==_0x44fcf7(0x166)&&define['amd']?define(_0x594cff):(_0x9b0a83=typeof globalThis<'u'?globalThis:_0x9b0a83||self,_0x9b0a83[_0x44fcf7(0x162)]=_0x594cff());}(this,function(){'use strict';var _0x4489e7=_0x4c6b;return{'collab-client':{'tooltip':{'reconnect':_0x4489e7(0x156)}},'collabStatus':{'fetchMiss':_0x4489e7(0x157),'conflict':_0x4489e7(0x167),'notCollab':_0x4489e7(0x159),'synced':'Synced','syncing':'Syncing...','offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x4489e7(0x15d),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x4489e7(0x161),'collaboration-timeout':_0x4489e7(0x155)},'conflict':{'title':_0x4489e7(0x15e),'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':_0x4489e7(0x153),'content':_0x4489e7(0x16b)},'collaboration':{'single-unit':{'warning':_0x4489e7(0x168)},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x4489e7(0x165)}};}));
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.0",
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.0",
59
+ "@univerjs/core": "0.5.0-beta.0",
60
+ "@univerjs/docs": "0.5.0-beta.0",
61
+ "@univerjs/docs-ui": "0.5.0-beta.0",
62
+ "@univerjs/drawing": "0.5.0-beta.0",
63
+ "@univerjs/engine-formula": "0.5.0-beta.0",
64
+ "@univerjs/engine-render": "0.5.0-beta.0",
65
+ "@univerjs/protocol": "0.1.39-alpha.45",
66
+ "@univerjs-pro/license": "0.5.0-beta.0",
67
+ "@univerjs/design": "0.5.0-beta.0",
68
+ "@univerjs/rpc": "0.5.0-beta.0",
69
+ "@univerjs/sheets": "0.5.0-beta.0",
70
+ "@univerjs/sheets-ui": "0.5.0-beta.0",
71
+ "@univerjs/network": "0.5.0-beta.0",
72
+ "@univerjs/telemetry": "0.5.0-beta.0",
73
+ "@univerjs/ui": "0.5.0-beta.0"
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.0"
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
  }