trusty-cms 7.0.41 → 7.0.42

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.
@@ -103070,6 +103070,78 @@ 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"]
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
+ if (id) attrs.id = id;
103104
+ if (size) attrs.size = size;
103105
+ if (alt) attrs.alt = alt;
103106
+ return writer.createElement("assetImage", attrs);
103107
+ }
103108
+ });
103109
+ dataDowncast.elementToElement({
103110
+ model: "assetImage",
103111
+ view: (modelElement, { writer }) => {
103112
+ const attrs = {};
103113
+ const id = modelElement.getAttribute("id");
103114
+ const size = modelElement.getAttribute("size");
103115
+ const alt = modelElement.getAttribute("alt");
103116
+ if (id) attrs.id = id;
103117
+ if (size) attrs.size = size;
103118
+ if (alt) attrs.alt = alt;
103119
+ return writer.createEmptyElement("r:asset:image", attrs);
103120
+ }
103121
+ });
103122
+ editingDowncast.elementToElement({
103123
+ model: "assetImage",
103124
+ view: (modelElement, { writer }) => {
103125
+ const attrs = {};
103126
+ const id = modelElement.getAttribute("id");
103127
+ const size = modelElement.getAttribute("size");
103128
+ const alt = modelElement.getAttribute("alt");
103129
+ if (id) attrs.id = id;
103130
+ if (size) attrs.size = size;
103131
+ if (alt) attrs.alt = alt;
103132
+ return writer.createContainerElement("r:asset:image", attrs);
103133
+ }
103134
+ });
103135
+ }
103136
+ };
103137
+
103138
+ // app/javascript/plugins/asset_tags/asset_tags.js
103139
+ var AssetTags = class extends Plugin {
103140
+ static get requires() {
103141
+ return [AssetTagBuilder];
103142
+ }
103143
+ };
103144
+
103073
103145
  // app/javascript/trusty_cms/ckeditor5.js
103074
103146
  var defaultStyleDefinitions = [
103075
103147
  {
@@ -103164,6 +103236,7 @@ Original error: ${originalError.name}: ${originalError.message}` : "";
103164
103236
  },
103165
103237
  plugins: [
103166
103238
  Alignment,
103239
+ AssetTags,
103167
103240
  Autoformat,
103168
103241
  AutoImage,
103169
103242
  AutoLink,
@@ -103372,19 +103445,13 @@ Original error: ${originalError.name}: ${originalError.message}` : "";
103372
103445
  /*! Bundled license information:
103373
103446
 
103374
103447
  @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
103448
  @ckeditor/ckeditor5-utils/dist/index.js:
103449
+ @ckeditor/ckeditor5-core/dist/index.js:
103450
+ @ckeditor/ckeditor5-autosave/dist/index.js:
103451
+ @ckeditor/ckeditor5-clipboard/dist/index.js:
103452
+ @ckeditor/ckeditor5-find-and-replace/dist/index.js:
103453
+ @ckeditor/ckeditor5-list/dist/index.js:
103454
+ @ckeditor/ckeditor5-style/dist/index.js:
103388
103455
  (**
103389
103456
  * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
103390
103457
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
@@ -103392,451 +103459,125 @@ Original error: ${originalError.name}: ${originalError.message}` : "";
103392
103459
  (* istanbul ignore next -- @preserve *)
103393
103460
 
103394
103461
  @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
103462
  @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
103463
  @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
103464
  @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
103465
  @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
103466
  @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
103467
  @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
103468
  @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
103469
  @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
103470
  @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
103471
  @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
103472
  @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
103473
  @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
103474
  @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
103475
  @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
103476
  @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
103477
  @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
103478
  @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
103479
  @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
103480
  @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
103481
  @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
103482
  @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
103483
  @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
103484
  @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
103485
  @ckeditor/ckeditor5-widget/dist/index.js:
103576
- (* istanbul ignore next -- @preserve *)
103577
-
103578
103486
  @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
103487
  @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
103488
  @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
103489
  @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
103490
  @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
103491
  @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
103492
  @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
103493
  @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
103494
  @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
103495
  @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
103496
  @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
103497
  @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
103498
  @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
103499
  @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
103500
  @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
103501
  @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
103502
  @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
103503
  @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
103504
  @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
103505
  @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
103506
  @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
103507
  @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
103508
  @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
103509
  @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
103510
  @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
103511
  @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
103512
  @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
103513
  @ckeditor/ckeditor5-page-break/dist/index.js:
103514
+ @ckeditor/ckeditor5-remove-format/dist/index.js:
103515
+ @ckeditor/ckeditor5-restricted-editing/dist/index.js:
103516
+ @ckeditor/ckeditor5-restricted-editing/dist/index.js:
103517
+ @ckeditor/ckeditor5-show-blocks/dist/index.js:
103518
+ @ckeditor/ckeditor5-source-editing/dist/index.js:
103519
+ @ckeditor/ckeditor5-special-characters/dist/index.js:
103520
+ @ckeditor/ckeditor5-word-count/dist/index.js:
103521
+ ckeditor5/dist/ckeditor5.js:
103785
103522
  (**
103786
103523
  * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
103787
103524
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
103788
103525
  *)
103789
103526
 
103790
- @ckeditor/ckeditor5-paste-from-office/dist/index.js:
103527
+ @ckeditor/ckeditor5-utils/dist/index.js:
103791
103528
  (**
103792
103529
  * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
103793
103530
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
103794
103531
  *)
103795
- (* istanbul ignore next -- @preserve *)
103796
103532
  (* istanbul ignore else -- @preserve *)
103797
103533
 
103798
- @ckeditor/ckeditor5-remove-format/dist/index.js:
103534
+ @ckeditor/ckeditor5-engine/dist/index.js:
103799
103535
  (**
103800
103536
  * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
103801
103537
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
103802
103538
  *)
103539
+ (* istanbul ignore next -- @preserve *)
103540
+ (* istanbul ignore else: This is always true because otherwise it would not register a reducer callback. -- @preserve *)
103541
+ (* istanbul ignore else -- @preserve *)
103542
+ (* istanbul ignore if -- @preserve *)
103803
103543
 
103804
- @ckeditor/ckeditor5-restricted-editing/dist/index.js:
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
- *)
103544
+ @ckeditor/ckeditor5-upload/dist/index.js:
103545
+ (* istanbul ignore else -- @preserve *)
103809
103546
 
103810
- @ckeditor/ckeditor5-restricted-editing/dist/index.js:
103811
- (**
103812
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
103813
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
103814
- *)
103547
+ @ckeditor/ckeditor5-ui/dist/index.js:
103548
+ @ckeditor/ckeditor5-widget/dist/index.js:
103549
+ (* istanbul ignore next -- @preserve *)
103815
103550
 
103816
- @ckeditor/ckeditor5-show-blocks/dist/index.js:
103551
+ @ckeditor/ckeditor5-fullscreen/dist/index.js:
103817
103552
  (**
103818
103553
  * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
103819
103554
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
103820
103555
  *)
103556
+ (* istanbul ignore if -- @preserve *)
103557
+ (* istanbul ignore next -- @preserve *)
103821
103558
 
103822
- @ckeditor/ckeditor5-source-editing/dist/index.js:
103559
+ @ckeditor/ckeditor5-html-support/dist/index.js:
103823
103560
  (**
103824
103561
  * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
103825
103562
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
103826
103563
  *)
103564
+ (* istanbul ignore next: paranoid check -- @preserve *)
103827
103565
 
103828
- @ckeditor/ckeditor5-special-characters/dist/index.js:
103566
+ @ckeditor/ckeditor5-image/dist/index.js:
103567
+ (* istanbul ignore if: paranoid check -- @preserve *)
103568
+ (* istanbul ignore next -- @preserve *)
103829
103569
  (**
103830
103570
  * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
103831
103571
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
103832
103572
  *)
103833
103573
 
103834
- @ckeditor/ckeditor5-style/dist/index.js:
103574
+ @ckeditor/ckeditor5-paste-from-office/dist/index.js:
103835
103575
  (**
103836
103576
  * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
103837
103577
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
103838
103578
  *)
103839
103579
  (* istanbul ignore next -- @preserve *)
103580
+ (* istanbul ignore else -- @preserve *)
103840
103581
 
103841
103582
  @ckeditor/ckeditor5-table/dist/index.js:
103842
103583
  (**
@@ -103845,17 +103586,5 @@ Original error: ${originalError.name}: ${originalError.message}` : "";
103845
103586
  *)
103846
103587
  (* istanbul ignore next -- @preserve *)
103847
103588
  (* 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
103589
  */
103861
103590
  //# sourceMappingURL=/assets/ckeditor5.js.map