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