@leavittsoftware/web 5.1.4 → 5.2.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/api-service/api2-service.d.ts +18 -6
- package/leavitt/api-service/mapi-service.d.ts +18 -6
- package/leavitt/company-select/company-select.d.ts +0 -1
- package/leavitt/company-select/company-select.js +0 -6
- package/leavitt/company-select/company-select.js.map +1 -1
- package/leavitt/file-explorer/add-folder-modal.d.ts +20 -8
- package/leavitt/file-explorer/file-explorer.d.ts +20 -8
- package/leavitt/file-explorer/file-modal.d.ts +20 -8
- package/leavitt/file-explorer/folder-modal.d.ts +20 -8
- package/leavitt/person-company-select/person-company-select.d.ts +0 -1
- package/leavitt/person-company-select/person-company-select.js +0 -6
- package/leavitt/person-company-select/person-company-select.js.map +1 -1
- package/leavitt/person-group-select/person-group-select.d.ts +0 -1
- package/leavitt/person-group-select/person-group-select.js +0 -6
- package/leavitt/person-group-select/person-group-select.js.map +1 -1
- package/leavitt/person-select/person-select.d.ts +0 -1
- package/leavitt/person-select/person-select.js +0 -6
- package/leavitt/person-select/person-select.js.map +1 -1
- package/leavitt/user-feedback/provide-feedback-dialog.d.ts +20 -8
- package/leavitt/user-feedback/report-a-problem-dialog.d.ts +20 -8
- package/leavitt/user-feedback/user-feedback.d.ts +20 -8
- package/package.json +2 -2
- package/titanium/address-input/google-address-input.d.ts +0 -1
- package/titanium/address-input/google-address-input.js +0 -6
- package/titanium/address-input/google-address-input.js.map +1 -1
- package/titanium/address-input/manual-address-dialog.js +2 -2
- package/titanium/address-input/manual-address-dialog.js.map +1 -1
- package/titanium/duration-input/duration-input.d.ts +0 -1
- package/titanium/duration-input/duration-input.js +0 -6
- package/titanium/duration-input/duration-input.js.map +1 -1
- package/titanium/extendable-outlined-text-field/extendable-outlined-text-field.d.ts +0 -6
- package/titanium/extendable-outlined-text-field/extendable-outlined-text-field.js +0 -12
- package/titanium/extendable-outlined-text-field/extendable-outlined-text-field.js.map +1 -1
- package/titanium/helpers/load-while.d.ts +20 -8
- package/titanium/icon-picker/icon-picker.d.ts +0 -1
- package/titanium/icon-picker/icon-picker.js +0 -6
- package/titanium/icon-picker/icon-picker.js.map +1 -1
- package/titanium/search-input/search-input.d.ts +0 -1
- package/titanium/search-input/search-input.js +0 -6
- package/titanium/search-input/search-input.js.map +1 -1
- package/titanium/single-select-base/single-select-base.d.ts +20 -14
- package/titanium/single-select-base/single-select-base.js +0 -13
- package/titanium/single-select-base/single-select-base.js.map +1 -1
- package/titanium/smart-attachment-input/crop-and-save-image-dialog.d.ts +20 -8
- package/titanium/smart-attachment-input/smart-attachment-input.d.ts +4 -0
- package/titanium/smart-attachment-input/smart-attachment-input.js +10 -0
- package/titanium/smart-attachment-input/smart-attachment-input.js.map +1 -1
- package/titanium/youtube-input/youtube-input.d.ts +0 -1
- package/titanium/youtube-input/youtube-input.js +0 -6
- package/titanium/youtube-input/youtube-input.js.map +1 -1
|
@@ -11,6 +11,7 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
11
11
|
accessKey: string;
|
|
12
12
|
readonly accessKeyLabel: string;
|
|
13
13
|
autocapitalize: string;
|
|
14
|
+
autocorrect: boolean;
|
|
14
15
|
dir: string;
|
|
15
16
|
draggable: boolean;
|
|
16
17
|
hidden: boolean;
|
|
@@ -123,6 +124,8 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
123
124
|
setPointerCapture(pointerId: number): void;
|
|
124
125
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
125
126
|
webkitMatchesSelector(selectors: string): boolean;
|
|
127
|
+
get textContent(): string;
|
|
128
|
+
set textContent(value: string | null);
|
|
126
129
|
readonly baseURI: string;
|
|
127
130
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
128
131
|
readonly firstChild: ChildNode | null;
|
|
@@ -135,7 +138,6 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
135
138
|
readonly parentElement: HTMLElement | null;
|
|
136
139
|
readonly parentNode: ParentNode | null;
|
|
137
140
|
readonly previousSibling: ChildNode | null;
|
|
138
|
-
textContent: string | null;
|
|
139
141
|
appendChild<T extends Node>(node: T): T;
|
|
140
142
|
cloneNode(subtree?: boolean): Node;
|
|
141
143
|
compareDocumentPosition(other: Node): number;
|
|
@@ -170,6 +172,7 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
170
172
|
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
171
173
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
172
174
|
dispatchEvent(event: Event): boolean;
|
|
175
|
+
ariaActiveDescendantElement: Element | null;
|
|
173
176
|
ariaAtomic: string | null;
|
|
174
177
|
ariaAutoComplete: string | null;
|
|
175
178
|
ariaBrailleLabel: string | null;
|
|
@@ -180,21 +183,28 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
180
183
|
ariaColIndex: string | null;
|
|
181
184
|
ariaColIndexText: string | null;
|
|
182
185
|
ariaColSpan: string | null;
|
|
186
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
183
187
|
ariaCurrent: string | null;
|
|
188
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
184
189
|
ariaDescription: string | null;
|
|
190
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
185
191
|
ariaDisabled: string | null;
|
|
192
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
186
193
|
ariaExpanded: string | null;
|
|
194
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
187
195
|
ariaHasPopup: string | null;
|
|
188
196
|
ariaHidden: string | null;
|
|
189
197
|
ariaInvalid: string | null;
|
|
190
198
|
ariaKeyShortcuts: string | null;
|
|
191
199
|
ariaLabel: string | null;
|
|
200
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
192
201
|
ariaLevel: string | null;
|
|
193
202
|
ariaLive: string | null;
|
|
194
203
|
ariaModal: string | null;
|
|
195
204
|
ariaMultiLine: string | null;
|
|
196
205
|
ariaMultiSelectable: string | null;
|
|
197
206
|
ariaOrientation: string | null;
|
|
207
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
198
208
|
ariaPlaceholder: string | null;
|
|
199
209
|
ariaPosInSet: string | null;
|
|
200
210
|
ariaPressed: string | null;
|
|
@@ -252,18 +262,19 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
252
262
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
253
263
|
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
254
264
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
255
|
-
onauxclick: ((this: GlobalEventHandlers, ev:
|
|
265
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
256
266
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
257
|
-
|
|
267
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
268
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
258
269
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
259
270
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
260
271
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
261
272
|
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
262
273
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
263
|
-
onclick: ((this: GlobalEventHandlers, ev:
|
|
274
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
264
275
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
265
276
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
266
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev:
|
|
277
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
267
278
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
268
279
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
269
280
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -311,6 +322,7 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
311
322
|
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
312
323
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
313
324
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
325
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
314
326
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
315
327
|
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
316
328
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -329,7 +341,7 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
329
341
|
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
330
342
|
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
331
343
|
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
332
|
-
ontoggle: ((this: GlobalEventHandlers, ev:
|
|
344
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
333
345
|
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
334
346
|
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
335
347
|
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -11,6 +11,7 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
11
11
|
accessKey: string;
|
|
12
12
|
readonly accessKeyLabel: string;
|
|
13
13
|
autocapitalize: string;
|
|
14
|
+
autocorrect: boolean;
|
|
14
15
|
dir: string;
|
|
15
16
|
draggable: boolean;
|
|
16
17
|
hidden: boolean;
|
|
@@ -123,6 +124,8 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
123
124
|
setPointerCapture(pointerId: number): void;
|
|
124
125
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
125
126
|
webkitMatchesSelector(selectors: string): boolean;
|
|
127
|
+
get textContent(): string;
|
|
128
|
+
set textContent(value: string | null);
|
|
126
129
|
readonly baseURI: string;
|
|
127
130
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
128
131
|
readonly firstChild: ChildNode | null;
|
|
@@ -135,7 +138,6 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
135
138
|
readonly parentElement: HTMLElement | null;
|
|
136
139
|
readonly parentNode: ParentNode | null;
|
|
137
140
|
readonly previousSibling: ChildNode | null;
|
|
138
|
-
textContent: string | null;
|
|
139
141
|
appendChild<T extends Node>(node: T): T;
|
|
140
142
|
cloneNode(subtree?: boolean): Node;
|
|
141
143
|
compareDocumentPosition(other: Node): number;
|
|
@@ -170,6 +172,7 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
170
172
|
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
171
173
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
172
174
|
dispatchEvent(event: Event): boolean;
|
|
175
|
+
ariaActiveDescendantElement: Element | null;
|
|
173
176
|
ariaAtomic: string | null;
|
|
174
177
|
ariaAutoComplete: string | null;
|
|
175
178
|
ariaBrailleLabel: string | null;
|
|
@@ -180,21 +183,28 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
180
183
|
ariaColIndex: string | null;
|
|
181
184
|
ariaColIndexText: string | null;
|
|
182
185
|
ariaColSpan: string | null;
|
|
186
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
183
187
|
ariaCurrent: string | null;
|
|
188
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
184
189
|
ariaDescription: string | null;
|
|
190
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
185
191
|
ariaDisabled: string | null;
|
|
192
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
186
193
|
ariaExpanded: string | null;
|
|
194
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
187
195
|
ariaHasPopup: string | null;
|
|
188
196
|
ariaHidden: string | null;
|
|
189
197
|
ariaInvalid: string | null;
|
|
190
198
|
ariaKeyShortcuts: string | null;
|
|
191
199
|
ariaLabel: string | null;
|
|
200
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
192
201
|
ariaLevel: string | null;
|
|
193
202
|
ariaLive: string | null;
|
|
194
203
|
ariaModal: string | null;
|
|
195
204
|
ariaMultiLine: string | null;
|
|
196
205
|
ariaMultiSelectable: string | null;
|
|
197
206
|
ariaOrientation: string | null;
|
|
207
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
198
208
|
ariaPlaceholder: string | null;
|
|
199
209
|
ariaPosInSet: string | null;
|
|
200
210
|
ariaPressed: string | null;
|
|
@@ -252,18 +262,19 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
252
262
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
253
263
|
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
254
264
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
255
|
-
onauxclick: ((this: GlobalEventHandlers, ev:
|
|
265
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
256
266
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
257
|
-
|
|
267
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
268
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
258
269
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
259
270
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
260
271
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
261
272
|
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
262
273
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
263
|
-
onclick: ((this: GlobalEventHandlers, ev:
|
|
274
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
264
275
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
265
276
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
266
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev:
|
|
277
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
267
278
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
268
279
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
269
280
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -311,6 +322,7 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
311
322
|
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
312
323
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
313
324
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
325
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
314
326
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
315
327
|
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
316
328
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -329,7 +341,7 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
329
341
|
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
330
342
|
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
331
343
|
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
332
|
-
ontoggle: ((this: GlobalEventHandlers, ev:
|
|
344
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
333
345
|
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
334
346
|
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
335
347
|
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -38,7 +38,6 @@ export declare class LeavittCompanySelect extends TitaniumSingleSelectBase<Parti
|
|
|
38
38
|
accessor apiControllerName: string;
|
|
39
39
|
accessor autocomplete: string;
|
|
40
40
|
accessor spellcheck: boolean;
|
|
41
|
-
accessor autocorrect: string;
|
|
42
41
|
accessor renderMenuItemContentTemplate: (company: Partial<Company>) => import("lit-html").TemplateResult<1>;
|
|
43
42
|
firstUpdated(): Promise<void>;
|
|
44
43
|
updated(changedProps: PropertyValues<this>): Promise<void>;
|
|
@@ -60,9 +60,6 @@ let LeavittCompanySelect = class LeavittCompanySelect extends TitaniumSingleSele
|
|
|
60
60
|
#spellcheck_accessor_storage = false;
|
|
61
61
|
get spellcheck() { return this.#spellcheck_accessor_storage; }
|
|
62
62
|
set spellcheck(value) { this.#spellcheck_accessor_storage = value; }
|
|
63
|
-
#autocorrect_accessor_storage = 'off';
|
|
64
|
-
get autocorrect() { return this.#autocorrect_accessor_storage; }
|
|
65
|
-
set autocorrect(value) { this.#autocorrect_accessor_storage = value; }
|
|
66
63
|
#renderMenuItemContentTemplate_accessor_storage = (company) => html `<md-menu-item .item=${company}>
|
|
67
64
|
<slot name="trailing-icon" slot="trailing-icon"></slot>
|
|
68
65
|
<span slot="headline">${company.Name}</span>
|
|
@@ -171,9 +168,6 @@ __decorate([
|
|
|
171
168
|
__decorate([
|
|
172
169
|
property({ reflect: true, type: Boolean })
|
|
173
170
|
], LeavittCompanySelect.prototype, "spellcheck", null);
|
|
174
|
-
__decorate([
|
|
175
|
-
property({ reflect: true, type: String })
|
|
176
|
-
], LeavittCompanySelect.prototype, "autocorrect", null);
|
|
177
171
|
__decorate([
|
|
178
172
|
property({ type: Object })
|
|
179
173
|
], LeavittCompanySelect.prototype, "renderMenuItemContentTemplate", null);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"company-select.js","sourceRoot":"","sources":["company-select.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,IAAI,EAAkB,MAAM,KAAK,CAAC;AAChD,OAAO,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAE5D,OAAO,yBAAyB,CAAC;AACjC,OAAO,6CAA6C,CAAC;AAErD,OAAO,yBAAyB,CAAC;AACjC,OAAO,8BAA8B,CAAC;AAItC,OAAO,IAAI,MAAM,SAAS,CAAC;AAC3B,OAAO,EAAE,wBAAwB,EAAE,MAAM,sDAAsD,CAAC;AAEhG,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AAEhF;;;;;;;GAOG;AAEI,IAAM,oBAAoB,GAA1B,MAAM,oBAAqB,SAAQ,wBAA0C;IAC7C,0BAAgB,SAAS,CAAC;IAA1B,IAAA,KAAK,2CAAqB;IAA1B,IAAA,KAAK,iDAAqB;IAE1B,gCAAsB,sBAAsB,CAAC;IAA7C,IAAA,WAAW,iDAAkC;IAA7C,IAAA,WAAW,uDAAkC;IAE7C,uCAA6B,MAAM,CAAC;IAApC,IAAA,kBAAkB,wDAAkB;IAApC,IAAA,kBAAkB,8DAAkB;IAErC,8BAAqC,EAAE,CAAC;IAAxC,IAAA,SAAS,+CAA+B;IAAxC,IAAA,SAAS,qDAA+B;IAKnC,6BAAuB;IAHhE;;OAEG;IACsC,IAAA,UAAU,gDAAa;IAAvB,IAAA,UAAU,sDAAa;IAK1B,oCAA2B,KAAK,CAAC;IAHvE;;OAEG;IACmC,IAAA,eAAe,qDAAkB;IAAjC,IAAA,eAAe,2DAAkB;IAKnC,+BAA4B,CAAC,cAAc,EAAE,kCAAkC,CAAC,CAAC;IAHrH;;OAEG;IACiC,IAAA,UAAU,gDAAuE;IAAjF,IAAA,UAAU,sDAAuE;IAKhF,sCAA4B,WAAW,CAAC;IAH7E;;OAEG;IACkC,IAAA,iBAAiB,uDAAuB;IAAxC,IAAA,iBAAiB,6DAAuB;IAEzB,iCAAuB,KAAK,CAAC;IAA7B,IAAA,YAAY,kDAAiB;IAA7B,IAAA,YAAY,wDAAiB;IAE5B,+BAAsB,KAAK,CAAC;IAA5B,IAAA,UAAU,gDAAkB;IAA5B,IAAA,UAAU,sDAAkB;
|
|
1
|
+
{"version":3,"file":"company-select.js","sourceRoot":"","sources":["company-select.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,12 +6,13 @@ import { FileExplorerFolderDto } from '@leavittsoftware/lg-core-typescript';
|
|
|
6
6
|
import ApiService from '../api-service/api-service';
|
|
7
7
|
declare const AddFolderModal_base: {
|
|
8
8
|
new (...args: any[]): {
|
|
9
|
-
|
|
9
|
+
#promiseCount: number;
|
|
10
10
|
isLoading: boolean;
|
|
11
11
|
loadWhile(promise: Promise<unknown>): Promise<void>;
|
|
12
12
|
accessKey: string;
|
|
13
13
|
readonly accessKeyLabel: string;
|
|
14
14
|
autocapitalize: string;
|
|
15
|
+
autocorrect: boolean;
|
|
15
16
|
dir: string;
|
|
16
17
|
draggable: boolean;
|
|
17
18
|
hidden: boolean;
|
|
@@ -124,6 +125,8 @@ declare const AddFolderModal_base: {
|
|
|
124
125
|
setPointerCapture(pointerId: number): void;
|
|
125
126
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
126
127
|
webkitMatchesSelector(selectors: string): boolean;
|
|
128
|
+
get textContent(): string;
|
|
129
|
+
set textContent(value: string | null);
|
|
127
130
|
readonly baseURI: string;
|
|
128
131
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
129
132
|
readonly firstChild: ChildNode | null;
|
|
@@ -136,7 +139,6 @@ declare const AddFolderModal_base: {
|
|
|
136
139
|
readonly parentElement: HTMLElement | null;
|
|
137
140
|
readonly parentNode: ParentNode | null;
|
|
138
141
|
readonly previousSibling: ChildNode | null;
|
|
139
|
-
textContent: string | null;
|
|
140
142
|
appendChild<T extends Node>(node: T): T;
|
|
141
143
|
cloneNode(subtree?: boolean): Node;
|
|
142
144
|
compareDocumentPosition(other: Node): number;
|
|
@@ -171,6 +173,7 @@ declare const AddFolderModal_base: {
|
|
|
171
173
|
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
172
174
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
173
175
|
dispatchEvent(event: Event): boolean;
|
|
176
|
+
ariaActiveDescendantElement: Element | null;
|
|
174
177
|
ariaAtomic: string | null;
|
|
175
178
|
ariaAutoComplete: string | null;
|
|
176
179
|
ariaBrailleLabel: string | null;
|
|
@@ -181,21 +184,28 @@ declare const AddFolderModal_base: {
|
|
|
181
184
|
ariaColIndex: string | null;
|
|
182
185
|
ariaColIndexText: string | null;
|
|
183
186
|
ariaColSpan: string | null;
|
|
187
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
184
188
|
ariaCurrent: string | null;
|
|
189
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
185
190
|
ariaDescription: string | null;
|
|
191
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
186
192
|
ariaDisabled: string | null;
|
|
193
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
187
194
|
ariaExpanded: string | null;
|
|
195
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
188
196
|
ariaHasPopup: string | null;
|
|
189
197
|
ariaHidden: string | null;
|
|
190
198
|
ariaInvalid: string | null;
|
|
191
199
|
ariaKeyShortcuts: string | null;
|
|
192
200
|
ariaLabel: string | null;
|
|
201
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
193
202
|
ariaLevel: string | null;
|
|
194
203
|
ariaLive: string | null;
|
|
195
204
|
ariaModal: string | null;
|
|
196
205
|
ariaMultiLine: string | null;
|
|
197
206
|
ariaMultiSelectable: string | null;
|
|
198
207
|
ariaOrientation: string | null;
|
|
208
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
199
209
|
ariaPlaceholder: string | null;
|
|
200
210
|
ariaPosInSet: string | null;
|
|
201
211
|
ariaPressed: string | null;
|
|
@@ -253,18 +263,19 @@ declare const AddFolderModal_base: {
|
|
|
253
263
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
254
264
|
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
255
265
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
256
|
-
onauxclick: ((this: GlobalEventHandlers, ev:
|
|
266
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
257
267
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
258
|
-
|
|
268
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
269
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
259
270
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
260
271
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
261
272
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
262
273
|
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
263
274
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
264
|
-
onclick: ((this: GlobalEventHandlers, ev:
|
|
275
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
265
276
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
266
277
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
267
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev:
|
|
278
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
268
279
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
269
280
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
270
281
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -312,6 +323,7 @@ declare const AddFolderModal_base: {
|
|
|
312
323
|
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
313
324
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
314
325
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
326
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
315
327
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
316
328
|
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
317
329
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -330,7 +342,7 @@ declare const AddFolderModal_base: {
|
|
|
330
342
|
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
331
343
|
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
332
344
|
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
333
|
-
ontoggle: ((this: GlobalEventHandlers, ev:
|
|
345
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
334
346
|
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
335
347
|
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
336
348
|
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -353,7 +365,7 @@ declare const AddFolderModal_base: {
|
|
|
353
365
|
blur(): void;
|
|
354
366
|
focus(options?: FocusOptions): void;
|
|
355
367
|
};
|
|
356
|
-
|
|
368
|
+
get properties(): {
|
|
357
369
|
isLoading: {
|
|
358
370
|
type: BooleanConstructor;
|
|
359
371
|
};
|
|
@@ -16,12 +16,13 @@ import './file-list-item';
|
|
|
16
16
|
import './folder-list-item';
|
|
17
17
|
declare const LeavittFileExplorer_base: {
|
|
18
18
|
new (...args: any[]): {
|
|
19
|
-
|
|
19
|
+
#promiseCount: number;
|
|
20
20
|
isLoading: boolean;
|
|
21
21
|
loadWhile(promise: Promise<unknown>): Promise<void>;
|
|
22
22
|
accessKey: string;
|
|
23
23
|
readonly accessKeyLabel: string;
|
|
24
24
|
autocapitalize: string;
|
|
25
|
+
autocorrect: boolean;
|
|
25
26
|
dir: string;
|
|
26
27
|
draggable: boolean;
|
|
27
28
|
hidden: boolean;
|
|
@@ -134,6 +135,8 @@ declare const LeavittFileExplorer_base: {
|
|
|
134
135
|
setPointerCapture(pointerId: number): void;
|
|
135
136
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
136
137
|
webkitMatchesSelector(selectors: string): boolean;
|
|
138
|
+
get textContent(): string;
|
|
139
|
+
set textContent(value: string | null);
|
|
137
140
|
readonly baseURI: string;
|
|
138
141
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
139
142
|
readonly firstChild: ChildNode | null;
|
|
@@ -146,7 +149,6 @@ declare const LeavittFileExplorer_base: {
|
|
|
146
149
|
readonly parentElement: HTMLElement | null;
|
|
147
150
|
readonly parentNode: ParentNode | null;
|
|
148
151
|
readonly previousSibling: ChildNode | null;
|
|
149
|
-
textContent: string | null;
|
|
150
152
|
appendChild<T extends Node>(node: T): T;
|
|
151
153
|
cloneNode(subtree?: boolean): Node;
|
|
152
154
|
compareDocumentPosition(other: Node): number;
|
|
@@ -181,6 +183,7 @@ declare const LeavittFileExplorer_base: {
|
|
|
181
183
|
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
182
184
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
183
185
|
dispatchEvent(event: Event): boolean;
|
|
186
|
+
ariaActiveDescendantElement: Element | null;
|
|
184
187
|
ariaAtomic: string | null;
|
|
185
188
|
ariaAutoComplete: string | null;
|
|
186
189
|
ariaBrailleLabel: string | null;
|
|
@@ -191,21 +194,28 @@ declare const LeavittFileExplorer_base: {
|
|
|
191
194
|
ariaColIndex: string | null;
|
|
192
195
|
ariaColIndexText: string | null;
|
|
193
196
|
ariaColSpan: string | null;
|
|
197
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
194
198
|
ariaCurrent: string | null;
|
|
199
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
195
200
|
ariaDescription: string | null;
|
|
201
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
196
202
|
ariaDisabled: string | null;
|
|
203
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
197
204
|
ariaExpanded: string | null;
|
|
205
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
198
206
|
ariaHasPopup: string | null;
|
|
199
207
|
ariaHidden: string | null;
|
|
200
208
|
ariaInvalid: string | null;
|
|
201
209
|
ariaKeyShortcuts: string | null;
|
|
202
210
|
ariaLabel: string | null;
|
|
211
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
203
212
|
ariaLevel: string | null;
|
|
204
213
|
ariaLive: string | null;
|
|
205
214
|
ariaModal: string | null;
|
|
206
215
|
ariaMultiLine: string | null;
|
|
207
216
|
ariaMultiSelectable: string | null;
|
|
208
217
|
ariaOrientation: string | null;
|
|
218
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
209
219
|
ariaPlaceholder: string | null;
|
|
210
220
|
ariaPosInSet: string | null;
|
|
211
221
|
ariaPressed: string | null;
|
|
@@ -263,18 +273,19 @@ declare const LeavittFileExplorer_base: {
|
|
|
263
273
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
264
274
|
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
265
275
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
266
|
-
onauxclick: ((this: GlobalEventHandlers, ev:
|
|
276
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
267
277
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
268
|
-
|
|
278
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
279
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
269
280
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
270
281
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
271
282
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
272
283
|
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
273
284
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
274
|
-
onclick: ((this: GlobalEventHandlers, ev:
|
|
285
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
275
286
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
276
287
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
277
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev:
|
|
288
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
278
289
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
279
290
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
280
291
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -322,6 +333,7 @@ declare const LeavittFileExplorer_base: {
|
|
|
322
333
|
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
323
334
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
324
335
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
336
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
325
337
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
326
338
|
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
327
339
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -340,7 +352,7 @@ declare const LeavittFileExplorer_base: {
|
|
|
340
352
|
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
341
353
|
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
342
354
|
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
343
|
-
ontoggle: ((this: GlobalEventHandlers, ev:
|
|
355
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
344
356
|
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
345
357
|
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
346
358
|
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -363,7 +375,7 @@ declare const LeavittFileExplorer_base: {
|
|
|
363
375
|
blur(): void;
|
|
364
376
|
focus(options?: FocusOptions): void;
|
|
365
377
|
};
|
|
366
|
-
|
|
378
|
+
get properties(): {
|
|
367
379
|
isLoading: {
|
|
368
380
|
type: BooleanConstructor;
|
|
369
381
|
};
|
|
@@ -9,12 +9,13 @@ import { FileExplorerFileDto } from '@leavittsoftware/lg-core-typescript';
|
|
|
9
9
|
import ApiService from '../api-service/api-service';
|
|
10
10
|
declare const FileModal_base: {
|
|
11
11
|
new (...args: any[]): {
|
|
12
|
-
|
|
12
|
+
#promiseCount: number;
|
|
13
13
|
isLoading: boolean;
|
|
14
14
|
loadWhile(promise: Promise<unknown>): Promise<void>;
|
|
15
15
|
accessKey: string;
|
|
16
16
|
readonly accessKeyLabel: string;
|
|
17
17
|
autocapitalize: string;
|
|
18
|
+
autocorrect: boolean;
|
|
18
19
|
dir: string;
|
|
19
20
|
draggable: boolean;
|
|
20
21
|
hidden: boolean;
|
|
@@ -127,6 +128,8 @@ declare const FileModal_base: {
|
|
|
127
128
|
setPointerCapture(pointerId: number): void;
|
|
128
129
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
129
130
|
webkitMatchesSelector(selectors: string): boolean;
|
|
131
|
+
get textContent(): string;
|
|
132
|
+
set textContent(value: string | null);
|
|
130
133
|
readonly baseURI: string;
|
|
131
134
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
132
135
|
readonly firstChild: ChildNode | null;
|
|
@@ -139,7 +142,6 @@ declare const FileModal_base: {
|
|
|
139
142
|
readonly parentElement: HTMLElement | null;
|
|
140
143
|
readonly parentNode: ParentNode | null;
|
|
141
144
|
readonly previousSibling: ChildNode | null;
|
|
142
|
-
textContent: string | null;
|
|
143
145
|
appendChild<T extends Node>(node: T): T;
|
|
144
146
|
cloneNode(subtree?: boolean): Node;
|
|
145
147
|
compareDocumentPosition(other: Node): number;
|
|
@@ -174,6 +176,7 @@ declare const FileModal_base: {
|
|
|
174
176
|
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
175
177
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
176
178
|
dispatchEvent(event: Event): boolean;
|
|
179
|
+
ariaActiveDescendantElement: Element | null;
|
|
177
180
|
ariaAtomic: string | null;
|
|
178
181
|
ariaAutoComplete: string | null;
|
|
179
182
|
ariaBrailleLabel: string | null;
|
|
@@ -184,21 +187,28 @@ declare const FileModal_base: {
|
|
|
184
187
|
ariaColIndex: string | null;
|
|
185
188
|
ariaColIndexText: string | null;
|
|
186
189
|
ariaColSpan: string | null;
|
|
190
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
187
191
|
ariaCurrent: string | null;
|
|
192
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
188
193
|
ariaDescription: string | null;
|
|
194
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
189
195
|
ariaDisabled: string | null;
|
|
196
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
190
197
|
ariaExpanded: string | null;
|
|
198
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
191
199
|
ariaHasPopup: string | null;
|
|
192
200
|
ariaHidden: string | null;
|
|
193
201
|
ariaInvalid: string | null;
|
|
194
202
|
ariaKeyShortcuts: string | null;
|
|
195
203
|
ariaLabel: string | null;
|
|
204
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
196
205
|
ariaLevel: string | null;
|
|
197
206
|
ariaLive: string | null;
|
|
198
207
|
ariaModal: string | null;
|
|
199
208
|
ariaMultiLine: string | null;
|
|
200
209
|
ariaMultiSelectable: string | null;
|
|
201
210
|
ariaOrientation: string | null;
|
|
211
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
202
212
|
ariaPlaceholder: string | null;
|
|
203
213
|
ariaPosInSet: string | null;
|
|
204
214
|
ariaPressed: string | null;
|
|
@@ -256,18 +266,19 @@ declare const FileModal_base: {
|
|
|
256
266
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
257
267
|
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
258
268
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
259
|
-
onauxclick: ((this: GlobalEventHandlers, ev:
|
|
269
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
260
270
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
261
|
-
|
|
271
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
272
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
262
273
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
263
274
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
264
275
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
265
276
|
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
266
277
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
267
|
-
onclick: ((this: GlobalEventHandlers, ev:
|
|
278
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
268
279
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
269
280
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
270
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev:
|
|
281
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
271
282
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
272
283
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
273
284
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -315,6 +326,7 @@ declare const FileModal_base: {
|
|
|
315
326
|
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
316
327
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
317
328
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
329
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
318
330
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
319
331
|
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
320
332
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -333,7 +345,7 @@ declare const FileModal_base: {
|
|
|
333
345
|
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
334
346
|
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
335
347
|
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
336
|
-
ontoggle: ((this: GlobalEventHandlers, ev:
|
|
348
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
337
349
|
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
338
350
|
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
339
351
|
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -356,7 +368,7 @@ declare const FileModal_base: {
|
|
|
356
368
|
blur(): void;
|
|
357
369
|
focus(options?: FocusOptions): void;
|
|
358
370
|
};
|
|
359
|
-
|
|
371
|
+
get properties(): {
|
|
360
372
|
isLoading: {
|
|
361
373
|
type: BooleanConstructor;
|
|
362
374
|
};
|