@leavittsoftware/web 5.16.0 → 5.18.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.
- package/package.json +2 -2
- package/titanium/data-table/data-table-action-bar.js +2 -2
- package/titanium/data-table/data-table-core-settings-dialog.d.ts +399 -0
- package/titanium/data-table/data-table-core-settings-dialog.js +353 -0
- package/titanium/data-table/data-table-core-settings-dialog.js.map +1 -0
- package/titanium/data-table/data-table-core-settings-item.d.ts +15 -0
- package/titanium/data-table/data-table-core-settings-item.js +102 -0
- package/titanium/data-table/data-table-core-settings-item.js.map +1 -0
- package/titanium/data-table/data-table-core-settings-sort-item.d.ts +17 -0
- package/titanium/data-table/data-table-core-settings-sort-item.js +164 -0
- package/titanium/data-table/data-table-core-settings-sort-item.js.map +1 -0
- package/titanium/data-table/data-table-core.d.ts +28 -3
- package/titanium/data-table/data-table-core.js +96 -9
- package/titanium/data-table/data-table-core.js.map +1 -1
- package/titanium/data-table/draggable-item-base.d.ts +29 -0
- package/titanium/data-table/draggable-item-base.js +282 -0
- package/titanium/data-table/draggable-item-base.js.map +1 -0
- package/titanium/styles/nice-badge.d.ts +2 -0
- package/titanium/styles/nice-badge.js +47 -0
- package/titanium/styles/nice-badge.js.map +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leavittsoftware/web",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.18.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"files": [
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"url": "https://github.com/LeavittSoftware/titanium-elements/issues"
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://github.com/LeavittSoftware/titanium-elements/#readme",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "9e6f8442edd5aabd07b7991ed20e20d0bdc018cf"
|
|
45
45
|
}
|
|
@@ -27,9 +27,9 @@ let TitaniumDataTableActionBar = class TitaniumDataTableActionBar extends LitEle
|
|
|
27
27
|
css `
|
|
28
28
|
:host {
|
|
29
29
|
display: grid;
|
|
30
|
-
|
|
31
|
-
padding: 0 16px;
|
|
30
|
+
padding: 12px 16px;
|
|
32
31
|
background-color: var(--md-sys-color-surface-container-lowest);
|
|
32
|
+
box-sizing: border-box;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
main {
|
|
@@ -0,0 +1,399 @@
|
|
|
1
|
+
import '@material/web/dialog/dialog';
|
|
2
|
+
import '@material/web/button/text-button';
|
|
3
|
+
import '@material/web/tabs/tabs';
|
|
4
|
+
import '@material/web/tabs/primary-tab';
|
|
5
|
+
import '@material/web/button/filled-tonal-button';
|
|
6
|
+
import '@material/web/icon/icon';
|
|
7
|
+
import '@material/web/menu/menu';
|
|
8
|
+
import '@material/web/menu/menu-item';
|
|
9
|
+
import './data-table-core-settings-item';
|
|
10
|
+
import './data-table-core-settings-sort-item';
|
|
11
|
+
import { LitElement, PropertyValues } from 'lit';
|
|
12
|
+
import { TitaniumDataTableCoreMetaData, TitaniumDataTableCoreSortItem } from './data-table-core';
|
|
13
|
+
export type TitaniumDataTableCoreItemSettings = {
|
|
14
|
+
key: string;
|
|
15
|
+
show: boolean;
|
|
16
|
+
};
|
|
17
|
+
declare const TitaniumDataTableCoreSettingsDialog_base: {
|
|
18
|
+
new (...args: any[]): {
|
|
19
|
+
"__#private@#promiseCount": number;
|
|
20
|
+
isLoading: boolean;
|
|
21
|
+
loadWhile(promise: Promise<unknown>): Promise<void>;
|
|
22
|
+
accessKey: string;
|
|
23
|
+
readonly accessKeyLabel: string;
|
|
24
|
+
autocapitalize: string;
|
|
25
|
+
autocorrect: boolean;
|
|
26
|
+
dir: string;
|
|
27
|
+
draggable: boolean;
|
|
28
|
+
hidden: boolean;
|
|
29
|
+
inert: boolean;
|
|
30
|
+
innerText: string;
|
|
31
|
+
lang: string;
|
|
32
|
+
readonly offsetHeight: number;
|
|
33
|
+
readonly offsetLeft: number;
|
|
34
|
+
readonly offsetParent: Element | null;
|
|
35
|
+
readonly offsetTop: number;
|
|
36
|
+
readonly offsetWidth: number;
|
|
37
|
+
outerText: string;
|
|
38
|
+
popover: string | null;
|
|
39
|
+
spellcheck: boolean;
|
|
40
|
+
title: string;
|
|
41
|
+
translate: boolean;
|
|
42
|
+
writingSuggestions: string;
|
|
43
|
+
attachInternals(): ElementInternals;
|
|
44
|
+
click(): void;
|
|
45
|
+
hidePopover(): void;
|
|
46
|
+
hidePopover(): void;
|
|
47
|
+
showPopover(): void;
|
|
48
|
+
showPopover(): void;
|
|
49
|
+
togglePopover(options?: boolean): boolean;
|
|
50
|
+
togglePopover(force: boolean): void;
|
|
51
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
52
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
53
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
54
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
55
|
+
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
56
|
+
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
57
|
+
readonly attributes: NamedNodeMap;
|
|
58
|
+
get classList(): DOMTokenList;
|
|
59
|
+
set classList(value: string);
|
|
60
|
+
className: string;
|
|
61
|
+
readonly clientHeight: number;
|
|
62
|
+
readonly clientLeft: number;
|
|
63
|
+
readonly clientTop: number;
|
|
64
|
+
readonly clientWidth: number;
|
|
65
|
+
readonly currentCSSZoom: number;
|
|
66
|
+
id: string;
|
|
67
|
+
innerHTML: string;
|
|
68
|
+
readonly localName: string;
|
|
69
|
+
readonly namespaceURI: string | null;
|
|
70
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
|
71
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
|
72
|
+
outerHTML: string;
|
|
73
|
+
readonly ownerDocument: Document;
|
|
74
|
+
get part(): DOMTokenList;
|
|
75
|
+
set part(value: string);
|
|
76
|
+
readonly prefix: string | null;
|
|
77
|
+
readonly scrollHeight: number;
|
|
78
|
+
scrollLeft: number;
|
|
79
|
+
scrollTop: number;
|
|
80
|
+
readonly scrollWidth: number;
|
|
81
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
82
|
+
slot: string;
|
|
83
|
+
readonly tagName: string;
|
|
84
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
85
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
86
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
87
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
88
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
89
|
+
closest<E extends Element = Element>(selectors: string): E | null;
|
|
90
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
91
|
+
getAttribute(qualifiedName: string): string | null;
|
|
92
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
93
|
+
getAttributeNames(): string[];
|
|
94
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
|
95
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
96
|
+
getBoundingClientRect(): DOMRect;
|
|
97
|
+
getClientRects(): DOMRectList;
|
|
98
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
99
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
100
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
101
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
102
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
103
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
104
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
105
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
106
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
107
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
108
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
109
|
+
hasAttribute(qualifiedName: string): boolean;
|
|
110
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
111
|
+
hasAttributes(): boolean;
|
|
112
|
+
hasPointerCapture(pointerId: number): boolean;
|
|
113
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
114
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
115
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
116
|
+
matches(selectors: string): boolean;
|
|
117
|
+
releasePointerCapture(pointerId: number): void;
|
|
118
|
+
removeAttribute(qualifiedName: string): void;
|
|
119
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
120
|
+
removeAttributeNode(attr: Attr): Attr;
|
|
121
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
122
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
123
|
+
scroll(options?: ScrollToOptions): void;
|
|
124
|
+
scroll(x: number, y: number): void;
|
|
125
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
126
|
+
scrollBy(x: number, y: number): void;
|
|
127
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
128
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
129
|
+
scrollTo(x: number, y: number): void;
|
|
130
|
+
setAttribute(qualifiedName: string, value: string): void;
|
|
131
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
132
|
+
setAttributeNode(attr: Attr): Attr | null;
|
|
133
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
134
|
+
setHTMLUnsafe(html: string): void;
|
|
135
|
+
setPointerCapture(pointerId: number): void;
|
|
136
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
137
|
+
webkitMatchesSelector(selectors: string): boolean;
|
|
138
|
+
get textContent(): string;
|
|
139
|
+
set textContent(value: string | null);
|
|
140
|
+
readonly baseURI: string;
|
|
141
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
142
|
+
readonly firstChild: ChildNode | null;
|
|
143
|
+
readonly isConnected: boolean;
|
|
144
|
+
readonly lastChild: ChildNode | null;
|
|
145
|
+
readonly nextSibling: ChildNode | null;
|
|
146
|
+
readonly nodeName: string;
|
|
147
|
+
readonly nodeType: number;
|
|
148
|
+
nodeValue: string | null;
|
|
149
|
+
readonly parentElement: HTMLElement | null;
|
|
150
|
+
readonly parentNode: ParentNode | null;
|
|
151
|
+
readonly previousSibling: ChildNode | null;
|
|
152
|
+
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
153
|
+
cloneNode(subtree?: boolean): Node;
|
|
154
|
+
compareDocumentPosition(other: Node): number;
|
|
155
|
+
contains(other: Node | null): boolean;
|
|
156
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
157
|
+
hasChildNodes(): boolean;
|
|
158
|
+
insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
|
|
159
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
160
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
161
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
162
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
163
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
164
|
+
normalize(): void;
|
|
165
|
+
removeChild<T_1 extends Node>(child: T_1): T_1;
|
|
166
|
+
replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
|
|
167
|
+
readonly ELEMENT_NODE: 1;
|
|
168
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
169
|
+
readonly TEXT_NODE: 3;
|
|
170
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
171
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
172
|
+
readonly ENTITY_NODE: 6;
|
|
173
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
174
|
+
readonly COMMENT_NODE: 8;
|
|
175
|
+
readonly DOCUMENT_NODE: 9;
|
|
176
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
177
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
178
|
+
readonly NOTATION_NODE: 12;
|
|
179
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
180
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
181
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
182
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
183
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
184
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
185
|
+
dispatchEvent(event: Event): boolean;
|
|
186
|
+
ariaActiveDescendantElement: Element | null;
|
|
187
|
+
ariaAtomic: string | null;
|
|
188
|
+
ariaAutoComplete: string | null;
|
|
189
|
+
ariaBrailleLabel: string | null;
|
|
190
|
+
ariaBrailleRoleDescription: string | null;
|
|
191
|
+
ariaBusy: string | null;
|
|
192
|
+
ariaChecked: string | null;
|
|
193
|
+
ariaColCount: string | null;
|
|
194
|
+
ariaColIndex: string | null;
|
|
195
|
+
ariaColIndexText: string | null;
|
|
196
|
+
ariaColSpan: string | null;
|
|
197
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
198
|
+
ariaCurrent: string | null;
|
|
199
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
200
|
+
ariaDescription: string | null;
|
|
201
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
202
|
+
ariaDisabled: string | null;
|
|
203
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
204
|
+
ariaExpanded: string | null;
|
|
205
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
206
|
+
ariaHasPopup: string | null;
|
|
207
|
+
ariaHidden: string | null;
|
|
208
|
+
ariaInvalid: string | null;
|
|
209
|
+
ariaKeyShortcuts: string | null;
|
|
210
|
+
ariaLabel: string | null;
|
|
211
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
212
|
+
ariaLevel: string | null;
|
|
213
|
+
ariaLive: string | null;
|
|
214
|
+
ariaModal: string | null;
|
|
215
|
+
ariaMultiLine: string | null;
|
|
216
|
+
ariaMultiSelectable: string | null;
|
|
217
|
+
ariaOrientation: string | null;
|
|
218
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
219
|
+
ariaPlaceholder: string | null;
|
|
220
|
+
ariaPosInSet: string | null;
|
|
221
|
+
ariaPressed: string | null;
|
|
222
|
+
ariaReadOnly: string | null;
|
|
223
|
+
ariaRelevant: string | null;
|
|
224
|
+
ariaRequired: string | null;
|
|
225
|
+
ariaRoleDescription: string | null;
|
|
226
|
+
ariaRowCount: string | null;
|
|
227
|
+
ariaRowIndex: string | null;
|
|
228
|
+
ariaRowIndexText: string | null;
|
|
229
|
+
ariaRowSpan: string | null;
|
|
230
|
+
ariaSelected: string | null;
|
|
231
|
+
ariaSetSize: string | null;
|
|
232
|
+
ariaSort: string | null;
|
|
233
|
+
ariaValueMax: string | null;
|
|
234
|
+
ariaValueMin: string | null;
|
|
235
|
+
ariaValueNow: string | null;
|
|
236
|
+
ariaValueText: string | null;
|
|
237
|
+
role: string | null;
|
|
238
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
239
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
240
|
+
after(...nodes: (Node | string)[]): void;
|
|
241
|
+
before(...nodes: (Node | string)[]): void;
|
|
242
|
+
remove(): void;
|
|
243
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
244
|
+
readonly nextElementSibling: Element | null;
|
|
245
|
+
readonly previousElementSibling: Element | null;
|
|
246
|
+
readonly childElementCount: number;
|
|
247
|
+
readonly children: HTMLCollection;
|
|
248
|
+
readonly firstElementChild: Element | null;
|
|
249
|
+
readonly lastElementChild: Element | null;
|
|
250
|
+
append(...nodes: (Node | string)[]): void;
|
|
251
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
252
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
253
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
254
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
255
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
256
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
257
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
258
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
259
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
260
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
261
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
262
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
263
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
264
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
265
|
+
get style(): CSSStyleDeclaration;
|
|
266
|
+
set style(cssText: string);
|
|
267
|
+
contentEditable: string;
|
|
268
|
+
enterKeyHint: string;
|
|
269
|
+
inputMode: string;
|
|
270
|
+
readonly isContentEditable: boolean;
|
|
271
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
272
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
273
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
274
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
275
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
276
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
277
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
278
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
279
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
280
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
281
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
282
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
283
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
284
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
285
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
286
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
287
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
288
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
289
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
290
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
291
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
292
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
293
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
294
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
295
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
296
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
297
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
298
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
299
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
300
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
301
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
302
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
303
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
304
|
+
onerror: OnErrorEventHandler;
|
|
305
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
306
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
307
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
308
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
309
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
310
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
311
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
312
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
313
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
314
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
315
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
316
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
317
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
318
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
319
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
320
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
321
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
322
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
323
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
324
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
325
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
326
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
327
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
328
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
329
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
330
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
331
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
332
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
333
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
334
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
335
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
336
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
337
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
338
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
339
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
340
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
341
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
342
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
343
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
344
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
345
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
346
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
347
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
348
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
349
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
350
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
351
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
352
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
353
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
354
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
355
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
356
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
357
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
358
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
359
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
360
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
361
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
362
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
363
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
364
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
365
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
366
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
367
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
368
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
369
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
370
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
371
|
+
autofocus: boolean;
|
|
372
|
+
readonly dataset: DOMStringMap;
|
|
373
|
+
nonce?: string;
|
|
374
|
+
tabIndex: number;
|
|
375
|
+
blur(): void;
|
|
376
|
+
focus(options?: FocusOptions): void;
|
|
377
|
+
};
|
|
378
|
+
get properties(): {
|
|
379
|
+
isLoading: {
|
|
380
|
+
type: BooleanConstructor;
|
|
381
|
+
};
|
|
382
|
+
};
|
|
383
|
+
} & typeof LitElement;
|
|
384
|
+
export declare class TitaniumDataTableCoreSettingsDialog<T extends object> extends TitaniumDataTableCoreSettingsDialog_base {
|
|
385
|
+
#private;
|
|
386
|
+
accessor tableMetaData: TitaniumDataTableCoreMetaData<T> | null;
|
|
387
|
+
accessor userSettings: TitaniumDataTableCoreItemSettings[];
|
|
388
|
+
accessor sort: TitaniumDataTableCoreSortItem[];
|
|
389
|
+
private accessor viewMode;
|
|
390
|
+
accessor customSortApplied: boolean;
|
|
391
|
+
accessor customColumnsApplied: boolean;
|
|
392
|
+
private accessor dialog;
|
|
393
|
+
updated(changedProperties: PropertyValues): void;
|
|
394
|
+
show(): Promise<"done">;
|
|
395
|
+
static styles: import("lit").CSSResult[];
|
|
396
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
397
|
+
}
|
|
398
|
+
export {};
|
|
399
|
+
//# sourceMappingURL=data-table-core-settings-dialog.d.ts.map
|