UNPKG

smart-webcomponents-react

Version:

[![Price](https://img.shields.io/badge/price-COMMERCIAL-00JS8f7.svg)](https://jqwidgets.com/license/)

610 lines (602 loc) 25.8 kB
import {BaseElement, Animation} from "./smart.element" export interface WindowProperties { /** * Determines if 'Add New' Tab inside the Tabs element is visible. Applicable only to TabsWindow * Default value: false */ addNewTab?: boolean; /** * Sets or gets the animation mode. Animation is disabled when the property is set to 'none' * Default value: advanced */ animation?: Animation | string; /** * Determines whether and how the value should be automatically capitalized as it is entered/edited by the user. Applicable only to MultilinePromptWindow. * Default value: none */ autoCapitalize?: WindowAutoCapitalize | string; /** * Determines whether element will auto expand when the input overflows vertically. Applicable only to MultilinePromptWindow. * Default value: false */ autoExpand?: boolean; /** * Determines the label for the 'cancel' button inside the Prompt Window. * Default value: "Cancel" */ cancelLabel?: string; /** * Determines the label for the 'Complete' button insinde the Progress Window. * Default value: "Confirm" */ completeLabel?: string; /** * Determines the label for the 'Confirm' button insinde the Prompt Window. * Default value: "Confirm" */ confirmLabel?: string; /** * Determines if the window is collapsed or not. When collapsed the only the header of the window is visible. * Default value: false */ collapsed?: boolean; /** * When a modal window is opened, thid property determines if clicking on the mask closes the window or not. * Default value: false */ closeOnMaskClick?: boolean; /** * Determines the data source that will be loaded to the TabsWindow. Applicable only to TabsWindow. * Default value: null */ dataSource?: {label: string, content: string}[]; /** * Enables or disables the window. * Default value: false */ disabled?: boolean; /** * Enables or disables the window snapping feature. * Default value: false */ disableSnap?: boolean; /** * By default the window is closing after the 'Escape' key is pressed. Set this property to true, if you want to disable that. * Default value: false */ disableEscape?: boolean; /** * By default the window is handling keyboard keys like 'Arrows', 'Escape', etc. Set this property to true, if you want to disable that. * Default value: false */ disableKeyboard?: boolean; /** * Determines how the characters are displayed inside the input. Applicable to Prompt Window. * Default value: default */ displayMode?: WindowDisplayMode | string; /** * Applicable to TabsWindow when docked inside a DockingLayout Custom Element. Determines where the window(it's tab items as well) can be dropped inside the DockingLayout. The property is an array that accepts multiple positions. Note: Positions with prefix 'layout-' are applied to the Tab item children of the TabsWidnow owner that is being dragged. The rest of the positions indicate the allowed drop position inside the hovered target(TabsWindow). Used only by jqxDockingLayout custom elements. Determines the possible drop position inside the DockingLayout. The following values are allowed. * Default value: */ dropPosition?: WindowDropPosition | string; /** * A callback function defining the new format for the label of the Progress Bar. Applicable only to ProgressWindow. * Default value: null */ formatFunction?: any; /** * Determines the position of the footer of the window element. * Default value: top */ footerPosition?: WindowFooterPosition | string; /** * Determines the template for the Dialog section of the window. By default footerTemplate is null. * Default value: null */ footerTemplate?: any; /** * Set's the buttons that will be visible in the header section. * Default value: close,maximize,minimize */ headerButtons?: string[]; /** * Determines the template for the Dialog section of the window. By default headerTemplate is null. * Default value: null */ headerTemplate?: any; /** * Determines the position of the header of the window element. * Default value: top */ headerPosition?: TabPosition | string; /** * Sets additional helper text below the text box. The hint is visible only when the text box is focued. Applicable to Prompt Window. * Default value: null */ hint?: any; /** * Sets the value of the Progress bar to indeterminate state(null) and starts the animation. Applicable only to ProgressWindow. * Default value: false */ indeterminate?: boolean; /** * Sets the filling direction of the Progress Bar. Applicable only to ProgressWindow. * Default value: false */ inverted?: boolean; /** * The label of the window that appears in the header area. * Default value: "" */ label?: string; /** * When enabled the resizing operation happens live. By default it's not enabled and during resizing a highlighter around the edges of the window appears to outline the current size of the element. * Default value: false */ liveResize?: boolean; /** * Applicable only to TabsWindow when used with a DockingLayout custom element.Used only by jqxDockingLayout. Determines the owner jqxDockingLayout that the window belongs to. When the tabsWindow has been removed from a DockingLayout element, the property is used to indicate that it belongs to that particular Dockinglayout. Accepts a string, representing the ID of a jqxDockingLayout on the page, or an instance of jqxDokcingLayout. * Default value: null */ layout?: any; /** * Sets or gets the unlockKey which unlocks the product. * Default value: "" */ unlockKey?: string; /** * Sets or gets the language. Used in conjunction with the property messages. * Default value: "en" */ locale?: string; /** * Applicable only to TabsWindow when docked inside a DockingLayout Custom Element.Determines of the item can be resized or not. * Default value: false */ locked?: boolean; /** * Callback, related to localization module. * Default value: null */ localizeFormatFunction?: any; /** * Determines if the window is maximized or not. When maximized the window covers the whole viewport. * Default value: false */ maximized?: boolean; /** * Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. * Default value: * { * "en": { * "propertyUnknownType": "'' property is with undefined 'type' member!", * "propertyInvalidValue": "Invalid '!", * "propertyInvalidValueType": "Invalid '!", * "elementNotInDOM": "Element does not exist in DOM! Please, add the element to the DOM, before invoking a method.", * "moduleUndefined": "Module is undefined.", * "missingReference": ".", * "htmlTemplateNotSuported": ": Browser doesn't support HTMLTemplate elements.", * "invalidTemplate": "' property accepts a string that must match the id of an HTMLTemplate element from the DOM." * } * } */ messages?: any; /** * Determines if the window is modal or not. If true the user can only interact with the window and nothing else on the page. * Default value: false */ modal?: boolean; /** * Applicable to TabsWindow when docked inside a DockingLayout Custom Element. Determines the max size of the item. Applicable to Progress Window by allowing the user to specify the maximum of the ProgressBar. * Default value: */ max?: string | number | null; /** * Applicable to TabsWindow when docked inside DockingLayout Custom Element. Determines the min size of the item. Applicable to Progress Window by allowing the user to specify the minimu of the ProgressBar. * Default value: */ min?: string | number | null; /** * Determines if the window is minimized or not. When minimized the window is docked at the bottom left corner of the viewport. * Default value: false */ minimized?: boolean; /** * Sets or gets the maximum number of characters that the user can enter. Applicable to Prompt/MultilinePrompt Window. * Default value: null */ maxLength?: number; /** * Sets or gets the minimum number of characters that the user have to enter to trigger the auto complete functionality. Applicable to Prompt/MultilinePrompt Window. * Default value: 2 */ minLength?: number; /** * Determines if the window is visible or not. * Default value: false */ opened?: boolean; /** * Determines if the window is pinned or not. Pinned window is a window that can't be dragged but can be resized. * Default value: false */ pinned?: boolean; /** * Determines the input's placeholder. Applicable to Prompt Window. * Default value: "" */ placeholder?: string; /** * Determines the label for the Input insinde the PromptWindow. * Default value: "" */ promptLabel?: string; /** * If the element is readonly, users cannot interact with it. * Default value: false */ readonly?: boolean; /** * When applied a resize indicator is displayed in the bottom right corner of the window and resizing operation can be initiated only from its position. * Default value: false */ resizeIndicator?: boolean; /** * Determines the resizing mode of the window. Several modes are available: none - resizing is disabled. vertical - vertical resizing is allowed. horizontal - horizontal resizing is allowed. both - horizontal and vertical resizing is allowed. top - the window can only be resized from the top side. bottom - the window is resizable only from the bottom side. left - the window can be resized only from the left side. right - the window can be resized only from the right side. * Default value: none */ resizeMode?: WindowResizeMode | string; /** * Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. * Default value: false */ rightToLeft?: boolean; /** * Specifies that the user must fill the input before submitting a form with the text box.Applicable to Prompt Window. * Default value: false */ required?: boolean; /** * Specifies the message that will appear if required is set and no value is provided in the input. Applicable to Prompt Window. * Default value: "" */ requiredMessage?: string; /** * Determines whether the content of the input will be selected on focus or not. Applicable to Prompt Window. * Default value: false */ selectAllOnFocus?: boolean; /** * Sets or gets which tab is selected. Applicable only to TabsWindow. * Default value: null */ selectedIndex?: number | null; /** * Determines the way the user can switch between tabs. Applicable only to TabsWindow. * Default value: click */ selectionMode?: TabSelectionMode | string; /** * Indicates the index of the last character in the current selection. Applicable only to MultilinePromptWindow. * Default value: 0 */ selectionEnd?: number; /** * Indicates the index to the first character in the current selection. Applicable only to MultilinePromptWindow. * Default value: 0 */ selectionStart?: number; /** * Enables/Disabled the label for the Progress Bar. Applicable only to Progress Window. * Default value: false */ showProgressValue?: boolean; /** * A getter that returns the siblings (that share the same parent) of a LayoutPanel item that is docked inside a DockingLayout. The siblings are also DockingLayout items ( LayoutPanels).Applicable only to TabsWindow when docked inside a DockingLayout. * Default value: */ siblings?: any; /** * Applicable to TabsWindow when nested inside a DockingLayout Custom Element. Determines the size of the item. * Default value: "" */ size?: string; /** * Specifies whether the element is to have its spelling and grammar checked or not. Applicable only to MultilinePromptWindow. * Default value: false */ spellCheck?: boolean; /** * Sets or gets whether close buttons are displayed inside the Tab Strip of the TabsWindow. Applicable only to TabsWindow. * Default value: false */ tabCloseButtons?: boolean; /** * Determines if the close button is visible on select or always. Applicable only to TabsWindow. * Default value: default */ tabCloseButtonMode?: WindowTabCloseButtonMode | string; /** * Sets or gets the Tabs scroll buttons behavior. Applicable only when tabLayout is 'scroll'. Applicable only to TabsWindow. * Default value: auto */ tabOverflow?: Overflow | string; /** * Detetmines Tab Strip is positioned of the TabsWindow. Applicable only to TabsWindow. * Default value: top */ tabPosition?: TabPosition | string; /** * Sets or gets the position of the scroll buttons inside the Tab header of the TabsWindow. Applicable only to TabsWindow. * Default value: both */ tabScrollButtonsPosition?: LayoutPosition | string; /** * Sets or gets the orientation of the text in the tabs labels of the TabsWindow. Applicable only to TabsWindow. * Default value: horizontal */ tabTextOrientation?: Orientation | string; /** * Determines the theme. Theme defines the look of the element * Default value: "" */ theme?: string; /** * If is set to true, the element cannot be focused. * Default value: false */ unfocusable?: boolean; /** * Determines the value of the TextBox/ProgressBar inside the Dialog/Prompt/Progress Window * Default value: */ value?: string | number; /** * Determines the actual parent of the element. The window can size and move only in the area of that element. * Default value: null */ windowParent?: any; /** * Indicates how the input wraps text. Applicable only to MultilinePromptWindow. * Default value: soft */ wrap?: WindowWrap | string; } /** Window or Dialog displays the interactive custom confirmations, message boxes, alerts, warnings, errors, and modal dialogs. */ export interface Window extends BaseElement, WindowProperties { /* Get a member by its name */ [name: string]: any; /** * This event is triggered just before the window starts opening. * @param event. The custom event. */ onOpening?: ((this: any, ev: Event) => any) | ((this: any, ev: CustomEvent<any>) => any) | null; /** * This event is triggered when the window is opened( visible ). * @param event. The custom event. */ onOpen?: ((this: any, ev: Event) => any) | ((this: any, ev: CustomEvent<any>) => any) | null; /** * This event is triggered just before the window starts closing. * @param event. The custom event. */ onClosing?: ((this: any, ev: Event) => any) | ((this: any, ev: CustomEvent<any>) => any) | null; /** * This event is triggered when the window is closed( hidden ) * @param event. The custom event. */ onClose: ((this: any, ev: Event) => any) | null; /** * This event is triggered when the window is collapsed. * @param event. The custom event. */ onCollapse?: ((this: any, ev: Event) => any) | ((this: any, ev: CustomEvent<any>) => any) | null; /** * This event is triggered when window's dragging is ended. * @param event. The custom event. */ onDragEnd: ((this: any, ev: Event) => any) | null; /** * This event is triggered when window's dragging is started. * @param event. The custom event. */ onDragStart: ((this: any, ev: Event) => any) | null; /** * This event is triggered when the window is expanded. * @param event. The custom event. */ onExpand?: ((this: any, ev: Event) => any) | ((this: any, ev: CustomEvent<any>) => any) | null; /** * This event is triggered when the window is maximized. * @param event. The custom event. */ onMaximize?: ((this: any, ev: Event) => any) | ((this: any, ev: CustomEvent<any>) => any) | null; /** * This event is triggered when the window is minimized. * @param event. The custom event. */ onMinimize?: ((this: any, ev: Event) => any) | ((this: any, ev: CustomEvent<any>) => any) | null; /** * This event is triggered when window's resizing is ended. * @param event. The custom event. */ onResizeEnd?: ((this: any, ev: Event) => any) | ((this: any, ev: CustomEvent<any>) => any) | null; /** * This event is triggered when window's resizing is started. * @param event. The custom event. */ onResizeStart?: ((this: any, ev: Event) => any) | ((this: any, ev: CustomEvent<any>) => any) | null; /** * This event is triggered when the window is restored to it's previous state before maximization. * @param event. The custom event. */ onRestore?: ((this: any, ev: Event) => any) | ((this: any, ev: CustomEvent<any>) => any) | null; /** * Appends a tabitem to the end of the list of tab items inside element. * @param {Node} node. A TabItem element that should be added to the rest of the items as the last item. * @returns {Node} */ appendChild<T extends Node>(node: Node): T; /** * Sets the window to the top level so the user can interact with it. */ bringToFront(): void; /** * Clears the content of the Window. */ clear(): void; /** * Closes the window. */ close(): void; /** * Collapses the window. * @returns {HTMLElement} */ collapse(): HTMLElement; /** * Makes sure a tab item is visible by scrolling to it. <strong>Applicable only to TabsWindow.</strong> * @param {number} index. The index of the tab to scroll to. */ ensureVisible(index: number): void; /** * Expands the window after being collapsed. * @returns {any[]} */ expand(): any[]; /** * Inserts a new tab and an associated content section. <strong>Applicable only to TabsWindow.</strong> * @param {number} index. The index to insert a new tab at. * @param {any} details. An Object with the fields "label", "labelSize", "content" and "group". */ insert(index: number, details: any): void; /** * Inserts the specified "smart-tab-item" node before the reference "smart-tab-item" node. <strong>Applicable only to TabsWindow.</strong> * @param {Node} newNode. The "smart-tab-item" node to insert. * @param {Node | null} referenceNode?. The "smart-tab-item" node before which newNode is inserted. * @returns {Node} */ insertBefore<T extends Node>(newNode: Node, referenceNode?: Node | null): T; /** * Moves the window to a new position * @param {string | number} left. Left position. For example: '100px'. * @param {string | number} top. Top position. For example: '100px'. */ move(left: string | number, top: string | number): void; /** * Maximizes the window to fill the area. */ maximize(): void; /** * Minimizes the window. */ minimize(): void; /** * Opens the window */ open(): void; /** * Pins the window. Disables window dragging. */ pin(): void; /** * Removes a tab and its associated content section. <strong>Applicable only to TabsWindow.</strong> * @param {number} index. The index of the tab to remove. */ removeAt(index: number): void; /** * Removes a child "smart-tab-item" node. <strong>Applicable only to TabsWindow.</strong> * @param {Node} node. The "smart-tab-item" node to remove. * @returns {Node} */ removeChild<T extends Node>(node: Node): T; /** * Restores the window to it's previous size before maximization/minimization. */ restore(): void; /** * Selects a tab. <strong> Applicalbe only to TabsWindow elements.</strong> * @param {number} index. The index of the tab to select. */ select(index: number): void; /** * Unpins the window. Enables window dragging. */ unpin(): void; /** * Updates the header label. * @param {string} label. The new label of the Header. */ updateLabel(label: string): void; /** * Updates the content. * @param {string | HTMLElement} content. The new content of the window. */ updateContent(content: string | HTMLElement): void; /** * Updates a TAB in TAB Window and its associated content section. <strong> Applies only to TabsWindow elements.</strong> * @param {number} index. The index of the tab to update. * @param {string} label. The new label of the tab. The value can be the id of an HTMLTemplateElement * @param {string | HTMLElement} content. The new content of the tab. */ update(index: number, label: string, content: string | HTMLElement): void; } export interface Dialog extends Window {} declare global { interface Document { createElement(tagName: "smart-window"): Dialog; querySelector(selectors: "smart-window"): Dialog | null; querySelectorAll(selectors: "smart-window"): NodeListOf<Dialog>; getElementsByTagName(qualifiedName: "smart-window"): HTMLCollectionOf<Dialog>; getElementsByName(elementName: "smart-window"): NodeListOf<Dialog>; } } declare global { interface Document { /** * Returns the first element that is a descendant of node that matches selectors. */ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null; querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null; querySelector<E extends Element = Element>(selectors: string): E | null; /** * Returns all element descendants of node that match selectors. */ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>; querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>; querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>; /** * Gets a collection of objects based on the value of the NAME or ID attribute. * @param elementName Gets a collection of objects based on the value of the NAME or ID attribute. */ getElementsByName(elementName: string): NodeListOf<HTMLElement>; /** * Retrieves a collection of objects based on the specified element name. * @param name Specifies the name of an element. */ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>; getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>; getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>; } } /**Determines whether and how the value should be automatically capitalized as it is entered/edited by the user. <b>Applicable only to MultilinePromptWindow.</b> */ export declare type WindowAutoCapitalize = 'none' | 'characters' | 'words'; /**Determines how the characters are displayed inside the input. <b>Applicable to Prompt Window.</b> */ export declare type WindowDisplayMode = 'default' | 'escaped'; /**Applicable to TabsWindow when docked inside a DockingLayout Custom Element. <br/> Determines where the window(it's tab items as well) can be dropped inside the DockingLayout. <br/> The property is an array that accepts multiple positions. Note: Positions with prefix 'layout-' are applied to the Tab item children of the TabsWidnow owner that is being dragged. The rest of the positions indicate the allowed drop position inside the hovered target(TabsWindow). Used only by jqxDockingLayout custom elements. Determines the possible drop position inside the DockingLayout. The following values are allowed. */ export declare type WindowDropPosition = 'all' | 'top' | 'bottom' | 'left' | 'right' | 'center' | 'header' | 'layout-top' | 'layout-bottom' | 'layout-left' | 'layout-right'; /**Determines the position of the footer of the window element. */ export declare type WindowFooterPosition = 'bottom' | 'none'; /**Detetmines Tab Strip is positioned of the TabsWindow. Applicable only to TabsWindow. */ export declare type TabPosition = 'top' | 'bottom' | 'left' | 'right' | 'hidden'; /**Determines the resizing mode of the window. <br/> Several modes are available: none - resizing is disabled. vertical - vertical resizing is allowed. horizontal - horizontal resizing is allowed. both - horizontal and vertical resizing is allowed. top - the window can only be resized from the top side. bottom - the window is resizable only from the bottom side. left - the window can be resized only from the left side. right - the window can be resized only from the right side. */ export declare type WindowResizeMode = 'none' | 'horizontal' | 'vertical' | 'both' | 'top' | 'bottom' | 'left' | 'right'; /**Determines the way the user can switch between tabs. Applicable only to TabsWindow. */ export declare type TabSelectionMode = 'click' | 'dblclick' | 'mouseenter' | 'none'; /**Determines if the close button is visible on select or always. Applicable only to TabsWindow. */ export declare type WindowTabCloseButtonMode = 'default' | 'selected'; /**Sets or gets the Tabs scroll buttons behavior. Applicable only when tabLayout is 'scroll'. Applicable only to TabsWindow. */ export declare type Overflow = 'auto' | 'hidden' | 'scroll'; /**Sets or gets the position of the scroll buttons inside the Tab header of the TabsWindow. Applicable only to TabsWindow. */ export declare type LayoutPosition = 'near' | 'far' | 'both'; /**Sets or gets the orientation of the text in the tabs labels of the TabsWindow. Applicable only to TabsWindow. */ export declare type Orientation = 'horizontal' | 'vertical'; /**Indicates how the input wraps text. <b>Applicable only to MultilinePromptWindow.</b> */ export declare type WindowWrap = 'hard' | 'soft' | 'off';