@ckeditor/ckeditor5-revision-history 0.0.0-nightly-20240401.0 → 0.0.0-nightly-20240403.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/revision-history.js +1 -1
- package/package.json +5 -5
- package/src/changeitem.js +1 -1
- package/src/editor/revisionviewereditor.js +1 -1
- package/src/editor/revisionviewereditorui.js +1 -1
- package/src/editor/revisionviewereditoruiview.js +1 -1
- package/src/index.js +1 -1
- package/src/revision.js +1 -1
- package/src/revisiondiff.js +1 -1
- package/src/revisionhistory.js +1 -1
- package/src/revisionsrepository.js +1 -1
- package/src/revisiontracker.js +1 -1
- package/src/revisionviewer.js +1 -1
- package/src/ui/revision/createrevisionactionsdropdown.js +1 -1
- package/src/ui/revision/revisionauthorview.js +1 -1
- package/src/ui/revision/revisionnameview.js +1 -1
- package/src/ui/revision/revisionview.js +1 -1
- package/src/ui/revision/subrevisioncollapserview.js +1 -1
- package/src/ui/revision/subrevisionview.js +1 -1
- package/src/ui/revision/utils.js +1 -1
- package/src/ui/revisionhistory/revisionhistorysaverevisionformview.d.ts +6 -30
- package/src/ui/revisionhistory/revisionhistorysaverevisionformview.js +1 -1
- package/src/ui/revisionhistory/revisionhistoryui.js +1 -1
- package/src/ui/revisionssidebar/revisionssidebar.js +1 -1
- package/src/ui/revisionssidebar/revisionssidebarheaderview.js +1 -1
- package/src/ui/revisionssidebar/revisionssidebartimeperiodview.js +1 -1
- package/src/ui/revisionssidebar/revisionssidebarview.js +1 -1
- package/src/ui/revisionssidebar/utils.js +1 -1
- package/src/ui/revisionviewer/changedetailsview.js +1 -1
- package/src/ui/revisionviewer/changesnavigationview.js +1 -1
- package/src/ui/revisionviewer/revisionviewerloadingoverlay.js +1 -1
- package/src/ui/revisionviewer/revisionviewerui.js +1 -1
- package/src/utils/common-translations.js +1 -1
- package/theme/revisionhistorysaverevisionform.css +4 -11
|
@@ -2,8 +2,11 @@
|
|
|
2
2
|
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
4
|
*/
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
/**
|
|
6
|
+
* @module revision-history/ui/revisionhistory/revisionhistorysaverevisionformview
|
|
7
|
+
*/
|
|
8
|
+
import { LabeledFieldView, View, type InputTextView } from 'ckeditor5/src/ui.js';
|
|
9
|
+
import { FocusTracker, KeystrokeHandler, type Locale } from 'ckeditor5/src/utils.js';
|
|
7
10
|
import '../../../theme/revisionhistorysaverevisionform.css';
|
|
8
11
|
import '@ckeditor/ckeditor5-ui/theme/components/responsive-form/responsiveform.css';
|
|
9
12
|
/**
|
|
@@ -24,14 +27,6 @@ export default class RevisionHistorySaveRevisionFormView extends View {
|
|
|
24
27
|
* The revision name input view.
|
|
25
28
|
*/
|
|
26
29
|
revisionNameInputView: LabeledFieldView<InputTextView>;
|
|
27
|
-
/**
|
|
28
|
-
* The Save button view.
|
|
29
|
-
*/
|
|
30
|
-
saveButtonView: ButtonView;
|
|
31
|
-
/**
|
|
32
|
-
* The Cancel button view.
|
|
33
|
-
*/
|
|
34
|
-
cancelButtonView: ButtonView;
|
|
35
30
|
/**
|
|
36
31
|
* The value of the revision name input.
|
|
37
32
|
*
|
|
@@ -44,7 +39,7 @@ export default class RevisionHistorySaveRevisionFormView extends View {
|
|
|
44
39
|
*/
|
|
45
40
|
render(): void;
|
|
46
41
|
/**
|
|
47
|
-
* Focuses the
|
|
42
|
+
* Focuses the {@link #revisionNameInputView}.
|
|
48
43
|
*/
|
|
49
44
|
focus(): void;
|
|
50
45
|
/**
|
|
@@ -60,22 +55,3 @@ export default class RevisionHistorySaveRevisionFormView extends View {
|
|
|
60
55
|
*/
|
|
61
56
|
reset(): void;
|
|
62
57
|
}
|
|
63
|
-
/**
|
|
64
|
-
* Fired when the form view is submitted (when one of the children triggered the submit event),
|
|
65
|
-
* e.g. click on {@link #saveButtonView}.
|
|
66
|
-
*
|
|
67
|
-
* @eventName submit
|
|
68
|
-
*/
|
|
69
|
-
export interface SaveRevisionFormSubmitEvent extends BaseEvent {
|
|
70
|
-
name: 'submit';
|
|
71
|
-
args: [];
|
|
72
|
-
}
|
|
73
|
-
/**
|
|
74
|
-
* Fired when the form view is canceled, e.g. by a click on {@link #cancelButtonView}.
|
|
75
|
-
*
|
|
76
|
-
* @eventName cancel
|
|
77
|
-
*/
|
|
78
|
-
export interface SaveRevisionFormCancelEvent extends BaseEvent {
|
|
79
|
-
name: 'cancel';
|
|
80
|
-
args: [];
|
|
81
|
-
}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
function _0x5c59(){const _0x2f1dc2=['8510845xDdIKv','2875086ZAByBx','revisionNameInputView','render','input','220','set','listenTo','arrowleft','value','revisionName','reset','stopPropagation','ck-revision-history-save-revision-form','69425642Nbtueu','ck-responsive-form','48873ivXzrh','optional','arrowdown','2962766xIyXfB','revisionNameInputValue','keystrokes','arrowup','2286189IwDzil','5mRCeod','focus','add','1PJxahn','element','24SsIzPa','trim','fieldView','setTemplate','form','arrowright','errorText','label','focusTracker','6422990oEzxlF','locale','extendTemplate','232KXKAmW','_createRevisionNameInput','Name\x20of\x20the\x20revision'];_0x5c59=function(){return _0x2f1dc2;};return _0x5c59();}const _0x1e20e5=_0x34a8;(function(_0x1da701,_0x3ef216){const _0x28f40d=_0x34a8,_0x4eeb01=_0x1da701();while(!![]){try{const _0x424705=parseInt(_0x28f40d(0xd6))/0x1*(-parseInt(_0x28f40d(0xce))/0x2)+parseInt(_0x28f40d(0xcb))/0x3*(-parseInt(_0x28f40d(0xb8))/0x4)+-parseInt(_0x28f40d(0xd3))/0x5*(parseInt(_0x28f40d(0xbc))/0x6)+-parseInt(_0x28f40d(0xbb))/0x7+parseInt(_0x28f40d(0xd8))/0x8*(-parseInt(_0x28f40d(0xd2))/0x9)+-parseInt(_0x28f40d(0xe1))/0xa+parseInt(_0x28f40d(0xc9))/0xb;if(_0x424705===_0x3ef216)break;else _0x4eeb01['push'](_0x4eeb01['shift']());}catch(_0x244d69){_0x4eeb01['push'](_0x4eeb01['shift']());}}}(_0x5c59,0xbfd77));import{LabeledFieldView as _0x1b9e6e,View as _0x318171,createLabeledInputText as _0x4a4937,injectCssTransitionDisabler as _0x2cd3a9,submitHandler as _0x1c5a97}from'ckeditor5/src/ui.js';import{FocusTracker as _0x596053,KeystrokeHandler as _0x242b79}from'ckeditor5/src/utils.js';function _0x34a8(_0x5dc2b2,_0x1a426a){const _0x5c595c=_0x5c59();return _0x34a8=function(_0x34a8b5,_0x4d39b7){_0x34a8b5=_0x34a8b5-0xb6;let _0x23b5c1=_0x5c595c[_0x34a8b5];return _0x23b5c1;},_0x34a8(_0x5dc2b2,_0x1a426a);}import{getTranslation as _0x11e097}from'../../utils/common-translations.js';import'../../../theme/revisionhistorysaverevisionform.css';import'@ckeditor/ckeditor5-ui/theme/components/responsive-form/responsiveform.css';export default class ns extends _0x318171{constructor(_0x2cfd1e,_0x3891b1){const _0x4933b6=_0x34a8;super(_0x2cfd1e),this[_0x4933b6(0xe0)]=new _0x596053(),this[_0x4933b6(0xd0)]=new _0x242b79(),this[_0x4933b6(0xc1)](_0x4933b6(0xcf),''),this[_0x4933b6(0xbd)]=this[_0x4933b6(0xb9)](_0x3891b1),this[_0x4933b6(0xdb)]({'tag':_0x4933b6(0xdc),'attributes':{'class':['ck',_0x4933b6(0xc8),_0x4933b6(0xca)],'tabindex':'-1'},'children':[this[_0x4933b6(0xbd)]]}),_0x2cd3a9(this);}[_0x1e20e5(0xbe)](){const _0x1345aa=_0x1e20e5;super[_0x1345aa(0xbe)](),_0x1c5a97({'view':this}),this[_0x1345aa(0xe0)][_0x1345aa(0xd5)](this[_0x1345aa(0xbd)][_0x1345aa(0xd7)]),this[_0x1345aa(0xd0)][_0x1345aa(0xc2)](this[_0x1345aa(0xd7)]);const _0x1d391e=_0x1094eb=>_0x1094eb[_0x1345aa(0xc7)]();this[_0x1345aa(0xd0)][_0x1345aa(0xc1)](_0x1345aa(0xdd),_0x1d391e),this[_0x1345aa(0xd0)][_0x1345aa(0xc1)](_0x1345aa(0xc3),_0x1d391e),this[_0x1345aa(0xd0)][_0x1345aa(0xc1)](_0x1345aa(0xd1),_0x1d391e),this[_0x1345aa(0xd0)][_0x1345aa(0xc1)](_0x1345aa(0xcd),_0x1d391e);}[_0x1e20e5(0xd4)](){const _0x206007=_0x1e20e5;this[_0x206007(0xbd)][_0x206007(0xd4)]();}get[_0x1e20e5(0xc5)](){const _0x3f5305=_0x1e20e5;return this[_0x3f5305(0xbd)][_0x3f5305(0xda)][_0x3f5305(0xd7)][_0x3f5305(0xc4)][_0x3f5305(0xd9)]();}set[_0x1e20e5(0xc5)](_0x4aa956){const _0x351ca4=_0x1e20e5;this[_0x351ca4(0xbd)][_0x351ca4(0xda)][_0x351ca4(0xd7)][_0x351ca4(0xc4)]=_0x4aa956[_0x351ca4(0xd9)]();}[_0x1e20e5(0xc6)](){const _0x2f12ae=_0x1e20e5;this[_0x2f12ae(0xbd)][_0x2f12ae(0xda)][_0x2f12ae(0xd7)][_0x2f12ae(0xc4)]='',this[_0x2f12ae(0xbd)][_0x2f12ae(0xde)]=null;}[_0x1e20e5(0xb9)](_0x107908){const _0x1e519f=_0x1e20e5,_0x126763=new _0x1b9e6e(this[_0x1e519f(0xb6)],_0x4a4937),_0x38e237=_0x126763[_0x1e519f(0xda)];_0x38e237[_0x1e519f(0xb7)]({'attributes':{'maxlength':_0x1e519f(0xc0)}});let _0x32b898=_0x11e097(this[_0x1e519f(0xb6)],_0x1e519f(0xba));return!_0x107908&&(_0x32b898+='\x20('+_0x11e097(this[_0x1e519f(0xb6)],_0x1e519f(0xcc))+')'),(_0x126763[_0x1e519f(0xdf)]=_0x32b898,_0x38e237['on'](_0x1e519f(0xbf),()=>{const _0x18f109=_0x1e519f;this[_0x18f109(0xcf)]=_0x38e237[_0x18f109(0xd7)][_0x18f109(0xc4)][_0x18f109(0xd9)]();}),_0x126763);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
|
|
23
|
+
import{Plugin as _0x74ae70,icons as _0x196bff}from'ckeditor5/src/core.js';import{createDropdown as _0x590e04,ButtonView as _0x57ce36,ListItemView as _0x521765,ListView as te,MenuBarMenuListItemButtonView as _0x32e8ab,MenuBarMenuListItemView as _0xb170a5,MenuBarMenuListView as _0x589232,MenuBarMenuView as _0x257336}from'ckeditor5/src/ui.js';import _0x3819e1 from'../../revisiontracker.js';import _0x11468c from'./revisionhistorysaverevisionformview.js';import{getTranslation as _0x1d9479}from'../../utils/common-translations.js';export default class u extends _0x74ae70{static get['pluginName'](){return'RevisionHistoryUI';}static get['requires'](){return[_0x3819e1];}['init'](){const _0x41c8dd=this['editor'],_0x10584f=_0x41c8dd['plugins']['get']('RevisionTracker');_0x41c8dd['ui']['componentFactory']['add']('revisionHistory',_0x16ddec=>{const _0x33a8e5=_0x590e04(_0x16ddec),_0xb88703=_0x33a8e5['panelView']['children'],_0x4c5f9c=new te(_0x16ddec),_0x4c3cd7=new _0x521765(_0x16ddec),_0x272de0=new _0x57ce36(_0x16ddec),_0x28f0c5=new _0x521765(_0x16ddec),_0x4c3f56=new _0x57ce36(_0x16ddec);return _0x33a8e5['bind']('isEnabled')['to'](_0x10584f,'isReady',_0x10584f,'isEnabled',_0x41c8dd,'isReadOnly',(_0x42f528,_0x1222b6,_0x3e809a)=>_0x42f528&&_0x1222b6&&!_0x3e809a),_0x33a8e5['buttonView']['set']({'icon':_0x196bff['history'],'label':_0x1d9479(_0x16ddec,'Revision\x20history'),'tooltip':!0x0}),_0x272de0['set']({'label':_0x1d9479(_0x16ddec,'Save\x20current\x20revision'),'withText':!0x0}),_0x272de0['bind']('isEnabled')['to'](_0x10584f,'isReady',_0x10584f,'isEnabled',_0x41c8dd,'isReadOnly',(_0x146c34,_0x3aa731,_0x2867bb)=>_0x146c34&&_0x3aa731&&!_0x2867bb),_0x272de0['on']('execute',()=>this['_showDialog']()),_0x4c3f56['set']({'label':_0x1d9479(_0x16ddec,'Open\x20revision\x20history'),'withText':!0x0}),_0x4c3f56['bind']('isEnabled')['to'](_0x10584f,'isReady',_0x41c8dd,'isReadOnly',(_0x4737cc,_0x3e157e)=>_0x4737cc&&!_0x3e157e),_0x4c3f56['on']('execute',()=>{_0x41c8dd['config']['get']('revisionHistory')['showRevisionViewerCallback'](),_0x33a8e5['isOpen']=!0x1,_0x41c8dd['editing']['view']['focus']();}),_0x4c3cd7['children']['add'](_0x272de0),_0x28f0c5['children']['add'](_0x4c3f56),_0x4c5f9c['items']['addMany']([_0x4c3cd7,_0x28f0c5]),_0xb88703['add'](_0x4c5f9c),_0x33a8e5;}),_0x41c8dd['ui']['componentFactory']['add']('menuBar:revisionHistory',()=>this['_registerMenuComponent']());}['_registerMenuComponent'](){const _0x2623af=this['editor'],_0x10ee98=_0x2623af['locale'],_0x11b9a0=new _0x257336(_0x10ee98),_0x2d8077=new _0x589232(_0x10ee98);_0x11b9a0['buttonView']['set']({'icon':_0x196bff['history'],'label':_0x1d9479(_0x10ee98,'Revision\x20history')});const _0x472782=new _0xb170a5(_0x10ee98,_0x11b9a0),_0xdc60bf=new _0x32e8ab(_0x10ee98);_0xdc60bf['set']({'label':_0x1d9479(_0x10ee98,'Save\x20current\x20revision')}),_0xdc60bf['delegate']('execute')['to'](_0x11b9a0),_0xdc60bf['on']('execute',()=>{this['_showDialog']();}),_0x472782['children']['add'](_0xdc60bf),_0x2d8077['items']['add'](_0x472782);const _0x5e84c2=new _0xb170a5(_0x10ee98,_0x11b9a0),_0x18bc84=new _0x32e8ab(_0x10ee98);return _0x18bc84['set']({'label':_0x1d9479(_0x10ee98,'Open\x20revision\x20history')}),_0x18bc84['delegate']('execute')['to'](_0x11b9a0),_0x18bc84['on']('execute',()=>{_0x2623af['config']['get']('revisionHistory')['showRevisionViewerCallback']();}),_0x5e84c2['children']['add'](_0x18bc84),_0x2d8077['items']['add'](_0x5e84c2),_0x11b9a0['panelView']['children']['add'](_0x2d8077),_0x11b9a0;}['_showDialog'](){const _0x46e92f=this['editor'],_0x1fd544=_0x46e92f['locale'],t=_0x1fd544['t'],_0x22ca77=_0x46e92f['plugins']['get']('Dialog'),_0x4e678c=_0x46e92f['plugins']['get']('RevisionTracker');function _0x464b1a(_0xb7d3e8){_0x46e92f['config']['get']('revisionHistory.requireRevisionName')&&''===_0xb7d3e8['revisionName']?_0xb7d3e8['revisionNameInputView']['errorText']=_0x1d9479(_0x1fd544,'The\x20revision\x20name\x20cannot\x20be\x20empty.'):(_0x46e92f['plugins']['get'](_0x3819e1)['saveRevision']({'name':_0xb7d3e8['revisionName']}),_0x22ca77['hide']());}this['_saveRevisionFormView']||(this['_createSaveRevisionFormView'](),this['_saveRevisionFormView']['on']('submit',()=>_0x464b1a(this['_saveRevisionFormView']))),this['_saveRevisionFormView']['reset'](),_0x22ca77['show']({'id':'findAndReplace','title':_0x1d9479(_0x1fd544,'Save\x20current\x20revision'),'isModal':!0x0,'content':this['_saveRevisionFormView'],'actionButtons':[{'label':t('Cancel'),'withText':!0x0,'onExecute':()=>_0x22ca77['hide']()},{'label':t('Accept'),'class':'ck-button-action','withText':!0x0,'onCreate'(_0x4ce61c){_0x4ce61c['bind']('isEnabled')['to'](_0x4e678c,'isReady',_0x4e678c,'isEnabled',_0x46e92f,'isReadOnly',(_0x1b2d9b,_0x3d802e,_0x511a21)=>_0x1b2d9b&&_0x3d802e&&!_0x511a21);},'onExecute':()=>_0x464b1a(this['_saveRevisionFormView'])}]});}['_createSaveRevisionFormView'](){const _0x40df59=this['editor'],_0x314491=_0x40df59['locale'];this['_saveRevisionFormView']=new _0x11468c(_0x314491,_0x40df59['config']['get']('revisionHistory.requireRevisionName')),this['_saveRevisionFormView']['render']();}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x150417=_0x3a60;(function(_0x479102,_0x452111){const _0x22f1bf=_0x3a60,_0x741ef2=_0x479102();while(!![]){try{const _0x3a1f1b=-parseInt(_0x22f1bf(0x19e))/0x1+parseInt(_0x22f1bf(0x182))/0x2*(-parseInt(_0x22f1bf(0x1a4))/0x3)+parseInt(_0x22f1bf(0x196))/0x4*(parseInt(_0x22f1bf(0x19b))/0x5)+parseInt(_0x22f1bf(0x166))/0x6*(parseInt(_0x22f1bf(0x192))/0x7)+parseInt(_0x22f1bf(0x16e))/0x8*(-parseInt(_0x22f1bf(0x18d))/0x9)+-parseInt(_0x22f1bf(0x160))/0xa+parseInt(_0x22f1bf(0x175))/0xb;if(_0x3a1f1b===_0x452111)break;else _0x741ef2['push'](_0x741ef2['shift']());}catch(_0x1cd8d6){_0x741ef2['push'](_0x741ef2['shift']());}}}(_0x37b2,0x772a5));import{Plugin as _0x3dcfc0}from'ckeditor5/src/core.js';function _0x3a60(_0x1f8efd,_0x626d14){const _0x37b244=_0x37b2();return _0x3a60=function(_0x3a6001,_0x2ad4be){_0x3a6001=_0x3a6001-0x15e;let _0x41f156=_0x37b244[_0x3a6001];return _0x41f156;},_0x3a60(_0x1f8efd,_0x626d14);}function _0x37b2(){const _0x599415=['selectRevision','isReady','add','name','restoreRevisionCallback','9800857UfdPSZ','_revisionsRepository','Compare\x20against\x20selected','compareAgainstSelected','listenTo','focus','_handleRevisionSetName','string','requires','locale','change:diff','element','repository','314glFARm','length','setName','data','revisionHistory','revisionViews','remove','pluginName','diff','highlightRevisions','defaultRevisionActions','99mEdIKs','isEnabled','editor','_revisions','select','7434KISkvx','nameRevision','compare','revisionSetName','548hxtSdU','revisionHistory.revisionActions','getLaterVisibleRevision','appendChild','_handleEditorDataReady','21265nGoYTv','getRevisionsInDiff','_createRevisionActions','295988AcUCYZ','_sidebarView','destroy','_handleRevisionSelected','Restore\x20this\x20revision','getRevision','10887AEyPuh','plugins','fieldView','get','getEarlierVisibleRevision','revisionHistory.viewerSidebarContainer','map','Name\x20this\x20revision','revisionSelected','restoreRevision','newRevisionId','RevisionsSidebar','action','config','3197330yShTcn','ready','bind','timePeriodViews','render','_handleDiffChange','5238tSQHKK','assign','getIndex','_revisionViewer','availableRevisionActions','isVisible','revisionHistory.requireRevisionName','init','528872fjSeGH','isSelected'];_0x37b2=function(){return _0x599415;};return _0x37b2();}import _0x5d1002 from'./revisionssidebarview.js';import _0x2228a3 from'../../revisionviewer.js';export default class w extends _0x3dcfc0{static get[_0x150417(0x189)](){const _0x692f02=_0x150417;return _0x692f02(0x1af);}static get[_0x150417(0x17d)](){return[_0x2228a3];}constructor(_0x34f703){const _0x4cf403=_0x150417;super(_0x34f703),this[_0x4cf403(0x169)]=_0x34f703[_0x4cf403(0x1a5)][_0x4cf403(0x1a7)](_0x2228a3),this[_0x4cf403(0x176)]=this[_0x4cf403(0x169)][_0x4cf403(0x181)],this[_0x4cf403(0x19f)]=null;}[_0x150417(0x16d)](){const _0x262323=_0x150417,_0x5f08be=this[_0x262323(0x176)][_0x262323(0x190)],_0x2ef6b2=this[_0x262323(0x19d)](),_0x1459a1=this[_0x262323(0x18f)][_0x262323(0x15f)][_0x262323(0x1a7)](_0x262323(0x1a9));this[_0x262323(0x19f)]=new _0x5d1002(this[_0x262323(0x18f)][_0x262323(0x17e)],_0x5f08be,_0x2ef6b2,this[_0x262323(0x18f)][_0x262323(0x15f)][_0x262323(0x1a7)](_0x262323(0x16c))),this[_0x262323(0x19f)]['on'](_0x262323(0x1ac),this[_0x262323(0x1a1)][_0x262323(0x162)](this)),this[_0x262323(0x19f)]['on'](_0x262323(0x195),this[_0x262323(0x17b)][_0x262323(0x162)](this)),this[_0x262323(0x19f)][_0x262323(0x162)](_0x262323(0x18e))['to'](this[_0x262323(0x169)]),this[_0x262323(0x19f)][_0x262323(0x163)]['on'](_0x262323(0x172),(_0x2a1f7f,_0x214b2c)=>{const _0x119776=_0x262323;_0x214b2c[_0x119776(0x187)]['on'](_0x119776(0x172),(_0x5a766a,_0x5d67e5)=>{const _0x4cde9a=_0x119776;_0x5d67e5[_0x4cde9a(0x162)](_0x4cde9a(0x18e),_0x4cde9a(0x171))['to'](this[_0x4cde9a(0x169)]);});}),this[_0x262323(0x19f)][_0x262323(0x164)](),this[_0x262323(0x179)](this[_0x262323(0x18f)][_0x262323(0x185)],_0x262323(0x161),this[_0x262323(0x19a)][_0x262323(0x162)](this)),this[_0x262323(0x179)](this[_0x262323(0x169)],_0x262323(0x17f),this[_0x262323(0x165)][_0x262323(0x162)](this)),_0x1459a1[_0x262323(0x199)](this[_0x262323(0x19f)][_0x262323(0x180)]);}[_0x150417(0x1a0)](){const _0xacec54=_0x150417;this[_0xacec54(0x19f)][_0xacec54(0x180)][_0xacec54(0x188)](),this[_0xacec54(0x19f)][_0xacec54(0x1a0)]();}[_0x150417(0x19a)](){const _0x2a9557=_0x150417,_0x5430ec=this[_0x2a9557(0x176)][_0x2a9557(0x1a3)](0x0);if(_0x5430ec){const _0x556657=this[_0x2a9557(0x176)][_0x2a9557(0x1a8)](_0x5430ec['id']);this[_0x2a9557(0x169)][_0x2a9557(0x194)](_0x5430ec,_0x556657);}}[_0x150417(0x1a1)](_0xa3222f,_0xffba13){const _0x403e7e=_0x150417,_0x3176a6=this[_0x403e7e(0x176)][_0x403e7e(0x1a3)](_0xffba13['id']),_0x43900c=this[_0x403e7e(0x176)][_0x403e7e(0x1a8)](_0x3176a6['id']);this[_0x403e7e(0x169)][_0x403e7e(0x194)](_0x3176a6,_0x43900c);}[_0x150417(0x17b)](_0x4734c9,_0x2b0242){const _0x5a9e51=_0x150417;this[_0x5a9e51(0x176)][_0x5a9e51(0x1a3)](_0x2b0242['id'])[_0x5a9e51(0x184)](_0x2b0242[_0x5a9e51(0x173)]);}[_0x150417(0x165)](_0x5d612e,_0x3d2035,_0x5400ae){const _0x28c3b6=_0x150417,_0x46ba35=this[_0x28c3b6(0x176)][_0x28c3b6(0x19c)](_0x5400ae);_0x46ba35[_0x28c3b6(0x183)]>0x2?(this[_0x28c3b6(0x19f)][_0x28c3b6(0x18b)](_0x46ba35),this[_0x28c3b6(0x19f)][_0x28c3b6(0x170)](null)):(this[_0x28c3b6(0x19f)][_0x28c3b6(0x18b)]([]),this[_0x28c3b6(0x19f)][_0x28c3b6(0x170)](_0x46ba35[0x0]));}[_0x150417(0x19d)](){const _0x254518=_0x150417,_0x326488=this[_0x254518(0x18f)],_0x458e32=w[_0x254518(0x16a)],_0x3acbc2=_0x326488[_0x254518(0x15f)][_0x254518(0x1a7)](_0x254518(0x197))||w[_0x254518(0x18c)];if(_0x3acbc2[_0x254518(0x183)])return _0x3acbc2[_0x254518(0x1aa)](_0x1fa0ff=>{const _0x580d4c=_0x254518,_0x3bbb05=_0x580d4c(0x17c)==typeof _0x1fa0ff?Object[_0x580d4c(0x167)]({},_0x458e32[_0x1fa0ff]):_0x1fa0ff;return _0x3bbb05[_0x580d4c(0x15e)]=_0x3bbb05[_0x580d4c(0x15e)][_0x580d4c(0x162)](this,_0x326488),_0x3bbb05[_0x580d4c(0x16b)]&&(_0x3bbb05[_0x580d4c(0x16b)]=_0x3bbb05[_0x580d4c(0x16b)][_0x580d4c(0x162)](this,_0x326488)),_0x3bbb05;});}}w[_0x150417(0x16a)]={'compareAgainstSelected':{'name':_0x150417(0x177),'action':({plugins:_0x269393},_0x27a25c)=>{const _0x3a2397=_0x150417,_0x26750a=_0x269393[_0x3a2397(0x1a7)](_0x2228a3),_0x395a57=_0x26750a[_0x3a2397(0x181)];let _0x242c9b=_0x26750a[_0x3a2397(0x18a)][_0x3a2397(0x1ae)],_0x4f9840=_0x27a25c['id'];_0x395a57[_0x3a2397(0x168)](_0x242c9b)>_0x395a57[_0x3a2397(0x168)](_0x4f9840)&&([_0x242c9b,_0x4f9840]=[_0x4f9840,_0x242c9b]),_0x26750a[_0x3a2397(0x194)](_0x242c9b,_0x4f9840);},'isVisible':({plugins:_0x5cc43d},_0x108ec2)=>{const _0x2f6613=_0x150417,_0x127815=_0x5cc43d[_0x2f6613(0x1a7)](_0x2228a3);return!(_0x127815[_0x2f6613(0x181)][_0x2f6613(0x19c)](_0x127815[_0x2f6613(0x18a)])[_0x2f6613(0x183)]>0x2)&&!_0x108ec2[_0x2f6613(0x16f)];}},'restoreRevision':{'name':_0x150417(0x1a2),'action':(_0x3f12db,{id:_0x385255})=>{const _0x3a81a5=_0x150417;_0x3f12db[_0x3a81a5(0x15f)][_0x3a81a5(0x1a7)](_0x3a81a5(0x186))[_0x3a81a5(0x174)](_0x385255);},'isVisible':({plugins:_0x560ba7},_0x3d8a7c)=>!!_0x560ba7[_0x150417(0x1a7)](_0x2228a3)[_0x150417(0x181)][_0x150417(0x198)](_0x3d8a7c['id'])},'nameRevision':{'name':_0x150417(0x1ab),'action':({plugins:_0x55f864},{id:_0x2f5a8d,revisionNameView:_0x2ca67c})=>{const _0x9c4183=_0x150417,_0x5c5ee0=_0x55f864[_0x9c4183(0x1a7)](_0x2228a3),_0x3f5885=_0x5c5ee0[_0x9c4183(0x181)][_0x9c4183(0x1a8)](_0x2f5a8d);_0x5c5ee0[_0x9c4183(0x194)](_0x2f5a8d,_0x3f5885),_0x2ca67c[_0x9c4183(0x17a)](),_0x2ca67c[_0x9c4183(0x1a6)][_0x9c4183(0x191)]();}}},w[_0x150417(0x18c)]=[_0x150417(0x178),_0x150417(0x1ad),_0x150417(0x193)];
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
(function(
|
|
23
|
+
function _0x4622(_0x1c7d36,_0x237afd){const _0x2b66c9=_0x2b66();return _0x4622=function(_0x4622e8,_0x5e06bb){_0x4622e8=_0x4622e8-0x15b;let _0x1f3508=_0x2b66c9[_0x4622e8];return _0x1f3508;},_0x4622(_0x1c7d36,_0x237afd);}(function(_0x1a8f2a,_0x5b189e){const _0x331300=_0x4622,_0x2354f5=_0x1a8f2a();while(!![]){try{const _0x1db720=parseInt(_0x331300(0x15d))/0x1+parseInt(_0x331300(0x16d))/0x2+-parseInt(_0x331300(0x166))/0x3*(parseInt(_0x331300(0x161))/0x4)+-parseInt(_0x331300(0x168))/0x5*(-parseInt(_0x331300(0x164))/0x6)+parseInt(_0x331300(0x160))/0x7*(parseInt(_0x331300(0x15f))/0x8)+-parseInt(_0x331300(0x169))/0x9+-parseInt(_0x331300(0x16b))/0xa;if(_0x1db720===_0x5b189e)break;else _0x2354f5['push'](_0x2354f5['shift']());}catch(_0x2efd00){_0x2354f5['push'](_0x2354f5['shift']());}}}(_0x2b66,0x6d239));import{View as _0x44550a,IconView as _0x5a250b}from'ckeditor5/src/ui.js';function _0x2b66(){const _0x53c1d4=['10652tJwyyl','div','ck-reset_all','364404mGeTvr','ck-revision-history-sidebar__header__label','681VsIelQ','Revision\x20history','65uXpDyD','591543RmpwnL','content','5231860jdbJnh','span','84604oWEGSO','setTemplate','history','12027hdNNaI','ck-revision-history-sidebar__header','5456yTkYtI','8176YHJpHe'];_0x2b66=function(){return _0x53c1d4;};return _0x2b66();}import{getTranslation as _0x4f08f2}from'../../utils/common-translations.js';import{icons as _0x5082cb}from'ckeditor5/src/core.js';import'../../../theme/revisionssidebar/revisionssidebarheader.css';export default class as extends _0x44550a{constructor(_0xe73ae1){const _0x2a5a08=_0x4622;super(_0xe73ae1);const _0x35066f=new _0x5a250b();_0x35066f[_0x2a5a08(0x16a)]=_0x5082cb[_0x2a5a08(0x15c)],this[_0x2a5a08(0x15b)]({'tag':_0x2a5a08(0x162),'attributes':{'class':['ck',_0x2a5a08(0x163),_0x2a5a08(0x15e)]},'children':[_0x35066f,{'tag':_0x2a5a08(0x16c),'attributes':{'class':['ck',_0x2a5a08(0x165)]},'children':[_0x4f08f2(_0xe73ae1,_0x2a5a08(0x167))]}]});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x74eb40=_0x2465;function _0x4e9f(){const _0x1b885b=['setName','ck-revision-history-sidebar__time-period__label','19080NrxGGU','revisionViews','createCollection','add','80yJwtdY','localizedPeriodName','972554jqHfPf','remove','ck-revision-history-sidebar__time-period__revisions','setTemplate','_revisionActions','144186eWPCeP','startDate','ck-revision-history-sidebar__time-period','span','1305XJTTzL','124172EcgYUU','12RMyqHb','addRevision','locale','div','4665850AemhqO','133IYuDGI','delegate','21226MbvGTd','_requireRevisionName','select','find','removeRevision','uiLanguage','142314BIJFgb'];_0x4e9f=function(){return _0x1b885b;};return _0x4e9f();}function _0x2465(_0x51323d,_0x5c5378){const _0x4e9f5c=_0x4e9f();return _0x2465=function(_0x24654a,_0x21e6c2){_0x24654a=_0x24654a-0x16c;let _0x4f8278=_0x4e9f5c[_0x24654a];return _0x4f8278;},_0x2465(_0x51323d,_0x5c5378);}(function(_0x15c73d,_0x358b3d){const _0x5385e3=_0x2465,_0x3b4528=_0x15c73d();while(!![]){try{const _0x20373c=-parseInt(_0x5385e3(0x186))/0x1+parseInt(_0x5385e3(0x179))/0x2*(parseInt(_0x5385e3(0x17f))/0x3)+parseInt(_0x5385e3(0x17e))/0x4*(-parseInt(_0x5385e3(0x172))/0x5)+parseInt(_0x5385e3(0x18c))/0x6*(parseInt(_0x5385e3(0x184))/0x7)+-parseInt(_0x5385e3(0x16e))/0x8*(parseInt(_0x5385e3(0x17d))/0x9)+parseInt(_0x5385e3(0x183))/0xa+-parseInt(_0x5385e3(0x174))/0xb;if(_0x20373c===_0x358b3d)break;else _0x3b4528['push'](_0x3b4528['shift']());}catch(_0x550909){_0x3b4528['push'](_0x3b4528['shift']());}}}(_0x4e9f,0x3de19));import{View as _0x537fa3}from'ckeditor5/src/ui.js';import _0x4eb1df from'../revision/revisionview.js';import{getDateTimePeriodInfo as _0x4447cf}from'./utils.js';import'../../../theme/revisionssidebar/revisionssidebartimeperiod.css';export default class vi extends _0x537fa3{constructor(_0x6a0770,_0x1a166c,_0x326c17,_0x454742){const _0x4a0f43=_0x2465;super(_0x6a0770);const _0x36de04=_0x4447cf(_0x1a166c,this[_0x4a0f43(0x181)][_0x4a0f43(0x18b)])[_0x4a0f43(0x173)];this[_0x4a0f43(0x17a)]=_0x1a166c,this[_0x4a0f43(0x16f)]=this[_0x4a0f43(0x170)](),this[_0x4a0f43(0x178)]=_0x326c17,this[_0x4a0f43(0x187)]=_0x454742,this[_0x4a0f43(0x16f)][_0x4a0f43(0x185)](_0x4a0f43(0x188))['to'](this),this[_0x4a0f43(0x16f)][_0x4a0f43(0x185)](_0x4a0f43(0x16c))['to'](this),this[_0x4a0f43(0x177)]({'tag':_0x4a0f43(0x182),'attributes':{'class':['ck',_0x4a0f43(0x17b)]},'children':[{'tag':_0x4a0f43(0x17c),'attributes':{'class':['ck',_0x4a0f43(0x16d)]},'children':[{'text':_0x36de04}]},{'tag':_0x4a0f43(0x182),'attributes':{'class':['ck',_0x4a0f43(0x176)]},'children':this[_0x4a0f43(0x16f)]}]});}[_0x74eb40(0x180)](_0x5b7af1){const _0x272e07=_0x74eb40,_0x1dbff4=new _0x4eb1df(this[_0x272e07(0x181)],_0x5b7af1,this[_0x272e07(0x178)],this[_0x272e07(0x187)]);this[_0x272e07(0x16f)][_0x272e07(0x171)](_0x1dbff4);}[_0x74eb40(0x18a)](_0x4ad8c7){const _0x3943fd=_0x74eb40,_0x2520b3=this[_0x3943fd(0x16f)][_0x3943fd(0x189)](_0x14ecd6=>_0x14ecd6['id']===_0x4ad8c7['id']);this[_0x3943fd(0x16f)][_0x3943fd(0x175)](_0x2520b3);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x56984f=_0x338e;(function(_0x42f869,_0x1e5b0d){const _0x5a4d4c=_0x338e,_0x2e96fc=_0x42f869();while(!![]){try{const _0x6d4d10=-parseInt(_0x5a4d4c(0x125))/0x1*(parseInt(_0x5a4d4c(0x12c))/0x2)+parseInt(_0x5a4d4c(0x11d))/0x3*(parseInt(_0x5a4d4c(0x134))/0x4)+parseInt(_0x5a4d4c(0x143))/0x5+parseInt(_0x5a4d4c(0x11e))/0x6+parseInt(_0x5a4d4c(0x122))/0x7+parseInt(_0x5a4d4c(0x140))/0x8+-parseInt(_0x5a4d4c(0x12b))/0x9;if(_0x6d4d10===_0x1e5b0d)break;else _0x2e96fc['push'](_0x2e96fc['shift']());}catch(_0x3a716b){_0x2e96fc['push'](_0x2e96fc['shift']());}}}(_0x3816,0x2e12d));import{View as _0x47eac7}from'ckeditor5/src/ui.js';import _0x3ad679 from'./revisionssidebartimeperiodview.js';import _0xf50639 from'./revisionssidebarheaderview.js';function _0x3816(){const _0x5d38bf=['delegate','deselect','addRevision','ck-reset','timePeriodViews','removeRevision','_removeRevision','set','ck-disabled','1849496RGiEsn','_revisions','revisionViews','47470peLciU','setTemplate','createdAt','flat','add','some','revisionSetName','find','render','highlight','createCollection','getTime','_requireRevisionName','ck-revision-history-sidebar','unhighlight','ck-rounded-corners','9teEdlm','1299360nSYman','isEnabled','highlightRevisions','_addRevision','2280628VRlAtb','map','selectRevision','4WFpTZd','select','remove','_revisionActions','fire','_getTimePeriodViewByStartDate','3637485BtSJxq','115468aVSikT','div','get','bindTemplate','setName','revisionSelected','locale','startDate','54364dHdQAS','ck-revision-history-sidebar__timeline','uiLanguage'];_0x3816=function(){return _0x5d38bf;};return _0x3816();}function _0x338e(_0x13495e,_0x140fbd){const _0x381676=_0x3816();return _0x338e=function(_0x338ee8,_0x4e1904){_0x338ee8=_0x338ee8-0x112;let _0x42602e=_0x381676[_0x338ee8];return _0x42602e;},_0x338e(_0x13495e,_0x140fbd);}import{getDateTimePeriodInfo as _0x5666a2}from'./utils.js';import'../../../theme/revisionssidebar/revisionssidebar.css';export default class li extends _0x47eac7{constructor(_0x48cefd,_0x24dc85,_0x2ef11e,_0x394b4e){const _0x1adc26=_0x338e;super(_0x48cefd);const _0x4b158f=this[_0x1adc26(0x12f)];this[_0x1adc26(0x13b)]=this[_0x1adc26(0x117)](),this[_0x1adc26(0x13b)][_0x1adc26(0x137)](_0x1adc26(0x126))['to'](this),this[_0x1adc26(0x13b)][_0x1adc26(0x137)](_0x1adc26(0x130))['to'](this),this[_0x1adc26(0x141)]=_0x24dc85,this[_0x1adc26(0x128)]=_0x2ef11e,this[_0x1adc26(0x119)]=_0x394b4e,this['on'](_0x1adc26(0x126),(_0x55ba51,_0x563403)=>{const _0x19da02=_0x1adc26;this[_0x19da02(0x129)](_0x19da02(0x131),_0x563403);}),this['on'](_0x1adc26(0x130),(_0x13a739,_0x1f1e74)=>{const _0x5566e6=_0x1adc26;this[_0x5566e6(0x129)](_0x5566e6(0x113),_0x1f1e74);}),this[_0x1adc26(0x13e)](_0x1adc26(0x11f),!0x1),this[_0x1adc26(0x144)]({'tag':_0x1adc26(0x12d),'attributes':{'class':['ck',_0x1adc26(0x13a),_0x1adc26(0x11c),_0x1adc26(0x11a)]},'children':[new _0xf50639(_0x48cefd),{'tag':_0x1adc26(0x12d),'attributes':{'class':['ck',_0x1adc26(0x135),_0x4b158f['if'](_0x1adc26(0x11f),_0x1adc26(0x13f),_0x17fd36=>!_0x17fd36)]},'children':this[_0x1adc26(0x13b)]}]});}[_0x56984f(0x115)](){const _0x29742e=_0x56984f;super[_0x29742e(0x115)]();for(const _0x263d92 of this[_0x29742e(0x141)])this[_0x29742e(0x121)](_0x263d92);this[_0x29742e(0x141)]['on'](_0x29742e(0x147),(_0x493606,_0x583b5b)=>{const _0x1794ab=_0x29742e;this[_0x1794ab(0x121)](_0x583b5b);}),this[_0x29742e(0x141)]['on'](_0x29742e(0x127),(_0x522863,_0x295d09)=>{const _0x512915=_0x29742e;this[_0x512915(0x13d)](_0x295d09);});}get[_0x56984f(0x142)](){const _0x25978a=_0x56984f;return this[_0x25978a(0x13b)][_0x25978a(0x123)](_0x5b82ec=>_0x5b82ec[_0x25978a(0x142)][_0x25978a(0x123)](_0x3714b0=>_0x3714b0))[_0x25978a(0x146)]();}[_0x56984f(0x124)](_0x33e242){const _0x559816=_0x56984f;for(const _0x19d3da of this[_0x559816(0x142)])_0x33e242&&_0x33e242['id']===_0x19d3da['id']?_0x19d3da[_0x559816(0x126)]():_0x19d3da[_0x559816(0x138)]();}[_0x56984f(0x120)](_0x4300ec){const _0x1d7a60=_0x56984f;for(const _0x571301 of this[_0x1d7a60(0x142)])_0x4300ec[_0x1d7a60(0x112)](({id:_0x58d01b})=>_0x58d01b===_0x571301['id'])?_0x571301[_0x1d7a60(0x116)]():_0x571301[_0x1d7a60(0x11b)]();}[_0x56984f(0x121)](_0x3e5655){const _0x20c4e6=_0x56984f,_0x22b500=_0x5666a2(_0x3e5655[_0x20c4e6(0x145)],this[_0x20c4e6(0x132)][_0x20c4e6(0x136)])[_0x20c4e6(0x133)];let _0x498375=this[_0x20c4e6(0x13b)][_0x20c4e6(0x12e)](0x0);_0x498375&&_0x498375[_0x20c4e6(0x133)][_0x20c4e6(0x118)]()===_0x22b500[_0x20c4e6(0x118)]()||(_0x498375=new _0x3ad679(this[_0x20c4e6(0x132)],_0x22b500,this[_0x20c4e6(0x128)],this[_0x20c4e6(0x119)]),this[_0x20c4e6(0x13b)][_0x20c4e6(0x147)](_0x498375)),_0x498375[_0x20c4e6(0x139)](_0x3e5655);}[_0x56984f(0x13d)](_0xf6ecb7){const _0x4196cf=_0x56984f,_0x3758ad=_0x5666a2(_0xf6ecb7[_0x4196cf(0x145)],this[_0x4196cf(0x132)][_0x4196cf(0x136)])[_0x4196cf(0x133)];this[_0x4196cf(0x12a)](_0x3758ad)[_0x4196cf(0x13c)](_0xf6ecb7);}[_0x56984f(0x12a)](_0xe2ff07){const _0x4343e4=_0x56984f;return this[_0x4343e4(0x13b)][_0x4343e4(0x114)](_0x3fbd85=>_0x3fbd85[_0x4343e4(0x133)][_0x4343e4(0x118)]()===_0xe2ff07[_0x4343e4(0x118)]());}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
(function(
|
|
23
|
+
function _0x29ac(){const _0x109183=['56362Hojjdk','week','12956320heCGlN','minus','month','13YpigPE','toJSDate','day','129515EWNklf','5816sUegpz','hasSame','toRelativeCalendar','weekdayLong','local','9bRKyRb','14748591wgcpNU','11831814TqkDJi','1281HtkVJB','startOf','366KbRKnH','setLocale','1208572uklyYt','fromJSDate','monthLong','year'];_0x29ac=function(){return _0x109183;};return _0x29ac();}(function(_0x30644b,_0xb106f3){const _0x37a5a6=_0x1eb5,_0x39f572=_0x30644b();while(!![]){try{const _0x5257f7=parseInt(_0x37a5a6(0x1d5))/0x1*(-parseInt(_0x37a5a6(0x1e9))/0x2)+parseInt(_0x37a5a6(0x1de))/0x3*(-parseInt(_0x37a5a6(0x1e5))/0x4)+parseInt(_0x37a5a6(0x1d8))/0x5*(-parseInt(_0x37a5a6(0x1e3))/0x6)+-parseInt(_0x37a5a6(0x1e1))/0x7*(parseInt(_0x37a5a6(0x1d9))/0x8)+parseInt(_0x37a5a6(0x1e0))/0x9+parseInt(_0x37a5a6(0x1d2))/0xa+parseInt(_0x37a5a6(0x1df))/0xb;if(_0x5257f7===_0xb106f3)break;else _0x39f572['push'](_0x39f572['shift']());}catch(_0x43e07a){_0x39f572['push'](_0x39f572['shift']());}}}(_0x29ac,0xeba21));function _0x1eb5(_0x36c358,_0x4d46e0){const _0x29ac10=_0x29ac();return _0x1eb5=function(_0x1eb5b2,_0x1954e7){_0x1eb5b2=_0x1eb5b2-0x1d2;let _0x58c945=_0x29ac10[_0x1eb5b2];return _0x58c945;},_0x1eb5(_0x36c358,_0x4d46e0);}import{DateTime as _0xb8a714}from'luxon';export function getDateTimePeriodInfo(_0x5c6201,_0x545f6c){const _0xa219ff=_0x1eb5,_0x23c43f=_0xb8a714[_0xa219ff(0x1e6)](_0x5c6201)[_0xa219ff(0x1e4)](_0x545f6c),_0xe58ab3=_0xb8a714[_0xa219ff(0x1dd)](),_0x3ffb44=_0xe58ab3[_0xa219ff(0x1d3)]({'days':0x1})[_0xa219ff(0x1e2)](_0xa219ff(0x1d7));let _0x5742d2,_0x16e8ae;return _0x23c43f[_0xa219ff(0x1da)](_0xe58ab3,_0xa219ff(0x1d7))?(_0x5742d2=_0x23c43f[_0xa219ff(0x1e2)](_0xa219ff(0x1d7))[_0xa219ff(0x1d6)](),_0x16e8ae=_0x23c43f[_0xa219ff(0x1db)]()):_0x23c43f[_0xa219ff(0x1da)](_0x3ffb44,_0xa219ff(0x1d7))?(_0x5742d2=_0x3ffb44[_0xa219ff(0x1d6)](),_0x16e8ae=_0x23c43f[_0xa219ff(0x1db)]()):_0x23c43f[_0xa219ff(0x1da)](_0xe58ab3,_0xa219ff(0x1ea))?(_0x5742d2=_0x23c43f[_0xa219ff(0x1e2)](_0xa219ff(0x1ea))[_0xa219ff(0x1d6)](),_0x16e8ae=_0x23c43f[_0xa219ff(0x1dc)]||''):_0x23c43f[_0xa219ff(0x1da)](_0xe58ab3,_0xa219ff(0x1e8))?(_0x5742d2=_0x23c43f[_0xa219ff(0x1e2)](_0xa219ff(0x1d4))[_0xa219ff(0x1d6)](),_0x16e8ae=_0x23c43f[_0xa219ff(0x1e7)]||''):(_0x5742d2=_0x23c43f[_0xa219ff(0x1e2)](_0xa219ff(0x1e8))[_0xa219ff(0x1d6)](),_0x16e8ae=String(_0x23c43f[_0xa219ff(0x1e8)])),{'startDate':_0x5742d2,'localizedPeriodName':_0x16e8ae};}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x515100=_0x9f68;function _0x9f68(_0x4e0e17,_0x3c293d){const _0x4c67ab=_0x4c67();return _0x9f68=function(_0x9f68db,_0x1eb147){_0x9f68db=_0x9f68db-0xa4;let _0x8a1ced=_0x4c67ab[_0x9f68db];return _0x8a1ced;},_0x9f68(_0x4e0e17,_0x3c293d);}(function(_0x2fa84b,_0x1681b0){const _0x537a72=_0x9f68,_0x207b0d=_0x2fa84b();while(!![]){try{const _0x5c2d86=-parseInt(_0x537a72(0xb3))/0x1+-parseInt(_0x537a72(0xa9))/0x2*(parseInt(_0x537a72(0xc0))/0x3)+parseInt(_0x537a72(0xaf))/0x4+-parseInt(_0x537a72(0xba))/0x5+-parseInt(_0x537a72(0xab))/0x6+-parseInt(_0x537a72(0xb2))/0x7+parseInt(_0x537a72(0xbc))/0x8;if(_0x5c2d86===_0x1681b0)break;else _0x207b0d['push'](_0x207b0d['shift']());}catch(_0x38e03e){_0x207b0d['push'](_0x207b0d['shift']());}}}(_0x4c67,0xb4a25));import{View as _0x7546c4}from'ckeditor5/src/ui.js';function _0x4c67(){const _0x12d74f=['3gqJLXc','element','isSuggestion','ck-revision-change','span','Suggested\x20by','add','1576898fMVjZl','set','2397360DNBmEu','name','ck-annotation','Removed\x20by','1429072byUjLW','author','type','1469832gCHkyd','437513TNSGLD','ck-revision-change__label','focus','ck-revision-change__','changeId','setTemplate','Added\x20by','619105JGKpwf','_model','18735424XOYAid','bindTemplate','div','data'];_0x4c67=function(){return _0x12d74f;};return _0x4c67();}import{getTranslation as _0x13d1f2}from'../../utils/common-translations.js';export default class Z extends _0x7546c4{constructor(_0x23a5da,_0x3fc02c){const _0x50dee4=_0x9f68;super(_0x23a5da),this[_0x50dee4(0xbb)]=_0x3fc02c,this[_0x50dee4(0xb7)]=_0x3fc02c['id'];const _0x526ffa=this[_0x50dee4(0xbd)],_0x217a26=_0x13d1f2(_0x23a5da,_0x3fc02c[_0x50dee4(0xbf)][_0x50dee4(0xa4)]?_0x50dee4(0xa7):_0x50dee4(0xa8)==_0x3fc02c[_0x50dee4(0xb1)]?_0x50dee4(0xb9):_0x50dee4(0xae));this[_0x50dee4(0xaa)](_0x50dee4(0xb1),_0x3fc02c[_0x50dee4(0xb1)]),this[_0x50dee4(0xb8)]({'tag':_0x50dee4(0xbe),'attributes':{'class':[_0x50dee4(0xad),_0x50dee4(0xa5),_0x526ffa['to'](_0x50dee4(0xb1),_0x35334f=>_0x50dee4(0xb6)+_0x35334f)],'tabindex':-0x1},'children':[{'tag':_0x50dee4(0xa6),'children':[{'tag':_0x50dee4(0xa6),'attributes':{'class':[_0x50dee4(0xb4)]},'children':[{'text':_0x217a26}]},{'text':'\x20'+_0x3fc02c[_0x50dee4(0xb0)][_0x50dee4(0xac)]}]}]});}[_0x515100(0xb5)](){const _0xb28af4=_0x515100;this[_0xb28af4(0xc1)][_0xb28af4(0xb5)]();}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
(function(
|
|
23
|
+
(function(_0x13882a,_0x12e4d3){const _0x559a27=_0x10db,_0x13f6f7=_0x13882a();while(!![]){try{const _0x27c478=-parseInt(_0x559a27(0xd3))/0x1+parseInt(_0x559a27(0xe0))/0x2+parseInt(_0x559a27(0xda))/0x3*(parseInt(_0x559a27(0xb9))/0x4)+-parseInt(_0x559a27(0xca))/0x5+parseInt(_0x559a27(0xd4))/0x6+parseInt(_0x559a27(0xd1))/0x7*(parseInt(_0x559a27(0xd7))/0x8)+-parseInt(_0x559a27(0xd6))/0x9*(parseInt(_0x559a27(0xbb))/0xa);if(_0x27c478===_0x12e4d3)break;else _0x13f6f7['push'](_0x13f6f7['shift']());}catch(_0x57af23){_0x13f6f7['push'](_0x13f6f7['shift']());}}}(_0x705b,0x286fd));import{View as _0x1b1c9c,ButtonView as _0x3a1f0a,ToolbarSeparatorView as _0x58304d}from'ckeditor5/src/ui.js';import{getTranslation as _0xbaae1c}from'../../utils/common-translations.js';import _0x3c5911 from'../../../theme/icons/arrow-up.svg';import _0x4d5ffa from'../../../theme/icons/arrow-down.svg';function _0x10db(_0x58785c,_0x403b02){const _0x705bc=_0x705b();return _0x10db=function(_0x10dbfb,_0x80960d){_0x10dbfb=_0x10dbfb-0xb8;let _0x447909=_0x705bc[_0x10dbfb];return _0x447909;},_0x10db(_0x58785c,_0x403b02);}import'../../../theme/changesnavigation.css';function _0x705b(){const _0x4d28a6=['65004gLhVTV','989634GnAQOz','backward','559161PXBftq','88AbsnNj','NUMBER_OF_CHANGES','isNavigationMode','274422UVODhU','ck-revision-history-ui__changes-navigation','execute','forward','isBackwardNavigationEnabled','fire','276874UvsJXP','ck-revision-history-ui__changes-navigation__wrapper','isEnabled','EDIT_X_OF_Y_REVISIONS','4AAjtxK','isReady','40BBsXUi','_statusText','bindTemplate','ck-revision-history-ui','currentChangeNumber','No\x20changes','isForwardNavigationEnabled','set','Show\x20next\x20change','ck-revision-history-ui__changes-navigation__label','X_OF_Y_CHANGES','Total','Show\x20previous\x20change','ck-hidden','ck-revision-history-ui__changes-navigation__navigation','714695ciUznO','_isStatusLabelVisible','numberOfChanges','span','Loading...','bind','setTemplate','144606HKmjPj','div'];_0x705b=function(){return _0x4d28a6;};return _0x705b();}export default class di extends _0x1b1c9c{constructor(_0x2ecf06){const _0x164915=_0x10db;super(_0x2ecf06);const _0x3b7fe6=this[_0x164915(0xbd)],_0x48b01e=new _0x3a1f0a(_0x2ecf06),_0x2eb420=new _0x3a1f0a(_0x2ecf06);this[_0x164915(0xc2)](_0x164915(0xd9),!0x1),this[_0x164915(0xc2)](_0x164915(0xba),!0x1),this[_0x164915(0xc2)](_0x164915(0xbf),0x0),this[_0x164915(0xc2)](_0x164915(0xcc),0x0),this[_0x164915(0xc2)](_0x164915(0xc1),!0x1),this[_0x164915(0xc2)](_0x164915(0xde),!0x1),this[_0x164915(0xcf)](_0x164915(0xcb))['to'](this,_0x164915(0xba),this,_0x164915(0xcc),(_0x37c897,_0x40010a)=>_0x37c897&&_0x40010a>0x0),this[_0x164915(0xcf)](_0x164915(0xbc))['to'](this,_0x164915(0xba),this,_0x164915(0xbf),this,_0x164915(0xcc),this,_0x164915(0xd9),(_0x589ecd,_0x5c337a,_0x110e45,_0x19067a)=>{const _0x2ef534=_0x164915;if(!_0x589ecd)return _0xbaae1c(_0x2ecf06,_0x2ef534(0xce));if(!_0x110e45)return _0xbaae1c(_0x2ecf06,_0x2ef534(0xc0));const _0x3f7262=_0xbaae1c(_0x2ecf06,_0x2ef534(0xd8),_0x110e45);return _0x19067a?_0xbaae1c(_0x2ecf06,_0x2ef534(0xc5),[_0x5c337a+0x1,_0x110e45]):_0x3f7262;}),_0x48b01e[_0x164915(0xc2)]({'label':_0xbaae1c(_0x2ecf06,_0x164915(0xc7)),'tooltip':!0x0,'icon':_0x3c5911}),_0x2eb420[_0x164915(0xc2)]({'label':_0xbaae1c(_0x2ecf06,_0x164915(0xc3)),'tooltip':!0x0,'icon':_0x4d5ffa}),_0x48b01e[_0x164915(0xcf)](_0x164915(0xe2))['to'](this,_0x164915(0xde)),_0x2eb420[_0x164915(0xcf)](_0x164915(0xe2))['to'](this,_0x164915(0xc1)),_0x48b01e['on'](_0x164915(0xdc),()=>this[_0x164915(0xdf)](_0x164915(0xdc),_0x164915(0xd5))),_0x2eb420['on'](_0x164915(0xdc),()=>this[_0x164915(0xdf)](_0x164915(0xdc),_0x164915(0xdd))),this[_0x164915(0xd0)]({'tag':_0x164915(0xd2),'attributes':{'class':['ck',_0x164915(0xbe),_0x164915(0xdb)]},'children':[{'tag':_0x164915(0xcd),'attributes':{'class':[_0x164915(0xe1)]},'children':[{'tag':_0x164915(0xcd),'attributes':{'class':[_0x164915(0xc4),_0x3b7fe6['if'](_0x164915(0xcb),_0x164915(0xc8),_0x309c6d=>!_0x309c6d)]},'children':[{'text':_0x3b7fe6['to'](_0x164915(0xd9),_0x4f4e12=>_0x4f4e12?_0xbaae1c(_0x2ecf06,_0x164915(0xb8))+':\x20':_0xbaae1c(_0x2ecf06,_0x164915(0xc6))+':\x20')}]},{'text':_0x3b7fe6['to'](_0x164915(0xbc))}]},new _0x58304d(),{'tag':_0x164915(0xd2),'attributes':{'class':[_0x164915(0xc9)]},'children':[_0x48b01e,_0x2eb420]}]});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x25cf3e=_0x3a8e;function _0x30b8(){const _0x116a54=['addClass','1742570TPkFNt','RevisionViewerLoadingOverlay','removeClass','531408wcwibv','hide','editing','18844sFgian','147760uGytbe','change','ck-editor__editable__loading-overlay','9fzhwwy','editor','900405MkbFTr','2084890LieLHR','7919420hrHZvD','350GlTDUx','6qXDzEz','18tJgwSJ','document','view','show','roots','pluginName'];_0x30b8=function(){return _0x116a54;};return _0x30b8();}(function(_0x5156b7,_0x5b6d00){const _0x532869=_0x3a8e,_0x2701de=_0x5156b7();while(!![]){try{const _0x535866=-parseInt(_0x532869(0xb1))/0x1+-parseInt(_0x532869(0xa3))/0x2+-parseInt(_0x532869(0xa7))/0x3*(parseInt(_0x532869(0x9c))/0x4)+-parseInt(_0x532869(0xae))/0x5*(-parseInt(_0x532869(0xa6))/0x6)+-parseInt(_0x532869(0xa5))/0x7*(-parseInt(_0x532869(0x9d))/0x8)+parseInt(_0x532869(0xa0))/0x9*(parseInt(_0x532869(0xa4))/0xa)+parseInt(_0x532869(0xa2))/0xb;if(_0x535866===_0x5b6d00)break;else _0x2701de['push'](_0x2701de['shift']());}catch(_0x3f914b){_0x2701de['push'](_0x2701de['shift']());}}}(_0x30b8,0x84bcc));import{Plugin as _0x325f79}from'ckeditor5/src/core.js';function _0x3a8e(_0xd4fb22,_0x203ec3){const _0x30b8eb=_0x30b8();return _0x3a8e=function(_0x3a8e4b,_0x425425){_0x3a8e4b=_0x3a8e4b-0x9b;let _0x405869=_0x30b8eb[_0x3a8e4b];return _0x405869;},_0x3a8e(_0xd4fb22,_0x203ec3);}const ce=_0x25cf3e(0x9f);import'../../../theme/revisionviewerloadingoverlay.css';export default class ae extends _0x325f79{static get[_0x25cf3e(0xac)](){const _0x690816=_0x25cf3e;return _0x690816(0xaf);}[_0x25cf3e(0xaa)](){const _0x5a8ce9=_0x25cf3e,_0x5c6481=this[_0x5a8ce9(0xa1)][_0x5a8ce9(0x9b)][_0x5a8ce9(0xa9)];_0x5c6481[_0x5a8ce9(0x9e)](_0x18fa09=>{const _0x38b60f=_0x5a8ce9;for(const _0x420821 of _0x5c6481[_0x38b60f(0xa8)][_0x38b60f(0xab)])_0x18fa09[_0x38b60f(0xad)](ce,_0x420821);});}[_0x25cf3e(0xb2)](){const _0x41503a=_0x25cf3e,_0x3f7690=this[_0x41503a(0xa1)][_0x41503a(0x9b)][_0x41503a(0xa9)];_0x3f7690[_0x41503a(0x9e)](_0xd649c0=>{const _0x47f56f=_0x41503a;for(const _0x3198ac of _0x3f7690[_0x47f56f(0xa8)][_0x47f56f(0xab)])_0xd649c0[_0x47f56f(0xb0)](ce,_0x3198ac);});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x559428=_0x332d;(function(_0x4f01d9,_0x1a6983){const _0x5c8e7e=_0x332d,_0x3f0972=_0x4f01d9();while(!![]){try{const _0x372629=-parseInt(_0x5c8e7e(0x18e))/0x1*(-parseInt(_0x5c8e7e(0x170))/0x2)+parseInt(_0x5c8e7e(0x17e))/0x3*(parseInt(_0x5c8e7e(0x178))/0x4)+parseInt(_0x5c8e7e(0x163))/0x5*(-parseInt(_0x5c8e7e(0x18b))/0x6)+parseInt(_0x5c8e7e(0x184))/0x7+parseInt(_0x5c8e7e(0x18d))/0x8+-parseInt(_0x5c8e7e(0x177))/0x9*(parseInt(_0x5c8e7e(0x176))/0xa)+-parseInt(_0x5c8e7e(0x169))/0xb;if(_0x372629===_0x1a6983)break;else _0x3f0972['push'](_0x3f0972['shift']());}catch(_0xb0fb00){_0x3f0972['push'](_0x3f0972['shift']());}}}(_0x1953,0xd8055));import{icons as _0x2a7d63,Plugin as _0x5a5f62}from'ckeditor5/src/core.js';import{ButtonView as _0x228f26}from'ckeditor5/src/ui.js';function _0x1953(){const _0x893f33=['ck-revision-history-ui__back-to-editing','pluginName','isEnabled','134212gfxuAy','isBackwardNavigationEnabled','change:isReady','set','showNextChange','isNavigationMode','8590mypcxM','13401taLArB','12WxzNxJ','revisionHistory','config','componentFactory','restoreRevision','RevisionViewerUI','1761765gtuQWE','isForwardNavigationEnabled','exitToEditing','get','Restore\x20this\x20revision','hide','4576271dgQYYV','Back\x20to\x20editing','bind','init','undo','add','execute','24AUayye','listenTo','1097928sRDGAM','24eQQJOm','requires','isReady','changesNavigation','forward','2031560zTYxSG','showPreviousChange','plugins','currentChangeNumber','numberOfChanges','editor','4116013YVVFNx','show','commands','closeRevisionViewerCallback'];_0x1953=function(){return _0x893f33;};return _0x1953();}import _0x4eec2f from'./changesnavigationview.js';function _0x332d(_0xd84617,_0x5654da){const _0x1953eb=_0x1953();return _0x332d=function(_0x332d5f,_0x1acb43){_0x332d5f=_0x332d5f-0x163;let _0x3c4741=_0x1953eb[_0x332d5f];return _0x3c4741;},_0x332d(_0xd84617,_0x5654da);}import _0x232d96 from'./../../revisionviewer.js';import _0x1bc2d9 from'./revisionviewerloadingoverlay.js';import{getTranslation as _0x25e031}from'../../utils/common-translations.js';import'../../../theme/revisionviewer.css';export default class R extends _0x5a5f62{static get[_0x559428(0x16e)](){const _0x31c2dd=_0x559428;return _0x31c2dd(0x17d);}static get[_0x559428(0x18f)](){return[_0x232d96,_0x1bc2d9];}[_0x559428(0x187)](){const _0x1203c0=_0x559428,_0x33a472=this[_0x1203c0(0x168)],_0x4eebbd=_0x33a472[_0x1203c0(0x165)][_0x1203c0(0x181)](_0x232d96),_0x53d0e7=_0x33a472[_0x1203c0(0x165)][_0x1203c0(0x181)](_0x1bc2d9);_0x33a472['ui'][_0x1203c0(0x17b)][_0x1203c0(0x189)](_0x1203c0(0x180),_0x2ccc59=>{const _0x404bbe=_0x1203c0,_0x4d12c2=new _0x228f26(_0x2ccc59);return _0x4d12c2[_0x404bbe(0x173)]({'label':_0x25e031(_0x2ccc59,_0x404bbe(0x185)),'icon':_0x2a7d63[_0x404bbe(0x188)],'withText':!0x0,'tooltip':!0x0,'class':_0x404bbe(0x16d)}),this[_0x404bbe(0x18c)](_0x4d12c2,_0x404bbe(0x18a),()=>{const _0xaf0b7d=_0x404bbe;_0x33a472[_0xaf0b7d(0x17a)][_0xaf0b7d(0x181)](_0xaf0b7d(0x179))[_0xaf0b7d(0x16c)]();}),_0x4d12c2;}),_0x33a472['ui'][_0x1203c0(0x17b)][_0x1203c0(0x189)](_0x1203c0(0x17c),_0x2d4184=>{const _0x12934e=_0x1203c0,_0x4bfc23=new _0x228f26(_0x2d4184);return _0x4bfc23[_0x12934e(0x173)]({'label':_0x25e031(_0x2d4184,_0x12934e(0x182)),'withText':!0x0,'tooltip':!0x0}),_0x4bfc23[_0x12934e(0x186)](_0x12934e(0x16f))['to'](_0x33a472[_0x12934e(0x16b)][_0x12934e(0x181)](_0x12934e(0x17c))),this[_0x12934e(0x18c)](_0x4bfc23,_0x12934e(0x18a),()=>_0x33a472[_0x12934e(0x18a)](_0x12934e(0x17c))),_0x4bfc23;}),_0x33a472['ui'][_0x1203c0(0x17b)][_0x1203c0(0x189)](_0x1203c0(0x191),_0x1b38d8=>{const _0x1bc110=_0x1203c0,_0x2b5ba5=new _0x4eec2f(_0x1b38d8),_0x31de6f=_0x33a472[_0x1bc110(0x16b)][_0x1bc110(0x181)](_0x1bc110(0x164)),_0x3835b5=_0x33a472[_0x1bc110(0x16b)][_0x1bc110(0x181)](_0x1bc110(0x174));return _0x2b5ba5[_0x1bc110(0x186)](_0x1bc110(0x171))['to'](_0x31de6f,_0x1bc110(0x16f)),_0x2b5ba5[_0x1bc110(0x186)](_0x1bc110(0x17f))['to'](_0x3835b5,_0x1bc110(0x16f)),_0x2b5ba5[_0x1bc110(0x186)](_0x1bc110(0x190),_0x1bc110(0x166),_0x1bc110(0x167),_0x1bc110(0x175))['to'](_0x4eebbd),this[_0x1bc110(0x18c)](_0x2b5ba5,_0x1bc110(0x18a),(_0x28ca47,_0x50be84)=>{const _0x11e40a=_0x1bc110;_0x33a472[_0x11e40a(0x18a)](_0x11e40a(0x192)===_0x50be84?_0x11e40a(0x174):_0x11e40a(0x164));}),_0x2b5ba5;}),_0x53d0e7[_0x1203c0(0x16a)](),_0x4eebbd['on'](_0x1203c0(0x172),(_0x1ad61a,_0x38c595,_0x277d04)=>{const _0x5b0b2b=_0x1203c0;_0x277d04?_0x53d0e7[_0x5b0b2b(0x183)]():_0x53d0e7[_0x5b0b2b(0x16a)]();});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
export function getTranslation(
|
|
23
|
+
export function getTranslation(_0x432876,_0x2a0804,_0x2eafe6){const t=_0x432876['t'];switch(_0x2a0804){case'Revision\x20history':return t('Revision\x20history');case'Open\x20revision\x20history':return t('Open\x20revision\x20history');case'Restored':return t('Restored');case'Empty\x20document':return t('Empty\x20document');case'Initial\x20revision':return t('Initial\x20revision');case'Suggested\x20by':return t('Suggested\x20by');case'Added\x20by':return t('Added\x20by');case'Removed\x20by':return t('Removed\x20by');case'Show\x20more\x20items':return t('Show\x20more\x20items');case'Compare\x20against\x20selected':return t('Compare\x20against\x20selected');case'Name\x20this\x20revision':return t('Name\x20this\x20revision');case'Restore\x20this\x20revision':return t('Restore\x20this\x20revision');case'Back\x20to\x20editing':return t('Back\x20to\x20editing');case'Loading...':return t('Loading...');case'No\x20changes':return t('No\x20changes');case'NUMBER_OF_CHANGES':return t({'string':'%0\x20change','plural':'%0\x20changes','id':'NUMBER_OF_CHANGES'},_0x2eafe6);case'X_OF_Y_CHANGES':return t({'string':'%0\x20of\x20%1','id':'X_OF_Y_CHANGES'},_0x2eafe6);case'Show\x20previous\x20change':return t('Show\x20previous\x20change');case'Show\x20next\x20change':return t('Show\x20next\x20change');case'EDIT_X_OF_Y_REVISIONS':return t({'string':'Edit','id':'EDIT_X_OF_Y_REVISIONS'});case'Total':return t('Total');case'Revision\x20creator':return t('Revision\x20creator');case'Revision\x20author':return t('Revision\x20author');case'Revision\x20name':return t('Revision\x20name');case'Save\x20current\x20revision':return t('Save\x20current\x20revision');case'Save':return t('Save');case'Cancel':return t('Cancel');case'Name\x20of\x20the\x20revision':return t('Name\x20of\x20the\x20revision');case'optional':return t('optional');case'PENDING_ACTION_REVISION_HISTORY':return t({'string':'Unsaved\x20change\x20in\x20revision\x20history.','id':'PENDING_ACTION_REVISION_HISTORY'});case'The\x20revision\x20name\x20cannot\x20be\x20empty.':return t('The\x20revision\x20name\x20cannot\x20be\x20empty.');case'Enter\x20the\x20revision\x20name':return t('Enter\x20the\x20revision\x20name');default:return'';}}
|
|
@@ -14,24 +14,17 @@
|
|
|
14
14
|
align-items: flex-start;
|
|
15
15
|
flex-direction: row;
|
|
16
16
|
flex-wrap: nowrap;
|
|
17
|
+
width: 400px;
|
|
17
18
|
|
|
18
19
|
& .ck-labeled-field-view {
|
|
19
|
-
|
|
20
|
+
width: 100%;
|
|
20
21
|
}
|
|
21
22
|
|
|
22
23
|
& .ck-label {
|
|
23
24
|
display: none;
|
|
24
25
|
}
|
|
25
26
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
& .ck-labeled-field-view {
|
|
30
|
-
flex-basis: 100%;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
& .ck-button {
|
|
34
|
-
flex-basis: 50%;
|
|
35
|
-
}
|
|
27
|
+
& .ck-input {
|
|
28
|
+
width: 100%;
|
|
36
29
|
}
|
|
37
30
|
}
|