@leavittsoftware/web 5.11.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,394 @@
1
+ import '../../titanium/date-range-selector/date-range-selector';
2
+ import '@material/web/dialog/dialog';
3
+ import '@material/web/button/text-button';
4
+ import '@material/web/icon/icon';
5
+ import '@material/web/chips/input-chip';
6
+ import { LitElement, PropertyValues } from 'lit';
7
+ import ApiService from '../api-service/api-service';
8
+ export type FilterKeys = 'template' | 'startDate' | 'endDate' | 'dateRange';
9
+ declare const LeavittEmailHistoryViewListFilterDialog_base: {
10
+ new (...args: any[]): {
11
+ #promiseCount: number;
12
+ isLoading: boolean;
13
+ loadWhile(promise: Promise<unknown>): Promise<void>;
14
+ accessKey: string;
15
+ readonly accessKeyLabel: string;
16
+ autocapitalize: string;
17
+ autocorrect: boolean;
18
+ dir: string;
19
+ draggable: boolean;
20
+ hidden: boolean;
21
+ inert: boolean;
22
+ innerText: string;
23
+ lang: string;
24
+ readonly offsetHeight: number;
25
+ readonly offsetLeft: number;
26
+ readonly offsetParent: Element | null;
27
+ readonly offsetTop: number;
28
+ readonly offsetWidth: number;
29
+ outerText: string;
30
+ popover: string | null;
31
+ spellcheck: boolean;
32
+ title: string;
33
+ translate: boolean;
34
+ writingSuggestions: string;
35
+ attachInternals(): ElementInternals;
36
+ click(): void;
37
+ hidePopover(): void;
38
+ hidePopover(): void;
39
+ showPopover(): void;
40
+ showPopover(): void;
41
+ togglePopover(options?: boolean): boolean;
42
+ togglePopover(force: boolean): void;
43
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
44
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
45
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
46
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
47
+ floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
48
+ lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
49
+ readonly attributes: NamedNodeMap;
50
+ get classList(): DOMTokenList;
51
+ set classList(value: string);
52
+ className: string;
53
+ readonly clientHeight: number;
54
+ readonly clientLeft: number;
55
+ readonly clientTop: number;
56
+ readonly clientWidth: number;
57
+ readonly currentCSSZoom: number;
58
+ id: string;
59
+ innerHTML: string;
60
+ readonly localName: string;
61
+ readonly namespaceURI: string | null;
62
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
63
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
64
+ outerHTML: string;
65
+ readonly ownerDocument: Document;
66
+ get part(): DOMTokenList;
67
+ set part(value: string);
68
+ readonly prefix: string | null;
69
+ readonly scrollHeight: number;
70
+ scrollLeft: number;
71
+ scrollTop: number;
72
+ readonly scrollWidth: number;
73
+ readonly shadowRoot: ShadowRoot | null;
74
+ slot: string;
75
+ readonly tagName: string;
76
+ attachShadow(init: ShadowRootInit): ShadowRoot;
77
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
78
+ closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
79
+ closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
80
+ closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
81
+ closest<E extends Element = Element>(selectors: string): E | null;
82
+ computedStyleMap(): StylePropertyMapReadOnly;
83
+ getAttribute(qualifiedName: string): string | null;
84
+ getAttributeNS(namespace: string | null, localName: string): string | null;
85
+ getAttributeNames(): string[];
86
+ getAttributeNode(qualifiedName: string): Attr | null;
87
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
88
+ getBoundingClientRect(): DOMRect;
89
+ getClientRects(): DOMRectList;
90
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
91
+ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
92
+ getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
93
+ getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
94
+ getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
95
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
96
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
97
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
98
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
99
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
100
+ getHTML(options?: GetHTMLOptions): string;
101
+ hasAttribute(qualifiedName: string): boolean;
102
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
103
+ hasAttributes(): boolean;
104
+ hasPointerCapture(pointerId: number): boolean;
105
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
106
+ insertAdjacentHTML(position: InsertPosition, string: string): void;
107
+ insertAdjacentText(where: InsertPosition, data: string): void;
108
+ matches(selectors: string): boolean;
109
+ releasePointerCapture(pointerId: number): void;
110
+ removeAttribute(qualifiedName: string): void;
111
+ removeAttributeNS(namespace: string | null, localName: string): void;
112
+ removeAttributeNode(attr: Attr): Attr;
113
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
114
+ requestPointerLock(options?: PointerLockOptions): Promise<void>;
115
+ scroll(options?: ScrollToOptions): void;
116
+ scroll(x: number, y: number): void;
117
+ scrollBy(options?: ScrollToOptions): void;
118
+ scrollBy(x: number, y: number): void;
119
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
120
+ scrollTo(options?: ScrollToOptions): void;
121
+ scrollTo(x: number, y: number): void;
122
+ setAttribute(qualifiedName: string, value: string): void;
123
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
124
+ setAttributeNode(attr: Attr): Attr | null;
125
+ setAttributeNodeNS(attr: Attr): Attr | null;
126
+ setHTMLUnsafe(html: string): void;
127
+ setPointerCapture(pointerId: number): void;
128
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
129
+ webkitMatchesSelector(selectors: string): boolean;
130
+ get textContent(): string;
131
+ set textContent(value: string | null);
132
+ readonly baseURI: string;
133
+ readonly childNodes: NodeListOf<ChildNode>;
134
+ readonly firstChild: ChildNode | null;
135
+ readonly isConnected: boolean;
136
+ readonly lastChild: ChildNode | null;
137
+ readonly nextSibling: ChildNode | null;
138
+ readonly nodeName: string;
139
+ readonly nodeType: number;
140
+ nodeValue: string | null;
141
+ readonly parentElement: HTMLElement | null;
142
+ readonly parentNode: ParentNode | null;
143
+ readonly previousSibling: ChildNode | null;
144
+ appendChild<T extends Node>(node: T): T;
145
+ cloneNode(subtree?: boolean): Node;
146
+ compareDocumentPosition(other: Node): number;
147
+ contains(other: Node | null): boolean;
148
+ getRootNode(options?: GetRootNodeOptions): Node;
149
+ hasChildNodes(): boolean;
150
+ insertBefore<T extends Node>(node: T, child: Node | null): T;
151
+ isDefaultNamespace(namespace: string | null): boolean;
152
+ isEqualNode(otherNode: Node | null): boolean;
153
+ isSameNode(otherNode: Node | null): boolean;
154
+ lookupNamespaceURI(prefix: string | null): string | null;
155
+ lookupPrefix(namespace: string | null): string | null;
156
+ normalize(): void;
157
+ removeChild<T extends Node>(child: T): T;
158
+ replaceChild<T extends Node>(node: Node, child: T): T;
159
+ readonly ELEMENT_NODE: 1;
160
+ readonly ATTRIBUTE_NODE: 2;
161
+ readonly TEXT_NODE: 3;
162
+ readonly CDATA_SECTION_NODE: 4;
163
+ readonly ENTITY_REFERENCE_NODE: 5;
164
+ readonly ENTITY_NODE: 6;
165
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
166
+ readonly COMMENT_NODE: 8;
167
+ readonly DOCUMENT_NODE: 9;
168
+ readonly DOCUMENT_TYPE_NODE: 10;
169
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
170
+ readonly NOTATION_NODE: 12;
171
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
172
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
173
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
174
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
175
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
176
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
177
+ dispatchEvent(event: Event): boolean;
178
+ ariaActiveDescendantElement: Element | null;
179
+ ariaAtomic: string | null;
180
+ ariaAutoComplete: string | null;
181
+ ariaBrailleLabel: string | null;
182
+ ariaBrailleRoleDescription: string | null;
183
+ ariaBusy: string | null;
184
+ ariaChecked: string | null;
185
+ ariaColCount: string | null;
186
+ ariaColIndex: string | null;
187
+ ariaColIndexText: string | null;
188
+ ariaColSpan: string | null;
189
+ ariaControlsElements: ReadonlyArray<Element> | null;
190
+ ariaCurrent: string | null;
191
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
192
+ ariaDescription: string | null;
193
+ ariaDetailsElements: ReadonlyArray<Element> | null;
194
+ ariaDisabled: string | null;
195
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
196
+ ariaExpanded: string | null;
197
+ ariaFlowToElements: ReadonlyArray<Element> | null;
198
+ ariaHasPopup: string | null;
199
+ ariaHidden: string | null;
200
+ ariaInvalid: string | null;
201
+ ariaKeyShortcuts: string | null;
202
+ ariaLabel: string | null;
203
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
204
+ ariaLevel: string | null;
205
+ ariaLive: string | null;
206
+ ariaModal: string | null;
207
+ ariaMultiLine: string | null;
208
+ ariaMultiSelectable: string | null;
209
+ ariaOrientation: string | null;
210
+ ariaOwnsElements: ReadonlyArray<Element> | null;
211
+ ariaPlaceholder: string | null;
212
+ ariaPosInSet: string | null;
213
+ ariaPressed: string | null;
214
+ ariaReadOnly: string | null;
215
+ ariaRelevant: string | null;
216
+ ariaRequired: string | null;
217
+ ariaRoleDescription: string | null;
218
+ ariaRowCount: string | null;
219
+ ariaRowIndex: string | null;
220
+ ariaRowIndexText: string | null;
221
+ ariaRowSpan: string | null;
222
+ ariaSelected: string | null;
223
+ ariaSetSize: string | null;
224
+ ariaSort: string | null;
225
+ ariaValueMax: string | null;
226
+ ariaValueMin: string | null;
227
+ ariaValueNow: string | null;
228
+ ariaValueText: string | null;
229
+ role: string | null;
230
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
231
+ getAnimations(options?: GetAnimationsOptions): Animation[];
232
+ after(...nodes: (Node | string)[]): void;
233
+ before(...nodes: (Node | string)[]): void;
234
+ remove(): void;
235
+ replaceWith(...nodes: (Node | string)[]): void;
236
+ readonly nextElementSibling: Element | null;
237
+ readonly previousElementSibling: Element | null;
238
+ readonly childElementCount: number;
239
+ readonly children: HTMLCollection;
240
+ readonly firstElementChild: Element | null;
241
+ readonly lastElementChild: Element | null;
242
+ append(...nodes: (Node | string)[]): void;
243
+ prepend(...nodes: (Node | string)[]): void;
244
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
245
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
246
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
247
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
248
+ querySelector<E extends Element = Element>(selectors: string): E | null;
249
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
250
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
251
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
252
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
253
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
254
+ replaceChildren(...nodes: (Node | string)[]): void;
255
+ readonly assignedSlot: HTMLSlotElement | null;
256
+ readonly attributeStyleMap: StylePropertyMap;
257
+ get style(): CSSStyleDeclaration;
258
+ set style(cssText: string);
259
+ contentEditable: string;
260
+ enterKeyHint: string;
261
+ inputMode: string;
262
+ readonly isContentEditable: boolean;
263
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
264
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
265
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
266
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
267
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
268
+ onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
269
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
270
+ onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
271
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
272
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
273
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
274
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
275
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
276
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
277
+ onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
278
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
279
+ oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
280
+ oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
281
+ oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
282
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
283
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
284
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
285
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
286
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
287
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
288
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
289
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
290
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
291
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
292
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
293
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
294
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
295
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
+ onerror: OnErrorEventHandler;
297
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
298
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
299
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
300
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
301
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
302
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
303
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
304
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
305
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
306
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
307
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
308
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
309
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
310
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
311
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
312
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
313
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
314
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
315
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
316
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
317
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
318
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
319
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
320
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
322
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
323
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
324
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
325
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
326
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
327
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
328
+ onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
329
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
330
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
331
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
332
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
333
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
334
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
+ onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
336
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
337
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
338
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
339
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
340
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
341
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
342
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
343
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
344
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
345
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
346
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
347
+ ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
348
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
349
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
350
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
351
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
352
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
353
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
354
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
355
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
356
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
357
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
358
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
359
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
360
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
361
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
362
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
363
+ autofocus: boolean;
364
+ readonly dataset: DOMStringMap;
365
+ nonce?: string;
366
+ tabIndex: number;
367
+ blur(): void;
368
+ focus(options?: FocusOptions): void;
369
+ };
370
+ get properties(): {
371
+ isLoading: {
372
+ type: BooleanConstructor;
373
+ };
374
+ };
375
+ } & typeof LitElement;
376
+ export declare class LeavittEmailHistoryViewListFilterDialog extends LeavittEmailHistoryViewListFilterDialog_base {
377
+ #private;
378
+ accessor isActive: boolean;
379
+ accessor apiService: ApiService | null;
380
+ private accessor filterController;
381
+ private accessor template;
382
+ private accessor templateId;
383
+ private accessor startDate;
384
+ private accessor endDate;
385
+ private accessor dialog;
386
+ private accessor dateRangeSelect;
387
+ firstUpdated(): Promise<void>;
388
+ updated(changedProps: PropertyValues<this>): Promise<void>;
389
+ open(): Promise<void>;
390
+ static styles: import("lit").CSSResult[];
391
+ render(): import("lit-html").TemplateResult<1>;
392
+ }
393
+ export {};
394
+ //# sourceMappingURL=email-history-view-list-filter-dialog.d.ts.map
@@ -0,0 +1,233 @@
1
+ import { __decorate } from "tslib";
2
+ import '../../titanium/date-range-selector/date-range-selector';
3
+ import '@material/web/dialog/dialog';
4
+ import '@material/web/button/text-button';
5
+ import '@material/web/icon/icon';
6
+ import '@material/web/chips/input-chip';
7
+ import { dialogZIndexHack } from '../../titanium/hacks/dialog-zindex-hack';
8
+ import { LitElement, css, html } from 'lit';
9
+ import { customElement, property, query, state } from 'lit/decorators.js';
10
+ import { LoadWhile } from '../../titanium/helpers/load-while';
11
+ import { rangeLabel } from '../../titanium/date-range-selector/types/range-label';
12
+ import { DateRanges } from '../../titanium/date-range-selector/types/date-ranges';
13
+ import { dialogCloseNavigationHack, dialogOpenNavigationHack } from '../../titanium/hacks/dialog-navigation-hack';
14
+ import { ShowSnackbarEvent } from '../../titanium/snackbar/show-snackbar-event';
15
+ let LeavittEmailHistoryViewListFilterDialog = class LeavittEmailHistoryViewListFilterDialog extends LoadWhile(LitElement) {
16
+ #isActive_accessor_storage;
17
+ get isActive() { return this.#isActive_accessor_storage; }
18
+ set isActive(value) { this.#isActive_accessor_storage = value; }
19
+ #apiService_accessor_storage;
20
+ get apiService() { return this.#apiService_accessor_storage; }
21
+ set apiService(value) { this.#apiService_accessor_storage = value; }
22
+ #filterController_accessor_storage;
23
+ get filterController() { return this.#filterController_accessor_storage; }
24
+ set filterController(value) { this.#filterController_accessor_storage = value; }
25
+ #template_accessor_storage = [];
26
+ get template() { return this.#template_accessor_storage; }
27
+ set template(value) { this.#template_accessor_storage = value; }
28
+ #templateId_accessor_storage;
29
+ get templateId() { return this.#templateId_accessor_storage; }
30
+ set templateId(value) { this.#templateId_accessor_storage = value; }
31
+ #templatesAreDirty = true;
32
+ #startDate_accessor_storage;
33
+ //Date range props
34
+ get startDate() { return this.#startDate_accessor_storage; }
35
+ set startDate(value) { this.#startDate_accessor_storage = value; }
36
+ #endDate_accessor_storage;
37
+ get endDate() { return this.#endDate_accessor_storage; }
38
+ set endDate(value) { this.#endDate_accessor_storage = value; }
39
+ #dialog_accessor_storage;
40
+ get dialog() { return this.#dialog_accessor_storage; }
41
+ set dialog(value) { this.#dialog_accessor_storage = value; }
42
+ #dateRangeSelect_accessor_storage;
43
+ get dateRangeSelect() { return this.#dateRangeSelect_accessor_storage; }
44
+ set dateRangeSelect(value) { this.#dateRangeSelect_accessor_storage = value; }
45
+ async firstUpdated() {
46
+ this.filterController.subscribeToFilterChange(async () => {
47
+ this.#preloadChipData();
48
+ this.requestUpdate('filterController');
49
+ });
50
+ }
51
+ async updated(changedProps) {
52
+ if (this.isActive && changedProps.has('isActive')) {
53
+ this.#preloadChipData();
54
+ }
55
+ }
56
+ async #preloadChipData() {
57
+ //Preload for chips
58
+ if (this.filterController.getValue('template') && this.#templatesAreDirty) {
59
+ this.template = await this.#getTemplatesAsync();
60
+ }
61
+ }
62
+ async #getTemplatesAsync() {
63
+ if (!this.apiService) {
64
+ console.warn('No api service provided');
65
+ return [];
66
+ }
67
+ const odataParts = ['select=Id,Name,IsExpired', 'orderby=Name'];
68
+ try {
69
+ const get = this.apiService.getAsync(`EmailTemplates?${odataParts.join('&')}`);
70
+ this.loadWhile(get);
71
+ const entities = (await get).toList();
72
+ this.#templatesAreDirty = false;
73
+ return entities;
74
+ }
75
+ catch (error) {
76
+ this.dispatchEvent(new ShowSnackbarEvent(error));
77
+ }
78
+ return [];
79
+ }
80
+ async open() {
81
+ if (this.#templatesAreDirty) {
82
+ this.template = await this.#getTemplatesAsync();
83
+ }
84
+ this.templateId = this.filterController.getValue('template') ?? '';
85
+ //populate date range
86
+ const dateRange = this.filterController.getValue('dateRange');
87
+ this.startDate = (dateRange === 'custom' ? this.filterController.getValue('startDate') : DateRanges.get(dateRange)?.startDate()) || '';
88
+ this.endDate = (dateRange === 'custom' ? this.filterController.getValue('endDate') : DateRanges.get(dateRange)?.endDate()) || '';
89
+ this.dialog.show();
90
+ }
91
+ static { this.styles = [
92
+ css `
93
+ :host {
94
+ display: flex;
95
+ flex-wrap: wrap;
96
+ align-items: center;
97
+ gap: 8px;
98
+ }
99
+
100
+ md-dialog {
101
+ max-width: 550px;
102
+ width: calc(100vw - 24px);
103
+
104
+ div[inactive] {
105
+ font-size: 12px;
106
+ line-height: 14px;
107
+ opacity: 0.8;
108
+ }
109
+
110
+ md-outlined-select {
111
+ width: 100%;
112
+ margin-top: 24px;
113
+ }
114
+ }
115
+
116
+ [hidden] {
117
+ display: none !important;
118
+ }
119
+ `,
120
+ ]; }
121
+ render() {
122
+ return html `
123
+ <md-input-chip
124
+ remove-only
125
+ ?hidden=${!this.filterController.getValue('template') || this.isLoading}
126
+ label="${this.template.find((o) => o.Id === Number(this.filterController.getValue('template')))?.Name ?? ''} template"
127
+ @remove=${(e) => {
128
+ e.preventDefault();
129
+ this.filterController.setValue('template', null);
130
+ }}
131
+ >
132
+ <md-icon slot="icon">content_copy</md-icon>
133
+ </md-input-chip>
134
+
135
+ <md-input-chip
136
+ remove-only
137
+ ?hidden=${!this.filterController.getValue('dateRange') || this.filterController.getValue('dateRange') === 'allTime'}
138
+ label=${rangeLabel(this.filterController.getValue('dateRange'), this.filterController.getValue('startDate') ?? null, this.filterController.getValue('endDate') ?? null, 'Sent')}
139
+ @remove=${(e) => {
140
+ e.preventDefault();
141
+ this.filterController.setValue('dateRange', null);
142
+ this.filterController.setValue('startDate', null);
143
+ this.filterController.setValue('endDate', null);
144
+ }}
145
+ >
146
+ <md-icon slot="icon">date_range</md-icon>
147
+ </md-input-chip>
148
+
149
+ <md-dialog
150
+ @open=${(e) => {
151
+ dialogZIndexHack(e.target);
152
+ dialogOpenNavigationHack(e.target);
153
+ }}
154
+ @close=${(e) => {
155
+ dialogCloseNavigationHack(e.target);
156
+ }}
157
+ >
158
+ <div slot="headline">Filter logs by</div>
159
+ <form slot="content" method="dialog">
160
+ <titanium-date-range-selector
161
+ label="Sent"
162
+ .startDate=${this.startDate}
163
+ .endDate=${this.endDate}
164
+ @change=${(event) => {
165
+ this.startDate = event.target.startDate || '';
166
+ this.endDate = event.target.endDate || '';
167
+ }}
168
+ ></titanium-date-range-selector>
169
+
170
+ <md-outlined-select
171
+ label="Templates"
172
+ .value=${this.templateId ?? ''}
173
+ @change=${(e) => (this.templateId = e.target.value)}
174
+ >
175
+ <md-icon slot="leading-icon">content_copy</md-icon>
176
+ <md-select-option></md-select-option>
177
+ ${this.template.map((o) => html `<md-select-option ?selected=${o.Id === Number(this.templateId)} value=${o.Id ?? ''}>
178
+ <div slot="headline">${o.Name}</div>
179
+ ${o.IsExpired ? html `<div inactive slot="supporting-text">Inactive</div>` : ''}
180
+ <md-icon slot="start">content_copy</md-icon>
181
+ </md-select-option>`)}
182
+ </md-outlined-select>
183
+ </form>
184
+ <div slot="actions">
185
+ <md-text-button @click=${() => this.dialog.close('cancel')}> Close </md-text-button>
186
+ <md-text-button
187
+ @click=${() => {
188
+ this.filterController.setValue('template', this.templateId || null);
189
+ //set date range
190
+ this.filterController.setValue('dateRange', this.dateRangeSelect.range === 'allTime' ? null : this.dateRangeSelect.range);
191
+ this.filterController.setValue('startDate', this.dateRangeSelect.range === 'custom' ? this.startDate || null : null);
192
+ this.filterController.setValue('endDate', this.dateRangeSelect.range === 'custom' ? this.endDate || null : null);
193
+ this.dialog.close('apply');
194
+ }}
195
+ >Apply</md-text-button
196
+ >
197
+ </div>
198
+ </md-dialog>
199
+ `;
200
+ }
201
+ };
202
+ __decorate([
203
+ property({ type: Boolean })
204
+ ], LeavittEmailHistoryViewListFilterDialog.prototype, "isActive", null);
205
+ __decorate([
206
+ property({ type: Object })
207
+ ], LeavittEmailHistoryViewListFilterDialog.prototype, "apiService", null);
208
+ __decorate([
209
+ state()
210
+ ], LeavittEmailHistoryViewListFilterDialog.prototype, "filterController", null);
211
+ __decorate([
212
+ state()
213
+ ], LeavittEmailHistoryViewListFilterDialog.prototype, "template", null);
214
+ __decorate([
215
+ state()
216
+ ], LeavittEmailHistoryViewListFilterDialog.prototype, "templateId", null);
217
+ __decorate([
218
+ state()
219
+ ], LeavittEmailHistoryViewListFilterDialog.prototype, "startDate", null);
220
+ __decorate([
221
+ state()
222
+ ], LeavittEmailHistoryViewListFilterDialog.prototype, "endDate", null);
223
+ __decorate([
224
+ query('md-dialog')
225
+ ], LeavittEmailHistoryViewListFilterDialog.prototype, "dialog", null);
226
+ __decorate([
227
+ query('titanium-date-range-selector')
228
+ ], LeavittEmailHistoryViewListFilterDialog.prototype, "dateRangeSelect", null);
229
+ LeavittEmailHistoryViewListFilterDialog = __decorate([
230
+ customElement('leavitt-email-history-view-list-filter-dialog')
231
+ ], LeavittEmailHistoryViewListFilterDialog);
232
+ export { LeavittEmailHistoryViewListFilterDialog };
233
+ //# sourceMappingURL=email-history-view-list-filter-dialog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"email-history-view-list-filter-dialog.js","sourceRoot":"","sources":["email-history-view-list-filter-dialog.ts"],"names":[],"mappings":"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"}