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