trusty-cms 7.0.41 → 7.0.43
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/app/assets/builds/trusty_cms/ckeditor5.css.map +1 -1
- data/app/assets/builds/trusty_cms/ckeditor5.js +120 -379
- data/app/assets/builds/trusty_cms/ckeditor5.js.map +3 -3
- data/app/javascript/plugins/asset_tags/asset_tag_builder.js +93 -0
- data/app/javascript/plugins/asset_tags/asset_tags.js +8 -0
- data/app/javascript/trusty_cms/ckeditor5.js +3 -7
- data/lib/trusty_cms/version.rb +1 -1
- metadata +4 -2
|
@@ -103070,6 +103070,90 @@ Original error: ${originalError.name}: ${originalError.message}` : "";
|
|
|
103070
103070
|
}
|
|
103071
103071
|
};
|
|
103072
103072
|
|
|
103073
|
+
// app/javascript/plugins/asset_tags/asset_tag_builder.js
|
|
103074
|
+
var AssetTagBuilder = class extends Plugin {
|
|
103075
|
+
init() {
|
|
103076
|
+
console.log("AssetTagBuilder plugin initialized");
|
|
103077
|
+
this._defineSchema();
|
|
103078
|
+
this._defineConverters();
|
|
103079
|
+
}
|
|
103080
|
+
_defineSchema() {
|
|
103081
|
+
const schema = this.editor.model.schema;
|
|
103082
|
+
schema.register("assetImage", {
|
|
103083
|
+
allowWhere: "$text",
|
|
103084
|
+
isInline: true,
|
|
103085
|
+
isObject: true,
|
|
103086
|
+
allowAttributes: ["id", "size", "alt", "height", "width"]
|
|
103087
|
+
});
|
|
103088
|
+
}
|
|
103089
|
+
_defineConverters() {
|
|
103090
|
+
const conversion = this.editor.conversion;
|
|
103091
|
+
const upcast = conversion.for("upcast");
|
|
103092
|
+
const dataDowncast = conversion.for("dataDowncast");
|
|
103093
|
+
const editingDowncast = conversion.for("editingDowncast");
|
|
103094
|
+
upcast.elementToElement({
|
|
103095
|
+
view: {
|
|
103096
|
+
name: "r:asset:image"
|
|
103097
|
+
},
|
|
103098
|
+
model: (viewElement, { writer }) => {
|
|
103099
|
+
const attrs = {};
|
|
103100
|
+
const id = viewElement.getAttribute("id");
|
|
103101
|
+
const size = viewElement.getAttribute("size");
|
|
103102
|
+
const alt = viewElement.getAttribute("alt");
|
|
103103
|
+
const height = viewElement.getAttribute("height");
|
|
103104
|
+
const width = viewElement.getAttribute("width");
|
|
103105
|
+
if (id) attrs.id = id;
|
|
103106
|
+
if (size) attrs.size = size;
|
|
103107
|
+
if (alt) attrs.alt = alt;
|
|
103108
|
+
if (height) attrs.height = height;
|
|
103109
|
+
if (width) attrs.width = width;
|
|
103110
|
+
return writer.createElement("assetImage", attrs);
|
|
103111
|
+
}
|
|
103112
|
+
});
|
|
103113
|
+
dataDowncast.elementToElement({
|
|
103114
|
+
model: "assetImage",
|
|
103115
|
+
view: (modelElement, { writer }) => {
|
|
103116
|
+
const attrs = {};
|
|
103117
|
+
const id = modelElement.getAttribute("id");
|
|
103118
|
+
const size = modelElement.getAttribute("size");
|
|
103119
|
+
const alt = modelElement.getAttribute("alt");
|
|
103120
|
+
const height = modelElement.getAttribute("height");
|
|
103121
|
+
const width = modelElement.getAttribute("width");
|
|
103122
|
+
if (id) attrs.id = id;
|
|
103123
|
+
if (size) attrs.size = size;
|
|
103124
|
+
if (alt) attrs.alt = alt;
|
|
103125
|
+
if (height) attrs.height = height;
|
|
103126
|
+
if (width) attrs.width = width;
|
|
103127
|
+
return writer.createEmptyElement("r:asset:image", attrs);
|
|
103128
|
+
}
|
|
103129
|
+
});
|
|
103130
|
+
editingDowncast.elementToElement({
|
|
103131
|
+
model: "assetImage",
|
|
103132
|
+
view: (modelElement, { writer }) => {
|
|
103133
|
+
const attrs = {};
|
|
103134
|
+
const id = modelElement.getAttribute("id");
|
|
103135
|
+
const size = modelElement.getAttribute("size");
|
|
103136
|
+
const alt = modelElement.getAttribute("alt");
|
|
103137
|
+
const height = modelElement.getAttribute("height");
|
|
103138
|
+
const width = modelElement.getAttribute("width");
|
|
103139
|
+
if (id) attrs.id = id;
|
|
103140
|
+
if (size) attrs.size = size;
|
|
103141
|
+
if (alt) attrs.alt = alt;
|
|
103142
|
+
if (height) attrs.height = height;
|
|
103143
|
+
if (width) attrs.width = width;
|
|
103144
|
+
return writer.createContainerElement("r:asset:image", attrs);
|
|
103145
|
+
}
|
|
103146
|
+
});
|
|
103147
|
+
}
|
|
103148
|
+
};
|
|
103149
|
+
|
|
103150
|
+
// app/javascript/plugins/asset_tags/asset_tags.js
|
|
103151
|
+
var AssetTags = class extends Plugin {
|
|
103152
|
+
static get requires() {
|
|
103153
|
+
return [AssetTagBuilder];
|
|
103154
|
+
}
|
|
103155
|
+
};
|
|
103156
|
+
|
|
103073
103157
|
// app/javascript/trusty_cms/ckeditor5.js
|
|
103074
103158
|
var defaultStyleDefinitions = [
|
|
103075
103159
|
{
|
|
@@ -103164,6 +103248,7 @@ Original error: ${originalError.name}: ${originalError.message}` : "";
|
|
|
103164
103248
|
},
|
|
103165
103249
|
plugins: [
|
|
103166
103250
|
Alignment,
|
|
103251
|
+
AssetTags,
|
|
103167
103252
|
Autoformat,
|
|
103168
103253
|
AutoImage,
|
|
103169
103254
|
AutoLink,
|
|
@@ -103372,19 +103457,13 @@ Original error: ${originalError.name}: ${originalError.message}` : "";
|
|
|
103372
103457
|
/*! Bundled license information:
|
|
103373
103458
|
|
|
103374
103459
|
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103375
|
-
(**
|
|
103376
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103377
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103378
|
-
*)
|
|
103379
|
-
(* istanbul ignore next -- @preserve *)
|
|
103380
|
-
|
|
103381
|
-
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103382
|
-
(**
|
|
103383
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103384
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103385
|
-
*)
|
|
103386
|
-
|
|
103387
103460
|
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103461
|
+
@ckeditor/ckeditor5-core/dist/index.js:
|
|
103462
|
+
@ckeditor/ckeditor5-autosave/dist/index.js:
|
|
103463
|
+
@ckeditor/ckeditor5-clipboard/dist/index.js:
|
|
103464
|
+
@ckeditor/ckeditor5-find-and-replace/dist/index.js:
|
|
103465
|
+
@ckeditor/ckeditor5-list/dist/index.js:
|
|
103466
|
+
@ckeditor/ckeditor5-style/dist/index.js:
|
|
103388
103467
|
(**
|
|
103389
103468
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103390
103469
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
@@ -103392,451 +103471,125 @@ Original error: ${originalError.name}: ${originalError.message}` : "";
|
|
|
103392
103471
|
(* istanbul ignore next -- @preserve *)
|
|
103393
103472
|
|
|
103394
103473
|
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103395
|
-
(**
|
|
103396
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103397
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103398
|
-
*)
|
|
103399
|
-
|
|
103400
103474
|
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103401
|
-
(**
|
|
103402
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103403
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103404
|
-
*)
|
|
103405
|
-
|
|
103406
103475
|
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103407
|
-
(**
|
|
103408
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103409
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103410
|
-
*)
|
|
103411
|
-
|
|
103412
103476
|
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103413
|
-
(**
|
|
103414
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103415
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103416
|
-
*)
|
|
103417
|
-
(* istanbul ignore else -- @preserve *)
|
|
103418
|
-
|
|
103419
103477
|
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103420
|
-
(**
|
|
103421
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103422
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103423
|
-
*)
|
|
103424
|
-
|
|
103425
103478
|
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103426
|
-
(**
|
|
103427
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103428
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103429
|
-
*)
|
|
103430
|
-
|
|
103431
103479
|
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103432
|
-
(**
|
|
103433
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103434
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103435
|
-
*)
|
|
103436
|
-
|
|
103437
103480
|
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103438
|
-
(**
|
|
103439
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103440
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103441
|
-
*)
|
|
103442
|
-
|
|
103443
103481
|
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103444
|
-
(**
|
|
103445
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103446
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103447
|
-
*)
|
|
103448
|
-
|
|
103449
103482
|
@ckeditor/ckeditor5-engine/dist/index.js:
|
|
103450
|
-
(**
|
|
103451
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103452
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103453
|
-
*)
|
|
103454
|
-
|
|
103455
|
-
@ckeditor/ckeditor5-engine/dist/index.js:
|
|
103456
|
-
(**
|
|
103457
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103458
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103459
|
-
*)
|
|
103460
|
-
(* istanbul ignore next -- @preserve *)
|
|
103461
|
-
(* istanbul ignore else: This is always true because otherwise it would not register a reducer callback. -- @preserve *)
|
|
103462
|
-
(* istanbul ignore else -- @preserve *)
|
|
103463
|
-
(* istanbul ignore if -- @preserve *)
|
|
103464
|
-
|
|
103465
103483
|
@ckeditor/ckeditor5-watchdog/dist/index.js:
|
|
103466
|
-
(**
|
|
103467
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103468
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103469
|
-
*)
|
|
103470
|
-
|
|
103471
|
-
@ckeditor/ckeditor5-core/dist/index.js:
|
|
103472
|
-
(**
|
|
103473
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103474
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103475
|
-
*)
|
|
103476
|
-
(* istanbul ignore next -- @preserve *)
|
|
103477
|
-
|
|
103478
103484
|
@ckeditor/ckeditor5-upload/dist/index.js:
|
|
103479
|
-
(**
|
|
103480
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103481
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103482
|
-
*)
|
|
103483
|
-
|
|
103484
|
-
@ckeditor/ckeditor5-upload/dist/index.js:
|
|
103485
|
-
(* istanbul ignore else -- @preserve *)
|
|
103486
|
-
|
|
103487
103485
|
@ckeditor/ckeditor5-adapter-ckfinder/dist/index.js:
|
|
103488
|
-
(**
|
|
103489
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103490
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103491
|
-
*)
|
|
103492
|
-
|
|
103493
103486
|
@ckeditor/ckeditor5-icons/dist/index.js:
|
|
103494
|
-
(**
|
|
103495
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103496
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103497
|
-
*)
|
|
103498
|
-
|
|
103499
103487
|
@ckeditor/ckeditor5-ui/dist/index.js:
|
|
103500
|
-
(**
|
|
103501
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103502
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103503
|
-
*)
|
|
103504
|
-
|
|
103505
103488
|
@ckeditor/ckeditor5-ui/dist/index.js:
|
|
103506
|
-
(**
|
|
103507
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103508
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103509
|
-
*)
|
|
103510
|
-
|
|
103511
103489
|
@ckeditor/ckeditor5-ui/dist/index.js:
|
|
103512
|
-
(**
|
|
103513
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103514
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103515
|
-
*)
|
|
103516
|
-
|
|
103517
103490
|
@ckeditor/ckeditor5-ui/dist/index.js:
|
|
103518
|
-
(* istanbul ignore next -- @preserve *)
|
|
103519
|
-
|
|
103520
|
-
@ckeditor/ckeditor5-ui/dist/index.js:
|
|
103521
|
-
(**
|
|
103522
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103523
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103524
|
-
*)
|
|
103525
|
-
|
|
103526
103491
|
@ckeditor/ckeditor5-alignment/dist/index.js:
|
|
103527
|
-
(**
|
|
103528
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103529
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103530
|
-
*)
|
|
103531
|
-
|
|
103532
103492
|
@ckeditor/ckeditor5-typing/dist/index.js:
|
|
103533
|
-
(**
|
|
103534
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103535
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103536
|
-
*)
|
|
103537
|
-
|
|
103538
103493
|
@ckeditor/ckeditor5-autoformat/dist/index.js:
|
|
103539
|
-
(**
|
|
103540
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103541
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103542
|
-
*)
|
|
103543
|
-
|
|
103544
|
-
@ckeditor/ckeditor5-autosave/dist/index.js:
|
|
103545
|
-
(**
|
|
103546
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103547
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103548
|
-
*)
|
|
103549
|
-
(* istanbul ignore next -- @preserve *)
|
|
103550
|
-
|
|
103551
103494
|
@ckeditor/ckeditor5-basic-styles/dist/index.js:
|
|
103552
|
-
(**
|
|
103553
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103554
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103555
|
-
*)
|
|
103556
|
-
|
|
103557
103495
|
@ckeditor/ckeditor5-enter/dist/index.js:
|
|
103558
|
-
(**
|
|
103559
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103560
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103561
|
-
*)
|
|
103562
|
-
|
|
103563
103496
|
@ckeditor/ckeditor5-block-quote/dist/index.js:
|
|
103564
|
-
(**
|
|
103565
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103566
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103567
|
-
*)
|
|
103568
|
-
|
|
103569
|
-
@ckeditor/ckeditor5-widget/dist/index.js:
|
|
103570
|
-
(**
|
|
103571
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103572
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103573
|
-
*)
|
|
103574
|
-
|
|
103575
103497
|
@ckeditor/ckeditor5-widget/dist/index.js:
|
|
103576
|
-
(* istanbul ignore next -- @preserve *)
|
|
103577
|
-
|
|
103578
103498
|
@ckeditor/ckeditor5-bookmark/dist/index.js:
|
|
103579
|
-
(**
|
|
103580
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103581
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103582
|
-
*)
|
|
103583
|
-
|
|
103584
103499
|
@ckeditor/ckeditor5-ckbox/dist/index.js:
|
|
103585
|
-
(**
|
|
103586
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103587
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103588
|
-
*)
|
|
103589
|
-
|
|
103590
103500
|
@ckeditor/ckeditor5-ckfinder/dist/index.js:
|
|
103591
|
-
(**
|
|
103592
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103593
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103594
|
-
*)
|
|
103595
|
-
|
|
103596
|
-
@ckeditor/ckeditor5-clipboard/dist/index.js:
|
|
103597
|
-
(**
|
|
103598
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103599
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103600
|
-
*)
|
|
103601
|
-
(* istanbul ignore next -- @preserve *)
|
|
103602
|
-
|
|
103603
103501
|
@ckeditor/ckeditor5-cloud-services/dist/index.js:
|
|
103604
|
-
(**
|
|
103605
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103606
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103607
|
-
*)
|
|
103608
|
-
|
|
103609
103502
|
@ckeditor/ckeditor5-code-block/dist/index.js:
|
|
103610
|
-
(**
|
|
103611
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103612
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103613
|
-
*)
|
|
103614
|
-
|
|
103615
103503
|
@ckeditor/ckeditor5-easy-image/dist/index.js:
|
|
103616
|
-
(**
|
|
103617
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103618
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103619
|
-
*)
|
|
103620
|
-
|
|
103621
103504
|
@ckeditor/ckeditor5-editor-balloon/dist/index.js:
|
|
103622
|
-
(**
|
|
103623
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103624
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103625
|
-
*)
|
|
103626
|
-
|
|
103627
103505
|
@ckeditor/ckeditor5-editor-classic/dist/index.js:
|
|
103628
|
-
(**
|
|
103629
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103630
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103631
|
-
*)
|
|
103632
|
-
|
|
103633
103506
|
@ckeditor/ckeditor5-editor-decoupled/dist/index.js:
|
|
103634
|
-
(**
|
|
103635
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103636
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103637
|
-
*)
|
|
103638
|
-
|
|
103639
103507
|
@ckeditor/ckeditor5-editor-inline/dist/index.js:
|
|
103640
|
-
(**
|
|
103641
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103642
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103643
|
-
*)
|
|
103644
|
-
|
|
103645
103508
|
@ckeditor/ckeditor5-editor-multi-root/dist/index.js:
|
|
103646
|
-
(**
|
|
103647
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103648
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103649
|
-
*)
|
|
103650
|
-
|
|
103651
103509
|
@ckeditor/ckeditor5-select-all/dist/index.js:
|
|
103652
|
-
(**
|
|
103653
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103654
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103655
|
-
*)
|
|
103656
|
-
|
|
103657
103510
|
@ckeditor/ckeditor5-undo/dist/index.js:
|
|
103658
|
-
(**
|
|
103659
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103660
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103661
|
-
*)
|
|
103662
|
-
|
|
103663
103511
|
@ckeditor/ckeditor5-essentials/dist/index.js:
|
|
103664
|
-
(**
|
|
103665
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103666
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103667
|
-
*)
|
|
103668
|
-
|
|
103669
|
-
@ckeditor/ckeditor5-find-and-replace/dist/index.js:
|
|
103670
|
-
(**
|
|
103671
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103672
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103673
|
-
*)
|
|
103674
|
-
(* istanbul ignore next -- @preserve *)
|
|
103675
|
-
|
|
103676
103512
|
@ckeditor/ckeditor5-font/dist/index.js:
|
|
103677
|
-
(**
|
|
103678
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103679
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103680
|
-
*)
|
|
103681
|
-
|
|
103682
|
-
@ckeditor/ckeditor5-fullscreen/dist/index.js:
|
|
103683
|
-
(**
|
|
103684
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103685
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103686
|
-
*)
|
|
103687
|
-
(* istanbul ignore if -- @preserve *)
|
|
103688
|
-
(* istanbul ignore next -- @preserve *)
|
|
103689
|
-
|
|
103690
103513
|
@ckeditor/ckeditor5-paragraph/dist/index.js:
|
|
103691
|
-
(**
|
|
103692
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103693
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103694
|
-
*)
|
|
103695
|
-
|
|
103696
103514
|
@ckeditor/ckeditor5-heading/dist/index.js:
|
|
103697
|
-
(**
|
|
103698
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103699
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103700
|
-
*)
|
|
103701
|
-
|
|
103702
103515
|
@ckeditor/ckeditor5-highlight/dist/index.js:
|
|
103703
|
-
(**
|
|
103704
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103705
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103706
|
-
*)
|
|
103707
|
-
|
|
103708
103516
|
@ckeditor/ckeditor5-horizontal-line/dist/index.js:
|
|
103709
|
-
(**
|
|
103710
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103711
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103712
|
-
*)
|
|
103713
|
-
|
|
103714
103517
|
@ckeditor/ckeditor5-html-embed/dist/index.js:
|
|
103715
|
-
(**
|
|
103716
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103717
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103718
|
-
*)
|
|
103719
|
-
|
|
103720
|
-
@ckeditor/ckeditor5-html-support/dist/index.js:
|
|
103721
|
-
(**
|
|
103722
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103723
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103724
|
-
*)
|
|
103725
|
-
(* istanbul ignore next: paranoid check -- @preserve *)
|
|
103726
|
-
|
|
103727
|
-
@ckeditor/ckeditor5-image/dist/index.js:
|
|
103728
|
-
(**
|
|
103729
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103730
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103731
|
-
*)
|
|
103732
|
-
|
|
103733
103518
|
@ckeditor/ckeditor5-image/dist/index.js:
|
|
103734
|
-
(* istanbul ignore if: paranoid check -- @preserve *)
|
|
103735
|
-
(* istanbul ignore next -- @preserve *)
|
|
103736
|
-
(**
|
|
103737
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103738
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103739
|
-
*)
|
|
103740
|
-
|
|
103741
103519
|
@ckeditor/ckeditor5-indent/dist/index.js:
|
|
103742
|
-
(**
|
|
103743
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103744
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103745
|
-
*)
|
|
103746
|
-
|
|
103747
103520
|
@ckeditor/ckeditor5-language/dist/index.js:
|
|
103748
|
-
(**
|
|
103749
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103750
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103751
|
-
*)
|
|
103752
|
-
|
|
103753
103521
|
@ckeditor/ckeditor5-link/dist/index.js:
|
|
103754
|
-
(**
|
|
103755
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103756
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103757
|
-
*)
|
|
103758
|
-
|
|
103759
|
-
@ckeditor/ckeditor5-list/dist/index.js:
|
|
103760
|
-
(**
|
|
103761
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103762
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103763
|
-
*)
|
|
103764
|
-
(* istanbul ignore next -- @preserve *)
|
|
103765
|
-
|
|
103766
103522
|
@ckeditor/ckeditor5-media-embed/dist/index.js:
|
|
103767
|
-
(**
|
|
103768
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103769
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103770
|
-
*)
|
|
103771
|
-
|
|
103772
103523
|
@ckeditor/ckeditor5-mention/dist/index.js:
|
|
103773
|
-
(**
|
|
103774
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103775
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103776
|
-
*)
|
|
103777
|
-
|
|
103778
103524
|
@ckeditor/ckeditor5-minimap/dist/index.js:
|
|
103779
|
-
(**
|
|
103780
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103781
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103782
|
-
*)
|
|
103783
|
-
|
|
103784
103525
|
@ckeditor/ckeditor5-page-break/dist/index.js:
|
|
103526
|
+
@ckeditor/ckeditor5-remove-format/dist/index.js:
|
|
103527
|
+
@ckeditor/ckeditor5-restricted-editing/dist/index.js:
|
|
103528
|
+
@ckeditor/ckeditor5-restricted-editing/dist/index.js:
|
|
103529
|
+
@ckeditor/ckeditor5-show-blocks/dist/index.js:
|
|
103530
|
+
@ckeditor/ckeditor5-source-editing/dist/index.js:
|
|
103531
|
+
@ckeditor/ckeditor5-special-characters/dist/index.js:
|
|
103532
|
+
@ckeditor/ckeditor5-word-count/dist/index.js:
|
|
103533
|
+
ckeditor5/dist/ckeditor5.js:
|
|
103785
103534
|
(**
|
|
103786
103535
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103787
103536
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103788
103537
|
*)
|
|
103789
103538
|
|
|
103790
|
-
@ckeditor/ckeditor5-
|
|
103539
|
+
@ckeditor/ckeditor5-utils/dist/index.js:
|
|
103791
103540
|
(**
|
|
103792
103541
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103793
103542
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103794
103543
|
*)
|
|
103795
|
-
(* istanbul ignore next -- @preserve *)
|
|
103796
103544
|
(* istanbul ignore else -- @preserve *)
|
|
103797
103545
|
|
|
103798
|
-
@ckeditor/ckeditor5-
|
|
103546
|
+
@ckeditor/ckeditor5-engine/dist/index.js:
|
|
103799
103547
|
(**
|
|
103800
103548
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103801
103549
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103802
103550
|
*)
|
|
103551
|
+
(* istanbul ignore next -- @preserve *)
|
|
103552
|
+
(* istanbul ignore else: This is always true because otherwise it would not register a reducer callback. -- @preserve *)
|
|
103553
|
+
(* istanbul ignore else -- @preserve *)
|
|
103554
|
+
(* istanbul ignore if -- @preserve *)
|
|
103803
103555
|
|
|
103804
|
-
@ckeditor/ckeditor5-
|
|
103805
|
-
(
|
|
103806
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103807
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103808
|
-
*)
|
|
103556
|
+
@ckeditor/ckeditor5-upload/dist/index.js:
|
|
103557
|
+
(* istanbul ignore else -- @preserve *)
|
|
103809
103558
|
|
|
103810
|
-
@ckeditor/ckeditor5-
|
|
103811
|
-
|
|
103812
|
-
|
|
103813
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103814
|
-
*)
|
|
103559
|
+
@ckeditor/ckeditor5-ui/dist/index.js:
|
|
103560
|
+
@ckeditor/ckeditor5-widget/dist/index.js:
|
|
103561
|
+
(* istanbul ignore next -- @preserve *)
|
|
103815
103562
|
|
|
103816
|
-
@ckeditor/ckeditor5-
|
|
103563
|
+
@ckeditor/ckeditor5-fullscreen/dist/index.js:
|
|
103817
103564
|
(**
|
|
103818
103565
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103819
103566
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103820
103567
|
*)
|
|
103568
|
+
(* istanbul ignore if -- @preserve *)
|
|
103569
|
+
(* istanbul ignore next -- @preserve *)
|
|
103821
103570
|
|
|
103822
|
-
@ckeditor/ckeditor5-
|
|
103571
|
+
@ckeditor/ckeditor5-html-support/dist/index.js:
|
|
103823
103572
|
(**
|
|
103824
103573
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103825
103574
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103826
103575
|
*)
|
|
103576
|
+
(* istanbul ignore next: paranoid check -- @preserve *)
|
|
103827
103577
|
|
|
103828
|
-
@ckeditor/ckeditor5-
|
|
103578
|
+
@ckeditor/ckeditor5-image/dist/index.js:
|
|
103579
|
+
(* istanbul ignore if: paranoid check -- @preserve *)
|
|
103580
|
+
(* istanbul ignore next -- @preserve *)
|
|
103829
103581
|
(**
|
|
103830
103582
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103831
103583
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103832
103584
|
*)
|
|
103833
103585
|
|
|
103834
|
-
@ckeditor/ckeditor5-
|
|
103586
|
+
@ckeditor/ckeditor5-paste-from-office/dist/index.js:
|
|
103835
103587
|
(**
|
|
103836
103588
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103837
103589
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103838
103590
|
*)
|
|
103839
103591
|
(* istanbul ignore next -- @preserve *)
|
|
103592
|
+
(* istanbul ignore else -- @preserve *)
|
|
103840
103593
|
|
|
103841
103594
|
@ckeditor/ckeditor5-table/dist/index.js:
|
|
103842
103595
|
(**
|
|
@@ -103845,17 +103598,5 @@ Original error: ${originalError.name}: ${originalError.message}` : "";
|
|
|
103845
103598
|
*)
|
|
103846
103599
|
(* istanbul ignore next -- @preserve *)
|
|
103847
103600
|
(* istanbul ignore if: paranoid check -- @preserve *)
|
|
103848
|
-
|
|
103849
|
-
@ckeditor/ckeditor5-word-count/dist/index.js:
|
|
103850
|
-
(**
|
|
103851
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103852
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103853
|
-
*)
|
|
103854
|
-
|
|
103855
|
-
ckeditor5/dist/ckeditor5.js:
|
|
103856
|
-
(**
|
|
103857
|
-
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
103858
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
103859
|
-
*)
|
|
103860
103601
|
*/
|
|
103861
103602
|
//# sourceMappingURL=/assets/ckeditor5.js.map
|