@genesislcap/foundation-utils 14.468.1-alpha-0e71a41.0 → 14.469.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.
@@ -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/design-system/design-system.ts",
@@ -452,6 +411,85 @@
452
411
  }
453
412
  ]
454
413
  },
414
+ {
415
+ "kind": "javascript-module",
416
+ "path": "src/directives/index.ts",
417
+ "declarations": [],
418
+ "exports": [
419
+ {
420
+ "kind": "js",
421
+ "name": "*",
422
+ "declaration": {
423
+ "name": "*",
424
+ "package": "./sync"
425
+ }
426
+ },
427
+ {
428
+ "kind": "js",
429
+ "name": "*",
430
+ "declaration": {
431
+ "name": "*",
432
+ "package": "./when-else"
433
+ }
434
+ }
435
+ ]
436
+ },
437
+ {
438
+ "kind": "javascript-module",
439
+ "path": "src/encoding/index.ts",
440
+ "declarations": [],
441
+ "exports": [
442
+ {
443
+ "kind": "js",
444
+ "name": "*",
445
+ "declaration": {
446
+ "name": "*",
447
+ "package": "./base64"
448
+ }
449
+ }
450
+ ]
451
+ },
452
+ {
453
+ "kind": "javascript-module",
454
+ "path": "src/converters/index.ts",
455
+ "declarations": [],
456
+ "exports": [
457
+ {
458
+ "kind": "js",
459
+ "name": "*",
460
+ "declaration": {
461
+ "name": "*",
462
+ "package": "./string-array-converter"
463
+ }
464
+ }
465
+ ]
466
+ },
467
+ {
468
+ "kind": "javascript-module",
469
+ "path": "src/converters/string-array-converter.ts",
470
+ "declarations": [
471
+ {
472
+ "kind": "variable",
473
+ "name": "stringArrayConverter",
474
+ "type": {
475
+ "text": "ValueConverter"
476
+ },
477
+ "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}",
478
+ "description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
479
+ "privacy": "public"
480
+ }
481
+ ],
482
+ "exports": [
483
+ {
484
+ "kind": "js",
485
+ "name": "stringArrayConverter",
486
+ "declaration": {
487
+ "name": "stringArrayConverter",
488
+ "module": "src/converters/string-array-converter.ts"
489
+ }
490
+ }
491
+ ]
492
+ },
455
493
  {
456
494
  "kind": "javascript-module",
457
495
  "path": "src/data/inMemoryDatabase.ts",
@@ -650,29 +688,6 @@
650
688
  }
651
689
  ]
652
690
  },
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
691
  {
677
692
  "kind": "javascript-module",
678
693
  "path": "src/decorators/index.ts",
@@ -726,21 +741,6 @@
726
741
  }
727
742
  ]
728
743
  },
729
- {
730
- "kind": "javascript-module",
731
- "path": "src/encoding/index.ts",
732
- "declarations": [],
733
- "exports": [
734
- {
735
- "kind": "js",
736
- "name": "*",
737
- "declaration": {
738
- "name": "*",
739
- "package": "./base64"
740
- }
741
- }
742
- ]
743
- },
744
744
  {
745
745
  "kind": "javascript-module",
746
746
  "path": "src/env/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.468.1-alpha-0e71a41.0",
4
+ "version": "14.469.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.468.1-alpha-0e71a41.0",
33
- "@genesislcap/genx": "14.468.1-alpha-0e71a41.0",
34
- "@genesislcap/rollup-builder": "14.468.1-alpha-0e71a41.0",
35
- "@genesislcap/ts-builder": "14.468.1-alpha-0e71a41.0",
36
- "@genesislcap/uvu-playwright-builder": "14.468.1-alpha-0e71a41.0",
37
- "@genesislcap/vite-builder": "14.468.1-alpha-0e71a41.0",
38
- "@genesislcap/webpack-builder": "14.468.1-alpha-0e71a41.0",
32
+ "@genesislcap/foundation-testing": "14.469.0",
33
+ "@genesislcap/genx": "14.469.0",
34
+ "@genesislcap/rollup-builder": "14.469.0",
35
+ "@genesislcap/ts-builder": "14.469.0",
36
+ "@genesislcap/uvu-playwright-builder": "14.469.0",
37
+ "@genesislcap/vite-builder": "14.469.0",
38
+ "@genesislcap/webpack-builder": "14.469.0",
39
39
  "@types/json-schema": "^7.0.11"
40
40
  },
41
41
  "dependencies": {
42
- "@genesislcap/expression-builder": "14.468.1-alpha-0e71a41.0",
43
- "@genesislcap/foundation-logger": "14.468.1-alpha-0e71a41.0",
42
+ "@genesislcap/expression-builder": "14.469.0",
43
+ "@genesislcap/foundation-logger": "14.469.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": "c6c6d65c3792af83208310d2d1969a08e7b8d73e"
61
+ "gitHead": "2b4460d5b9f20c36baddc55084e658bbcbd18c89"
62
62
  }