@genesislcap/pbc-documents-ui 15.6.2 → 15.7.0-ts7.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 +163 -158
- package/dist/dts/components/document-upload/document-upload.d.ts.map +1 -1
- package/dist/dts/components/template-asset-link/template-asset-link.d.ts.map +1 -1
- package/dist/dts/components/utils/action-cell-renderer.d.ts.map +1 -1
- package/dist/dts/components/utils/icons.d.ts.map +1 -1
- package/dist/dts/config/configure.d.ts +1 -1
- package/dist/dts/config/configure.d.ts.map +1 -1
- package/dist/dts/main/main.d.ts +163 -158
- package/dist/dts/main/main.d.ts.map +1 -1
- package/dist/dts/sandbox.d.ts.map +1 -1
- package/dist/dts/services/document.service.d.ts.map +1 -1
- package/dist/dts/types/main.types.d.ts +1 -1
- package/dist/dts/types/main.types.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/template-asset-link/template-asset-link.js +7 -6
- package/dist/esm/components/template-asset-link/template-asset-link.js.map +1 -1
- package/dist/esm/components/template-asset-link/template-asset-link.template.js +5 -8
- package/dist/esm/components/template-asset-link/template-asset-link.template.js.map +1 -1
- package/dist/esm/index.federated.js +1 -0
- package/dist/esm/index.federated.js.map +1 -1
- package/dist/esm/main/main.js +2 -1
- package/dist/esm/main/main.js.map +1 -1
- package/dist/esm/services/document.service.js.map +1 -1
- package/dist/esm/services/document.service.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +27 -28
- package/tsconfig.json +3 -1
|
@@ -1,38 +1,66 @@
|
|
|
1
1
|
import { IDocumentService } from '../../services/document.service';
|
|
2
|
-
import { DocManagerEventDetailMap,
|
|
2
|
+
import { DocManagerEventDetailMap, 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
|
-
$emit<K extends
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
5
|
+
$emit<K extends keyof DocManagerEventDetailMap & string>(...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;
|
|
6
|
+
ariaActiveDescendantElement: Element | null;
|
|
7
|
+
ariaAtomic: string | null;
|
|
8
|
+
ariaAutoComplete: string | null;
|
|
9
|
+
ariaBrailleLabel: string | null;
|
|
10
|
+
ariaBrailleRoleDescription: string | null;
|
|
11
|
+
ariaBusy: string | null;
|
|
12
|
+
ariaChecked: string | null;
|
|
13
|
+
ariaColCount: string | null;
|
|
14
|
+
ariaColIndex: string | null;
|
|
15
|
+
ariaColIndexText: string | null;
|
|
16
|
+
ariaColSpan: string | null;
|
|
17
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
18
|
+
ariaCurrent: string | null;
|
|
19
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
20
|
+
ariaDescription: string | null;
|
|
21
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
22
|
+
ariaDisabled: string | null;
|
|
23
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
24
|
+
ariaExpanded: string | null;
|
|
25
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
26
|
+
ariaHasPopup: string | null;
|
|
27
|
+
ariaHidden: string | null;
|
|
28
|
+
ariaInvalid: string | null;
|
|
29
|
+
ariaKeyShortcuts: string | null;
|
|
30
|
+
ariaLabel: string | null;
|
|
31
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
32
|
+
ariaLevel: string | null;
|
|
33
|
+
ariaLive: string | null;
|
|
34
|
+
ariaModal: string | null;
|
|
35
|
+
ariaMultiLine: string | null;
|
|
36
|
+
ariaMultiSelectable: string | null;
|
|
37
|
+
ariaOrientation: string | null;
|
|
38
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
39
|
+
ariaPlaceholder: string | null;
|
|
40
|
+
ariaPosInSet: string | null;
|
|
41
|
+
ariaPressed: string | null;
|
|
42
|
+
ariaReadOnly: string | null;
|
|
43
|
+
ariaRelevant: string | null;
|
|
44
|
+
ariaRequired: string | null;
|
|
45
|
+
ariaRoleDescription: string | null;
|
|
46
|
+
ariaRowCount: string | null;
|
|
47
|
+
ariaRowIndex: string | null;
|
|
48
|
+
ariaRowIndexText: string | null;
|
|
49
|
+
ariaRowSpan: string | null;
|
|
50
|
+
ariaSelected: string | null;
|
|
51
|
+
ariaSetSize: string | null;
|
|
52
|
+
ariaSort: string | null;
|
|
53
|
+
ariaValueMax: string | null;
|
|
54
|
+
ariaValueMin: string | null;
|
|
55
|
+
ariaValueNow: string | null;
|
|
56
|
+
ariaValueText: string | null;
|
|
57
|
+
role: string | null;
|
|
58
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
59
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
60
|
+
after(...nodes: (Node | string)[]): void;
|
|
61
|
+
before(...nodes: (Node | string)[]): void;
|
|
62
|
+
remove(): void;
|
|
63
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
36
64
|
readonly attributes: NamedNodeMap;
|
|
37
65
|
get classList(): DOMTokenList;
|
|
38
66
|
set classList(value: string);
|
|
@@ -92,6 +120,9 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
92
120
|
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
93
121
|
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
94
122
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
123
|
+
matches<K extends keyof HTMLElementTagNameMap>(selectors: K): this is HTMLElementTagNameMap[K];
|
|
124
|
+
matches<K extends keyof SVGElementTagNameMap>(selectors: K): this is SVGElementTagNameMap[K];
|
|
125
|
+
matches<K extends keyof MathMLElementTagNameMap>(selectors: K): this is MathMLElementTagNameMap[K];
|
|
95
126
|
matches(selectors: string): boolean;
|
|
96
127
|
releasePointerCapture(pointerId: number): void;
|
|
97
128
|
removeAttribute(qualifiedName: string): void;
|
|
@@ -115,130 +146,6 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
115
146
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
116
147
|
webkitMatchesSelector(selectors: string): boolean;
|
|
117
148
|
textContent: string;
|
|
118
|
-
readonly baseURI: string;
|
|
119
|
-
readonly childNodes: NodeListOf<ChildNode>;
|
|
120
|
-
readonly firstChild: ChildNode | null;
|
|
121
|
-
readonly isConnected: boolean;
|
|
122
|
-
readonly lastChild: ChildNode | null;
|
|
123
|
-
readonly nextSibling: ChildNode | null;
|
|
124
|
-
readonly nodeName: string;
|
|
125
|
-
readonly nodeType: number;
|
|
126
|
-
nodeValue: string | null;
|
|
127
|
-
readonly parentElement: HTMLElement | null;
|
|
128
|
-
readonly parentNode: ParentNode | null;
|
|
129
|
-
readonly previousSibling: ChildNode | null;
|
|
130
|
-
appendChild<T extends Node>(node: T): T;
|
|
131
|
-
cloneNode(subtree?: boolean): Node;
|
|
132
|
-
compareDocumentPosition(other: Node): number;
|
|
133
|
-
contains(other: Node | null): boolean;
|
|
134
|
-
getRootNode(options?: GetRootNodeOptions): Node;
|
|
135
|
-
hasChildNodes(): boolean;
|
|
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;
|
|
142
|
-
normalize(): void;
|
|
143
|
-
removeChild<T extends Node>(child: T): T;
|
|
144
|
-
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
145
|
-
readonly ELEMENT_NODE: 1;
|
|
146
|
-
readonly ATTRIBUTE_NODE: 2;
|
|
147
|
-
readonly TEXT_NODE: 3;
|
|
148
|
-
readonly CDATA_SECTION_NODE: 4;
|
|
149
|
-
readonly ENTITY_REFERENCE_NODE: 5;
|
|
150
|
-
readonly ENTITY_NODE: 6;
|
|
151
|
-
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
152
|
-
readonly COMMENT_NODE: 8;
|
|
153
|
-
readonly DOCUMENT_NODE: 9;
|
|
154
|
-
readonly DOCUMENT_TYPE_NODE: 10;
|
|
155
|
-
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
156
|
-
readonly NOTATION_NODE: 12;
|
|
157
|
-
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
158
|
-
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
159
|
-
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
160
|
-
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
161
|
-
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
162
|
-
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
163
|
-
dispatchEvent(event: Event): boolean;
|
|
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;
|
|
217
|
-
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
218
|
-
after(...nodes: (Node | string)[]): void;
|
|
219
|
-
before(...nodes: (Node | string)[]): void;
|
|
220
|
-
remove(): void;
|
|
221
|
-
replaceWith(...nodes: (Node | string)[]): void;
|
|
222
|
-
readonly nextElementSibling: Element | null;
|
|
223
|
-
readonly previousElementSibling: Element | null;
|
|
224
|
-
readonly childElementCount: number;
|
|
225
|
-
readonly children: HTMLCollection;
|
|
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;
|
|
242
149
|
readonly attributeStyleMap: StylePropertyMap;
|
|
243
150
|
get style(): CSSStyleDeclaration;
|
|
244
151
|
set style(cssText: string);
|
|
@@ -246,6 +153,7 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
246
153
|
enterKeyHint: string;
|
|
247
154
|
inputMode: string;
|
|
248
155
|
readonly isContentEditable: boolean;
|
|
156
|
+
dispatchEvent(event: Event): boolean;
|
|
249
157
|
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
250
158
|
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
251
159
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
@@ -262,6 +170,7 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
262
170
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
263
171
|
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
264
172
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
173
|
+
oncommand: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
265
174
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
266
175
|
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
267
176
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -283,7 +192,7 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
283
192
|
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
284
193
|
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
285
194
|
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
286
|
-
oninput: ((this: GlobalEventHandlers, ev:
|
|
195
|
+
oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
287
196
|
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
288
197
|
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
289
198
|
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
@@ -346,12 +255,108 @@ declare const DocumentUpload_base: abstract new (...args: any[]) => {
|
|
|
346
255
|
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
347
256
|
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
348
257
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
258
|
+
accessKey: string;
|
|
259
|
+
readonly accessKeyLabel: string;
|
|
260
|
+
autocapitalize: string;
|
|
261
|
+
autocorrect: boolean;
|
|
262
|
+
dir: string;
|
|
263
|
+
draggable: boolean;
|
|
264
|
+
hidden: boolean | "until-found";
|
|
265
|
+
inert: boolean;
|
|
266
|
+
innerText: string;
|
|
267
|
+
lang: string;
|
|
268
|
+
readonly offsetHeight: number;
|
|
269
|
+
readonly offsetLeft: number;
|
|
270
|
+
readonly offsetParent: Element | null;
|
|
271
|
+
readonly offsetTop: number;
|
|
272
|
+
readonly offsetWidth: number;
|
|
273
|
+
outerText: string;
|
|
274
|
+
popover: string | null;
|
|
275
|
+
spellcheck: boolean;
|
|
276
|
+
title: string;
|
|
277
|
+
translate: boolean;
|
|
278
|
+
writingSuggestions: string;
|
|
279
|
+
attachInternals(): ElementInternals;
|
|
280
|
+
click(): void;
|
|
281
|
+
hidePopover(): void;
|
|
282
|
+
showPopover(): void;
|
|
283
|
+
togglePopover(options?: boolean): boolean;
|
|
284
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
285
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
286
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
287
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
349
288
|
autofocus: boolean;
|
|
350
289
|
readonly dataset: DOMStringMap;
|
|
351
|
-
nonce
|
|
290
|
+
nonce: string;
|
|
352
291
|
tabIndex: number;
|
|
353
292
|
blur(): void;
|
|
354
293
|
focus(options?: FocusOptions): void;
|
|
294
|
+
readonly baseURI: string;
|
|
295
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
296
|
+
readonly firstChild: ChildNode | null;
|
|
297
|
+
readonly isConnected: boolean;
|
|
298
|
+
readonly lastChild: ChildNode | null;
|
|
299
|
+
readonly nextSibling: ChildNode | null;
|
|
300
|
+
readonly nodeName: string;
|
|
301
|
+
readonly nodeType: number;
|
|
302
|
+
nodeValue: string | null;
|
|
303
|
+
readonly parentElement: HTMLElement | null;
|
|
304
|
+
readonly parentNode: ParentNode | null;
|
|
305
|
+
readonly previousSibling: ChildNode | null;
|
|
306
|
+
appendChild<T extends Node>(node: T): T;
|
|
307
|
+
cloneNode(subtree?: boolean): Node;
|
|
308
|
+
compareDocumentPosition(other: Node): number;
|
|
309
|
+
contains(other: Node | null): boolean;
|
|
310
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
311
|
+
hasChildNodes(): boolean;
|
|
312
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
313
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
314
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
315
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
316
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
317
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
318
|
+
normalize(): void;
|
|
319
|
+
removeChild<T extends Node>(child: T): T;
|
|
320
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
321
|
+
readonly ELEMENT_NODE: 1;
|
|
322
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
323
|
+
readonly TEXT_NODE: 3;
|
|
324
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
325
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
326
|
+
readonly ENTITY_NODE: 6;
|
|
327
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
328
|
+
readonly COMMENT_NODE: 8;
|
|
329
|
+
readonly DOCUMENT_NODE: 9;
|
|
330
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
331
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
332
|
+
readonly NOTATION_NODE: 12;
|
|
333
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
334
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
335
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
336
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
337
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
338
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
339
|
+
readonly nextElementSibling: Element | null;
|
|
340
|
+
readonly previousElementSibling: Element | null;
|
|
341
|
+
readonly childElementCount: number;
|
|
342
|
+
readonly children: HTMLCollection;
|
|
343
|
+
readonly firstElementChild: Element | null;
|
|
344
|
+
readonly lastElementChild: Element | null;
|
|
345
|
+
append(...nodes: (Node | string)[]): void;
|
|
346
|
+
moveBefore(node: Node, child: Node | null): void;
|
|
347
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
348
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
349
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
350
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
351
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
352
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
353
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
354
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
355
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
356
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
357
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
358
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
359
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
355
360
|
readonly $fastController: import("@microsoft/fast-element").Controller;
|
|
356
361
|
connectedCallback(): void;
|
|
357
362
|
disconnectedCallback(): void;
|
|
@@ -1 +1 @@
|
|
|
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,
|
|
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,EAExB,YAAY,EACZ,cAAc,EACf,MAAM,wBAAwB,CAAC;AAIhC,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kEAkLqsF,IAAK;iEAA8F,IAAK;oEAAgG,IAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAtKx8F,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,SAUhB;IAEM,SAAS,SAEf;IAED,OAAO,CAAC,UAAU;IAclB,OAAO,CAAC,qBAAqB;IAS7B,OAAO,CAAC,YAAY;IAMpB,OAAO,CAAC,kBAAkB;IAyB1B,OAAO,CAAC,YAAY;IAcpB,OAAO,CAAC,WAAW;IAkBZ,SAAS,SAOf;IAED,OAAO,CAAC,eAAe;IAKvB,OAAO,CAAC,WAAW;IAQnB,OAAO,CAAC,kBAAkB;CAc3B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template-asset-link.d.ts","sourceRoot":"","sources":["../../../../src/components/template-asset-link/template-asset-link.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AACxD,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAiB,cAAc,EAAc,MAAM,uBAAuB,CAAC;AAClF,OAAO,EAAE,YAAY,EAAE,OAAO,EAAgB,MAAM,aAAa,CAAC;AAKlE,qBAKa,iBAAkB,SAAQ,cAAc;IAC1C,OAAO,EAAE,OAAO,CAAC;IAEd,iBAAiB,EAAE,OAAO,GAAG,IAAI,CAAQ;IACzC,aAAa,EAAE,OAAO,EAAE,CAAM;IAC9B,uBAAuB,EAAE,OAAO,CAAC,YAAY,CAAC,eAAe,CAAC,EAAE,CAAM;IAEtE,KAAK,EAAE,KAAK,CAAC;IACb,WAAW,EAAE,WAAW,CAAC;IAErC,OAAO,CAAC,YAAY,CAAgC;IAE9C,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC,YAAY,CAAC,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"template-asset-link.d.ts","sourceRoot":"","sources":["../../../../src/components/template-asset-link/template-asset-link.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AACxD,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAiB,cAAc,EAAc,MAAM,uBAAuB,CAAC;AAClF,OAAO,EAAE,YAAY,EAAE,OAAO,EAAgB,MAAM,aAAa,CAAC;AAKlE,qBAKa,iBAAkB,SAAQ,cAAc;IAC1C,OAAO,EAAE,OAAO,CAAC;IAEd,iBAAiB,EAAE,OAAO,GAAG,IAAI,CAAQ;IACzC,aAAa,EAAE,OAAO,EAAE,CAAM;IAC9B,uBAAuB,EAAE,OAAO,CAAC,YAAY,CAAC,eAAe,CAAC,EAAE,CAAM;IAEtE,KAAK,EAAE,KAAK,CAAC;IACb,WAAW,EAAE,WAAW,CAAC;IAErC,OAAO,CAAC,YAAY,CAAgC;IAE9C,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC,YAAY,CAAC,eAAe,CAAC,iBAI/D;IAED,gCAAgC,SAG/B;YAEa,8BAA8B;YA6B9B,wBAAwB;YAoBxB,aAAa;CAuB5B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action-cell-renderer.d.ts","sourceRoot":"","sources":["../../../../src/components/utils/action-cell-renderer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAG7E,MAAM,MAAM,MAAM,GAAG;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,CAAC,IAAI,EAAE,WAAW,EAAE,IAAI,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IAClD,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,gBAAgB,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,GAAG,KAAK,OAAO,CAAC;CAC5C,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,eAAe,GAAG;IAC3C,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,qBAAa,kBAAkB;IAC7B,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,aAAa,GAAG,WAAW;
|
|
1
|
+
{"version":3,"file":"action-cell-renderer.d.ts","sourceRoot":"","sources":["../../../../src/components/utils/action-cell-renderer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAG7E,MAAM,MAAM,MAAM,GAAG;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,CAAC,IAAI,EAAE,WAAW,EAAE,IAAI,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IAClD,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,gBAAgB,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,GAAG,KAAK,OAAO,CAAC;CAC5C,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG,eAAe,GAAG;IAC3C,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,qBAAa,kBAAkB;IAC7B,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,aAAa,GAAG,WAAW,CAuC9C;CACF"}
|
|
@@ -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,yEAkBtB,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"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { DocumentManagerConfig } from './config';
|
|
2
|
-
export declare function configure(config: Partial<DocumentManagerConfig>): Promise<typeof import("
|
|
2
|
+
export declare function configure(config: Partial<DocumentManagerConfig>): Promise<typeof import("..").DocumentManager>;
|
|
3
3
|
//# sourceMappingURL=configure.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"configure.d.ts","sourceRoot":"","sources":["../../../src/config/configure.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAgC,MAAM,UAAU,CAAC;AA+B/E,wBAAsB,SAAS,CAAC,MAAM,EAAE,OAAO,CAAC,qBAAqB,CAAC,
|
|
1
|
+
{"version":3,"file":"configure.d.ts","sourceRoot":"","sources":["../../../src/config/configure.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAgC,MAAM,UAAU,CAAC;AA+B/E,wBAAsB,SAAS,CAAC,MAAM,EAAE,OAAO,CAAC,qBAAqB,CAAC,gDAkCrE"}
|