@genesislcap/foundation-utils 14.227.2 → 14.227.4-RPT-42.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -169,257 +169,6 @@
169
169
  }
170
170
  ]
171
171
  },
172
- {
173
- "kind": "javascript-module",
174
- "path": "src/decorators/index.ts",
175
- "declarations": [],
176
- "exports": [
177
- {
178
- "kind": "js",
179
- "name": "*",
180
- "declaration": {
181
- "name": "*",
182
- "package": "./renderOnChange"
183
- }
184
- }
185
- ]
186
- },
187
- {
188
- "kind": "javascript-module",
189
- "path": "src/decorators/renderOnChange.ts",
190
- "declarations": [
191
- {
192
- "kind": "function",
193
- "name": "renderOnChange",
194
- "parameters": [
195
- {
196
- "name": "target",
197
- "type": {
198
- "text": "FASTElement & { render(): void }"
199
- },
200
- "description": "The target to define the property change handler on."
201
- },
202
- {
203
- "name": "name",
204
- "type": {
205
- "text": "string"
206
- },
207
- "description": "The property name."
208
- }
209
- ],
210
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
211
- "privacy": "public"
212
- }
213
- ],
214
- "exports": [
215
- {
216
- "kind": "js",
217
- "name": "renderOnChange",
218
- "declaration": {
219
- "name": "renderOnChange",
220
- "module": "src/decorators/renderOnChange.ts"
221
- }
222
- }
223
- ]
224
- },
225
- {
226
- "kind": "javascript-module",
227
- "path": "src/data/inMemoryDatabase.ts",
228
- "declarations": [
229
- {
230
- "kind": "class",
231
- "description": "An in memory database of specific DatabaseRecord types.",
232
- "name": "InMemoryDatabase",
233
- "members": [
234
- {
235
- "kind": "field",
236
- "name": "isWorking",
237
- "type": {
238
- "text": "boolean"
239
- },
240
- "privacy": "public",
241
- "default": "false"
242
- },
243
- {
244
- "kind": "field",
245
- "name": "records",
246
- "type": {
247
- "text": "Record<string, T>"
248
- },
249
- "privacy": "private",
250
- "default": "{}"
251
- },
252
- {
253
- "kind": "field",
254
- "name": "beforeUpdateListeners",
255
- "privacy": "private"
256
- },
257
- {
258
- "kind": "field",
259
- "name": "afterUpdateListeners",
260
- "privacy": "private"
261
- },
262
- {
263
- "kind": "method",
264
- "name": "create",
265
- "privacy": "public",
266
- "return": {
267
- "type": {
268
- "text": "Promise<DatabaseAccessResult.Create<T>>"
269
- }
270
- },
271
- "parameters": [
272
- {
273
- "name": "newValue",
274
- "type": {
275
- "text": "Omit<T, 'id'>"
276
- }
277
- }
278
- ]
279
- },
280
- {
281
- "kind": "method",
282
- "name": "read",
283
- "privacy": "public",
284
- "return": {
285
- "type": {
286
- "text": "Promise<DatabaseAccessResult.Read<T>>"
287
- }
288
- },
289
- "parameters": [
290
- {
291
- "name": "id",
292
- "type": {
293
- "text": "string"
294
- }
295
- }
296
- ]
297
- },
298
- {
299
- "kind": "method",
300
- "name": "update",
301
- "privacy": "public",
302
- "return": {
303
- "type": {
304
- "text": "Promise<DatabaseAccessResult.Update<T>>"
305
- }
306
- },
307
- "parameters": [
308
- {
309
- "name": "id",
310
- "type": {
311
- "text": "string"
312
- }
313
- },
314
- {
315
- "name": "newValue",
316
- "type": {
317
- "text": "Omit<Partial<T>, 'id'>"
318
- }
319
- }
320
- ]
321
- },
322
- {
323
- "kind": "method",
324
- "name": "delete",
325
- "privacy": "public",
326
- "return": {
327
- "type": {
328
- "text": "Promise<DatabaseAccessResult.Delete>"
329
- }
330
- },
331
- "parameters": [
332
- {
333
- "name": "id",
334
- "type": {
335
- "text": "string"
336
- }
337
- }
338
- ]
339
- },
340
- {
341
- "kind": "method",
342
- "name": "visit",
343
- "privacy": "public",
344
- "return": {
345
- "type": {
346
- "text": "Promise<void>"
347
- }
348
- },
349
- "parameters": [
350
- {
351
- "name": "visitor",
352
- "type": {
353
- "text": "(record: T) => void"
354
- }
355
- }
356
- ]
357
- },
358
- {
359
- "kind": "method",
360
- "name": "onBeforeUpdate",
361
- "privacy": "public",
362
- "return": {
363
- "type": {
364
- "text": "() => void"
365
- }
366
- },
367
- "parameters": [
368
- {
369
- "name": "listener",
370
- "type": {
371
- "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
372
- }
373
- }
374
- ]
375
- },
376
- {
377
- "kind": "method",
378
- "name": "onAfterUpdate",
379
- "privacy": "public",
380
- "return": {
381
- "type": {
382
- "text": "() => void"
383
- }
384
- },
385
- "parameters": [
386
- {
387
- "name": "listener",
388
- "type": {
389
- "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
390
- }
391
- }
392
- ]
393
- }
394
- ]
395
- }
396
- ],
397
- "exports": [
398
- {
399
- "kind": "js",
400
- "name": "InMemoryDatabase",
401
- "declaration": {
402
- "name": "InMemoryDatabase",
403
- "module": "src/data/inMemoryDatabase.ts"
404
- }
405
- }
406
- ]
407
- },
408
- {
409
- "kind": "javascript-module",
410
- "path": "src/data/index.ts",
411
- "declarations": [],
412
- "exports": [
413
- {
414
- "kind": "js",
415
- "name": "*",
416
- "declaration": {
417
- "name": "*",
418
- "package": "./inMemoryDatabase"
419
- }
420
- }
421
- ]
422
- },
423
172
  {
424
173
  "kind": "javascript-module",
425
174
  "path": "src/design-system/design-system.ts",
@@ -798,13 +547,264 @@
798
547
  },
799
548
  {
800
549
  "kind": "javascript-module",
801
- "path": "src/error/errorMap.ts",
550
+ "path": "src/data/inMemoryDatabase.ts",
802
551
  "declarations": [
803
552
  {
804
553
  "kind": "class",
805
- "description": "",
806
- "name": "DefaultErrorMap",
807
- "members": [
554
+ "description": "An in memory database of specific DatabaseRecord types.",
555
+ "name": "InMemoryDatabase",
556
+ "members": [
557
+ {
558
+ "kind": "field",
559
+ "name": "isWorking",
560
+ "type": {
561
+ "text": "boolean"
562
+ },
563
+ "privacy": "public",
564
+ "default": "false"
565
+ },
566
+ {
567
+ "kind": "field",
568
+ "name": "records",
569
+ "type": {
570
+ "text": "Record<string, T>"
571
+ },
572
+ "privacy": "private",
573
+ "default": "{}"
574
+ },
575
+ {
576
+ "kind": "field",
577
+ "name": "beforeUpdateListeners",
578
+ "privacy": "private"
579
+ },
580
+ {
581
+ "kind": "field",
582
+ "name": "afterUpdateListeners",
583
+ "privacy": "private"
584
+ },
585
+ {
586
+ "kind": "method",
587
+ "name": "create",
588
+ "privacy": "public",
589
+ "return": {
590
+ "type": {
591
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
592
+ }
593
+ },
594
+ "parameters": [
595
+ {
596
+ "name": "newValue",
597
+ "type": {
598
+ "text": "Omit<T, 'id'>"
599
+ }
600
+ }
601
+ ]
602
+ },
603
+ {
604
+ "kind": "method",
605
+ "name": "read",
606
+ "privacy": "public",
607
+ "return": {
608
+ "type": {
609
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
610
+ }
611
+ },
612
+ "parameters": [
613
+ {
614
+ "name": "id",
615
+ "type": {
616
+ "text": "string"
617
+ }
618
+ }
619
+ ]
620
+ },
621
+ {
622
+ "kind": "method",
623
+ "name": "update",
624
+ "privacy": "public",
625
+ "return": {
626
+ "type": {
627
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
628
+ }
629
+ },
630
+ "parameters": [
631
+ {
632
+ "name": "id",
633
+ "type": {
634
+ "text": "string"
635
+ }
636
+ },
637
+ {
638
+ "name": "newValue",
639
+ "type": {
640
+ "text": "Omit<Partial<T>, 'id'>"
641
+ }
642
+ }
643
+ ]
644
+ },
645
+ {
646
+ "kind": "method",
647
+ "name": "delete",
648
+ "privacy": "public",
649
+ "return": {
650
+ "type": {
651
+ "text": "Promise<DatabaseAccessResult.Delete>"
652
+ }
653
+ },
654
+ "parameters": [
655
+ {
656
+ "name": "id",
657
+ "type": {
658
+ "text": "string"
659
+ }
660
+ }
661
+ ]
662
+ },
663
+ {
664
+ "kind": "method",
665
+ "name": "visit",
666
+ "privacy": "public",
667
+ "return": {
668
+ "type": {
669
+ "text": "Promise<void>"
670
+ }
671
+ },
672
+ "parameters": [
673
+ {
674
+ "name": "visitor",
675
+ "type": {
676
+ "text": "(record: T) => void"
677
+ }
678
+ }
679
+ ]
680
+ },
681
+ {
682
+ "kind": "method",
683
+ "name": "onBeforeUpdate",
684
+ "privacy": "public",
685
+ "return": {
686
+ "type": {
687
+ "text": "() => void"
688
+ }
689
+ },
690
+ "parameters": [
691
+ {
692
+ "name": "listener",
693
+ "type": {
694
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
695
+ }
696
+ }
697
+ ]
698
+ },
699
+ {
700
+ "kind": "method",
701
+ "name": "onAfterUpdate",
702
+ "privacy": "public",
703
+ "return": {
704
+ "type": {
705
+ "text": "() => void"
706
+ }
707
+ },
708
+ "parameters": [
709
+ {
710
+ "name": "listener",
711
+ "type": {
712
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
713
+ }
714
+ }
715
+ ]
716
+ }
717
+ ]
718
+ }
719
+ ],
720
+ "exports": [
721
+ {
722
+ "kind": "js",
723
+ "name": "InMemoryDatabase",
724
+ "declaration": {
725
+ "name": "InMemoryDatabase",
726
+ "module": "src/data/inMemoryDatabase.ts"
727
+ }
728
+ }
729
+ ]
730
+ },
731
+ {
732
+ "kind": "javascript-module",
733
+ "path": "src/data/index.ts",
734
+ "declarations": [],
735
+ "exports": [
736
+ {
737
+ "kind": "js",
738
+ "name": "*",
739
+ "declaration": {
740
+ "name": "*",
741
+ "package": "./inMemoryDatabase"
742
+ }
743
+ }
744
+ ]
745
+ },
746
+ {
747
+ "kind": "javascript-module",
748
+ "path": "src/decorators/index.ts",
749
+ "declarations": [],
750
+ "exports": [
751
+ {
752
+ "kind": "js",
753
+ "name": "*",
754
+ "declaration": {
755
+ "name": "*",
756
+ "package": "./renderOnChange"
757
+ }
758
+ }
759
+ ]
760
+ },
761
+ {
762
+ "kind": "javascript-module",
763
+ "path": "src/decorators/renderOnChange.ts",
764
+ "declarations": [
765
+ {
766
+ "kind": "function",
767
+ "name": "renderOnChange",
768
+ "parameters": [
769
+ {
770
+ "name": "target",
771
+ "type": {
772
+ "text": "FASTElement & { render(): void }"
773
+ },
774
+ "description": "The target to define the property change handler on."
775
+ },
776
+ {
777
+ "name": "name",
778
+ "type": {
779
+ "text": "string"
780
+ },
781
+ "description": "The property name."
782
+ }
783
+ ],
784
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
785
+ "privacy": "public"
786
+ }
787
+ ],
788
+ "exports": [
789
+ {
790
+ "kind": "js",
791
+ "name": "renderOnChange",
792
+ "declaration": {
793
+ "name": "renderOnChange",
794
+ "module": "src/decorators/renderOnChange.ts"
795
+ }
796
+ }
797
+ ]
798
+ },
799
+ {
800
+ "kind": "javascript-module",
801
+ "path": "src/error/errorMap.ts",
802
+ "declarations": [
803
+ {
804
+ "kind": "class",
805
+ "description": "",
806
+ "name": "DefaultErrorMap",
807
+ "members": [
808
808
  {
809
809
  "kind": "field",
810
810
  "name": "map",
@@ -2285,96 +2285,7 @@
2285
2285
  },
2286
2286
  {
2287
2287
  "kind": "javascript-module",
2288
- "path": "src/directives/sync/index.ts",
2289
- "declarations": [],
2290
- "exports": [
2291
- {
2292
- "kind": "js",
2293
- "name": "*",
2294
- "declaration": {
2295
- "name": "*",
2296
- "package": "./sync"
2297
- }
2298
- }
2299
- ]
2300
- },
2301
- {
2302
- "kind": "javascript-module",
2303
- "path": "src/directives/sync/sync.ts",
2304
- "declarations": [
2305
- {
2306
- "kind": "variable",
2307
- "name": "defaultEventMap",
2308
- "type": {
2309
- "text": "Map<string, EventName>"
2310
- },
2311
- "default": "new Map([\n ['FAST-TEXT-AREA', 'input'],\n ['FAST-TEXT-FIELD', 'input'],\n ['FOUNDATION-TEXT-AREA', 'input'],\n ['FOUNDATION-TEXT-FIELD', 'input'],\n ['INPUT', 'input'],\n ['ZERO-TEXT-FIELD', 'input'],\n])",
2312
- "description": "A map that associates specific HTML element tags with their corresponding default event names.",
2313
- "privacy": "public"
2314
- },
2315
- {
2316
- "kind": "function",
2317
- "name": "sync",
2318
- "return": {
2319
- "type": {
2320
- "text": "CaptureType<TSource>"
2321
- }
2322
- },
2323
- "parameters": [
2324
- {
2325
- "name": "binding",
2326
- "type": {
2327
- "text": "Binding<TSource, TReturn>"
2328
- }
2329
- },
2330
- {
2331
- "name": "conversionType",
2332
- "default": "'string'",
2333
- "type": {
2334
- "text": "ConversionType"
2335
- }
2336
- },
2337
- {
2338
- "name": "eventName",
2339
- "default": "'default'",
2340
- "type": {
2341
- "text": "EventName"
2342
- }
2343
- },
2344
- {
2345
- "name": "keyAttr",
2346
- "optional": true,
2347
- "type": {
2348
- "text": "string"
2349
- }
2350
- }
2351
- ],
2352
- "description": "Creates a synchronization directive that binds a data source to an HTML element,",
2353
- "privacy": "public"
2354
- }
2355
- ],
2356
- "exports": [
2357
- {
2358
- "kind": "js",
2359
- "name": "defaultEventMap",
2360
- "declaration": {
2361
- "name": "defaultEventMap",
2362
- "module": "src/directives/sync/sync.ts"
2363
- }
2364
- },
2365
- {
2366
- "kind": "js",
2367
- "name": "sync",
2368
- "declaration": {
2369
- "name": "sync",
2370
- "module": "src/directives/sync/sync.ts"
2371
- }
2372
- }
2373
- ]
2374
- },
2375
- {
2376
- "kind": "javascript-module",
2377
- "path": "src/directives/when-else/index.ts",
2288
+ "path": "src/directives/when-else/index.ts",
2378
2289
  "declarations": [],
2379
2290
  "exports": [
2380
2291
  {
@@ -2439,7 +2350,7 @@
2439
2350
  },
2440
2351
  {
2441
2352
  "kind": "javascript-module",
2442
- "path": "src/mappers/dto/index.ts",
2353
+ "path": "src/directives/sync/index.ts",
2443
2354
  "declarations": [],
2444
2355
  "exports": [
2445
2356
  {
@@ -2447,96 +2358,85 @@
2447
2358
  "name": "*",
2448
2359
  "declaration": {
2449
2360
  "name": "*",
2450
- "package": "./serverRow"
2451
- }
2452
- },
2453
- {
2454
- "kind": "js",
2455
- "name": "*",
2456
- "declaration": {
2457
- "name": "*",
2458
- "package": "./types"
2361
+ "package": "./sync"
2459
2362
  }
2460
2363
  }
2461
2364
  ]
2462
2365
  },
2463
2366
  {
2464
2367
  "kind": "javascript-module",
2465
- "path": "src/mappers/dto/serverRow.ts",
2368
+ "path": "src/directives/sync/sync.ts",
2466
2369
  "declarations": [
2467
2370
  {
2468
- "kind": "class",
2469
- "description": "The default `ServerRowDTOMapper`.",
2470
- "name": "DefaultServerRowDTOMapper",
2471
- "members": [
2371
+ "kind": "variable",
2372
+ "name": "defaultEventMap",
2373
+ "type": {
2374
+ "text": "Map<string, EventName>"
2375
+ },
2376
+ "default": "new Map([\n ['FAST-TEXT-AREA', 'input'],\n ['FAST-TEXT-FIELD', 'input'],\n ['FOUNDATION-TEXT-AREA', 'input'],\n ['FOUNDATION-TEXT-FIELD', 'input'],\n ['INPUT', 'input'],\n ['ZERO-TEXT-FIELD', 'input'],\n])",
2377
+ "description": "A map that associates specific HTML element tags with their corresponding default event names.",
2378
+ "privacy": "public"
2379
+ },
2380
+ {
2381
+ "kind": "function",
2382
+ "name": "sync",
2383
+ "return": {
2384
+ "type": {
2385
+ "text": "CaptureType<TSource>"
2386
+ }
2387
+ },
2388
+ "parameters": [
2472
2389
  {
2473
- "kind": "field",
2474
- "name": "fromDTO",
2475
- "description": "Converts a server row DTO to an entity.",
2476
- "parameters": [
2477
- {
2478
- "description": "The DTO to convert.",
2479
- "name": "dto"
2480
- }
2481
- ],
2482
- "return": {
2483
- "type": {
2484
- "text": ""
2485
- }
2486
- },
2487
- "privacy": "public"
2390
+ "name": "binding",
2391
+ "type": {
2392
+ "text": "Binding<TSource, TReturn>"
2393
+ }
2488
2394
  },
2489
2395
  {
2490
- "kind": "field",
2491
- "name": "toDTO",
2492
- "description": "Converts a server row entity to a DTO.",
2493
- "parameters": [
2494
- {
2495
- "description": "The entity to convert.",
2496
- "name": "entity"
2497
- }
2498
- ],
2499
- "return": {
2500
- "type": {
2501
- "text": ""
2502
- }
2503
- },
2504
- "privacy": "public"
2396
+ "name": "conversionType",
2397
+ "default": "'string'",
2398
+ "type": {
2399
+ "text": "ConversionType"
2400
+ }
2401
+ },
2402
+ {
2403
+ "name": "eventName",
2404
+ "default": "'default'",
2405
+ "type": {
2406
+ "text": "EventName"
2407
+ }
2408
+ },
2409
+ {
2410
+ "name": "keyAttr",
2411
+ "optional": true,
2412
+ "type": {
2413
+ "text": "string"
2414
+ }
2505
2415
  }
2506
- ]
2507
- },
2508
- {
2509
- "kind": "variable",
2510
- "name": "ServerRowDTOMapper",
2511
- "description": "A DI token used to obtain a `ServerRowDTOMapper` instance.",
2416
+ ],
2417
+ "description": "Creates a synchronization directive that binds a data source to an HTML element,",
2512
2418
  "privacy": "public"
2513
2419
  }
2514
2420
  ],
2515
2421
  "exports": [
2516
2422
  {
2517
2423
  "kind": "js",
2518
- "name": "DefaultServerRowDTOMapper",
2424
+ "name": "defaultEventMap",
2519
2425
  "declaration": {
2520
- "name": "DefaultServerRowDTOMapper",
2521
- "module": "src/mappers/dto/serverRow.ts"
2426
+ "name": "defaultEventMap",
2427
+ "module": "src/directives/sync/sync.ts"
2522
2428
  }
2523
2429
  },
2524
2430
  {
2525
2431
  "kind": "js",
2526
- "name": "ServerRowDTOMapper",
2432
+ "name": "sync",
2527
2433
  "declaration": {
2528
- "name": "ServerRowDTOMapper",
2529
- "module": "src/mappers/dto/serverRow.ts"
2434
+ "name": "sync",
2435
+ "module": "src/directives/sync/sync.ts"
2530
2436
  }
2531
2437
  }
2532
2438
  ]
2533
2439
  },
2534
- {
2535
- "kind": "javascript-module",
2536
- "path": "src/mappers/dto/types.ts",
2537
- "declarations": [],
2538
- "exports": []
2539
- },
2540
2440
  {
2541
2441
  "kind": "javascript-module",
2542
2442
  "path": "src/encoding/base64/decode.ts",
@@ -2691,6 +2591,106 @@
2691
2591
  }
2692
2592
  ]
2693
2593
  },
2594
+ {
2595
+ "kind": "javascript-module",
2596
+ "path": "src/mappers/dto/index.ts",
2597
+ "declarations": [],
2598
+ "exports": [
2599
+ {
2600
+ "kind": "js",
2601
+ "name": "*",
2602
+ "declaration": {
2603
+ "name": "*",
2604
+ "package": "./serverRow"
2605
+ }
2606
+ },
2607
+ {
2608
+ "kind": "js",
2609
+ "name": "*",
2610
+ "declaration": {
2611
+ "name": "*",
2612
+ "package": "./types"
2613
+ }
2614
+ }
2615
+ ]
2616
+ },
2617
+ {
2618
+ "kind": "javascript-module",
2619
+ "path": "src/mappers/dto/serverRow.ts",
2620
+ "declarations": [
2621
+ {
2622
+ "kind": "class",
2623
+ "description": "The default `ServerRowDTOMapper`.",
2624
+ "name": "DefaultServerRowDTOMapper",
2625
+ "members": [
2626
+ {
2627
+ "kind": "field",
2628
+ "name": "fromDTO",
2629
+ "description": "Converts a server row DTO to an entity.",
2630
+ "parameters": [
2631
+ {
2632
+ "description": "The DTO to convert.",
2633
+ "name": "dto"
2634
+ }
2635
+ ],
2636
+ "return": {
2637
+ "type": {
2638
+ "text": ""
2639
+ }
2640
+ },
2641
+ "privacy": "public"
2642
+ },
2643
+ {
2644
+ "kind": "field",
2645
+ "name": "toDTO",
2646
+ "description": "Converts a server row entity to a DTO.",
2647
+ "parameters": [
2648
+ {
2649
+ "description": "The entity to convert.",
2650
+ "name": "entity"
2651
+ }
2652
+ ],
2653
+ "return": {
2654
+ "type": {
2655
+ "text": ""
2656
+ }
2657
+ },
2658
+ "privacy": "public"
2659
+ }
2660
+ ]
2661
+ },
2662
+ {
2663
+ "kind": "variable",
2664
+ "name": "ServerRowDTOMapper",
2665
+ "description": "A DI token used to obtain a `ServerRowDTOMapper` instance.",
2666
+ "privacy": "public"
2667
+ }
2668
+ ],
2669
+ "exports": [
2670
+ {
2671
+ "kind": "js",
2672
+ "name": "DefaultServerRowDTOMapper",
2673
+ "declaration": {
2674
+ "name": "DefaultServerRowDTOMapper",
2675
+ "module": "src/mappers/dto/serverRow.ts"
2676
+ }
2677
+ },
2678
+ {
2679
+ "kind": "js",
2680
+ "name": "ServerRowDTOMapper",
2681
+ "declaration": {
2682
+ "name": "ServerRowDTOMapper",
2683
+ "module": "src/mappers/dto/serverRow.ts"
2684
+ }
2685
+ }
2686
+ ]
2687
+ },
2688
+ {
2689
+ "kind": "javascript-module",
2690
+ "path": "src/mappers/dto/types.ts",
2691
+ "declarations": [],
2692
+ "exports": []
2693
+ },
2694
2694
  {
2695
2695
  "kind": "javascript-module",
2696
2696
  "path": "src/mixins/lifecycle/index.ts",
@@ -1 +1 @@
1
- {"version":3,"file":"variables.d.ts","sourceRoot":"","sources":["../../../src/env/variables.ts"],"names":[],"mappings":"AAIA;;;;;;;GAOG;AACH,QAAA,IAAI,QAAQ,EAAE,MAAkB,CAAC;AAQjC,OAAO,EAAE,QAAQ,IAAI,OAAO,EAAE,CAAC;AAG/B;;;;;;;GAOG;AACH,QAAA,IAAI,YAAY,EAAE,MAAY,CAAC;AAQ/B,OAAO,EAAE,YAAY,IAAI,WAAW,EAAE,CAAC;AAGvC;;;;;;;;GAQG;AACH,QAAA,IAAI,WAAW,EAAE,MAAc,CAAC;AAQhC,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;AAGrC;;;;GAIG;AACH,QAAA,IAAI,WAAW,EAAE,MAAM,CAAC;AAMxB,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;AAErC;;;;;;;;;GASG;AACH,eAAO,MAAM,kBAAkB,QAAiF,CAAC;AAOjH;;;;;;GAMG;AACH,QAAA,IAAI,SAAS,EAAE,MAAwD,CAAC;AAQxE,OAAO,EAAE,SAAS,IAAI,QAAQ,EAAE,CAAC;AAGjC;;;;GAIG;AACH,QAAA,IAAI,YAAY,EAAE,MAAM,CAAC;AAMzB,OAAO,EAAE,YAAY,IAAI,WAAW,EAAE,CAAC;AAKvC;;;;GAIG;AACH,QAAA,IAAI,qBAAqB,EAAE,MAAM,CAAC;AAMlC,OAAO,EAAE,qBAAqB,IAAI,oBAAoB,EAAE,CAAC;AAGzD;;;;GAIG;AACH,QAAA,IAAI,iBAAiB,EAAE,MAAM,CAAC;AAM9B,OAAO,EAAE,iBAAiB,IAAI,gBAAgB,EAAE,CAAC;AAGjD;;;;GAIG;AACH,QAAA,IAAI,aAAa,EAAE,MAAM,CAAC;AAM1B,OAAO,EAAE,aAAa,IAAI,YAAY,EAAE,CAAC"}
1
+ {"version":3,"file":"variables.d.ts","sourceRoot":"","sources":["../../../src/env/variables.ts"],"names":[],"mappings":"AAIA;;;;;;;GAOG;AACH,QAAA,IAAI,QAAQ,EAAE,MAAkB,CAAC;AAQjC,OAAO,EAAE,QAAQ,IAAI,OAAO,EAAE,CAAC;AAG/B;;;;;;;GAOG;AACH,QAAA,IAAI,YAAY,EAAE,MAAY,CAAC;AAS/B,OAAO,EAAE,YAAY,IAAI,WAAW,EAAE,CAAC;AAGvC;;;;;;;;GAQG;AACH,QAAA,IAAI,WAAW,EAAE,MAAc,CAAC;AAQhC,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;AAGrC;;;;GAIG;AACH,QAAA,IAAI,WAAW,EAAE,MAAM,CAAC;AAMxB,OAAO,EAAE,WAAW,IAAI,UAAU,EAAE,CAAC;AAErC;;;;;;;;;GASG;AACH,eAAO,MAAM,kBAAkB,QAAiF,CAAC;AAOjH;;;;;;GAMG;AACH,QAAA,IAAI,SAAS,EAAE,MAAwD,CAAC;AAQxE,OAAO,EAAE,SAAS,IAAI,QAAQ,EAAE,CAAC;AAGjC;;;;GAIG;AACH,QAAA,IAAI,YAAY,EAAE,MAAM,CAAC;AAMzB,OAAO,EAAE,YAAY,IAAI,WAAW,EAAE,CAAC;AAKvC;;;;GAIG;AACH,QAAA,IAAI,qBAAqB,EAAE,MAAM,CAAC;AAMlC,OAAO,EAAE,qBAAqB,IAAI,oBAAoB,EAAE,CAAC;AAGzD;;;;GAIG;AACH,QAAA,IAAI,iBAAiB,EAAE,MAAM,CAAC;AAM9B,OAAO,EAAE,iBAAiB,IAAI,gBAAgB,EAAE,CAAC;AAGjD;;;;GAIG;AACH,QAAA,IAAI,aAAa,EAAE,MAAM,CAAC;AAM1B,OAAO,EAAE,aAAa,IAAI,YAAY,EAAE,CAAC"}
@@ -26,7 +26,8 @@ export { _BUILDER as BUILDER };
26
26
  let _PUBLIC_PATH = '/';
27
27
  try {
28
28
  if (typeof PUBLIC_PATH !== 'undefined') {
29
- _PUBLIC_PATH = PUBLIC_PATH;
29
+ // Remove trailing slash from PUBLIC_PATH
30
+ _PUBLIC_PATH = PUBLIC_PATH.replace(/\/$/, '');
30
31
  }
31
32
  }
32
33
  catch (_b) { }
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.227.2",
4
+ "version": "14.227.4-RPT-42.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,17 +27,17 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.227.2",
31
- "@genesislcap/genx": "14.227.2",
32
- "@genesislcap/rollup-builder": "14.227.2",
33
- "@genesislcap/ts-builder": "14.227.2",
34
- "@genesislcap/uvu-playwright-builder": "14.227.2",
35
- "@genesislcap/vite-builder": "14.227.2",
36
- "@genesislcap/webpack-builder": "14.227.2",
30
+ "@genesislcap/foundation-testing": "14.227.4-RPT-42.1",
31
+ "@genesislcap/genx": "14.227.4-RPT-42.1",
32
+ "@genesislcap/rollup-builder": "14.227.4-RPT-42.1",
33
+ "@genesislcap/ts-builder": "14.227.4-RPT-42.1",
34
+ "@genesislcap/uvu-playwright-builder": "14.227.4-RPT-42.1",
35
+ "@genesislcap/vite-builder": "14.227.4-RPT-42.1",
36
+ "@genesislcap/webpack-builder": "14.227.4-RPT-42.1",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.227.2",
40
+ "@genesislcap/foundation-logger": "14.227.4-RPT-42.1",
41
41
  "@microsoft/fast-components": "2.30.6",
42
42
  "@microsoft/fast-element": "1.14.0",
43
43
  "@microsoft/fast-foundation": "2.49.6",
@@ -55,5 +55,5 @@
55
55
  "access": "public"
56
56
  },
57
57
  "customElements": "dist/custom-elements.json",
58
- "gitHead": "f778214921d98e46326cc3ffb529dd37f263aada"
58
+ "gitHead": "c26226a894fe5e41e33330c2e4f7205303b5d025"
59
59
  }