@genesislcap/foundation-utils 14.430.1-alpha-5ff14e1.0 → 14.430.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/custom-elements.json +64 -64
- package/package.json +11 -11
|
@@ -209,47 +209,6 @@
|
|
|
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
212
|
{
|
|
254
213
|
"kind": "javascript-module",
|
|
255
214
|
"path": "src/data/inMemoryDatabase.ts",
|
|
@@ -448,6 +407,47 @@
|
|
|
448
407
|
}
|
|
449
408
|
]
|
|
450
409
|
},
|
|
410
|
+
{
|
|
411
|
+
"kind": "javascript-module",
|
|
412
|
+
"path": "src/converters/index.ts",
|
|
413
|
+
"declarations": [],
|
|
414
|
+
"exports": [
|
|
415
|
+
{
|
|
416
|
+
"kind": "js",
|
|
417
|
+
"name": "*",
|
|
418
|
+
"declaration": {
|
|
419
|
+
"name": "*",
|
|
420
|
+
"package": "./string-array-converter"
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
]
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"kind": "javascript-module",
|
|
427
|
+
"path": "src/converters/string-array-converter.ts",
|
|
428
|
+
"declarations": [
|
|
429
|
+
{
|
|
430
|
+
"kind": "variable",
|
|
431
|
+
"name": "stringArrayConverter",
|
|
432
|
+
"type": {
|
|
433
|
+
"text": "ValueConverter"
|
|
434
|
+
},
|
|
435
|
+
"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}",
|
|
436
|
+
"description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
|
|
437
|
+
"privacy": "public"
|
|
438
|
+
}
|
|
439
|
+
],
|
|
440
|
+
"exports": [
|
|
441
|
+
{
|
|
442
|
+
"kind": "js",
|
|
443
|
+
"name": "stringArrayConverter",
|
|
444
|
+
"declaration": {
|
|
445
|
+
"name": "stringArrayConverter",
|
|
446
|
+
"module": "src/converters/string-array-converter.ts"
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
]
|
|
450
|
+
},
|
|
451
451
|
{
|
|
452
452
|
"kind": "javascript-module",
|
|
453
453
|
"path": "src/design-system/design-system.ts",
|
|
@@ -650,29 +650,6 @@
|
|
|
650
650
|
}
|
|
651
651
|
]
|
|
652
652
|
},
|
|
653
|
-
{
|
|
654
|
-
"kind": "javascript-module",
|
|
655
|
-
"path": "src/directives/index.ts",
|
|
656
|
-
"declarations": [],
|
|
657
|
-
"exports": [
|
|
658
|
-
{
|
|
659
|
-
"kind": "js",
|
|
660
|
-
"name": "*",
|
|
661
|
-
"declaration": {
|
|
662
|
-
"name": "*",
|
|
663
|
-
"package": "./sync"
|
|
664
|
-
}
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
"kind": "js",
|
|
668
|
-
"name": "*",
|
|
669
|
-
"declaration": {
|
|
670
|
-
"name": "*",
|
|
671
|
-
"package": "./when-else"
|
|
672
|
-
}
|
|
673
|
-
}
|
|
674
|
-
]
|
|
675
|
-
},
|
|
676
653
|
{
|
|
677
654
|
"kind": "javascript-module",
|
|
678
655
|
"path": "src/decorators/index.ts",
|
|
@@ -726,6 +703,29 @@
|
|
|
726
703
|
}
|
|
727
704
|
]
|
|
728
705
|
},
|
|
706
|
+
{
|
|
707
|
+
"kind": "javascript-module",
|
|
708
|
+
"path": "src/directives/index.ts",
|
|
709
|
+
"declarations": [],
|
|
710
|
+
"exports": [
|
|
711
|
+
{
|
|
712
|
+
"kind": "js",
|
|
713
|
+
"name": "*",
|
|
714
|
+
"declaration": {
|
|
715
|
+
"name": "*",
|
|
716
|
+
"package": "./sync"
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"kind": "js",
|
|
721
|
+
"name": "*",
|
|
722
|
+
"declaration": {
|
|
723
|
+
"name": "*",
|
|
724
|
+
"package": "./when-else"
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
]
|
|
728
|
+
},
|
|
729
729
|
{
|
|
730
730
|
"kind": "javascript-module",
|
|
731
731
|
"path": "src/encoding/index.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.430.1
|
|
4
|
+
"version": "14.430.1",
|
|
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.430.1
|
|
33
|
-
"@genesislcap/genx": "14.430.1
|
|
34
|
-
"@genesislcap/rollup-builder": "14.430.1
|
|
35
|
-
"@genesislcap/ts-builder": "14.430.1
|
|
36
|
-
"@genesislcap/uvu-playwright-builder": "14.430.1
|
|
37
|
-
"@genesislcap/vite-builder": "14.430.1
|
|
38
|
-
"@genesislcap/webpack-builder": "14.430.1
|
|
32
|
+
"@genesislcap/foundation-testing": "14.430.1",
|
|
33
|
+
"@genesislcap/genx": "14.430.1",
|
|
34
|
+
"@genesislcap/rollup-builder": "14.430.1",
|
|
35
|
+
"@genesislcap/ts-builder": "14.430.1",
|
|
36
|
+
"@genesislcap/uvu-playwright-builder": "14.430.1",
|
|
37
|
+
"@genesislcap/vite-builder": "14.430.1",
|
|
38
|
+
"@genesislcap/webpack-builder": "14.430.1",
|
|
39
39
|
"@types/json-schema": "^7.0.11"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@genesislcap/expression-builder": "14.430.1
|
|
43
|
-
"@genesislcap/foundation-logger": "14.430.1
|
|
42
|
+
"@genesislcap/expression-builder": "14.430.1",
|
|
43
|
+
"@genesislcap/foundation-logger": "14.430.1",
|
|
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": "6eb4026225087b765f5363f7233d3450af040900"
|
|
62
62
|
}
|