@ckeditor/ckeditor5-html-support 48.2.0 → 48.3.0-alpha.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.
@@ -1,27 +1,27 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
5
- import { Plugin } from '@ckeditor/ckeditor5-core';
6
- import { DataFilter } from '../datafilter.js';
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
6
+ import { DataFilter } from "../datafilter.js";
7
7
  /**
8
- * Provides the General HTML Support integration with {@link module:code-block/codeblock~CodeBlock Code Block} feature.
9
- */
8
+ * Provides the General HTML Support integration with {@link module:code-block/codeblock~CodeBlock Code Block} feature.
9
+ */
10
10
  export declare class CodeBlockElementSupport extends Plugin {
11
- /**
12
- * @inheritDoc
13
- */
14
- static get requires(): readonly [typeof DataFilter];
15
- /**
16
- * @inheritDoc
17
- */
18
- static get pluginName(): "CodeBlockElementSupport";
19
- /**
20
- * @inheritDoc
21
- */
22
- static get isOfficialPlugin(): true;
23
- /**
24
- * @inheritDoc
25
- */
26
- init(): void;
11
+ /**
12
+ * @inheritDoc
13
+ */
14
+ static get requires(): PluginDependenciesOf<[DataFilter]>;
15
+ /**
16
+ * @inheritDoc
17
+ */
18
+ static get pluginName(): "CodeBlockElementSupport";
19
+ /**
20
+ * @inheritDoc
21
+ */
22
+ static override get isOfficialPlugin(): true;
23
+ /**
24
+ * @inheritDoc
25
+ */
26
+ init(): void;
27
27
  }
@@ -1,31 +1,31 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module html-support/integrations/customelement
7
- */
8
- import { Plugin } from '@ckeditor/ckeditor5-core';
9
- import { DataSchema } from '../dataschema.js';
10
- import { DataFilter } from '../datafilter.js';
6
+ * @module html-support/integrations/customelement
7
+ */
8
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
9
+ import { DataSchema } from "../dataschema.js";
10
+ import { DataFilter } from "../datafilter.js";
11
11
  /**
12
- * Provides the General HTML Support for custom elements (not registered in the {@link module:html-support/dataschema~DataSchema}).
13
- */
12
+ * Provides the General HTML Support for custom elements (not registered in the {@link module:html-support/dataschema~DataSchema}).
13
+ */
14
14
  export declare class CustomElementSupport extends Plugin {
15
- /**
16
- * @inheritDoc
17
- */
18
- static get requires(): readonly [typeof DataFilter, typeof DataSchema];
19
- /**
20
- * @inheritDoc
21
- */
22
- static get pluginName(): "CustomElementSupport";
23
- /**
24
- * @inheritDoc
25
- */
26
- static get isOfficialPlugin(): true;
27
- /**
28
- * @inheritDoc
29
- */
30
- init(): void;
15
+ /**
16
+ * @inheritDoc
17
+ */
18
+ static get requires(): PluginDependenciesOf<[DataFilter, DataSchema]>;
19
+ /**
20
+ * @inheritDoc
21
+ */
22
+ static get pluginName(): "CustomElementSupport";
23
+ /**
24
+ * @inheritDoc
25
+ */
26
+ static override get isOfficialPlugin(): true;
27
+ /**
28
+ * @inheritDoc
29
+ */
30
+ init(): void;
31
31
  }
@@ -1,50 +1,50 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
5
- import { Plugin } from '@ckeditor/ckeditor5-core';
6
- import { DataFilter } from '../datafilter.js';
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
6
+ import { DataFilter } from "../datafilter.js";
7
7
  /**
8
- * Provides the General HTML Support integration for elements which can behave like sectioning element (e.g. article) or
9
- * element accepting only inline content (e.g. paragraph).
10
- *
11
- * The distinction between this two content models is important for choosing correct schema model and proper content conversion.
12
- * As an example, it ensures that:
13
- *
14
- * * children elements paragraphing is enabled for sectioning elements only,
15
- * * element and its content can be correctly handled by editing view (splitting and merging elements),
16
- * * model element HTML is semantically correct and easier to work with.
17
- *
18
- * If element contains any block element, it will be treated as a sectioning element and registered using
19
- * {@link module:html-support/dataschema~HtmlSupportDataSchemaDefinition#model} and
20
- * {@link module:html-support/dataschema~HtmlSupportDataSchemaDefinition#modelSchema} in editor schema.
21
- * Otherwise, it will be registered under
22
- * {@link module:html-support/dataschema~HtmlSupportDataSchemaBlockElementDefinition#paragraphLikeModel} model
23
- * name with model schema accepting only inline content (inheriting from `$block`).
24
- */
8
+ * Provides the General HTML Support integration for elements which can behave like sectioning element (e.g. article) or
9
+ * element accepting only inline content (e.g. paragraph).
10
+ *
11
+ * The distinction between this two content models is important for choosing correct schema model and proper content conversion.
12
+ * As an example, it ensures that:
13
+ *
14
+ * * children elements paragraphing is enabled for sectioning elements only,
15
+ * * element and its content can be correctly handled by editing view (splitting and merging elements),
16
+ * * model element HTML is semantically correct and easier to work with.
17
+ *
18
+ * If element contains any block element, it will be treated as a sectioning element and registered using
19
+ * {@link module:html-support/dataschema~HtmlSupportDataSchemaDefinition#model} and
20
+ * {@link module:html-support/dataschema~HtmlSupportDataSchemaDefinition#modelSchema} in editor schema.
21
+ * Otherwise, it will be registered under
22
+ * {@link module:html-support/dataschema~HtmlSupportDataSchemaBlockElementDefinition#paragraphLikeModel} model
23
+ * name with model schema accepting only inline content (inheriting from `$block`).
24
+ */
25
25
  export declare class DualContentModelElementSupport extends Plugin {
26
- /**
27
- * @inheritDoc
28
- */
29
- static get requires(): readonly [typeof DataFilter];
30
- /**
31
- * @inheritDoc
32
- */
33
- static get pluginName(): "DualContentModelElementSupport";
34
- /**
35
- * @inheritDoc
36
- */
37
- static get isOfficialPlugin(): true;
38
- /**
39
- * @inheritDoc
40
- */
41
- init(): void;
42
- /**
43
- * Checks whether the given view element includes any other block element.
44
- */
45
- private _hasBlockContent;
46
- /**
47
- * Adds attribute filtering conversion for the given data schema.
48
- */
49
- private _addAttributeConversion;
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ static get requires(): PluginDependenciesOf<[DataFilter]>;
30
+ /**
31
+ * @inheritDoc
32
+ */
33
+ static get pluginName(): "DualContentModelElementSupport";
34
+ /**
35
+ * @inheritDoc
36
+ */
37
+ static override get isOfficialPlugin(): true;
38
+ /**
39
+ * @inheritDoc
40
+ */
41
+ init(): void;
42
+ /**
43
+ * Checks whether the given view element includes any other block element.
44
+ */
45
+ private _hasBlockContent;
46
+ /**
47
+ * Adds attribute filtering conversion for the given data schema.
48
+ */
49
+ private _addAttributeConversion;
50
50
  }
@@ -1,35 +1,35 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module html-support/integrations/heading
7
- */
8
- import { Plugin } from '@ckeditor/ckeditor5-core';
9
- import { Enter } from '@ckeditor/ckeditor5-enter';
10
- import { DataSchema } from '../dataschema.js';
6
+ * @module html-support/integrations/heading
7
+ */
8
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
9
+ import { Enter } from "@ckeditor/ckeditor5-enter";
10
+ import { DataSchema } from "../dataschema.js";
11
11
  /**
12
- * Provides the General HTML Support integration with {@link module:heading/heading~Heading Heading} feature.
13
- */
12
+ * Provides the General HTML Support integration with {@link module:heading/heading~Heading Heading} feature.
13
+ */
14
14
  export declare class HeadingElementSupport extends Plugin {
15
- /**
16
- * @inheritDoc
17
- */
18
- static get requires(): readonly [typeof DataSchema, typeof Enter];
19
- /**
20
- * @inheritDoc
21
- */
22
- static get pluginName(): "HeadingElementSupport";
23
- /**
24
- * @inheritDoc
25
- */
26
- static get isOfficialPlugin(): true;
27
- /**
28
- * @inheritDoc
29
- */
30
- init(): void;
31
- /**
32
- * Registers all elements supported by HeadingEditing to enable custom attributes for those elements.
33
- */
34
- private registerHeadingElements;
15
+ /**
16
+ * @inheritDoc
17
+ */
18
+ static get requires(): PluginDependenciesOf<[DataSchema, Enter]>;
19
+ /**
20
+ * @inheritDoc
21
+ */
22
+ static get pluginName(): "HeadingElementSupport";
23
+ /**
24
+ * @inheritDoc
25
+ */
26
+ static override get isOfficialPlugin(): true;
27
+ /**
28
+ * @inheritDoc
29
+ */
30
+ init(): void;
31
+ /**
32
+ * Registers all elements supported by HeadingEditing to enable custom attributes for those elements.
33
+ */
34
+ private registerHeadingElements;
35
35
  }
@@ -1,30 +1,30 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module html-support/integrations/horizontalline
7
- */
8
- import { Plugin } from '@ckeditor/ckeditor5-core';
9
- import { DataFilter } from '../datafilter.js';
6
+ * @module html-support/integrations/horizontalline
7
+ */
8
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
9
+ import { DataFilter } from "../datafilter.js";
10
10
  /**
11
- * Provides the General HTML Support integration with the {@link module:horizontal-line/horizontalline~HorizontalLine} feature.
12
- */
11
+ * Provides the General HTML Support integration with the {@link module:horizontal-line/horizontalline~HorizontalLine} feature.
12
+ */
13
13
  export declare class HorizontalLineElementSupport extends Plugin {
14
- /**
15
- * @inheritDoc
16
- */
17
- static get requires(): readonly [typeof DataFilter];
18
- /**
19
- * @inheritDoc
20
- */
21
- static get pluginName(): "HorizontalLineElementSupport";
22
- /**
23
- * @inheritDoc
24
- */
25
- static get isOfficialPlugin(): true;
26
- /**
27
- * @inheritDoc
28
- */
29
- init(): void;
14
+ /**
15
+ * @inheritDoc
16
+ */
17
+ static get requires(): PluginDependenciesOf<[DataFilter]>;
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ static get pluginName(): "HorizontalLineElementSupport";
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static override get isOfficialPlugin(): true;
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ init(): void;
30
30
  }
@@ -1,31 +1,31 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
5
- import { Plugin } from '@ckeditor/ckeditor5-core';
6
- import { DataFilter } from '../datafilter.js';
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
6
+ import { DataFilter } from "../datafilter.js";
7
7
  /**
8
- * Provides the General HTML Support integration for `iframe` elements with a mandatory sandbox attribute.
9
- */
8
+ * Provides the General HTML Support integration for `iframe` elements with a mandatory sandbox attribute.
9
+ */
10
10
  export declare class IframeElementSupport extends Plugin {
11
- /**
12
- * @inheritDoc
13
- */
14
- static get requires(): readonly [typeof DataFilter];
15
- /**
16
- * @inheritDoc
17
- */
18
- static get pluginName(): "IframeElementSupport";
19
- /**
20
- * @inheritDoc
21
- */
22
- static get isOfficialPlugin(): true;
23
- /**
24
- * @inheritDoc
25
- */
26
- init(): void;
27
- /**
28
- * Sets up the conversion to enforce the sandbox attribute on `iframe` elements.
29
- */
30
- private _setupSandboxConversion;
11
+ /**
12
+ * @inheritDoc
13
+ */
14
+ static get requires(): PluginDependenciesOf<[DataFilter]>;
15
+ /**
16
+ * @inheritDoc
17
+ */
18
+ static get pluginName(): "IframeElementSupport";
19
+ /**
20
+ * @inheritDoc
21
+ */
22
+ static override get isOfficialPlugin(): true;
23
+ /**
24
+ * @inheritDoc
25
+ */
26
+ init(): void;
27
+ /**
28
+ * Sets up the conversion to enforce the sandbox attribute on `iframe` elements.
29
+ */
30
+ private _setupSandboxConversion;
31
31
  }
@@ -1,30 +1,30 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module html-support/integrations/image
7
- */
8
- import { Plugin } from '@ckeditor/ckeditor5-core';
9
- import { DataFilter } from '../datafilter.js';
6
+ * @module html-support/integrations/image
7
+ */
8
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
9
+ import { DataFilter } from "../datafilter.js";
10
10
  /**
11
- * Provides the General HTML Support integration with the {@link module:image/image~Image Image} feature.
12
- */
11
+ * Provides the General HTML Support integration with the {@link module:image/image~Image Image} feature.
12
+ */
13
13
  export declare class ImageElementSupport extends Plugin {
14
- /**
15
- * @inheritDoc
16
- */
17
- static get requires(): readonly [typeof DataFilter];
18
- /**
19
- * @inheritDoc
20
- */
21
- static get pluginName(): "ImageElementSupport";
22
- /**
23
- * @inheritDoc
24
- */
25
- static get isOfficialPlugin(): true;
26
- /**
27
- * @inheritDoc
28
- */
29
- init(): void;
14
+ /**
15
+ * @inheritDoc
16
+ */
17
+ static get requires(): PluginDependenciesOf<[DataFilter]>;
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ static get pluginName(): "ImageElementSupport";
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static override get isOfficialPlugin(): true;
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ init(): void;
30
30
  }
@@ -1,15 +1,15 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module html-support/integrations/integrationutils
7
- */
8
- import type { ViewDowncastWriter, ViewElement } from '@ckeditor/ckeditor5-engine';
6
+ * @module html-support/integrations/integrationutils
7
+ */
8
+ import type { ViewDowncastWriter, ViewElement } from "@ckeditor/ckeditor5-engine";
9
9
  /**
10
- * Returns the first view element descendant matching the given view name.
11
- * Includes view element itself.
12
- *
13
- * @internal
14
- */
10
+ * Returns the first view element descendant matching the given view name.
11
+ * Includes view element itself.
12
+ *
13
+ * @internal
14
+ */
15
15
  export declare function getDescendantElement(writer: ViewDowncastWriter, containerElement: ViewElement, elementName: string): ViewElement | undefined;
@@ -1,31 +1,31 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
5
- import { Plugin } from '@ckeditor/ckeditor5-core';
6
- import { DataFilter } from '../datafilter.js';
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
6
+ import { DataFilter } from "../datafilter.js";
7
7
  /**
8
- * Provides the General HTML Support integration with the {@link module:list/list~List List} feature.
9
- */
8
+ * Provides the General HTML Support integration with the {@link module:list/list~List List} feature.
9
+ */
10
10
  export declare class ListElementSupport extends Plugin {
11
- /**
12
- * @inheritDoc
13
- */
14
- static get requires(): readonly [typeof DataFilter];
15
- /**
16
- * @inheritDoc
17
- */
18
- static get pluginName(): "ListElementSupport";
19
- /**
20
- * @inheritDoc
21
- */
22
- static get isOfficialPlugin(): true;
23
- /**
24
- * @inheritDoc
25
- */
26
- init(): void;
27
- /**
28
- * @inheritDoc
29
- */
30
- afterInit(): void;
11
+ /**
12
+ * @inheritDoc
13
+ */
14
+ static get requires(): PluginDependenciesOf<[DataFilter]>;
15
+ /**
16
+ * @inheritDoc
17
+ */
18
+ static get pluginName(): "ListElementSupport";
19
+ /**
20
+ * @inheritDoc
21
+ */
22
+ static override get isOfficialPlugin(): true;
23
+ /**
24
+ * @inheritDoc
25
+ */
26
+ init(): void;
27
+ /**
28
+ * @inheritDoc
29
+ */
30
+ afterInit(): void;
31
31
  }
@@ -1,30 +1,30 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module html-support/integrations/mediaembed
7
- */
8
- import { Plugin } from '@ckeditor/ckeditor5-core';
9
- import { DataFilter } from '../datafilter.js';
6
+ * @module html-support/integrations/mediaembed
7
+ */
8
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
9
+ import { DataFilter } from "../datafilter.js";
10
10
  /**
11
- * Provides the General HTML Support integration with {@link module:media-embed/mediaembed~MediaEmbed Media Embed} feature.
12
- */
11
+ * Provides the General HTML Support integration with {@link module:media-embed/mediaembed~MediaEmbed Media Embed} feature.
12
+ */
13
13
  export declare class MediaEmbedElementSupport extends Plugin {
14
- /**
15
- * @inheritDoc
16
- */
17
- static get requires(): readonly [typeof DataFilter];
18
- /**
19
- * @inheritDoc
20
- */
21
- static get pluginName(): "MediaEmbedElementSupport";
22
- /**
23
- * @inheritDoc
24
- */
25
- static get isOfficialPlugin(): true;
26
- /**
27
- * @inheritDoc
28
- */
29
- init(): void;
14
+ /**
15
+ * @inheritDoc
16
+ */
17
+ static get requires(): PluginDependenciesOf<[DataFilter]>;
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ static get pluginName(): "MediaEmbedElementSupport";
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static override get isOfficialPlugin(): true;
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ init(): void;
30
30
  }
@@ -1,30 +1,30 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
- */
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
+ */
5
5
  /**
6
- * @module html-support/integrations/script
7
- */
8
- import { Plugin } from '@ckeditor/ckeditor5-core';
9
- import { DataFilter } from '../datafilter.js';
6
+ * @module html-support/integrations/script
7
+ */
8
+ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
9
+ import { DataFilter } from "../datafilter.js";
10
10
  /**
11
- * Provides the General HTML Support for `script` elements.
12
- */
11
+ * Provides the General HTML Support for `script` elements.
12
+ */
13
13
  export declare class ScriptElementSupport extends Plugin {
14
- /**
15
- * @inheritDoc
16
- */
17
- static get requires(): readonly [typeof DataFilter];
18
- /**
19
- * @inheritDoc
20
- */
21
- static get pluginName(): "ScriptElementSupport";
22
- /**
23
- * @inheritDoc
24
- */
25
- static get isOfficialPlugin(): true;
26
- /**
27
- * @inheritDoc
28
- */
29
- init(): void;
14
+ /**
15
+ * @inheritDoc
16
+ */
17
+ static get requires(): PluginDependenciesOf<[DataFilter]>;
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ static get pluginName(): "ScriptElementSupport";
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static override get isOfficialPlugin(): true;
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ init(): void;
30
30
  }