@leavittsoftware/web 4.4.1 → 4.5.1

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.
@@ -33,14 +33,14 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
33
33
  hidePopover(): void;
34
34
  showPopover(): void;
35
35
  showPopover(): void;
36
- togglePopover(force?: boolean | undefined): boolean;
36
+ togglePopover(force?: boolean): boolean;
37
37
  togglePopover(force: boolean): void;
38
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
39
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
40
- removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
41
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
42
- floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation | undefined;
43
- lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation | undefined;
38
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
39
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
40
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
41
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
42
+ floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
43
+ lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
44
44
  readonly attributes: NamedNodeMap;
45
45
  readonly classList: DOMTokenList;
46
46
  className: string;
@@ -65,10 +65,10 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
65
65
  slot: string;
66
66
  readonly tagName: string;
67
67
  attachShadow(init: ShadowRootInit): ShadowRoot;
68
- checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
69
- closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
70
- closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
71
- closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
68
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
69
+ closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
70
+ closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
71
+ closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
72
72
  closest<E extends Element = Element>(selectors: string): E | null;
73
73
  computedStyleMap(): StylePropertyMapReadOnly;
74
74
  getAttribute(qualifiedName: string): string | null;
@@ -79,10 +79,10 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
79
79
  getBoundingClientRect(): DOMRect;
80
80
  getClientRects(): DOMRectList;
81
81
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
82
- getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
83
- getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
84
- getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
85
- getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
82
+ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
83
+ getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
84
+ getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
85
+ getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
86
86
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
87
87
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
88
88
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -100,21 +100,22 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
100
100
  removeAttribute(qualifiedName: string): void;
101
101
  removeAttributeNS(namespace: string | null, localName: string): void;
102
102
  removeAttributeNode(attr: Attr): Attr;
103
- requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
103
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
104
104
  requestPointerLock(): void;
105
- scroll(options?: ScrollToOptions | undefined): void;
105
+ scroll(options?: ScrollToOptions): void;
106
106
  scroll(x: number, y: number): void;
107
- scrollBy(options?: ScrollToOptions | undefined): void;
107
+ scrollBy(options?: ScrollToOptions): void;
108
108
  scrollBy(x: number, y: number): void;
109
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
110
- scrollTo(options?: ScrollToOptions | undefined): void;
109
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
110
+ scrollTo(options?: ScrollToOptions): void;
111
111
  scrollTo(x: number, y: number): void;
112
112
  setAttribute(qualifiedName: string, value: string): void;
113
113
  setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
114
114
  setAttributeNode(attr: Attr): Attr | null;
115
115
  setAttributeNodeNS(attr: Attr): Attr | null;
116
+ setHTMLUnsafe(html: string): void;
116
117
  setPointerCapture(pointerId: number): void;
117
- toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
118
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
118
119
  webkitMatchesSelector(selectors: string): boolean;
119
120
  readonly baseURI: string;
120
121
  readonly childNodes: NodeListOf<ChildNode>;
@@ -130,20 +131,20 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
130
131
  readonly previousSibling: ChildNode | null;
131
132
  textContent: string | null;
132
133
  appendChild<T extends Node>(node: T): T;
133
- cloneNode(deep?: boolean | undefined): Node;
134
+ cloneNode(deep?: boolean): Node;
134
135
  compareDocumentPosition(other: Node): number;
135
136
  contains(other: Node | null): boolean;
136
- getRootNode(options?: GetRootNodeOptions | undefined): Node;
137
+ getRootNode(options?: GetRootNodeOptions): Node;
137
138
  hasChildNodes(): boolean;
138
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
139
+ insertBefore<T extends Node>(node: T, child: Node | null): T;
139
140
  isDefaultNamespace(namespace: string | null): boolean;
140
141
  isEqualNode(otherNode: Node | null): boolean;
141
142
  isSameNode(otherNode: Node | null): boolean;
142
143
  lookupNamespaceURI(prefix: string | null): string | null;
143
144
  lookupPrefix(namespace: string | null): string | null;
144
145
  normalize(): void;
145
- removeChild<T_2 extends Node>(child: T_2): T_2;
146
- replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
146
+ removeChild<T extends Node>(child: T): T;
147
+ replaceChild<T extends Node>(node: Node, child: T): T;
147
148
  readonly ELEMENT_NODE: 1;
148
149
  readonly ATTRIBUTE_NODE: 2;
149
150
  readonly TEXT_NODE: 3;
@@ -165,6 +166,8 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
165
166
  dispatchEvent(event: Event): boolean;
166
167
  ariaAtomic: string | null;
167
168
  ariaAutoComplete: string | null;
169
+ ariaBrailleLabel: string | null;
170
+ ariaBrailleRoleDescription: string | null;
168
171
  ariaBusy: string | null;
169
172
  ariaChecked: string | null;
170
173
  ariaColCount: string | null;
@@ -202,12 +205,12 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
202
205
  ariaValueNow: string | null;
203
206
  ariaValueText: string | null;
204
207
  role: string | null;
205
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
206
- getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
207
- after(...nodes: (string | Node)[]): void;
208
- before(...nodes: (string | Node)[]): void;
208
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
209
+ getAnimations(options?: GetAnimationsOptions): Animation[];
210
+ after(...nodes: (Node | string)[]): void;
211
+ before(...nodes: (Node | string)[]): void;
209
212
  remove(): void;
210
- replaceWith(...nodes: (string | Node)[]): void;
213
+ replaceWith(...nodes: (Node | string)[]): void;
211
214
  innerHTML: string;
212
215
  readonly nextElementSibling: Element | null;
213
216
  readonly previousElementSibling: Element | null;
@@ -215,19 +218,19 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
215
218
  readonly children: HTMLCollection;
216
219
  readonly firstElementChild: Element | null;
217
220
  readonly lastElementChild: Element | null;
218
- append(...nodes: (string | Node)[]): void;
219
- prepend(...nodes: (string | Node)[]): void;
220
- querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
221
- querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
222
- querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
223
- querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
224
- querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
225
- querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
226
- querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
227
- querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
228
- querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
229
- querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
230
- replaceChildren(...nodes: (string | Node)[]): void;
221
+ append(...nodes: (Node | string)[]): void;
222
+ prepend(...nodes: (Node | string)[]): void;
223
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
224
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
225
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
226
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
227
+ querySelector<E extends Element = Element>(selectors: string): E | null;
228
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
229
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
230
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
231
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
232
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
233
+ replaceChildren(...nodes: (Node | string)[]): void;
231
234
  readonly assignedSlot: HTMLSlotElement | null;
232
235
  readonly attributeStyleMap: StylePropertyMap;
233
236
  readonly style: CSSStyleDeclaration;
@@ -298,7 +301,7 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
298
301
  onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
299
302
  onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
300
303
  onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
301
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
304
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
302
305
  onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
303
306
  onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
304
307
  onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
@@ -333,10 +336,10 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
333
336
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
334
337
  autofocus: boolean;
335
338
  readonly dataset: DOMStringMap;
336
- nonce?: string | undefined;
339
+ nonce?: string;
337
340
  tabIndex: number;
338
341
  blur(): void;
339
- focus(options?: FocusOptions | undefined): void;
342
+ focus(options?: FocusOptions): void;
340
343
  };
341
344
  } & C;
342
345
  export default Api2ServiceMixin;
@@ -33,14 +33,14 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
33
33
  hidePopover(): void;
34
34
  showPopover(): void;
35
35
  showPopover(): void;
36
- togglePopover(force?: boolean | undefined): boolean;
36
+ togglePopover(force?: boolean): boolean;
37
37
  togglePopover(force: boolean): void;
38
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
39
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
40
- removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
41
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
42
- floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation | undefined;
43
- lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation | undefined;
38
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
39
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
40
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
41
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
42
+ floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
43
+ lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
44
44
  readonly attributes: NamedNodeMap;
45
45
  readonly classList: DOMTokenList;
46
46
  className: string;
@@ -65,10 +65,10 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
65
65
  slot: string;
66
66
  readonly tagName: string;
67
67
  attachShadow(init: ShadowRootInit): ShadowRoot;
68
- checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
69
- closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
70
- closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
71
- closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
68
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
69
+ closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
70
+ closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
71
+ closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
72
72
  closest<E extends Element = Element>(selectors: string): E | null;
73
73
  computedStyleMap(): StylePropertyMapReadOnly;
74
74
  getAttribute(qualifiedName: string): string | null;
@@ -79,10 +79,10 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
79
79
  getBoundingClientRect(): DOMRect;
80
80
  getClientRects(): DOMRectList;
81
81
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
82
- getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
83
- getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
84
- getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
85
- getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
82
+ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
83
+ getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
84
+ getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
85
+ getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
86
86
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
87
87
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
88
88
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -100,21 +100,22 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
100
100
  removeAttribute(qualifiedName: string): void;
101
101
  removeAttributeNS(namespace: string | null, localName: string): void;
102
102
  removeAttributeNode(attr: Attr): Attr;
103
- requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
103
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
104
104
  requestPointerLock(): void;
105
- scroll(options?: ScrollToOptions | undefined): void;
105
+ scroll(options?: ScrollToOptions): void;
106
106
  scroll(x: number, y: number): void;
107
- scrollBy(options?: ScrollToOptions | undefined): void;
107
+ scrollBy(options?: ScrollToOptions): void;
108
108
  scrollBy(x: number, y: number): void;
109
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
110
- scrollTo(options?: ScrollToOptions | undefined): void;
109
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
110
+ scrollTo(options?: ScrollToOptions): void;
111
111
  scrollTo(x: number, y: number): void;
112
112
  setAttribute(qualifiedName: string, value: string): void;
113
113
  setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
114
114
  setAttributeNode(attr: Attr): Attr | null;
115
115
  setAttributeNodeNS(attr: Attr): Attr | null;
116
+ setHTMLUnsafe(html: string): void;
116
117
  setPointerCapture(pointerId: number): void;
117
- toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
118
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
118
119
  webkitMatchesSelector(selectors: string): boolean;
119
120
  readonly baseURI: string;
120
121
  readonly childNodes: NodeListOf<ChildNode>;
@@ -130,20 +131,20 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
130
131
  readonly previousSibling: ChildNode | null;
131
132
  textContent: string | null;
132
133
  appendChild<T extends Node>(node: T): T;
133
- cloneNode(deep?: boolean | undefined): Node;
134
+ cloneNode(deep?: boolean): Node;
134
135
  compareDocumentPosition(other: Node): number;
135
136
  contains(other: Node | null): boolean;
136
- getRootNode(options?: GetRootNodeOptions | undefined): Node;
137
+ getRootNode(options?: GetRootNodeOptions): Node;
137
138
  hasChildNodes(): boolean;
138
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
139
+ insertBefore<T extends Node>(node: T, child: Node | null): T;
139
140
  isDefaultNamespace(namespace: string | null): boolean;
140
141
  isEqualNode(otherNode: Node | null): boolean;
141
142
  isSameNode(otherNode: Node | null): boolean;
142
143
  lookupNamespaceURI(prefix: string | null): string | null;
143
144
  lookupPrefix(namespace: string | null): string | null;
144
145
  normalize(): void;
145
- removeChild<T_2 extends Node>(child: T_2): T_2;
146
- replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
146
+ removeChild<T extends Node>(child: T): T;
147
+ replaceChild<T extends Node>(node: Node, child: T): T;
147
148
  readonly ELEMENT_NODE: 1;
148
149
  readonly ATTRIBUTE_NODE: 2;
149
150
  readonly TEXT_NODE: 3;
@@ -165,6 +166,8 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
165
166
  dispatchEvent(event: Event): boolean;
166
167
  ariaAtomic: string | null;
167
168
  ariaAutoComplete: string | null;
169
+ ariaBrailleLabel: string | null;
170
+ ariaBrailleRoleDescription: string | null;
168
171
  ariaBusy: string | null;
169
172
  ariaChecked: string | null;
170
173
  ariaColCount: string | null;
@@ -202,12 +205,12 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
202
205
  ariaValueNow: string | null;
203
206
  ariaValueText: string | null;
204
207
  role: string | null;
205
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
206
- getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
207
- after(...nodes: (string | Node)[]): void;
208
- before(...nodes: (string | Node)[]): void;
208
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
209
+ getAnimations(options?: GetAnimationsOptions): Animation[];
210
+ after(...nodes: (Node | string)[]): void;
211
+ before(...nodes: (Node | string)[]): void;
209
212
  remove(): void;
210
- replaceWith(...nodes: (string | Node)[]): void;
213
+ replaceWith(...nodes: (Node | string)[]): void;
211
214
  innerHTML: string;
212
215
  readonly nextElementSibling: Element | null;
213
216
  readonly previousElementSibling: Element | null;
@@ -215,19 +218,19 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
215
218
  readonly children: HTMLCollection;
216
219
  readonly firstElementChild: Element | null;
217
220
  readonly lastElementChild: Element | null;
218
- append(...nodes: (string | Node)[]): void;
219
- prepend(...nodes: (string | Node)[]): void;
220
- querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
221
- querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
222
- querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
223
- querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
224
- querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
225
- querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
226
- querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
227
- querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
228
- querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
229
- querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
230
- replaceChildren(...nodes: (string | Node)[]): void;
221
+ append(...nodes: (Node | string)[]): void;
222
+ prepend(...nodes: (Node | string)[]): void;
223
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
224
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
225
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
226
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
227
+ querySelector<E extends Element = Element>(selectors: string): E | null;
228
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
229
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
230
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
231
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
232
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
233
+ replaceChildren(...nodes: (Node | string)[]): void;
231
234
  readonly assignedSlot: HTMLSlotElement | null;
232
235
  readonly attributeStyleMap: StylePropertyMap;
233
236
  readonly style: CSSStyleDeclaration;
@@ -298,7 +301,7 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
298
301
  onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
299
302
  onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
300
303
  onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
301
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
304
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
302
305
  onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
303
306
  onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
304
307
  onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
@@ -333,10 +336,10 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
333
336
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
334
337
  autofocus: boolean;
335
338
  readonly dataset: DOMStringMap;
336
- nonce?: string | undefined;
339
+ nonce?: string;
337
340
  tabIndex: number;
338
341
  blur(): void;
339
- focus(options?: FocusOptions | undefined): void;
342
+ focus(options?: FocusOptions): void;
340
343
  };
341
344
  } & C;
342
345
  export default MapiServiceMixin;
@@ -36,6 +36,7 @@ export declare class LeavittCompanySelect extends TitaniumSingleSelectBase<Parti
36
36
  * Set the name of the API controller to use
37
37
  */
38
38
  accessor apiControllerName: string;
39
+ accessor renderMenuItemContentTemplate: (company: Partial<Company>) => import("lit-html").TemplateResult<1>;
39
40
  firstUpdated(): Promise<void>;
40
41
  updated(changedProps: PropertyValues<this>): Promise<void>;
41
42
  /**
@@ -54,6 +54,14 @@ let LeavittCompanySelect = class LeavittCompanySelect extends TitaniumSingleSele
54
54
  */
55
55
  get apiControllerName() { return this.#apiControllerName_accessor_storage; }
56
56
  set apiControllerName(value) { this.#apiControllerName_accessor_storage = value; }
57
+ #renderMenuItemContentTemplate_accessor_storage = (company) => html `<md-menu-item .item=${company}>
58
+ <slot name="trailing-icon" slot="trailing-icon"></slot>
59
+ <span slot="headline">${company.Name}</span>
60
+ <span slot="supporting-text">${company.ShortName || '-'}</span>
61
+ <img loading="lazy" company-mark slot="start" src=${company.MarkUrl || 'https://cdn.leavitt.com/lg-mark.svg'} />
62
+ </md-menu-item>`;
63
+ get renderMenuItemContentTemplate() { return this.#renderMenuItemContentTemplate_accessor_storage; }
64
+ set renderMenuItemContentTemplate(value) { this.#renderMenuItemContentTemplate_accessor_storage = value; }
57
65
  async firstUpdated() {
58
66
  if (!this.disableAutoLoad && !this.companies.length && this.apiService) {
59
67
  this.#reloadCompanies();
@@ -122,12 +130,7 @@ let LeavittCompanySelect = class LeavittCompanySelect extends TitaniumSingleSele
122
130
  return html ` <img leading slot="leading-icon" src=${entity.MarkUrl || 'https://cdn.leavitt.com/lg-mark.svg'} />`;
123
131
  }
124
132
  renderSuggestion(company) {
125
- return html `<md-menu-item .item=${company} ?selected=${this.selected?.Id === company.Id}>
126
- <slot name="trailing-icon" slot="trailing-icon"></slot>
127
- <span slot="headline">${company.Name}</span>
128
- <span slot="supporting-text">${company.ShortName || '-'}</span>
129
- <img loading="lazy" company-mark slot="start" src=${company.MarkUrl || 'https://cdn.leavitt.com/lg-mark.svg'} />
130
- </md-menu-item>`;
133
+ return this.renderMenuItemContentTemplate(company);
131
134
  }
132
135
  };
133
136
  __decorate([
@@ -154,6 +157,9 @@ __decorate([
154
157
  __decorate([
155
158
  property({ type: String })
156
159
  ], LeavittCompanySelect.prototype, "apiControllerName", null);
160
+ __decorate([
161
+ property({ type: Object })
162
+ ], LeavittCompanySelect.prototype, "renderMenuItemContentTemplate", null);
157
163
  LeavittCompanySelect = __decorate([
158
164
  customElement('leavitt-company-select')
159
165
  ], LeavittCompanySelect);
@@ -1 +1 @@
1
- {"version":3,"file":"company-select.js","sourceRoot":"","sources":["company-select.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"company-select.js","sourceRoot":"","sources":["company-select.ts"],"names":[],"mappings":"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"}