@opengeoweb/form-fields 4.22.0 → 5.0.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/index.js +95 -80
- package/package.json +4 -4
package/index.js
CHANGED
|
@@ -134,8 +134,9 @@ var moment = {exports: {}};
|
|
|
134
134
|
|
|
135
135
|
function map(arr, fn) {
|
|
136
136
|
var res = [],
|
|
137
|
-
i
|
|
138
|
-
|
|
137
|
+
i,
|
|
138
|
+
arrLen = arr.length;
|
|
139
|
+
for (i = 0; i < arrLen; ++i) {
|
|
139
140
|
res.push(fn(arr[i], i));
|
|
140
141
|
}
|
|
141
142
|
return res;
|
|
@@ -264,7 +265,10 @@ var moment = {exports: {}};
|
|
|
264
265
|
updateInProgress = false;
|
|
265
266
|
|
|
266
267
|
function copyConfig(to, from) {
|
|
267
|
-
var i,
|
|
268
|
+
var i,
|
|
269
|
+
prop,
|
|
270
|
+
val,
|
|
271
|
+
momentPropertiesLen = momentProperties.length;
|
|
268
272
|
|
|
269
273
|
if (!isUndefined(from._isAMomentObject)) {
|
|
270
274
|
to._isAMomentObject = from._isAMomentObject;
|
|
@@ -297,8 +301,8 @@ var moment = {exports: {}};
|
|
|
297
301
|
to._locale = from._locale;
|
|
298
302
|
}
|
|
299
303
|
|
|
300
|
-
if (
|
|
301
|
-
for (i = 0; i <
|
|
304
|
+
if (momentPropertiesLen > 0) {
|
|
305
|
+
for (i = 0; i < momentPropertiesLen; i++) {
|
|
302
306
|
prop = momentProperties[i];
|
|
303
307
|
val = from[prop];
|
|
304
308
|
if (!isUndefined(val)) {
|
|
@@ -353,8 +357,9 @@ var moment = {exports: {}};
|
|
|
353
357
|
var args = [],
|
|
354
358
|
arg,
|
|
355
359
|
i,
|
|
356
|
-
key
|
|
357
|
-
|
|
360
|
+
key,
|
|
361
|
+
argLen = arguments.length;
|
|
362
|
+
for (i = 0; i < argLen; i++) {
|
|
358
363
|
arg = '';
|
|
359
364
|
if (typeof arguments[i] === 'object') {
|
|
360
365
|
arg += '\n[' + i + '] ';
|
|
@@ -504,7 +509,8 @@ var moment = {exports: {}};
|
|
|
504
509
|
);
|
|
505
510
|
}
|
|
506
511
|
|
|
507
|
-
var formattingTokens =
|
|
512
|
+
var formattingTokens =
|
|
513
|
+
/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,
|
|
508
514
|
localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,
|
|
509
515
|
formatFunctions = {},
|
|
510
516
|
formatTokenFunctions = {};
|
|
@@ -808,8 +814,9 @@ var moment = {exports: {}};
|
|
|
808
814
|
if (typeof units === 'object') {
|
|
809
815
|
units = normalizeObjectUnits(units);
|
|
810
816
|
var prioritized = getPrioritizedUnits(units),
|
|
811
|
-
i
|
|
812
|
-
|
|
817
|
+
i,
|
|
818
|
+
prioritizedLen = prioritized.length;
|
|
819
|
+
for (i = 0; i < prioritizedLen; i++) {
|
|
813
820
|
this[prioritized[i].unit](units[prioritized[i].unit]);
|
|
814
821
|
}
|
|
815
822
|
} else {
|
|
@@ -839,7 +846,8 @@ var moment = {exports: {}};
|
|
|
839
846
|
matchTimestamp = /[+-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123
|
|
840
847
|
// any word (or two) characters or numbers including two/three word month in arabic.
|
|
841
848
|
// includes scottish gaelic two word and hyphenated months
|
|
842
|
-
matchWord =
|
|
849
|
+
matchWord =
|
|
850
|
+
/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
|
|
843
851
|
regexes;
|
|
844
852
|
|
|
845
853
|
regexes = {};
|
|
@@ -865,15 +873,12 @@ var moment = {exports: {}};
|
|
|
865
873
|
return regexEscape(
|
|
866
874
|
s
|
|
867
875
|
.replace('\\', '')
|
|
868
|
-
.replace(
|
|
869
|
-
|
|
870
|
-
p1,
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
) {
|
|
875
|
-
return p1 || p2 || p3 || p4;
|
|
876
|
-
})
|
|
876
|
+
.replace(
|
|
877
|
+
/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,
|
|
878
|
+
function (matched, p1, p2, p3, p4) {
|
|
879
|
+
return p1 || p2 || p3 || p4;
|
|
880
|
+
}
|
|
881
|
+
)
|
|
877
882
|
);
|
|
878
883
|
}
|
|
879
884
|
|
|
@@ -885,7 +890,8 @@ var moment = {exports: {}};
|
|
|
885
890
|
|
|
886
891
|
function addParseToken(token, callback) {
|
|
887
892
|
var i,
|
|
888
|
-
func = callback
|
|
893
|
+
func = callback,
|
|
894
|
+
tokenLen;
|
|
889
895
|
if (typeof token === 'string') {
|
|
890
896
|
token = [token];
|
|
891
897
|
}
|
|
@@ -894,7 +900,8 @@ var moment = {exports: {}};
|
|
|
894
900
|
array[callback] = toInt(input);
|
|
895
901
|
};
|
|
896
902
|
}
|
|
897
|
-
|
|
903
|
+
tokenLen = token.length;
|
|
904
|
+
for (i = 0; i < tokenLen; i++) {
|
|
898
905
|
tokens[token[i]] = func;
|
|
899
906
|
}
|
|
900
907
|
}
|
|
@@ -1005,12 +1012,12 @@ var moment = {exports: {}};
|
|
|
1005
1012
|
|
|
1006
1013
|
// LOCALES
|
|
1007
1014
|
|
|
1008
|
-
var defaultLocaleMonths =
|
|
1009
|
-
'
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1015
|
+
var defaultLocaleMonths =
|
|
1016
|
+
'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
|
1017
|
+
'_'
|
|
1018
|
+
),
|
|
1019
|
+
defaultLocaleMonthsShort =
|
|
1020
|
+
'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
|
1014
1021
|
MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,
|
|
1015
1022
|
defaultMonthsShortRegex = matchWord,
|
|
1016
1023
|
defaultMonthsRegex = matchWord;
|
|
@@ -1452,14 +1459,12 @@ var moment = {exports: {}};
|
|
|
1452
1459
|
addRegexToken('W', match1to2);
|
|
1453
1460
|
addRegexToken('WW', match1to2, match2);
|
|
1454
1461
|
|
|
1455
|
-
addWeekParseToken(
|
|
1456
|
-
|
|
1457
|
-
week,
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
)
|
|
1461
|
-
week[token.substr(0, 1)] = toInt(input);
|
|
1462
|
-
});
|
|
1462
|
+
addWeekParseToken(
|
|
1463
|
+
['w', 'ww', 'W', 'WW'],
|
|
1464
|
+
function (input, week, config, token) {
|
|
1465
|
+
week[token.substr(0, 1)] = toInt(input);
|
|
1466
|
+
}
|
|
1467
|
+
);
|
|
1463
1468
|
|
|
1464
1469
|
// HELPERS
|
|
1465
1470
|
|
|
@@ -1584,9 +1589,8 @@ var moment = {exports: {}};
|
|
|
1584
1589
|
return ws.slice(n, 7).concat(ws.slice(0, n));
|
|
1585
1590
|
}
|
|
1586
1591
|
|
|
1587
|
-
var defaultLocaleWeekdays =
|
|
1588
|
-
'_'
|
|
1589
|
-
),
|
|
1592
|
+
var defaultLocaleWeekdays =
|
|
1593
|
+
'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
|
|
1590
1594
|
defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
|
1591
1595
|
defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
|
1592
1596
|
defaultWeekdaysRegex = matchWord,
|
|
@@ -2134,6 +2138,11 @@ var moment = {exports: {}};
|
|
|
2134
2138
|
return globalLocale;
|
|
2135
2139
|
}
|
|
2136
2140
|
|
|
2141
|
+
function isLocaleNameSane(name) {
|
|
2142
|
+
// Prevent names that look like filesystem paths, i.e contain '/' or '\'
|
|
2143
|
+
return name.match('^[^/\\\\]*$') != null;
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2137
2146
|
function loadLocale(name) {
|
|
2138
2147
|
var oldLocale = null,
|
|
2139
2148
|
aliasedRequire;
|
|
@@ -2142,7 +2151,8 @@ var moment = {exports: {}};
|
|
|
2142
2151
|
locales[name] === undefined &&
|
|
2143
2152
|
'object' !== 'undefined' &&
|
|
2144
2153
|
module &&
|
|
2145
|
-
module.exports
|
|
2154
|
+
module.exports &&
|
|
2155
|
+
isLocaleNameSane(name)
|
|
2146
2156
|
) {
|
|
2147
2157
|
try {
|
|
2148
2158
|
oldLocale = globalLocale._abbr;
|
|
@@ -2359,8 +2369,10 @@ var moment = {exports: {}};
|
|
|
2359
2369
|
|
|
2360
2370
|
// iso 8601 regex
|
|
2361
2371
|
// 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)
|
|
2362
|
-
var extendedIsoRegex =
|
|
2363
|
-
|
|
2372
|
+
var extendedIsoRegex =
|
|
2373
|
+
/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
|
2374
|
+
basicIsoRegex =
|
|
2375
|
+
/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
|
2364
2376
|
tzRegex = /Z|[+-]\d\d(?::?\d\d)?/,
|
|
2365
2377
|
isoDates = [
|
|
2366
2378
|
['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/],
|
|
@@ -2391,7 +2403,8 @@ var moment = {exports: {}};
|
|
|
2391
2403
|
],
|
|
2392
2404
|
aspNetJsonRegex = /^\/?Date\((-?\d+)/i,
|
|
2393
2405
|
// RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3
|
|
2394
|
-
rfc2822 =
|
|
2406
|
+
rfc2822 =
|
|
2407
|
+
/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,
|
|
2395
2408
|
obsOffsets = {
|
|
2396
2409
|
UT: 0,
|
|
2397
2410
|
GMT: 0,
|
|
@@ -2414,12 +2427,13 @@ var moment = {exports: {}};
|
|
|
2414
2427
|
allowTime,
|
|
2415
2428
|
dateFormat,
|
|
2416
2429
|
timeFormat,
|
|
2417
|
-
tzFormat
|
|
2430
|
+
tzFormat,
|
|
2431
|
+
isoDatesLen = isoDates.length,
|
|
2432
|
+
isoTimesLen = isoTimes.length;
|
|
2418
2433
|
|
|
2419
2434
|
if (match) {
|
|
2420
2435
|
getParsingFlags(config).iso = true;
|
|
2421
|
-
|
|
2422
|
-
for (i = 0, l = isoDates.length; i < l; i++) {
|
|
2436
|
+
for (i = 0, l = isoDatesLen; i < l; i++) {
|
|
2423
2437
|
if (isoDates[i][1].exec(match[1])) {
|
|
2424
2438
|
dateFormat = isoDates[i][0];
|
|
2425
2439
|
allowTime = isoDates[i][2] !== false;
|
|
@@ -2431,7 +2445,7 @@ var moment = {exports: {}};
|
|
|
2431
2445
|
return;
|
|
2432
2446
|
}
|
|
2433
2447
|
if (match[3]) {
|
|
2434
|
-
for (i = 0, l =
|
|
2448
|
+
for (i = 0, l = isoTimesLen; i < l; i++) {
|
|
2435
2449
|
if (isoTimes[i][1].exec(match[3])) {
|
|
2436
2450
|
// match[2] should be 'T' or space
|
|
2437
2451
|
timeFormat = (match[2] || ' ') + isoTimes[i][0];
|
|
@@ -2498,7 +2512,7 @@ var moment = {exports: {}};
|
|
|
2498
2512
|
function preprocessRFC2822(s) {
|
|
2499
2513
|
// Remove comments and folding whitespace and replace multiple-spaces with a single space
|
|
2500
2514
|
return s
|
|
2501
|
-
.replace(/\([^)]*\)|[\n\t]/g, ' ')
|
|
2515
|
+
.replace(/\([^()]*\)|[\n\t]/g, ' ')
|
|
2502
2516
|
.replace(/(\s\s+)/g, ' ')
|
|
2503
2517
|
.replace(/^\s\s*/, '')
|
|
2504
2518
|
.replace(/\s\s*$/, '');
|
|
@@ -2811,12 +2825,13 @@ var moment = {exports: {}};
|
|
|
2811
2825
|
skipped,
|
|
2812
2826
|
stringLength = string.length,
|
|
2813
2827
|
totalParsedInputLength = 0,
|
|
2814
|
-
era
|
|
2828
|
+
era,
|
|
2829
|
+
tokenLen;
|
|
2815
2830
|
|
|
2816
2831
|
tokens =
|
|
2817
2832
|
expandFormat(config._f, config._locale).match(formattingTokens) || [];
|
|
2818
|
-
|
|
2819
|
-
for (i = 0; i <
|
|
2833
|
+
tokenLen = tokens.length;
|
|
2834
|
+
for (i = 0; i < tokenLen; i++) {
|
|
2820
2835
|
token = tokens[i];
|
|
2821
2836
|
parsedInput = (string.match(getParseRegexForToken(token, config)) ||
|
|
2822
2837
|
[])[0];
|
|
@@ -2911,15 +2926,16 @@ var moment = {exports: {}};
|
|
|
2911
2926
|
i,
|
|
2912
2927
|
currentScore,
|
|
2913
2928
|
validFormatFound,
|
|
2914
|
-
bestFormatIsValid = false
|
|
2929
|
+
bestFormatIsValid = false,
|
|
2930
|
+
configfLen = config._f.length;
|
|
2915
2931
|
|
|
2916
|
-
if (
|
|
2932
|
+
if (configfLen === 0) {
|
|
2917
2933
|
getParsingFlags(config).invalidFormat = true;
|
|
2918
2934
|
config._d = new Date(NaN);
|
|
2919
2935
|
return;
|
|
2920
2936
|
}
|
|
2921
2937
|
|
|
2922
|
-
for (i = 0; i <
|
|
2938
|
+
for (i = 0; i < configfLen; i++) {
|
|
2923
2939
|
currentScore = 0;
|
|
2924
2940
|
validFormatFound = false;
|
|
2925
2941
|
tempConfig = copyConfig({}, config);
|
|
@@ -3160,7 +3176,8 @@ var moment = {exports: {}};
|
|
|
3160
3176
|
function isDurationValid(m) {
|
|
3161
3177
|
var key,
|
|
3162
3178
|
unitHasDecimal = false,
|
|
3163
|
-
i
|
|
3179
|
+
i,
|
|
3180
|
+
orderLen = ordering.length;
|
|
3164
3181
|
for (key in m) {
|
|
3165
3182
|
if (
|
|
3166
3183
|
hasOwnProp(m, key) &&
|
|
@@ -3173,7 +3190,7 @@ var moment = {exports: {}};
|
|
|
3173
3190
|
}
|
|
3174
3191
|
}
|
|
3175
3192
|
|
|
3176
|
-
for (i = 0; i <
|
|
3193
|
+
for (i = 0; i < orderLen; ++i) {
|
|
3177
3194
|
if (m[ordering[i]]) {
|
|
3178
3195
|
if (unitHasDecimal) {
|
|
3179
3196
|
return false; // only allow non-integers for smallest unit
|
|
@@ -3498,7 +3515,8 @@ var moment = {exports: {}};
|
|
|
3498
3515
|
// from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html
|
|
3499
3516
|
// somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere
|
|
3500
3517
|
// and further modified to allow for strings containing both week and day
|
|
3501
|
-
isoRegex =
|
|
3518
|
+
isoRegex =
|
|
3519
|
+
/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
|
|
3502
3520
|
|
|
3503
3521
|
function createDuration(input, key) {
|
|
3504
3522
|
var duration = input,
|
|
@@ -3719,9 +3737,10 @@ var moment = {exports: {}};
|
|
|
3719
3737
|
'ms',
|
|
3720
3738
|
],
|
|
3721
3739
|
i,
|
|
3722
|
-
property
|
|
3740
|
+
property,
|
|
3741
|
+
propertyLen = properties.length;
|
|
3723
3742
|
|
|
3724
|
-
for (i = 0; i <
|
|
3743
|
+
for (i = 0; i < propertyLen; i += 1) {
|
|
3725
3744
|
property = properties[i];
|
|
3726
3745
|
propertyTest = propertyTest || hasOwnProp(input, property);
|
|
3727
3746
|
}
|
|
@@ -4344,19 +4363,17 @@ var moment = {exports: {}};
|
|
|
4344
4363
|
addRegexToken('NNNN', matchEraName);
|
|
4345
4364
|
addRegexToken('NNNNN', matchEraNarrow);
|
|
4346
4365
|
|
|
4347
|
-
addParseToken(
|
|
4348
|
-
|
|
4349
|
-
array,
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
} else {
|
|
4357
|
-
getParsingFlags(config).invalidEra = input;
|
|
4366
|
+
addParseToken(
|
|
4367
|
+
['N', 'NN', 'NNN', 'NNNN', 'NNNNN'],
|
|
4368
|
+
function (input, array, config, token) {
|
|
4369
|
+
var era = config._locale.erasParse(input, token, config._strict);
|
|
4370
|
+
if (era) {
|
|
4371
|
+
getParsingFlags(config).era = era;
|
|
4372
|
+
} else {
|
|
4373
|
+
getParsingFlags(config).invalidEra = input;
|
|
4374
|
+
}
|
|
4358
4375
|
}
|
|
4359
|
-
|
|
4376
|
+
);
|
|
4360
4377
|
|
|
4361
4378
|
addRegexToken('y', matchUnsigned);
|
|
4362
4379
|
addRegexToken('yy', matchUnsigned);
|
|
@@ -4648,14 +4665,12 @@ var moment = {exports: {}};
|
|
|
4648
4665
|
addRegexToken('GGGGG', match1to6, match6);
|
|
4649
4666
|
addRegexToken('ggggg', match1to6, match6);
|
|
4650
4667
|
|
|
4651
|
-
addWeekParseToken(
|
|
4652
|
-
|
|
4653
|
-
week,
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
)
|
|
4657
|
-
week[token.substr(0, 2)] = toInt(input);
|
|
4658
|
-
});
|
|
4668
|
+
addWeekParseToken(
|
|
4669
|
+
['gggg', 'ggggg', 'GGGG', 'GGGGG'],
|
|
4670
|
+
function (input, week, config, token) {
|
|
4671
|
+
week[token.substr(0, 2)] = toInt(input);
|
|
4672
|
+
}
|
|
4673
|
+
);
|
|
4659
4674
|
|
|
4660
4675
|
addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {
|
|
4661
4676
|
week[token] = hooks.parseTwoDigitYear(input);
|
|
@@ -5678,7 +5693,7 @@ var moment = {exports: {}};
|
|
|
5678
5693
|
|
|
5679
5694
|
//! moment.js
|
|
5680
5695
|
|
|
5681
|
-
hooks.version = '2.29.
|
|
5696
|
+
hooks.version = '2.29.4';
|
|
5682
5697
|
|
|
5683
5698
|
setHookCallback(createLocal);
|
|
5684
5699
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengeoweb/form-fields",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "GeoWeb form-fields library for the opengeoweb project",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"@mui/material": "5.12.0",
|
|
17
17
|
"@mui/x-date-pickers": "6.2.1",
|
|
18
|
-
"@opengeoweb/theme": "
|
|
18
|
+
"@opengeoweb/theme": "5.0.0",
|
|
19
19
|
"lodash": "4.17.21",
|
|
20
|
-
"moment": "2.29.
|
|
21
|
-
"moment-timezone": "0.5.
|
|
20
|
+
"moment": "2.29.4",
|
|
21
|
+
"moment-timezone": "0.5.43",
|
|
22
22
|
"react": "18.2.0",
|
|
23
23
|
"react-hook-form": "7.41.5"
|
|
24
24
|
}
|