jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
49 lines (48 loc) • 1.67 kB
TypeScript
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* @module helpers/utils
*/
import type { HTMLTagNames, IDictionary, Nullable } from "../../../types/index";
/**
* Find all elements by selector and return Array. If it did not find any element, it is return empty array
* @internal
*
* @example
* ```javascript
* Jodit.modules.Helpers.$$('.someselector').forEach(function (elm) {
* elm.addEventListener('click', function () {
* alert('Clicked');
* });
* })
* ```
* @param selector - CSS like selector
* @param root - where to search
* @deprecated Do not use it in new code
*/
export declare function $$<K extends HTMLTagNames>(selector: K, root: HTMLElement | DocumentFragment): Array<HTMLElementTagNameMap[K]>;
/**
* @deprecated Do not use it in new code
*/
export declare function $$<T extends HTMLElement>(selector: string, root: HTMLElement | DocumentFragment): T[];
/**
* Calculate XPath selector
*/
export declare const getXPathByElement: (element: HTMLElement, root: HTMLElement) => string;
/**
* Find all `ref` or `data-ref` elements inside HTMLElement
*/
export declare const refs: <T extends HTMLElement>(root: HTMLElement | {
container: HTMLElement;
}) => IDictionary<T>;
/**
* Calculate full CSS selector
*/
export declare const cssPath: (el: Element) => Nullable<string>;
/**
* Try to find element by selector
*/
export declare function resolveElement(element: string | HTMLElement | unknown, od: ShadowRoot | Document): HTMLElement;