diff --git a/21733.a99b7575.async.js b/21733.7b0c078c.async.js similarity index 99% rename from 21733.a99b7575.async.js rename to 21733.7b0c078c.async.js index 4aa2cfe8de..c8debb9002 100644 --- a/21733.a99b7575.async.js +++ b/21733.7b0c078c.async.js @@ -150,7 +150,7 @@ var _default = exports["default"] = RefIcon; /***/ }), -/***/ 13305: +/***/ 82141: /*!***************************************************************************************************************!*\ !*** ./node_modules/_@ant-design_pro-form@2.29.0@@ant-design/pro-form/es/BaseForm/createField.js + 4 modules ***! \***************************************************************************************************************/ @@ -194,12 +194,12 @@ function pickProFormItemProps(props) { }); return attrs; } -// EXTERNAL MODULE: ./node_modules/_safe-stable-stringify@2.4.3@safe-stable-stringify/index.js -var _safe_stable_stringify_2_4_3_safe_stable_stringify = __webpack_require__(15894); -;// CONCATENATED MODULE: ./node_modules/_safe-stable-stringify@2.4.3@safe-stable-stringify/esm/wrapper.js +// EXTERNAL MODULE: ./node_modules/_safe-stable-stringify@2.5.0@safe-stable-stringify/index.js +var _safe_stable_stringify_2_5_0_safe_stable_stringify = __webpack_require__(53680); +;// CONCATENATED MODULE: ./node_modules/_safe-stable-stringify@2.5.0@safe-stable-stringify/esm/wrapper.js -const configure = _safe_stable_stringify_2_4_3_safe_stable_stringify.configure +const configure = _safe_stable_stringify_2_5_0_safe_stable_stringify.configure const stringify = (/* unused pure expression or super */ null && (cjsModule)) /* harmony default export */ var wrapper = ((/* unused pure expression or super */ null && (cjsModule))); @@ -600,7 +600,7 @@ function createField(Field, config) { /* harmony import */ var _ant_design_pro_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @ant-design/pro-utils */ 22102); /* harmony import */ var antd__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! antd */ 24905); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 59301); -/* harmony import */ var _BaseForm_createField__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../BaseForm/createField */ 13305); +/* harmony import */ var _BaseForm_createField__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../BaseForm/createField */ 82141); /* harmony import */ var _Field__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Field */ 40647); /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 37712); @@ -14389,7 +14389,7 @@ var isDeepEqualReact = __webpack_require__(91517); // EXTERNAL MODULE: ./node_modules/_@ant-design_pro-form@2.29.0@@ant-design/pro-form/es/BaseForm/EditOrReadOnlyContext.js var EditOrReadOnlyContext = __webpack_require__(5774); // EXTERNAL MODULE: ./node_modules/_@ant-design_pro-form@2.29.0@@ant-design/pro-form/es/BaseForm/createField.js + 4 modules -var createField = __webpack_require__(13305); +var createField = __webpack_require__(82141); ;// CONCATENATED MODULE: ./node_modules/_@ant-design_pro-form@2.29.0@@ant-design/pro-form/es/components/Field/index.js @@ -15201,7 +15201,7 @@ var ProFormItem = function ProFormItem(props) { /* harmony import */ var _ant_design_pro_utils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @ant-design/pro-utils */ 22102); /* harmony import */ var antd__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! antd */ 5112); /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ 59301); -/* harmony import */ var _BaseForm_createField__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../BaseForm/createField */ 13305); +/* harmony import */ var _BaseForm_createField__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../BaseForm/createField */ 82141); /* harmony import */ var _Field__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Field */ 40647); /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react/jsx-runtime */ 37712); @@ -23411,9 +23411,9 @@ exports["default"] = mergeClasses; /***/ }), -/***/ 15894: +/***/ 53680: /*!**********************************************************************************!*\ - !*** ./node_modules/_safe-stable-stringify@2.4.3@safe-stable-stringify/index.js ***! + !*** ./node_modules/_safe-stable-stringify@2.5.0@safe-stable-stringify/index.js ***! \**********************************************************************************/ /***/ (function(module, exports) { @@ -23440,7 +23440,7 @@ exports.configure = configure module.exports = stringify // eslint-disable-next-line no-control-regex -const strEscapeSequencesRegExp = /[\u0000-\u001f\u0022\u005c\ud800-\udfff]|[\ud800-\udbff](?![\udc00-\udfff])|(?:[^\ud800-\udbff]|^)[\udc00-\udfff]/ +const strEscapeSequencesRegExp = /[\u0000-\u001f\u0022\u005c\ud800-\udfff]/ // Escape C0 control characters, double quotes, the backslash and every code // unit with a numeric value in the inclusive range 0xD800 to 0xDFFF. @@ -23452,11 +23452,11 @@ function strEscape (str) { return JSON.stringify(str) } -function insertSort (array) { - // Insertion sort is very efficient for small input sizes but it has a bad +function sort (array, comparator) { + // Insertion sort is very efficient for small input sizes, but it has a bad // worst case complexity. Thus, use native array sort for bigger values. - if (array.length > 2e2) { - return array.sort() + if (array.length > 2e2 || comparator) { + return array.sort(comparator) } for (let i = 1; i < array.length; i++) { const currentValue = array[i] @@ -23517,6 +23517,17 @@ function getCircularValueOption (options) { return '"[Circular]"' } +function getDeterministicOption (options) { + let value + if (hasOwnProperty.call(options, 'deterministic')) { + value = options.deterministic + if (typeof value !== 'boolean' && typeof value !== 'function') { + throw new TypeError('The "deterministic" argument must be of type boolean or comparator function') + } + } + return value === undefined ? true : value +} + function getBooleanOption (options, key) { let value if (hasOwnProperty.call(options, key)) { @@ -23591,7 +23602,8 @@ function configure (options) { } const circularValue = getCircularValueOption(options) const bigint = getBooleanOption(options, 'bigint') - const deterministic = getBooleanOption(options, 'deterministic') + const deterministic = getDeterministicOption(options) + const comparator = typeof deterministic === 'function' ? deterministic : undefined const maximumDepth = getPositiveIntegerOption(options, 'maximumDepth') const maximumBreadth = getPositiveIntegerOption(options, 'maximumBreadth') @@ -23668,7 +23680,7 @@ function configure (options) { } const maximumPropertiesToStringify = Math.min(keyLength, maximumBreadth) if (deterministic && !isTypedArrayWithEntries(value)) { - keys = insertSort(keys) + keys = sort(keys, comparator) } stack.push(value) for (let i = 0; i < maximumPropertiesToStringify; i++) { @@ -23867,7 +23879,7 @@ function configure (options) { separator = join } if (deterministic) { - keys = insertSort(keys) + keys = sort(keys, comparator) } stack.push(value) for (let i = 0; i < maximumPropertiesToStringify; i++) { @@ -23929,7 +23941,8 @@ function configure (options) { let res = '' - if (Array.isArray(value)) { + const hasLength = value.length !== undefined + if (hasLength && Array.isArray(value)) { if (value.length === 0) { return '[]' } @@ -23964,14 +23977,14 @@ function configure (options) { } let separator = '' let maximumPropertiesToStringify = Math.min(keyLength, maximumBreadth) - if (isTypedArrayWithEntries(value)) { + if (hasLength && isTypedArrayWithEntries(value)) { res += stringifyTypedArray(value, ',', maximumBreadth) keys = keys.slice(value.length) maximumPropertiesToStringify -= value.length separator = ',' } if (deterministic) { - keys = insertSort(keys) + keys = sort(keys, comparator) } stack.push(value) for (let i = 0; i < maximumPropertiesToStringify; i++) { diff --git a/85016.412f2dbd.async.js b/85016.4be0f177.async.js similarity index 99% rename from 85016.412f2dbd.async.js rename to 85016.4be0f177.async.js index 1fc93ef624..7c31f7e387 100644 --- a/85016.412f2dbd.async.js +++ b/85016.4be0f177.async.js @@ -2190,9 +2190,6 @@ var HeaderComponents = function HeaderComponents(_ref) { src: logoUrl || logo }) }), location.pathname == '/' && /*#__PURE__*/(0,jsx_runtime.jsx)("div", { - style: { - width: '300px' - }, children: /*#__PURE__*/(0,jsx_runtime.jsx)("img", { src: __webpack_require__(/*! @/assets/images/home/schoollogo.png */ 32229), width: 252 diff --git a/index.html b/index.html index 858d696c0d..b5a1ce968c 100644 --- a/index.html +++ b/index.html @@ -12,7 +12,7 @@