@genesislcap/foundation-utils 14.310.1 → 14.310.2-alpha-8853fb3.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.
- package/dist/custom-elements.json +359 -359
- package/package.json +11 -11
@@ -169,6 +169,204 @@
|
|
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
|
+
},
|
172
370
|
{
|
173
371
|
"kind": "javascript-module",
|
174
372
|
"path": "src/decorators/index.ts",
|
@@ -262,52 +460,172 @@
|
|
262
460
|
},
|
263
461
|
{
|
264
462
|
"kind": "javascript-module",
|
265
|
-
"path": "src/
|
266
|
-
"declarations": [],
|
267
|
-
"exports": [
|
268
|
-
{
|
269
|
-
"kind": "js",
|
270
|
-
"name": "*",
|
271
|
-
"declaration": {
|
272
|
-
"name": "*",
|
273
|
-
"package": "./is-dev"
|
274
|
-
}
|
275
|
-
},
|
276
|
-
{
|
277
|
-
"kind": "js",
|
278
|
-
"name": "*",
|
279
|
-
"declaration": {
|
280
|
-
"name": "*",
|
281
|
-
"package": "./variables"
|
282
|
-
}
|
283
|
-
}
|
284
|
-
]
|
285
|
-
},
|
286
|
-
{
|
287
|
-
"kind": "javascript-module",
|
288
|
-
"path": "src/env/is-dev.ts",
|
463
|
+
"path": "src/design-system/design-system.ts",
|
289
464
|
"declarations": [
|
290
465
|
{
|
291
466
|
"kind": "function",
|
292
|
-
"name": "
|
293
|
-
"
|
467
|
+
"name": "assureDesignSystem",
|
468
|
+
"return": {
|
469
|
+
"type": {
|
470
|
+
"text": "DesignSystemModule"
|
471
|
+
}
|
472
|
+
},
|
473
|
+
"parameters": [
|
474
|
+
{
|
475
|
+
"name": "module",
|
476
|
+
"type": {
|
477
|
+
"text": "DesignSystemModule"
|
478
|
+
}
|
479
|
+
}
|
480
|
+
],
|
481
|
+
"description": "assureDesignSystem.",
|
294
482
|
"privacy": "public"
|
295
|
-
}
|
296
|
-
],
|
297
|
-
"exports": [
|
483
|
+
},
|
298
484
|
{
|
299
|
-
"kind": "
|
300
|
-
"name": "
|
301
|
-
"
|
302
|
-
"
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
485
|
+
"kind": "function",
|
486
|
+
"name": "getCurrentDesignSystem",
|
487
|
+
"return": {
|
488
|
+
"type": {
|
489
|
+
"text": ""
|
490
|
+
}
|
491
|
+
},
|
492
|
+
"parameters": [
|
493
|
+
{
|
494
|
+
"name": "element",
|
495
|
+
"type": {
|
496
|
+
"text": "HTMLElement"
|
497
|
+
},
|
498
|
+
"description": "The starting HTML element"
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"name": "fallbackPrefix",
|
502
|
+
"type": {
|
503
|
+
"text": "string"
|
504
|
+
},
|
505
|
+
"description": "The prefix to fallback to if the provider is not available"
|
506
|
+
}
|
507
|
+
],
|
508
|
+
"description": "Get the current design system provider element and prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
509
|
+
"privacy": "public"
|
510
|
+
},
|
511
|
+
{
|
512
|
+
"kind": "function",
|
513
|
+
"name": "getCurrentDesignSystemPrefix",
|
514
|
+
"return": {
|
515
|
+
"type": {
|
516
|
+
"text": ""
|
517
|
+
}
|
518
|
+
},
|
519
|
+
"parameters": [
|
520
|
+
{
|
521
|
+
"name": "element",
|
522
|
+
"type": {
|
523
|
+
"text": "HTMLElement"
|
524
|
+
},
|
525
|
+
"description": "The starting HTML element"
|
526
|
+
},
|
527
|
+
{
|
528
|
+
"name": "fallbackPrefix",
|
529
|
+
"type": {
|
530
|
+
"text": "string"
|
531
|
+
},
|
532
|
+
"description": "The prefix to fallback to if the provider is not available"
|
533
|
+
}
|
534
|
+
],
|
535
|
+
"description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
536
|
+
"privacy": "public"
|
537
|
+
}
|
538
|
+
],
|
539
|
+
"exports": [
|
540
|
+
{
|
541
|
+
"kind": "js",
|
542
|
+
"name": "assureDesignSystem",
|
543
|
+
"declaration": {
|
544
|
+
"name": "assureDesignSystem",
|
545
|
+
"module": "src/design-system/design-system.ts"
|
546
|
+
}
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"kind": "js",
|
550
|
+
"name": "getCurrentDesignSystem",
|
551
|
+
"declaration": {
|
552
|
+
"name": "getCurrentDesignSystem",
|
553
|
+
"module": "src/design-system/design-system.ts"
|
554
|
+
}
|
555
|
+
},
|
556
|
+
{
|
557
|
+
"kind": "js",
|
558
|
+
"name": "getCurrentDesignSystemPrefix",
|
559
|
+
"declaration": {
|
560
|
+
"name": "getCurrentDesignSystemPrefix",
|
561
|
+
"module": "src/design-system/design-system.ts"
|
562
|
+
}
|
563
|
+
}
|
564
|
+
]
|
565
|
+
},
|
566
|
+
{
|
567
|
+
"kind": "javascript-module",
|
568
|
+
"path": "src/design-system/index.ts",
|
569
|
+
"declarations": [],
|
570
|
+
"exports": [
|
571
|
+
{
|
572
|
+
"kind": "js",
|
573
|
+
"name": "*",
|
574
|
+
"declaration": {
|
575
|
+
"name": "*",
|
576
|
+
"package": "./design-system"
|
577
|
+
}
|
578
|
+
}
|
579
|
+
]
|
580
|
+
},
|
581
|
+
{
|
582
|
+
"kind": "javascript-module",
|
583
|
+
"path": "src/env/index.ts",
|
584
|
+
"declarations": [],
|
585
|
+
"exports": [
|
586
|
+
{
|
587
|
+
"kind": "js",
|
588
|
+
"name": "*",
|
589
|
+
"declaration": {
|
590
|
+
"name": "*",
|
591
|
+
"package": "./is-dev"
|
592
|
+
}
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"kind": "js",
|
596
|
+
"name": "*",
|
597
|
+
"declaration": {
|
598
|
+
"name": "*",
|
599
|
+
"package": "./variables"
|
600
|
+
}
|
601
|
+
}
|
602
|
+
]
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"kind": "javascript-module",
|
606
|
+
"path": "src/env/is-dev.ts",
|
607
|
+
"declarations": [
|
608
|
+
{
|
609
|
+
"kind": "function",
|
610
|
+
"name": "isDev",
|
611
|
+
"description": "Determines if the current environment is a development environment.",
|
612
|
+
"privacy": "public"
|
613
|
+
}
|
614
|
+
],
|
615
|
+
"exports": [
|
616
|
+
{
|
617
|
+
"kind": "js",
|
618
|
+
"name": "isDev",
|
619
|
+
"declaration": {
|
620
|
+
"name": "isDev",
|
621
|
+
"module": "src/env/is-dev.ts"
|
622
|
+
}
|
623
|
+
}
|
624
|
+
]
|
625
|
+
},
|
626
|
+
{
|
627
|
+
"kind": "javascript-module",
|
628
|
+
"path": "src/env/variables.ts",
|
311
629
|
"declarations": [
|
312
630
|
{
|
313
631
|
"kind": "variable",
|
@@ -718,324 +1036,6 @@
|
|
718
1036
|
}
|
719
1037
|
]
|
720
1038
|
},
|
721
|
-
{
|
722
|
-
"kind": "javascript-module",
|
723
|
-
"path": "src/data/inMemoryDatabase.ts",
|
724
|
-
"declarations": [
|
725
|
-
{
|
726
|
-
"kind": "class",
|
727
|
-
"description": "An in memory database of specific DatabaseRecord types.",
|
728
|
-
"name": "InMemoryDatabase",
|
729
|
-
"members": [
|
730
|
-
{
|
731
|
-
"kind": "field",
|
732
|
-
"name": "isWorking",
|
733
|
-
"type": {
|
734
|
-
"text": "boolean"
|
735
|
-
},
|
736
|
-
"privacy": "public",
|
737
|
-
"default": "false"
|
738
|
-
},
|
739
|
-
{
|
740
|
-
"kind": "field",
|
741
|
-
"name": "records",
|
742
|
-
"type": {
|
743
|
-
"text": "Record<string, T>"
|
744
|
-
},
|
745
|
-
"privacy": "private",
|
746
|
-
"default": "{}"
|
747
|
-
},
|
748
|
-
{
|
749
|
-
"kind": "field",
|
750
|
-
"name": "beforeUpdateListeners",
|
751
|
-
"privacy": "private"
|
752
|
-
},
|
753
|
-
{
|
754
|
-
"kind": "field",
|
755
|
-
"name": "afterUpdateListeners",
|
756
|
-
"privacy": "private"
|
757
|
-
},
|
758
|
-
{
|
759
|
-
"kind": "method",
|
760
|
-
"name": "create",
|
761
|
-
"privacy": "public",
|
762
|
-
"return": {
|
763
|
-
"type": {
|
764
|
-
"text": "Promise<DatabaseAccessResult.Create<T>>"
|
765
|
-
}
|
766
|
-
},
|
767
|
-
"parameters": [
|
768
|
-
{
|
769
|
-
"name": "newValue",
|
770
|
-
"type": {
|
771
|
-
"text": "Omit<T, 'id'>"
|
772
|
-
}
|
773
|
-
}
|
774
|
-
]
|
775
|
-
},
|
776
|
-
{
|
777
|
-
"kind": "method",
|
778
|
-
"name": "read",
|
779
|
-
"privacy": "public",
|
780
|
-
"return": {
|
781
|
-
"type": {
|
782
|
-
"text": "Promise<DatabaseAccessResult.Read<T>>"
|
783
|
-
}
|
784
|
-
},
|
785
|
-
"parameters": [
|
786
|
-
{
|
787
|
-
"name": "id",
|
788
|
-
"type": {
|
789
|
-
"text": "string"
|
790
|
-
}
|
791
|
-
}
|
792
|
-
]
|
793
|
-
},
|
794
|
-
{
|
795
|
-
"kind": "method",
|
796
|
-
"name": "update",
|
797
|
-
"privacy": "public",
|
798
|
-
"return": {
|
799
|
-
"type": {
|
800
|
-
"text": "Promise<DatabaseAccessResult.Update<T>>"
|
801
|
-
}
|
802
|
-
},
|
803
|
-
"parameters": [
|
804
|
-
{
|
805
|
-
"name": "id",
|
806
|
-
"type": {
|
807
|
-
"text": "string"
|
808
|
-
}
|
809
|
-
},
|
810
|
-
{
|
811
|
-
"name": "newValue",
|
812
|
-
"type": {
|
813
|
-
"text": "Omit<Partial<T>, 'id'>"
|
814
|
-
}
|
815
|
-
}
|
816
|
-
]
|
817
|
-
},
|
818
|
-
{
|
819
|
-
"kind": "method",
|
820
|
-
"name": "delete",
|
821
|
-
"privacy": "public",
|
822
|
-
"return": {
|
823
|
-
"type": {
|
824
|
-
"text": "Promise<DatabaseAccessResult.Delete>"
|
825
|
-
}
|
826
|
-
},
|
827
|
-
"parameters": [
|
828
|
-
{
|
829
|
-
"name": "id",
|
830
|
-
"type": {
|
831
|
-
"text": "string"
|
832
|
-
}
|
833
|
-
}
|
834
|
-
]
|
835
|
-
},
|
836
|
-
{
|
837
|
-
"kind": "method",
|
838
|
-
"name": "visit",
|
839
|
-
"privacy": "public",
|
840
|
-
"return": {
|
841
|
-
"type": {
|
842
|
-
"text": "Promise<void>"
|
843
|
-
}
|
844
|
-
},
|
845
|
-
"parameters": [
|
846
|
-
{
|
847
|
-
"name": "visitor",
|
848
|
-
"type": {
|
849
|
-
"text": "(record: T) => void"
|
850
|
-
}
|
851
|
-
}
|
852
|
-
]
|
853
|
-
},
|
854
|
-
{
|
855
|
-
"kind": "method",
|
856
|
-
"name": "onBeforeUpdate",
|
857
|
-
"privacy": "public",
|
858
|
-
"return": {
|
859
|
-
"type": {
|
860
|
-
"text": "() => void"
|
861
|
-
}
|
862
|
-
},
|
863
|
-
"parameters": [
|
864
|
-
{
|
865
|
-
"name": "listener",
|
866
|
-
"type": {
|
867
|
-
"text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
|
868
|
-
}
|
869
|
-
}
|
870
|
-
]
|
871
|
-
},
|
872
|
-
{
|
873
|
-
"kind": "method",
|
874
|
-
"name": "onAfterUpdate",
|
875
|
-
"privacy": "public",
|
876
|
-
"return": {
|
877
|
-
"type": {
|
878
|
-
"text": "() => void"
|
879
|
-
}
|
880
|
-
},
|
881
|
-
"parameters": [
|
882
|
-
{
|
883
|
-
"name": "listener",
|
884
|
-
"type": {
|
885
|
-
"text": "Listener<DatabaseEvent.AfterUpdate<T>>"
|
886
|
-
}
|
887
|
-
}
|
888
|
-
]
|
889
|
-
}
|
890
|
-
]
|
891
|
-
}
|
892
|
-
],
|
893
|
-
"exports": [
|
894
|
-
{
|
895
|
-
"kind": "js",
|
896
|
-
"name": "InMemoryDatabase",
|
897
|
-
"declaration": {
|
898
|
-
"name": "InMemoryDatabase",
|
899
|
-
"module": "src/data/inMemoryDatabase.ts"
|
900
|
-
}
|
901
|
-
}
|
902
|
-
]
|
903
|
-
},
|
904
|
-
{
|
905
|
-
"kind": "javascript-module",
|
906
|
-
"path": "src/data/index.ts",
|
907
|
-
"declarations": [],
|
908
|
-
"exports": [
|
909
|
-
{
|
910
|
-
"kind": "js",
|
911
|
-
"name": "*",
|
912
|
-
"declaration": {
|
913
|
-
"name": "*",
|
914
|
-
"package": "./inMemoryDatabase"
|
915
|
-
}
|
916
|
-
}
|
917
|
-
]
|
918
|
-
},
|
919
|
-
{
|
920
|
-
"kind": "javascript-module",
|
921
|
-
"path": "src/design-system/design-system.ts",
|
922
|
-
"declarations": [
|
923
|
-
{
|
924
|
-
"kind": "function",
|
925
|
-
"name": "assureDesignSystem",
|
926
|
-
"return": {
|
927
|
-
"type": {
|
928
|
-
"text": "DesignSystemModule"
|
929
|
-
}
|
930
|
-
},
|
931
|
-
"parameters": [
|
932
|
-
{
|
933
|
-
"name": "module",
|
934
|
-
"type": {
|
935
|
-
"text": "DesignSystemModule"
|
936
|
-
}
|
937
|
-
}
|
938
|
-
],
|
939
|
-
"description": "assureDesignSystem.",
|
940
|
-
"privacy": "public"
|
941
|
-
},
|
942
|
-
{
|
943
|
-
"kind": "function",
|
944
|
-
"name": "getCurrentDesignSystem",
|
945
|
-
"return": {
|
946
|
-
"type": {
|
947
|
-
"text": ""
|
948
|
-
}
|
949
|
-
},
|
950
|
-
"parameters": [
|
951
|
-
{
|
952
|
-
"name": "element",
|
953
|
-
"type": {
|
954
|
-
"text": "HTMLElement"
|
955
|
-
},
|
956
|
-
"description": "The starting HTML element"
|
957
|
-
},
|
958
|
-
{
|
959
|
-
"name": "fallbackPrefix",
|
960
|
-
"type": {
|
961
|
-
"text": "string"
|
962
|
-
},
|
963
|
-
"description": "The prefix to fallback to if the provider is not available"
|
964
|
-
}
|
965
|
-
],
|
966
|
-
"description": "Get the current design system provider element and prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
967
|
-
"privacy": "public"
|
968
|
-
},
|
969
|
-
{
|
970
|
-
"kind": "function",
|
971
|
-
"name": "getCurrentDesignSystemPrefix",
|
972
|
-
"return": {
|
973
|
-
"type": {
|
974
|
-
"text": ""
|
975
|
-
}
|
976
|
-
},
|
977
|
-
"parameters": [
|
978
|
-
{
|
979
|
-
"name": "element",
|
980
|
-
"type": {
|
981
|
-
"text": "HTMLElement"
|
982
|
-
},
|
983
|
-
"description": "The starting HTML element"
|
984
|
-
},
|
985
|
-
{
|
986
|
-
"name": "fallbackPrefix",
|
987
|
-
"type": {
|
988
|
-
"text": "string"
|
989
|
-
},
|
990
|
-
"description": "The prefix to fallback to if the provider is not available"
|
991
|
-
}
|
992
|
-
],
|
993
|
-
"description": "Get the current design system prefix by checking available providers.\nIf no provider is found, falls back to the provided prefix.",
|
994
|
-
"privacy": "public"
|
995
|
-
}
|
996
|
-
],
|
997
|
-
"exports": [
|
998
|
-
{
|
999
|
-
"kind": "js",
|
1000
|
-
"name": "assureDesignSystem",
|
1001
|
-
"declaration": {
|
1002
|
-
"name": "assureDesignSystem",
|
1003
|
-
"module": "src/design-system/design-system.ts"
|
1004
|
-
}
|
1005
|
-
},
|
1006
|
-
{
|
1007
|
-
"kind": "js",
|
1008
|
-
"name": "getCurrentDesignSystem",
|
1009
|
-
"declaration": {
|
1010
|
-
"name": "getCurrentDesignSystem",
|
1011
|
-
"module": "src/design-system/design-system.ts"
|
1012
|
-
}
|
1013
|
-
},
|
1014
|
-
{
|
1015
|
-
"kind": "js",
|
1016
|
-
"name": "getCurrentDesignSystemPrefix",
|
1017
|
-
"declaration": {
|
1018
|
-
"name": "getCurrentDesignSystemPrefix",
|
1019
|
-
"module": "src/design-system/design-system.ts"
|
1020
|
-
}
|
1021
|
-
}
|
1022
|
-
]
|
1023
|
-
},
|
1024
|
-
{
|
1025
|
-
"kind": "javascript-module",
|
1026
|
-
"path": "src/design-system/index.ts",
|
1027
|
-
"declarations": [],
|
1028
|
-
"exports": [
|
1029
|
-
{
|
1030
|
-
"kind": "js",
|
1031
|
-
"name": "*",
|
1032
|
-
"declaration": {
|
1033
|
-
"name": "*",
|
1034
|
-
"package": "./design-system"
|
1035
|
-
}
|
1036
|
-
}
|
1037
|
-
]
|
1038
|
-
},
|
1039
1039
|
{
|
1040
1040
|
"kind": "javascript-module",
|
1041
1041
|
"path": "src/error/errorMap.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.310.
|
4
|
+
"version": "14.310.2-alpha-8853fb3.0",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -27,18 +27,18 @@
|
|
27
27
|
}
|
28
28
|
},
|
29
29
|
"devDependencies": {
|
30
|
-
"@genesislcap/foundation-testing": "14.310.
|
31
|
-
"@genesislcap/genx": "14.310.
|
32
|
-
"@genesislcap/rollup-builder": "14.310.
|
33
|
-
"@genesislcap/ts-builder": "14.310.
|
34
|
-
"@genesislcap/uvu-playwright-builder": "14.310.
|
35
|
-
"@genesislcap/vite-builder": "14.310.
|
36
|
-
"@genesislcap/webpack-builder": "14.310.
|
30
|
+
"@genesislcap/foundation-testing": "14.310.2-alpha-8853fb3.0",
|
31
|
+
"@genesislcap/genx": "14.310.2-alpha-8853fb3.0",
|
32
|
+
"@genesislcap/rollup-builder": "14.310.2-alpha-8853fb3.0",
|
33
|
+
"@genesislcap/ts-builder": "14.310.2-alpha-8853fb3.0",
|
34
|
+
"@genesislcap/uvu-playwright-builder": "14.310.2-alpha-8853fb3.0",
|
35
|
+
"@genesislcap/vite-builder": "14.310.2-alpha-8853fb3.0",
|
36
|
+
"@genesislcap/webpack-builder": "14.310.2-alpha-8853fb3.0",
|
37
37
|
"@types/json-schema": "^7.0.11"
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
|
-
"@genesislcap/expression-builder": "14.310.
|
41
|
-
"@genesislcap/foundation-logger": "14.310.
|
40
|
+
"@genesislcap/expression-builder": "14.310.2-alpha-8853fb3.0",
|
41
|
+
"@genesislcap/foundation-logger": "14.310.2-alpha-8853fb3.0",
|
42
42
|
"@microsoft/fast-components": "2.30.6",
|
43
43
|
"@microsoft/fast-element": "1.14.0",
|
44
44
|
"@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": "463314432383d893be3c9fc153efa77e9d9c8993"
|
59
59
|
}
|