@genesislcap/pbc-documents-ui 14.339.0 → 14.339.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.
- package/dist/dts/components/document-upload/document-upload.d.ts +222 -219
- package/dist/dts/components/document-upload/document-upload.d.ts.map +1 -1
- package/dist/dts/components/document-upload/document-upload.template.d.ts +1 -1
- package/dist/dts/components/document-upload/document-upload.template.d.ts.map +1 -1
- package/dist/dts/components/utils/icons.d.ts.map +1 -1
- package/dist/dts/main/main.d.ts +221 -218
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/dts/main/main.template.d.ts +1 -1
- package/dist/dts/main/main.template.d.ts.map +1 -1
- package/dist/dts/utils/formatting.d.ts.map +1 -1
- package/dist/dts/utils/misc.d.ts.map +1 -1
- package/dist/dts/utils/notifications.d.ts.map +1 -1
- package/dist/esm/components/document-upload/document-upload.js +1 -1
- package/dist/esm/components/document-upload/document-upload.js.map +1 -1
- package/dist/esm/components/template-asset-link/template-asset-link.js.map +1 -1
- package/dist/esm/config/configure.js.map +1 -1
- package/dist/esm/main/main.js.map +1 -1
- package/dist/esm/sandbox.js.map +1 -1
- package/dist/esm/services/document.service.js.map +1 -1
- package/dist/esm/utils/formatting.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +27 -27
- package/src/components/document-upload/document-upload.template.ts +1 -1
- package/src/components/document-upload/document-upload.ts +2 -2
- package/src/components/utils/action-cell-renderer.ts +1 -1
- package/src/main/main.template.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DocManagerEventDetailMap, DocManagerEvents, FileMetaType, FileUploadMode } from '../../main';
|
|
2
1
|
import { IDocumentService } from '../../services/document.service';
|
|
2
|
+
import { DocManagerEventDetailMap, DocManagerEvents, FileMetaType, FileUploadMode } from '../../types/main.types';
|
|
3
3
|
import { UploadState } from './document-upload.types';
|
|
4
4
|
declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
5
5
|
$emit<K extends DocManagerEvents>(...args: DocManagerEventDetailMap[K] extends void ? [type: K, options?: import("@genesislcap/foundation-events").EmitOptions] : [type: K, detail: DocManagerEventDetailMap[K], options?: import("@genesislcap/foundation-events").EmitOptions]): import("@genesislcap/foundation-events").EmitReturn;
|
|
@@ -15,11 +15,11 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
15
15
|
lang: string;
|
|
16
16
|
readonly offsetHeight: number;
|
|
17
17
|
readonly offsetLeft: number;
|
|
18
|
-
readonly offsetParent: Element;
|
|
18
|
+
readonly offsetParent: Element | null;
|
|
19
19
|
readonly offsetTop: number;
|
|
20
20
|
readonly offsetWidth: number;
|
|
21
21
|
outerText: string;
|
|
22
|
-
popover: string;
|
|
22
|
+
popover: string | null;
|
|
23
23
|
spellcheck: boolean;
|
|
24
24
|
title: string;
|
|
25
25
|
translate: boolean;
|
|
@@ -29,12 +29,13 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
29
29
|
hidePopover(): void;
|
|
30
30
|
showPopover(): void;
|
|
31
31
|
togglePopover(options?: boolean): boolean;
|
|
32
|
-
addEventListener<
|
|
32
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
33
33
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
34
|
-
removeEventListener<
|
|
34
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
35
35
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
36
36
|
readonly attributes: NamedNodeMap;
|
|
37
|
-
classList: DOMTokenList;
|
|
37
|
+
get classList(): DOMTokenList;
|
|
38
|
+
set classList(value: string);
|
|
38
39
|
className: string;
|
|
39
40
|
readonly clientHeight: number;
|
|
40
41
|
readonly clientLeft: number;
|
|
@@ -44,56 +45,57 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
44
45
|
id: string;
|
|
45
46
|
innerHTML: string;
|
|
46
47
|
readonly localName: string;
|
|
47
|
-
readonly namespaceURI: string;
|
|
48
|
+
readonly namespaceURI: string | null;
|
|
48
49
|
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
49
50
|
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
50
51
|
outerHTML: string;
|
|
51
52
|
readonly ownerDocument: Document;
|
|
52
|
-
part: DOMTokenList;
|
|
53
|
-
|
|
53
|
+
get part(): DOMTokenList;
|
|
54
|
+
set part(value: string);
|
|
55
|
+
readonly prefix: string | null;
|
|
54
56
|
readonly scrollHeight: number;
|
|
55
57
|
scrollLeft: number;
|
|
56
58
|
scrollTop: number;
|
|
57
59
|
readonly scrollWidth: number;
|
|
58
|
-
readonly shadowRoot: ShadowRoot;
|
|
60
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
59
61
|
slot: string;
|
|
60
62
|
readonly tagName: string;
|
|
61
63
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
62
64
|
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
63
|
-
closest<
|
|
64
|
-
closest<
|
|
65
|
-
closest<
|
|
65
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
|
|
66
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
|
|
67
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
|
|
66
68
|
closest<E extends Element = Element>(selectors: string): E;
|
|
67
69
|
computedStyleMap(): StylePropertyMapReadOnly;
|
|
68
|
-
getAttribute(qualifiedName: string): string;
|
|
69
|
-
getAttributeNS(namespace: string, localName: string): string;
|
|
70
|
+
getAttribute(qualifiedName: string): string | null;
|
|
71
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
70
72
|
getAttributeNames(): string[];
|
|
71
|
-
getAttributeNode(qualifiedName: string): Attr;
|
|
72
|
-
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
73
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
|
74
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
73
75
|
getBoundingClientRect(): DOMRect;
|
|
74
76
|
getClientRects(): DOMRectList;
|
|
75
77
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
76
|
-
getElementsByTagName<
|
|
77
|
-
getElementsByTagName<
|
|
78
|
-
getElementsByTagName<
|
|
79
|
-
getElementsByTagName<
|
|
78
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
79
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
80
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
81
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
80
82
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
81
83
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
82
84
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
83
85
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
84
|
-
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
86
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
85
87
|
getHTML(options?: GetHTMLOptions): string;
|
|
86
88
|
hasAttribute(qualifiedName: string): boolean;
|
|
87
|
-
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
89
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
88
90
|
hasAttributes(): boolean;
|
|
89
91
|
hasPointerCapture(pointerId: number): boolean;
|
|
90
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
92
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
91
93
|
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
92
94
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
93
95
|
matches(selectors: string): boolean;
|
|
94
96
|
releasePointerCapture(pointerId: number): void;
|
|
95
97
|
removeAttribute(qualifiedName: string): void;
|
|
96
|
-
removeAttributeNS(namespace: string, localName: string): void;
|
|
98
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
97
99
|
removeAttributeNode(attr: Attr): Attr;
|
|
98
100
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
99
101
|
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
@@ -105,9 +107,9 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
105
107
|
scrollTo(options?: ScrollToOptions): void;
|
|
106
108
|
scrollTo(x: number, y: number): void;
|
|
107
109
|
setAttribute(qualifiedName: string, value: string): void;
|
|
108
|
-
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
109
|
-
setAttributeNode(attr: Attr): Attr;
|
|
110
|
-
setAttributeNodeNS(attr: Attr): Attr;
|
|
110
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
111
|
+
setAttributeNode(attr: Attr): Attr | null;
|
|
112
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
111
113
|
setHTMLUnsafe(html: string): void;
|
|
112
114
|
setPointerCapture(pointerId: number): void;
|
|
113
115
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
@@ -115,31 +117,31 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
115
117
|
textContent: string;
|
|
116
118
|
readonly baseURI: string;
|
|
117
119
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
118
|
-
readonly firstChild: ChildNode;
|
|
120
|
+
readonly firstChild: ChildNode | null;
|
|
119
121
|
readonly isConnected: boolean;
|
|
120
|
-
readonly lastChild: ChildNode;
|
|
121
|
-
readonly nextSibling: ChildNode;
|
|
122
|
+
readonly lastChild: ChildNode | null;
|
|
123
|
+
readonly nextSibling: ChildNode | null;
|
|
122
124
|
readonly nodeName: string;
|
|
123
125
|
readonly nodeType: number;
|
|
124
|
-
nodeValue: string;
|
|
125
|
-
readonly parentElement: HTMLElement;
|
|
126
|
-
readonly parentNode: ParentNode;
|
|
127
|
-
readonly previousSibling: ChildNode;
|
|
126
|
+
nodeValue: string | null;
|
|
127
|
+
readonly parentElement: HTMLElement | null;
|
|
128
|
+
readonly parentNode: ParentNode | null;
|
|
129
|
+
readonly previousSibling: ChildNode | null;
|
|
128
130
|
appendChild<T extends Node>(node: T): T;
|
|
129
131
|
cloneNode(subtree?: boolean): Node;
|
|
130
132
|
compareDocumentPosition(other: Node): number;
|
|
131
|
-
contains(other: Node): boolean;
|
|
133
|
+
contains(other: Node | null): boolean;
|
|
132
134
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
133
135
|
hasChildNodes(): boolean;
|
|
134
|
-
insertBefore<
|
|
135
|
-
isDefaultNamespace(namespace: string): boolean;
|
|
136
|
-
isEqualNode(otherNode: Node): boolean;
|
|
137
|
-
isSameNode(otherNode: Node): boolean;
|
|
138
|
-
lookupNamespaceURI(prefix: string): string;
|
|
139
|
-
lookupPrefix(namespace: string): string;
|
|
136
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
137
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
138
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
139
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
140
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
141
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
140
142
|
normalize(): void;
|
|
141
|
-
removeChild<
|
|
142
|
-
replaceChild<
|
|
143
|
+
removeChild<T extends Node>(child: T): T;
|
|
144
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
143
145
|
readonly ELEMENT_NODE: 1;
|
|
144
146
|
readonly ATTRIBUTE_NODE: 2;
|
|
145
147
|
readonly TEXT_NODE: 3;
|
|
@@ -159,190 +161,191 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
159
161
|
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
160
162
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
161
163
|
dispatchEvent(event: Event): boolean;
|
|
162
|
-
ariaActiveDescendantElement: Element;
|
|
163
|
-
ariaAtomic: string;
|
|
164
|
-
ariaAutoComplete: string;
|
|
165
|
-
ariaBrailleLabel: string;
|
|
166
|
-
ariaBrailleRoleDescription: string;
|
|
167
|
-
ariaBusy: string;
|
|
168
|
-
ariaChecked: string;
|
|
169
|
-
ariaColCount: string;
|
|
170
|
-
ariaColIndex: string;
|
|
171
|
-
ariaColIndexText: string;
|
|
172
|
-
ariaColSpan: string;
|
|
173
|
-
ariaControlsElements:
|
|
174
|
-
ariaCurrent: string;
|
|
175
|
-
ariaDescribedByElements:
|
|
176
|
-
ariaDescription: string;
|
|
177
|
-
ariaDetailsElements:
|
|
178
|
-
ariaDisabled: string;
|
|
179
|
-
ariaErrorMessageElements:
|
|
180
|
-
ariaExpanded: string;
|
|
181
|
-
ariaFlowToElements:
|
|
182
|
-
ariaHasPopup: string;
|
|
183
|
-
ariaHidden: string;
|
|
184
|
-
ariaInvalid: string;
|
|
185
|
-
ariaKeyShortcuts: string;
|
|
186
|
-
ariaLabel: string;
|
|
187
|
-
ariaLabelledByElements:
|
|
188
|
-
ariaLevel: string;
|
|
189
|
-
ariaLive: string;
|
|
190
|
-
ariaModal: string;
|
|
191
|
-
ariaMultiLine: string;
|
|
192
|
-
ariaMultiSelectable: string;
|
|
193
|
-
ariaOrientation: string;
|
|
194
|
-
ariaOwnsElements:
|
|
195
|
-
ariaPlaceholder: string;
|
|
196
|
-
ariaPosInSet: string;
|
|
197
|
-
ariaPressed: string;
|
|
198
|
-
ariaReadOnly: string;
|
|
199
|
-
ariaRelevant: string;
|
|
200
|
-
ariaRequired: string;
|
|
201
|
-
ariaRoleDescription: string;
|
|
202
|
-
ariaRowCount: string;
|
|
203
|
-
ariaRowIndex: string;
|
|
204
|
-
ariaRowIndexText: string;
|
|
205
|
-
ariaRowSpan: string;
|
|
206
|
-
ariaSelected: string;
|
|
207
|
-
ariaSetSize: string;
|
|
208
|
-
ariaSort: string;
|
|
209
|
-
ariaValueMax: string;
|
|
210
|
-
ariaValueMin: string;
|
|
211
|
-
ariaValueNow: string;
|
|
212
|
-
ariaValueText: string;
|
|
213
|
-
role: string;
|
|
214
|
-
animate(keyframes: PropertyIndexedKeyframes |
|
|
164
|
+
ariaActiveDescendantElement: Element | null;
|
|
165
|
+
ariaAtomic: string | null;
|
|
166
|
+
ariaAutoComplete: string | null;
|
|
167
|
+
ariaBrailleLabel: string | null;
|
|
168
|
+
ariaBrailleRoleDescription: string | null;
|
|
169
|
+
ariaBusy: string | null;
|
|
170
|
+
ariaChecked: string | null;
|
|
171
|
+
ariaColCount: string | null;
|
|
172
|
+
ariaColIndex: string | null;
|
|
173
|
+
ariaColIndexText: string | null;
|
|
174
|
+
ariaColSpan: string | null;
|
|
175
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
176
|
+
ariaCurrent: string | null;
|
|
177
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
178
|
+
ariaDescription: string | null;
|
|
179
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
180
|
+
ariaDisabled: string | null;
|
|
181
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
182
|
+
ariaExpanded: string | null;
|
|
183
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
184
|
+
ariaHasPopup: string | null;
|
|
185
|
+
ariaHidden: string | null;
|
|
186
|
+
ariaInvalid: string | null;
|
|
187
|
+
ariaKeyShortcuts: string | null;
|
|
188
|
+
ariaLabel: string | null;
|
|
189
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
190
|
+
ariaLevel: string | null;
|
|
191
|
+
ariaLive: string | null;
|
|
192
|
+
ariaModal: string | null;
|
|
193
|
+
ariaMultiLine: string | null;
|
|
194
|
+
ariaMultiSelectable: string | null;
|
|
195
|
+
ariaOrientation: string | null;
|
|
196
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
197
|
+
ariaPlaceholder: string | null;
|
|
198
|
+
ariaPosInSet: string | null;
|
|
199
|
+
ariaPressed: string | null;
|
|
200
|
+
ariaReadOnly: string | null;
|
|
201
|
+
ariaRelevant: string | null;
|
|
202
|
+
ariaRequired: string | null;
|
|
203
|
+
ariaRoleDescription: string | null;
|
|
204
|
+
ariaRowCount: string | null;
|
|
205
|
+
ariaRowIndex: string | null;
|
|
206
|
+
ariaRowIndexText: string | null;
|
|
207
|
+
ariaRowSpan: string | null;
|
|
208
|
+
ariaSelected: string | null;
|
|
209
|
+
ariaSetSize: string | null;
|
|
210
|
+
ariaSort: string | null;
|
|
211
|
+
ariaValueMax: string | null;
|
|
212
|
+
ariaValueMin: string | null;
|
|
213
|
+
ariaValueNow: string | null;
|
|
214
|
+
ariaValueText: string | null;
|
|
215
|
+
role: string | null;
|
|
216
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
215
217
|
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
216
|
-
after(...nodes: (
|
|
217
|
-
before(...nodes: (
|
|
218
|
+
after(...nodes: (Node | string)[]): void;
|
|
219
|
+
before(...nodes: (Node | string)[]): void;
|
|
218
220
|
remove(): void;
|
|
219
|
-
replaceWith(...nodes: (
|
|
220
|
-
readonly nextElementSibling: Element;
|
|
221
|
-
readonly previousElementSibling: Element;
|
|
221
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
222
|
+
readonly nextElementSibling: Element | null;
|
|
223
|
+
readonly previousElementSibling: Element | null;
|
|
222
224
|
readonly childElementCount: number;
|
|
223
225
|
readonly children: HTMLCollection;
|
|
224
|
-
readonly firstElementChild: Element;
|
|
225
|
-
readonly lastElementChild: Element;
|
|
226
|
-
append(...nodes: (
|
|
227
|
-
prepend(...nodes: (
|
|
228
|
-
querySelector<
|
|
229
|
-
querySelector<
|
|
230
|
-
querySelector<
|
|
231
|
-
querySelector<
|
|
232
|
-
querySelector<
|
|
233
|
-
querySelectorAll<
|
|
234
|
-
querySelectorAll<
|
|
235
|
-
querySelectorAll<
|
|
236
|
-
querySelectorAll<
|
|
237
|
-
querySelectorAll<
|
|
238
|
-
replaceChildren(...nodes: (
|
|
239
|
-
readonly assignedSlot: HTMLSlotElement;
|
|
226
|
+
readonly firstElementChild: Element | null;
|
|
227
|
+
readonly lastElementChild: Element | null;
|
|
228
|
+
append(...nodes: (Node | string)[]): void;
|
|
229
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
230
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
231
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
232
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
233
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
234
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
235
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
236
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
237
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
238
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
239
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
240
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
241
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
240
242
|
readonly attributeStyleMap: StylePropertyMap;
|
|
241
|
-
style: CSSStyleDeclaration;
|
|
243
|
+
get style(): CSSStyleDeclaration;
|
|
244
|
+
set style(cssText: string);
|
|
242
245
|
contentEditable: string;
|
|
243
246
|
enterKeyHint: string;
|
|
244
247
|
inputMode: string;
|
|
245
248
|
readonly isContentEditable: boolean;
|
|
246
|
-
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
247
|
-
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
248
|
-
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
249
|
-
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
250
|
-
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
251
|
-
onauxclick: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
252
|
-
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
253
|
-
onbeforematch: (this: GlobalEventHandlers, ev: Event) => any;
|
|
254
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: ToggleEvent) => any;
|
|
255
|
-
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
256
|
-
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
257
|
-
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
258
|
-
oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
|
|
259
|
-
onchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
260
|
-
onclick: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
261
|
-
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
262
|
-
oncontextlost: (this: GlobalEventHandlers, ev: Event) => any;
|
|
263
|
-
oncontextmenu: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
264
|
-
oncontextrestored: (this: GlobalEventHandlers, ev: Event) => any;
|
|
265
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
266
|
-
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
267
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
268
|
-
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
269
|
-
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
270
|
-
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
271
|
-
ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
272
|
-
ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
273
|
-
ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
274
|
-
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
275
|
-
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
276
|
-
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
277
|
-
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
|
278
|
-
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
|
279
|
-
onerror:
|
|
280
|
-
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
281
|
-
onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
|
|
282
|
-
ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
283
|
-
oninput: (this: GlobalEventHandlers, ev: Event) => any;
|
|
284
|
-
oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
|
|
285
|
-
onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
286
|
-
onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
287
|
-
onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
288
|
-
onload: (this: GlobalEventHandlers, ev: Event) => any;
|
|
289
|
-
onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
290
|
-
onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
291
|
-
onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
292
|
-
onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
293
|
-
onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
294
|
-
onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
295
|
-
onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
296
|
-
onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
297
|
-
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
298
|
-
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
299
|
-
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
300
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
301
|
-
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
302
|
-
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
303
|
-
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
304
|
-
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
305
|
-
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
306
|
-
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
307
|
-
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
308
|
-
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
309
|
-
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
310
|
-
onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
311
|
-
onpointerrawupdate: (this: GlobalEventHandlers, ev: Event) => any;
|
|
312
|
-
onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
313
|
-
onprogress: (this: GlobalEventHandlers, ev: ProgressEvent
|
|
314
|
-
onratechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
315
|
-
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
316
|
-
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
317
|
-
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
318
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
319
|
-
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
320
|
-
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
321
|
-
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
322
|
-
onselect: (this: GlobalEventHandlers, ev: Event) => any;
|
|
323
|
-
onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
324
|
-
onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
325
|
-
onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
326
|
-
onstalled: (this: GlobalEventHandlers, ev: Event) => any;
|
|
327
|
-
onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
|
|
328
|
-
onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
329
|
-
ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
|
|
330
|
-
ontoggle: (this: GlobalEventHandlers, ev: ToggleEvent) => any;
|
|
331
|
-
ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
332
|
-
ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
333
|
-
ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
334
|
-
ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
335
|
-
ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
336
|
-
ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
337
|
-
ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
338
|
-
ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
339
|
-
onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
340
|
-
onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
|
|
341
|
-
onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
342
|
-
onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
|
|
343
|
-
onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
344
|
-
onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
345
|
-
onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
|
|
249
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
250
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
251
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
252
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
253
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
254
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
255
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
256
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
257
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
258
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
259
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
260
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
261
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
262
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
263
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
264
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
265
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
266
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
267
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
268
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
269
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
270
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
271
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
272
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
273
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
274
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
275
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
276
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
277
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
278
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
279
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
280
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
281
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
282
|
+
onerror: OnErrorEventHandler;
|
|
283
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
284
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
285
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
286
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
287
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
288
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
289
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
290
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
291
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
292
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
293
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
294
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
295
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
296
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
297
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
298
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
299
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
300
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
301
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
302
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
303
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
304
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
305
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
306
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
307
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
308
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
309
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
310
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
311
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
312
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
313
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
314
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
315
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
316
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
317
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
318
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
319
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
320
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
321
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
322
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
323
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
324
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
325
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
326
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
327
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
328
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
329
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
330
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
331
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
332
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
333
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
334
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
335
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
336
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
337
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
338
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
339
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
340
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
341
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
342
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
343
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
344
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
345
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
346
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
347
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
348
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
346
349
|
autofocus: boolean;
|
|
347
350
|
readonly dataset: DOMStringMap;
|
|
348
351
|
nonce?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"document-upload.d.ts","sourceRoot":"","sources":["../../../../src/components/document-upload/document-upload.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,wBAAwB,EACxB,gBAAgB,EAChB,YAAY,EACZ,cAAc,EACf,MAAM,
|
|
1
|
+
{"version":3,"file":"document-upload.d.ts","sourceRoot":"","sources":["../../../../src/components/document-upload/document-upload.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AACnE,OAAO,EACL,wBAAwB,EACxB,gBAAgB,EAChB,YAAY,EACZ,cAAc,EACf,MAAM,wBAAwB,CAAC;AAIhC,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEtD,qBAKa,cAAe,SAAQ,mBAAsD;IACtE,UAAU,EAAE,gBAAgB,CAAC;IAEnC,YAAY,EAAE,WAAW,CAAqB;IAC9C,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,kBAAkB,EAAE,MAAM,CAAK;IAC/B,cAAc,EAAE,cAAc,CAAC;IAET,QAAQ,SAAO;IACV,YAAY,eAA8B;IACzC,aAAa,MAAQ;IAEtD,QAAQ,EAAE,cAAc,CAAC;IACzB,UAAU,EAAE,gBAAgB,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAM;IAE7B,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAgB;IAC9C,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAAgB;IAE1D,OAAO,CAAC,IAAI,CAAM;IAElB,iBAAiB;IAYV,SAAS;IAIhB,OAAO,CAAC,UAAU;IAclB,OAAO,CAAC,qBAAqB;IAS7B,OAAO,CAAC,YAAY;IAMpB,OAAO,CAAC,kBAAkB;IAgB1B,OAAO,CAAC,YAAY;IAcpB,OAAO,CAAC,WAAW;IAkBZ,SAAS;IAShB,OAAO,CAAC,eAAe;IAKvB,OAAO,CAAC,WAAW;IAQnB,OAAO,CAAC,kBAAkB;CAc3B"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { DocumentUpload } from './document-upload';
|
|
1
|
+
import type { DocumentUpload } from './document-upload';
|
|
2
2
|
export declare const DocumentUploadTemplate: import("@microsoft/fast-element").ViewTemplate<DocumentUpload, any>;
|
|
3
3
|
//# sourceMappingURL=document-upload.template.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"document-upload.template.d.ts","sourceRoot":"","sources":["../../../../src/components/document-upload/document-upload.template.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"document-upload.template.d.ts","sourceRoot":"","sources":["../../../../src/components/document-upload/document-upload.template.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AA8CxD,eAAO,MAAM,sBAAsB,qEAsElC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../../src/components/utils/icons.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../../src/components/utils/icons.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,UAAU,GAAI,SAAI,6DAkB9B,CAAC;AACF,eAAO,MAAM,eAAe,0DAiB3B,CAAC;AAEF,eAAO,MAAM,UAAU,0DAQtB,CAAC;AAEF,eAAO,MAAM,QAAQ,0DAEpB,CAAC;AAEF,eAAO,MAAM,YAAY,0DAExB,CAAC;AAEF,eAAO,MAAM,SAAS,0DAErB,CAAC;AAEF,eAAO,MAAM,UAAU,0DAQtB,CAAC;AAEF,eAAO,MAAM,mBAAmB,0DAmB/B,CAAC;AAEF,eAAO,MAAM,eAAe,0DAkB3B,CAAC;AAEF,eAAO,MAAM,SAAS,0DAkCrB,CAAC"}
|