@genesislcap/foundation-utils 14.442.0 → 14.443.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +103 -103
- package/package.json +11 -11
|
@@ -209,6 +209,100 @@
|
|
|
209
209
|
}
|
|
210
210
|
]
|
|
211
211
|
},
|
|
212
|
+
{
|
|
213
|
+
"kind": "javascript-module",
|
|
214
|
+
"path": "src/converters/index.ts",
|
|
215
|
+
"declarations": [],
|
|
216
|
+
"exports": [
|
|
217
|
+
{
|
|
218
|
+
"kind": "js",
|
|
219
|
+
"name": "*",
|
|
220
|
+
"declaration": {
|
|
221
|
+
"name": "*",
|
|
222
|
+
"package": "./string-array-converter"
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"kind": "javascript-module",
|
|
229
|
+
"path": "src/converters/string-array-converter.ts",
|
|
230
|
+
"declarations": [
|
|
231
|
+
{
|
|
232
|
+
"kind": "variable",
|
|
233
|
+
"name": "stringArrayConverter",
|
|
234
|
+
"type": {
|
|
235
|
+
"text": "ValueConverter"
|
|
236
|
+
},
|
|
237
|
+
"default": "{\n fromView(v: string): string | string[] | undefined {\n if (!v?.trim()) return undefined;\n return v.includes(',') ? v.split(',').map((s) => s.trim()) : v.trim();\n },\n toView(v: string | string[] | undefined): string {\n if (typeof v === 'string') return v;\n if (Array.isArray(v)) return v.join(',');\n return '';\n },\n}",
|
|
238
|
+
"description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
|
|
239
|
+
"privacy": "public"
|
|
240
|
+
}
|
|
241
|
+
],
|
|
242
|
+
"exports": [
|
|
243
|
+
{
|
|
244
|
+
"kind": "js",
|
|
245
|
+
"name": "stringArrayConverter",
|
|
246
|
+
"declaration": {
|
|
247
|
+
"name": "stringArrayConverter",
|
|
248
|
+
"module": "src/converters/string-array-converter.ts"
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
]
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"kind": "javascript-module",
|
|
255
|
+
"path": "src/decorators/index.ts",
|
|
256
|
+
"declarations": [],
|
|
257
|
+
"exports": [
|
|
258
|
+
{
|
|
259
|
+
"kind": "js",
|
|
260
|
+
"name": "*",
|
|
261
|
+
"declaration": {
|
|
262
|
+
"name": "*",
|
|
263
|
+
"package": "./renderOnChange"
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"kind": "javascript-module",
|
|
270
|
+
"path": "src/decorators/renderOnChange.ts",
|
|
271
|
+
"declarations": [
|
|
272
|
+
{
|
|
273
|
+
"kind": "function",
|
|
274
|
+
"name": "renderOnChange",
|
|
275
|
+
"parameters": [
|
|
276
|
+
{
|
|
277
|
+
"name": "target",
|
|
278
|
+
"type": {
|
|
279
|
+
"text": "FASTElement & { render(): void }"
|
|
280
|
+
},
|
|
281
|
+
"description": "The target to define the property change handler on."
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"name": "name",
|
|
285
|
+
"type": {
|
|
286
|
+
"text": "string"
|
|
287
|
+
},
|
|
288
|
+
"description": "The property name."
|
|
289
|
+
}
|
|
290
|
+
],
|
|
291
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
292
|
+
"privacy": "public"
|
|
293
|
+
}
|
|
294
|
+
],
|
|
295
|
+
"exports": [
|
|
296
|
+
{
|
|
297
|
+
"kind": "js",
|
|
298
|
+
"name": "renderOnChange",
|
|
299
|
+
"declaration": {
|
|
300
|
+
"name": "renderOnChange",
|
|
301
|
+
"module": "src/decorators/renderOnChange.ts"
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
]
|
|
305
|
+
},
|
|
212
306
|
{
|
|
213
307
|
"kind": "javascript-module",
|
|
214
308
|
"path": "src/data/inMemoryDatabase.ts",
|
|
@@ -407,29 +501,6 @@
|
|
|
407
501
|
}
|
|
408
502
|
]
|
|
409
503
|
},
|
|
410
|
-
{
|
|
411
|
-
"kind": "javascript-module",
|
|
412
|
-
"path": "src/directives/index.ts",
|
|
413
|
-
"declarations": [],
|
|
414
|
-
"exports": [
|
|
415
|
-
{
|
|
416
|
-
"kind": "js",
|
|
417
|
-
"name": "*",
|
|
418
|
-
"declaration": {
|
|
419
|
-
"name": "*",
|
|
420
|
-
"package": "./sync"
|
|
421
|
-
}
|
|
422
|
-
},
|
|
423
|
-
{
|
|
424
|
-
"kind": "js",
|
|
425
|
-
"name": "*",
|
|
426
|
-
"declaration": {
|
|
427
|
-
"name": "*",
|
|
428
|
-
"package": "./when-else"
|
|
429
|
-
}
|
|
430
|
-
}
|
|
431
|
-
]
|
|
432
|
-
},
|
|
433
504
|
{
|
|
434
505
|
"kind": "javascript-module",
|
|
435
506
|
"path": "src/design-system/design-system.ts",
|
|
@@ -634,7 +705,7 @@
|
|
|
634
705
|
},
|
|
635
706
|
{
|
|
636
707
|
"kind": "javascript-module",
|
|
637
|
-
"path": "src/
|
|
708
|
+
"path": "src/directives/index.ts",
|
|
638
709
|
"declarations": [],
|
|
639
710
|
"exports": [
|
|
640
711
|
{
|
|
@@ -642,48 +713,30 @@
|
|
|
642
713
|
"name": "*",
|
|
643
714
|
"declaration": {
|
|
644
715
|
"name": "*",
|
|
645
|
-
"package": "./
|
|
716
|
+
"package": "./sync"
|
|
646
717
|
}
|
|
647
|
-
}
|
|
648
|
-
]
|
|
649
|
-
},
|
|
650
|
-
{
|
|
651
|
-
"kind": "javascript-module",
|
|
652
|
-
"path": "src/converters/index.ts",
|
|
653
|
-
"declarations": [],
|
|
654
|
-
"exports": [
|
|
718
|
+
},
|
|
655
719
|
{
|
|
656
720
|
"kind": "js",
|
|
657
721
|
"name": "*",
|
|
658
722
|
"declaration": {
|
|
659
723
|
"name": "*",
|
|
660
|
-
"package": "./
|
|
724
|
+
"package": "./when-else"
|
|
661
725
|
}
|
|
662
726
|
}
|
|
663
727
|
]
|
|
664
728
|
},
|
|
665
729
|
{
|
|
666
730
|
"kind": "javascript-module",
|
|
667
|
-
"path": "src/
|
|
668
|
-
"declarations": [
|
|
669
|
-
{
|
|
670
|
-
"kind": "variable",
|
|
671
|
-
"name": "stringArrayConverter",
|
|
672
|
-
"type": {
|
|
673
|
-
"text": "ValueConverter"
|
|
674
|
-
},
|
|
675
|
-
"default": "{\n fromView(v: string): string | string[] | undefined {\n if (!v?.trim()) return undefined;\n return v.includes(',') ? v.split(',').map((s) => s.trim()) : v.trim();\n },\n toView(v: string | string[] | undefined): string {\n if (typeof v === 'string') return v;\n if (Array.isArray(v)) return v.join(',');\n return '';\n },\n}",
|
|
676
|
-
"description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
|
|
677
|
-
"privacy": "public"
|
|
678
|
-
}
|
|
679
|
-
],
|
|
731
|
+
"path": "src/encoding/index.ts",
|
|
732
|
+
"declarations": [],
|
|
680
733
|
"exports": [
|
|
681
734
|
{
|
|
682
735
|
"kind": "js",
|
|
683
|
-
"name": "
|
|
736
|
+
"name": "*",
|
|
684
737
|
"declaration": {
|
|
685
|
-
"name": "
|
|
686
|
-
"
|
|
738
|
+
"name": "*",
|
|
739
|
+
"package": "./base64"
|
|
687
740
|
}
|
|
688
741
|
}
|
|
689
742
|
]
|
|
@@ -1163,59 +1216,6 @@
|
|
|
1163
1216
|
}
|
|
1164
1217
|
]
|
|
1165
1218
|
},
|
|
1166
|
-
{
|
|
1167
|
-
"kind": "javascript-module",
|
|
1168
|
-
"path": "src/decorators/index.ts",
|
|
1169
|
-
"declarations": [],
|
|
1170
|
-
"exports": [
|
|
1171
|
-
{
|
|
1172
|
-
"kind": "js",
|
|
1173
|
-
"name": "*",
|
|
1174
|
-
"declaration": {
|
|
1175
|
-
"name": "*",
|
|
1176
|
-
"package": "./renderOnChange"
|
|
1177
|
-
}
|
|
1178
|
-
}
|
|
1179
|
-
]
|
|
1180
|
-
},
|
|
1181
|
-
{
|
|
1182
|
-
"kind": "javascript-module",
|
|
1183
|
-
"path": "src/decorators/renderOnChange.ts",
|
|
1184
|
-
"declarations": [
|
|
1185
|
-
{
|
|
1186
|
-
"kind": "function",
|
|
1187
|
-
"name": "renderOnChange",
|
|
1188
|
-
"parameters": [
|
|
1189
|
-
{
|
|
1190
|
-
"name": "target",
|
|
1191
|
-
"type": {
|
|
1192
|
-
"text": "FASTElement & { render(): void }"
|
|
1193
|
-
},
|
|
1194
|
-
"description": "The target to define the property change handler on."
|
|
1195
|
-
},
|
|
1196
|
-
{
|
|
1197
|
-
"name": "name",
|
|
1198
|
-
"type": {
|
|
1199
|
-
"text": "string"
|
|
1200
|
-
},
|
|
1201
|
-
"description": "The property name."
|
|
1202
|
-
}
|
|
1203
|
-
],
|
|
1204
|
-
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
|
1205
|
-
"privacy": "public"
|
|
1206
|
-
}
|
|
1207
|
-
],
|
|
1208
|
-
"exports": [
|
|
1209
|
-
{
|
|
1210
|
-
"kind": "js",
|
|
1211
|
-
"name": "renderOnChange",
|
|
1212
|
-
"declaration": {
|
|
1213
|
-
"name": "renderOnChange",
|
|
1214
|
-
"module": "src/decorators/renderOnChange.ts"
|
|
1215
|
-
}
|
|
1216
|
-
}
|
|
1217
|
-
]
|
|
1218
|
-
},
|
|
1219
1219
|
{
|
|
1220
1220
|
"kind": "javascript-module",
|
|
1221
1221
|
"path": "src/error/errorMap.ts",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-utils",
|
|
3
3
|
"description": "Genesis Foundation Utils",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.443.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -29,18 +29,18 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@genesislcap/foundation-testing": "14.
|
|
33
|
-
"@genesislcap/genx": "14.
|
|
34
|
-
"@genesislcap/rollup-builder": "14.
|
|
35
|
-
"@genesislcap/ts-builder": "14.
|
|
36
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
37
|
-
"@genesislcap/vite-builder": "14.
|
|
38
|
-
"@genesislcap/webpack-builder": "14.
|
|
32
|
+
"@genesislcap/foundation-testing": "14.443.0",
|
|
33
|
+
"@genesislcap/genx": "14.443.0",
|
|
34
|
+
"@genesislcap/rollup-builder": "14.443.0",
|
|
35
|
+
"@genesislcap/ts-builder": "14.443.0",
|
|
36
|
+
"@genesislcap/uvu-playwright-builder": "14.443.0",
|
|
37
|
+
"@genesislcap/vite-builder": "14.443.0",
|
|
38
|
+
"@genesislcap/webpack-builder": "14.443.0",
|
|
39
39
|
"@types/json-schema": "^7.0.11"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@genesislcap/expression-builder": "14.
|
|
43
|
-
"@genesislcap/foundation-logger": "14.
|
|
42
|
+
"@genesislcap/expression-builder": "14.443.0",
|
|
43
|
+
"@genesislcap/foundation-logger": "14.443.0",
|
|
44
44
|
"@microsoft/fast-components": "2.30.6",
|
|
45
45
|
"@microsoft/fast-element": "1.14.0",
|
|
46
46
|
"@microsoft/fast-foundation": "2.50.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"customElements": "dist/custom-elements.json",
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "057cb7a0d06f339094c8634a413e4a6e1aa95659"
|
|
62
62
|
}
|