@genesislcap/foundation-forms 14.22.2-alpha-b9494eda6.0 → 14.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -141,6 +141,117 @@
|
|
|
141
141
|
"type": {
|
|
142
142
|
"text": "boolean"
|
|
143
143
|
}
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"kind": "field",
|
|
147
|
+
"name": "_presentation",
|
|
148
|
+
"type": {
|
|
149
|
+
"text": "ComponentPresentation | null | undefined"
|
|
150
|
+
},
|
|
151
|
+
"privacy": "private",
|
|
152
|
+
"default": "void 0",
|
|
153
|
+
"inheritedFrom": {
|
|
154
|
+
"name": "FoundationElement",
|
|
155
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"kind": "field",
|
|
160
|
+
"name": "$presentation",
|
|
161
|
+
"type": {
|
|
162
|
+
"text": "ComponentPresentation | null"
|
|
163
|
+
},
|
|
164
|
+
"privacy": "public",
|
|
165
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
166
|
+
"inheritedFrom": {
|
|
167
|
+
"name": "FoundationElement",
|
|
168
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"kind": "field",
|
|
173
|
+
"name": "template",
|
|
174
|
+
"type": {
|
|
175
|
+
"text": "ElementViewTemplate | void | null"
|
|
176
|
+
},
|
|
177
|
+
"privacy": "public",
|
|
178
|
+
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
179
|
+
"inheritedFrom": {
|
|
180
|
+
"name": "FoundationElement",
|
|
181
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"kind": "method",
|
|
186
|
+
"name": "templateChanged",
|
|
187
|
+
"privacy": "protected",
|
|
188
|
+
"return": {
|
|
189
|
+
"type": {
|
|
190
|
+
"text": "void"
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
"inheritedFrom": {
|
|
194
|
+
"name": "FoundationElement",
|
|
195
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"kind": "field",
|
|
200
|
+
"name": "styles",
|
|
201
|
+
"type": {
|
|
202
|
+
"text": "ElementStyles | void | null"
|
|
203
|
+
},
|
|
204
|
+
"privacy": "public",
|
|
205
|
+
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
206
|
+
"inheritedFrom": {
|
|
207
|
+
"name": "FoundationElement",
|
|
208
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"kind": "method",
|
|
213
|
+
"name": "stylesChanged",
|
|
214
|
+
"privacy": "protected",
|
|
215
|
+
"return": {
|
|
216
|
+
"type": {
|
|
217
|
+
"text": "void"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"inheritedFrom": {
|
|
221
|
+
"name": "FoundationElement",
|
|
222
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"kind": "method",
|
|
227
|
+
"name": "compose",
|
|
228
|
+
"privacy": "public",
|
|
229
|
+
"static": true,
|
|
230
|
+
"return": {
|
|
231
|
+
"type": {
|
|
232
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"parameters": [
|
|
236
|
+
{
|
|
237
|
+
"name": "this",
|
|
238
|
+
"type": {
|
|
239
|
+
"text": "K"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"name": "elementDefinition",
|
|
244
|
+
"type": {
|
|
245
|
+
"text": "T"
|
|
246
|
+
},
|
|
247
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
248
|
+
}
|
|
249
|
+
],
|
|
250
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
251
|
+
"inheritedFrom": {
|
|
252
|
+
"name": "FoundationElement",
|
|
253
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
254
|
+
}
|
|
144
255
|
}
|
|
145
256
|
],
|
|
146
257
|
"attributes": [
|
|
@@ -381,6 +492,117 @@
|
|
|
381
492
|
{
|
|
382
493
|
"kind": "method",
|
|
383
494
|
"name": "valueChanged"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"kind": "field",
|
|
498
|
+
"name": "_presentation",
|
|
499
|
+
"type": {
|
|
500
|
+
"text": "ComponentPresentation | null | undefined"
|
|
501
|
+
},
|
|
502
|
+
"privacy": "private",
|
|
503
|
+
"default": "void 0",
|
|
504
|
+
"inheritedFrom": {
|
|
505
|
+
"name": "FoundationElement",
|
|
506
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"kind": "field",
|
|
511
|
+
"name": "$presentation",
|
|
512
|
+
"type": {
|
|
513
|
+
"text": "ComponentPresentation | null"
|
|
514
|
+
},
|
|
515
|
+
"privacy": "public",
|
|
516
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
517
|
+
"inheritedFrom": {
|
|
518
|
+
"name": "FoundationElement",
|
|
519
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
520
|
+
}
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"kind": "field",
|
|
524
|
+
"name": "template",
|
|
525
|
+
"type": {
|
|
526
|
+
"text": "ElementViewTemplate | void | null"
|
|
527
|
+
},
|
|
528
|
+
"privacy": "public",
|
|
529
|
+
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
530
|
+
"inheritedFrom": {
|
|
531
|
+
"name": "FoundationElement",
|
|
532
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"kind": "method",
|
|
537
|
+
"name": "templateChanged",
|
|
538
|
+
"privacy": "protected",
|
|
539
|
+
"return": {
|
|
540
|
+
"type": {
|
|
541
|
+
"text": "void"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"inheritedFrom": {
|
|
545
|
+
"name": "FoundationElement",
|
|
546
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"kind": "field",
|
|
551
|
+
"name": "styles",
|
|
552
|
+
"type": {
|
|
553
|
+
"text": "ElementStyles | void | null"
|
|
554
|
+
},
|
|
555
|
+
"privacy": "public",
|
|
556
|
+
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
557
|
+
"inheritedFrom": {
|
|
558
|
+
"name": "FoundationElement",
|
|
559
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"kind": "method",
|
|
564
|
+
"name": "stylesChanged",
|
|
565
|
+
"privacy": "protected",
|
|
566
|
+
"return": {
|
|
567
|
+
"type": {
|
|
568
|
+
"text": "void"
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"inheritedFrom": {
|
|
572
|
+
"name": "FoundationElement",
|
|
573
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"kind": "method",
|
|
578
|
+
"name": "compose",
|
|
579
|
+
"privacy": "public",
|
|
580
|
+
"static": true,
|
|
581
|
+
"return": {
|
|
582
|
+
"type": {
|
|
583
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
"parameters": [
|
|
587
|
+
{
|
|
588
|
+
"name": "this",
|
|
589
|
+
"type": {
|
|
590
|
+
"text": "K"
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"name": "elementDefinition",
|
|
595
|
+
"type": {
|
|
596
|
+
"text": "T"
|
|
597
|
+
},
|
|
598
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
599
|
+
}
|
|
600
|
+
],
|
|
601
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
602
|
+
"inheritedFrom": {
|
|
603
|
+
"name": "FoundationElement",
|
|
604
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
605
|
+
}
|
|
384
606
|
}
|
|
385
607
|
],
|
|
386
608
|
"events": [
|
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.23.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -20,20 +20,15 @@
|
|
|
20
20
|
"PORT": 3090
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
|
-
"
|
|
24
|
-
"api:document": "api-documenter markdown -i dist -o docs/api",
|
|
25
|
-
"api:extract": "api-extractor run",
|
|
26
|
-
"build": "npm run clean && npm run build:tsc && npm run api",
|
|
23
|
+
"build": "genx build",
|
|
27
24
|
"build:rollup": "rollup -c",
|
|
28
25
|
"build:rollup:stats": "cross-env ANALYZE=1 npm run build:rollup",
|
|
29
|
-
"build:tsc": "tsc -b ./tsconfig.json",
|
|
30
26
|
"build:webpack": "cross-env NODE_ENV=production webpack",
|
|
31
27
|
"build:webpack:stats": "cross-env ANALYZE=1 npm run build:webpack",
|
|
32
|
-
"
|
|
33
|
-
"clean": "genx clean dist tsconfig.tsbuildinfo .rollup.cache",
|
|
28
|
+
"clean": "genx clean",
|
|
34
29
|
"dev": "npm run dev:tsc",
|
|
35
30
|
"dev:rollup": "rollup -c -w --configDev",
|
|
36
|
-
"dev:tsc": "
|
|
31
|
+
"dev:tsc": "genx dev",
|
|
37
32
|
"dev:webpack": "cross-env NODE_ENV=development webpack serve",
|
|
38
33
|
"serve": "genx serve",
|
|
39
34
|
"test": "npm run test:unit",
|
|
@@ -49,8 +44,8 @@
|
|
|
49
44
|
},
|
|
50
45
|
"devDependencies": {
|
|
51
46
|
"@custom-elements-manifest/analyzer": "^0.8.2",
|
|
52
|
-
"@genesislcap/foundation-testing": "14.
|
|
53
|
-
"@genesislcap/genx": "14.
|
|
47
|
+
"@genesislcap/foundation-testing": "^14.23.0",
|
|
48
|
+
"@genesislcap/genx": "^14.23.0",
|
|
54
49
|
"@microsoft/api-documenter": "^7.19.13",
|
|
55
50
|
"@microsoft/api-extractor": "^7.31.1",
|
|
56
51
|
"@module-federation/dashboard-plugin": "2.3.0",
|
|
@@ -100,9 +95,9 @@
|
|
|
100
95
|
"webpack-merge": "^5.7.3"
|
|
101
96
|
},
|
|
102
97
|
"dependencies": {
|
|
103
|
-
"@genesislcap/foundation-comms": "14.
|
|
104
|
-
"@genesislcap/foundation-criteria": "14.
|
|
105
|
-
"@genesislcap/foundation-utils": "14.
|
|
98
|
+
"@genesislcap/foundation-comms": "^14.23.0",
|
|
99
|
+
"@genesislcap/foundation-criteria": "^14.23.0",
|
|
100
|
+
"@genesislcap/foundation-utils": "^14.23.0",
|
|
106
101
|
"@jsonforms/core": "^3.0.0",
|
|
107
102
|
"@microsoft/fast-components": "^2.21.3",
|
|
108
103
|
"@microsoft/fast-element": "^1.7.0",
|
|
@@ -123,5 +118,5 @@
|
|
|
123
118
|
"access": "public"
|
|
124
119
|
},
|
|
125
120
|
"customElements": "dist/custom-elements.json",
|
|
126
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "e32f041c0d827b1731f2de5ba5aeef20bb4ae7a9"
|
|
127
122
|
}
|