@abgov/jsonforms-components 1.45.1 → 1.47.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.esm.js +456 -274
- package/package.json +3 -2
- package/src/lib/Additional/HelpContent.d.ts +5 -0
- package/src/lib/Additional/styled-components.d.ts +1 -0
- package/src/lib/Controls/FormStepper/FormStepperReviewControl.d.ts +2 -0
- package/src/lib/Controls/FormStepper/RenderStepElements.d.ts +1 -0
package/index.esm.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as runtime from 'react/jsx-runtime';
|
|
1
2
|
import { jsx, Fragment, jsxs } from 'react/jsx-runtime';
|
|
2
3
|
import React, { createContext, useContext, useReducer, useMemo, useEffect, useState, useRef, useCallback } from 'react';
|
|
3
4
|
import { GoAFormItem, GoAInput, GoATextArea, GoACallout, GoAInputDate, GoAInputDateTime, GoAInputTime, GoARadioGroup, GoARadioItem, GoACheckbox, GoAGrid, GoAFormStepper, GoAFormStep, GoAPages, GoAButton, GoAModal, GoAButtonGroup, GoAIconButton, GoAFileUploadInput, GoACircularProgress, GoAContainer, GoATable, GoADropdown, GoADropdownItem, GoADetails, GoASpinner } from '@abgov/react-components';
|
|
@@ -6,10 +7,11 @@ import axios from 'axios';
|
|
|
6
7
|
import get$1 from 'lodash/get';
|
|
7
8
|
import { rankWith, isStringControl, and, optionIs, uiTypeIs, isDateControl, isNumberControl, isIntegerControl, isDateTimeControl, isTimeControl, isEnumControl, isBooleanControl, getAjv, isVisible, isEnabled, deriveLabelForUISchemaElement, schemaTypeIs, formatIs, createDefaultValue, Paths, or, isObjectArrayControl, isPrimitiveArrayControl, isControl, isScoped, hasType, isCategorization, isLayout } from '@jsonforms/core';
|
|
8
9
|
import { withJsonFormsControlProps, withJsonFormsRendererProps, withJsonFormsEnumProps, withTranslateProps, useJsonForms, JsonFormsDispatch, withJsonFormsLayoutProps, withJsonFormsArrayLayoutProps, withJsonFormsCellProps } from '@jsonforms/react';
|
|
9
|
-
import { isEqual, isEmpty as isEmpty$2, isObject as isObject$
|
|
10
|
+
import { isEqual, isEmpty as isEmpty$2, isObject as isObject$f } from 'lodash';
|
|
10
11
|
import merge from 'lodash/merge';
|
|
11
12
|
import isEmpty$1 from 'lodash/isEmpty';
|
|
12
13
|
import range from 'lodash/range';
|
|
14
|
+
import { evaluateSync, compileSync } from '@mdx-js/mdx';
|
|
13
15
|
import Ajv from 'ajv';
|
|
14
16
|
import addErrors from 'ajv-errors';
|
|
15
17
|
import addFormats from 'ajv-formats';
|
|
@@ -152,12 +154,12 @@ var $Object$3 = Object;
|
|
|
152
154
|
|
|
153
155
|
// `ToObject` abstract operation
|
|
154
156
|
// https://tc39.es/ecma262/#sec-toobject
|
|
155
|
-
var toObject$
|
|
157
|
+
var toObject$8 = function (argument) {
|
|
156
158
|
return $Object$3(requireObjectCoercible$9(argument));
|
|
157
159
|
};
|
|
158
160
|
|
|
159
161
|
var uncurryThis$q = functionUncurryThis;
|
|
160
|
-
var toObject$
|
|
162
|
+
var toObject$7 = toObject$8;
|
|
161
163
|
|
|
162
164
|
var hasOwnProperty = uncurryThis$q({}.hasOwnProperty);
|
|
163
165
|
|
|
@@ -165,7 +167,7 @@ var hasOwnProperty = uncurryThis$q({}.hasOwnProperty);
|
|
|
165
167
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
166
168
|
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
167
169
|
var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
168
|
-
return hasOwnProperty(toObject$
|
|
170
|
+
return hasOwnProperty(toObject$7(it), key);
|
|
169
171
|
};
|
|
170
172
|
|
|
171
173
|
var uncurryThis$p = functionUncurryThis;
|
|
@@ -245,7 +247,7 @@ var Symbol$1 = global$k.Symbol;
|
|
|
245
247
|
var WellKnownSymbolsStore = shared$3('wks');
|
|
246
248
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID$1 ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
|
|
247
249
|
|
|
248
|
-
var wellKnownSymbol$
|
|
250
|
+
var wellKnownSymbol$k = function (name) {
|
|
249
251
|
if (!hasOwn$d(WellKnownSymbolsStore, name)) {
|
|
250
252
|
WellKnownSymbolsStore[name] = NATIVE_SYMBOL$2 && hasOwn$d(Symbol$1, name)
|
|
251
253
|
? Symbol$1[name]
|
|
@@ -267,18 +269,18 @@ var isCallable$q = typeof documentAll == 'undefined' && documentAll !== undefine
|
|
|
267
269
|
|
|
268
270
|
var isCallable$p = isCallable$q;
|
|
269
271
|
|
|
270
|
-
var isObject$
|
|
272
|
+
var isObject$e = function (it) {
|
|
271
273
|
return typeof it == 'object' ? it !== null : isCallable$p(it);
|
|
272
274
|
};
|
|
273
275
|
|
|
274
|
-
var isObject$
|
|
276
|
+
var isObject$d = isObject$e;
|
|
275
277
|
|
|
276
278
|
var $String$5 = String;
|
|
277
279
|
var $TypeError$h = TypeError;
|
|
278
280
|
|
|
279
281
|
// `Assert: Type(argument) is Object`
|
|
280
282
|
var anObject$f = function (argument) {
|
|
281
|
-
if (isObject$
|
|
283
|
+
if (isObject$d(argument)) return argument;
|
|
282
284
|
throw new $TypeError$h($String$5(argument) + ' is not an object');
|
|
283
285
|
};
|
|
284
286
|
|
|
@@ -308,11 +310,11 @@ var v8PrototypeDefineBug = DESCRIPTORS$h && fails$m(function () {
|
|
|
308
310
|
var objectDefineProperty = {};
|
|
309
311
|
|
|
310
312
|
var global$j = global$o;
|
|
311
|
-
var isObject$
|
|
313
|
+
var isObject$c = isObject$e;
|
|
312
314
|
|
|
313
315
|
var document$3 = global$j.document;
|
|
314
316
|
// typeof document.createElement is 'object' in old IE
|
|
315
|
-
var EXISTS$1 = isObject$
|
|
317
|
+
var EXISTS$1 = isObject$c(document$3) && isObject$c(document$3.createElement);
|
|
316
318
|
|
|
317
319
|
var documentCreateElement$2 = function (it) {
|
|
318
320
|
return EXISTS$1 ? document$3.createElement(it) : {};
|
|
@@ -400,7 +402,7 @@ var getMethod$5 = function (V, P) {
|
|
|
400
402
|
|
|
401
403
|
var call$j = functionCall;
|
|
402
404
|
var isCallable$l = isCallable$q;
|
|
403
|
-
var isObject$
|
|
405
|
+
var isObject$b = isObject$e;
|
|
404
406
|
|
|
405
407
|
var $TypeError$f = TypeError;
|
|
406
408
|
|
|
@@ -408,32 +410,32 @@ var $TypeError$f = TypeError;
|
|
|
408
410
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
409
411
|
var ordinaryToPrimitive$1 = function (input, pref) {
|
|
410
412
|
var fn, val;
|
|
411
|
-
if (pref === 'string' && isCallable$l(fn = input.toString) && !isObject$
|
|
412
|
-
if (isCallable$l(fn = input.valueOf) && !isObject$
|
|
413
|
-
if (pref !== 'string' && isCallable$l(fn = input.toString) && !isObject$
|
|
413
|
+
if (pref === 'string' && isCallable$l(fn = input.toString) && !isObject$b(val = call$j(fn, input))) return val;
|
|
414
|
+
if (isCallable$l(fn = input.valueOf) && !isObject$b(val = call$j(fn, input))) return val;
|
|
415
|
+
if (pref !== 'string' && isCallable$l(fn = input.toString) && !isObject$b(val = call$j(fn, input))) return val;
|
|
414
416
|
throw new $TypeError$f("Can't convert object to primitive value");
|
|
415
417
|
};
|
|
416
418
|
|
|
417
419
|
var call$i = functionCall;
|
|
418
|
-
var isObject$
|
|
420
|
+
var isObject$a = isObject$e;
|
|
419
421
|
var isSymbol$2 = isSymbol$3;
|
|
420
422
|
var getMethod$4 = getMethod$5;
|
|
421
423
|
var ordinaryToPrimitive = ordinaryToPrimitive$1;
|
|
422
|
-
var wellKnownSymbol$
|
|
424
|
+
var wellKnownSymbol$j = wellKnownSymbol$k;
|
|
423
425
|
|
|
424
426
|
var $TypeError$e = TypeError;
|
|
425
|
-
var TO_PRIMITIVE = wellKnownSymbol$
|
|
427
|
+
var TO_PRIMITIVE = wellKnownSymbol$j('toPrimitive');
|
|
426
428
|
|
|
427
429
|
// `ToPrimitive` abstract operation
|
|
428
430
|
// https://tc39.es/ecma262/#sec-toprimitive
|
|
429
431
|
var toPrimitive$1 = function (input, pref) {
|
|
430
|
-
if (!isObject$
|
|
432
|
+
if (!isObject$a(input) || isSymbol$2(input)) return input;
|
|
431
433
|
var exoticToPrim = getMethod$4(input, TO_PRIMITIVE);
|
|
432
434
|
var result;
|
|
433
435
|
if (exoticToPrim) {
|
|
434
436
|
if (pref === undefined) pref = 'default';
|
|
435
437
|
result = call$i(exoticToPrim, input, pref);
|
|
436
|
-
if (!isObject$
|
|
438
|
+
if (!isObject$a(result) || isSymbol$2(result)) return result;
|
|
437
439
|
throw new $TypeError$e("Can't convert object to primitive value");
|
|
438
440
|
}
|
|
439
441
|
if (pref === undefined) pref = 'number';
|
|
@@ -509,13 +511,13 @@ var trunc = mathTrunc;
|
|
|
509
511
|
|
|
510
512
|
// `ToIntegerOrInfinity` abstract operation
|
|
511
513
|
// https://tc39.es/ecma262/#sec-tointegerorinfinity
|
|
512
|
-
var toIntegerOrInfinity$
|
|
514
|
+
var toIntegerOrInfinity$7 = function (argument) {
|
|
513
515
|
var number = +argument;
|
|
514
516
|
// eslint-disable-next-line no-self-compare -- NaN check
|
|
515
517
|
return number !== number || number === 0 ? 0 : trunc(number);
|
|
516
518
|
};
|
|
517
519
|
|
|
518
|
-
var toIntegerOrInfinity$
|
|
520
|
+
var toIntegerOrInfinity$6 = toIntegerOrInfinity$7;
|
|
519
521
|
|
|
520
522
|
var max$1 = Math.max;
|
|
521
523
|
var min$4 = Math.min;
|
|
@@ -524,18 +526,18 @@ var min$4 = Math.min;
|
|
|
524
526
|
// Let integer be ? ToInteger(index).
|
|
525
527
|
// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
|
|
526
528
|
var toAbsoluteIndex$1 = function (index, length) {
|
|
527
|
-
var integer = toIntegerOrInfinity$
|
|
529
|
+
var integer = toIntegerOrInfinity$6(index);
|
|
528
530
|
return integer < 0 ? max$1(integer + length, 0) : min$4(integer, length);
|
|
529
531
|
};
|
|
530
532
|
|
|
531
|
-
var toIntegerOrInfinity$
|
|
533
|
+
var toIntegerOrInfinity$5 = toIntegerOrInfinity$7;
|
|
532
534
|
|
|
533
535
|
var min$3 = Math.min;
|
|
534
536
|
|
|
535
537
|
// `ToLength` abstract operation
|
|
536
538
|
// https://tc39.es/ecma262/#sec-tolength
|
|
537
539
|
var toLength$5 = function (argument) {
|
|
538
|
-
var len = toIntegerOrInfinity$
|
|
540
|
+
var len = toIntegerOrInfinity$5(argument);
|
|
539
541
|
return len > 0 ? min$3(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
|
|
540
542
|
};
|
|
541
543
|
|
|
@@ -543,19 +545,19 @@ var toLength$4 = toLength$5;
|
|
|
543
545
|
|
|
544
546
|
// `LengthOfArrayLike` abstract operation
|
|
545
547
|
// https://tc39.es/ecma262/#sec-lengthofarraylike
|
|
546
|
-
var lengthOfArrayLike$
|
|
548
|
+
var lengthOfArrayLike$7 = function (obj) {
|
|
547
549
|
return toLength$4(obj.length);
|
|
548
550
|
};
|
|
549
551
|
|
|
550
552
|
var toIndexedObject$4 = toIndexedObject$5;
|
|
551
553
|
var toAbsoluteIndex = toAbsoluteIndex$1;
|
|
552
|
-
var lengthOfArrayLike$
|
|
554
|
+
var lengthOfArrayLike$6 = lengthOfArrayLike$7;
|
|
553
555
|
|
|
554
556
|
// `Array.prototype.{ indexOf, includes }` methods implementation
|
|
555
557
|
var createMethod$3 = function (IS_INCLUDES) {
|
|
556
558
|
return function ($this, el, fromIndex) {
|
|
557
559
|
var O = toIndexedObject$4($this);
|
|
558
|
-
var length = lengthOfArrayLike$
|
|
560
|
+
var length = lengthOfArrayLike$6(O);
|
|
559
561
|
if (length === 0) return !IS_INCLUDES && -1;
|
|
560
562
|
var index = toAbsoluteIndex(fromIndex, length);
|
|
561
563
|
var value;
|
|
@@ -743,11 +745,11 @@ var objectCreate = Object.create || function create(O, Properties) {
|
|
|
743
745
|
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
|
744
746
|
};
|
|
745
747
|
|
|
746
|
-
var wellKnownSymbol$
|
|
748
|
+
var wellKnownSymbol$i = wellKnownSymbol$k;
|
|
747
749
|
var create$3 = objectCreate;
|
|
748
750
|
var defineProperty$6 = objectDefineProperty.f;
|
|
749
751
|
|
|
750
|
-
var UNSCOPABLES = wellKnownSymbol$
|
|
752
|
+
var UNSCOPABLES = wellKnownSymbol$i('unscopables');
|
|
751
753
|
var ArrayPrototype$1 = Array.prototype;
|
|
752
754
|
|
|
753
755
|
// Array.prototype[@@unscopables]
|
|
@@ -760,7 +762,7 @@ if (ArrayPrototype$1[UNSCOPABLES] === undefined) {
|
|
|
760
762
|
}
|
|
761
763
|
|
|
762
764
|
// add a key to Array.prototype[@@unscopables]
|
|
763
|
-
var addToUnscopables$
|
|
765
|
+
var addToUnscopables$4 = function (key) {
|
|
764
766
|
ArrayPrototype$1[UNSCOPABLES][key] = true;
|
|
765
767
|
};
|
|
766
768
|
|
|
@@ -795,7 +797,7 @@ var createNonEnumerableProperty$9 = DESCRIPTORS$d ? function (object, key, value
|
|
|
795
797
|
|
|
796
798
|
var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
|
797
799
|
var global$g = global$o;
|
|
798
|
-
var isObject$
|
|
800
|
+
var isObject$9 = isObject$e;
|
|
799
801
|
var createNonEnumerableProperty$8 = createNonEnumerableProperty$9;
|
|
800
802
|
var hasOwn$b = hasOwnProperty_1;
|
|
801
803
|
var shared$1 = sharedStore.exports;
|
|
@@ -814,7 +816,7 @@ var enforce = function (it) {
|
|
|
814
816
|
var getterFor = function (TYPE) {
|
|
815
817
|
return function (it) {
|
|
816
818
|
var state;
|
|
817
|
-
if (!isObject$
|
|
819
|
+
if (!isObject$9(it) || (state = get(it)).type !== TYPE) {
|
|
818
820
|
throw new TypeError$2('Incompatible receiver, ' + TYPE + ' required');
|
|
819
821
|
} return state;
|
|
820
822
|
};
|
|
@@ -1163,7 +1165,7 @@ var correctPrototypeGetter = !fails$i(function () {
|
|
|
1163
1165
|
|
|
1164
1166
|
var hasOwn$6 = hasOwnProperty_1;
|
|
1165
1167
|
var isCallable$f = isCallable$q;
|
|
1166
|
-
var toObject$
|
|
1168
|
+
var toObject$6 = toObject$8;
|
|
1167
1169
|
var sharedKey = sharedKey$3;
|
|
1168
1170
|
var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
|
|
1169
1171
|
|
|
@@ -1175,7 +1177,7 @@ var ObjectPrototype = $Object$1.prototype;
|
|
|
1175
1177
|
// https://tc39.es/ecma262/#sec-object.getprototypeof
|
|
1176
1178
|
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
1177
1179
|
var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf : function (O) {
|
|
1178
|
-
var object = toObject$
|
|
1180
|
+
var object = toObject$6(O);
|
|
1179
1181
|
if (hasOwn$6(object, IE_PROTO)) return object[IE_PROTO];
|
|
1180
1182
|
var constructor = object.constructor;
|
|
1181
1183
|
if (isCallable$f(constructor) && object instanceof constructor) {
|
|
@@ -1185,12 +1187,12 @@ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf :
|
|
|
1185
1187
|
|
|
1186
1188
|
var fails$h = fails$r;
|
|
1187
1189
|
var isCallable$e = isCallable$q;
|
|
1188
|
-
var isObject$
|
|
1190
|
+
var isObject$8 = isObject$e;
|
|
1189
1191
|
var getPrototypeOf$1 = objectGetPrototypeOf;
|
|
1190
1192
|
var defineBuiltIn$6 = defineBuiltIn$8;
|
|
1191
|
-
var wellKnownSymbol$
|
|
1193
|
+
var wellKnownSymbol$h = wellKnownSymbol$k;
|
|
1192
1194
|
|
|
1193
|
-
var ITERATOR$5 = wellKnownSymbol$
|
|
1195
|
+
var ITERATOR$5 = wellKnownSymbol$h('iterator');
|
|
1194
1196
|
var BUGGY_SAFARI_ITERATORS$1 = false;
|
|
1195
1197
|
|
|
1196
1198
|
// `%IteratorPrototype%` object
|
|
@@ -1208,7 +1210,7 @@ if ([].keys) {
|
|
|
1208
1210
|
}
|
|
1209
1211
|
}
|
|
1210
1212
|
|
|
1211
|
-
var NEW_ITERATOR_PROTOTYPE = !isObject$
|
|
1213
|
+
var NEW_ITERATOR_PROTOTYPE = !isObject$8(IteratorPrototype$2) || fails$h(function () {
|
|
1212
1214
|
var test = {};
|
|
1213
1215
|
// FF44- legacy iterators case
|
|
1214
1216
|
return IteratorPrototype$2[ITERATOR$5].call(test) !== test;
|
|
@@ -1231,9 +1233,9 @@ var iteratorsCore = {
|
|
|
1231
1233
|
|
|
1232
1234
|
var defineProperty$4 = objectDefineProperty.f;
|
|
1233
1235
|
var hasOwn$5 = hasOwnProperty_1;
|
|
1234
|
-
var wellKnownSymbol$
|
|
1236
|
+
var wellKnownSymbol$g = wellKnownSymbol$k;
|
|
1235
1237
|
|
|
1236
|
-
var TO_STRING_TAG$2 = wellKnownSymbol$
|
|
1238
|
+
var TO_STRING_TAG$2 = wellKnownSymbol$g('toStringTag');
|
|
1237
1239
|
|
|
1238
1240
|
var setToStringTag$4 = function (target, TAG, STATIC) {
|
|
1239
1241
|
if (target && !STATIC) target = target.prototype;
|
|
@@ -1268,10 +1270,10 @@ var functionUncurryThisAccessor = function (object, key, method) {
|
|
|
1268
1270
|
} catch (error) { /* empty */ }
|
|
1269
1271
|
};
|
|
1270
1272
|
|
|
1271
|
-
var isObject$
|
|
1273
|
+
var isObject$7 = isObject$e;
|
|
1272
1274
|
|
|
1273
1275
|
var isPossiblePrototype$1 = function (argument) {
|
|
1274
|
-
return isObject$
|
|
1276
|
+
return isObject$7(argument) || argument === null;
|
|
1275
1277
|
};
|
|
1276
1278
|
|
|
1277
1279
|
var isPossiblePrototype = isPossiblePrototype$1;
|
|
@@ -1286,7 +1288,7 @@ var aPossiblePrototype$1 = function (argument) {
|
|
|
1286
1288
|
|
|
1287
1289
|
/* eslint-disable no-proto -- safe */
|
|
1288
1290
|
var uncurryThisAccessor = functionUncurryThisAccessor;
|
|
1289
|
-
var isObject$
|
|
1291
|
+
var isObject$6 = isObject$e;
|
|
1290
1292
|
var requireObjectCoercible$8 = requireObjectCoercible$b;
|
|
1291
1293
|
var aPossiblePrototype = aPossiblePrototype$1;
|
|
1292
1294
|
|
|
@@ -1306,14 +1308,14 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
|
|
|
1306
1308
|
return function setPrototypeOf(O, proto) {
|
|
1307
1309
|
requireObjectCoercible$8(O);
|
|
1308
1310
|
aPossiblePrototype(proto);
|
|
1309
|
-
if (!isObject$
|
|
1311
|
+
if (!isObject$6(O)) return O;
|
|
1310
1312
|
if (CORRECT_SETTER) setter(O, proto);
|
|
1311
1313
|
else O.__proto__ = proto;
|
|
1312
1314
|
return O;
|
|
1313
1315
|
};
|
|
1314
1316
|
}() : undefined);
|
|
1315
1317
|
|
|
1316
|
-
var $$
|
|
1318
|
+
var $$n = _export;
|
|
1317
1319
|
var call$g = functionCall;
|
|
1318
1320
|
var FunctionName = functionName;
|
|
1319
1321
|
var isCallable$d = isCallable$q;
|
|
@@ -1323,7 +1325,7 @@ var setPrototypeOf$3 = objectSetPrototypeOf;
|
|
|
1323
1325
|
var setToStringTag$2 = setToStringTag$4;
|
|
1324
1326
|
var createNonEnumerableProperty$6 = createNonEnumerableProperty$9;
|
|
1325
1327
|
var defineBuiltIn$5 = defineBuiltIn$8;
|
|
1326
|
-
var wellKnownSymbol$
|
|
1328
|
+
var wellKnownSymbol$f = wellKnownSymbol$k;
|
|
1327
1329
|
var Iterators$3 = iterators;
|
|
1328
1330
|
var IteratorsCore = iteratorsCore;
|
|
1329
1331
|
|
|
@@ -1331,7 +1333,7 @@ var PROPER_FUNCTION_NAME$2 = FunctionName.PROPER;
|
|
|
1331
1333
|
var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
|
|
1332
1334
|
var IteratorPrototype = IteratorsCore.IteratorPrototype;
|
|
1333
1335
|
var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
|
|
1334
|
-
var ITERATOR$4 = wellKnownSymbol$
|
|
1336
|
+
var ITERATOR$4 = wellKnownSymbol$f('iterator');
|
|
1335
1337
|
var KEYS = 'keys';
|
|
1336
1338
|
var VALUES = 'values';
|
|
1337
1339
|
var ENTRIES = 'entries';
|
|
@@ -1401,7 +1403,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
|
|
|
1401
1403
|
if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
|
|
1402
1404
|
defineBuiltIn$5(IterablePrototype, KEY, methods[KEY]);
|
|
1403
1405
|
}
|
|
1404
|
-
} else $$
|
|
1406
|
+
} else $$n({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
|
|
1405
1407
|
}
|
|
1406
1408
|
|
|
1407
1409
|
// define iterator
|
|
@@ -1420,7 +1422,7 @@ var createIterResultObject$1 = function (value, done) {
|
|
|
1420
1422
|
};
|
|
1421
1423
|
|
|
1422
1424
|
var toIndexedObject = toIndexedObject$5;
|
|
1423
|
-
var addToUnscopables$
|
|
1425
|
+
var addToUnscopables$3 = addToUnscopables$4;
|
|
1424
1426
|
var Iterators$2 = iterators;
|
|
1425
1427
|
var InternalStateModule$1 = internalState;
|
|
1426
1428
|
var defineProperty$3 = objectDefineProperty.f;
|
|
@@ -1471,9 +1473,9 @@ var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind)
|
|
|
1471
1473
|
var values = Iterators$2.Arguments = Iterators$2.Array;
|
|
1472
1474
|
|
|
1473
1475
|
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
1474
|
-
addToUnscopables$
|
|
1475
|
-
addToUnscopables$
|
|
1476
|
-
addToUnscopables$
|
|
1476
|
+
addToUnscopables$3('keys');
|
|
1477
|
+
addToUnscopables$3('values');
|
|
1478
|
+
addToUnscopables$3('entries');
|
|
1477
1479
|
|
|
1478
1480
|
// V8 ~ Chrome 45- bug
|
|
1479
1481
|
if (DESCRIPTORS$9 && values.name !== 'values') try {
|
|
@@ -1530,9 +1532,9 @@ var DOMTokenListPrototype = domTokenListPrototype;
|
|
|
1530
1532
|
var ArrayIteratorMethods = es_array_iterator;
|
|
1531
1533
|
var createNonEnumerableProperty$5 = createNonEnumerableProperty$9;
|
|
1532
1534
|
var setToStringTag$1 = setToStringTag$4;
|
|
1533
|
-
var wellKnownSymbol$
|
|
1535
|
+
var wellKnownSymbol$e = wellKnownSymbol$k;
|
|
1534
1536
|
|
|
1535
|
-
var ITERATOR$3 = wellKnownSymbol$
|
|
1537
|
+
var ITERATOR$3 = wellKnownSymbol$e('iterator');
|
|
1536
1538
|
var ArrayValues = ArrayIteratorMethods.values;
|
|
1537
1539
|
|
|
1538
1540
|
var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
|
|
@@ -1568,7 +1570,7 @@ var fails$g = fails$r;
|
|
|
1568
1570
|
var objectKeys = objectKeys$2;
|
|
1569
1571
|
var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
|
1570
1572
|
var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
|
1571
|
-
var toObject$
|
|
1573
|
+
var toObject$5 = toObject$8;
|
|
1572
1574
|
var IndexedObject$1 = indexedObject;
|
|
1573
1575
|
|
|
1574
1576
|
// eslint-disable-next-line es/no-object-assign -- safe
|
|
@@ -1600,7 +1602,7 @@ var objectAssign = !$assign || fails$g(function () {
|
|
|
1600
1602
|
alphabet.split('').forEach(function (chr) { B[chr] = chr; });
|
|
1601
1603
|
return $assign({}, A)[symbol] !== 7 || objectKeys($assign({}, B)).join('') !== alphabet;
|
|
1602
1604
|
}) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length`
|
|
1603
|
-
var T = toObject$
|
|
1605
|
+
var T = toObject$5(target);
|
|
1604
1606
|
var argumentsLength = arguments.length;
|
|
1605
1607
|
var index = 1;
|
|
1606
1608
|
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
@@ -1618,13 +1620,13 @@ var objectAssign = !$assign || fails$g(function () {
|
|
|
1618
1620
|
} return T;
|
|
1619
1621
|
} : $assign;
|
|
1620
1622
|
|
|
1621
|
-
var $$
|
|
1623
|
+
var $$m = _export;
|
|
1622
1624
|
var assign = objectAssign;
|
|
1623
1625
|
|
|
1624
1626
|
// `Object.assign` method
|
|
1625
1627
|
// https://tc39.es/ecma262/#sec-object.assign
|
|
1626
1628
|
// eslint-disable-next-line es/no-object-assign -- required for testing
|
|
1627
|
-
$$
|
|
1629
|
+
$$m({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
|
|
1628
1630
|
assign: assign
|
|
1629
1631
|
});
|
|
1630
1632
|
|
|
@@ -1650,7 +1652,7 @@ var proxyAccessor$2 = function (Target, Source, key) {
|
|
|
1650
1652
|
};
|
|
1651
1653
|
|
|
1652
1654
|
var isCallable$c = isCallable$q;
|
|
1653
|
-
var isObject$
|
|
1655
|
+
var isObject$5 = isObject$e;
|
|
1654
1656
|
var setPrototypeOf$2 = objectSetPrototypeOf;
|
|
1655
1657
|
|
|
1656
1658
|
// makes subclassing work correct for wrapped built-ins
|
|
@@ -1662,15 +1664,15 @@ var inheritIfRequired$2 = function ($this, dummy, Wrapper) {
|
|
|
1662
1664
|
// we haven't completely correct pre-ES6 way for getting `new.target`, so use this
|
|
1663
1665
|
isCallable$c(NewTarget = dummy.constructor) &&
|
|
1664
1666
|
NewTarget !== Wrapper &&
|
|
1665
|
-
isObject$
|
|
1667
|
+
isObject$5(NewTargetPrototype = NewTarget.prototype) &&
|
|
1666
1668
|
NewTargetPrototype !== Wrapper.prototype
|
|
1667
1669
|
) setPrototypeOf$2($this, NewTargetPrototype);
|
|
1668
1670
|
return $this;
|
|
1669
1671
|
};
|
|
1670
1672
|
|
|
1671
|
-
var wellKnownSymbol$
|
|
1673
|
+
var wellKnownSymbol$d = wellKnownSymbol$k;
|
|
1672
1674
|
|
|
1673
|
-
var TO_STRING_TAG$1 = wellKnownSymbol$
|
|
1675
|
+
var TO_STRING_TAG$1 = wellKnownSymbol$d('toStringTag');
|
|
1674
1676
|
var test = {};
|
|
1675
1677
|
|
|
1676
1678
|
test[TO_STRING_TAG$1] = 'z';
|
|
@@ -1680,9 +1682,9 @@ var toStringTagSupport = String(test) === '[object z]';
|
|
|
1680
1682
|
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1681
1683
|
var isCallable$b = isCallable$q;
|
|
1682
1684
|
var classofRaw$1 = classofRaw$2;
|
|
1683
|
-
var wellKnownSymbol$
|
|
1685
|
+
var wellKnownSymbol$c = wellKnownSymbol$k;
|
|
1684
1686
|
|
|
1685
|
-
var TO_STRING_TAG = wellKnownSymbol$
|
|
1687
|
+
var TO_STRING_TAG = wellKnownSymbol$c('toStringTag');
|
|
1686
1688
|
var $Object = Object;
|
|
1687
1689
|
|
|
1688
1690
|
// ES3 wrong here
|
|
@@ -1722,13 +1724,13 @@ var normalizeStringArgument$1 = function (argument, $default) {
|
|
|
1722
1724
|
return argument === undefined ? arguments.length < 2 ? '' : $default : toString$d(argument);
|
|
1723
1725
|
};
|
|
1724
1726
|
|
|
1725
|
-
var isObject$
|
|
1727
|
+
var isObject$4 = isObject$e;
|
|
1726
1728
|
var createNonEnumerableProperty$4 = createNonEnumerableProperty$9;
|
|
1727
1729
|
|
|
1728
1730
|
// `InstallErrorCause` abstract operation
|
|
1729
1731
|
// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
|
|
1730
1732
|
var installErrorCause$1 = function (O, options) {
|
|
1731
|
-
if (isObject$
|
|
1733
|
+
if (isObject$4(options) && 'cause' in options) {
|
|
1732
1734
|
createNonEnumerableProperty$4(O, 'cause', options.cause);
|
|
1733
1735
|
}
|
|
1734
1736
|
};
|
|
@@ -1839,7 +1841,7 @@ var wrapErrorConstructorWithCause$1 = function (FULL_NAME, wrapper, FORCED, IS_A
|
|
|
1839
1841
|
};
|
|
1840
1842
|
|
|
1841
1843
|
/* eslint-disable no-unused-vars -- required for functions `.length` */
|
|
1842
|
-
var $$
|
|
1844
|
+
var $$l = _export;
|
|
1843
1845
|
var global$d = global$o;
|
|
1844
1846
|
var apply$3 = functionApply;
|
|
1845
1847
|
var wrapErrorConstructorWithCause = wrapErrorConstructorWithCause$1;
|
|
@@ -1853,14 +1855,14 @@ var FORCED$3 = new Error('e', { cause: 7 }).cause !== 7;
|
|
|
1853
1855
|
var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
|
|
1854
1856
|
var O = {};
|
|
1855
1857
|
O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED$3);
|
|
1856
|
-
$$
|
|
1858
|
+
$$l({ global: true, constructor: true, arity: 1, forced: FORCED$3 }, O);
|
|
1857
1859
|
};
|
|
1858
1860
|
|
|
1859
1861
|
var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
|
|
1860
1862
|
if (WebAssembly && WebAssembly[ERROR_NAME]) {
|
|
1861
1863
|
var O = {};
|
|
1862
1864
|
O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED$3);
|
|
1863
|
-
$$
|
|
1865
|
+
$$l({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED$3 }, O);
|
|
1864
1866
|
}
|
|
1865
1867
|
};
|
|
1866
1868
|
|
|
@@ -1896,25 +1898,25 @@ exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
|
|
|
1896
1898
|
return function RuntimeError(message) { return apply$3(init, this, arguments); };
|
|
1897
1899
|
});
|
|
1898
1900
|
|
|
1899
|
-
var $$
|
|
1900
|
-
var toObject$
|
|
1901
|
-
var lengthOfArrayLike$
|
|
1902
|
-
var toIntegerOrInfinity$
|
|
1903
|
-
var addToUnscopables$
|
|
1901
|
+
var $$k = _export;
|
|
1902
|
+
var toObject$4 = toObject$8;
|
|
1903
|
+
var lengthOfArrayLike$5 = lengthOfArrayLike$7;
|
|
1904
|
+
var toIntegerOrInfinity$4 = toIntegerOrInfinity$7;
|
|
1905
|
+
var addToUnscopables$2 = addToUnscopables$4;
|
|
1904
1906
|
|
|
1905
1907
|
// `Array.prototype.at` method
|
|
1906
1908
|
// https://tc39.es/ecma262/#sec-array.prototype.at
|
|
1907
|
-
$$
|
|
1909
|
+
$$k({ target: 'Array', proto: true }, {
|
|
1908
1910
|
at: function at(index) {
|
|
1909
|
-
var O = toObject$
|
|
1910
|
-
var len = lengthOfArrayLike$
|
|
1911
|
-
var relativeIndex = toIntegerOrInfinity$
|
|
1911
|
+
var O = toObject$4(this);
|
|
1912
|
+
var len = lengthOfArrayLike$5(O);
|
|
1913
|
+
var relativeIndex = toIntegerOrInfinity$4(index);
|
|
1912
1914
|
var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
|
|
1913
1915
|
return (k < 0 || k >= len) ? undefined : O[k];
|
|
1914
1916
|
}
|
|
1915
1917
|
});
|
|
1916
1918
|
|
|
1917
|
-
addToUnscopables$
|
|
1919
|
+
addToUnscopables$2('at');
|
|
1918
1920
|
|
|
1919
1921
|
var anObject$a = anObject$f;
|
|
1920
1922
|
|
|
@@ -2105,18 +2107,18 @@ if (PATCH) {
|
|
|
2105
2107
|
|
|
2106
2108
|
var regexpExec$2 = patchedExec;
|
|
2107
2109
|
|
|
2108
|
-
var $$
|
|
2110
|
+
var $$j = _export;
|
|
2109
2111
|
var exec$3 = regexpExec$2;
|
|
2110
2112
|
|
|
2111
2113
|
// `RegExp.prototype.exec` method
|
|
2112
2114
|
// https://tc39.es/ecma262/#sec-regexp.prototype.exec
|
|
2113
|
-
$$
|
|
2115
|
+
$$j({ target: 'RegExp', proto: true, forced: /./.exec !== exec$3 }, {
|
|
2114
2116
|
exec: exec$3
|
|
2115
2117
|
});
|
|
2116
2118
|
|
|
2117
2119
|
// TODO: Remove from `core-js@4` since it's moved to entry points
|
|
2118
2120
|
|
|
2119
|
-
var $$
|
|
2121
|
+
var $$i = _export;
|
|
2120
2122
|
var call$c = functionCall;
|
|
2121
2123
|
var isCallable$a = isCallable$q;
|
|
2122
2124
|
var anObject$9 = anObject$f;
|
|
@@ -2136,7 +2138,7 @@ var nativeTest = /./.test;
|
|
|
2136
2138
|
|
|
2137
2139
|
// `RegExp.prototype.test` method
|
|
2138
2140
|
// https://tc39.es/ecma262/#sec-regexp.prototype.test
|
|
2139
|
-
$$
|
|
2141
|
+
$$i({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
|
|
2140
2142
|
test: function (S) {
|
|
2141
2143
|
var R = anObject$9(this);
|
|
2142
2144
|
var string = toString$b(S);
|
|
@@ -2188,10 +2190,10 @@ if (NOT_GENERIC || INCORRECT_NAME) {
|
|
|
2188
2190
|
}, { unsafe: true });
|
|
2189
2191
|
}
|
|
2190
2192
|
|
|
2191
|
-
var $$
|
|
2193
|
+
var $$h = _export;
|
|
2192
2194
|
var uncurryThis$f = functionUncurryThis;
|
|
2193
2195
|
var requireObjectCoercible$7 = requireObjectCoercible$b;
|
|
2194
|
-
var toIntegerOrInfinity$
|
|
2196
|
+
var toIntegerOrInfinity$3 = toIntegerOrInfinity$7;
|
|
2195
2197
|
var toString$a = toString$e;
|
|
2196
2198
|
var fails$a = fails$r;
|
|
2197
2199
|
|
|
@@ -2204,11 +2206,11 @@ var FORCED$2 = fails$a(function () {
|
|
|
2204
2206
|
|
|
2205
2207
|
// `String.prototype.at` method
|
|
2206
2208
|
// https://tc39.es/ecma262/#sec-string.prototype.at
|
|
2207
|
-
$$
|
|
2209
|
+
$$h({ target: 'String', proto: true, forced: FORCED$2 }, {
|
|
2208
2210
|
at: function at(index) {
|
|
2209
2211
|
var S = toString$a(requireObjectCoercible$7(this));
|
|
2210
2212
|
var len = S.length;
|
|
2211
|
-
var relativeIndex = toIntegerOrInfinity$
|
|
2213
|
+
var relativeIndex = toIntegerOrInfinity$3(index);
|
|
2212
2214
|
var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
|
|
2213
2215
|
return (k < 0 || k >= len) ? undefined : charAt$5(S, k);
|
|
2214
2216
|
}
|
|
@@ -2220,14 +2222,14 @@ var call$a = functionCall;
|
|
|
2220
2222
|
var defineBuiltIn$3 = defineBuiltIn$8;
|
|
2221
2223
|
var regexpExec$1 = regexpExec$2;
|
|
2222
2224
|
var fails$9 = fails$r;
|
|
2223
|
-
var wellKnownSymbol$
|
|
2225
|
+
var wellKnownSymbol$b = wellKnownSymbol$k;
|
|
2224
2226
|
var createNonEnumerableProperty$1 = createNonEnumerableProperty$9;
|
|
2225
2227
|
|
|
2226
|
-
var SPECIES$
|
|
2228
|
+
var SPECIES$4 = wellKnownSymbol$b('species');
|
|
2227
2229
|
var RegExpPrototype$2 = RegExp.prototype;
|
|
2228
2230
|
|
|
2229
2231
|
var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
|
|
2230
|
-
var SYMBOL = wellKnownSymbol$
|
|
2232
|
+
var SYMBOL = wellKnownSymbol$b(KEY);
|
|
2231
2233
|
|
|
2232
2234
|
var DELEGATES_TO_SYMBOL = !fails$9(function () {
|
|
2233
2235
|
// String methods call symbol-named RegExp methods
|
|
@@ -2249,7 +2251,7 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
|
|
|
2249
2251
|
// RegExp[@@split] doesn't call the regex's exec method, but first creates
|
|
2250
2252
|
// a new one. We need to return the patched regex when creating the new one.
|
|
2251
2253
|
re.constructor = {};
|
|
2252
|
-
re.constructor[SPECIES$
|
|
2254
|
+
re.constructor[SPECIES$4] = function () { return re; };
|
|
2253
2255
|
re.flags = '';
|
|
2254
2256
|
re[SYMBOL] = /./[SYMBOL];
|
|
2255
2257
|
}
|
|
@@ -2291,7 +2293,7 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
|
|
|
2291
2293
|
};
|
|
2292
2294
|
|
|
2293
2295
|
var uncurryThis$e = functionUncurryThis;
|
|
2294
|
-
var toIntegerOrInfinity$
|
|
2296
|
+
var toIntegerOrInfinity$2 = toIntegerOrInfinity$7;
|
|
2295
2297
|
var toString$9 = toString$e;
|
|
2296
2298
|
var requireObjectCoercible$6 = requireObjectCoercible$b;
|
|
2297
2299
|
|
|
@@ -2302,7 +2304,7 @@ var stringSlice$5 = uncurryThis$e(''.slice);
|
|
|
2302
2304
|
var createMethod$2 = function (CONVERT_TO_STRING) {
|
|
2303
2305
|
return function ($this, pos) {
|
|
2304
2306
|
var S = toString$9(requireObjectCoercible$6($this));
|
|
2305
|
-
var position = toIntegerOrInfinity$
|
|
2307
|
+
var position = toIntegerOrInfinity$2(pos);
|
|
2306
2308
|
var size = S.length;
|
|
2307
2309
|
var first, second;
|
|
2308
2310
|
if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
|
|
@@ -2336,7 +2338,7 @@ var advanceStringIndex$2 = function (S, index, unicode) {
|
|
|
2336
2338
|
};
|
|
2337
2339
|
|
|
2338
2340
|
var uncurryThis$d = functionUncurryThis;
|
|
2339
|
-
var toObject$
|
|
2341
|
+
var toObject$3 = toObject$8;
|
|
2340
2342
|
|
|
2341
2343
|
var floor = Math.floor;
|
|
2342
2344
|
var charAt$2 = uncurryThis$d(''.charAt);
|
|
@@ -2353,7 +2355,7 @@ var getSubstitution$1 = function (matched, str, position, captures, namedCapture
|
|
|
2353
2355
|
var m = captures.length;
|
|
2354
2356
|
var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
|
|
2355
2357
|
if (namedCaptures !== undefined) {
|
|
2356
|
-
namedCaptures = toObject$
|
|
2358
|
+
namedCaptures = toObject$3(namedCaptures);
|
|
2357
2359
|
symbols = SUBSTITUTION_SYMBOLS;
|
|
2358
2360
|
}
|
|
2359
2361
|
return replace$4(replacement, symbols, function (match, ch) {
|
|
@@ -2410,7 +2412,7 @@ var fails$8 = fails$r;
|
|
|
2410
2412
|
var anObject$6 = anObject$f;
|
|
2411
2413
|
var isCallable$8 = isCallable$q;
|
|
2412
2414
|
var isNullOrUndefined$3 = isNullOrUndefined$6;
|
|
2413
|
-
var toIntegerOrInfinity = toIntegerOrInfinity$
|
|
2415
|
+
var toIntegerOrInfinity$1 = toIntegerOrInfinity$7;
|
|
2414
2416
|
var toLength$3 = toLength$5;
|
|
2415
2417
|
var toString$8 = toString$e;
|
|
2416
2418
|
var requireObjectCoercible$5 = requireObjectCoercible$b;
|
|
@@ -2418,9 +2420,9 @@ var advanceStringIndex$1 = advanceStringIndex$2;
|
|
|
2418
2420
|
var getMethod$3 = getMethod$5;
|
|
2419
2421
|
var getSubstitution = getSubstitution$1;
|
|
2420
2422
|
var regExpExec$1 = regexpExecAbstract;
|
|
2421
|
-
var wellKnownSymbol$
|
|
2423
|
+
var wellKnownSymbol$a = wellKnownSymbol$k;
|
|
2422
2424
|
|
|
2423
|
-
var REPLACE = wellKnownSymbol$
|
|
2425
|
+
var REPLACE = wellKnownSymbol$a('replace');
|
|
2424
2426
|
var max = Math.max;
|
|
2425
2427
|
var min$2 = Math.min;
|
|
2426
2428
|
var concat = uncurryThis$c([].concat);
|
|
@@ -2516,7 +2518,7 @@ fixRegExpWellKnownSymbolLogic$1('replace', function (_, nativeReplace, maybeCall
|
|
|
2516
2518
|
result = results[i];
|
|
2517
2519
|
|
|
2518
2520
|
var matched = toString$8(result[0]);
|
|
2519
|
-
var position = max(min$2(toIntegerOrInfinity(result.index), S.length), 0);
|
|
2521
|
+
var position = max(min$2(toIntegerOrInfinity$1(result.index), S.length), 0);
|
|
2520
2522
|
var captures = [];
|
|
2521
2523
|
var replacement;
|
|
2522
2524
|
// NOTE: This is equivalent to
|
|
@@ -2554,17 +2556,17 @@ var functionUncurryThisClause = function (fn) {
|
|
|
2554
2556
|
if (classofRaw(fn) === 'Function') return uncurryThis$b(fn);
|
|
2555
2557
|
};
|
|
2556
2558
|
|
|
2557
|
-
var isObject$
|
|
2559
|
+
var isObject$3 = isObject$e;
|
|
2558
2560
|
var classof$6 = classofRaw$2;
|
|
2559
|
-
var wellKnownSymbol$
|
|
2561
|
+
var wellKnownSymbol$9 = wellKnownSymbol$k;
|
|
2560
2562
|
|
|
2561
|
-
var MATCH$2 = wellKnownSymbol$
|
|
2563
|
+
var MATCH$2 = wellKnownSymbol$9('match');
|
|
2562
2564
|
|
|
2563
2565
|
// `IsRegExp` abstract operation
|
|
2564
2566
|
// https://tc39.es/ecma262/#sec-isregexp
|
|
2565
2567
|
var isRegexp = function (it) {
|
|
2566
2568
|
var isRegExp;
|
|
2567
|
-
return isObject$
|
|
2569
|
+
return isObject$3(it) && ((isRegExp = it[MATCH$2]) !== undefined ? !!isRegExp : classof$6(it) === 'RegExp');
|
|
2568
2570
|
};
|
|
2569
2571
|
|
|
2570
2572
|
var isRegExp$1 = isRegexp;
|
|
@@ -2577,9 +2579,9 @@ var notARegexp = function (it) {
|
|
|
2577
2579
|
} return it;
|
|
2578
2580
|
};
|
|
2579
2581
|
|
|
2580
|
-
var wellKnownSymbol$
|
|
2582
|
+
var wellKnownSymbol$8 = wellKnownSymbol$k;
|
|
2581
2583
|
|
|
2582
|
-
var MATCH$1 = wellKnownSymbol$
|
|
2584
|
+
var MATCH$1 = wellKnownSymbol$8('match');
|
|
2583
2585
|
|
|
2584
2586
|
var correctIsRegexpLogic = function (METHOD_NAME) {
|
|
2585
2587
|
var regexp = /./;
|
|
@@ -2593,7 +2595,7 @@ var correctIsRegexpLogic = function (METHOD_NAME) {
|
|
|
2593
2595
|
} return false;
|
|
2594
2596
|
};
|
|
2595
2597
|
|
|
2596
|
-
var $$
|
|
2598
|
+
var $$g = _export;
|
|
2597
2599
|
var uncurryThis$a = functionUncurryThisClause;
|
|
2598
2600
|
var getOwnPropertyDescriptor$3 = objectGetOwnPropertyDescriptor.f;
|
|
2599
2601
|
var toLength$2 = toLength$5;
|
|
@@ -2614,7 +2616,7 @@ var MDN_POLYFILL_BUG$1 = !CORRECT_IS_REGEXP_LOGIC$1 && !!function () {
|
|
|
2614
2616
|
|
|
2615
2617
|
// `String.prototype.startsWith` method
|
|
2616
2618
|
// https://tc39.es/ecma262/#sec-string.prototype.startswith
|
|
2617
|
-
$$
|
|
2619
|
+
$$g({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG$1 && !CORRECT_IS_REGEXP_LOGIC$1 }, {
|
|
2618
2620
|
startsWith: function startsWith(searchString /* , position = 0 */) {
|
|
2619
2621
|
var that = toString$7(requireObjectCoercible$4(this));
|
|
2620
2622
|
notARegExp$2(searchString);
|
|
@@ -3124,14 +3126,14 @@ const onChangeForCheckboxData = (data, name, value) => data ? !value ? data ===
|
|
|
3124
3126
|
|
|
3125
3127
|
let _$9 = t => t,
|
|
3126
3128
|
_t$9,
|
|
3127
|
-
_t2$
|
|
3129
|
+
_t2$6;
|
|
3128
3130
|
styled.div(_t$9 || (_t$9 = _$9`
|
|
3129
3131
|
height: 70vh;
|
|
3130
3132
|
overflow-y: auto;
|
|
3131
3133
|
padding-left: var(--goa-space-2xs);
|
|
3132
3134
|
padding-right: var(--goa-space-2xs);
|
|
3133
3135
|
`));
|
|
3134
|
-
const Visible = styled.div(_t2$
|
|
3136
|
+
const Visible = styled.div(_t2$6 || (_t2$6 = _$9`
|
|
3135
3137
|
display: ${0};
|
|
3136
3138
|
`), p => p.visible ? 'initial' : 'none');
|
|
3137
3139
|
|
|
@@ -3145,12 +3147,12 @@ var classof$5 = classofRaw$2;
|
|
|
3145
3147
|
// `IsArray` abstract operation
|
|
3146
3148
|
// https://tc39.es/ecma262/#sec-isarray
|
|
3147
3149
|
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
3148
|
-
var isArray$
|
|
3150
|
+
var isArray$4 = Array.isArray || function isArray(argument) {
|
|
3149
3151
|
return classof$5(argument) === 'Array';
|
|
3150
3152
|
};
|
|
3151
3153
|
|
|
3152
3154
|
var DESCRIPTORS$6 = descriptors;
|
|
3153
|
-
var isArray$
|
|
3155
|
+
var isArray$3 = isArray$4;
|
|
3154
3156
|
|
|
3155
3157
|
var $TypeError$9 = TypeError;
|
|
3156
3158
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
@@ -3169,7 +3171,7 @@ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS$6 && !function () {
|
|
|
3169
3171
|
}();
|
|
3170
3172
|
|
|
3171
3173
|
var arraySetLength = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
|
|
3172
|
-
if (isArray$
|
|
3174
|
+
if (isArray$3(O) && !getOwnPropertyDescriptor$2(O, 'length').writable) {
|
|
3173
3175
|
throw new $TypeError$9('Cannot set read only .length');
|
|
3174
3176
|
} return O.length = length;
|
|
3175
3177
|
} : function (O, length) {
|
|
@@ -3179,16 +3181,16 @@ var arraySetLength = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
|
|
|
3179
3181
|
var $TypeError$8 = TypeError;
|
|
3180
3182
|
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
|
|
3181
3183
|
|
|
3182
|
-
var doesNotExceedSafeInteger$
|
|
3184
|
+
var doesNotExceedSafeInteger$2 = function (it) {
|
|
3183
3185
|
if (it > MAX_SAFE_INTEGER) throw $TypeError$8('Maximum allowed index exceeded');
|
|
3184
3186
|
return it;
|
|
3185
3187
|
};
|
|
3186
3188
|
|
|
3187
|
-
var $$
|
|
3188
|
-
var toObject$
|
|
3189
|
-
var lengthOfArrayLike$
|
|
3189
|
+
var $$f = _export;
|
|
3190
|
+
var toObject$2 = toObject$8;
|
|
3191
|
+
var lengthOfArrayLike$4 = lengthOfArrayLike$7;
|
|
3190
3192
|
var setArrayLength = arraySetLength;
|
|
3191
|
-
var doesNotExceedSafeInteger = doesNotExceedSafeInteger$
|
|
3193
|
+
var doesNotExceedSafeInteger$1 = doesNotExceedSafeInteger$2;
|
|
3192
3194
|
var fails$7 = fails$r;
|
|
3193
3195
|
|
|
3194
3196
|
var INCORRECT_TO_LENGTH = fails$7(function () {
|
|
@@ -3210,13 +3212,13 @@ var FORCED$1 = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
|
|
|
3210
3212
|
|
|
3211
3213
|
// `Array.prototype.push` method
|
|
3212
3214
|
// https://tc39.es/ecma262/#sec-array.prototype.push
|
|
3213
|
-
$$
|
|
3215
|
+
$$f({ target: 'Array', proto: true, arity: 1, forced: FORCED$1 }, {
|
|
3214
3216
|
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
3215
3217
|
push: function push(item) {
|
|
3216
|
-
var O = toObject$
|
|
3217
|
-
var len = lengthOfArrayLike$
|
|
3218
|
+
var O = toObject$2(this);
|
|
3219
|
+
var len = lengthOfArrayLike$4(O);
|
|
3218
3220
|
var argCount = arguments.length;
|
|
3219
|
-
doesNotExceedSafeInteger(len + argCount);
|
|
3221
|
+
doesNotExceedSafeInteger$1(len + argCount);
|
|
3220
3222
|
for (var i = 0; i < argCount; i++) {
|
|
3221
3223
|
O[len] = arguments[i];
|
|
3222
3224
|
len++;
|
|
@@ -3261,10 +3263,10 @@ function registerReducer(state, action) {
|
|
|
3261
3263
|
return state;
|
|
3262
3264
|
}
|
|
3263
3265
|
|
|
3264
|
-
var $$
|
|
3266
|
+
var $$e = _export;
|
|
3265
3267
|
var $includes = arrayIncludes.includes;
|
|
3266
3268
|
var fails$6 = fails$r;
|
|
3267
|
-
var addToUnscopables = addToUnscopables$
|
|
3269
|
+
var addToUnscopables$1 = addToUnscopables$4;
|
|
3268
3270
|
|
|
3269
3271
|
// FF99+ bug
|
|
3270
3272
|
var BROKEN_ON_SPARSE = fails$6(function () {
|
|
@@ -3274,21 +3276,21 @@ var BROKEN_ON_SPARSE = fails$6(function () {
|
|
|
3274
3276
|
|
|
3275
3277
|
// `Array.prototype.includes` method
|
|
3276
3278
|
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
3277
|
-
$$
|
|
3279
|
+
$$e({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
|
|
3278
3280
|
includes: function includes(el /* , fromIndex = 0 */) {
|
|
3279
3281
|
return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
|
|
3280
3282
|
}
|
|
3281
3283
|
});
|
|
3282
3284
|
|
|
3283
3285
|
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
3284
|
-
addToUnscopables('includes');
|
|
3286
|
+
addToUnscopables$1('includes');
|
|
3285
3287
|
|
|
3286
3288
|
var uncurryThis$9 = functionUncurryThis;
|
|
3287
3289
|
|
|
3288
3290
|
var arraySlice$2 = uncurryThis$9([].slice);
|
|
3289
3291
|
|
|
3290
3292
|
var uncurryThis$8 = functionUncurryThis;
|
|
3291
|
-
var isArray = isArray$
|
|
3293
|
+
var isArray$2 = isArray$4;
|
|
3292
3294
|
var isCallable$7 = isCallable$q;
|
|
3293
3295
|
var classof$4 = classofRaw$2;
|
|
3294
3296
|
var toString$6 = toString$e;
|
|
@@ -3297,7 +3299,7 @@ var push = uncurryThis$8([].push);
|
|
|
3297
3299
|
|
|
3298
3300
|
var getJsonReplacerFunction = function (replacer) {
|
|
3299
3301
|
if (isCallable$7(replacer)) return replacer;
|
|
3300
|
-
if (!isArray(replacer)) return;
|
|
3302
|
+
if (!isArray$2(replacer)) return;
|
|
3301
3303
|
var rawLength = replacer.length;
|
|
3302
3304
|
var keys = [];
|
|
3303
3305
|
for (var i = 0; i < rawLength; i++) {
|
|
@@ -3312,12 +3314,12 @@ var getJsonReplacerFunction = function (replacer) {
|
|
|
3312
3314
|
root = false;
|
|
3313
3315
|
return value;
|
|
3314
3316
|
}
|
|
3315
|
-
if (isArray(this)) return value;
|
|
3317
|
+
if (isArray$2(this)) return value;
|
|
3316
3318
|
for (var j = 0; j < keysLength; j++) if (keys[j] === key) return value;
|
|
3317
3319
|
};
|
|
3318
3320
|
};
|
|
3319
3321
|
|
|
3320
|
-
var $$
|
|
3322
|
+
var $$d = _export;
|
|
3321
3323
|
var getBuiltIn$4 = getBuiltIn$9;
|
|
3322
3324
|
var apply$1 = functionApply;
|
|
3323
3325
|
var call$7 = functionCall;
|
|
@@ -3380,7 +3382,7 @@ var fixIllFormed = function (match, offset, string) {
|
|
|
3380
3382
|
if ($stringify) {
|
|
3381
3383
|
// `JSON.stringify` method
|
|
3382
3384
|
// https://tc39.es/ecma262/#sec-json.stringify
|
|
3383
|
-
$$
|
|
3385
|
+
$$d({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE }, {
|
|
3384
3386
|
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
3385
3387
|
stringify: function stringify(it, replacer, space) {
|
|
3386
3388
|
var args = arraySlice$1(arguments);
|
|
@@ -3390,7 +3392,7 @@ if ($stringify) {
|
|
|
3390
3392
|
});
|
|
3391
3393
|
}
|
|
3392
3394
|
|
|
3393
|
-
var $$
|
|
3395
|
+
var $$c = _export;
|
|
3394
3396
|
var uncurryThis$6 = functionUncurryThis;
|
|
3395
3397
|
var notARegExp$1 = notARegexp;
|
|
3396
3398
|
var requireObjectCoercible$3 = requireObjectCoercible$b;
|
|
@@ -3401,7 +3403,7 @@ var stringIndexOf$1 = uncurryThis$6(''.indexOf);
|
|
|
3401
3403
|
|
|
3402
3404
|
// `String.prototype.includes` method
|
|
3403
3405
|
// https://tc39.es/ecma262/#sec-string.prototype.includes
|
|
3404
|
-
$$
|
|
3406
|
+
$$c({ target: 'String', proto: true, forced: !correctIsRegExpLogic$1('includes') }, {
|
|
3405
3407
|
includes: function includes(searchString /* , position = 0 */) {
|
|
3406
3408
|
return !!~stringIndexOf$1(
|
|
3407
3409
|
toString$5(requireObjectCoercible$3(this)),
|
|
@@ -3464,16 +3466,16 @@ var defineBuiltInAccessor$3 = function (target, name, descriptor) {
|
|
|
3464
3466
|
|
|
3465
3467
|
var getBuiltIn$3 = getBuiltIn$9;
|
|
3466
3468
|
var defineBuiltInAccessor$2 = defineBuiltInAccessor$3;
|
|
3467
|
-
var wellKnownSymbol$
|
|
3469
|
+
var wellKnownSymbol$7 = wellKnownSymbol$k;
|
|
3468
3470
|
var DESCRIPTORS$5 = descriptors;
|
|
3469
3471
|
|
|
3470
|
-
var SPECIES$
|
|
3472
|
+
var SPECIES$3 = wellKnownSymbol$7('species');
|
|
3471
3473
|
|
|
3472
3474
|
var setSpecies$2 = function (CONSTRUCTOR_NAME) {
|
|
3473
3475
|
var Constructor = getBuiltIn$3(CONSTRUCTOR_NAME);
|
|
3474
3476
|
|
|
3475
|
-
if (DESCRIPTORS$5 && Constructor && !Constructor[SPECIES$
|
|
3476
|
-
defineBuiltInAccessor$2(Constructor, SPECIES$
|
|
3477
|
+
if (DESCRIPTORS$5 && Constructor && !Constructor[SPECIES$3]) {
|
|
3478
|
+
defineBuiltInAccessor$2(Constructor, SPECIES$3, {
|
|
3477
3479
|
configurable: true,
|
|
3478
3480
|
get: function () { return this; }
|
|
3479
3481
|
});
|
|
@@ -3499,11 +3501,11 @@ var fails$4 = fails$r;
|
|
|
3499
3501
|
var hasOwn$2 = hasOwnProperty_1;
|
|
3500
3502
|
var enforceInternalState = internalState.enforce;
|
|
3501
3503
|
var setSpecies$1 = setSpecies$2;
|
|
3502
|
-
var wellKnownSymbol$
|
|
3504
|
+
var wellKnownSymbol$6 = wellKnownSymbol$k;
|
|
3503
3505
|
var UNSUPPORTED_DOT_ALL$1 = regexpUnsupportedDotAll;
|
|
3504
3506
|
var UNSUPPORTED_NCG = regexpUnsupportedNcg;
|
|
3505
3507
|
|
|
3506
|
-
var MATCH = wellKnownSymbol$
|
|
3508
|
+
var MATCH = wellKnownSymbol$6('match');
|
|
3507
3509
|
var NativeRegExp = global$9.RegExp;
|
|
3508
3510
|
var RegExpPrototype$1 = NativeRegExp.prototype;
|
|
3509
3511
|
var SyntaxError = global$9.SyntaxError;
|
|
@@ -3957,7 +3959,7 @@ const GoAInputBaseControl = props => {
|
|
|
3957
3959
|
});
|
|
3958
3960
|
};
|
|
3959
3961
|
|
|
3960
|
-
var $$
|
|
3962
|
+
var $$b = _export;
|
|
3961
3963
|
var DESCRIPTORS$2 = descriptors;
|
|
3962
3964
|
var global$8 = global$o;
|
|
3963
3965
|
var uncurryThis$4 = functionUncurryThis;
|
|
@@ -4009,7 +4011,7 @@ if (DESCRIPTORS$2 && isCallable$5(NativeSymbol) && (!('description' in SymbolPro
|
|
|
4009
4011
|
}
|
|
4010
4012
|
});
|
|
4011
4013
|
|
|
4012
|
-
$$
|
|
4014
|
+
$$b({ global: true, constructor: true, forced: true }, {
|
|
4013
4015
|
Symbol: SymbolWrapper
|
|
4014
4016
|
});
|
|
4015
4017
|
}
|
|
@@ -4634,13 +4636,13 @@ var stringTrimForced = function (METHOD_NAME) {
|
|
|
4634
4636
|
});
|
|
4635
4637
|
};
|
|
4636
4638
|
|
|
4637
|
-
var $$
|
|
4639
|
+
var $$a = _export;
|
|
4638
4640
|
var $trim = stringTrim.trim;
|
|
4639
4641
|
var forcedStringTrimMethod = stringTrimForced;
|
|
4640
4642
|
|
|
4641
4643
|
// `String.prototype.trim` method
|
|
4642
4644
|
// https://tc39.es/ecma262/#sec-string.prototype.trim
|
|
4643
|
-
$$
|
|
4645
|
+
$$a({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
|
|
4644
4646
|
trim: function trim() {
|
|
4645
4647
|
return $trim(this);
|
|
4646
4648
|
}
|
|
@@ -4657,7 +4659,7 @@ const SHIFT_KEY = 'Shift';
|
|
|
4657
4659
|
|
|
4658
4660
|
let _$7 = t => t,
|
|
4659
4661
|
_t$7,
|
|
4660
|
-
_t2$
|
|
4662
|
+
_t2$5,
|
|
4661
4663
|
_t3$4,
|
|
4662
4664
|
_t4$3;
|
|
4663
4665
|
const GoADropdownTextbox = styled.div(_t$7 || (_t$7 = _$7`
|
|
@@ -4671,7 +4673,7 @@ const GoADropdownTextbox = styled.div(_t$7 || (_t$7 = _$7`
|
|
|
4671
4673
|
box-shadow: ${0};
|
|
4672
4674
|
}
|
|
4673
4675
|
`), p => p.isOpen ? `0 0 0 3px var(--goa-color-interactive-focus)` : '', p => p.isOpen ? `0 0 0 3px var(--goa-color-interactive-focus) !important` : '');
|
|
4674
|
-
const GoADropdownListContainerWrapper = styled.div(_t2$
|
|
4676
|
+
const GoADropdownListContainerWrapper = styled.div(_t2$5 || (_t2$5 = _$7`
|
|
4675
4677
|
position: relative;
|
|
4676
4678
|
display: ${0};
|
|
4677
4679
|
`), p => !(p === null || p === void 0 ? void 0 : p.isOpen) && 'none');
|
|
@@ -5347,7 +5349,7 @@ const LayoutRenderer = ({
|
|
|
5347
5349
|
|
|
5348
5350
|
let _$5 = t => t,
|
|
5349
5351
|
_t$5,
|
|
5350
|
-
_t2$
|
|
5352
|
+
_t2$4,
|
|
5351
5353
|
_t3$3,
|
|
5352
5354
|
_t4$2,
|
|
5353
5355
|
_t5$2,
|
|
@@ -5368,12 +5370,16 @@ const ReviewItem = styled.div(_t$5 || (_t$5 = _$5`
|
|
|
5368
5370
|
display: none;
|
|
5369
5371
|
}
|
|
5370
5372
|
`));
|
|
5371
|
-
const ReviewItemSection = styled.div(_t2$
|
|
5373
|
+
const ReviewItemSection = styled.div(_t2$4 || (_t2$4 = _$5`
|
|
5372
5374
|
background-color: #f1f1f1;
|
|
5373
5375
|
margin-bottom: var(--goa-space-m);
|
|
5374
5376
|
padding: var(--goa-space-m);
|
|
5375
5377
|
border: 1px solid #dcdcdc;
|
|
5376
5378
|
border-radius: 5px;
|
|
5379
|
+
|
|
5380
|
+
.element-style {
|
|
5381
|
+
max-width: 1439px;
|
|
5382
|
+
}
|
|
5377
5383
|
`));
|
|
5378
5384
|
const ReviewItemHeader = styled.div(_t3$3 || (_t3$3 = _$5`
|
|
5379
5385
|
display: flex;
|
|
@@ -5628,6 +5634,164 @@ const mapToVisibleStep = (step, allSteps, visibleSteps) => {
|
|
|
5628
5634
|
return step;
|
|
5629
5635
|
};
|
|
5630
5636
|
|
|
5637
|
+
var uncurryThis$2 = functionUncurryThisClause;
|
|
5638
|
+
var aCallable$6 = aCallable$9;
|
|
5639
|
+
var NATIVE_BIND = functionBindNative;
|
|
5640
|
+
|
|
5641
|
+
var bind$5 = uncurryThis$2(uncurryThis$2.bind);
|
|
5642
|
+
|
|
5643
|
+
// optional / simple context binding
|
|
5644
|
+
var functionBindContext = function (fn, that) {
|
|
5645
|
+
aCallable$6(fn);
|
|
5646
|
+
return that === undefined ? fn : NATIVE_BIND ? bind$5(fn, that) : function (/* ...args */) {
|
|
5647
|
+
return fn.apply(that, arguments);
|
|
5648
|
+
};
|
|
5649
|
+
};
|
|
5650
|
+
|
|
5651
|
+
var isArray$1 = isArray$4;
|
|
5652
|
+
var lengthOfArrayLike$3 = lengthOfArrayLike$7;
|
|
5653
|
+
var doesNotExceedSafeInteger = doesNotExceedSafeInteger$2;
|
|
5654
|
+
var bind$4 = functionBindContext;
|
|
5655
|
+
|
|
5656
|
+
// `FlattenIntoArray` abstract operation
|
|
5657
|
+
// https://tc39.github.io/proposal-flatMap/#sec-FlattenIntoArray
|
|
5658
|
+
var flattenIntoArray$1 = function (target, original, source, sourceLen, start, depth, mapper, thisArg) {
|
|
5659
|
+
var targetIndex = start;
|
|
5660
|
+
var sourceIndex = 0;
|
|
5661
|
+
var mapFn = mapper ? bind$4(mapper, thisArg) : false;
|
|
5662
|
+
var element, elementLen;
|
|
5663
|
+
|
|
5664
|
+
while (sourceIndex < sourceLen) {
|
|
5665
|
+
if (sourceIndex in source) {
|
|
5666
|
+
element = mapFn ? mapFn(source[sourceIndex], sourceIndex, original) : source[sourceIndex];
|
|
5667
|
+
|
|
5668
|
+
if (depth > 0 && isArray$1(element)) {
|
|
5669
|
+
elementLen = lengthOfArrayLike$3(element);
|
|
5670
|
+
targetIndex = flattenIntoArray$1(target, original, element, elementLen, targetIndex, depth - 1) - 1;
|
|
5671
|
+
} else {
|
|
5672
|
+
doesNotExceedSafeInteger(targetIndex + 1);
|
|
5673
|
+
target[targetIndex] = element;
|
|
5674
|
+
}
|
|
5675
|
+
|
|
5676
|
+
targetIndex++;
|
|
5677
|
+
}
|
|
5678
|
+
sourceIndex++;
|
|
5679
|
+
}
|
|
5680
|
+
return targetIndex;
|
|
5681
|
+
};
|
|
5682
|
+
|
|
5683
|
+
var flattenIntoArray_1 = flattenIntoArray$1;
|
|
5684
|
+
|
|
5685
|
+
var uncurryThis$1 = functionUncurryThis;
|
|
5686
|
+
var fails$2 = fails$r;
|
|
5687
|
+
var isCallable$4 = isCallable$q;
|
|
5688
|
+
var classof$2 = classof$9;
|
|
5689
|
+
var getBuiltIn$2 = getBuiltIn$9;
|
|
5690
|
+
var inspectSource$1 = inspectSource$3;
|
|
5691
|
+
|
|
5692
|
+
var noop = function () { /* empty */ };
|
|
5693
|
+
var construct = getBuiltIn$2('Reflect', 'construct');
|
|
5694
|
+
var constructorRegExp = /^\s*(?:class|function)\b/;
|
|
5695
|
+
var exec = uncurryThis$1(constructorRegExp.exec);
|
|
5696
|
+
var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
|
|
5697
|
+
|
|
5698
|
+
var isConstructorModern = function isConstructor(argument) {
|
|
5699
|
+
if (!isCallable$4(argument)) return false;
|
|
5700
|
+
try {
|
|
5701
|
+
construct(noop, [], argument);
|
|
5702
|
+
return true;
|
|
5703
|
+
} catch (error) {
|
|
5704
|
+
return false;
|
|
5705
|
+
}
|
|
5706
|
+
};
|
|
5707
|
+
|
|
5708
|
+
var isConstructorLegacy = function isConstructor(argument) {
|
|
5709
|
+
if (!isCallable$4(argument)) return false;
|
|
5710
|
+
switch (classof$2(argument)) {
|
|
5711
|
+
case 'AsyncFunction':
|
|
5712
|
+
case 'GeneratorFunction':
|
|
5713
|
+
case 'AsyncGeneratorFunction': return false;
|
|
5714
|
+
}
|
|
5715
|
+
try {
|
|
5716
|
+
// we can't check .prototype since constructors produced by .bind haven't it
|
|
5717
|
+
// `Function#toString` throws on some built-it function in some legacy engines
|
|
5718
|
+
// (for example, `DOMQuad` and similar in FF41-)
|
|
5719
|
+
return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource$1(argument));
|
|
5720
|
+
} catch (error) {
|
|
5721
|
+
return true;
|
|
5722
|
+
}
|
|
5723
|
+
};
|
|
5724
|
+
|
|
5725
|
+
isConstructorLegacy.sham = true;
|
|
5726
|
+
|
|
5727
|
+
// `IsConstructor` abstract operation
|
|
5728
|
+
// https://tc39.es/ecma262/#sec-isconstructor
|
|
5729
|
+
var isConstructor$2 = !construct || fails$2(function () {
|
|
5730
|
+
var called;
|
|
5731
|
+
return isConstructorModern(isConstructorModern.call)
|
|
5732
|
+
|| !isConstructorModern(Object)
|
|
5733
|
+
|| !isConstructorModern(function () { called = true; })
|
|
5734
|
+
|| called;
|
|
5735
|
+
}) ? isConstructorLegacy : isConstructorModern;
|
|
5736
|
+
|
|
5737
|
+
var isArray = isArray$4;
|
|
5738
|
+
var isConstructor$1 = isConstructor$2;
|
|
5739
|
+
var isObject$2 = isObject$e;
|
|
5740
|
+
var wellKnownSymbol$5 = wellKnownSymbol$k;
|
|
5741
|
+
|
|
5742
|
+
var SPECIES$2 = wellKnownSymbol$5('species');
|
|
5743
|
+
var $Array = Array;
|
|
5744
|
+
|
|
5745
|
+
// a part of `ArraySpeciesCreate` abstract operation
|
|
5746
|
+
// https://tc39.es/ecma262/#sec-arrayspeciescreate
|
|
5747
|
+
var arraySpeciesConstructor$1 = function (originalArray) {
|
|
5748
|
+
var C;
|
|
5749
|
+
if (isArray(originalArray)) {
|
|
5750
|
+
C = originalArray.constructor;
|
|
5751
|
+
// cross-realm fallback
|
|
5752
|
+
if (isConstructor$1(C) && (C === $Array || isArray(C.prototype))) C = undefined;
|
|
5753
|
+
else if (isObject$2(C)) {
|
|
5754
|
+
C = C[SPECIES$2];
|
|
5755
|
+
if (C === null) C = undefined;
|
|
5756
|
+
}
|
|
5757
|
+
} return C === undefined ? $Array : C;
|
|
5758
|
+
};
|
|
5759
|
+
|
|
5760
|
+
var arraySpeciesConstructor = arraySpeciesConstructor$1;
|
|
5761
|
+
|
|
5762
|
+
// `ArraySpeciesCreate` abstract operation
|
|
5763
|
+
// https://tc39.es/ecma262/#sec-arrayspeciescreate
|
|
5764
|
+
var arraySpeciesCreate$1 = function (originalArray, length) {
|
|
5765
|
+
return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
|
|
5766
|
+
};
|
|
5767
|
+
|
|
5768
|
+
var $$9 = _export;
|
|
5769
|
+
var flattenIntoArray = flattenIntoArray_1;
|
|
5770
|
+
var toObject$1 = toObject$8;
|
|
5771
|
+
var lengthOfArrayLike$2 = lengthOfArrayLike$7;
|
|
5772
|
+
var toIntegerOrInfinity = toIntegerOrInfinity$7;
|
|
5773
|
+
var arraySpeciesCreate = arraySpeciesCreate$1;
|
|
5774
|
+
|
|
5775
|
+
// `Array.prototype.flat` method
|
|
5776
|
+
// https://tc39.es/ecma262/#sec-array.prototype.flat
|
|
5777
|
+
$$9({ target: 'Array', proto: true }, {
|
|
5778
|
+
flat: function flat(/* depthArg = 1 */) {
|
|
5779
|
+
var depthArg = arguments.length ? arguments[0] : undefined;
|
|
5780
|
+
var O = toObject$1(this);
|
|
5781
|
+
var sourceLen = lengthOfArrayLike$2(O);
|
|
5782
|
+
var A = arraySpeciesCreate(O, 0);
|
|
5783
|
+
A.length = flattenIntoArray(A, O, O, sourceLen, 0, depthArg === undefined ? 1 : toIntegerOrInfinity(depthArg));
|
|
5784
|
+
return A;
|
|
5785
|
+
}
|
|
5786
|
+
});
|
|
5787
|
+
|
|
5788
|
+
// this method was added to unscopables after implementation
|
|
5789
|
+
// in popular engines, so it's moved to a separate module
|
|
5790
|
+
var addToUnscopables = addToUnscopables$4;
|
|
5791
|
+
|
|
5792
|
+
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
5793
|
+
addToUnscopables('flat');
|
|
5794
|
+
|
|
5631
5795
|
// eslint-disable-next-line
|
|
5632
5796
|
const getProperty = (obj, propName) => {
|
|
5633
5797
|
if (obj[propName] !== undefined) return obj[propName];
|
|
@@ -5656,6 +5820,7 @@ const FormStepperReviewer = props => {
|
|
|
5656
5820
|
const readOnly = (_c = componentProps === null || componentProps === void 0 ? void 0 : componentProps.readOnly) !== null && _c !== void 0 ? _c : false;
|
|
5657
5821
|
const categorization = uischema;
|
|
5658
5822
|
const categories = categorization.elements.filter(category => isVisible(category, data, '', ajv));
|
|
5823
|
+
const rescopeMaps = ['#/properties/albertaAddress', '#/properties/canadianAddress', '#/properties/sin'];
|
|
5659
5824
|
return jsx(ReviewItem, {
|
|
5660
5825
|
children: categories.map((category, index) => {
|
|
5661
5826
|
const categoryLabel = category.label || category.i18n || 'Unknown Category';
|
|
@@ -5676,7 +5841,7 @@ const FormStepperReviewer = props => {
|
|
|
5676
5841
|
children: readOnly ? 'View' : 'Edit'
|
|
5677
5842
|
})]
|
|
5678
5843
|
}), jsx(GoAGrid, {
|
|
5679
|
-
minChildWidth: "
|
|
5844
|
+
minChildWidth: "100%",
|
|
5680
5845
|
children: category.elements.filter(field => {
|
|
5681
5846
|
var _a, _b;
|
|
5682
5847
|
const conditionProps = (_a = field.rule) === null || _a === void 0 ? void 0 : _a.condition;
|
|
@@ -5690,8 +5855,22 @@ const FormStepperReviewer = props => {
|
|
|
5690
5855
|
} else {
|
|
5691
5856
|
return field;
|
|
5692
5857
|
}
|
|
5693
|
-
}).map(
|
|
5858
|
+
}).map(e => {
|
|
5859
|
+
const layout = e;
|
|
5860
|
+
if (rescopeMaps.some(scope => {
|
|
5861
|
+
var _a;
|
|
5862
|
+
return (_a = layout.elements) === null || _a === void 0 ? void 0 : _a.map(el => {
|
|
5863
|
+
const element = el;
|
|
5864
|
+
return element.scope;
|
|
5865
|
+
}).includes(scope);
|
|
5866
|
+
})) {
|
|
5867
|
+
return layout.elements;
|
|
5868
|
+
} else {
|
|
5869
|
+
return e;
|
|
5870
|
+
}
|
|
5871
|
+
}).flat().map((element, index) => {
|
|
5694
5872
|
return jsx("div", {
|
|
5873
|
+
className: "element-style",
|
|
5695
5874
|
children: jsx(JsonFormsDispatch, {
|
|
5696
5875
|
"data-testid": `jsonforms-object-list-defined-elements-dispatch`,
|
|
5697
5876
|
schema: schema,
|
|
@@ -5707,6 +5886,7 @@ const FormStepperReviewer = props => {
|
|
|
5707
5886
|
})
|
|
5708
5887
|
});
|
|
5709
5888
|
};
|
|
5889
|
+
const FormStepperReviewControl = withAjvProps(withTranslateProps(withJsonFormsLayoutProps(FormStepperReviewer)));
|
|
5710
5890
|
|
|
5711
5891
|
const summaryLabel = 'Summary';
|
|
5712
5892
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
@@ -5875,7 +6055,8 @@ const FormStepper = props => {
|
|
|
5875
6055
|
path,
|
|
5876
6056
|
disabledCategoryMap,
|
|
5877
6057
|
renderers,
|
|
5878
|
-
cells
|
|
6058
|
+
cells,
|
|
6059
|
+
data
|
|
5879
6060
|
};
|
|
5880
6061
|
return jsx("div", {
|
|
5881
6062
|
"data-testid": `step_${index}-content`,
|
|
@@ -6040,7 +6221,7 @@ const DeleteFileModal = ({
|
|
|
6040
6221
|
|
|
6041
6222
|
let _$3 = t => t,
|
|
6042
6223
|
_t$3,
|
|
6043
|
-
_t2$
|
|
6224
|
+
_t2$3,
|
|
6044
6225
|
_t3$2;
|
|
6045
6226
|
const DELAY_UPLOAD_TIMEOUT_MS = 5;
|
|
6046
6227
|
const DELAY_DELETE_TIMEOUT_MS = 5;
|
|
@@ -6206,7 +6387,7 @@ const AttachmentBorderDisabled = styled.div(_t$3 || (_t$3 = _$3`
|
|
|
6206
6387
|
width: fit-content;
|
|
6207
6388
|
background-color: #f1f1f1;
|
|
6208
6389
|
`));
|
|
6209
|
-
const AttachmentBorder = styled.div(_t2$
|
|
6390
|
+
const AttachmentBorder = styled.div(_t2$3 || (_t2$3 = _$3`
|
|
6210
6391
|
display: flex;
|
|
6211
6392
|
flex-direction: row;
|
|
6212
6393
|
border: var(--goa-border-width-s) solid #dcdcdc;
|
|
@@ -6236,21 +6417,7 @@ const FileUploaderStyle = styled.div(_t3$2 || (_t3$2 = _$3`
|
|
|
6236
6417
|
|
|
6237
6418
|
const FileUploaderTester = rankWith(3, and(schemaTypeIs('string'), formatIs('file-urn')));
|
|
6238
6419
|
|
|
6239
|
-
var
|
|
6240
|
-
var aCallable$6 = aCallable$9;
|
|
6241
|
-
var NATIVE_BIND = functionBindNative;
|
|
6242
|
-
|
|
6243
|
-
var bind$4 = uncurryThis$2(uncurryThis$2.bind);
|
|
6244
|
-
|
|
6245
|
-
// optional / simple context binding
|
|
6246
|
-
var functionBindContext = function (fn, that) {
|
|
6247
|
-
aCallable$6(fn);
|
|
6248
|
-
return that === undefined ? fn : NATIVE_BIND ? bind$4(fn, that) : function (/* ...args */) {
|
|
6249
|
-
return fn.apply(that, arguments);
|
|
6250
|
-
};
|
|
6251
|
-
};
|
|
6252
|
-
|
|
6253
|
-
var wellKnownSymbol$4 = wellKnownSymbol$j;
|
|
6420
|
+
var wellKnownSymbol$4 = wellKnownSymbol$k;
|
|
6254
6421
|
var Iterators$1 = iterators;
|
|
6255
6422
|
|
|
6256
6423
|
var ITERATOR$2 = wellKnownSymbol$4('iterator');
|
|
@@ -6261,18 +6428,18 @@ var isArrayIteratorMethod$1 = function (it) {
|
|
|
6261
6428
|
return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$2] === it);
|
|
6262
6429
|
};
|
|
6263
6430
|
|
|
6264
|
-
var classof$
|
|
6431
|
+
var classof$1 = classof$9;
|
|
6265
6432
|
var getMethod$1 = getMethod$5;
|
|
6266
6433
|
var isNullOrUndefined$1 = isNullOrUndefined$6;
|
|
6267
6434
|
var Iterators = iterators;
|
|
6268
|
-
var wellKnownSymbol$3 = wellKnownSymbol$
|
|
6435
|
+
var wellKnownSymbol$3 = wellKnownSymbol$k;
|
|
6269
6436
|
|
|
6270
6437
|
var ITERATOR$1 = wellKnownSymbol$3('iterator');
|
|
6271
6438
|
|
|
6272
6439
|
var getIteratorMethod$2 = function (it) {
|
|
6273
6440
|
if (!isNullOrUndefined$1(it)) return getMethod$1(it, ITERATOR$1)
|
|
6274
6441
|
|| getMethod$1(it, '@@iterator')
|
|
6275
|
-
|| Iterators[classof$
|
|
6442
|
+
|| Iterators[classof$1(it)];
|
|
6276
6443
|
};
|
|
6277
6444
|
|
|
6278
6445
|
var call$5 = functionCall;
|
|
@@ -6318,7 +6485,7 @@ var call$3 = functionCall;
|
|
|
6318
6485
|
var anObject$2 = anObject$f;
|
|
6319
6486
|
var tryToString$1 = tryToString$4;
|
|
6320
6487
|
var isArrayIteratorMethod = isArrayIteratorMethod$1;
|
|
6321
|
-
var lengthOfArrayLike$1 = lengthOfArrayLike$
|
|
6488
|
+
var lengthOfArrayLike$1 = lengthOfArrayLike$7;
|
|
6322
6489
|
var isPrototypeOf$1 = objectIsPrototypeOf;
|
|
6323
6490
|
var getIterator = getIterator$1;
|
|
6324
6491
|
var getIteratorMethod = getIteratorMethod$2;
|
|
@@ -6409,7 +6576,7 @@ $$8({ target: 'Object', stat: true }, {
|
|
|
6409
6576
|
|
|
6410
6577
|
let _$2 = t => t,
|
|
6411
6578
|
_t$2,
|
|
6412
|
-
_t2$
|
|
6579
|
+
_t2$2,
|
|
6413
6580
|
_t3$1,
|
|
6414
6581
|
_t4$1,
|
|
6415
6582
|
_t5$1,
|
|
@@ -6425,7 +6592,7 @@ let _$2 = t => t,
|
|
|
6425
6592
|
const DeleteDialogContent = styled.div(_t$2 || (_t$2 = _$2`
|
|
6426
6593
|
margin-bottom: var(--goa-space-m);
|
|
6427
6594
|
`));
|
|
6428
|
-
const NonEmptyCellStyle = styled.div(_t2$
|
|
6595
|
+
const NonEmptyCellStyle = styled.div(_t2$2 || (_t2$2 = _$2`
|
|
6429
6596
|
goa-table thead th {
|
|
6430
6597
|
background-color: #000:
|
|
6431
6598
|
}
|
|
@@ -7575,7 +7742,7 @@ const GoAListWithDetailsTester = rankWith(3, and(uiTypeIs('ListWithDetail')));
|
|
|
7575
7742
|
|
|
7576
7743
|
let _$1 = t => t,
|
|
7577
7744
|
_t$1,
|
|
7578
|
-
_t2,
|
|
7745
|
+
_t2$1,
|
|
7579
7746
|
_t3,
|
|
7580
7747
|
_t4,
|
|
7581
7748
|
_t5,
|
|
@@ -7622,10 +7789,12 @@ const SearchBox = styled.div(_t$1 || (_t$1 = _$1`
|
|
|
7622
7789
|
pointer-events: none; /* Prevent spinner from interfering with clicks */
|
|
7623
7790
|
}
|
|
7624
7791
|
`));
|
|
7625
|
-
const AddressIndent = styled.div(_t2 || (_t2 = _$1`
|
|
7626
|
-
margin:
|
|
7792
|
+
const AddressIndent = styled.div(_t2$1 || (_t2$1 = _$1`
|
|
7793
|
+
margin: 0.5em 0 0.5em 0;
|
|
7627
7794
|
textwrap: 'wrap';
|
|
7628
7795
|
wordbreak: 'break-word';
|
|
7796
|
+
border: 1px solid #dcdcdc;
|
|
7797
|
+
padding: 1.35em;
|
|
7629
7798
|
`));
|
|
7630
7799
|
const TextWrap = styled.p(_t3 || (_t3 = _$1`
|
|
7631
7800
|
text-wrap: auto;
|
|
@@ -7790,7 +7959,7 @@ const AddressInputs = ({
|
|
|
7790
7959
|
};
|
|
7791
7960
|
|
|
7792
7961
|
var $$7 = _export;
|
|
7793
|
-
var uncurryThis
|
|
7962
|
+
var uncurryThis = functionUncurryThisClause;
|
|
7794
7963
|
var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
|
|
7795
7964
|
var toLength = toLength$5;
|
|
7796
7965
|
var toString = toString$e;
|
|
@@ -7798,7 +7967,7 @@ var notARegExp = notARegexp;
|
|
|
7798
7967
|
var requireObjectCoercible = requireObjectCoercible$b;
|
|
7799
7968
|
var correctIsRegExpLogic = correctIsRegexpLogic;
|
|
7800
7969
|
|
|
7801
|
-
var slice = uncurryThis
|
|
7970
|
+
var slice = uncurryThis(''.slice);
|
|
7802
7971
|
var min = Math.min;
|
|
7803
7972
|
|
|
7804
7973
|
var CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic('endsWith');
|
|
@@ -7896,7 +8065,8 @@ const formatPostalCode = value => {
|
|
|
7896
8065
|
};
|
|
7897
8066
|
|
|
7898
8067
|
let _ = t => t,
|
|
7899
|
-
_t
|
|
8068
|
+
_t,
|
|
8069
|
+
_t2;
|
|
7900
8070
|
const HelpContentDiv = styled.div(_t || (_t = _`
|
|
7901
8071
|
.parent-label {
|
|
7902
8072
|
font-size: 24px;
|
|
@@ -7922,6 +8092,9 @@ const HelpContentDiv = styled.div(_t || (_t = _`
|
|
|
7922
8092
|
margin: var(--goa-space-2xs) 0 var(--goa-space-2xs) 0;
|
|
7923
8093
|
}
|
|
7924
8094
|
`));
|
|
8095
|
+
const InvalidMarkdown = styled.div(_t2 || (_t2 = _`
|
|
8096
|
+
color: var(--goa-color-interactive-error);
|
|
8097
|
+
`));
|
|
7925
8098
|
|
|
7926
8099
|
const linkLength = 40;
|
|
7927
8100
|
const invalidExtensions = ['exe'];
|
|
@@ -7984,10 +8157,45 @@ const RenderLink = props => {
|
|
|
7984
8157
|
};
|
|
7985
8158
|
|
|
7986
8159
|
const HelpContentReviewComponent = () => {
|
|
7987
|
-
return jsx(Fragment, {
|
|
8160
|
+
return jsx(Fragment, {
|
|
8161
|
+
children: " "
|
|
8162
|
+
});
|
|
8163
|
+
};
|
|
8164
|
+
const checkMarkDownIsValid = markdown => {
|
|
8165
|
+
let isValid = true;
|
|
8166
|
+
let error = '';
|
|
8167
|
+
try {
|
|
8168
|
+
compileSync(markdown, {});
|
|
8169
|
+
} catch (err) {
|
|
8170
|
+
if (err instanceof Error) {
|
|
8171
|
+
error = err.message;
|
|
8172
|
+
error = error.slice(0, error.lastIndexOf(`\``) + 1);
|
|
8173
|
+
}
|
|
8174
|
+
isValid = false;
|
|
8175
|
+
}
|
|
8176
|
+
return {
|
|
8177
|
+
isValid,
|
|
8178
|
+
error
|
|
8179
|
+
};
|
|
8180
|
+
};
|
|
8181
|
+
const MarkdownComponent = ({
|
|
8182
|
+
markdown
|
|
8183
|
+
}) => {
|
|
8184
|
+
const response = checkMarkDownIsValid(markdown);
|
|
8185
|
+
if (response.isValid) {
|
|
8186
|
+
const {
|
|
8187
|
+
default: MDXContent
|
|
8188
|
+
} = evaluateSync(markdown, Object.assign(Object.assign({}, runtime), {
|
|
8189
|
+
Fragment: React.Fragment
|
|
8190
|
+
}));
|
|
8191
|
+
return /*#__PURE__*/React.createElement(MDXContent, {});
|
|
8192
|
+
}
|
|
8193
|
+
return jsxs(InvalidMarkdown, {
|
|
8194
|
+
children: ["Help content markdown is invalid: ", response.error, " "]
|
|
8195
|
+
});
|
|
7988
8196
|
};
|
|
7989
8197
|
const HelpContentComponent = _a => {
|
|
7990
|
-
var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
|
|
8198
|
+
var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v;
|
|
7991
8199
|
var {
|
|
7992
8200
|
isParent = true,
|
|
7993
8201
|
showLabel = true
|
|
@@ -8002,17 +8210,16 @@ const HelpContentComponent = _a => {
|
|
|
8002
8210
|
label
|
|
8003
8211
|
} = props;
|
|
8004
8212
|
const link = (_b = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _b === void 0 ? void 0 : _b.link;
|
|
8005
|
-
const
|
|
8006
|
-
|
|
8007
|
-
|
|
8008
|
-
|
|
8009
|
-
|
|
8010
|
-
|
|
8011
|
-
|
|
8012
|
-
|
|
8013
|
-
|
|
8014
|
-
|
|
8015
|
-
};
|
|
8213
|
+
const markdown = (_d = (_c = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _c === void 0 ? void 0 : _c.markdown) !== null && _d !== void 0 ? _d : false;
|
|
8214
|
+
const help = (_e = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _e === void 0 ? void 0 : _e.help;
|
|
8215
|
+
const renderHelp = () => Array.isArray(help) ? jsx("ul", {
|
|
8216
|
+
children: help.map((line, index) => jsx("li", {
|
|
8217
|
+
children: `${line}`
|
|
8218
|
+
}, index))
|
|
8219
|
+
}) : jsx("p", {
|
|
8220
|
+
className: "single-line",
|
|
8221
|
+
children: help
|
|
8222
|
+
});
|
|
8016
8223
|
const renderImage = ({
|
|
8017
8224
|
height,
|
|
8018
8225
|
width,
|
|
@@ -8027,25 +8234,40 @@ const HelpContentComponent = _a => {
|
|
|
8027
8234
|
"aria-label": "help-content-toggle-icon"
|
|
8028
8235
|
});
|
|
8029
8236
|
};
|
|
8030
|
-
|
|
8237
|
+
/* istanbul ignore next */
|
|
8238
|
+
const getMarkDownData = helpText => {
|
|
8239
|
+
if (helpText === undefined) return '';
|
|
8240
|
+
if (typeof helpText === 'string') return helpText;
|
|
8241
|
+
if (Array.isArray(helpText)) {
|
|
8242
|
+
const data = helpText.join('\n');
|
|
8243
|
+
return data;
|
|
8244
|
+
}
|
|
8245
|
+
return '';
|
|
8246
|
+
};
|
|
8247
|
+
const textVariant = !((_f = uischema.options) === null || _f === void 0 ? void 0 : _f.variant) || ((_g = uischema.options) === null || _g === void 0 ? void 0 : _g.variant) !== 'details' && ((_h = uischema.options) === null || _h === void 0 ? void 0 : _h.variant) !== 'hyperlink';
|
|
8248
|
+
if (markdown) {
|
|
8249
|
+
return MarkdownComponent({
|
|
8250
|
+
markdown: getMarkDownData((_j = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _j === void 0 ? void 0 : _j.help)
|
|
8251
|
+
});
|
|
8252
|
+
}
|
|
8031
8253
|
return jsx(Visible, {
|
|
8032
8254
|
visible: visible,
|
|
8033
8255
|
children: jsx(HelpContentDiv, {
|
|
8034
|
-
"aria-label": (
|
|
8256
|
+
"aria-label": (_k = uischema.options) === null || _k === void 0 ? void 0 : _k.ariaLabel,
|
|
8035
8257
|
children: jsxs("div", {
|
|
8036
8258
|
className: marginClass,
|
|
8037
|
-
children: [label && showLabel && (!((
|
|
8259
|
+
children: [label && showLabel && (!((_l = uischema.options) === null || _l === void 0 ? void 0 : _l.variant) || ((_m = uischema.options) === null || _m === void 0 ? void 0 : _m.variant) === 'hyperlink') && jsxs("div", {
|
|
8038
8260
|
className: labelClass,
|
|
8039
8261
|
"data-testid": label,
|
|
8040
8262
|
children: [label, jsx("br", {})]
|
|
8041
|
-
}), ((
|
|
8263
|
+
}), ((_o = uischema.options) === null || _o === void 0 ? void 0 : _o.variant) && ((_p = uischema.options) === null || _p === void 0 ? void 0 : _p.variant) === 'img' && renderImage(uischema.options), ((_q = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _q === void 0 ? void 0 : _q.variant) && ((_r = uischema.options) === null || _r === void 0 ? void 0 : _r.variant) === 'hyperlink' && link && RenderLink(uischema === null || uischema === void 0 ? void 0 : uischema.options), textVariant && renderHelp(), ((_s = uischema.options) === null || _s === void 0 ? void 0 : _s.variant) && ((_t = uischema.options) === null || _t === void 0 ? void 0 : _t.variant) === 'details' && jsxs(GoADetails, {
|
|
8042
8264
|
heading: label ? label : '',
|
|
8043
8265
|
mt: "3xs",
|
|
8044
8266
|
mb: "none",
|
|
8045
|
-
children: [renderHelp(), (uischema === null || uischema === void 0 ? void 0 : uischema.elements) && ((
|
|
8267
|
+
children: [renderHelp(), (uischema === null || uischema === void 0 ? void 0 : uischema.elements) && ((_u = uischema === null || uischema === void 0 ? void 0 : uischema.elements) === null || _u === void 0 ? void 0 : _u.length) > 0 && jsx(HelpContents, {
|
|
8046
8268
|
elements: uischema === null || uischema === void 0 ? void 0 : uischema.elements
|
|
8047
8269
|
})]
|
|
8048
|
-
}), (uischema === null || uischema === void 0 ? void 0 : uischema.elements) && (uischema === null || uischema === void 0 ? void 0 : uischema.elements.length) > 0 && ((
|
|
8270
|
+
}), (uischema === null || uischema === void 0 ? void 0 : uischema.elements) && (uischema === null || uischema === void 0 ? void 0 : uischema.elements.length) > 0 && ((_v = uischema.options) === null || _v === void 0 ? void 0 : _v.variant) !== 'details' && jsx(HelpContents, {
|
|
8049
8271
|
elements: uischema.elements,
|
|
8050
8272
|
isParent: false
|
|
8051
8273
|
})]
|
|
@@ -8120,7 +8342,7 @@ const AddressLookUpControl = props => {
|
|
|
8120
8342
|
const dropdownRef = useRef(null);
|
|
8121
8343
|
const handleInputChange = (field, value) => {
|
|
8122
8344
|
var _a, _b;
|
|
8123
|
-
if (field === 'addressLine1'
|
|
8345
|
+
if (field === 'addressLine1') {
|
|
8124
8346
|
setDropdownSelected(false);
|
|
8125
8347
|
}
|
|
8126
8348
|
let newAddress;
|
|
@@ -8191,6 +8413,18 @@ const AddressLookUpControl = props => {
|
|
|
8191
8413
|
setSuggestions([]);
|
|
8192
8414
|
setOpen(false);
|
|
8193
8415
|
};
|
|
8416
|
+
useEffect(() => {
|
|
8417
|
+
var _a;
|
|
8418
|
+
if (dropdownRef.current && selectedIndex !== -1) {
|
|
8419
|
+
const activeItem = (_a = dropdownRef.current) === null || _a === void 0 ? void 0 : _a.querySelector(`li[data-index="${selectedIndex}"]`);
|
|
8420
|
+
if (activeItem) {
|
|
8421
|
+
activeItem.scrollIntoView({
|
|
8422
|
+
behavior: 'smooth',
|
|
8423
|
+
block: 'nearest'
|
|
8424
|
+
});
|
|
8425
|
+
}
|
|
8426
|
+
}
|
|
8427
|
+
}, [selectedIndex]);
|
|
8194
8428
|
const handleKeyDown = (e, value, key) => {
|
|
8195
8429
|
var _a;
|
|
8196
8430
|
if (key === 'ArrowDown') {
|
|
@@ -8384,7 +8618,7 @@ const AddressViews = ({
|
|
|
8384
8618
|
})
|
|
8385
8619
|
})]
|
|
8386
8620
|
})]
|
|
8387
|
-
})
|
|
8621
|
+
})]
|
|
8388
8622
|
});
|
|
8389
8623
|
};
|
|
8390
8624
|
|
|
@@ -8402,7 +8636,7 @@ const AddressLookUpControlReview = props => {
|
|
|
8402
8636
|
};
|
|
8403
8637
|
|
|
8404
8638
|
const isPropertiesMatch = (obj, props, isExactMatch) => {
|
|
8405
|
-
if (isObject$
|
|
8639
|
+
if (isObject$f(obj)) {
|
|
8406
8640
|
const keys = Object.keys(obj);
|
|
8407
8641
|
if (isExactMatch) {
|
|
8408
8642
|
return props.every(attr => keys.includes(attr)) && keys.length === props.length;
|
|
@@ -8417,9 +8651,9 @@ const createSchemaMatchTester = (props, isExactMatch = false) => {
|
|
|
8417
8651
|
if (!isControl(uischema) || !isScoped(uischema)) {
|
|
8418
8652
|
return false;
|
|
8419
8653
|
}
|
|
8420
|
-
if ((schema === null || schema === void 0 ? void 0 : schema.properties) && isObject$
|
|
8654
|
+
if ((schema === null || schema === void 0 ? void 0 : schema.properties) && isObject$f(schema === null || schema === void 0 ? void 0 : schema.properties)) {
|
|
8421
8655
|
const propertyFromScope = uischema['scope'].split('/').pop();
|
|
8422
|
-
if (isObject$
|
|
8656
|
+
if (isObject$f(schema.properties[propertyFromScope]) && 'properties' in schema.properties[propertyFromScope]) {
|
|
8423
8657
|
const objToTest = schema.properties[propertyFromScope]['properties'];
|
|
8424
8658
|
if (objToTest && isPropertiesMatch(objToTest, props, isExactMatch)) {
|
|
8425
8659
|
return true;
|
|
@@ -8595,7 +8829,7 @@ const FullNameControl = props => {
|
|
|
8595
8829
|
};
|
|
8596
8830
|
|
|
8597
8831
|
const isFullNameSchema = obj => {
|
|
8598
|
-
if (isObject$
|
|
8832
|
+
if (isObject$f(obj)) {
|
|
8599
8833
|
const keys = Object.keys(obj);
|
|
8600
8834
|
return ['firstName', 'middleName', 'lastName'].every(attr => keys.includes(attr)) && keys.length === 3;
|
|
8601
8835
|
}
|
|
@@ -8605,9 +8839,9 @@ const isFullName = (uischema, schema, context) => {
|
|
|
8605
8839
|
if (!isControl(uischema) || !isScoped(uischema)) {
|
|
8606
8840
|
return false;
|
|
8607
8841
|
}
|
|
8608
|
-
if ((schema === null || schema === void 0 ? void 0 : schema.properties) && isObject$
|
|
8842
|
+
if ((schema === null || schema === void 0 ? void 0 : schema.properties) && isObject$f(schema === null || schema === void 0 ? void 0 : schema.properties)) {
|
|
8609
8843
|
const propertyFromScope = uischema['scope'].split('/').pop();
|
|
8610
|
-
if (isObject$
|
|
8844
|
+
if (isObject$f(schema.properties[propertyFromScope]) && 'properties' in schema.properties[propertyFromScope]) {
|
|
8611
8845
|
const objToTest = schema.properties[propertyFromScope]['properties'];
|
|
8612
8846
|
if (objToTest && isFullNameSchema(objToTest)) {
|
|
8613
8847
|
return true;
|
|
@@ -8824,7 +9058,7 @@ const FullNameDobReviewControl = props => {
|
|
|
8824
9058
|
};
|
|
8825
9059
|
|
|
8826
9060
|
const isFullNameDoBSchema = obj => {
|
|
8827
|
-
if (isObject$
|
|
9061
|
+
if (isObject$f(obj)) {
|
|
8828
9062
|
const keys = Object.keys(obj);
|
|
8829
9063
|
return ['firstName', 'middleName', 'lastName', 'dateOfBirth'].every(attr => keys.includes(attr)) && keys.length === 4;
|
|
8830
9064
|
}
|
|
@@ -8834,9 +9068,9 @@ const isFullNameDoB = (uischema, schema, context) => {
|
|
|
8834
9068
|
if (!isControl(uischema) || !isScoped(uischema)) {
|
|
8835
9069
|
return false;
|
|
8836
9070
|
}
|
|
8837
|
-
if ((schema === null || schema === void 0 ? void 0 : schema.properties) && isObject$
|
|
9071
|
+
if ((schema === null || schema === void 0 ? void 0 : schema.properties) && isObject$f(schema === null || schema === void 0 ? void 0 : schema.properties)) {
|
|
8838
9072
|
const propertyFromScope = uischema['scope'].split('/').pop();
|
|
8839
|
-
if (isObject$
|
|
9073
|
+
if (isObject$f(schema.properties[propertyFromScope]) && 'properties' in schema.properties[propertyFromScope]) {
|
|
8840
9074
|
const objToTest = schema.properties[propertyFromScope]['properties'];
|
|
8841
9075
|
if (objToTest && isFullNameDoBSchema(objToTest)) {
|
|
8842
9076
|
return true;
|
|
@@ -9197,9 +9431,9 @@ const createDefaultAjv = (...schemas) => {
|
|
|
9197
9431
|
};
|
|
9198
9432
|
|
|
9199
9433
|
var aCallable$4 = aCallable$9;
|
|
9200
|
-
var toObject = toObject$
|
|
9434
|
+
var toObject = toObject$8;
|
|
9201
9435
|
var IndexedObject = indexedObject;
|
|
9202
|
-
var lengthOfArrayLike = lengthOfArrayLike$
|
|
9436
|
+
var lengthOfArrayLike = lengthOfArrayLike$7;
|
|
9203
9437
|
|
|
9204
9438
|
var $TypeError$4 = TypeError;
|
|
9205
9439
|
|
|
@@ -9242,20 +9476,20 @@ var arrayReduce = {
|
|
|
9242
9476
|
right: createMethod(true)
|
|
9243
9477
|
};
|
|
9244
9478
|
|
|
9245
|
-
var fails$
|
|
9479
|
+
var fails$1 = fails$r;
|
|
9246
9480
|
|
|
9247
9481
|
var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
|
|
9248
9482
|
var method = [][METHOD_NAME];
|
|
9249
|
-
return !!method && fails$
|
|
9483
|
+
return !!method && fails$1(function () {
|
|
9250
9484
|
// eslint-disable-next-line no-useless-call -- required for testing
|
|
9251
9485
|
method.call(null, argument || function () { return 1; }, 1);
|
|
9252
9486
|
});
|
|
9253
9487
|
};
|
|
9254
9488
|
|
|
9255
9489
|
var global$7 = global$o;
|
|
9256
|
-
var classof
|
|
9490
|
+
var classof = classofRaw$2;
|
|
9257
9491
|
|
|
9258
|
-
var engineIsNode = classof
|
|
9492
|
+
var engineIsNode = classof(global$7.process) === 'process';
|
|
9259
9493
|
|
|
9260
9494
|
var $$6 = _export;
|
|
9261
9495
|
var $reduce = arrayReduce.left;
|
|
@@ -9286,59 +9520,7 @@ var anInstance$1 = function (it, Prototype) {
|
|
|
9286
9520
|
throw new $TypeError$3('Incorrect invocation');
|
|
9287
9521
|
};
|
|
9288
9522
|
|
|
9289
|
-
var
|
|
9290
|
-
var fails$1 = fails$r;
|
|
9291
|
-
var isCallable$4 = isCallable$q;
|
|
9292
|
-
var classof = classof$9;
|
|
9293
|
-
var getBuiltIn$2 = getBuiltIn$9;
|
|
9294
|
-
var inspectSource$1 = inspectSource$3;
|
|
9295
|
-
|
|
9296
|
-
var noop = function () { /* empty */ };
|
|
9297
|
-
var construct = getBuiltIn$2('Reflect', 'construct');
|
|
9298
|
-
var constructorRegExp = /^\s*(?:class|function)\b/;
|
|
9299
|
-
var exec = uncurryThis(constructorRegExp.exec);
|
|
9300
|
-
var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
|
|
9301
|
-
|
|
9302
|
-
var isConstructorModern = function isConstructor(argument) {
|
|
9303
|
-
if (!isCallable$4(argument)) return false;
|
|
9304
|
-
try {
|
|
9305
|
-
construct(noop, [], argument);
|
|
9306
|
-
return true;
|
|
9307
|
-
} catch (error) {
|
|
9308
|
-
return false;
|
|
9309
|
-
}
|
|
9310
|
-
};
|
|
9311
|
-
|
|
9312
|
-
var isConstructorLegacy = function isConstructor(argument) {
|
|
9313
|
-
if (!isCallable$4(argument)) return false;
|
|
9314
|
-
switch (classof(argument)) {
|
|
9315
|
-
case 'AsyncFunction':
|
|
9316
|
-
case 'GeneratorFunction':
|
|
9317
|
-
case 'AsyncGeneratorFunction': return false;
|
|
9318
|
-
}
|
|
9319
|
-
try {
|
|
9320
|
-
// we can't check .prototype since constructors produced by .bind haven't it
|
|
9321
|
-
// `Function#toString` throws on some built-it function in some legacy engines
|
|
9322
|
-
// (for example, `DOMQuad` and similar in FF41-)
|
|
9323
|
-
return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource$1(argument));
|
|
9324
|
-
} catch (error) {
|
|
9325
|
-
return true;
|
|
9326
|
-
}
|
|
9327
|
-
};
|
|
9328
|
-
|
|
9329
|
-
isConstructorLegacy.sham = true;
|
|
9330
|
-
|
|
9331
|
-
// `IsConstructor` abstract operation
|
|
9332
|
-
// https://tc39.es/ecma262/#sec-isconstructor
|
|
9333
|
-
var isConstructor$1 = !construct || fails$1(function () {
|
|
9334
|
-
var called;
|
|
9335
|
-
return isConstructorModern(isConstructorModern.call)
|
|
9336
|
-
|| !isConstructorModern(Object)
|
|
9337
|
-
|| !isConstructorModern(function () { called = true; })
|
|
9338
|
-
|| called;
|
|
9339
|
-
}) ? isConstructorLegacy : isConstructorModern;
|
|
9340
|
-
|
|
9341
|
-
var isConstructor = isConstructor$1;
|
|
9523
|
+
var isConstructor = isConstructor$2;
|
|
9342
9524
|
var tryToString = tryToString$4;
|
|
9343
9525
|
|
|
9344
9526
|
var $TypeError$2 = TypeError;
|
|
@@ -9352,7 +9534,7 @@ var aConstructor$1 = function (argument) {
|
|
|
9352
9534
|
var anObject$1 = anObject$f;
|
|
9353
9535
|
var aConstructor = aConstructor$1;
|
|
9354
9536
|
var isNullOrUndefined = isNullOrUndefined$6;
|
|
9355
|
-
var wellKnownSymbol$2 = wellKnownSymbol$
|
|
9537
|
+
var wellKnownSymbol$2 = wellKnownSymbol$k;
|
|
9356
9538
|
|
|
9357
9539
|
var SPECIES$1 = wellKnownSymbol$2('species');
|
|
9358
9540
|
|
|
@@ -9652,7 +9834,7 @@ var NativePromiseConstructor$3 = promiseNativeConstructor;
|
|
|
9652
9834
|
var isCallable$2 = isCallable$q;
|
|
9653
9835
|
var isForced = isForced_1;
|
|
9654
9836
|
var inspectSource = inspectSource$3;
|
|
9655
|
-
var wellKnownSymbol$1 = wellKnownSymbol$
|
|
9837
|
+
var wellKnownSymbol$1 = wellKnownSymbol$k;
|
|
9656
9838
|
var IS_BROWSER = engineIsBrowser;
|
|
9657
9839
|
var IS_DENO = engineIsDeno;
|
|
9658
9840
|
var V8_VERSION = engineV8Version;
|
|
@@ -9725,7 +9907,7 @@ var setToStringTag = setToStringTag$4;
|
|
|
9725
9907
|
var setSpecies = setSpecies$2;
|
|
9726
9908
|
var aCallable$2 = aCallable$9;
|
|
9727
9909
|
var isCallable$1 = isCallable$q;
|
|
9728
|
-
var isObject$1 = isObject$
|
|
9910
|
+
var isObject$1 = isObject$e;
|
|
9729
9911
|
var anInstance = anInstance$1;
|
|
9730
9912
|
var speciesConstructor = speciesConstructor$1;
|
|
9731
9913
|
var task = task$1.set;
|
|
@@ -10002,7 +10184,7 @@ $$5({ global: true, constructor: true, wrap: true, forced: FORCED_PROMISE_CONSTR
|
|
|
10002
10184
|
setToStringTag(PromiseConstructor, PROMISE, false);
|
|
10003
10185
|
setSpecies(PROMISE);
|
|
10004
10186
|
|
|
10005
|
-
var wellKnownSymbol = wellKnownSymbol$
|
|
10187
|
+
var wellKnownSymbol = wellKnownSymbol$k;
|
|
10006
10188
|
|
|
10007
10189
|
var ITERATOR = wellKnownSymbol('iterator');
|
|
10008
10190
|
var SAFE_CLOSING = false;
|
|
@@ -10157,7 +10339,7 @@ $$1({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
|
|
|
10157
10339
|
});
|
|
10158
10340
|
|
|
10159
10341
|
var anObject = anObject$f;
|
|
10160
|
-
var isObject = isObject$
|
|
10342
|
+
var isObject = isObject$e;
|
|
10161
10343
|
var newPromiseCapability = newPromiseCapability$2;
|
|
10162
10344
|
|
|
10163
10345
|
var promiseResolve$1 = function (C, x) {
|
|
@@ -10363,7 +10545,7 @@ const GoABaseReviewRenderers = [
|
|
|
10363
10545
|
}];
|
|
10364
10546
|
const GoAReviewRenderers = [...GoABaseReviewRenderers, {
|
|
10365
10547
|
tester: CategorizationRendererTester,
|
|
10366
|
-
renderer:
|
|
10548
|
+
renderer: FormStepperReviewControl
|
|
10367
10549
|
}, {
|
|
10368
10550
|
tester: FileUploaderTester,
|
|
10369
10551
|
renderer: withJsonFormsControlProps(FileUploaderReview)
|
|
@@ -10395,4 +10577,4 @@ const GoARenderers = [...GoABaseRenderers, {
|
|
|
10395
10577
|
}];
|
|
10396
10578
|
const GoACells = [...InputCells];
|
|
10397
10579
|
|
|
10398
|
-
export { ADD_DATALIST_ACTION, ADD_NO_ANONYMOUS_ACTION, ADD_REGISTER_DATA_ACTION, ADD_REGISTER_DATA_ERROR, AddressLookUpControl, AddressLookUpControlReview, AddressLookUpTester, ArrayControl, ArrayControlBase, ArrayControlReview, BooleanComponent, BooleanControl, BooleanRadioComponent, BooleanRadioControl, CategorizationRendererTester, CheckboxGroup, ContextProviderC, ContextProviderClass, ContextProviderFactory, EnumCheckboxControl, EnumRadioControl, EnumSelect, FileUploader, FileUploaderReview, FileUploaderTester, FormStepper, FormStepperControl, FormStepperReviewer, FullNameControl, FullNameDobControl, FullNameDobReviewControl, FullNameDobTester, FullNameReviewControl, FullNameTester, GoAArrayControlRenderer, GoAArrayControlReviewRenderer, GoAArrayControlTester, GoABaseInputReviewComponent, GoABaseRenderers, GoABaseReviewRenderers, GoABooleanControl, GoABooleanControlTester, GoABooleanRadioControl, GoABooleanRadioControlTester, GoACells, GoACheckoutGroupControlTester, GoADateControl, GoADateControlTester, GoADateInput, GoADateTimeControl, GoADateTimeControlTester, GoADateTimeInput, GoAEnumCheckboxGroupControl, GoAEnumControl, GoAEnumControlTester, GoAEnumRadioGroupControl, GoAInputBaseControl, GoAInputDateControl, GoAInputDateTimeControl, GoAInputInteger, GoAInputIntegerControl, GoAInputNumberControl, GoAInputText, GoAInputTextControl, GoAInputTimeControl, GoAIntegerControl, GoAIntegerControlTester, GoAListWithDetailsControlRenderer, GoAListWithDetailsTester, GoANumberControl, GoANumberControlTester, GoANumberInput, GoARadioGroupControlTester, GoARenderers, GoAReviewRenderers, GoATextControl, GoATextControlTester, GoATimeControl, GoATimeControlTester, GoATimeInput, GoInputBaseReview, GoInputBaseReviewControl, JsonFormContext, JsonFormRegisterProvider, JsonFormsRegisterContext, ListWithDetailsControl, MultiLineText, MultiLineTextControl, MultiLineTextControlInput, MultiLineTextControlTester, RadioGroup, createDefaultAjv, enumControl, errMalformedDate, formatSin, isAddressLookup, isFullName, isFullNameDoB, registerReducer, resolveRefs, tryResolveRefs };
|
|
10580
|
+
export { ADD_DATALIST_ACTION, ADD_NO_ANONYMOUS_ACTION, ADD_REGISTER_DATA_ACTION, ADD_REGISTER_DATA_ERROR, AddressLookUpControl, AddressLookUpControlReview, AddressLookUpTester, ArrayControl, ArrayControlBase, ArrayControlReview, BooleanComponent, BooleanControl, BooleanRadioComponent, BooleanRadioControl, CategorizationRendererTester, CheckboxGroup, ContextProviderC, ContextProviderClass, ContextProviderFactory, EnumCheckboxControl, EnumRadioControl, EnumSelect, FileUploader, FileUploaderReview, FileUploaderTester, FormStepper, FormStepperControl, FormStepperReviewControl, FormStepperReviewer, FullNameControl, FullNameDobControl, FullNameDobReviewControl, FullNameDobTester, FullNameReviewControl, FullNameTester, GoAArrayControlRenderer, GoAArrayControlReviewRenderer, GoAArrayControlTester, GoABaseInputReviewComponent, GoABaseRenderers, GoABaseReviewRenderers, GoABooleanControl, GoABooleanControlTester, GoABooleanRadioControl, GoABooleanRadioControlTester, GoACells, GoACheckoutGroupControlTester, GoADateControl, GoADateControlTester, GoADateInput, GoADateTimeControl, GoADateTimeControlTester, GoADateTimeInput, GoAEnumCheckboxGroupControl, GoAEnumControl, GoAEnumControlTester, GoAEnumRadioGroupControl, GoAInputBaseControl, GoAInputDateControl, GoAInputDateTimeControl, GoAInputInteger, GoAInputIntegerControl, GoAInputNumberControl, GoAInputText, GoAInputTextControl, GoAInputTimeControl, GoAIntegerControl, GoAIntegerControlTester, GoAListWithDetailsControlRenderer, GoAListWithDetailsTester, GoANumberControl, GoANumberControlTester, GoANumberInput, GoARadioGroupControlTester, GoARenderers, GoAReviewRenderers, GoATextControl, GoATextControlTester, GoATimeControl, GoATimeControlTester, GoATimeInput, GoInputBaseReview, GoInputBaseReviewControl, JsonFormContext, JsonFormRegisterProvider, JsonFormsRegisterContext, ListWithDetailsControl, MultiLineText, MultiLineTextControl, MultiLineTextControlInput, MultiLineTextControlTester, RadioGroup, createDefaultAjv, enumControl, errMalformedDate, formatSin, isAddressLookup, isFullName, isFullNameDoB, registerReducer, resolveRefs, tryResolveRefs };
|