@genesislcap/foundation-utils 15.4.1 → 15.6.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,70 +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
- {
254
- "kind": "javascript-module",
255
- "path": "src/directives/index.ts",
256
- "declarations": [],
257
- "exports": [
258
- {
259
- "kind": "js",
260
- "name": "*",
261
- "declaration": {
262
- "name": "*",
263
- "package": "./sync"
264
- }
265
- },
266
- {
267
- "kind": "js",
268
- "name": "*",
269
- "declaration": {
270
- "name": "*",
271
- "package": "./when-else"
272
- }
273
- }
274
- ]
275
- },
276
212
  {
277
213
  "kind": "javascript-module",
278
214
  "path": "src/design-system/design-system.ts",
@@ -475,6 +411,29 @@
475
411
  }
476
412
  ]
477
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
+ },
478
437
  {
479
438
  "kind": "javascript-module",
480
439
  "path": "src/encoding/index.ts",
@@ -989,6 +948,47 @@
989
948
  }
990
949
  ]
991
950
  },
951
+ {
952
+ "kind": "javascript-module",
953
+ "path": "src/converters/index.ts",
954
+ "declarations": [],
955
+ "exports": [
956
+ {
957
+ "kind": "js",
958
+ "name": "*",
959
+ "declaration": {
960
+ "name": "*",
961
+ "package": "./string-array-converter"
962
+ }
963
+ }
964
+ ]
965
+ },
966
+ {
967
+ "kind": "javascript-module",
968
+ "path": "src/converters/string-array-converter.ts",
969
+ "declarations": [
970
+ {
971
+ "kind": "variable",
972
+ "name": "stringArrayConverter",
973
+ "type": {
974
+ "text": "ValueConverter"
975
+ },
976
+ "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}",
977
+ "description": "A @microsoft/fast-element#ValueConverter that converts between comma-separated string attributes\nand `string | string[]` properties.",
978
+ "privacy": "public"
979
+ }
980
+ ],
981
+ "exports": [
982
+ {
983
+ "kind": "js",
984
+ "name": "stringArrayConverter",
985
+ "declaration": {
986
+ "name": "stringArrayConverter",
987
+ "module": "src/converters/string-array-converter.ts"
988
+ }
989
+ }
990
+ ]
991
+ },
992
992
  {
993
993
  "kind": "javascript-module",
994
994
  "path": "src/data/inMemoryDatabase.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": "15.4.1",
4
+ "version": "15.6.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": "15.4.1",
33
- "@genesislcap/genx": "15.4.1",
34
- "@genesislcap/rollup-builder": "15.4.1",
35
- "@genesislcap/ts-builder": "15.4.1",
36
- "@genesislcap/uvu-playwright-builder": "15.4.1",
37
- "@genesislcap/vite-builder": "15.4.1",
38
- "@genesislcap/webpack-builder": "15.4.1",
32
+ "@genesislcap/foundation-testing": "15.6.0",
33
+ "@genesislcap/genx": "15.6.0",
34
+ "@genesislcap/rollup-builder": "15.6.0",
35
+ "@genesislcap/ts-builder": "15.6.0",
36
+ "@genesislcap/uvu-playwright-builder": "15.6.0",
37
+ "@genesislcap/vite-builder": "15.6.0",
38
+ "@genesislcap/webpack-builder": "15.6.0",
39
39
  "@types/json-schema": "^7.0.11"
40
40
  },
41
41
  "dependencies": {
42
- "@genesislcap/expression-builder": "15.4.1",
43
- "@genesislcap/foundation-logger": "15.4.1",
42
+ "@genesislcap/expression-builder": "15.6.0",
43
+ "@genesislcap/foundation-logger": "15.6.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",
@@ -70,5 +70,5 @@
70
70
  },
71
71
  "./package.json": "./package.json"
72
72
  },
73
- "gitHead": "984a77280362d69ba3eab6256dbb7fe03b8c76b3"
73
+ "gitHead": "dbf070bac8a4bfc2a178e335b1faffb130e8f761"
74
74
  }