mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-21 19:34:12 +01:00
- Form SDK implementation - Basic Forms - Dynamics Forms - Basic Blocks + Data Model Block - Form Compilation - Turbo integration
96 lines
3.0 KiB
TypeScript
96 lines
3.0 KiB
TypeScript
import type TomSelect from './tom-select.ts';
|
|
import { TomLoadCallback } from './types/index.ts';
|
|
/**
|
|
* Converts a scalar to its best string representation
|
|
* for hash keys and HTML attribute values.
|
|
*
|
|
* Transformations:
|
|
* 'str' -> 'str'
|
|
* null -> ''
|
|
* undefined -> ''
|
|
* true -> '1'
|
|
* false -> '0'
|
|
* 0 -> '0'
|
|
* 1 -> '1'
|
|
*
|
|
*/
|
|
export declare const hash_key: (value: undefined | null | boolean | string | number) => string | null;
|
|
export declare const get_hash: (value: boolean | string | number) => string;
|
|
/**
|
|
* Escapes a string for use within HTML.
|
|
*
|
|
*/
|
|
export declare const escape_html: (str: string) => string;
|
|
/**
|
|
* use setTimeout if timeout > 0
|
|
*/
|
|
export declare const timeout: (fn: () => void, timeout: number) => number | null;
|
|
/**
|
|
* Debounce the user provided load function
|
|
*
|
|
*/
|
|
export declare const loadDebounce: (fn: (value: string, callback: TomLoadCallback) => void, delay: number) => (this: TomSelect, value: string, callback: TomLoadCallback) => void;
|
|
/**
|
|
* Debounce all fired events types listed in `types`
|
|
* while executing the provided `fn`.
|
|
*
|
|
*/
|
|
export declare const debounce_events: (self: TomSelect, types: string[], fn: () => void) => void;
|
|
/**
|
|
* Determines the current selection within a text input control.
|
|
* Returns an object containing:
|
|
* - start
|
|
* - length
|
|
*
|
|
* Note: "selectionStart, selectionEnd ... apply only to inputs of types text, search, URL, tel and password"
|
|
* - https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/setSelectionRange
|
|
*/
|
|
export declare const getSelection: (input: HTMLInputElement) => {
|
|
start: number;
|
|
length: number;
|
|
};
|
|
/**
|
|
* Prevent default
|
|
*
|
|
*/
|
|
export declare const preventDefault: (evt?: Event, stop?: boolean) => void;
|
|
/**
|
|
* Add event helper
|
|
*
|
|
*/
|
|
export declare const addEvent: (target: EventTarget, type: string, callback: EventListenerOrEventListenerObject, options?: object) => void;
|
|
/**
|
|
* Return true if the requested key is down
|
|
* Will return false if more than one control character is pressed ( when [ctrl+shift+a] != [ctrl+a] )
|
|
* The current evt may not always set ( eg calling advanceSelection() )
|
|
*
|
|
*/
|
|
export declare const isKeyDown: (key_name: keyof (KeyboardEvent | MouseEvent), evt?: KeyboardEvent | MouseEvent) => boolean;
|
|
/**
|
|
* Get the id of an element
|
|
* If the id attribute is not set, set the attribute with the given id
|
|
*
|
|
*/
|
|
export declare const getId: (el: Element, id: string) => string;
|
|
/**
|
|
* Returns a string with backslashes added before characters that need to be escaped.
|
|
*/
|
|
export declare const addSlashes: (str: string) => string;
|
|
/**
|
|
*
|
|
*/
|
|
export declare const append: (parent: Element | DocumentFragment, node: string | Node | null | undefined) => void;
|
|
/**
|
|
* Iterates over arrays and hashes.
|
|
*
|
|
* ```
|
|
* iterate(this.items, function(item, id) {
|
|
* // invoked for each item
|
|
* });
|
|
* ```
|
|
*
|
|
*/
|
|
export declare const iterate: (object: [] | {
|
|
[key: string]: any;
|
|
}, callback: (value: any, key: any) => any) => void;
|