@genesislcap/foundation-forms 14.157.1-alpha-e60ad86.0 → 14.158.1-forms-deepclone.2
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/custom-elements.json +90 -0
- package/dist/dts/form.d.ts +331 -1
- package/dist/dts/form.d.ts.map +1 -1
- package/dist/esm/form.js +16 -1
- package/dist/esm/jsonforms/renderers/BooleanControlRenderer.js +1 -1
- package/dist/foundation-forms.api.json +2 -2
- package/dist/foundation-forms.d.ts +335 -1
- package/docs/api/foundation-forms.form.md +2 -2
- package/docs/api-report.md +9 -1
- package/package.json +14 -14
|
@@ -147,6 +147,90 @@
|
|
|
147
147
|
"description": "Reset the form state",
|
|
148
148
|
"privacy": "public"
|
|
149
149
|
},
|
|
150
|
+
{
|
|
151
|
+
"kind": "method",
|
|
152
|
+
"name": "cloneNode",
|
|
153
|
+
"return": {
|
|
154
|
+
"type": {
|
|
155
|
+
"text": "Node"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"parameters": [
|
|
159
|
+
{
|
|
160
|
+
"name": "deep",
|
|
161
|
+
"optional": true,
|
|
162
|
+
"type": {
|
|
163
|
+
"text": "boolean"
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"inheritedFrom": {
|
|
168
|
+
"name": "LifecycleMixin",
|
|
169
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"kind": "method",
|
|
174
|
+
"name": "deepClone",
|
|
175
|
+
"return": {
|
|
176
|
+
"type": {
|
|
177
|
+
"text": "Node"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"inheritedFrom": {
|
|
181
|
+
"name": "LifecycleMixin",
|
|
182
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"kind": "field",
|
|
187
|
+
"name": "shouldRunDisconnect",
|
|
188
|
+
"return": {
|
|
189
|
+
"type": {
|
|
190
|
+
"text": ""
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
"readonly": true,
|
|
194
|
+
"inheritedFrom": {
|
|
195
|
+
"name": "LifecycleMixin",
|
|
196
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"kind": "field",
|
|
201
|
+
"name": "shouldRunConnect",
|
|
202
|
+
"return": {
|
|
203
|
+
"type": {
|
|
204
|
+
"text": ""
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"readonly": true,
|
|
208
|
+
"inheritedFrom": {
|
|
209
|
+
"name": "LifecycleMixin",
|
|
210
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"kind": "method",
|
|
215
|
+
"name": "#_blockLifecycleDueToTokenChange",
|
|
216
|
+
"return": {
|
|
217
|
+
"type": {
|
|
218
|
+
"text": "boolean"
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"parameters": [
|
|
222
|
+
{
|
|
223
|
+
"name": "lifecycleType",
|
|
224
|
+
"type": {
|
|
225
|
+
"text": "Lifecycletype"
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
],
|
|
229
|
+
"inheritedFrom": {
|
|
230
|
+
"name": "LifecycleMixin",
|
|
231
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
150
234
|
{
|
|
151
235
|
"kind": "field",
|
|
152
236
|
"name": "_presentation",
|
|
@@ -291,6 +375,12 @@
|
|
|
291
375
|
"fieldName": "hideSubmit"
|
|
292
376
|
}
|
|
293
377
|
],
|
|
378
|
+
"mixins": [
|
|
379
|
+
{
|
|
380
|
+
"name": "LifecycleMixin",
|
|
381
|
+
"package": "@genesislcap/foundation-utils"
|
|
382
|
+
}
|
|
383
|
+
],
|
|
294
384
|
"superclass": {
|
|
295
385
|
"name": "FoundationElement",
|
|
296
386
|
"package": "@microsoft/fast-foundation"
|
package/dist/dts/form.d.ts
CHANGED
|
@@ -4,13 +4,338 @@ import { JSONSchema7 } from 'json-schema';
|
|
|
4
4
|
import { RendererEntry } from './types';
|
|
5
5
|
/** @public */
|
|
6
6
|
export declare const renderers: any[];
|
|
7
|
+
declare const Form_base: (new (...args: any[]) => {
|
|
8
|
+
"__#1@#_container": import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
9
|
+
"__#1@#_latestTokenCode": string;
|
|
10
|
+
"__#1@#_hasFirstLoaded": boolean;
|
|
11
|
+
"__#1@#_cleanupTimeout": NodeJS.Timeout;
|
|
12
|
+
"__#1@#_shouldForceLifecycle": boolean;
|
|
13
|
+
cloneNode(deep?: boolean): Node;
|
|
14
|
+
deepClone(): Node;
|
|
15
|
+
readonly shouldRunDisconnect: boolean;
|
|
16
|
+
readonly shouldRunConnect: boolean;
|
|
17
|
+
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
18
|
+
"__#1@#_tryFindContainingLayout"(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
19
|
+
connectedCallback(): void;
|
|
20
|
+
readonly $fastController: import("@microsoft/fast-element").Controller;
|
|
21
|
+
$emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
|
|
22
|
+
disconnectedCallback(): void;
|
|
23
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
24
|
+
accessKey: string;
|
|
25
|
+
readonly accessKeyLabel: string;
|
|
26
|
+
autocapitalize: string;
|
|
27
|
+
dir: string;
|
|
28
|
+
draggable: boolean;
|
|
29
|
+
hidden: boolean;
|
|
30
|
+
inert: boolean;
|
|
31
|
+
innerText: string;
|
|
32
|
+
lang: string;
|
|
33
|
+
readonly offsetHeight: number;
|
|
34
|
+
readonly offsetLeft: number;
|
|
35
|
+
readonly offsetParent: Element;
|
|
36
|
+
readonly offsetTop: number;
|
|
37
|
+
readonly offsetWidth: number;
|
|
38
|
+
outerText: string;
|
|
39
|
+
spellcheck: boolean;
|
|
40
|
+
title: string;
|
|
41
|
+
translate: boolean;
|
|
42
|
+
attachInternals(): ElementInternals;
|
|
43
|
+
click(): void;
|
|
44
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
45
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
46
|
+
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
47
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
48
|
+
readonly attributes: NamedNodeMap;
|
|
49
|
+
readonly classList: DOMTokenList;
|
|
50
|
+
className: string;
|
|
51
|
+
readonly clientHeight: number;
|
|
52
|
+
readonly clientLeft: number;
|
|
53
|
+
readonly clientTop: number;
|
|
54
|
+
readonly clientWidth: number;
|
|
55
|
+
id: string;
|
|
56
|
+
readonly localName: string;
|
|
57
|
+
readonly namespaceURI: string;
|
|
58
|
+
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
59
|
+
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
60
|
+
outerHTML: string;
|
|
61
|
+
readonly ownerDocument: Document;
|
|
62
|
+
readonly part: DOMTokenList;
|
|
63
|
+
readonly prefix: string;
|
|
64
|
+
readonly scrollHeight: number;
|
|
65
|
+
scrollLeft: number;
|
|
66
|
+
scrollTop: number;
|
|
67
|
+
readonly scrollWidth: number;
|
|
68
|
+
readonly shadowRoot: ShadowRoot;
|
|
69
|
+
slot: string;
|
|
70
|
+
readonly tagName: string;
|
|
71
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
72
|
+
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
73
|
+
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
74
|
+
closest<E extends Element = Element>(selectors: string): E;
|
|
75
|
+
getAttribute(qualifiedName: string): string;
|
|
76
|
+
getAttributeNS(namespace: string, localName: string): string;
|
|
77
|
+
getAttributeNames(): string[];
|
|
78
|
+
getAttributeNode(qualifiedName: string): Attr;
|
|
79
|
+
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
80
|
+
getBoundingClientRect(): DOMRect;
|
|
81
|
+
getClientRects(): DOMRectList;
|
|
82
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
83
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
84
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
85
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
86
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
87
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
88
|
+
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
89
|
+
hasAttribute(qualifiedName: string): boolean;
|
|
90
|
+
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
91
|
+
hasAttributes(): boolean;
|
|
92
|
+
hasPointerCapture(pointerId: number): boolean;
|
|
93
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
94
|
+
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
95
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
96
|
+
matches(selectors: string): boolean;
|
|
97
|
+
releasePointerCapture(pointerId: number): void;
|
|
98
|
+
removeAttribute(qualifiedName: string): void;
|
|
99
|
+
removeAttributeNS(namespace: string, localName: string): void;
|
|
100
|
+
removeAttributeNode(attr: Attr): Attr;
|
|
101
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
102
|
+
requestPointerLock(): void;
|
|
103
|
+
scroll(options?: ScrollToOptions): void;
|
|
104
|
+
scroll(x: number, y: number): void;
|
|
105
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
106
|
+
scrollBy(x: number, y: number): void;
|
|
107
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
108
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
109
|
+
scrollTo(x: number, y: number): void;
|
|
110
|
+
setAttribute(qualifiedName: string, value: string): void;
|
|
111
|
+
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
112
|
+
setAttributeNode(attr: Attr): Attr;
|
|
113
|
+
setAttributeNodeNS(attr: Attr): Attr;
|
|
114
|
+
setPointerCapture(pointerId: number): void;
|
|
115
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
116
|
+
webkitMatchesSelector(selectors: string): boolean;
|
|
117
|
+
readonly baseURI: string;
|
|
118
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
119
|
+
readonly firstChild: ChildNode;
|
|
120
|
+
readonly isConnected: boolean;
|
|
121
|
+
readonly lastChild: ChildNode;
|
|
122
|
+
readonly nextSibling: ChildNode;
|
|
123
|
+
readonly nodeName: string;
|
|
124
|
+
readonly nodeType: number;
|
|
125
|
+
nodeValue: string;
|
|
126
|
+
readonly parentElement: HTMLElement;
|
|
127
|
+
readonly parentNode: ParentNode;
|
|
128
|
+
readonly previousSibling: ChildNode;
|
|
129
|
+
textContent: string;
|
|
130
|
+
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
131
|
+
compareDocumentPosition(other: Node): number;
|
|
132
|
+
contains(other: Node): boolean;
|
|
133
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
134
|
+
hasChildNodes(): boolean;
|
|
135
|
+
insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
|
|
136
|
+
isDefaultNamespace(namespace: string): boolean;
|
|
137
|
+
isEqualNode(otherNode: Node): boolean;
|
|
138
|
+
isSameNode(otherNode: Node): boolean;
|
|
139
|
+
lookupNamespaceURI(prefix: string): string;
|
|
140
|
+
lookupPrefix(namespace: string): string;
|
|
141
|
+
normalize(): void;
|
|
142
|
+
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
143
|
+
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
144
|
+
readonly ATTRIBUTE_NODE: number;
|
|
145
|
+
readonly CDATA_SECTION_NODE: number;
|
|
146
|
+
readonly COMMENT_NODE: number;
|
|
147
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
148
|
+
readonly DOCUMENT_NODE: number;
|
|
149
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
150
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
151
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
152
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
153
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
154
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
155
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
156
|
+
readonly ELEMENT_NODE: number;
|
|
157
|
+
readonly ENTITY_NODE: number;
|
|
158
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
159
|
+
readonly NOTATION_NODE: number;
|
|
160
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
161
|
+
readonly TEXT_NODE: number;
|
|
162
|
+
dispatchEvent(event: Event): boolean;
|
|
163
|
+
ariaAtomic: string;
|
|
164
|
+
ariaAutoComplete: string;
|
|
165
|
+
ariaBusy: string;
|
|
166
|
+
ariaChecked: string;
|
|
167
|
+
ariaColCount: string;
|
|
168
|
+
ariaColIndex: string;
|
|
169
|
+
ariaColIndexText: string;
|
|
170
|
+
ariaColSpan: string;
|
|
171
|
+
ariaCurrent: string;
|
|
172
|
+
ariaDisabled: string;
|
|
173
|
+
ariaExpanded: string;
|
|
174
|
+
ariaHasPopup: string;
|
|
175
|
+
ariaHidden: string;
|
|
176
|
+
ariaInvalid: string;
|
|
177
|
+
ariaKeyShortcuts: string;
|
|
178
|
+
ariaLabel: string;
|
|
179
|
+
ariaLevel: string;
|
|
180
|
+
ariaLive: string;
|
|
181
|
+
ariaModal: string;
|
|
182
|
+
ariaMultiLine: string;
|
|
183
|
+
ariaMultiSelectable: string;
|
|
184
|
+
ariaOrientation: string;
|
|
185
|
+
ariaPlaceholder: string;
|
|
186
|
+
ariaPosInSet: string;
|
|
187
|
+
ariaPressed: string;
|
|
188
|
+
ariaReadOnly: string;
|
|
189
|
+
ariaRequired: string;
|
|
190
|
+
ariaRoleDescription: string;
|
|
191
|
+
ariaRowCount: string;
|
|
192
|
+
ariaRowIndex: string;
|
|
193
|
+
ariaRowIndexText: string;
|
|
194
|
+
ariaRowSpan: string;
|
|
195
|
+
ariaSelected: string;
|
|
196
|
+
ariaSetSize: string;
|
|
197
|
+
ariaSort: string;
|
|
198
|
+
ariaValueMax: string;
|
|
199
|
+
ariaValueMin: string;
|
|
200
|
+
ariaValueNow: string;
|
|
201
|
+
ariaValueText: string;
|
|
202
|
+
role: string;
|
|
203
|
+
animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
|
|
204
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
205
|
+
after(...nodes: (string | Node)[]): void;
|
|
206
|
+
before(...nodes: (string | Node)[]): void;
|
|
207
|
+
remove(): void;
|
|
208
|
+
replaceWith(...nodes: (string | Node)[]): void;
|
|
209
|
+
innerHTML: string;
|
|
210
|
+
readonly nextElementSibling: Element;
|
|
211
|
+
readonly previousElementSibling: Element;
|
|
212
|
+
readonly childElementCount: number;
|
|
213
|
+
readonly children: HTMLCollection;
|
|
214
|
+
readonly firstElementChild: Element;
|
|
215
|
+
readonly lastElementChild: Element;
|
|
216
|
+
append(...nodes: (string | Node)[]): void;
|
|
217
|
+
prepend(...nodes: (string | Node)[]): void;
|
|
218
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
|
219
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
|
220
|
+
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
221
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
222
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
223
|
+
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
224
|
+
replaceChildren(...nodes: (string | Node)[]): void;
|
|
225
|
+
readonly assignedSlot: HTMLSlotElement;
|
|
226
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
227
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
228
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
229
|
+
readonly style: CSSStyleDeclaration;
|
|
230
|
+
contentEditable: string;
|
|
231
|
+
enterKeyHint: string;
|
|
232
|
+
inputMode: string;
|
|
233
|
+
readonly isContentEditable: boolean;
|
|
234
|
+
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
235
|
+
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
236
|
+
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
237
|
+
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
238
|
+
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
239
|
+
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
240
|
+
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
241
|
+
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
242
|
+
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
243
|
+
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
244
|
+
oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
|
|
245
|
+
onchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
246
|
+
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
247
|
+
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
248
|
+
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
249
|
+
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
250
|
+
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
251
|
+
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
252
|
+
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
253
|
+
ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
254
|
+
ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
255
|
+
ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
256
|
+
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
257
|
+
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
258
|
+
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
259
|
+
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
|
260
|
+
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
|
261
|
+
onerror: OnErrorEventHandlerNonNull;
|
|
262
|
+
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
263
|
+
onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
|
|
264
|
+
ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
265
|
+
oninput: (this: GlobalEventHandlers, ev: Event) => any;
|
|
266
|
+
oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
|
|
267
|
+
onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
268
|
+
onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
269
|
+
onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
270
|
+
onload: (this: GlobalEventHandlers, ev: Event) => any;
|
|
271
|
+
onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
272
|
+
onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
273
|
+
onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
274
|
+
onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
275
|
+
onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
276
|
+
onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
277
|
+
onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
278
|
+
onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
279
|
+
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
280
|
+
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
281
|
+
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
282
|
+
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
283
|
+
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
284
|
+
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
285
|
+
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
286
|
+
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
287
|
+
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
288
|
+
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
289
|
+
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
290
|
+
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
291
|
+
onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
292
|
+
onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
293
|
+
onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
|
|
294
|
+
onratechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
295
|
+
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
296
|
+
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
297
|
+
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
298
|
+
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
299
|
+
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
300
|
+
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
301
|
+
onselect: (this: GlobalEventHandlers, ev: Event) => any;
|
|
302
|
+
onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
303
|
+
onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
304
|
+
onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
305
|
+
onstalled: (this: GlobalEventHandlers, ev: Event) => any;
|
|
306
|
+
onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
|
|
307
|
+
onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
308
|
+
ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
|
|
309
|
+
ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
310
|
+
ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
311
|
+
ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
312
|
+
ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
313
|
+
ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
314
|
+
ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
315
|
+
ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
316
|
+
ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
317
|
+
ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
318
|
+
onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
319
|
+
onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
|
|
320
|
+
onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
321
|
+
onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
|
|
322
|
+
onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
323
|
+
onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
324
|
+
onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
|
|
325
|
+
autofocus: boolean;
|
|
326
|
+
readonly dataset: DOMStringMap;
|
|
327
|
+
nonce?: string;
|
|
328
|
+
tabIndex: number;
|
|
329
|
+
blur(): void;
|
|
330
|
+
focus(options?: FocusOptions): void;
|
|
331
|
+
}) & typeof FoundationElement;
|
|
7
332
|
/**
|
|
8
333
|
* Foundation form component for automatically generated forms based on json schema
|
|
9
334
|
* obtained from the api, supplied initial data or supplied JSON schema.
|
|
10
335
|
* Allowing customisable form elements using UI schema and set of custom renderers
|
|
11
336
|
* @beta
|
|
12
337
|
*/
|
|
13
|
-
export declare class Form extends
|
|
338
|
+
export declare class Form extends Form_base {
|
|
14
339
|
/**
|
|
15
340
|
* Name of the design system prefix that will be used in renderers.
|
|
16
341
|
* @public
|
|
@@ -98,6 +423,10 @@ export declare class Form extends FoundationElement {
|
|
|
98
423
|
*/
|
|
99
424
|
_submit(): Promise<void>;
|
|
100
425
|
get isSubmitHidden(): boolean;
|
|
426
|
+
/**
|
|
427
|
+
* @internal
|
|
428
|
+
*/
|
|
429
|
+
deepClone(): Node;
|
|
101
430
|
/**
|
|
102
431
|
* @internal
|
|
103
432
|
*/
|
|
@@ -113,4 +442,5 @@ export declare class Form extends FoundationElement {
|
|
|
113
442
|
*/
|
|
114
443
|
reset(clearData?: boolean): void;
|
|
115
444
|
}
|
|
445
|
+
export {};
|
|
116
446
|
//# sourceMappingURL=form.d.ts.map
|
package/dist/dts/form.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form.d.ts","sourceRoot":"","sources":["../../src/form.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"form.d.ts","sourceRoot":"","sources":["../../src/form.ts"],"names":[],"mappings":"AAGA,OAAO,EAKL,eAAe,EAChB,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAE/D,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAmB1C,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAexC,cAAc;AACd,eAAO,MAAM,SAAS,OAiBrB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACF;;;;;GAKG;AAEH,qBAKa,IAAK,SAAQ,SAAiC;IACzD;;;OAGG;IAC0C,MAAM,EAAE,MAAM,CAAU;IACrE;;;;OAIG;IACG,YAAY,EAAE,MAAM,CAAC;YACb,mBAAmB;IAcjC,OAAO,CAAC,oBAAoB;IA0B5B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAqCG;IACS,QAAQ,EAAE,eAAe,CAAC;IACtC;;;OAGG;IACS,SAAS,EAAE,aAAa,EAAE,CAAa;IACnD;;;;;;OAMG;IACS,UAAU,EAAE,WAAW,CAAC;IAEpC,OAAO,CAAC,MAAM,CAAqB;IAC1B,OAAO,CAAC,OAAO,CAAW;IACnC;;;OAGG;IACS,IAAI,EAAE,GAAG,CAAM;IAE3B;;OAEG;IACS,UAAU,EAAE,OAAO,CAAC;IAChC;;OAEG;IACS,SAAS,EAAE,OAAO,CAAC;IAEJ,QAAQ,EAAE,OAAO,CAAC;IACe,UAAU,EAAE,OAAO,CAAC;IAEhF;;OAEG;IACG,OAAO;IA2Bb,IAAc,cAAc,YAM3B;IAED;;OAEG;IACM,SAAS,IAAI,IAAI;IAW1B;;OAEG;IACH,UAAU,CAAC,KAAK,EAAE,WAAW;IAI7B;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,WAAW;IAQ3B,oBAAoB;IAKpB;;;OAGG;IACH,KAAK,CAAC,SAAS,UAAO;CAMvB"}
|
package/dist/esm/form.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { __awaiter, __decorate } from "tslib";
|
|
2
2
|
import { Connect } from '@genesislcap/foundation-comms';
|
|
3
|
+
import { LifecycleMixin } from '@genesislcap/foundation-utils';
|
|
3
4
|
import JsonSchemaDereferencer from '@json-schema-tools/dereferencer';
|
|
4
5
|
import { isControl, isStringControl, mapStateToControlProps, rankWith, } from '@jsonforms/core';
|
|
5
6
|
import { attr, customElement, DOM, observable, volatile } from '@microsoft/fast-element';
|
|
@@ -57,7 +58,7 @@ export const renderers = [
|
|
|
57
58
|
* Allowing customisable form elements using UI schema and set of custom renderers
|
|
58
59
|
* @beta
|
|
59
60
|
*/
|
|
60
|
-
let Form = class Form extends FoundationElement {
|
|
61
|
+
let Form = class Form extends LifecycleMixin(FoundationElement) {
|
|
61
62
|
constructor() {
|
|
62
63
|
super(...arguments);
|
|
63
64
|
/**
|
|
@@ -147,6 +148,20 @@ let Form = class Form extends FoundationElement {
|
|
|
147
148
|
return true;
|
|
148
149
|
}
|
|
149
150
|
}
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
deepClone() {
|
|
155
|
+
const copy = super.deepClone();
|
|
156
|
+
try {
|
|
157
|
+
copy.uischema = structuredClone(this.uischema);
|
|
158
|
+
copy.jsonSchema = structuredClone(this.jsonSchema);
|
|
159
|
+
}
|
|
160
|
+
catch (e) {
|
|
161
|
+
logger.error('Error cloning form', e);
|
|
162
|
+
}
|
|
163
|
+
return copy;
|
|
164
|
+
}
|
|
150
165
|
/**
|
|
151
166
|
* @internal
|
|
152
167
|
*/
|
|
@@ -10,7 +10,7 @@ export const BooleanControlRendererTemplate = (prefix = 'zero') => html `
|
|
|
10
10
|
?submitted=${(x) => x.submitted}
|
|
11
11
|
>
|
|
12
12
|
<${prefix}-checkbox
|
|
13
|
-
|
|
13
|
+
?checked=${(x) => x.control.data}
|
|
14
14
|
?disabled=${(x) => !x.control.enabled}
|
|
15
15
|
:autofocus=${(x) => x.control.config.focus}
|
|
16
16
|
:placeholder=${(x) => x.control.config.placeholder}
|
|
@@ -651,8 +651,8 @@
|
|
|
651
651
|
},
|
|
652
652
|
{
|
|
653
653
|
"kind": "Reference",
|
|
654
|
-
"text": "
|
|
655
|
-
"canonicalReference": "@
|
|
654
|
+
"text": "Form_base",
|
|
655
|
+
"canonicalReference": "@genesislcap/foundation-forms!~Form_base"
|
|
656
656
|
},
|
|
657
657
|
{
|
|
658
658
|
"kind": "Content",
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
+
import { Controller } from '@microsoft/fast-element';
|
|
1
2
|
import { DatasourceOptions } from '@genesislcap/foundation-comms';
|
|
3
|
+
import { DOMContainer } from '@genesislcap/foundation-utils';
|
|
2
4
|
import { ElementStyles } from '@microsoft/fast-element';
|
|
3
5
|
import { ErrorObject } from 'ajv';
|
|
4
6
|
import { ErrorTranslator } from '@jsonforms/core';
|
|
5
7
|
import { Expression } from '@genesislcap/foundation-criteria';
|
|
6
8
|
import { FASTElement } from '@microsoft/fast-element';
|
|
7
9
|
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
10
|
+
import { FoundationLayoutContainer } from '@genesislcap/foundation-utils';
|
|
8
11
|
import { JsonFormsState } from '@jsonforms/core';
|
|
9
12
|
import { JSONSchema7 } from 'json-schema';
|
|
13
|
+
import { LayoutCacheContainer } from '@genesislcap/foundation-utils';
|
|
10
14
|
import { Logger } from '@genesislcap/foundation-logger';
|
|
11
15
|
import { OwnPropsOfControl } from '@jsonforms/core';
|
|
12
16
|
import { RankedTester } from '@jsonforms/core';
|
|
@@ -209,7 +213,7 @@ export declare const filtersRenderers: any[];
|
|
|
209
213
|
* Allowing customisable form elements using UI schema and set of custom renderers
|
|
210
214
|
* @beta
|
|
211
215
|
*/
|
|
212
|
-
export declare class Form extends
|
|
216
|
+
export declare class Form extends Form_base {
|
|
213
217
|
/**
|
|
214
218
|
* Name of the design system prefix that will be used in renderers.
|
|
215
219
|
* @public
|
|
@@ -297,6 +301,10 @@ export declare class Form extends FoundationElement {
|
|
|
297
301
|
*/
|
|
298
302
|
_submit(): Promise<void>;
|
|
299
303
|
get isSubmitHidden(): boolean;
|
|
304
|
+
/**
|
|
305
|
+
* @internal
|
|
306
|
+
*/
|
|
307
|
+
deepClone(): Node;
|
|
300
308
|
/**
|
|
301
309
|
* @internal
|
|
302
310
|
*/
|
|
@@ -313,6 +321,332 @@ export declare class Form extends FoundationElement {
|
|
|
313
321
|
reset(clearData?: boolean): void;
|
|
314
322
|
}
|
|
315
323
|
|
|
324
|
+
declare const Form_base: (new (...args: any[]) => {
|
|
325
|
+
"__#1@#_container": FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
|
326
|
+
"__#1@#_latestTokenCode": string;
|
|
327
|
+
"__#1@#_hasFirstLoaded": boolean;
|
|
328
|
+
"__#1@#_cleanupTimeout": NodeJS.Timeout;
|
|
329
|
+
"__#1@#_shouldForceLifecycle": boolean;
|
|
330
|
+
cloneNode(deep?: boolean): Node;
|
|
331
|
+
deepClone(): Node;
|
|
332
|
+
readonly shouldRunDisconnect: boolean;
|
|
333
|
+
readonly shouldRunConnect: boolean;
|
|
334
|
+
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
|
335
|
+
"__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
|
336
|
+
connectedCallback(): void;
|
|
337
|
+
readonly $fastController: Controller;
|
|
338
|
+
$emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
|
|
339
|
+
disconnectedCallback(): void;
|
|
340
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
|
341
|
+
accessKey: string;
|
|
342
|
+
readonly accessKeyLabel: string;
|
|
343
|
+
autocapitalize: string;
|
|
344
|
+
dir: string;
|
|
345
|
+
draggable: boolean;
|
|
346
|
+
hidden: boolean;
|
|
347
|
+
inert: boolean;
|
|
348
|
+
innerText: string;
|
|
349
|
+
lang: string;
|
|
350
|
+
readonly offsetHeight: number;
|
|
351
|
+
readonly offsetLeft: number;
|
|
352
|
+
readonly offsetParent: Element;
|
|
353
|
+
readonly offsetTop: number;
|
|
354
|
+
readonly offsetWidth: number;
|
|
355
|
+
outerText: string;
|
|
356
|
+
spellcheck: boolean;
|
|
357
|
+
title: string;
|
|
358
|
+
translate: boolean;
|
|
359
|
+
attachInternals(): ElementInternals;
|
|
360
|
+
click(): void;
|
|
361
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
362
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
363
|
+
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
364
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
365
|
+
readonly attributes: NamedNodeMap;
|
|
366
|
+
readonly classList: DOMTokenList;
|
|
367
|
+
className: string;
|
|
368
|
+
readonly clientHeight: number;
|
|
369
|
+
readonly clientLeft: number;
|
|
370
|
+
readonly clientTop: number;
|
|
371
|
+
readonly clientWidth: number;
|
|
372
|
+
id: string;
|
|
373
|
+
readonly localName: string;
|
|
374
|
+
readonly namespaceURI: string;
|
|
375
|
+
onfullscreenchange: (this: Element, ev: Event) => any;
|
|
376
|
+
onfullscreenerror: (this: Element, ev: Event) => any;
|
|
377
|
+
outerHTML: string;
|
|
378
|
+
readonly ownerDocument: Document;
|
|
379
|
+
readonly part: DOMTokenList;
|
|
380
|
+
readonly prefix: string;
|
|
381
|
+
readonly scrollHeight: number;
|
|
382
|
+
scrollLeft: number;
|
|
383
|
+
scrollTop: number;
|
|
384
|
+
readonly scrollWidth: number;
|
|
385
|
+
readonly shadowRoot: ShadowRoot;
|
|
386
|
+
slot: string;
|
|
387
|
+
readonly tagName: string;
|
|
388
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
389
|
+
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
390
|
+
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
391
|
+
closest<E extends Element = Element>(selectors: string): E;
|
|
392
|
+
getAttribute(qualifiedName: string): string;
|
|
393
|
+
getAttributeNS(namespace: string, localName: string): string;
|
|
394
|
+
getAttributeNames(): string[];
|
|
395
|
+
getAttributeNode(qualifiedName: string): Attr;
|
|
396
|
+
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
|
397
|
+
getBoundingClientRect(): DOMRect;
|
|
398
|
+
getClientRects(): DOMRectList;
|
|
399
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
400
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
401
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
402
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
403
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
404
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
405
|
+
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
406
|
+
hasAttribute(qualifiedName: string): boolean;
|
|
407
|
+
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
408
|
+
hasAttributes(): boolean;
|
|
409
|
+
hasPointerCapture(pointerId: number): boolean;
|
|
410
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
411
|
+
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
412
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
413
|
+
matches(selectors: string): boolean;
|
|
414
|
+
releasePointerCapture(pointerId: number): void;
|
|
415
|
+
removeAttribute(qualifiedName: string): void;
|
|
416
|
+
removeAttributeNS(namespace: string, localName: string): void;
|
|
417
|
+
removeAttributeNode(attr: Attr): Attr;
|
|
418
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
419
|
+
requestPointerLock(): void;
|
|
420
|
+
scroll(options?: ScrollToOptions): void;
|
|
421
|
+
scroll(x: number, y: number): void;
|
|
422
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
423
|
+
scrollBy(x: number, y: number): void;
|
|
424
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
425
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
426
|
+
scrollTo(x: number, y: number): void;
|
|
427
|
+
setAttribute(qualifiedName: string, value: string): void;
|
|
428
|
+
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
|
429
|
+
setAttributeNode(attr: Attr): Attr;
|
|
430
|
+
setAttributeNodeNS(attr: Attr): Attr;
|
|
431
|
+
setPointerCapture(pointerId: number): void;
|
|
432
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
433
|
+
webkitMatchesSelector(selectors: string): boolean;
|
|
434
|
+
readonly baseURI: string;
|
|
435
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
436
|
+
readonly firstChild: ChildNode;
|
|
437
|
+
readonly isConnected: boolean;
|
|
438
|
+
readonly lastChild: ChildNode;
|
|
439
|
+
readonly nextSibling: ChildNode;
|
|
440
|
+
readonly nodeName: string;
|
|
441
|
+
readonly nodeType: number;
|
|
442
|
+
nodeValue: string;
|
|
443
|
+
readonly parentElement: HTMLElement;
|
|
444
|
+
readonly parentNode: ParentNode;
|
|
445
|
+
readonly previousSibling: ChildNode;
|
|
446
|
+
textContent: string;
|
|
447
|
+
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
448
|
+
compareDocumentPosition(other: Node): number;
|
|
449
|
+
contains(other: Node): boolean;
|
|
450
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
451
|
+
hasChildNodes(): boolean;
|
|
452
|
+
insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
|
|
453
|
+
isDefaultNamespace(namespace: string): boolean;
|
|
454
|
+
isEqualNode(otherNode: Node): boolean;
|
|
455
|
+
isSameNode(otherNode: Node): boolean;
|
|
456
|
+
lookupNamespaceURI(prefix: string): string;
|
|
457
|
+
lookupPrefix(namespace: string): string;
|
|
458
|
+
normalize(): void;
|
|
459
|
+
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
460
|
+
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
461
|
+
readonly ATTRIBUTE_NODE: number;
|
|
462
|
+
readonly CDATA_SECTION_NODE: number;
|
|
463
|
+
readonly COMMENT_NODE: number;
|
|
464
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
465
|
+
readonly DOCUMENT_NODE: number;
|
|
466
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
467
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
468
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
469
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
470
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
471
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
472
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
473
|
+
readonly ELEMENT_NODE: number;
|
|
474
|
+
readonly ENTITY_NODE: number;
|
|
475
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
476
|
+
readonly NOTATION_NODE: number;
|
|
477
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
478
|
+
readonly TEXT_NODE: number;
|
|
479
|
+
dispatchEvent(event: Event): boolean;
|
|
480
|
+
ariaAtomic: string;
|
|
481
|
+
ariaAutoComplete: string;
|
|
482
|
+
ariaBusy: string;
|
|
483
|
+
ariaChecked: string;
|
|
484
|
+
ariaColCount: string;
|
|
485
|
+
ariaColIndex: string;
|
|
486
|
+
ariaColIndexText: string;
|
|
487
|
+
ariaColSpan: string;
|
|
488
|
+
ariaCurrent: string;
|
|
489
|
+
ariaDisabled: string;
|
|
490
|
+
ariaExpanded: string;
|
|
491
|
+
ariaHasPopup: string;
|
|
492
|
+
ariaHidden: string;
|
|
493
|
+
ariaInvalid: string;
|
|
494
|
+
ariaKeyShortcuts: string;
|
|
495
|
+
ariaLabel: string;
|
|
496
|
+
ariaLevel: string;
|
|
497
|
+
ariaLive: string;
|
|
498
|
+
ariaModal: string;
|
|
499
|
+
ariaMultiLine: string;
|
|
500
|
+
ariaMultiSelectable: string;
|
|
501
|
+
ariaOrientation: string;
|
|
502
|
+
ariaPlaceholder: string;
|
|
503
|
+
ariaPosInSet: string;
|
|
504
|
+
ariaPressed: string;
|
|
505
|
+
ariaReadOnly: string;
|
|
506
|
+
ariaRequired: string;
|
|
507
|
+
ariaRoleDescription: string;
|
|
508
|
+
ariaRowCount: string;
|
|
509
|
+
ariaRowIndex: string;
|
|
510
|
+
ariaRowIndexText: string;
|
|
511
|
+
ariaRowSpan: string;
|
|
512
|
+
ariaSelected: string;
|
|
513
|
+
ariaSetSize: string;
|
|
514
|
+
ariaSort: string;
|
|
515
|
+
ariaValueMax: string;
|
|
516
|
+
ariaValueMin: string;
|
|
517
|
+
ariaValueNow: string;
|
|
518
|
+
ariaValueText: string;
|
|
519
|
+
role: string;
|
|
520
|
+
animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
|
|
521
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
522
|
+
after(...nodes: (string | Node)[]): void;
|
|
523
|
+
before(...nodes: (string | Node)[]): void;
|
|
524
|
+
remove(): void;
|
|
525
|
+
replaceWith(...nodes: (string | Node)[]): void;
|
|
526
|
+
innerHTML: string;
|
|
527
|
+
readonly nextElementSibling: Element;
|
|
528
|
+
readonly previousElementSibling: Element;
|
|
529
|
+
readonly childElementCount: number;
|
|
530
|
+
readonly children: HTMLCollection;
|
|
531
|
+
readonly firstElementChild: Element;
|
|
532
|
+
readonly lastElementChild: Element;
|
|
533
|
+
append(...nodes: (string | Node)[]): void;
|
|
534
|
+
prepend(...nodes: (string | Node)[]): void;
|
|
535
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
|
536
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
|
537
|
+
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
538
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
539
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
540
|
+
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
541
|
+
replaceChildren(...nodes: (string | Node)[]): void;
|
|
542
|
+
readonly assignedSlot: HTMLSlotElement;
|
|
543
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
544
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
545
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
546
|
+
readonly style: CSSStyleDeclaration;
|
|
547
|
+
contentEditable: string;
|
|
548
|
+
enterKeyHint: string;
|
|
549
|
+
inputMode: string;
|
|
550
|
+
readonly isContentEditable: boolean;
|
|
551
|
+
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
552
|
+
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
553
|
+
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
554
|
+
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
555
|
+
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
556
|
+
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
557
|
+
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
558
|
+
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
559
|
+
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
560
|
+
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
561
|
+
oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
|
|
562
|
+
onchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
563
|
+
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
564
|
+
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
565
|
+
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
566
|
+
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
567
|
+
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
568
|
+
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
569
|
+
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
570
|
+
ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
571
|
+
ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
572
|
+
ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
573
|
+
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
574
|
+
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
575
|
+
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
576
|
+
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
|
577
|
+
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
|
578
|
+
onerror: OnErrorEventHandlerNonNull;
|
|
579
|
+
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
580
|
+
onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
|
|
581
|
+
ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
582
|
+
oninput: (this: GlobalEventHandlers, ev: Event) => any;
|
|
583
|
+
oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
|
|
584
|
+
onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
585
|
+
onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
586
|
+
onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
|
587
|
+
onload: (this: GlobalEventHandlers, ev: Event) => any;
|
|
588
|
+
onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
589
|
+
onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
|
|
590
|
+
onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
591
|
+
onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
592
|
+
onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
593
|
+
onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
594
|
+
onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
595
|
+
onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
596
|
+
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
597
|
+
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
598
|
+
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
599
|
+
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
600
|
+
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
601
|
+
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
602
|
+
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
603
|
+
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
604
|
+
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
605
|
+
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
606
|
+
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
607
|
+
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
608
|
+
onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
609
|
+
onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
610
|
+
onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
|
|
611
|
+
onratechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
612
|
+
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
613
|
+
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
614
|
+
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
615
|
+
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
616
|
+
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
617
|
+
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
618
|
+
onselect: (this: GlobalEventHandlers, ev: Event) => any;
|
|
619
|
+
onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
620
|
+
onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
621
|
+
onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
622
|
+
onstalled: (this: GlobalEventHandlers, ev: Event) => any;
|
|
623
|
+
onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
|
|
624
|
+
onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
625
|
+
ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
|
|
626
|
+
ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
627
|
+
ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
628
|
+
ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
629
|
+
ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
630
|
+
ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
|
631
|
+
ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
632
|
+
ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
633
|
+
ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
634
|
+
ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
|
635
|
+
onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
636
|
+
onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
|
|
637
|
+
onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
638
|
+
onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
|
|
639
|
+
onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
|
|
640
|
+
onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
641
|
+
onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
|
|
642
|
+
autofocus: boolean;
|
|
643
|
+
readonly dataset: DOMStringMap;
|
|
644
|
+
nonce?: string;
|
|
645
|
+
tabIndex: number;
|
|
646
|
+
blur(): void;
|
|
647
|
+
focus(options?: FocusOptions): void;
|
|
648
|
+
}) & typeof FoundationElement;
|
|
649
|
+
|
|
316
650
|
/** @internal */
|
|
317
651
|
export declare const foundationFormStyles: ElementStyles;
|
|
318
652
|
|
|
@@ -12,9 +12,9 @@ Foundation form component for automatically generated forms based on json schema
|
|
|
12
12
|
**Signature:**
|
|
13
13
|
|
|
14
14
|
```typescript
|
|
15
|
-
export declare class Form extends
|
|
15
|
+
export declare class Form extends Form_base
|
|
16
16
|
```
|
|
17
|
-
**Extends:**
|
|
17
|
+
**Extends:** Form\_base
|
|
18
18
|
|
|
19
19
|
## Properties
|
|
20
20
|
|
package/docs/api-report.md
CHANGED
|
@@ -4,15 +4,19 @@
|
|
|
4
4
|
|
|
5
5
|
```ts
|
|
6
6
|
|
|
7
|
+
import { Controller } from '@microsoft/fast-element';
|
|
7
8
|
import { DatasourceOptions } from '@genesislcap/foundation-comms';
|
|
9
|
+
import { DOMContainer } from '@genesislcap/foundation-utils';
|
|
8
10
|
import { ElementStyles } from '@microsoft/fast-element';
|
|
9
11
|
import { ErrorObject } from 'ajv';
|
|
10
12
|
import { ErrorTranslator } from '@jsonforms/core';
|
|
11
13
|
import { Expression } from '@genesislcap/foundation-criteria';
|
|
12
14
|
import { FASTElement } from '@microsoft/fast-element';
|
|
13
15
|
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
16
|
+
import { FoundationLayoutContainer } from '@genesislcap/foundation-utils';
|
|
14
17
|
import { JsonFormsState } from '@jsonforms/core';
|
|
15
18
|
import { JSONSchema7 } from 'json-schema';
|
|
19
|
+
import { LayoutCacheContainer } from '@genesislcap/foundation-utils';
|
|
16
20
|
import { Logger } from '@genesislcap/foundation-logger';
|
|
17
21
|
import { OwnPropsOfControl } from '@jsonforms/core';
|
|
18
22
|
import { RankedTester } from '@jsonforms/core';
|
|
@@ -79,10 +83,14 @@ export const filtersLogger: Logger;
|
|
|
79
83
|
// @public (undocumented)
|
|
80
84
|
export const filtersRenderers: any[];
|
|
81
85
|
|
|
86
|
+
// Warning: (ae-forgotten-export) The symbol "Form_base" needs to be exported by the entry point index.d.ts
|
|
87
|
+
//
|
|
82
88
|
// @beta
|
|
83
|
-
export class Form extends
|
|
89
|
+
export class Form extends Form_base {
|
|
84
90
|
// @public
|
|
85
91
|
data: any;
|
|
92
|
+
// @internal (undocumented)
|
|
93
|
+
deepClone(): Node;
|
|
86
94
|
// (undocumented)
|
|
87
95
|
disconnectedCallback(): void;
|
|
88
96
|
// (undocumented)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-forms",
|
|
3
3
|
"description": "Genesis Foundation Forms",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.158.1-forms-deepclone.2",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -40,22 +40,22 @@
|
|
|
40
40
|
"test:debug": "genx test --debug"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@genesislcap/foundation-testing": "14.
|
|
44
|
-
"@genesislcap/genx": "14.
|
|
45
|
-
"@genesislcap/rollup-builder": "14.
|
|
46
|
-
"@genesislcap/ts-builder": "14.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
48
|
-
"@genesislcap/vite-builder": "14.
|
|
49
|
-
"@genesislcap/webpack-builder": "14.
|
|
43
|
+
"@genesislcap/foundation-testing": "14.158.1-forms-deepclone.2",
|
|
44
|
+
"@genesislcap/genx": "14.158.1-forms-deepclone.2",
|
|
45
|
+
"@genesislcap/rollup-builder": "14.158.1-forms-deepclone.2",
|
|
46
|
+
"@genesislcap/ts-builder": "14.158.1-forms-deepclone.2",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "14.158.1-forms-deepclone.2",
|
|
48
|
+
"@genesislcap/vite-builder": "14.158.1-forms-deepclone.2",
|
|
49
|
+
"@genesislcap/webpack-builder": "14.158.1-forms-deepclone.2",
|
|
50
50
|
"@types/json-schema": "^7.0.11",
|
|
51
51
|
"rimraf": "^3.0.2"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@genesislcap/foundation-comms": "14.
|
|
55
|
-
"@genesislcap/foundation-criteria": "14.
|
|
56
|
-
"@genesislcap/foundation-logger": "14.
|
|
57
|
-
"@genesislcap/foundation-ui": "14.
|
|
58
|
-
"@genesislcap/foundation-utils": "14.
|
|
54
|
+
"@genesislcap/foundation-comms": "14.158.1-forms-deepclone.2",
|
|
55
|
+
"@genesislcap/foundation-criteria": "14.158.1-forms-deepclone.2",
|
|
56
|
+
"@genesislcap/foundation-logger": "14.158.1-forms-deepclone.2",
|
|
57
|
+
"@genesislcap/foundation-ui": "14.158.1-forms-deepclone.2",
|
|
58
|
+
"@genesislcap/foundation-utils": "14.158.1-forms-deepclone.2",
|
|
59
59
|
"@json-schema-tools/dereferencer": "^1.6.1",
|
|
60
60
|
"@jsonforms/core": "^3.2.1",
|
|
61
61
|
"@microsoft/fast-components": "^2.30.6",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"access": "public"
|
|
77
77
|
},
|
|
78
78
|
"customElements": "dist/custom-elements.json",
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "402499c1e1ed4510c6d4a5cb0cf2da2776ed9e50"
|
|
80
80
|
}
|