@genesislcap/foundation-utils 14.471.0 → 14.472.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,6 +209,47 @@
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
+ },
212
253
  {
213
254
  "kind": "javascript-module",
214
255
  "path": "src/data/inMemoryDatabase.ts",
@@ -609,47 +650,6 @@
609
650
  }
610
651
  ]
611
652
  },
612
- {
613
- "kind": "javascript-module",
614
- "path": "src/converters/index.ts",
615
- "declarations": [],
616
- "exports": [
617
- {
618
- "kind": "js",
619
- "name": "*",
620
- "declaration": {
621
- "name": "*",
622
- "package": "./string-array-converter"
623
- }
624
- }
625
- ]
626
- },
627
- {
628
- "kind": "javascript-module",
629
- "path": "src/converters/string-array-converter.ts",
630
- "declarations": [
631
- {
632
- "kind": "variable",
633
- "name": "stringArrayConverter",
634
- "type": {
635
- "text": "ValueConverter"
636
- },
637
- "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}",
638
- "description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
639
- "privacy": "public"
640
- }
641
- ],
642
- "exports": [
643
- {
644
- "kind": "js",
645
- "name": "stringArrayConverter",
646
- "declaration": {
647
- "name": "stringArrayConverter",
648
- "module": "src/converters/string-array-converter.ts"
649
- }
650
- }
651
- ]
652
- },
653
653
  {
654
654
  "kind": "javascript-module",
655
655
  "path": "src/directives/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.471.0",
4
+ "version": "14.472.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.471.0",
33
- "@genesislcap/genx": "14.471.0",
34
- "@genesislcap/rollup-builder": "14.471.0",
35
- "@genesislcap/ts-builder": "14.471.0",
36
- "@genesislcap/uvu-playwright-builder": "14.471.0",
37
- "@genesislcap/vite-builder": "14.471.0",
38
- "@genesislcap/webpack-builder": "14.471.0",
32
+ "@genesislcap/foundation-testing": "14.472.0",
33
+ "@genesislcap/genx": "14.472.0",
34
+ "@genesislcap/rollup-builder": "14.472.0",
35
+ "@genesislcap/ts-builder": "14.472.0",
36
+ "@genesislcap/uvu-playwright-builder": "14.472.0",
37
+ "@genesislcap/vite-builder": "14.472.0",
38
+ "@genesislcap/webpack-builder": "14.472.0",
39
39
  "@types/json-schema": "^7.0.11"
40
40
  },
41
41
  "dependencies": {
42
- "@genesislcap/expression-builder": "14.471.0",
43
- "@genesislcap/foundation-logger": "14.471.0",
42
+ "@genesislcap/expression-builder": "14.472.0",
43
+ "@genesislcap/foundation-logger": "14.472.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": "610c348b892f15a2c15140528863aee389801a78"
61
+ "gitHead": "9518c7fe66db1d4ceafe5555d6e9ded4dd9b249c"
62
62
  }