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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/lib/cjs/index.js +1 -1
  2. package/lib/cjs/locale/en-US.js +1 -1
  3. package/lib/cjs/locale/fa-IR.js +1 -1
  4. package/lib/cjs/locale/ru-RU.js +1 -1
  5. package/lib/cjs/locale/vi-VN.js +1 -1
  6. package/lib/cjs/locale/zh-CN.js +1 -1
  7. package/lib/cjs/locale/zh-TW.js +1 -1
  8. package/lib/es/index.js +1 -1
  9. package/lib/es/locale/en-US.js +1 -1
  10. package/lib/es/locale/fa-IR.js +1 -1
  11. package/lib/es/locale/ru-RU.js +1 -1
  12. package/lib/es/locale/vi-VN.js +1 -1
  13. package/lib/es/locale/zh-CN.js +1 -1
  14. package/lib/es/locale/zh-TW.js +1 -1
  15. package/lib/types/config/config.d.ts +48 -0
  16. package/lib/types/controllers/collab-cursor/__tests__/doc-collab-cursor.controller.spec.d.ts +23 -0
  17. package/lib/types/controllers/collab-cursor/__tests__/serialize-text-ranges.spec.d.ts +1 -0
  18. package/lib/types/controllers/collab-cursor/__tests__/sheet-collab-cursor.controller.spec.d.ts +1 -0
  19. package/lib/types/controllers/collab-cursor/collab-cursor.controller.d.ts +22 -0
  20. package/lib/types/controllers/collab-cursor/doc-collab-cursor-entity.d.ts +38 -0
  21. package/lib/types/controllers/collab-cursor/doc-collab-cursor-render.controller.d.ts +24 -0
  22. package/lib/types/controllers/collab-cursor/serialize-text-ranges.d.ts +3 -0
  23. package/lib/types/controllers/collab-cursor/sheet-collab-cursor-entity.d.ts +39 -0
  24. package/lib/types/controllers/collab-cursor/sheet-collab-cursor-render.controller.d.ts +21 -0
  25. package/lib/types/controllers/collab-status/collab-status.controller.d.ts +18 -0
  26. package/lib/types/controllers/collaboration/__tests__/collaboration.controller.spec.d.ts +4 -0
  27. package/lib/types/controllers/collaboration/__tests__/mock-text-selection-render-manager.service.d.ts +0 -0
  28. package/lib/types/controllers/collaboration/__tests__/mocks.d.ts +54 -0
  29. package/lib/types/controllers/collaboration/collaboration-entity.d.ts +91 -0
  30. package/lib/types/controllers/collaboration/collaboration-state.d.ts +303 -0
  31. package/lib/types/controllers/collaboration/collaboration.controller.d.ts +24 -0
  32. package/lib/types/controllers/collaboration/utils/changeset-utils.d.ts +18 -0
  33. package/lib/types/controllers/collaboration/utils/empty.d.ts +2 -0
  34. package/lib/types/controllers/config.schema.d.ts +29 -0
  35. package/lib/types/controllers/data-loader/__tests__/data-loader.controller.spec.d.ts +1 -0
  36. package/lib/types/controllers/data-loader/data-loader.controller.d.ts +22 -0
  37. package/lib/types/controllers/file-name/file-name.controller.d.ts +12 -0
  38. package/lib/types/controllers/telemetry.d.ts +11 -0
  39. package/lib/types/index.d.ts +35 -890
  40. package/lib/types/locale/en-US.d.ts +3 -0
  41. package/lib/types/locale/fa-IR.d.ts +3 -0
  42. package/lib/types/locale/ru-RU.d.ts +3 -0
  43. package/lib/types/locale/vi-VN.d.ts +3 -0
  44. package/lib/types/locale/zh-CN.d.ts +39 -0
  45. package/lib/types/locale/zh-TW.d.ts +3 -0
  46. package/lib/types/models/cursor.d.ts +30 -0
  47. package/lib/types/plugin.d.ts +18 -0
  48. package/lib/types/services/auth-server/auth-server.service.d.ts +10 -0
  49. package/lib/types/services/auth-server/authz-io-http.service.d.ts +30 -0
  50. package/lib/types/services/auth-server/domain-request.service.d.ts +6 -0
  51. package/lib/types/services/auth-server/util.d.ts +1 -0
  52. package/lib/types/services/collaboration-session/collaboration-session.d.ts +59 -0
  53. package/lib/types/services/collaboration-session/collaboration-session.service.d.ts +61 -0
  54. package/lib/types/services/color-assign/color-assign.service.d.ts +10 -0
  55. package/lib/types/services/comment/comment.service.d.ts +6 -0
  56. package/lib/types/services/image-remote/image-io.service.d.ts +34 -0
  57. package/lib/types/services/ime-cache-transform/doc-transform-ime-cache.service.d.ts +13 -0
  58. package/lib/types/services/local-cache/local-cache.service.d.ts +37 -0
  59. package/lib/types/services/member/member.service.d.ts +77 -0
  60. package/lib/types/services/permission/permission.service.d.ts +12 -0
  61. package/lib/types/services/range-selection/sheet-transform-selections.service.d.ts +13 -0
  62. package/lib/types/services/single-active-unit/single-active-unit.service.d.ts +39 -0
  63. package/lib/types/services/snapshot-server/snapshot-server.service.d.ts +21 -0
  64. package/lib/types/services/socket/collaboration-socket.service.d.ts +34 -0
  65. package/lib/types/services/socket/serialize.d.ts +3 -0
  66. package/lib/types/services/state-cache-transform/doc-transform-state-cache.service.d.ts +12 -0
  67. package/lib/types/services/sync-editing-collab-cursor/doc-sync-editing-collab-cursor.service.d.ts +13 -0
  68. package/lib/types/services/text-selection/doc-transform-selections.service.d.ts +8 -0
  69. package/lib/types/services/undoredo/collaborative-undoredo.service.d.ts +19 -0
  70. package/lib/types/services/url/url.service.d.ts +12 -0
  71. package/lib/types/services/url/web-url.service.d.ts +10 -0
  72. package/lib/types/views/components/CollabStatus.d.ts +10 -0
  73. package/lib/types/views/components/CollabStatus.stories.d.ts +8 -0
  74. package/lib/types/views/shapes/doc-collab-cursor.d.ts +27 -0
  75. package/lib/types/views/shapes/sheet-collab-cursor.shape.d.ts +27 -0
  76. package/lib/types/views/shapes/text-bubble.shape.d.ts +19 -0
  77. package/lib/umd/index.js +1 -1
  78. package/lib/umd/locale/en-US.js +1 -1
  79. package/lib/umd/locale/fa-IR.js +1 -1
  80. package/lib/umd/locale/ru-RU.js +1 -1
  81. package/lib/umd/locale/vi-VN.js +1 -1
  82. package/lib/umd/locale/zh-CN.js +1 -1
  83. package/lib/umd/locale/zh-TW.js +1 -1
  84. package/package.json +16 -16
@@ -1 +1 @@
1
- (function(_0x47c072,_0x13dff3){var _0x3a94aa=_0xae3c,_0x5030cc=_0x47c072();while(!![]){try{var _0x55df62=parseInt(_0x3a94aa(0xe0))/0x1*(-parseInt(_0x3a94aa(0xe5))/0x2)+-parseInt(_0x3a94aa(0xdc))/0x3*(-parseInt(_0x3a94aa(0xdb))/0x4)+-parseInt(_0x3a94aa(0xed))/0x5+parseInt(_0x3a94aa(0xea))/0x6+parseInt(_0x3a94aa(0xe3))/0x7*(parseInt(_0x3a94aa(0xe2))/0x8)+parseInt(_0x3a94aa(0xe8))/0x9*(parseInt(_0x3a94aa(0xec))/0xa)+parseInt(_0x3a94aa(0xe6))/0xb*(-parseInt(_0x3a94aa(0xda))/0xc);if(_0x55df62===_0x13dff3)break;else _0x5030cc['push'](_0x5030cc['shift']());}catch(_0x36e5d1){_0x5030cc['push'](_0x5030cc['shift']());}}}(_0x2243,0x3694e),function(_0x276f1c,_0x5ce376){var _0x421350=_0xae3c;typeof exports=='object'&&typeof module<'u'?module[_0x421350(0xd9)]=_0x5ce376():typeof define==_0x421350(0xd7)&&define[_0x421350(0xee)]?define(_0x5ce376):(_0x276f1c=typeof globalThis<'u'?globalThis:_0x276f1c||self,_0x276f1c['UniverCollaborationClientEnUS']=_0x5ce376());}(this,function(){'use strict';var _0xce574d=_0xae3c;return{'collab-client':{'tooltip':{'reconnect':_0xce574d(0xf1)}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':_0xce574d(0xeb),'notCollab':_0xce574d(0xdd),'synced':_0xce574d(0xf0),'syncing':_0xce574d(0xe1),'offline':_0xce574d(0xdf)},'session':{'connection-failed':_0xce574d(0xe4),'will-retry':_0xce574d(0xd8),'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':'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':'Authentication\x20Error','content':_0xce574d(0xef)},'collaboration':{'single-unit':{'warning':_0xce574d(0xe7)},'closeRoom':_0xce574d(0xe9)},'auth':{'needGotoLoginAlert':_0xce574d(0xde)}};}));function _0xae3c(_0x8e3ec5,_0x1119d1){var _0x224321=_0x2243();return _0xae3c=function(_0xae3c9d,_0x2afbe2){_0xae3c9d=_0xae3c9d-0xd7;var _0x14c8cb=_0x224321[_0xae3c9d];return _0x14c8cb;},_0xae3c(_0x8e3ec5,_0x1119d1);}function _0x2243(){var _0x280004=['3121065Tekppx','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','2370612PhUkLE','Edit\x20conflicts','10lRmJOm','2203615SnQQYJ','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.','Synced','Click\x20to\x20Reconnect','function','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','exports','36LgXxJL','4WopkmD','679704eKHZKG','Local\x20file','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','33154SwhhSD','Syncing...','56BIozIR','56665CNLCal','Connection\x20failed,\x20please\x20check\x20your\x20network.','12QzKkYa','593659jXTyvn','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'];_0x2243=function(){return _0x280004;};return _0x2243();}
1
+ function _0x2d62(_0x36ead8,_0x31f32f){var _0x57604c=_0x5760();return _0x2d62=function(_0x2d624e,_0x4c1293){_0x2d624e=_0x2d624e-0x147;var _0x2ac12c=_0x57604c[_0x2d624e];return _0x2ac12c;},_0x2d62(_0x36ead8,_0x31f32f);}function _0x5760(){var _0x531bc4=['18gWlxaI','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','890100JyXrbg','Connection\x20failed,\x20please\x20check\x20your\x20network.','230005mMYMNt','328782shIZXg','2317jjKqIP','Syncing...','66GsBzey','238460TsSOZg','177eQadHn','Authentication\x20Error','exports','Synced','Syncing\x20server\x20data...','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','function','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Click\x20to\x20Reconnect','2056efJLpW','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','object','Collaboration\x20Conflict','168969ozGZLF','Local\x20file','4EOgKmi','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Edit\x20conflicts','UniverCollaborationClientEnUS'];_0x5760=function(){return _0x531bc4;};return _0x5760();}(function(_0x5ece5f,_0x3bc9ff){var _0x51533d=_0x2d62,_0x4ae21f=_0x5ece5f();while(!![]){try{var _0x1ca6be=-parseInt(_0x51533d(0x15b))/0x1+parseInt(_0x51533d(0x156))/0x2+parseInt(_0x51533d(0x14b))/0x3*(-parseInt(_0x51533d(0x14d))/0x4)+parseInt(_0x51533d(0x155))/0x5*(parseInt(_0x51533d(0x151))/0x6)+-parseInt(_0x51533d(0x157))/0x7*(parseInt(_0x51533d(0x147))/0x8)+parseInt(_0x51533d(0x153))/0x9+parseInt(_0x51533d(0x15a))/0xa*(-parseInt(_0x51533d(0x159))/0xb);if(_0x1ca6be===_0x3bc9ff)break;else _0x4ae21f['push'](_0x4ae21f['shift']());}catch(_0x594a81){_0x4ae21f['push'](_0x4ae21f['shift']());}}}(_0x5760,0x1c7ab),function(_0x54eb16,_0x435817){var _0x255cfe=_0x2d62;typeof exports==_0x255cfe(0x149)&&typeof module<'u'?module[_0x255cfe(0x15d)]=_0x435817():typeof define==_0x255cfe(0x163)&&define['amd']?define(_0x435817):(_0x54eb16=typeof globalThis<'u'?globalThis:_0x54eb16||self,_0x54eb16[_0x255cfe(0x150)]=_0x435817());}(this,function(){'use strict';var _0x92cab7=_0x2d62;return{'collab-client':{'tooltip':{'reconnect':_0x92cab7(0x165)}},'collabStatus':{'fetchMiss':_0x92cab7(0x15f),'conflict':_0x92cab7(0x14f),'notCollab':_0x92cab7(0x14c),'synced':_0x92cab7(0x15e),'syncing':_0x92cab7(0x158),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x92cab7(0x154),'will-retry':_0x92cab7(0x164),'room-full':_0x92cab7(0x148),'collaboration-timeout':_0x92cab7(0x161)},'conflict':{'title':_0x92cab7(0x14a),'content':_0x92cab7(0x160)},'permission':{'title':_0x92cab7(0x15c),'content':'Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.'},'collaboration':{'single-unit':{'warning':_0x92cab7(0x152)},'closeRoom':_0x92cab7(0x14e)},'auth':{'needGotoLoginAlert':_0x92cab7(0x162)}};}));
@@ -1 +1 @@
1
- function _0x4042(){var _0x193a23=['32172669oTVvxb','یک\x20تداخل\x20بین\x20نسخه\x20محلی\x20شما\x20و\x20نسخه\x20در\x20سرور\x20وجود\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20ذخیره\x20کنید،\x20زیرا\x20آنها\x20پس\x20از\x20بازیابی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','19934knXZcz','11287554ANoyGV','10GtKoHd','object','3609277VcOURa','پرونده\x20محلی','سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.','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رفت.','3433916reRmHx','51jcgsXF','10351000XDwdxH','exports','خطای\x20اعتبارسنجی','2084760XjWjfL','ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.','تداخل\x20همکاری','همگام\x20سازی','در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','UniverCollaborationClientFaIR','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.','آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند','amd','برای\x20اتصال\x20مجدد\x20کلیک\x20کنید'];_0x4042=function(){return _0x193a23;};return _0x4042();}function _0x5046(_0xf0d015,_0x59cd8d){var _0x404247=_0x4042();return _0x5046=function(_0x504638,_0x1d875f){_0x504638=_0x504638-0x19e;var _0x29f449=_0x404247[_0x504638];return _0x29f449;},_0x5046(_0xf0d015,_0x59cd8d);}(function(_0x17545d,_0x165db2){var _0xd1b86e=_0x5046,_0x28d2fc=_0x17545d();while(!![]){try{var _0x2374c1=-parseInt(_0xd1b86e(0x1a7))/0x1*(parseInt(_0xd1b86e(0x1b8))/0x2)+parseInt(_0xd1b86e(0x1ab))/0x3+-parseInt(_0xd1b86e(0x1a6))/0x4*(-parseInt(_0xd1b86e(0x19f))/0x5)+parseInt(_0xd1b86e(0x19e))/0x6+-parseInt(_0xd1b86e(0x1a1))/0x7+parseInt(_0xd1b86e(0x1a8))/0x8+-parseInt(_0xd1b86e(0x1b6))/0x9;if(_0x2374c1===_0x165db2)break;else _0x28d2fc['push'](_0x28d2fc['shift']());}catch(_0x2e7d21){_0x28d2fc['push'](_0x28d2fc['shift']());}}}(_0x4042,0xf14b7),function(_0x51e930,_0xa94f6f){var _0x3b9b95=_0x5046;typeof exports==_0x3b9b95(0x1a0)&&typeof module<'u'?module[_0x3b9b95(0x1a9)]=_0xa94f6f():typeof define==_0x3b9b95(0x1a4)&&define[_0x3b9b95(0x1b4)]?define(_0xa94f6f):(_0x51e930=typeof globalThis<'u'?globalThis:_0x51e930||self,_0x51e930[_0x3b9b95(0x1b1)]=_0xa94f6f());}(this,function(){'use strict';var _0x57b135=_0x5046;return{'collab-client':{'tooltip':{'reconnect':_0x57b135(0x1b5)}},'collabStatus':{'fetchMiss':_0x57b135(0x1af),'conflict':'تداخل\x20ویرایش','notCollab':_0x57b135(0x1a2),'synced':_0x57b135(0x1ae),'syncing':'در\x20حال\x20همگام\x20سازی...','offline':_0x57b135(0x1b3)},'session':{'connection-failed':'اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','will-retry':_0x57b135(0x1b0),'room-full':'اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','collaboration-timeout':_0x57b135(0x1a3)},'conflict':{'title':_0x57b135(0x1ad),'content':_0x57b135(0x1b7)},'permission':{'title':_0x57b135(0x1aa),'content':_0x57b135(0x1a5)},'collaboration':{'single-unit':{'warning':'شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.'},'closeRoom':_0x57b135(0x1b2)},'auth':{'needGotoLoginAlert':_0x57b135(0x1ac)}};}));
1
+ (function(_0x3eb1f6,_0x3d4b31){var _0x464691=_0x55c9,_0x51e7a7=_0x3eb1f6();while(!![]){try{var _0x2688db=parseInt(_0x464691(0x1db))/0x1*(-parseInt(_0x464691(0x1d0))/0x2)+parseInt(_0x464691(0x1e5))/0x3+-parseInt(_0x464691(0x1e7))/0x4*(-parseInt(_0x464691(0x1d4))/0x5)+parseInt(_0x464691(0x1de))/0x6*(parseInt(_0x464691(0x1e6))/0x7)+parseInt(_0x464691(0x1d2))/0x8+-parseInt(_0x464691(0x1e1))/0x9+-parseInt(_0x464691(0x1e0))/0xa*(-parseInt(_0x464691(0x1e8))/0xb);if(_0x2688db===_0x3d4b31)break;else _0x51e7a7['push'](_0x51e7a7['shift']());}catch(_0x20d1a3){_0x51e7a7['push'](_0x51e7a7['shift']());}}}(_0x508a,0x50165),function(_0x237258,_0x302204){var _0x1c6c44=_0x55c9;typeof exports==_0x1c6c44(0x1ce)&&typeof module<'u'?module[_0x1c6c44(0x1dd)]=_0x302204():typeof define==_0x1c6c44(0x1ea)&&define[_0x1c6c44(0x1d3)]?define(_0x302204):(_0x237258=typeof globalThis<'u'?globalThis:_0x237258||self,_0x237258[_0x1c6c44(0x1e3)]=_0x302204());}(this,function(){'use strict';var _0x5e0813=_0x55c9;return{'collab-client':{'tooltip':{'reconnect':_0x5e0813(0x1d8)}},'collabStatus':{'fetchMiss':'در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','conflict':_0x5e0813(0x1d9),'notCollab':_0x5e0813(0x1cf),'synced':_0x5e0813(0x1eb),'syncing':_0x5e0813(0x1ec),'offline':_0x5e0813(0x1d6)},'session':{'connection-failed':_0x5e0813(0x1e2),'will-retry':_0x5e0813(0x1dc),'room-full':'اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','collaboration-timeout':_0x5e0813(0x1df)},'conflict':{'title':_0x5e0813(0x1da),'content':_0x5e0813(0x1e9)},'permission':{'title':_0x5e0813(0x1d5),'content':_0x5e0813(0x1d7)},'collaboration':{'single-unit':{'warning':'شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.'},'closeRoom':_0x5e0813(0x1d1)},'auth':{'needGotoLoginAlert':_0x5e0813(0x1e4)}};}));function _0x55c9(_0x1c9d0d,_0x374c89){var _0x508a47=_0x508a();return _0x55c9=function(_0x55c9c7,_0x27dd5f){_0x55c9c7=_0x55c9c7-0x1ce;var _0x51bcab=_0x508a47[_0x55c9c7];return _0x51bcab;},_0x55c9(_0x1c9d0d,_0x374c89);}function _0x508a(){var _0x223309=['314136yPzGWt','amd','1385wuQSOY','خطای\x20اعتبارسنجی','آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند','اعمال\x20شما\x20با\x20مجوزهای\x20سرور\x20تداخل\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20در\x20جای\x20دیگر\x20ذخیره\x20کنید\x20زیرا\x20پس\x20از\x20تازه\x20سازی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','تداخل\x20ویرایش','تداخل\x20همکاری','7421UHGsvQ','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','exports','6iyHhCq','سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.','318380pYPURD','1595970hSMzek','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','UniverCollaborationClientFaIR','ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.','1695699apcPOj','2344181lihbFr','2596zxjqeT','11LDxaJx','یک\x20تداخل\x20بین\x20نسخه\x20محلی\x20شما\x20و\x20نسخه\x20در\x20سرور\x20وجود\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20ذخیره\x20کنید،\x20زیرا\x20آنها\x20پس\x20از\x20بازیابی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','function','همگام\x20سازی','در\x20حال\x20همگام\x20سازی...','object','پرونده\x20محلی','174SgJdiI','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.'];_0x508a=function(){return _0x223309;};return _0x508a();}
@@ -1 +1 @@
1
- function _0x4f49(_0x5689b4,_0x5a37c1){var _0x469222=_0x4692();return _0x4f49=function(_0x4f4932,_0x5a1da5){_0x4f4932=_0x4f4932-0x1c3;var _0x72a319=_0x469222[_0x4f4932];return _0x72a319;},_0x4f49(_0x5689b4,_0x5a37c1);}function _0x4692(){var _0x36984f=['68624vPVzwK','182fMOXkH','Authentication\x20Error','Edit\x20conflicts','Synced','Click\x20to\x20Reconnect','amd','Syncing\x20server\x20data...','UniverCollaborationClientRuRU','229760CLnxGB','10877823vmzRga','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','2jknEcV','440kcqQys','Connection\x20failed,\x20please\x20check\x20your\x20network.','89002XQaTpg','29650LWJQBr','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','2923353QkUVtk','342NweVvH','Local\x20file','5085246LMbDin','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','exports'];_0x4692=function(){return _0x36984f;};return _0x4692();}(function(_0x1c5755,_0x34a6e1){var _0x21716f=_0x4f49,_0x6e7c5c=_0x1c5755();while(!![]){try{var _0x1a6d8d=parseInt(_0x21716f(0x1d0))/0x1*(parseInt(_0x21716f(0x1d3))/0x2)+parseInt(_0x21716f(0x1d7))/0x3+-parseInt(_0x21716f(0x1d1))/0x4*(-parseInt(_0x21716f(0x1d4))/0x5)+-parseInt(_0x21716f(0x1da))/0x6+-parseInt(_0x21716f(0x1c4))/0x7*(parseInt(_0x21716f(0x1c3))/0x8)+parseInt(_0x21716f(0x1d8))/0x9*(parseInt(_0x21716f(0x1cc))/0xa)+-parseInt(_0x21716f(0x1cd))/0xb;if(_0x1a6d8d===_0x34a6e1)break;else _0x6e7c5c['push'](_0x6e7c5c['shift']());}catch(_0x334343){_0x6e7c5c['push'](_0x6e7c5c['shift']());}}}(_0x4692,0x813e3),function(_0x44812f,_0x45a4b6){var _0x40a7ee=_0x4f49;typeof exports=='object'&&typeof module<'u'?module[_0x40a7ee(0x1dc)]=_0x45a4b6():typeof define=='function'&&define[_0x40a7ee(0x1c9)]?define(_0x45a4b6):(_0x44812f=typeof globalThis<'u'?globalThis:_0x44812f||self,_0x44812f[_0x40a7ee(0x1cb)]=_0x45a4b6());}(this,function(){'use strict';var _0x1a0b85=_0x4f49;return{'collab-client':{'tooltip':{'reconnect':_0x1a0b85(0x1c8)}},'collabStatus':{'fetchMiss':_0x1a0b85(0x1ca),'conflict':_0x1a0b85(0x1c6),'notCollab':_0x1a0b85(0x1d9),'synced':_0x1a0b85(0x1c7),'syncing':'Syncing...','offline':_0x1a0b85(0x1d5)},'session':{'connection-failed':_0x1a0b85(0x1d2),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':'Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','collaboration-timeout':_0x1a0b85(0x1cf)},'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':_0x1a0b85(0x1c5),'content':_0x1a0b85(0x1db)},'collaboration':{'single-unit':{'warning':_0x1a0b85(0x1ce)},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x1a0b85(0x1d6)}};}));
1
+ function _0x385c(_0x278ec4,_0x5d319){var _0x96f5fe=_0x96f5();return _0x385c=function(_0x385caa,_0x120fd5){_0x385caa=_0x385caa-0x1d5;var _0x291855=_0x96f5fe[_0x385caa];return _0x291855;},_0x385c(_0x278ec4,_0x5d319);}function _0x96f5(){var _0x2c129b=['28PQLaCa','Click\x20to\x20Reconnect','Authentication\x20Error','14758960HoCxkz','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','Edit\x20conflicts','Syncing\x20server\x20data...','Connection\x20failed,\x20please\x20check\x20your\x20network.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','1082188csKtNd','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','function','8UIhhAB','1353836jDPxiP','UniverCollaborationClientRuRU','Synced','6ePAFVA','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','4654737NXrDeE','amd','1383042wNDnNy','object','66032KyEkBF','exports','Syncing...','Local\x20file','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','5996430jjspsQ'];_0x96f5=function(){return _0x2c129b;};return _0x96f5();}(function(_0x53ce76,_0x558608){var _0x1d4893=_0x385c,_0x37d3c1=_0x53ce76();while(!![]){try{var _0x27fd5a=parseInt(_0x1d4893(0x1e9))/0x1+-parseInt(_0x1d4893(0x1db))/0x2*(parseInt(_0x1d4893(0x1e2))/0x3)+-parseInt(_0x1d4893(0x1df))/0x4+parseInt(_0x1d4893(0x1f1))/0x5+-parseInt(_0x1d4893(0x1e7))/0x6*(parseInt(_0x1d4893(0x1f2))/0x7)+-parseInt(_0x1d4893(0x1de))/0x8*(-parseInt(_0x1d4893(0x1e5))/0x9)+parseInt(_0x1d4893(0x1d5))/0xa;if(_0x27fd5a===_0x558608)break;else _0x37d3c1['push'](_0x37d3c1['shift']());}catch(_0x17fd4e){_0x37d3c1['push'](_0x37d3c1['shift']());}}}(_0x96f5,0xdf914),function(_0x4154a6,_0x5d2c29){var _0xb8aa24=_0x385c;typeof exports==_0xb8aa24(0x1e8)&&typeof module<'u'?module[_0xb8aa24(0x1ea)]=_0x5d2c29():typeof define==_0xb8aa24(0x1dd)&&define[_0xb8aa24(0x1e6)]?define(_0x5d2c29):(_0x4154a6=typeof globalThis<'u'?globalThis:_0x4154a6||self,_0x4154a6[_0xb8aa24(0x1e0)]=_0x5d2c29());}(this,function(){'use strict';var _0x184a6c=_0x385c;return{'collab-client':{'tooltip':{'reconnect':_0x184a6c(0x1f3)}},'collabStatus':{'fetchMiss':_0x184a6c(0x1d8),'conflict':_0x184a6c(0x1d7),'notCollab':_0x184a6c(0x1ec),'synced':_0x184a6c(0x1e1),'syncing':_0x184a6c(0x1eb),'offline':_0x184a6c(0x1dc)},'session':{'connection-failed':_0x184a6c(0x1d9),'will-retry':_0x184a6c(0x1ef),'room-full':_0x184a6c(0x1ee),'collaboration-timeout':_0x184a6c(0x1e4)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x184a6c(0x1d6)},'permission':{'title':_0x184a6c(0x1f4),'content':_0x184a6c(0x1ed)},'collaboration':{'single-unit':{'warning':_0x184a6c(0x1e3)},'closeRoom':_0x184a6c(0x1f0)},'auth':{'needGotoLoginAlert':_0x184a6c(0x1da)}};}));
@@ -1 +1 @@
1
- (function(_0x3a8174,_0x31ca6f){var _0x535579=_0x8506,_0x2ffdd1=_0x3a8174();while(!![]){try{var _0x592e87=parseInt(_0x535579(0xdb))/0x1+-parseInt(_0x535579(0xed))/0x2*(parseInt(_0x535579(0xeb))/0x3)+parseInt(_0x535579(0xef))/0x4+parseInt(_0x535579(0xe1))/0x5+-parseInt(_0x535579(0xe0))/0x6*(-parseInt(_0x535579(0xea))/0x7)+parseInt(_0x535579(0xe7))/0x8+-parseInt(_0x535579(0xe9))/0x9;if(_0x592e87===_0x31ca6f)break;else _0x2ffdd1['push'](_0x2ffdd1['shift']());}catch(_0x15a3a0){_0x2ffdd1['push'](_0x2ffdd1['shift']());}}}(_0x1fd3,0xbbb2e),function(_0x42dc07,_0x5a314c){var _0x240e00=_0x8506;typeof exports==_0x240e00(0xe5)&&typeof module<'u'?module['exports']=_0x5a314c():typeof define=='function'&&define['amd']?define(_0x5a314c):(_0x42dc07=typeof globalThis<'u'?globalThis:_0x42dc07||self,_0x42dc07[_0x240e00(0xdc)]=_0x5a314c());}(this,function(){'use strict';var _0x23f177=_0x8506;return{'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':_0x23f177(0xdf),'notCollab':'Local\x20file','synced':_0x23f177(0xe4),'syncing':'Syncing...','offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':'Connection\x20failed,\x20please\x20check\x20your\x20network.','will-retry':_0x23f177(0xdd),'room-full':_0x23f177(0xe2),'collaboration-timeout':_0x23f177(0xe8)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x23f177(0xe6)},'permission':{'title':_0x23f177(0xe3),'content':_0x23f177(0xec)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x23f177(0xde)},'auth':{'needGotoLoginAlert':_0x23f177(0xee)}};}));function _0x8506(_0x1825d1,_0x579efe){var _0x1fd31a=_0x1fd3();return _0x8506=function(_0x85063e,_0x1da147){_0x85063e=_0x85063e-0xdb;var _0x9579f6=_0x1fd31a[_0x85063e];return _0x9579f6;},_0x8506(_0x1825d1,_0x579efe);}function _0x1fd3(){var _0x23ea60=['2205616icPhHk','20967ObWZVP','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','102LGHfub','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','1660544nwilOv','607867PRDjBx','UniverCollaborationClientViVN','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Edit\x20conflicts','12DPEsTP','3253525nnyqlT','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Authentication\x20Error','Synced','object','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.','9096424aDoGCF','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','20841156bATmzq'];_0x1fd3=function(){return _0x23ea60;};return _0x1fd3();}
1
+ function _0x59a8(){var _0x18fb3b=['Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','3326997gLFFoK','object','amd','Local\x20file','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','35iIgeJy','Click\x20to\x20Reconnect','1036xsMKKZ','Connection\x20failed,\x20please\x20check\x20your\x20network.','2597360dBrBDu','Syncing...','125vxNlPV','Collaboration\x20Conflict','31661sYGQJK','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Edit\x20conflicts','2488RCYJbK','3033960gcwOwa','UniverCollaborationClientViVN','11634552fdziFc','Syncing\x20server\x20data...','558318ABahhY'];_0x59a8=function(){return _0x18fb3b;};return _0x59a8();}function _0x4702(_0x44594a,_0x1214a7){var _0x59a821=_0x59a8();return _0x4702=function(_0x4702e4,_0x5643f9){_0x4702e4=_0x4702e4-0x1bb;var _0x516497=_0x59a821[_0x4702e4];return _0x516497;},_0x4702(_0x44594a,_0x1214a7);}(function(_0x4d6d3e,_0xe128a4){var _0x34ade7=_0x4702,_0x318787=_0x4d6d3e();while(!![]){try{var _0x1abaa8=-parseInt(_0x34ade7(0x1d1))/0x1*(parseInt(_0x34ade7(0x1cd))/0x2)+parseInt(_0x34ade7(0x1c6))/0x3+-parseInt(_0x34ade7(0x1cf))/0x4+parseInt(_0x34ade7(0x1cb))/0x5*(parseInt(_0x34ade7(0x1c4))/0x6)+-parseInt(_0x34ade7(0x1d3))/0x7*(-parseInt(_0x34ade7(0x1bf))/0x8)+-parseInt(_0x34ade7(0x1c2))/0x9+-parseInt(_0x34ade7(0x1c0))/0xa;if(_0x1abaa8===_0xe128a4)break;else _0x318787['push'](_0x318787['shift']());}catch(_0x32d317){_0x318787['push'](_0x318787['shift']());}}}(_0x59a8,0xd12e9),function(_0x4ff024,_0x3e628b){var _0x5869a0=_0x4702;typeof exports==_0x5869a0(0x1c7)&&typeof module<'u'?module['exports']=_0x3e628b():typeof define=='function'&&define[_0x5869a0(0x1c8)]?define(_0x3e628b):(_0x4ff024=typeof globalThis<'u'?globalThis:_0x4ff024||self,_0x4ff024[_0x5869a0(0x1c1)]=_0x3e628b());}(this,function(){'use strict';var _0x133ef3=_0x4702;return{'collab-client':{'tooltip':{'reconnect':_0x133ef3(0x1cc)}},'collabStatus':{'fetchMiss':_0x133ef3(0x1c3),'conflict':_0x133ef3(0x1be),'notCollab':_0x133ef3(0x1c9),'synced':'Synced','syncing':_0x133ef3(0x1d0),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x133ef3(0x1ce),'will-retry':_0x133ef3(0x1bb),'room-full':_0x133ef3(0x1bd),'collaboration-timeout':_0x133ef3(0x1d4)},'conflict':{'title':_0x133ef3(0x1d2),'content':'There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.'},'permission':{'title':'Authentication\x20Error','content':_0x133ef3(0x1ca)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x133ef3(0x1bc)},'auth':{'needGotoLoginAlert':_0x133ef3(0x1c5)}};}));
@@ -1 +1 @@
1
- function _0x50bb(_0x15ecf3,_0x31289e){var _0x288c88=_0x288c();return _0x50bb=function(_0x50bb51,_0x565779){_0x50bb51=_0x50bb51-0x171;var _0x3ed3f5=_0x288c88[_0x50bb51];return _0x3ed3f5;},_0x50bb(_0x15ecf3,_0x31289e);}(function(_0x2b5bf5,_0x4498b9){var _0x5877a9=_0x50bb,_0x1d91f2=_0x2b5bf5();while(!![]){try{var _0x83583b=-parseInt(_0x5877a9(0x17e))/0x1+-parseInt(_0x5877a9(0x178))/0x2+-parseInt(_0x5877a9(0x176))/0x3+-parseInt(_0x5877a9(0x171))/0x4+parseInt(_0x5877a9(0x184))/0x5+parseInt(_0x5877a9(0x177))/0x6+parseInt(_0x5877a9(0x186))/0x7;if(_0x83583b===_0x4498b9)break;else _0x1d91f2['push'](_0x1d91f2['shift']());}catch(_0x36288c){_0x1d91f2['push'](_0x1d91f2['shift']());}}}(_0x288c,0x6e642),function(_0x316ea2,_0x18e116){var _0x49a477=_0x50bb;typeof exports==_0x49a477(0x17c)&&typeof module<'u'?module[_0x49a477(0x17b)]=_0x18e116():typeof define==_0x49a477(0x173)&&define['amd']?define(_0x18e116):(_0x316ea2=typeof globalThis<'u'?globalThis:_0x316ea2||self,_0x316ea2['UniverCollaborationClientZhCN']=_0x18e116());}(this,function(){'use strict';var _0x49a3ab=_0x50bb;return{'collab-client':{'tooltip':{'reconnect':_0x49a3ab(0x175)}},'collabStatus':{'fetchMiss':'正在拉取服务端数据...','conflict':_0x49a3ab(0x181),'notCollab':'本地文件','synced':_0x49a3ab(0x179),'syncing':_0x49a3ab(0x17f),'offline':'已离线,编辑将在本地缓存'},'session':{'connection-failed':'连接失败,请检查你的网络','will-retry':'连接失败,将在一会儿之后重试连接','room-full':_0x49a3ab(0x174),'collaboration-timeout':_0x49a3ab(0x180)},'conflict':{'title':_0x49a3ab(0x182),'content':_0x49a3ab(0x183)},'permission':{'title':_0x49a3ab(0x17d),'content':'你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。'},'collaboration':{'single-unit':{'warning':_0x49a3ab(0x17a)},'closeRoom':_0x49a3ab(0x185)},'auth':{'needGotoLoginAlert':_0x49a3ab(0x172)}};}));function _0x288c(){var _0x15d6f9=['13376167Mzrkhg','3501948vROLLN','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','function','协同房间已满,你的编辑将在本地缓存','点击重新连接','1586526RuIhsL','2148312rwrjfz','941588yNWldv','已同步','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','exports','object','权限错误','145431OLlIpa','保存中...','服务器未响应,你的编辑将在本地缓存','编辑冲突','协同冲突','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','1018915qnpjxj','由于协同房间被关闭,编辑权限被收回。'];_0x288c=function(){return _0x15d6f9;};return _0x288c();}
1
+ (function(_0x426dbb,_0x36c341){var _0x242914=_0x5785,_0x21bff0=_0x426dbb();while(!![]){try{var _0x5e6b2b=-parseInt(_0x242914(0xc9))/0x1+parseInt(_0x242914(0xcd))/0x2*(-parseInt(_0x242914(0xd4))/0x3)+parseInt(_0x242914(0xbe))/0x4+-parseInt(_0x242914(0xc4))/0x5+parseInt(_0x242914(0xd6))/0x6*(-parseInt(_0x242914(0xd0))/0x7)+parseInt(_0x242914(0xd5))/0x8+-parseInt(_0x242914(0xbf))/0x9*(-parseInt(_0x242914(0xd2))/0xa);if(_0x5e6b2b===_0x36c341)break;else _0x21bff0['push'](_0x21bff0['shift']());}catch(_0x38d0ef){_0x21bff0['push'](_0x21bff0['shift']());}}}(_0x4fee,0x707d3),function(_0x130a4c,_0x25af6f){var _0x3d1554=_0x5785;typeof exports==_0x3d1554(0xc0)&&typeof module<'u'?module[_0x3d1554(0xc5)]=_0x25af6f():typeof define==_0x3d1554(0xc2)&&define['amd']?define(_0x25af6f):(_0x130a4c=typeof globalThis<'u'?globalThis:_0x130a4c||self,_0x130a4c[_0x3d1554(0xc3)]=_0x25af6f());}(this,function(){'use strict';var _0x1ecac6=_0x5785;return{'collab-client':{'tooltip':{'reconnect':_0x1ecac6(0xbd)}},'collabStatus':{'fetchMiss':_0x1ecac6(0xce),'conflict':_0x1ecac6(0xc1),'notCollab':_0x1ecac6(0xcc),'synced':_0x1ecac6(0xbc),'syncing':'保存中...','offline':_0x1ecac6(0xbb)},'session':{'connection-failed':'连接失败,请检查你的网络','will-retry':_0x1ecac6(0xcb),'room-full':_0x1ecac6(0xcf),'collaboration-timeout':'服务器未响应,你的编辑将在本地缓存'},'conflict':{'title':_0x1ecac6(0xc6),'content':_0x1ecac6(0xd1)},'permission':{'title':_0x1ecac6(0xc8),'content':_0x1ecac6(0xca)},'collaboration':{'single-unit':{'warning':_0x1ecac6(0xd3)},'closeRoom':_0x1ecac6(0xc7)},'auth':{'needGotoLoginAlert':'你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。'}};}));function _0x5785(_0x3c5065,_0x401873){var _0x4fee73=_0x4fee();return _0x5785=function(_0x5785ef,_0xd8277b){_0x5785ef=_0x5785ef-0xbb;var _0x4c95b5=_0x4fee73[_0x5785ef];return _0x4c95b5;},_0x5785(_0x3c5065,_0x401873);}function _0x4fee(){var _0x5b168c=['连接失败,将在一会儿之后重试连接','本地文件','1416ttKfBZ','正在拉取服务端数据...','协同房间已满,你的编辑将在本地缓存','3112354XuyuGH','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','10qYnuVd','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','3552SUQcou','6754440wLPypw','6qaOWsv','已离线,编辑将在本地缓存','已同步','点击重新连接','2283516WayWif','8735886zLelSG','object','编辑冲突','function','UniverCollaborationClientZhCN','1475660waRUbO','exports','协同冲突','由于协同房间被关闭,编辑权限被收回。','权限错误','347057EQRLSY','你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。'];_0x4fee=function(){return _0x5b168c;};return _0x4fee();}
@@ -1 +1 @@
1
- (function(_0x1a8dae,_0x575ed6){var _0x171cbf=_0xaa2f,_0x57136f=_0x1a8dae();while(!![]){try{var _0x28fcb4=-parseInt(_0x171cbf(0x19f))/0x1*(parseInt(_0x171cbf(0x1a6))/0x2)+-parseInt(_0x171cbf(0x1a8))/0x3*(-parseInt(_0x171cbf(0x1b4))/0x4)+parseInt(_0x171cbf(0x1ad))/0x5*(parseInt(_0x171cbf(0x1a0))/0x6)+parseInt(_0x171cbf(0x1b1))/0x7*(parseInt(_0x171cbf(0x1a2))/0x8)+parseInt(_0x171cbf(0x19a))/0x9*(parseInt(_0x171cbf(0x1aa))/0xa)+-parseInt(_0x171cbf(0x199))/0xb+parseInt(_0x171cbf(0x1ac))/0xc*(-parseInt(_0x171cbf(0x1ab))/0xd);if(_0x28fcb4===_0x575ed6)break;else _0x57136f['push'](_0x57136f['shift']());}catch(_0x366a61){_0x57136f['push'](_0x57136f['shift']());}}}(_0x250a,0xdcf28),function(_0x2c4eb3,_0xa2e783){var _0x563111=_0xaa2f;typeof exports==_0x563111(0x1b3)&&typeof module<'u'?module['exports']=_0xa2e783():typeof define==_0x563111(0x1b0)&&define['amd']?define(_0xa2e783):(_0x2c4eb3=typeof globalThis<'u'?globalThis:_0x2c4eb3||self,_0x2c4eb3[_0x563111(0x19d)]=_0xa2e783());}(this,function(){'use strict';var _0x1e9e2e=_0xaa2f;return{'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0x1e9e2e(0x1b5),'conflict':_0x1e9e2e(0x1a3),'notCollab':_0x1e9e2e(0x19b),'synced':'Synced','syncing':_0x1e9e2e(0x19e),'offline':_0x1e9e2e(0x1a1)},'session':{'connection-failed':_0x1e9e2e(0x1b6),'will-retry':_0x1e9e2e(0x19c),'room-full':_0x1e9e2e(0x1af),'collaboration-timeout':_0x1e9e2e(0x1a4)},'conflict':{'title':_0x1e9e2e(0x1a5),'content':_0x1e9e2e(0x1a7)},'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':_0x1e9e2e(0x1ae)},'closeRoom':_0x1e9e2e(0x1b2)},'auth':{'needGotoLoginAlert':_0x1e9e2e(0x1a9)}};}));function _0xaa2f(_0x1865cf,_0x577309){var _0x250af1=_0x250a();return _0xaa2f=function(_0xaa2fc8,_0x370a51){_0xaa2fc8=_0xaa2fc8-0x199;var _0x5e5e6c=_0x250af1[_0xaa2fc8];return _0x5e5e6c;},_0xaa2f(_0x1865cf,_0x577309);}function _0x250a(){var _0x5228df=['The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Collaboration\x20Conflict','873944abvwuB','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.','447saoTeE','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','263370nNYgAi','1651Pulpcu','8028MIWTba','2298490RalIpc','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','function','14wEhQzw','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','object','35044kBKMUu','Syncing\x20server\x20data...','Connection\x20failed,\x20please\x20check\x20your\x20network.','16203451nvnRcd','135iygkGC','Local\x20file','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','UniverCollaborationClientZhTW','Syncing...','2qVTjDx','6YMEWdU','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','4707224IzUlNh','Edit\x20conflicts'];_0x250a=function(){return _0x5228df;};return _0x250a();}
1
+ function _0x4912(){var _0x36d576=['Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Authentication\x20Error','570272iTWLxd','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','object','345252ZHHYfB','function','Syncing...','1424227XgpUDF','Synced','exports','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','20zRZqCU','Edit\x20conflicts','Click\x20to\x20Reconnect','544767xlsxqW','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','348371LWHlNQ','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Local\x20file','7270000wiyulT','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','722180aXlIbI','Syncing\x20server\x20data...','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','UniverCollaborationClientZhTW','Connection\x20failed,\x20please\x20check\x20your\x20network.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','amd','Collaboration\x20Conflict','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'];_0x4912=function(){return _0x36d576;};return _0x4912();}function _0x2210(_0x551027,_0x10a108){var _0x491245=_0x4912();return _0x2210=function(_0x221081,_0x44a610){_0x221081=_0x221081-0xf9;var _0x19d8c8=_0x491245[_0x221081];return _0x19d8c8;},_0x2210(_0x551027,_0x10a108);}(function(_0x13441f,_0x5d76cf){var _0x8b7677=_0x2210,_0x50b668=_0x13441f();while(!![]){try{var _0x1883f1=-parseInt(_0x8b7677(0xfe))/0x1+-parseInt(_0x8b7677(0x10e))/0x2+parseInt(_0x8b7677(0xfc))/0x3+-parseInt(_0x8b7677(0x103))/0x4+-parseInt(_0x8b7677(0xf9))/0x5*(parseInt(_0x8b7677(0x111))/0x6)+parseInt(_0x8b7677(0x114))/0x7+parseInt(_0x8b7677(0x101))/0x8;if(_0x1883f1===_0x5d76cf)break;else _0x50b668['push'](_0x50b668['shift']());}catch(_0x47df48){_0x50b668['push'](_0x50b668['shift']());}}}(_0x4912,0x3ceec),function(_0x1e848a,_0x39dd54){var _0x245359=_0x2210;typeof exports==_0x245359(0x110)&&typeof module<'u'?module[_0x245359(0x116)]=_0x39dd54():typeof define==_0x245359(0x112)&&define[_0x245359(0x109)]?define(_0x39dd54):(_0x1e848a=typeof globalThis<'u'?globalThis:_0x1e848a||self,_0x1e848a[_0x245359(0x106)]=_0x39dd54());}(this,function(){'use strict';var _0x1778cb=_0x2210;return{'collab-client':{'tooltip':{'reconnect':_0x1778cb(0xfb)}},'collabStatus':{'fetchMiss':_0x1778cb(0x104),'conflict':_0x1778cb(0xfa),'notCollab':_0x1778cb(0x100),'synced':_0x1778cb(0x115),'syncing':_0x1778cb(0x113),'offline':_0x1778cb(0x102)},'session':{'connection-failed':_0x1778cb(0x107),'will-retry':_0x1778cb(0x108),'room-full':_0x1778cb(0x10f),'collaboration-timeout':_0x1778cb(0xff)},'conflict':{'title':_0x1778cb(0x10a),'content':_0x1778cb(0x105)},'permission':{'title':_0x1778cb(0x10d),'content':_0x1778cb(0x10c)},'collaboration':{'single-unit':{'warning':_0x1778cb(0x117)},'closeRoom':_0x1778cb(0x10b)},'auth':{'needGotoLoginAlert':_0x1778cb(0xfd)}};}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs-pro/collaboration-client",
3
- "version": "0.5.0-nightly.202411120616",
3
+ "version": "0.5.0-nightly.202411131606",
4
4
  "private": false,
5
5
  "description": "Univer Collaboration Client",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -55,22 +55,22 @@
55
55
  "clsx": "^2.1.1",
56
56
  "crypto-js": "4.2.0",
57
57
  "uuid": "^11.0.2",
58
- "@univerjs-pro/collaboration": "0.5.0-nightly.202411120616",
59
- "@univerjs-pro/license": "0.5.0-nightly.202411120616",
60
- "@univerjs/design": "0.5.0-nightly.202411120616",
61
- "@univerjs/docs": "0.5.0-nightly.202411120616",
62
- "@univerjs/core": "0.5.0-nightly.202411120616",
63
- "@univerjs/docs-ui": "0.5.0-nightly.202411120616",
64
- "@univerjs/engine-formula": "0.5.0-nightly.202411120616",
65
- "@univerjs/drawing": "0.5.0-nightly.202411120616",
66
- "@univerjs/engine-render": "0.5.0-nightly.202411120616",
67
- "@univerjs/network": "0.5.0-nightly.202411120616",
68
- "@univerjs/rpc": "0.5.0-nightly.202411120616",
58
+ "@univerjs-pro/collaboration": "0.5.0-nightly.202411131606",
59
+ "@univerjs-pro/license": "0.5.0-nightly.202411131606",
60
+ "@univerjs/core": "0.5.0-nightly.202411131606",
61
+ "@univerjs/design": "0.5.0-nightly.202411131606",
62
+ "@univerjs/docs": "0.5.0-nightly.202411131606",
63
+ "@univerjs/docs-ui": "0.5.0-nightly.202411131606",
64
+ "@univerjs/drawing": "0.5.0-nightly.202411131606",
65
+ "@univerjs/engine-formula": "0.5.0-nightly.202411131606",
66
+ "@univerjs/network": "0.5.0-nightly.202411131606",
67
+ "@univerjs/engine-render": "0.5.0-nightly.202411131606",
68
+ "@univerjs/rpc": "0.5.0-nightly.202411131606",
69
+ "@univerjs/sheets": "0.5.0-nightly.202411131606",
69
70
  "@univerjs/protocol": "0.1.39-alpha.38",
70
- "@univerjs/sheets": "0.5.0-nightly.202411120616",
71
- "@univerjs/sheets-ui": "0.5.0-nightly.202411120616",
72
- "@univerjs/telemetry": "0.5.0-nightly.202411120616",
73
- "@univerjs/ui": "0.5.0-nightly.202411120616"
71
+ "@univerjs/sheets-ui": "0.5.0-nightly.202411131606",
72
+ "@univerjs/telemetry": "0.5.0-nightly.202411131606",
73
+ "@univerjs/ui": "0.5.0-nightly.202411131606"
74
74
  },
75
75
  "devDependencies": {
76
76
  "@types/crypto-js": "^4.2.2",