@ckeditor/ckeditor5-revision-history 0.0.0-nightly-20240402.0 → 0.0.0-nightly-20240404.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 _0x37136d=_0x219c;function _0x408e(){const _0x3676c7=['editor','map','newRevisionId','_handleEditorDataReady','focus','length','revisionSetName','revisionHistory.revisionActions','revisionViews','string','_revisions','destroy','revisionHistory.requireRevisionName','nameRevision','availableRevisionActions','102zgIGkq','isReady','compare','getIndex','pluginName','199274SJaLRu','restoreRevisionCallback','timePeriodViews','get','setName','render','isEnabled','remove','name','select','240247WGEREK','45kAMtBj','_revisionsRepository','_createRevisionActions','getRevision','listenTo','isSelected','selectRevision','highlightRevisions','assign','350336rxjQOH','fieldView','2453800NqoYBK','init','requires','data','ready','revisionHistory.viewerSidebarContainer','_revisionViewer','Name\x20this\x20revision','element','defaultRevisionActions','restoreRevision','_handleDiffChange','Restore\x20this\x20revision','appendChild','change:diff','_sidebarView','_handleRevisionSelected','compareAgainstSelected','repository','Compare\x20against\x20selected','isVisible','revisionHistory','_handleRevisionSetName','getEarlierVisibleRevision','8793rqhbsd','plugins','getLaterVisibleRevision','action','revisionSelected','RevisionsSidebar','1474216NerGCJ','locale','add','diff','config','bind','615408jwIdLn','getRevisionsInDiff'];_0x408e=function(){return _0x3676c7;};return _0x408e();}(function(_0x5ae807,_0x254070){const _0x392fba=_0x219c,_0x92c8d7=_0x5ae807();while(!![]){try{const _0x343b67=-parseInt(_0x392fba(0x1f3))/0x1+-parseInt(_0x392fba(0x207))/0x2+-parseInt(_0x392fba(0x1d1))/0x3+-parseInt(_0x392fba(0x1dd))/0x4+parseInt(_0x392fba(0x209))/0x5+-parseInt(_0x392fba(0x1ee))/0x6*(parseInt(_0x392fba(0x1fd))/0x7)+parseInt(_0x392fba(0x1d7))/0x8*(parseInt(_0x392fba(0x1fe))/0x9);if(_0x343b67===_0x254070)break;else _0x92c8d7['push'](_0x92c8d7['shift']());}catch(_0x4201e0){_0x92c8d7['push'](_0x92c8d7['shift']());}}}(_0x408e,0x489f7));import{Plugin as _0x314b6a}from'ckeditor5/src/core.js';import _0x513724 from'./revisionssidebarview.js';function _0x219c(_0x29932c,_0x1b6a86){const _0x408e2c=_0x408e();return _0x219c=function(_0x219cd5,_0xa5ba87){_0x219cd5=_0x219cd5-0x1bc;let _0x51b86b=_0x408e2c[_0x219cd5];return _0x51b86b;},_0x219c(_0x29932c,_0x1b6a86);}import _0x2c6553 from'../../revisionviewer.js';export default class w extends _0x314b6a{static get[_0x37136d(0x1f2)](){const _0x4ffef6=_0x37136d;return _0x4ffef6(0x1d6);}static get[_0x37136d(0x20b)](){return[_0x2c6553];}constructor(_0x441189){const _0xd5354=_0x37136d;super(_0x441189),this[_0xd5354(0x1bf)]=_0x441189[_0xd5354(0x1d2)][_0xd5354(0x1f6)](_0x2c6553),this[_0xd5354(0x1ff)]=this[_0xd5354(0x1bf)][_0xd5354(0x1cb)],this[_0xd5354(0x1c8)]=null;}[_0x37136d(0x20a)](){const _0x4dadc2=_0x37136d,_0x375ca2=this[_0x4dadc2(0x1ff)][_0x4dadc2(0x1e9)],_0xe93150=this[_0x4dadc2(0x200)](),_0xd8c8b=this[_0x4dadc2(0x1df)][_0x4dadc2(0x1db)][_0x4dadc2(0x1f6)](_0x4dadc2(0x1be));this[_0x4dadc2(0x1c8)]=new _0x513724(this[_0x4dadc2(0x1df)][_0x4dadc2(0x1d8)],_0x375ca2,_0xe93150,this[_0x4dadc2(0x1df)][_0x4dadc2(0x1db)][_0x4dadc2(0x1f6)](_0x4dadc2(0x1eb))),this[_0x4dadc2(0x1c8)]['on'](_0x4dadc2(0x1d5),this[_0x4dadc2(0x1c9)][_0x4dadc2(0x1dc)](this)),this[_0x4dadc2(0x1c8)]['on'](_0x4dadc2(0x1e5),this[_0x4dadc2(0x1cf)][_0x4dadc2(0x1dc)](this)),this[_0x4dadc2(0x1c8)][_0x4dadc2(0x1dc)](_0x4dadc2(0x1f9))['to'](this[_0x4dadc2(0x1bf)]),this[_0x4dadc2(0x1c8)][_0x4dadc2(0x1f5)]['on'](_0x4dadc2(0x1d9),(_0x357965,_0x4dba0d)=>{const _0x118be0=_0x4dadc2;_0x4dba0d[_0x118be0(0x1e7)]['on'](_0x118be0(0x1d9),(_0x133aa7,_0x3ba86e)=>{const _0x14e1f7=_0x118be0;_0x3ba86e[_0x14e1f7(0x1dc)](_0x14e1f7(0x1f9),_0x14e1f7(0x1ef))['to'](this[_0x14e1f7(0x1bf)]);});}),this[_0x4dadc2(0x1c8)][_0x4dadc2(0x1f8)](),this[_0x4dadc2(0x202)](this[_0x4dadc2(0x1df)][_0x4dadc2(0x1bc)],_0x4dadc2(0x1bd),this[_0x4dadc2(0x1e2)][_0x4dadc2(0x1dc)](this)),this[_0x4dadc2(0x202)](this[_0x4dadc2(0x1bf)],_0x4dadc2(0x1c7),this[_0x4dadc2(0x1c4)][_0x4dadc2(0x1dc)](this)),_0xd8c8b[_0x4dadc2(0x1c6)](this[_0x4dadc2(0x1c8)][_0x4dadc2(0x1c1)]);}[_0x37136d(0x1ea)](){const _0x37803b=_0x37136d;this[_0x37803b(0x1c8)][_0x37803b(0x1c1)][_0x37803b(0x1fa)](),this[_0x37803b(0x1c8)][_0x37803b(0x1ea)]();}[_0x37136d(0x1e2)](){const _0x136b97=_0x37136d,_0x8190c4=this[_0x136b97(0x1ff)][_0x136b97(0x201)](0x0);if(_0x8190c4){const _0x26bd95=this[_0x136b97(0x1ff)][_0x136b97(0x1d0)](_0x8190c4['id']);this[_0x136b97(0x1bf)][_0x136b97(0x1f0)](_0x8190c4,_0x26bd95);}}[_0x37136d(0x1c9)](_0x2f5ea4,_0x5bccae){const _0x5110de=_0x37136d,_0xca2f9c=this[_0x5110de(0x1ff)][_0x5110de(0x201)](_0x5bccae['id']),_0x12bf2a=this[_0x5110de(0x1ff)][_0x5110de(0x1d0)](_0xca2f9c['id']);this[_0x5110de(0x1bf)][_0x5110de(0x1f0)](_0xca2f9c,_0x12bf2a);}[_0x37136d(0x1cf)](_0x390259,_0x3dd128){const _0x176eec=_0x37136d;this[_0x176eec(0x1ff)][_0x176eec(0x201)](_0x3dd128['id'])[_0x176eec(0x1f7)](_0x3dd128[_0x176eec(0x1fb)]);}[_0x37136d(0x1c4)](_0x5af880,_0x5c0215,_0x43000f){const _0x302283=_0x37136d,_0x543a1d=this[_0x302283(0x1ff)][_0x302283(0x1de)](_0x43000f);_0x543a1d[_0x302283(0x1e4)]>0x2?(this[_0x302283(0x1c8)][_0x302283(0x205)](_0x543a1d),this[_0x302283(0x1c8)][_0x302283(0x204)](null)):(this[_0x302283(0x1c8)][_0x302283(0x205)]([]),this[_0x302283(0x1c8)][_0x302283(0x204)](_0x543a1d[0x0]));}[_0x37136d(0x200)](){const _0x4018f2=_0x37136d,_0x58ac5a=this[_0x4018f2(0x1df)],_0x46ab8=w[_0x4018f2(0x1ed)],_0xf7a6e6=_0x58ac5a[_0x4018f2(0x1db)][_0x4018f2(0x1f6)](_0x4018f2(0x1e6))||w[_0x4018f2(0x1c2)];if(_0xf7a6e6[_0x4018f2(0x1e4)])return _0xf7a6e6[_0x4018f2(0x1e0)](_0x25fff3=>{const _0x498067=_0x4018f2,_0x334a92=_0x498067(0x1e8)==typeof _0x25fff3?Object[_0x498067(0x206)]({},_0x46ab8[_0x25fff3]):_0x25fff3;return _0x334a92[_0x498067(0x1d4)]=_0x334a92[_0x498067(0x1d4)][_0x498067(0x1dc)](this,_0x58ac5a),_0x334a92[_0x498067(0x1cd)]&&(_0x334a92[_0x498067(0x1cd)]=_0x334a92[_0x498067(0x1cd)][_0x498067(0x1dc)](this,_0x58ac5a)),_0x334a92;});}}w[_0x37136d(0x1ed)]={'compareAgainstSelected':{'name':_0x37136d(0x1cc),'action':({plugins:_0xe57bb6},_0x480f55)=>{const _0x233334=_0x37136d,_0x4b2900=_0xe57bb6[_0x233334(0x1f6)](_0x2c6553),_0x19a2ce=_0x4b2900[_0x233334(0x1cb)];let _0x399ecd=_0x4b2900[_0x233334(0x1da)][_0x233334(0x1e1)],_0x4735ed=_0x480f55['id'];_0x19a2ce[_0x233334(0x1f1)](_0x399ecd)>_0x19a2ce[_0x233334(0x1f1)](_0x4735ed)&&([_0x399ecd,_0x4735ed]=[_0x4735ed,_0x399ecd]),_0x4b2900[_0x233334(0x1f0)](_0x399ecd,_0x4735ed);},'isVisible':({plugins:_0x38a372},_0xbda6b1)=>{const _0x124a38=_0x37136d,_0x189352=_0x38a372[_0x124a38(0x1f6)](_0x2c6553);return!(_0x189352[_0x124a38(0x1cb)][_0x124a38(0x1de)](_0x189352[_0x124a38(0x1da)])[_0x124a38(0x1e4)]>0x2)&&!_0xbda6b1[_0x124a38(0x203)];}},'restoreRevision':{'name':_0x37136d(0x1c5),'action':(_0x516782,{id:_0x59eaa6})=>{const _0x47e294=_0x37136d;_0x516782[_0x47e294(0x1db)][_0x47e294(0x1f6)](_0x47e294(0x1ce))[_0x47e294(0x1f4)](_0x59eaa6);},'isVisible':({plugins:_0x521c46},_0x48c180)=>!!_0x521c46[_0x37136d(0x1f6)](_0x2c6553)[_0x37136d(0x1cb)][_0x37136d(0x1d3)](_0x48c180['id'])},'nameRevision':{'name':_0x37136d(0x1c0),'action':({plugins:_0x4564aa},{id:_0x2f93b2,revisionNameView:_0x227ecd})=>{const _0x12caa5=_0x37136d,_0x19119a=_0x4564aa[_0x12caa5(0x1f6)](_0x2c6553),_0x65c9c7=_0x19119a[_0x12caa5(0x1cb)][_0x12caa5(0x1d0)](_0x2f93b2);_0x19119a[_0x12caa5(0x1f0)](_0x2f93b2,_0x65c9c7),_0x227ecd[_0x12caa5(0x1e3)](),_0x227ecd[_0x12caa5(0x208)][_0x12caa5(0x1fc)]();}}},w[_0x37136d(0x1c2)]=[_0x37136d(0x1ca),_0x37136d(0x1c3),_0x37136d(0x1ec)];
|
|
@@ -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
|
+
function _0x84db(_0x1016c2,_0x2d9ea1){const _0xa5b6ad=_0xa5b6();return _0x84db=function(_0x84db9e,_0x1d5ffd){_0x84db9e=_0x84db9e-0x166;let _0x236ea3=_0xa5b6ad[_0x84db9e];return _0x236ea3;},_0x84db(_0x1016c2,_0x2d9ea1);}const _0x507467=_0x84db;(function(_0x982989,_0x4f14d9){const _0x554e41=_0x84db,_0x504dfb=_0x982989();while(!![]){try{const _0x356041=parseInt(_0x554e41(0x16a))/0x1*(parseInt(_0x554e41(0x168))/0x2)+parseInt(_0x554e41(0x183))/0x3*(-parseInt(_0x554e41(0x175))/0x4)+parseInt(_0x554e41(0x173))/0x5+-parseInt(_0x554e41(0x17e))/0x6*(parseInt(_0x554e41(0x174))/0x7)+parseInt(_0x554e41(0x17a))/0x8*(parseInt(_0x554e41(0x17b))/0x9)+parseInt(_0x554e41(0x182))/0xa*(-parseInt(_0x554e41(0x179))/0xb)+parseInt(_0x554e41(0x16c))/0xc;if(_0x356041===_0x4f14d9)break;else _0x504dfb['push'](_0x504dfb['shift']());}catch(_0x5e36ce){_0x504dfb['push'](_0x504dfb['shift']());}}}(_0xa5b6,0x534ce));function _0xa5b6(){const _0x32b8a9=['2BwpzSX','remove','8554140gNVFtA','select','_requireRevisionName','setName','uiLanguage','ck-revision-history-sidebar__time-period__revisions','div','251420PYnTEE','697641tzkALx','8KesAaa','localizedPeriodName','_revisionActions','delegate','154elCTvo','2984sKjGna','11709ouwsWY','ck-revision-history-sidebar__time-period','span','36ZcXAcl','setTemplate','revisionViews','startDate','201300qdGDXj','526719nsoTrC','createCollection','locale','ck-revision-history-sidebar__time-period__label','add','removeRevision','addRevision','323740aRbCOw','find'];_0xa5b6=function(){return _0x32b8a9;};return _0xa5b6();}import{View as _0x5c0dce}from'ckeditor5/src/ui.js';import _0xeba929 from'../revision/revisionview.js';import{getDateTimePeriodInfo as _0x2d86b4}from'./utils.js';import'../../../theme/revisionssidebar/revisionssidebartimeperiod.css';export default class mi extends _0x5c0dce{constructor(_0x32599c,_0x33e766,_0x5a8f14,_0x16f92e){const _0x420c60=_0x84db;super(_0x32599c);const _0xc8ecf3=_0x2d86b4(_0x33e766,this[_0x420c60(0x185)][_0x420c60(0x170)])[_0x420c60(0x176)];this[_0x420c60(0x181)]=_0x33e766,this[_0x420c60(0x180)]=this[_0x420c60(0x184)](),this[_0x420c60(0x177)]=_0x5a8f14,this[_0x420c60(0x16e)]=_0x16f92e,this[_0x420c60(0x180)][_0x420c60(0x178)](_0x420c60(0x16d))['to'](this),this[_0x420c60(0x180)][_0x420c60(0x178)](_0x420c60(0x16f))['to'](this),this[_0x420c60(0x17f)]({'tag':_0x420c60(0x172),'attributes':{'class':['ck',_0x420c60(0x17c)]},'children':[{'tag':_0x420c60(0x17d),'attributes':{'class':['ck',_0x420c60(0x186)]},'children':[{'text':_0xc8ecf3}]},{'tag':_0x420c60(0x172),'attributes':{'class':['ck',_0x420c60(0x171)]},'children':this[_0x420c60(0x180)]}]});}[_0x507467(0x167)](_0x5a18a9){const _0x46cfed=_0x507467,_0x5843d7=new _0xeba929(this[_0x46cfed(0x185)],_0x5a18a9,this[_0x46cfed(0x177)],this[_0x46cfed(0x16e)]);this[_0x46cfed(0x180)][_0x46cfed(0x187)](_0x5843d7);}[_0x507467(0x166)](_0x258153){const _0x33b928=_0x507467,_0x2929f7=this[_0x33b928(0x180)][_0x33b928(0x169)](_0x5bd3a2=>_0x5bd3a2['id']===_0x258153['id']);this[_0x33b928(0x180)][_0x33b928(0x16b)](_0x2929f7);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x5ec455=_0x4b5b;function _0x4b5b(_0x27c34f,_0x20a536){const _0x25bae2=_0x25ba();return _0x4b5b=function(_0x4b5b8b,_0x3464fa){_0x4b5b8b=_0x4b5b8b-0x119;let _0x5c3d2b=_0x25bae2[_0x4b5b8b];return _0x5c3d2b;},_0x4b5b(_0x27c34f,_0x20a536);}(function(_0x19f0f6,_0x3c373b){const _0x5a1375=_0x4b5b,_0x5e2a8f=_0x19f0f6();while(!![]){try{const _0x579908=-parseInt(_0x5a1375(0x142))/0x1+parseInt(_0x5a1375(0x13d))/0x2+-parseInt(_0x5a1375(0x14e))/0x3+-parseInt(_0x5a1375(0x11e))/0x4*(-parseInt(_0x5a1375(0x120))/0x5)+parseInt(_0x5a1375(0x13c))/0x6*(-parseInt(_0x5a1375(0x13e))/0x7)+parseInt(_0x5a1375(0x144))/0x8+-parseInt(_0x5a1375(0x14b))/0x9*(parseInt(_0x5a1375(0x127))/0xa);if(_0x579908===_0x3c373b)break;else _0x5e2a8f['push'](_0x5e2a8f['shift']());}catch(_0x536096){_0x5e2a8f['push'](_0x5e2a8f['shift']());}}}(_0x25ba,0x5166b));import{View as _0x232bbf}from'ckeditor5/src/ui.js';import _0x538469 from'./revisionssidebartimeperiodview.js';import _0x1934e7 from'./revisionssidebarheaderview.js';import{getDateTimePeriodInfo as _0x2d92fe}from'./utils.js';import'../../../theme/revisionssidebar/revisionssidebar.css';function _0x25ba(){const _0x2ff431=['revisionSelected','341598nawZje','fire','removeRevision','ck-reset','add','addRevision','delegate','88zGDXqe','ck-revision-history-sidebar','130925eVAAYv','_revisions','createCollection','setTemplate','_revisionActions','_requireRevisionName','get','2450mUxOfc','startDate','highlightRevisions','ck-rounded-corners','bindTemplate','uiLanguage','select','deselect','timePeriodViews','some','_addRevision','map','flat','find','getTime','render','set','revisionSetName','isEnabled','highlight','_removeRevision','2899338YYYhCw','672428ZQRGNM','7KmKptg','ck-disabled','ck-revision-history-sidebar__timeline','_getTimePeriodViewByStartDate','108099TbhqRp','createdAt','4897264cVGcJm','setName','remove','unhighlight','revisionViews','selectRevision','div','17847CsDgKd','locale'];_0x25ba=function(){return _0x2ff431;};return _0x25ba();}export default class ci extends _0x232bbf{constructor(_0x361ddf,_0x55d3ab,_0x29bf24,_0x1b6006){const _0x5cbcc0=_0x4b5b;super(_0x361ddf);const _0x5788f2=this[_0x5cbcc0(0x12b)];this[_0x5cbcc0(0x12f)]=this[_0x5cbcc0(0x122)](),this[_0x5cbcc0(0x12f)][_0x5cbcc0(0x11d)](_0x5cbcc0(0x12d))['to'](this),this[_0x5cbcc0(0x12f)][_0x5cbcc0(0x11d)](_0x5cbcc0(0x145))['to'](this),this[_0x5cbcc0(0x121)]=_0x55d3ab,this[_0x5cbcc0(0x124)]=_0x29bf24,this[_0x5cbcc0(0x125)]=_0x1b6006,this['on'](_0x5cbcc0(0x12d),(_0x18268d,_0x2b1f94)=>{const _0x104db8=_0x5cbcc0;this[_0x104db8(0x14f)](_0x104db8(0x14d),_0x2b1f94);}),this['on'](_0x5cbcc0(0x145),(_0x430393,_0x2eb302)=>{const _0x34dae5=_0x5cbcc0;this[_0x34dae5(0x14f)](_0x34dae5(0x138),_0x2eb302);}),this[_0x5cbcc0(0x137)](_0x5cbcc0(0x139),!0x1),this[_0x5cbcc0(0x123)]({'tag':_0x5cbcc0(0x14a),'attributes':{'class':['ck',_0x5cbcc0(0x11a),_0x5cbcc0(0x12a),_0x5cbcc0(0x11f)]},'children':[new _0x1934e7(_0x361ddf),{'tag':_0x5cbcc0(0x14a),'attributes':{'class':['ck',_0x5cbcc0(0x140),_0x5788f2['if'](_0x5cbcc0(0x139),_0x5cbcc0(0x13f),_0x1cd022=>!_0x1cd022)]},'children':this[_0x5cbcc0(0x12f)]}]});}[_0x5ec455(0x136)](){const _0x4749fa=_0x5ec455;super[_0x4749fa(0x136)]();for(const _0x3f4e56 of this[_0x4749fa(0x121)])this[_0x4749fa(0x131)](_0x3f4e56);this[_0x4749fa(0x121)]['on'](_0x4749fa(0x11b),(_0x3b47ce,_0x3d40d5)=>{const _0x3e0562=_0x4749fa;this[_0x3e0562(0x131)](_0x3d40d5);}),this[_0x4749fa(0x121)]['on'](_0x4749fa(0x146),(_0x9a3e9f,_0x12acd5)=>{const _0x15dccc=_0x4749fa;this[_0x15dccc(0x13b)](_0x12acd5);});}get[_0x5ec455(0x148)](){const _0x4dac99=_0x5ec455;return this[_0x4dac99(0x12f)][_0x4dac99(0x132)](_0x14704d=>_0x14704d[_0x4dac99(0x148)][_0x4dac99(0x132)](_0x27755d=>_0x27755d))[_0x4dac99(0x133)]();}[_0x5ec455(0x149)](_0x4615dc){const _0x52681c=_0x5ec455;for(const _0x20662d of this[_0x52681c(0x148)])_0x4615dc&&_0x4615dc['id']===_0x20662d['id']?_0x20662d[_0x52681c(0x12d)]():_0x20662d[_0x52681c(0x12e)]();}[_0x5ec455(0x129)](_0x5a036d){const _0x2d9f65=_0x5ec455;for(const _0x5a4098 of this[_0x2d9f65(0x148)])_0x5a036d[_0x2d9f65(0x130)](({id:_0x1ffa65})=>_0x1ffa65===_0x5a4098['id'])?_0x5a4098[_0x2d9f65(0x13a)]():_0x5a4098[_0x2d9f65(0x147)]();}[_0x5ec455(0x131)](_0x23f742){const _0x47581c=_0x5ec455,_0x2dc670=_0x2d92fe(_0x23f742[_0x47581c(0x143)],this[_0x47581c(0x14c)][_0x47581c(0x12c)])[_0x47581c(0x128)];let _0x205d55=this[_0x47581c(0x12f)][_0x47581c(0x126)](0x0);_0x205d55&&_0x205d55[_0x47581c(0x128)][_0x47581c(0x135)]()===_0x2dc670[_0x47581c(0x135)]()||(_0x205d55=new _0x538469(this[_0x47581c(0x14c)],_0x2dc670,this[_0x47581c(0x124)],this[_0x47581c(0x125)]),this[_0x47581c(0x12f)][_0x47581c(0x11b)](_0x205d55)),_0x205d55[_0x47581c(0x11c)](_0x23f742);}[_0x5ec455(0x13b)](_0xdbb2a0){const _0x39bcc3=_0x5ec455,_0x3906b5=_0x2d92fe(_0xdbb2a0[_0x39bcc3(0x143)],this[_0x39bcc3(0x14c)][_0x39bcc3(0x12c)])[_0x39bcc3(0x128)];this[_0x39bcc3(0x141)](_0x3906b5)[_0x39bcc3(0x119)](_0xdbb2a0);}[_0x5ec455(0x141)](_0x282df8){const _0x96d768=_0x5ec455;return this[_0x96d768(0x12f)][_0x96d768(0x134)](_0x231b2d=>_0x231b2d[_0x96d768(0x128)][_0x96d768(0x135)]()===_0x282df8[_0x96d768(0x135)]());}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
(function(
|
|
23
|
+
(function(_0x42008c,_0xaa2526){const _0xf280d6=_0x4c89,_0x598896=_0x42008c();while(!![]){try{const _0x1df3a9=parseInt(_0xf280d6(0x16b))/0x1*(-parseInt(_0xf280d6(0x17c))/0x2)+-parseInt(_0xf280d6(0x17d))/0x3*(-parseInt(_0xf280d6(0x16f))/0x4)+parseInt(_0xf280d6(0x177))/0x5+-parseInt(_0xf280d6(0x17f))/0x6+-parseInt(_0xf280d6(0x169))/0x7+-parseInt(_0xf280d6(0x17b))/0x8*(parseInt(_0xf280d6(0x17e))/0x9)+-parseInt(_0xf280d6(0x16c))/0xa*(-parseInt(_0xf280d6(0x172))/0xb);if(_0x1df3a9===_0xaa2526)break;else _0x598896['push'](_0x598896['shift']());}catch(_0x755601){_0x598896['push'](_0x598896['shift']());}}}(_0x3496,0x34424));import{DateTime as _0x4a1566}from'luxon';function _0x4c89(_0x4299c2,_0x875432){const _0x34969b=_0x3496();return _0x4c89=function(_0x4c8910,_0x3d56d7){_0x4c8910=_0x4c8910-0x169;let _0x238855=_0x34969b[_0x4c8910];return _0x238855;},_0x4c89(_0x4299c2,_0x875432);}export function getDateTimePeriodInfo(_0x3669e8,_0x540dd0){const _0x3917b9=_0x4c89,_0x91636a=_0x4a1566[_0x3917b9(0x180)](_0x3669e8)[_0x3917b9(0x176)](_0x540dd0),_0x10d521=_0x4a1566[_0x3917b9(0x170)](),_0x1cc81e=_0x10d521[_0x3917b9(0x171)]({'days':0x1})[_0x3917b9(0x173)](_0x3917b9(0x181));let _0x5c9404,_0x250259;return _0x91636a[_0x3917b9(0x179)](_0x10d521,_0x3917b9(0x181))?(_0x5c9404=_0x91636a[_0x3917b9(0x173)](_0x3917b9(0x181))[_0x3917b9(0x16a)](),_0x250259=_0x91636a[_0x3917b9(0x178)]()):_0x91636a[_0x3917b9(0x179)](_0x1cc81e,_0x3917b9(0x181))?(_0x5c9404=_0x1cc81e[_0x3917b9(0x16a)](),_0x250259=_0x91636a[_0x3917b9(0x178)]()):_0x91636a[_0x3917b9(0x179)](_0x10d521,_0x3917b9(0x17a))?(_0x5c9404=_0x91636a[_0x3917b9(0x173)](_0x3917b9(0x17a))[_0x3917b9(0x16a)](),_0x250259=_0x91636a[_0x3917b9(0x16d)]||''):_0x91636a[_0x3917b9(0x179)](_0x10d521,_0x3917b9(0x174))?(_0x5c9404=_0x91636a[_0x3917b9(0x173)](_0x3917b9(0x16e))[_0x3917b9(0x16a)](),_0x250259=_0x91636a[_0x3917b9(0x175)]||''):(_0x5c9404=_0x91636a[_0x3917b9(0x173)](_0x3917b9(0x174))[_0x3917b9(0x16a)](),_0x250259=String(_0x91636a[_0x3917b9(0x174)])),{'startDate':_0x5c9404,'localizedPeriodName':_0x250259};}function _0x3496(){const _0x4c3632=['hasSame','week','2789416ZcJmGc','4258ybAeSr','3ZrTJHd','9MiJNHW','1211988AOFhUf','fromJSDate','day','125776Jhvlel','toJSDate','173VtEGKn','30IsoAxH','weekdayLong','month','603236ptdGqH','local','minus','2629759RqSfUS','startOf','year','monthLong','setLocale','1414980elxbKN','toRelativeCalendar'];_0x3496=function(){return _0x4c3632;};return _0x3496();}
|
|
@@ -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(_0x428033,_0x2f9d2d){const _0x1da433=_0x8d19,_0x4dc0a2=_0x428033();while(!![]){try{const _0x4ed0f9=-parseInt(_0x1da433(0x1a9))/0x1*(parseInt(_0x1da433(0x1a1))/0x2)+-parseInt(_0x1da433(0x1b7))/0x3*(-parseInt(_0x1da433(0x193))/0x4)+-parseInt(_0x1da433(0x1a4))/0x5*(parseInt(_0x1da433(0x190))/0x6)+-parseInt(_0x1da433(0x19c))/0x7+-parseInt(_0x1da433(0x199))/0x8*(-parseInt(_0x1da433(0x1a6))/0x9)+parseInt(_0x1da433(0x19e))/0xa*(-parseInt(_0x1da433(0x1a2))/0xb)+-parseInt(_0x1da433(0x195))/0xc*(parseInt(_0x1da433(0x18f))/0xd);if(_0x4ed0f9===_0x2f9d2d)break;else _0x4dc0a2['push'](_0x4dc0a2['shift']());}catch(_0x136e3c){_0x4dc0a2['push'](_0x4dc0a2['shift']());}}}(_0x37e0,0xdaef8));function _0x8d19(_0x542f98,_0x2b1756){const _0x37e04b=_0x37e0();return _0x8d19=function(_0x8d1960,_0x5966fb){_0x8d1960=_0x8d1960-0x18b;let _0x3da86d=_0x37e04b[_0x8d1960];return _0x3da86d;},_0x8d19(_0x542f98,_0x2b1756);}import{View as _0x1b0e74,ButtonView as _0x11d73e,ToolbarSeparatorView as _0x2bdd79}from'ckeditor5/src/ui.js';import{getTranslation as _0x95c9e3}from'../../utils/common-translations.js';import _0x35a364 from'../../../theme/icons/arrow-up.svg';import _0x390421 from'../../../theme/icons/arrow-down.svg';import'../../../theme/changesnavigation.css';function _0x37e0(){const _0x31107a=['13360338sUAjHT','bind','ck-revision-history-ui','31174zaPRfl','ck-revision-history-ui__changes-navigation','fire','NUMBER_OF_CHANGES','Show\x20previous\x20change','forward','ck-revision-history-ui__changes-navigation__wrapper','No\x20changes','currentChangeNumber','_statusText','numberOfChanges','isEnabled','bindTemplate','div','30801QKXpod','EDIT_X_OF_Y_REVISIONS','Show\x20next\x20change','set','X_OF_Y_CHANGES','ck-revision-history-ui__changes-navigation__navigation','1157OKthEz','6aKwtRy','_isStatusLabelVisible','backward','692ErQnqn','Loading...','32364IdGzEy','isNavigationMode','isForwardNavigationEnabled','setTemplate','8AXRuxZ','span','isReady','1050784aafEGG','execute','1003070xEvuCN','Total','ck-hidden','26XXsyUN','11gLUzRQ','isBackwardNavigationEnabled','7340995CLaDvZ','ck-revision-history-ui__changes-navigation__label'];_0x37e0=function(){return _0x31107a;};return _0x37e0();}export default class _i extends _0x1b0e74{constructor(_0x856e92){const _0x358752=_0x8d19;super(_0x856e92);const _0x23f56d=this[_0x358752(0x1b5)],_0x447dde=new _0x11d73e(_0x856e92),_0x45a67d=new _0x11d73e(_0x856e92);this[_0x358752(0x18c)](_0x358752(0x196),!0x1),this[_0x358752(0x18c)](_0x358752(0x19b),!0x1),this[_0x358752(0x18c)](_0x358752(0x1b1),0x0),this[_0x358752(0x18c)](_0x358752(0x1b3),0x0),this[_0x358752(0x18c)](_0x358752(0x197),!0x1),this[_0x358752(0x18c)](_0x358752(0x1a3),!0x1),this[_0x358752(0x1a7)](_0x358752(0x191))['to'](this,_0x358752(0x19b),this,_0x358752(0x1b3),(_0x5ccb36,_0x563366)=>_0x5ccb36&&_0x563366>0x0),this[_0x358752(0x1a7)](_0x358752(0x1b2))['to'](this,_0x358752(0x19b),this,_0x358752(0x1b1),this,_0x358752(0x1b3),this,_0x358752(0x196),(_0x404b5f,_0x21b27f,_0x18efcf,_0xf77d71)=>{const _0x47394c=_0x358752;if(!_0x404b5f)return _0x95c9e3(_0x856e92,_0x47394c(0x194));if(!_0x18efcf)return _0x95c9e3(_0x856e92,_0x47394c(0x1b0));const _0x3aec50=_0x95c9e3(_0x856e92,_0x47394c(0x1ac),_0x18efcf);return _0xf77d71?_0x95c9e3(_0x856e92,_0x47394c(0x18d),[_0x21b27f+0x1,_0x18efcf]):_0x3aec50;}),_0x447dde[_0x358752(0x18c)]({'label':_0x95c9e3(_0x856e92,_0x358752(0x1ad)),'tooltip':!0x0,'icon':_0x35a364}),_0x45a67d[_0x358752(0x18c)]({'label':_0x95c9e3(_0x856e92,_0x358752(0x18b)),'tooltip':!0x0,'icon':_0x390421}),_0x447dde[_0x358752(0x1a7)](_0x358752(0x1b4))['to'](this,_0x358752(0x1a3)),_0x45a67d[_0x358752(0x1a7)](_0x358752(0x1b4))['to'](this,_0x358752(0x197)),_0x447dde['on'](_0x358752(0x19d),()=>this[_0x358752(0x1ab)](_0x358752(0x19d),_0x358752(0x192))),_0x45a67d['on'](_0x358752(0x19d),()=>this[_0x358752(0x1ab)](_0x358752(0x19d),_0x358752(0x1ae))),this[_0x358752(0x198)]({'tag':_0x358752(0x1b6),'attributes':{'class':['ck',_0x358752(0x1a8),_0x358752(0x1aa)]},'children':[{'tag':_0x358752(0x19a),'attributes':{'class':[_0x358752(0x1af)]},'children':[{'tag':_0x358752(0x19a),'attributes':{'class':[_0x358752(0x1a5),_0x23f56d['if'](_0x358752(0x191),_0x358752(0x1a0),_0x803622=>!_0x803622)]},'children':[{'text':_0x23f56d['to'](_0x358752(0x196),_0x1468f0=>_0x1468f0?_0x95c9e3(_0x856e92,_0x358752(0x1b8))+':\x20':_0x95c9e3(_0x856e92,_0x358752(0x19f))+':\x20')}]},{'text':_0x23f56d['to'](_0x358752(0x1b2))}]},new _0x2bdd79(),{'tag':_0x358752(0x1b6),'attributes':{'class':[_0x358752(0x18e)]},'children':[_0x447dde,_0x45a67d]}]});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
function _0x5c97(){const _0x4d2282=['ck-editor__editable__loading-overlay','156956wQHHEX','8423512eALTpt','change','editor','3970380Djtjtc','66FulUPd','addClass','roots','pluginName','3804366EJARnG','703485IXVQVj','hide','RevisionViewerLoadingOverlay','document','9NXgMWm','20860650AoOPdt','removeClass','editing','show','view','5999600dFFGKP','7fnnBsU'];_0x5c97=function(){return _0x4d2282;};return _0x5c97();}const _0x28ca81=_0x3728;(function(_0x3af83b,_0x180fd4){const _0x3fe472=_0x3728,_0x13e391=_0x3af83b();while(!![]){try{const _0x47c2f5=parseInt(_0x3fe472(0x18a))/0x1+parseInt(_0x3fe472(0x197))/0x2*(parseInt(_0x3fe472(0x185))/0x3)+parseInt(_0x3fe472(0x194))/0x4+parseInt(_0x3fe472(0x184))/0x5+parseInt(_0x3fe472(0x189))/0x6*(-parseInt(_0x3fe472(0x195))/0x7)+parseInt(_0x3fe472(0x181))/0x8*(-parseInt(_0x3fe472(0x18e))/0x9)+-parseInt(_0x3fe472(0x18f))/0xa;if(_0x47c2f5===_0x180fd4)break;else _0x13e391['push'](_0x13e391['shift']());}catch(_0x14c2e2){_0x13e391['push'](_0x13e391['shift']());}}}(_0x5c97,0xe8280));function _0x3728(_0x42882a,_0xe63afc){const _0x5c978f=_0x5c97();return _0x3728=function(_0x372897,_0x5b1762){_0x372897=_0x372897-0x181;let _0x1f9c0d=_0x5c978f[_0x372897];return _0x1f9c0d;},_0x3728(_0x42882a,_0xe63afc);}import{Plugin as _0x4ab213}from'ckeditor5/src/core.js';const ce=_0x28ca81(0x196);import'../../../theme/revisionviewerloadingoverlay.css';export default class de extends _0x4ab213{static get[_0x28ca81(0x188)](){const _0x2d9a7d=_0x28ca81;return _0x2d9a7d(0x18c);}[_0x28ca81(0x192)](){const _0x39348e=_0x28ca81,_0x24c691=this[_0x39348e(0x183)][_0x39348e(0x191)][_0x39348e(0x193)];_0x24c691[_0x39348e(0x182)](_0x5070ef=>{const _0x3f5cca=_0x39348e;for(const _0x27d28d of _0x24c691[_0x3f5cca(0x18d)][_0x3f5cca(0x187)])_0x5070ef[_0x3f5cca(0x186)](ce,_0x27d28d);});}[_0x28ca81(0x18b)](){const _0x3c1b8c=_0x28ca81,_0x1e6fee=this[_0x3c1b8c(0x183)][_0x3c1b8c(0x191)][_0x3c1b8c(0x193)];_0x1e6fee[_0x3c1b8c(0x182)](_0x32501e=>{const _0x15dc9a=_0x3c1b8c;for(const _0x53ea3b of _0x1e6fee[_0x15dc9a(0x18d)][_0x15dc9a(0x187)])_0x32501e[_0x15dc9a(0x190)](ce,_0x53ea3b);});}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x24a77f=_0x31b6;(function(_0x5b4c12,_0x43bf17){const _0x1ff47a=_0x31b6,_0x1a84f6=_0x5b4c12();while(!![]){try{const _0x423920=-parseInt(_0x1ff47a(0x124))/0x1+parseInt(_0x1ff47a(0x10c))/0x2+parseInt(_0x1ff47a(0x120))/0x3+-parseInt(_0x1ff47a(0x125))/0x4+parseInt(_0x1ff47a(0x100))/0x5+-parseInt(_0x1ff47a(0xff))/0x6*(parseInt(_0x1ff47a(0x106))/0x7)+parseInt(_0x1ff47a(0x118))/0x8;if(_0x423920===_0x43bf17)break;else _0x1a84f6['push'](_0x1a84f6['shift']());}catch(_0x1f405b){_0x1a84f6['push'](_0x1a84f6['shift']());}}}(_0x2153,0x96d9c));function _0x31b6(_0x56ba84,_0x131bc7){const _0x2153fd=_0x2153();return _0x31b6=function(_0x31b63a,_0x401113){_0x31b63a=_0x31b63a-0xfa;let _0x1a7272=_0x2153fd[_0x31b63a];return _0x1a7272;},_0x31b6(_0x56ba84,_0x131bc7);}import{icons as _0x477f5e,Plugin as _0x260a46}from'ckeditor5/src/core.js';import{ButtonView as _0x33bff2}from'ckeditor5/src/ui.js';import _0x5580ed from'./changesnavigationview.js';function _0x2153(){const _0x7c71d1=['currentChangeNumber','componentFactory','Back\x20to\x20editing','add','showPreviousChange','1491642fOsnwb','bind','RevisionViewerUI','pluginName','hide','get','change:isReady','undo','closeRevisionViewerCallback','commands','config','showNextChange','2662288GfHMRX','plugins','execute','isNavigationMode','isEnabled','editor','init','ck-revision-history-ui__back-to-editing','1428744GUDUmJ','isReady','show','set','79320vCNIbE','1946484wtykVt','isBackwardNavigationEnabled','forward','Restore\x20this\x20revision','restoreRevision','requires','listenTo','35082SmpSVA','717530TqlqSr','exitToEditing','numberOfChanges','isForwardNavigationEnabled','revisionHistory','changesNavigation','616doQROn'];_0x2153=function(){return _0x7c71d1;};return _0x2153();}import _0x4db716 from'./../../revisionviewer.js';import _0x4c3ed1 from'./revisionviewerloadingoverlay.js';import{getTranslation as _0x30a4df}from'../../utils/common-translations.js';import'../../../theme/revisionviewer.css';export default class R extends _0x260a46{static get[_0x24a77f(0x10f)](){const _0x36e452=_0x24a77f;return _0x36e452(0x10e);}static get[_0x24a77f(0xfd)](){return[_0x4db716,_0x4c3ed1];}[_0x24a77f(0x11e)](){const _0x1d8e7b=_0x24a77f,_0x4728c7=this[_0x1d8e7b(0x11d)],_0x2aa23e=_0x4728c7[_0x1d8e7b(0x119)][_0x1d8e7b(0x111)](_0x4db716),_0x10e700=_0x4728c7[_0x1d8e7b(0x119)][_0x1d8e7b(0x111)](_0x4c3ed1);_0x4728c7['ui'][_0x1d8e7b(0x108)][_0x1d8e7b(0x10a)](_0x1d8e7b(0x101),_0xd1bff7=>{const _0x5ce799=_0x1d8e7b,_0x40aef3=new _0x33bff2(_0xd1bff7);return _0x40aef3[_0x5ce799(0x123)]({'label':_0x30a4df(_0xd1bff7,_0x5ce799(0x109)),'icon':_0x477f5e[_0x5ce799(0x113)],'withText':!0x0,'tooltip':!0x0,'class':_0x5ce799(0x11f)}),this[_0x5ce799(0xfe)](_0x40aef3,_0x5ce799(0x11a),()=>{const _0x3dd448=_0x5ce799;_0x4728c7[_0x3dd448(0x116)][_0x3dd448(0x111)](_0x3dd448(0x104))[_0x3dd448(0x114)]();}),_0x40aef3;}),_0x4728c7['ui'][_0x1d8e7b(0x108)][_0x1d8e7b(0x10a)](_0x1d8e7b(0xfc),_0x29d028=>{const _0x4a8d45=_0x1d8e7b,_0x590d2c=new _0x33bff2(_0x29d028);return _0x590d2c[_0x4a8d45(0x123)]({'label':_0x30a4df(_0x29d028,_0x4a8d45(0xfb)),'withText':!0x0,'tooltip':!0x0}),_0x590d2c[_0x4a8d45(0x10d)](_0x4a8d45(0x11c))['to'](_0x4728c7[_0x4a8d45(0x115)][_0x4a8d45(0x111)](_0x4a8d45(0xfc))),this[_0x4a8d45(0xfe)](_0x590d2c,_0x4a8d45(0x11a),()=>_0x4728c7[_0x4a8d45(0x11a)](_0x4a8d45(0xfc))),_0x590d2c;}),_0x4728c7['ui'][_0x1d8e7b(0x108)][_0x1d8e7b(0x10a)](_0x1d8e7b(0x105),_0x43113e=>{const _0x5cec7e=_0x1d8e7b,_0x2299e1=new _0x5580ed(_0x43113e),_0x7cc788=_0x4728c7[_0x5cec7e(0x115)][_0x5cec7e(0x111)](_0x5cec7e(0x10b)),_0x26b73e=_0x4728c7[_0x5cec7e(0x115)][_0x5cec7e(0x111)](_0x5cec7e(0x117));return _0x2299e1[_0x5cec7e(0x10d)](_0x5cec7e(0x126))['to'](_0x7cc788,_0x5cec7e(0x11c)),_0x2299e1[_0x5cec7e(0x10d)](_0x5cec7e(0x103))['to'](_0x26b73e,_0x5cec7e(0x11c)),_0x2299e1[_0x5cec7e(0x10d)](_0x5cec7e(0x121),_0x5cec7e(0x107),_0x5cec7e(0x102),_0x5cec7e(0x11b))['to'](_0x2aa23e),this[_0x5cec7e(0xfe)](_0x2299e1,_0x5cec7e(0x11a),(_0x1c9683,_0x16b6e1)=>{const _0x451d95=_0x5cec7e;_0x4728c7[_0x451d95(0x11a)](_0x451d95(0xfa)===_0x16b6e1?_0x451d95(0x117):_0x451d95(0x10b));}),_0x2299e1;}),_0x10e700[_0x1d8e7b(0x122)](),_0x2aa23e['on'](_0x1d8e7b(0x112),(_0x46d3dc,_0x299fc9,_0x22fbfc)=>{const _0xff8ce3=_0x1d8e7b;_0x22fbfc?_0x10e700[_0xff8ce3(0x110)]():_0x10e700[_0xff8ce3(0x122)]();});}}
|
|
@@ -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
|
}
|