@genesislcap/foundation-utils 14.228.2-alpha-1303eab.0 → 14.229.0-RPT-20.1

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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +655 -655
  2. package/package.json +10 -10
@@ -171,190 +171,7 @@
171
171
  },
172
172
  {
173
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",
174
+ "path": "src/directives/index.ts",
358
175
  "declarations": [],
359
176
  "exports": [
360
177
  {
@@ -362,57 +179,15 @@
362
179
  "name": "*",
363
180
  "declaration": {
364
181
  "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"
182
+ "package": "./sync"
401
183
  }
402
- }
403
- ]
404
- },
405
- {
406
- "kind": "javascript-module",
407
- "path": "src/design-system/index.ts",
408
- "declarations": [],
409
- "exports": [
184
+ },
410
185
  {
411
186
  "kind": "js",
412
187
  "name": "*",
413
188
  "declaration": {
414
189
  "name": "*",
415
- "package": "./design-system"
190
+ "package": "./when-else"
416
191
  }
417
192
  }
418
193
  ]
@@ -722,83 +497,7 @@
722
497
  },
723
498
  {
724
499
  "kind": "javascript-module",
725
- "path": "src/decorators/index.ts",
726
- "declarations": [],
727
- "exports": [
728
- {
729
- "kind": "js",
730
- "name": "*",
731
- "declaration": {
732
- "name": "*",
733
- "package": "./renderOnChange"
734
- }
735
- }
736
- ]
737
- },
738
- {
739
- "kind": "javascript-module",
740
- "path": "src/decorators/renderOnChange.ts",
741
- "declarations": [
742
- {
743
- "kind": "function",
744
- "name": "renderOnChange",
745
- "parameters": [
746
- {
747
- "name": "target",
748
- "type": {
749
- "text": "FASTElement & { render(): void }"
750
- },
751
- "description": "The target to define the property change handler on."
752
- },
753
- {
754
- "name": "name",
755
- "type": {
756
- "text": "string"
757
- },
758
- "description": "The property name."
759
- }
760
- ],
761
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
762
- "privacy": "public"
763
- }
764
- ],
765
- "exports": [
766
- {
767
- "kind": "js",
768
- "name": "renderOnChange",
769
- "declaration": {
770
- "name": "renderOnChange",
771
- "module": "src/decorators/renderOnChange.ts"
772
- }
773
- }
774
- ]
775
- },
776
- {
777
- "kind": "javascript-module",
778
- "path": "src/directives/index.ts",
779
- "declarations": [],
780
- "exports": [
781
- {
782
- "kind": "js",
783
- "name": "*",
784
- "declaration": {
785
- "name": "*",
786
- "package": "./sync"
787
- }
788
- },
789
- {
790
- "kind": "js",
791
- "name": "*",
792
- "declaration": {
793
- "name": "*",
794
- "package": "./when-else"
795
- }
796
- }
797
- ]
798
- },
799
- {
800
- "kind": "javascript-module",
801
- "path": "src/error/errorMap.ts",
500
+ "path": "src/error/errorMap.ts",
802
501
  "declarations": [
803
502
  {
804
503
  "kind": "class",
@@ -997,133 +696,95 @@
997
696
  },
998
697
  {
999
698
  "kind": "javascript-module",
1000
- "path": "src/formatters/datetime.ts",
699
+ "path": "src/decorators/index.ts",
700
+ "declarations": [],
701
+ "exports": [
702
+ {
703
+ "kind": "js",
704
+ "name": "*",
705
+ "declaration": {
706
+ "name": "*",
707
+ "package": "./renderOnChange"
708
+ }
709
+ }
710
+ ]
711
+ },
712
+ {
713
+ "kind": "javascript-module",
714
+ "path": "src/decorators/renderOnChange.ts",
1001
715
  "declarations": [
1002
716
  {
1003
717
  "kind": "function",
1004
- "name": "formatDateTimestamp",
1005
- "return": {
1006
- "type": {
1007
- "text": "string"
1008
- }
1009
- },
718
+ "name": "renderOnChange",
1010
719
  "parameters": [
1011
720
  {
1012
- "name": "timestamp",
721
+ "name": "target",
1013
722
  "type": {
1014
- "text": "number"
1015
- }
1016
- }
1017
- ],
1018
- "description": "Formats [DATE] UNIX Timestamps (without time) to readable strings",
1019
- "privacy": "public"
1020
- },
1021
- {
1022
- "kind": "function",
1023
- "name": "formatDateTimeTimestamp",
1024
- "return": {
1025
- "type": {
1026
- "text": "string"
1027
- }
1028
- },
1029
- "parameters": [
723
+ "text": "FASTElement & { render(): void }"
724
+ },
725
+ "description": "The target to define the property change handler on."
726
+ },
1030
727
  {
1031
- "name": "timestamp",
728
+ "name": "name",
1032
729
  "type": {
1033
- "text": "number"
1034
- }
730
+ "text": "string"
731
+ },
732
+ "description": "The property name."
1035
733
  }
1036
734
  ],
1037
- "description": "Formats [DATETIME] UNIX Timestamps (with time) to readable strings",
735
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
1038
736
  "privacy": "public"
1039
- },
737
+ }
738
+ ],
739
+ "exports": [
740
+ {
741
+ "kind": "js",
742
+ "name": "renderOnChange",
743
+ "declaration": {
744
+ "name": "renderOnChange",
745
+ "module": "src/decorators/renderOnChange.ts"
746
+ }
747
+ }
748
+ ]
749
+ },
750
+ {
751
+ "kind": "javascript-module",
752
+ "path": "src/design-system/design-system.ts",
753
+ "declarations": [
1040
754
  {
1041
755
  "kind": "function",
1042
- "name": "formatTimestamp",
756
+ "name": "assureDesignSystem",
1043
757
  "return": {
1044
758
  "type": {
1045
- "text": "string"
759
+ "text": "DesignSystemModule"
1046
760
  }
1047
761
  },
1048
762
  "parameters": [
1049
763
  {
1050
- "name": "timestamp",
1051
- "type": {
1052
- "text": "number"
1053
- },
1054
- "description": "The UNIX Timestamp."
1055
- },
1056
- {
1057
- "name": "withTime",
1058
- "type": {
1059
- "text": "boolean"
1060
- },
1061
- "description": "The flag to determine if formatted value should contain 'time' info."
1062
- }
1063
- ],
1064
- "description": "Formats [DATE|DATETIME] Unix Timestamps to readable strings",
1065
- "privacy": "public"
1066
- },
1067
- {
1068
- "kind": "function",
1069
- "name": "getDateFormatter",
1070
- "parameters": [
1071
- {
1072
- "name": "locale",
1073
- "default": "'en-GB'",
1074
- "type": {
1075
- "text": "string"
1076
- }
1077
- },
1078
- {
1079
- "name": "options",
1080
- "default": "defaultDateOptions",
764
+ "name": "module",
1081
765
  "type": {
1082
- "text": "Intl.DateTimeFormatOptions"
766
+ "text": "DesignSystemModule"
1083
767
  }
1084
768
  }
1085
769
  ],
770
+ "description": "assureDesignSystem.",
1086
771
  "privacy": "public"
1087
772
  }
1088
773
  ],
1089
774
  "exports": [
1090
775
  {
1091
776
  "kind": "js",
1092
- "name": "formatDateTimestamp",
1093
- "declaration": {
1094
- "name": "formatDateTimestamp",
1095
- "module": "src/formatters/datetime.ts"
1096
- }
1097
- },
1098
- {
1099
- "kind": "js",
1100
- "name": "formatDateTimeTimestamp",
1101
- "declaration": {
1102
- "name": "formatDateTimeTimestamp",
1103
- "module": "src/formatters/datetime.ts"
1104
- }
1105
- },
1106
- {
1107
- "kind": "js",
1108
- "name": "formatTimestamp",
1109
- "declaration": {
1110
- "name": "formatTimestamp",
1111
- "module": "src/formatters/datetime.ts"
1112
- }
1113
- },
1114
- {
1115
- "kind": "js",
1116
- "name": "getDateFormatter",
777
+ "name": "assureDesignSystem",
1117
778
  "declaration": {
1118
- "name": "getDateFormatter",
1119
- "module": "src/formatters/datetime.ts"
779
+ "name": "assureDesignSystem",
780
+ "module": "src/design-system/design-system.ts"
1120
781
  }
1121
782
  }
1122
783
  ]
1123
784
  },
1124
785
  {
1125
786
  "kind": "javascript-module",
1126
- "path": "src/formatters/index.ts",
787
+ "path": "src/design-system/index.ts",
1127
788
  "declarations": [],
1128
789
  "exports": [
1129
790
  {
@@ -1131,79 +792,418 @@
1131
792
  "name": "*",
1132
793
  "declaration": {
1133
794
  "name": "*",
1134
- "package": "./datetime"
1135
- }
1136
- },
1137
- {
1138
- "kind": "js",
1139
- "name": "*",
1140
- "declaration": {
1141
- "name": "*",
1142
- "package": "./localeNumberParser"
1143
- }
1144
- },
1145
- {
1146
- "kind": "js",
1147
- "name": "*",
1148
- "declaration": {
1149
- "name": "*",
1150
- "package": "./number"
795
+ "package": "./design-system"
1151
796
  }
1152
797
  }
1153
798
  ]
1154
799
  },
1155
800
  {
1156
801
  "kind": "javascript-module",
1157
- "path": "src/formatters/localeNumberParser.ts",
802
+ "path": "src/data/inMemoryDatabase.ts",
1158
803
  "declarations": [
1159
804
  {
1160
805
  "kind": "class",
1161
- "description": "",
1162
- "name": "NumberParser",
806
+ "description": "An in memory database of specific DatabaseRecord types.",
807
+ "name": "InMemoryDatabase",
1163
808
  "members": [
1164
809
  {
1165
810
  "kind": "field",
1166
- "name": "_decimal",
811
+ "name": "isWorking",
1167
812
  "type": {
1168
- "text": "RegExp"
813
+ "text": "boolean"
1169
814
  },
1170
- "privacy": "private",
1171
- "default": "new RegExp(`[${parts.find((d) => d.type === 'decimal').value}]`)"
815
+ "privacy": "public",
816
+ "default": "false"
1172
817
  },
1173
818
  {
1174
819
  "kind": "field",
1175
- "name": "_separator",
820
+ "name": "records",
1176
821
  "type": {
1177
- "text": "RegExp"
822
+ "text": "Record<string, T>"
1178
823
  },
1179
824
  "privacy": "private",
1180
- "default": "new RegExp(\n `[$${parts.find((d) => d.type === 'decimal').value}](?:0*$|[^0]0+$)`,\n )"
825
+ "default": "{}"
1181
826
  },
1182
827
  {
1183
828
  "kind": "field",
1184
- "name": "_numeral",
1185
- "type": {
1186
- "text": "RegExp"
1187
- },
1188
- "privacy": "private",
1189
- "default": "new RegExp(`[${numerals.join('')}]`, 'g')"
829
+ "name": "beforeUpdateListeners",
830
+ "privacy": "private"
1190
831
  },
1191
832
  {
1192
833
  "kind": "field",
1193
- "name": "_index",
1194
- "type": {
1195
- "text": "any"
1196
- },
834
+ "name": "afterUpdateListeners",
1197
835
  "privacy": "private"
1198
836
  },
1199
837
  {
1200
838
  "kind": "method",
1201
- "name": "parse",
1202
- "parameters": [
1203
- {
1204
- "name": "localeNumber",
1205
- "type": {
1206
- "text": "string"
839
+ "name": "create",
840
+ "privacy": "public",
841
+ "return": {
842
+ "type": {
843
+ "text": "Promise<DatabaseAccessResult.Create<T>>"
844
+ }
845
+ },
846
+ "parameters": [
847
+ {
848
+ "name": "newValue",
849
+ "type": {
850
+ "text": "Omit<T, 'id'>"
851
+ }
852
+ }
853
+ ]
854
+ },
855
+ {
856
+ "kind": "method",
857
+ "name": "read",
858
+ "privacy": "public",
859
+ "return": {
860
+ "type": {
861
+ "text": "Promise<DatabaseAccessResult.Read<T>>"
862
+ }
863
+ },
864
+ "parameters": [
865
+ {
866
+ "name": "id",
867
+ "type": {
868
+ "text": "string"
869
+ }
870
+ }
871
+ ]
872
+ },
873
+ {
874
+ "kind": "method",
875
+ "name": "update",
876
+ "privacy": "public",
877
+ "return": {
878
+ "type": {
879
+ "text": "Promise<DatabaseAccessResult.Update<T>>"
880
+ }
881
+ },
882
+ "parameters": [
883
+ {
884
+ "name": "id",
885
+ "type": {
886
+ "text": "string"
887
+ }
888
+ },
889
+ {
890
+ "name": "newValue",
891
+ "type": {
892
+ "text": "Omit<Partial<T>, 'id'>"
893
+ }
894
+ }
895
+ ]
896
+ },
897
+ {
898
+ "kind": "method",
899
+ "name": "delete",
900
+ "privacy": "public",
901
+ "return": {
902
+ "type": {
903
+ "text": "Promise<DatabaseAccessResult.Delete>"
904
+ }
905
+ },
906
+ "parameters": [
907
+ {
908
+ "name": "id",
909
+ "type": {
910
+ "text": "string"
911
+ }
912
+ }
913
+ ]
914
+ },
915
+ {
916
+ "kind": "method",
917
+ "name": "visit",
918
+ "privacy": "public",
919
+ "return": {
920
+ "type": {
921
+ "text": "Promise<void>"
922
+ }
923
+ },
924
+ "parameters": [
925
+ {
926
+ "name": "visitor",
927
+ "type": {
928
+ "text": "(record: T) => void"
929
+ }
930
+ }
931
+ ]
932
+ },
933
+ {
934
+ "kind": "method",
935
+ "name": "onBeforeUpdate",
936
+ "privacy": "public",
937
+ "return": {
938
+ "type": {
939
+ "text": "() => void"
940
+ }
941
+ },
942
+ "parameters": [
943
+ {
944
+ "name": "listener",
945
+ "type": {
946
+ "text": "Listener<DatabaseEvent.BeforeUpdate<T>>"
947
+ }
948
+ }
949
+ ]
950
+ },
951
+ {
952
+ "kind": "method",
953
+ "name": "onAfterUpdate",
954
+ "privacy": "public",
955
+ "return": {
956
+ "type": {
957
+ "text": "() => void"
958
+ }
959
+ },
960
+ "parameters": [
961
+ {
962
+ "name": "listener",
963
+ "type": {
964
+ "text": "Listener<DatabaseEvent.AfterUpdate<T>>"
965
+ }
966
+ }
967
+ ]
968
+ }
969
+ ]
970
+ }
971
+ ],
972
+ "exports": [
973
+ {
974
+ "kind": "js",
975
+ "name": "InMemoryDatabase",
976
+ "declaration": {
977
+ "name": "InMemoryDatabase",
978
+ "module": "src/data/inMemoryDatabase.ts"
979
+ }
980
+ }
981
+ ]
982
+ },
983
+ {
984
+ "kind": "javascript-module",
985
+ "path": "src/data/index.ts",
986
+ "declarations": [],
987
+ "exports": [
988
+ {
989
+ "kind": "js",
990
+ "name": "*",
991
+ "declaration": {
992
+ "name": "*",
993
+ "package": "./inMemoryDatabase"
994
+ }
995
+ }
996
+ ]
997
+ },
998
+ {
999
+ "kind": "javascript-module",
1000
+ "path": "src/formatters/datetime.ts",
1001
+ "declarations": [
1002
+ {
1003
+ "kind": "function",
1004
+ "name": "formatDateTimestamp",
1005
+ "return": {
1006
+ "type": {
1007
+ "text": "string"
1008
+ }
1009
+ },
1010
+ "parameters": [
1011
+ {
1012
+ "name": "timestamp",
1013
+ "type": {
1014
+ "text": "number"
1015
+ }
1016
+ }
1017
+ ],
1018
+ "description": "Formats [DATE] UNIX Timestamps (without time) to readable strings",
1019
+ "privacy": "public"
1020
+ },
1021
+ {
1022
+ "kind": "function",
1023
+ "name": "formatDateTimeTimestamp",
1024
+ "return": {
1025
+ "type": {
1026
+ "text": "string"
1027
+ }
1028
+ },
1029
+ "parameters": [
1030
+ {
1031
+ "name": "timestamp",
1032
+ "type": {
1033
+ "text": "number"
1034
+ }
1035
+ }
1036
+ ],
1037
+ "description": "Formats [DATETIME] UNIX Timestamps (with time) to readable strings",
1038
+ "privacy": "public"
1039
+ },
1040
+ {
1041
+ "kind": "function",
1042
+ "name": "formatTimestamp",
1043
+ "return": {
1044
+ "type": {
1045
+ "text": "string"
1046
+ }
1047
+ },
1048
+ "parameters": [
1049
+ {
1050
+ "name": "timestamp",
1051
+ "type": {
1052
+ "text": "number"
1053
+ },
1054
+ "description": "The UNIX Timestamp."
1055
+ },
1056
+ {
1057
+ "name": "withTime",
1058
+ "type": {
1059
+ "text": "boolean"
1060
+ },
1061
+ "description": "The flag to determine if formatted value should contain 'time' info."
1062
+ }
1063
+ ],
1064
+ "description": "Formats [DATE|DATETIME] Unix Timestamps to readable strings",
1065
+ "privacy": "public"
1066
+ },
1067
+ {
1068
+ "kind": "function",
1069
+ "name": "getDateFormatter",
1070
+ "parameters": [
1071
+ {
1072
+ "name": "locale",
1073
+ "default": "'en-GB'",
1074
+ "type": {
1075
+ "text": "string"
1076
+ }
1077
+ },
1078
+ {
1079
+ "name": "options",
1080
+ "default": "defaultDateOptions",
1081
+ "type": {
1082
+ "text": "Intl.DateTimeFormatOptions"
1083
+ }
1084
+ }
1085
+ ],
1086
+ "privacy": "public"
1087
+ }
1088
+ ],
1089
+ "exports": [
1090
+ {
1091
+ "kind": "js",
1092
+ "name": "formatDateTimestamp",
1093
+ "declaration": {
1094
+ "name": "formatDateTimestamp",
1095
+ "module": "src/formatters/datetime.ts"
1096
+ }
1097
+ },
1098
+ {
1099
+ "kind": "js",
1100
+ "name": "formatDateTimeTimestamp",
1101
+ "declaration": {
1102
+ "name": "formatDateTimeTimestamp",
1103
+ "module": "src/formatters/datetime.ts"
1104
+ }
1105
+ },
1106
+ {
1107
+ "kind": "js",
1108
+ "name": "formatTimestamp",
1109
+ "declaration": {
1110
+ "name": "formatTimestamp",
1111
+ "module": "src/formatters/datetime.ts"
1112
+ }
1113
+ },
1114
+ {
1115
+ "kind": "js",
1116
+ "name": "getDateFormatter",
1117
+ "declaration": {
1118
+ "name": "getDateFormatter",
1119
+ "module": "src/formatters/datetime.ts"
1120
+ }
1121
+ }
1122
+ ]
1123
+ },
1124
+ {
1125
+ "kind": "javascript-module",
1126
+ "path": "src/formatters/index.ts",
1127
+ "declarations": [],
1128
+ "exports": [
1129
+ {
1130
+ "kind": "js",
1131
+ "name": "*",
1132
+ "declaration": {
1133
+ "name": "*",
1134
+ "package": "./datetime"
1135
+ }
1136
+ },
1137
+ {
1138
+ "kind": "js",
1139
+ "name": "*",
1140
+ "declaration": {
1141
+ "name": "*",
1142
+ "package": "./localeNumberParser"
1143
+ }
1144
+ },
1145
+ {
1146
+ "kind": "js",
1147
+ "name": "*",
1148
+ "declaration": {
1149
+ "name": "*",
1150
+ "package": "./number"
1151
+ }
1152
+ }
1153
+ ]
1154
+ },
1155
+ {
1156
+ "kind": "javascript-module",
1157
+ "path": "src/formatters/localeNumberParser.ts",
1158
+ "declarations": [
1159
+ {
1160
+ "kind": "class",
1161
+ "description": "",
1162
+ "name": "NumberParser",
1163
+ "members": [
1164
+ {
1165
+ "kind": "field",
1166
+ "name": "_decimal",
1167
+ "type": {
1168
+ "text": "RegExp"
1169
+ },
1170
+ "privacy": "private",
1171
+ "default": "new RegExp(`[${parts.find((d) => d.type === 'decimal').value}]`)"
1172
+ },
1173
+ {
1174
+ "kind": "field",
1175
+ "name": "_separator",
1176
+ "type": {
1177
+ "text": "RegExp"
1178
+ },
1179
+ "privacy": "private",
1180
+ "default": "new RegExp(\n `[$${parts.find((d) => d.type === 'decimal').value}](?:0*$|[^0]0+$)`,\n )"
1181
+ },
1182
+ {
1183
+ "kind": "field",
1184
+ "name": "_numeral",
1185
+ "type": {
1186
+ "text": "RegExp"
1187
+ },
1188
+ "privacy": "private",
1189
+ "default": "new RegExp(`[${numerals.join('')}]`, 'g')"
1190
+ },
1191
+ {
1192
+ "kind": "field",
1193
+ "name": "_index",
1194
+ "type": {
1195
+ "text": "any"
1196
+ },
1197
+ "privacy": "private"
1198
+ },
1199
+ {
1200
+ "kind": "method",
1201
+ "name": "parse",
1202
+ "parameters": [
1203
+ {
1204
+ "name": "localeNumber",
1205
+ "type": {
1206
+ "text": "string"
1207
1207
  }
1208
1208
  }
1209
1209
  ]
@@ -2180,203 +2180,25 @@
2180
2180
  "kind": "variable",
2181
2181
  "name": "POPUP_DEFAULT_WIDTH",
2182
2182
  "type": {
2183
- "text": "number"
2184
- },
2185
- "default": "483",
2186
- "description": "The default width (in pixels) for pop-up windows.",
2187
- "privacy": "public"
2188
- },
2189
- {
2190
- "kind": "variable",
2191
- "name": "POPUP_DEFAULT_HEIGHT",
2192
- "type": {
2193
- "text": "number"
2194
- },
2195
- "default": "600",
2196
- "description": "The default height (in pixels) for pop-up windows.",
2197
- "privacy": "public"
2198
- },
2199
- {
2200
- "kind": "function",
2201
- "name": "openPopup",
2202
- "return": {
2203
- "type": {
2204
- "text": ""
2205
- }
2206
- },
2207
- "parameters": [
2208
- {
2209
- "name": "urlNavigate",
2210
- "type": {
2211
- "text": "string"
2212
- },
2213
- "description": "The URL to navigate to."
2214
- },
2215
- {
2216
- "name": "target",
2217
- "type": {
2218
- "text": "string"
2219
- },
2220
- "description": "The name of the new window."
2221
- },
2222
- {
2223
- "name": "popUpWidth",
2224
- "default": "POPUP_DEFAULT_WIDTH",
2225
- "type": {
2226
- "text": "number"
2227
- },
2228
- "description": "The width of the new window (optional)."
2229
- },
2230
- {
2231
- "name": "popUpHeight",
2232
- "default": "POPUP_DEFAULT_HEIGHT",
2233
- "type": {
2234
- "text": "number"
2235
- },
2236
- "description": "The height of the new window (optional)."
2237
- }
2238
- ],
2239
- "description": "Opens a new browser window with the specified URL, target, width, and height.",
2240
- "privacy": "public"
2241
- }
2242
- ],
2243
- "exports": [
2244
- {
2245
- "kind": "js",
2246
- "name": "inIFrame",
2247
- "declaration": {
2248
- "name": "inIFrame",
2249
- "module": "src/window/window.ts"
2250
- }
2251
- },
2252
- {
2253
- "kind": "js",
2254
- "name": "inSymphonyDesktop",
2255
- "declaration": {
2256
- "name": "inSymphonyDesktop",
2257
- "module": "src/window/window.ts"
2258
- }
2259
- },
2260
- {
2261
- "kind": "js",
2262
- "name": "POPUP_DEFAULT_WIDTH",
2263
- "declaration": {
2264
- "name": "POPUP_DEFAULT_WIDTH",
2265
- "module": "src/window/window.ts"
2266
- }
2267
- },
2268
- {
2269
- "kind": "js",
2270
- "name": "POPUP_DEFAULT_HEIGHT",
2271
- "declaration": {
2272
- "name": "POPUP_DEFAULT_HEIGHT",
2273
- "module": "src/window/window.ts"
2274
- }
2275
- },
2276
- {
2277
- "kind": "js",
2278
- "name": "openPopup",
2279
- "declaration": {
2280
- "name": "openPopup",
2281
- "module": "src/window/window.ts"
2282
- }
2283
- }
2284
- ]
2285
- },
2286
- {
2287
- "kind": "javascript-module",
2288
- "path": "src/encoding/base64/decode.ts",
2289
- "declarations": [
2290
- {
2291
- "kind": "function",
2292
- "name": "decodeFromBase64",
2293
- "return": {
2294
- "type": {
2295
- "text": ""
2296
- }
2297
- },
2298
- "parameters": [
2299
- {
2300
- "name": "base64Value",
2301
- "type": {
2302
- "text": "string"
2303
- }
2304
- },
2305
- {
2306
- "description": "The value to decode from base64.",
2307
- "name": "value"
2308
- }
2309
- ],
2310
- "description": "Decodes a value from base64.",
2311
- "privacy": "public"
2312
- },
2313
- {
2314
- "kind": "function",
2315
- "name": "decodeFromBase64WithPrefix",
2316
- "return": {
2317
- "type": {
2318
- "text": ""
2319
- }
2320
- },
2321
- "parameters": [
2322
- {
2323
- "name": "value",
2324
- "type": {
2325
- "text": "string"
2326
- },
2327
- "description": "The value to decode from base64."
2328
- }
2329
- ],
2330
- "description": "Decodes a value from base64 with a prefix.",
2331
- "privacy": "public"
2332
- }
2333
- ],
2334
- "exports": [
2335
- {
2336
- "kind": "js",
2337
- "name": "decodeFromBase64",
2338
- "declaration": {
2339
- "name": "decodeFromBase64",
2340
- "module": "src/encoding/base64/decode.ts"
2341
- }
2342
- },
2343
- {
2344
- "kind": "js",
2345
- "name": "decodeFromBase64WithPrefix",
2346
- "declaration": {
2347
- "name": "decodeFromBase64WithPrefix",
2348
- "module": "src/encoding/base64/decode.ts"
2349
- }
2350
- }
2351
- ]
2352
- },
2353
- {
2354
- "kind": "javascript-module",
2355
- "path": "src/encoding/base64/encode.ts",
2356
- "declarations": [
2183
+ "text": "number"
2184
+ },
2185
+ "default": "483",
2186
+ "description": "The default width (in pixels) for pop-up windows.",
2187
+ "privacy": "public"
2188
+ },
2357
2189
  {
2358
- "kind": "function",
2359
- "name": "encodeToBase64",
2360
- "return": {
2361
- "type": {
2362
- "text": ""
2363
- }
2190
+ "kind": "variable",
2191
+ "name": "POPUP_DEFAULT_HEIGHT",
2192
+ "type": {
2193
+ "text": "number"
2364
2194
  },
2365
- "parameters": [
2366
- {
2367
- "name": "value",
2368
- "type": {
2369
- "text": "string | ArrayBuffer"
2370
- },
2371
- "description": "The value to encode to base64."
2372
- }
2373
- ],
2374
- "description": "Encodes the given value to base64.",
2195
+ "default": "600",
2196
+ "description": "The default height (in pixels) for pop-up windows.",
2375
2197
  "privacy": "public"
2376
2198
  },
2377
2199
  {
2378
2200
  "kind": "function",
2379
- "name": "encodeToBase64WithPrefix",
2201
+ "name": "openPopup",
2380
2202
  "return": {
2381
2203
  "type": {
2382
2204
  "text": ""
@@ -2384,55 +2206,79 @@
2384
2206
  },
2385
2207
  "parameters": [
2386
2208
  {
2387
- "name": "value",
2209
+ "name": "urlNavigate",
2388
2210
  "type": {
2389
- "text": "string | ArrayBuffer"
2211
+ "text": "string"
2390
2212
  },
2391
- "description": "The value to encode to base64."
2213
+ "description": "The URL to navigate to."
2214
+ },
2215
+ {
2216
+ "name": "target",
2217
+ "type": {
2218
+ "text": "string"
2219
+ },
2220
+ "description": "The name of the new window."
2221
+ },
2222
+ {
2223
+ "name": "popUpWidth",
2224
+ "default": "POPUP_DEFAULT_WIDTH",
2225
+ "type": {
2226
+ "text": "number"
2227
+ },
2228
+ "description": "The width of the new window (optional)."
2229
+ },
2230
+ {
2231
+ "name": "popUpHeight",
2232
+ "default": "POPUP_DEFAULT_HEIGHT",
2233
+ "type": {
2234
+ "text": "number"
2235
+ },
2236
+ "description": "The height of the new window (optional)."
2392
2237
  }
2393
2238
  ],
2394
- "description": "Encodes the given value with a prefix to base64.",
2239
+ "description": "Opens a new browser window with the specified URL, target, width, and height.",
2395
2240
  "privacy": "public"
2396
2241
  }
2397
2242
  ],
2398
2243
  "exports": [
2399
2244
  {
2400
2245
  "kind": "js",
2401
- "name": "encodeToBase64",
2246
+ "name": "inIFrame",
2402
2247
  "declaration": {
2403
- "name": "encodeToBase64",
2404
- "module": "src/encoding/base64/encode.ts"
2248
+ "name": "inIFrame",
2249
+ "module": "src/window/window.ts"
2405
2250
  }
2406
2251
  },
2407
2252
  {
2408
2253
  "kind": "js",
2409
- "name": "encodeToBase64WithPrefix",
2254
+ "name": "inSymphonyDesktop",
2410
2255
  "declaration": {
2411
- "name": "encodeToBase64WithPrefix",
2412
- "module": "src/encoding/base64/encode.ts"
2256
+ "name": "inSymphonyDesktop",
2257
+ "module": "src/window/window.ts"
2413
2258
  }
2414
- }
2415
- ]
2416
- },
2417
- {
2418
- "kind": "javascript-module",
2419
- "path": "src/encoding/base64/index.ts",
2420
- "declarations": [],
2421
- "exports": [
2259
+ },
2422
2260
  {
2423
2261
  "kind": "js",
2424
- "name": "*",
2262
+ "name": "POPUP_DEFAULT_WIDTH",
2425
2263
  "declaration": {
2426
- "name": "*",
2427
- "package": "./decode"
2264
+ "name": "POPUP_DEFAULT_WIDTH",
2265
+ "module": "src/window/window.ts"
2428
2266
  }
2429
2267
  },
2430
2268
  {
2431
2269
  "kind": "js",
2432
- "name": "*",
2270
+ "name": "POPUP_DEFAULT_HEIGHT",
2433
2271
  "declaration": {
2434
- "name": "*",
2435
- "package": "./encode"
2272
+ "name": "POPUP_DEFAULT_HEIGHT",
2273
+ "module": "src/window/window.ts"
2274
+ }
2275
+ },
2276
+ {
2277
+ "kind": "js",
2278
+ "name": "openPopup",
2279
+ "declaration": {
2280
+ "name": "openPopup",
2281
+ "module": "src/window/window.ts"
2436
2282
  }
2437
2283
  }
2438
2284
  ]
@@ -2591,6 +2437,160 @@
2591
2437
  }
2592
2438
  ]
2593
2439
  },
2440
+ {
2441
+ "kind": "javascript-module",
2442
+ "path": "src/encoding/base64/decode.ts",
2443
+ "declarations": [
2444
+ {
2445
+ "kind": "function",
2446
+ "name": "decodeFromBase64",
2447
+ "return": {
2448
+ "type": {
2449
+ "text": ""
2450
+ }
2451
+ },
2452
+ "parameters": [
2453
+ {
2454
+ "name": "base64Value",
2455
+ "type": {
2456
+ "text": "string"
2457
+ }
2458
+ },
2459
+ {
2460
+ "description": "The value to decode from base64.",
2461
+ "name": "value"
2462
+ }
2463
+ ],
2464
+ "description": "Decodes a value from base64.",
2465
+ "privacy": "public"
2466
+ },
2467
+ {
2468
+ "kind": "function",
2469
+ "name": "decodeFromBase64WithPrefix",
2470
+ "return": {
2471
+ "type": {
2472
+ "text": ""
2473
+ }
2474
+ },
2475
+ "parameters": [
2476
+ {
2477
+ "name": "value",
2478
+ "type": {
2479
+ "text": "string"
2480
+ },
2481
+ "description": "The value to decode from base64."
2482
+ }
2483
+ ],
2484
+ "description": "Decodes a value from base64 with a prefix.",
2485
+ "privacy": "public"
2486
+ }
2487
+ ],
2488
+ "exports": [
2489
+ {
2490
+ "kind": "js",
2491
+ "name": "decodeFromBase64",
2492
+ "declaration": {
2493
+ "name": "decodeFromBase64",
2494
+ "module": "src/encoding/base64/decode.ts"
2495
+ }
2496
+ },
2497
+ {
2498
+ "kind": "js",
2499
+ "name": "decodeFromBase64WithPrefix",
2500
+ "declaration": {
2501
+ "name": "decodeFromBase64WithPrefix",
2502
+ "module": "src/encoding/base64/decode.ts"
2503
+ }
2504
+ }
2505
+ ]
2506
+ },
2507
+ {
2508
+ "kind": "javascript-module",
2509
+ "path": "src/encoding/base64/encode.ts",
2510
+ "declarations": [
2511
+ {
2512
+ "kind": "function",
2513
+ "name": "encodeToBase64",
2514
+ "return": {
2515
+ "type": {
2516
+ "text": ""
2517
+ }
2518
+ },
2519
+ "parameters": [
2520
+ {
2521
+ "name": "value",
2522
+ "type": {
2523
+ "text": "string | ArrayBuffer"
2524
+ },
2525
+ "description": "The value to encode to base64."
2526
+ }
2527
+ ],
2528
+ "description": "Encodes the given value to base64.",
2529
+ "privacy": "public"
2530
+ },
2531
+ {
2532
+ "kind": "function",
2533
+ "name": "encodeToBase64WithPrefix",
2534
+ "return": {
2535
+ "type": {
2536
+ "text": ""
2537
+ }
2538
+ },
2539
+ "parameters": [
2540
+ {
2541
+ "name": "value",
2542
+ "type": {
2543
+ "text": "string | ArrayBuffer"
2544
+ },
2545
+ "description": "The value to encode to base64."
2546
+ }
2547
+ ],
2548
+ "description": "Encodes the given value with a prefix to base64.",
2549
+ "privacy": "public"
2550
+ }
2551
+ ],
2552
+ "exports": [
2553
+ {
2554
+ "kind": "js",
2555
+ "name": "encodeToBase64",
2556
+ "declaration": {
2557
+ "name": "encodeToBase64",
2558
+ "module": "src/encoding/base64/encode.ts"
2559
+ }
2560
+ },
2561
+ {
2562
+ "kind": "js",
2563
+ "name": "encodeToBase64WithPrefix",
2564
+ "declaration": {
2565
+ "name": "encodeToBase64WithPrefix",
2566
+ "module": "src/encoding/base64/encode.ts"
2567
+ }
2568
+ }
2569
+ ]
2570
+ },
2571
+ {
2572
+ "kind": "javascript-module",
2573
+ "path": "src/encoding/base64/index.ts",
2574
+ "declarations": [],
2575
+ "exports": [
2576
+ {
2577
+ "kind": "js",
2578
+ "name": "*",
2579
+ "declaration": {
2580
+ "name": "*",
2581
+ "package": "./decode"
2582
+ }
2583
+ },
2584
+ {
2585
+ "kind": "js",
2586
+ "name": "*",
2587
+ "declaration": {
2588
+ "name": "*",
2589
+ "package": "./encode"
2590
+ }
2591
+ }
2592
+ ]
2593
+ },
2594
2594
  {
2595
2595
  "kind": "javascript-module",
2596
2596
  "path": "src/mappers/dto/index.ts",