@genesislcap/foundation-utils 14.230.1-alpha-542ce67.0 → 14.230.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/custom-elements.json +437 -437
- package/package.json +10 -10
@@ -169,6 +169,307 @@
|
|
169
169
|
}
|
170
170
|
]
|
171
171
|
},
|
172
|
+
{
|
173
|
+
"kind": "javascript-module",
|
174
|
+
"path": "src/data/inMemoryDatabase.ts",
|
175
|
+
"declarations": [
|
176
|
+
{
|
177
|
+
"kind": "class",
|
178
|
+
"description": "An in memory database of specific DatabaseRecord types.",
|
179
|
+
"name": "InMemoryDatabase",
|
180
|
+
"members": [
|
181
|
+
{
|
182
|
+
"kind": "field",
|
183
|
+
"name": "isWorking",
|
184
|
+
"type": {
|
185
|
+
"text": "boolean"
|
186
|
+
},
|
187
|
+
"privacy": "public",
|
188
|
+
"default": "false"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"kind": "field",
|
192
|
+
"name": "records",
|
193
|
+
"type": {
|
194
|
+
"text": "Record<string, T>"
|
195
|
+
},
|
196
|
+
"privacy": "private",
|
197
|
+
"default": "{}"
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"kind": "field",
|
201
|
+
"name": "beforeUpdateListeners",
|
202
|
+
"privacy": "private"
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"kind": "field",
|
206
|
+
"name": "afterUpdateListeners",
|
207
|
+
"privacy": "private"
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"kind": "method",
|
211
|
+
"name": "create",
|
212
|
+
"privacy": "public",
|
213
|
+
"return": {
|
214
|
+
"type": {
|
215
|
+
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
216
|
+
}
|
217
|
+
},
|
218
|
+
"parameters": [
|
219
|
+
{
|
220
|
+
"name": "newValue",
|
221
|
+
"type": {
|
222
|
+
"text": "Omit<T, 'id'>"
|
223
|
+
}
|
224
|
+
}
|
225
|
+
]
|
226
|
+
},
|
227
|
+
{
|
228
|
+
"kind": "method",
|
229
|
+
"name": "read",
|
230
|
+
"privacy": "public",
|
231
|
+
"return": {
|
232
|
+
"type": {
|
233
|
+
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
234
|
+
}
|
235
|
+
},
|
236
|
+
"parameters": [
|
237
|
+
{
|
238
|
+
"name": "id",
|
239
|
+
"type": {
|
240
|
+
"text": "string"
|
241
|
+
}
|
242
|
+
}
|
243
|
+
]
|
244
|
+
},
|
245
|
+
{
|
246
|
+
"kind": "method",
|
247
|
+
"name": "update",
|
248
|
+
"privacy": "public",
|
249
|
+
"return": {
|
250
|
+
"type": {
|
251
|
+
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
252
|
+
}
|
253
|
+
},
|
254
|
+
"parameters": [
|
255
|
+
{
|
256
|
+
"name": "id",
|
257
|
+
"type": {
|
258
|
+
"text": "string"
|
259
|
+
}
|
260
|
+
},
|
261
|
+
{
|
262
|
+
"name": "newValue",
|
263
|
+
"type": {
|
264
|
+
"text": "Omit<Partial<T>, 'id'>"
|
265
|
+
}
|
266
|
+
}
|
267
|
+
]
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"kind": "method",
|
271
|
+
"name": "delete",
|
272
|
+
"privacy": "public",
|
273
|
+
"return": {
|
274
|
+
"type": {
|
275
|
+
"text": "Promise<DatabaseAccessResult.Delete>"
|
276
|
+
}
|
277
|
+
},
|
278
|
+
"parameters": [
|
279
|
+
{
|
280
|
+
"name": "id",
|
281
|
+
"type": {
|
282
|
+
"text": "string"
|
283
|
+
}
|
284
|
+
}
|
285
|
+
]
|
286
|
+
},
|
287
|
+
{
|
288
|
+
"kind": "method",
|
289
|
+
"name": "visit",
|
290
|
+
"privacy": "public",
|
291
|
+
"return": {
|
292
|
+
"type": {
|
293
|
+
"text": "Promise<void>"
|
294
|
+
}
|
295
|
+
},
|
296
|
+
"parameters": [
|
297
|
+
{
|
298
|
+
"name": "visitor",
|
299
|
+
"type": {
|
300
|
+
"text": "(record: T) => void"
|
301
|
+
}
|
302
|
+
}
|
303
|
+
]
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"kind": "method",
|
307
|
+
"name": "onBeforeUpdate",
|
308
|
+
"privacy": "public",
|
309
|
+
"return": {
|
310
|
+
"type": {
|
311
|
+
"text": "() => void"
|
312
|
+
}
|
313
|
+
},
|
314
|
+
"parameters": [
|
315
|
+
{
|
316
|
+
"name": "listener",
|
317
|
+
"type": {
|
318
|
+
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
319
|
+
}
|
320
|
+
}
|
321
|
+
]
|
322
|
+
},
|
323
|
+
{
|
324
|
+
"kind": "method",
|
325
|
+
"name": "onAfterUpdate",
|
326
|
+
"privacy": "public",
|
327
|
+
"return": {
|
328
|
+
"type": {
|
329
|
+
"text": "() => void"
|
330
|
+
}
|
331
|
+
},
|
332
|
+
"parameters": [
|
333
|
+
{
|
334
|
+
"name": "listener",
|
335
|
+
"type": {
|
336
|
+
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
337
|
+
}
|
338
|
+
}
|
339
|
+
]
|
340
|
+
}
|
341
|
+
]
|
342
|
+
}
|
343
|
+
],
|
344
|
+
"exports": [
|
345
|
+
{
|
346
|
+
"kind": "js",
|
347
|
+
"name": "InMemoryDatabase",
|
348
|
+
"declaration": {
|
349
|
+
"name": "InMemoryDatabase",
|
350
|
+
"module": "src/data/inMemoryDatabase.ts"
|
351
|
+
}
|
352
|
+
}
|
353
|
+
]
|
354
|
+
},
|
355
|
+
{
|
356
|
+
"kind": "javascript-module",
|
357
|
+
"path": "src/data/index.ts",
|
358
|
+
"declarations": [],
|
359
|
+
"exports": [
|
360
|
+
{
|
361
|
+
"kind": "js",
|
362
|
+
"name": "*",
|
363
|
+
"declaration": {
|
364
|
+
"name": "*",
|
365
|
+
"package": "./inMemoryDatabase"
|
366
|
+
}
|
367
|
+
}
|
368
|
+
]
|
369
|
+
},
|
370
|
+
{
|
371
|
+
"kind": "javascript-module",
|
372
|
+
"path": "src/design-system/design-system.ts",
|
373
|
+
"declarations": [
|
374
|
+
{
|
375
|
+
"kind": "function",
|
376
|
+
"name": "assureDesignSystem",
|
377
|
+
"return": {
|
378
|
+
"type": {
|
379
|
+
"text": "DesignSystemModule"
|
380
|
+
}
|
381
|
+
},
|
382
|
+
"parameters": [
|
383
|
+
{
|
384
|
+
"name": "module",
|
385
|
+
"type": {
|
386
|
+
"text": "DesignSystemModule"
|
387
|
+
}
|
388
|
+
}
|
389
|
+
],
|
390
|
+
"description": "assureDesignSystem.",
|
391
|
+
"privacy": "public"
|
392
|
+
}
|
393
|
+
],
|
394
|
+
"exports": [
|
395
|
+
{
|
396
|
+
"kind": "js",
|
397
|
+
"name": "assureDesignSystem",
|
398
|
+
"declaration": {
|
399
|
+
"name": "assureDesignSystem",
|
400
|
+
"module": "src/design-system/design-system.ts"
|
401
|
+
}
|
402
|
+
}
|
403
|
+
]
|
404
|
+
},
|
405
|
+
{
|
406
|
+
"kind": "javascript-module",
|
407
|
+
"path": "src/design-system/index.ts",
|
408
|
+
"declarations": [],
|
409
|
+
"exports": [
|
410
|
+
{
|
411
|
+
"kind": "js",
|
412
|
+
"name": "*",
|
413
|
+
"declaration": {
|
414
|
+
"name": "*",
|
415
|
+
"package": "./design-system"
|
416
|
+
}
|
417
|
+
}
|
418
|
+
]
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"kind": "javascript-module",
|
422
|
+
"path": "src/decorators/index.ts",
|
423
|
+
"declarations": [],
|
424
|
+
"exports": [
|
425
|
+
{
|
426
|
+
"kind": "js",
|
427
|
+
"name": "*",
|
428
|
+
"declaration": {
|
429
|
+
"name": "*",
|
430
|
+
"package": "./renderOnChange"
|
431
|
+
}
|
432
|
+
}
|
433
|
+
]
|
434
|
+
},
|
435
|
+
{
|
436
|
+
"kind": "javascript-module",
|
437
|
+
"path": "src/decorators/renderOnChange.ts",
|
438
|
+
"declarations": [
|
439
|
+
{
|
440
|
+
"kind": "function",
|
441
|
+
"name": "renderOnChange",
|
442
|
+
"parameters": [
|
443
|
+
{
|
444
|
+
"name": "target",
|
445
|
+
"type": {
|
446
|
+
"text": "FASTElement & { render(): void }"
|
447
|
+
},
|
448
|
+
"description": "The target to define the property change handler on."
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"name": "name",
|
452
|
+
"type": {
|
453
|
+
"text": "string"
|
454
|
+
},
|
455
|
+
"description": "The property name."
|
456
|
+
}
|
457
|
+
],
|
458
|
+
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
459
|
+
"privacy": "public"
|
460
|
+
}
|
461
|
+
],
|
462
|
+
"exports": [
|
463
|
+
{
|
464
|
+
"kind": "js",
|
465
|
+
"name": "renderOnChange",
|
466
|
+
"declaration": {
|
467
|
+
"name": "renderOnChange",
|
468
|
+
"module": "src/decorators/renderOnChange.ts"
|
469
|
+
}
|
470
|
+
}
|
471
|
+
]
|
472
|
+
},
|
172
473
|
{
|
173
474
|
"kind": "javascript-module",
|
174
475
|
"path": "src/directives/index.ts",
|
@@ -459,88 +760,38 @@
|
|
459
760
|
"declaration": {
|
460
761
|
"name": "_API_HOST",
|
461
762
|
"module": "src/env/variables.ts"
|
462
|
-
}
|
463
|
-
},
|
464
|
-
{
|
465
|
-
"kind": "js",
|
466
|
-
"name": "HTTP_CONFIG",
|
467
|
-
"declaration": {
|
468
|
-
"name": "_HTTP_CONFIG",
|
469
|
-
"module": "src/env/variables.ts"
|
470
|
-
}
|
471
|
-
},
|
472
|
-
{
|
473
|
-
"kind": "js",
|
474
|
-
"name": "DEFAULT_ORGANISATION",
|
475
|
-
"declaration": {
|
476
|
-
"name": "_DEFAULT_ORGANISATION",
|
477
|
-
"module": "src/env/variables.ts"
|
478
|
-
}
|
479
|
-
},
|
480
|
-
{
|
481
|
-
"kind": "js",
|
482
|
-
"name": "DEFAULT_PASSWORD",
|
483
|
-
"declaration": {
|
484
|
-
"name": "_DEFAULT_PASSWORD",
|
485
|
-
"module": "src/env/variables.ts"
|
486
|
-
}
|
487
|
-
},
|
488
|
-
{
|
489
|
-
"kind": "js",
|
490
|
-
"name": "DEFAULT_USER",
|
491
|
-
"declaration": {
|
492
|
-
"name": "_DEFAULT_USER",
|
493
|
-
"module": "src/env/variables.ts"
|
494
|
-
}
|
495
|
-
}
|
496
|
-
]
|
497
|
-
},
|
498
|
-
{
|
499
|
-
"kind": "javascript-module",
|
500
|
-
"path": "src/design-system/design-system.ts",
|
501
|
-
"declarations": [
|
502
|
-
{
|
503
|
-
"kind": "function",
|
504
|
-
"name": "assureDesignSystem",
|
505
|
-
"return": {
|
506
|
-
"type": {
|
507
|
-
"text": "DesignSystemModule"
|
508
|
-
}
|
509
|
-
},
|
510
|
-
"parameters": [
|
511
|
-
{
|
512
|
-
"name": "module",
|
513
|
-
"type": {
|
514
|
-
"text": "DesignSystemModule"
|
515
|
-
}
|
516
|
-
}
|
517
|
-
],
|
518
|
-
"description": "assureDesignSystem.",
|
519
|
-
"privacy": "public"
|
520
|
-
}
|
521
|
-
],
|
522
|
-
"exports": [
|
763
|
+
}
|
764
|
+
},
|
523
765
|
{
|
524
766
|
"kind": "js",
|
525
|
-
"name": "
|
767
|
+
"name": "HTTP_CONFIG",
|
526
768
|
"declaration": {
|
527
|
-
"name": "
|
528
|
-
"module": "src/
|
769
|
+
"name": "_HTTP_CONFIG",
|
770
|
+
"module": "src/env/variables.ts"
|
529
771
|
}
|
530
|
-
}
|
531
|
-
]
|
532
|
-
},
|
533
|
-
{
|
534
|
-
"kind": "javascript-module",
|
535
|
-
"path": "src/design-system/index.ts",
|
536
|
-
"declarations": [],
|
537
|
-
"exports": [
|
772
|
+
},
|
538
773
|
{
|
539
774
|
"kind": "js",
|
540
|
-
"name": "
|
775
|
+
"name": "DEFAULT_ORGANISATION",
|
541
776
|
"declaration": {
|
542
|
-
"name": "
|
543
|
-
"
|
777
|
+
"name": "_DEFAULT_ORGANISATION",
|
778
|
+
"module": "src/env/variables.ts"
|
779
|
+
}
|
780
|
+
},
|
781
|
+
{
|
782
|
+
"kind": "js",
|
783
|
+
"name": "DEFAULT_PASSWORD",
|
784
|
+
"declaration": {
|
785
|
+
"name": "_DEFAULT_PASSWORD",
|
786
|
+
"module": "src/env/variables.ts"
|
787
|
+
}
|
788
|
+
},
|
789
|
+
{
|
790
|
+
"kind": "js",
|
791
|
+
"name": "DEFAULT_USER",
|
792
|
+
"declaration": {
|
793
|
+
"name": "_DEFAULT_USER",
|
794
|
+
"module": "src/env/variables.ts"
|
544
795
|
}
|
545
796
|
}
|
546
797
|
]
|
@@ -715,236 +966,23 @@
|
|
715
966
|
"kind": "js",
|
716
967
|
"name": "DefaultErrorMap",
|
717
968
|
"declaration": {
|
718
|
-
"name": "DefaultErrorMap",
|
719
|
-
"module": "src/error/errorMap.ts"
|
720
|
-
}
|
721
|
-
},
|
722
|
-
{
|
723
|
-
"kind": "js",
|
724
|
-
"name": "createErrorMap",
|
725
|
-
"declaration": {
|
726
|
-
"name": "createErrorMap",
|
727
|
-
"module": "src/error/errorMap.ts"
|
728
|
-
}
|
729
|
-
}
|
730
|
-
]
|
731
|
-
},
|
732
|
-
{
|
733
|
-
"kind": "javascript-module",
|
734
|
-
"path": "src/error/index.ts",
|
735
|
-
"declarations": [],
|
736
|
-
"exports": [
|
737
|
-
{
|
738
|
-
"kind": "js",
|
739
|
-
"name": "*",
|
740
|
-
"declaration": {
|
741
|
-
"name": "*",
|
742
|
-
"package": "./errorMap"
|
743
|
-
}
|
744
|
-
}
|
745
|
-
]
|
746
|
-
},
|
747
|
-
{
|
748
|
-
"kind": "javascript-module",
|
749
|
-
"path": "src/data/inMemoryDatabase.ts",
|
750
|
-
"declarations": [
|
751
|
-
{
|
752
|
-
"kind": "class",
|
753
|
-
"description": "An in memory database of specific DatabaseRecord types.",
|
754
|
-
"name": "InMemoryDatabase",
|
755
|
-
"members": [
|
756
|
-
{
|
757
|
-
"kind": "field",
|
758
|
-
"name": "isWorking",
|
759
|
-
"type": {
|
760
|
-
"text": "boolean"
|
761
|
-
},
|
762
|
-
"privacy": "public",
|
763
|
-
"default": "false"
|
764
|
-
},
|
765
|
-
{
|
766
|
-
"kind": "field",
|
767
|
-
"name": "records",
|
768
|
-
"type": {
|
769
|
-
"text": "Record<string, T>"
|
770
|
-
},
|
771
|
-
"privacy": "private",
|
772
|
-
"default": "{}"
|
773
|
-
},
|
774
|
-
{
|
775
|
-
"kind": "field",
|
776
|
-
"name": "beforeUpdateListeners",
|
777
|
-
"privacy": "private"
|
778
|
-
},
|
779
|
-
{
|
780
|
-
"kind": "field",
|
781
|
-
"name": "afterUpdateListeners",
|
782
|
-
"privacy": "private"
|
783
|
-
},
|
784
|
-
{
|
785
|
-
"kind": "method",
|
786
|
-
"name": "create",
|
787
|
-
"privacy": "public",
|
788
|
-
"return": {
|
789
|
-
"type": {
|
790
|
-
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
791
|
-
}
|
792
|
-
},
|
793
|
-
"parameters": [
|
794
|
-
{
|
795
|
-
"name": "newValue",
|
796
|
-
"type": {
|
797
|
-
"text": "Omit<T, 'id'>"
|
798
|
-
}
|
799
|
-
}
|
800
|
-
]
|
801
|
-
},
|
802
|
-
{
|
803
|
-
"kind": "method",
|
804
|
-
"name": "read",
|
805
|
-
"privacy": "public",
|
806
|
-
"return": {
|
807
|
-
"type": {
|
808
|
-
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
809
|
-
}
|
810
|
-
},
|
811
|
-
"parameters": [
|
812
|
-
{
|
813
|
-
"name": "id",
|
814
|
-
"type": {
|
815
|
-
"text": "string"
|
816
|
-
}
|
817
|
-
}
|
818
|
-
]
|
819
|
-
},
|
820
|
-
{
|
821
|
-
"kind": "method",
|
822
|
-
"name": "update",
|
823
|
-
"privacy": "public",
|
824
|
-
"return": {
|
825
|
-
"type": {
|
826
|
-
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
827
|
-
}
|
828
|
-
},
|
829
|
-
"parameters": [
|
830
|
-
{
|
831
|
-
"name": "id",
|
832
|
-
"type": {
|
833
|
-
"text": "string"
|
834
|
-
}
|
835
|
-
},
|
836
|
-
{
|
837
|
-
"name": "newValue",
|
838
|
-
"type": {
|
839
|
-
"text": "Omit<Partial<T>, 'id'>"
|
840
|
-
}
|
841
|
-
}
|
842
|
-
]
|
843
|
-
},
|
844
|
-
{
|
845
|
-
"kind": "method",
|
846
|
-
"name": "delete",
|
847
|
-
"privacy": "public",
|
848
|
-
"return": {
|
849
|
-
"type": {
|
850
|
-
"text": "Promise<DatabaseAccessResult.Delete>"
|
851
|
-
}
|
852
|
-
},
|
853
|
-
"parameters": [
|
854
|
-
{
|
855
|
-
"name": "id",
|
856
|
-
"type": {
|
857
|
-
"text": "string"
|
858
|
-
}
|
859
|
-
}
|
860
|
-
]
|
861
|
-
},
|
862
|
-
{
|
863
|
-
"kind": "method",
|
864
|
-
"name": "visit",
|
865
|
-
"privacy": "public",
|
866
|
-
"return": {
|
867
|
-
"type": {
|
868
|
-
"text": "Promise<void>"
|
869
|
-
}
|
870
|
-
},
|
871
|
-
"parameters": [
|
872
|
-
{
|
873
|
-
"name": "visitor",
|
874
|
-
"type": {
|
875
|
-
"text": "(record: T) => void"
|
876
|
-
}
|
877
|
-
}
|
878
|
-
]
|
879
|
-
},
|
880
|
-
{
|
881
|
-
"kind": "method",
|
882
|
-
"name": "onBeforeUpdate",
|
883
|
-
"privacy": "public",
|
884
|
-
"return": {
|
885
|
-
"type": {
|
886
|
-
"text": "() => void"
|
887
|
-
}
|
888
|
-
},
|
889
|
-
"parameters": [
|
890
|
-
{
|
891
|
-
"name": "listener",
|
892
|
-
"type": {
|
893
|
-
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
894
|
-
}
|
895
|
-
}
|
896
|
-
]
|
897
|
-
},
|
898
|
-
{
|
899
|
-
"kind": "method",
|
900
|
-
"name": "onAfterUpdate",
|
901
|
-
"privacy": "public",
|
902
|
-
"return": {
|
903
|
-
"type": {
|
904
|
-
"text": "() => void"
|
905
|
-
}
|
906
|
-
},
|
907
|
-
"parameters": [
|
908
|
-
{
|
909
|
-
"name": "listener",
|
910
|
-
"type": {
|
911
|
-
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
912
|
-
}
|
913
|
-
}
|
914
|
-
]
|
915
|
-
}
|
916
|
-
]
|
917
|
-
}
|
918
|
-
],
|
919
|
-
"exports": [
|
920
|
-
{
|
921
|
-
"kind": "js",
|
922
|
-
"name": "InMemoryDatabase",
|
923
|
-
"declaration": {
|
924
|
-
"name": "InMemoryDatabase",
|
925
|
-
"module": "src/data/inMemoryDatabase.ts"
|
926
|
-
}
|
927
|
-
}
|
928
|
-
]
|
929
|
-
},
|
930
|
-
{
|
931
|
-
"kind": "javascript-module",
|
932
|
-
"path": "src/data/index.ts",
|
933
|
-
"declarations": [],
|
934
|
-
"exports": [
|
969
|
+
"name": "DefaultErrorMap",
|
970
|
+
"module": "src/error/errorMap.ts"
|
971
|
+
}
|
972
|
+
},
|
935
973
|
{
|
936
974
|
"kind": "js",
|
937
|
-
"name": "
|
975
|
+
"name": "createErrorMap",
|
938
976
|
"declaration": {
|
939
|
-
"name": "
|
940
|
-
"
|
977
|
+
"name": "createErrorMap",
|
978
|
+
"module": "src/error/errorMap.ts"
|
941
979
|
}
|
942
980
|
}
|
943
981
|
]
|
944
982
|
},
|
945
983
|
{
|
946
984
|
"kind": "javascript-module",
|
947
|
-
"path": "src/
|
985
|
+
"path": "src/error/index.ts",
|
948
986
|
"declarations": [],
|
949
987
|
"exports": [
|
950
988
|
{
|
@@ -952,45 +990,7 @@
|
|
952
990
|
"name": "*",
|
953
991
|
"declaration": {
|
954
992
|
"name": "*",
|
955
|
-
"package": "./
|
956
|
-
}
|
957
|
-
}
|
958
|
-
]
|
959
|
-
},
|
960
|
-
{
|
961
|
-
"kind": "javascript-module",
|
962
|
-
"path": "src/decorators/renderOnChange.ts",
|
963
|
-
"declarations": [
|
964
|
-
{
|
965
|
-
"kind": "function",
|
966
|
-
"name": "renderOnChange",
|
967
|
-
"parameters": [
|
968
|
-
{
|
969
|
-
"name": "target",
|
970
|
-
"type": {
|
971
|
-
"text": "FASTElement & { render(): void }"
|
972
|
-
},
|
973
|
-
"description": "The target to define the property change handler on."
|
974
|
-
},
|
975
|
-
{
|
976
|
-
"name": "name",
|
977
|
-
"type": {
|
978
|
-
"text": "string"
|
979
|
-
},
|
980
|
-
"description": "The property name."
|
981
|
-
}
|
982
|
-
],
|
983
|
-
"description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
|
984
|
-
"privacy": "public"
|
985
|
-
}
|
986
|
-
],
|
987
|
-
"exports": [
|
988
|
-
{
|
989
|
-
"kind": "js",
|
990
|
-
"name": "renderOnChange",
|
991
|
-
"declaration": {
|
992
|
-
"name": "renderOnChange",
|
993
|
-
"module": "src/decorators/renderOnChange.ts"
|
993
|
+
"package": "./errorMap"
|
994
994
|
}
|
995
995
|
}
|
996
996
|
]
|
@@ -1366,6 +1366,21 @@
|
|
1366
1366
|
}
|
1367
1367
|
]
|
1368
1368
|
},
|
1369
|
+
{
|
1370
|
+
"kind": "javascript-module",
|
1371
|
+
"path": "src/mappers/index.ts",
|
1372
|
+
"declarations": [],
|
1373
|
+
"exports": [
|
1374
|
+
{
|
1375
|
+
"kind": "js",
|
1376
|
+
"name": "*",
|
1377
|
+
"declaration": {
|
1378
|
+
"name": "*",
|
1379
|
+
"package": "./dto"
|
1380
|
+
}
|
1381
|
+
}
|
1382
|
+
]
|
1383
|
+
},
|
1369
1384
|
{
|
1370
1385
|
"kind": "javascript-module",
|
1371
1386
|
"path": "src/mixins/index.ts",
|
@@ -1461,21 +1476,6 @@
|
|
1461
1476
|
}
|
1462
1477
|
]
|
1463
1478
|
},
|
1464
|
-
{
|
1465
|
-
"kind": "javascript-module",
|
1466
|
-
"path": "src/mappers/index.ts",
|
1467
|
-
"declarations": [],
|
1468
|
-
"exports": [
|
1469
|
-
{
|
1470
|
-
"kind": "js",
|
1471
|
-
"name": "*",
|
1472
|
-
"declaration": {
|
1473
|
-
"name": "*",
|
1474
|
-
"package": "./dto"
|
1475
|
-
}
|
1476
|
-
}
|
1477
|
-
]
|
1478
|
-
},
|
1479
1479
|
{
|
1480
1480
|
"kind": "javascript-module",
|
1481
1481
|
"path": "src/promise/index.ts",
|
@@ -2715,93 +2715,6 @@
|
|
2715
2715
|
}
|
2716
2716
|
]
|
2717
2717
|
},
|
2718
|
-
{
|
2719
|
-
"kind": "javascript-module",
|
2720
|
-
"path": "src/mixins/pendingState/index.ts",
|
2721
|
-
"declarations": [],
|
2722
|
-
"exports": [
|
2723
|
-
{
|
2724
|
-
"kind": "js",
|
2725
|
-
"name": "*",
|
2726
|
-
"declaration": {
|
2727
|
-
"name": "*",
|
2728
|
-
"package": "./pendingState"
|
2729
|
-
}
|
2730
|
-
}
|
2731
|
-
]
|
2732
|
-
},
|
2733
|
-
{
|
2734
|
-
"kind": "javascript-module",
|
2735
|
-
"path": "src/mixins/pendingState/pendingState.ts",
|
2736
|
-
"declarations": [
|
2737
|
-
{
|
2738
|
-
"kind": "mixin",
|
2739
|
-
"description": "The `PendingState` mixin.",
|
2740
|
-
"name": "PendingState",
|
2741
|
-
"members": [
|
2742
|
-
{
|
2743
|
-
"kind": "field",
|
2744
|
-
"name": "pendingCount",
|
2745
|
-
"type": {
|
2746
|
-
"text": "number"
|
2747
|
-
},
|
2748
|
-
"privacy": "public",
|
2749
|
-
"default": "0",
|
2750
|
-
"description": "The number of promises that are currently pending."
|
2751
|
-
},
|
2752
|
-
{
|
2753
|
-
"kind": "field",
|
2754
|
-
"name": "resolvedCount",
|
2755
|
-
"type": {
|
2756
|
-
"text": "number"
|
2757
|
-
},
|
2758
|
-
"privacy": "public",
|
2759
|
-
"default": "0",
|
2760
|
-
"description": "The number of promises that have been resolved."
|
2761
|
-
},
|
2762
|
-
{
|
2763
|
-
"kind": "field",
|
2764
|
-
"name": "hasPendingChildren",
|
2765
|
-
"type": {
|
2766
|
-
"text": "boolean"
|
2767
|
-
},
|
2768
|
-
"privacy": "public",
|
2769
|
-
"default": "false",
|
2770
|
-
"description": "A boolean indicating whether there are any pending children."
|
2771
|
-
},
|
2772
|
-
{
|
2773
|
-
"kind": "field",
|
2774
|
-
"name": "progress",
|
2775
|
-
"type": {
|
2776
|
-
"text": "number"
|
2777
|
-
},
|
2778
|
-
"privacy": "public",
|
2779
|
-
"description": "Gets the progress of the pending promises as a percentage between 0 and 1.",
|
2780
|
-
"readonly": true
|
2781
|
-
}
|
2782
|
-
],
|
2783
|
-
"parameters": [
|
2784
|
-
{
|
2785
|
-
"name": "Base",
|
2786
|
-
"type": {
|
2787
|
-
"text": "TBase"
|
2788
|
-
}
|
2789
|
-
}
|
2790
|
-
],
|
2791
|
-
"privacy": "public"
|
2792
|
-
}
|
2793
|
-
],
|
2794
|
-
"exports": [
|
2795
|
-
{
|
2796
|
-
"kind": "js",
|
2797
|
-
"name": "PendingState",
|
2798
|
-
"declaration": {
|
2799
|
-
"name": "PendingState",
|
2800
|
-
"module": "src/mixins/pendingState/pendingState.ts"
|
2801
|
-
}
|
2802
|
-
}
|
2803
|
-
]
|
2804
|
-
},
|
2805
2718
|
{
|
2806
2719
|
"kind": "javascript-module",
|
2807
2720
|
"path": "src/mappers/dto/index.ts",
|
@@ -2902,6 +2815,93 @@
|
|
2902
2815
|
"declarations": [],
|
2903
2816
|
"exports": []
|
2904
2817
|
},
|
2818
|
+
{
|
2819
|
+
"kind": "javascript-module",
|
2820
|
+
"path": "src/mixins/pendingState/index.ts",
|
2821
|
+
"declarations": [],
|
2822
|
+
"exports": [
|
2823
|
+
{
|
2824
|
+
"kind": "js",
|
2825
|
+
"name": "*",
|
2826
|
+
"declaration": {
|
2827
|
+
"name": "*",
|
2828
|
+
"package": "./pendingState"
|
2829
|
+
}
|
2830
|
+
}
|
2831
|
+
]
|
2832
|
+
},
|
2833
|
+
{
|
2834
|
+
"kind": "javascript-module",
|
2835
|
+
"path": "src/mixins/pendingState/pendingState.ts",
|
2836
|
+
"declarations": [
|
2837
|
+
{
|
2838
|
+
"kind": "mixin",
|
2839
|
+
"description": "The `PendingState` mixin.",
|
2840
|
+
"name": "PendingState",
|
2841
|
+
"members": [
|
2842
|
+
{
|
2843
|
+
"kind": "field",
|
2844
|
+
"name": "pendingCount",
|
2845
|
+
"type": {
|
2846
|
+
"text": "number"
|
2847
|
+
},
|
2848
|
+
"privacy": "public",
|
2849
|
+
"default": "0",
|
2850
|
+
"description": "The number of promises that are currently pending."
|
2851
|
+
},
|
2852
|
+
{
|
2853
|
+
"kind": "field",
|
2854
|
+
"name": "resolvedCount",
|
2855
|
+
"type": {
|
2856
|
+
"text": "number"
|
2857
|
+
},
|
2858
|
+
"privacy": "public",
|
2859
|
+
"default": "0",
|
2860
|
+
"description": "The number of promises that have been resolved."
|
2861
|
+
},
|
2862
|
+
{
|
2863
|
+
"kind": "field",
|
2864
|
+
"name": "hasPendingChildren",
|
2865
|
+
"type": {
|
2866
|
+
"text": "boolean"
|
2867
|
+
},
|
2868
|
+
"privacy": "public",
|
2869
|
+
"default": "false",
|
2870
|
+
"description": "A boolean indicating whether there are any pending children."
|
2871
|
+
},
|
2872
|
+
{
|
2873
|
+
"kind": "field",
|
2874
|
+
"name": "progress",
|
2875
|
+
"type": {
|
2876
|
+
"text": "number"
|
2877
|
+
},
|
2878
|
+
"privacy": "public",
|
2879
|
+
"description": "Gets the progress of the pending promises as a percentage between 0 and 1.",
|
2880
|
+
"readonly": true
|
2881
|
+
}
|
2882
|
+
],
|
2883
|
+
"parameters": [
|
2884
|
+
{
|
2885
|
+
"name": "Base",
|
2886
|
+
"type": {
|
2887
|
+
"text": "TBase"
|
2888
|
+
}
|
2889
|
+
}
|
2890
|
+
],
|
2891
|
+
"privacy": "public"
|
2892
|
+
}
|
2893
|
+
],
|
2894
|
+
"exports": [
|
2895
|
+
{
|
2896
|
+
"kind": "js",
|
2897
|
+
"name": "PendingState",
|
2898
|
+
"declaration": {
|
2899
|
+
"name": "PendingState",
|
2900
|
+
"module": "src/mixins/pendingState/pendingState.ts"
|
2901
|
+
}
|
2902
|
+
}
|
2903
|
+
]
|
2904
|
+
},
|
2905
2905
|
{
|
2906
2906
|
"kind": "javascript-module",
|
2907
2907
|
"path": "src/serializers/json/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.230.1
|
4
|
+
"version": "14.230.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.230.1
|
31
|
-
"@genesislcap/genx": "14.230.1
|
32
|
-
"@genesislcap/rollup-builder": "14.230.1
|
33
|
-
"@genesislcap/ts-builder": "14.230.1
|
34
|
-
"@genesislcap/uvu-playwright-builder": "14.230.1
|
35
|
-
"@genesislcap/vite-builder": "14.230.1
|
36
|
-
"@genesislcap/webpack-builder": "14.230.1
|
30
|
+
"@genesislcap/foundation-testing": "14.230.1",
|
31
|
+
"@genesislcap/genx": "14.230.1",
|
32
|
+
"@genesislcap/rollup-builder": "14.230.1",
|
33
|
+
"@genesislcap/ts-builder": "14.230.1",
|
34
|
+
"@genesislcap/uvu-playwright-builder": "14.230.1",
|
35
|
+
"@genesislcap/vite-builder": "14.230.1",
|
36
|
+
"@genesislcap/webpack-builder": "14.230.1",
|
37
37
|
"rimraf": "^5.0.0"
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
|
-
"@genesislcap/foundation-logger": "14.230.1
|
40
|
+
"@genesislcap/foundation-logger": "14.230.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": "
|
58
|
+
"gitHead": "2b2e9285b553f4d269268fde0134504054ffed25"
|
59
59
|
}
|