@kontur.candy/generator 4.297.0-upload-excel-button.2 → 4.297.0-upload-excel-button.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +11 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -114783,7 +114783,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
114783
114783
|
/* harmony export */ "tryGetValidDateShape": () => (/* binding */ tryGetValidDateShape),
|
|
114784
114784
|
/* harmony export */ "comparator": () => (/* binding */ comparator),
|
|
114785
114785
|
/* harmony export */ "isValidStringDate": () => (/* binding */ isValidStringDate),
|
|
114786
|
-
/* harmony export */ "isLessOrEqualStringDates": () => (/* binding */ isLessOrEqualStringDates)
|
|
114786
|
+
/* harmony export */ "isLessOrEqualStringDates": () => (/* binding */ isLessOrEqualStringDates),
|
|
114787
|
+
/* harmony export */ "HelperFunctionsDateHelpers": () => (/* binding */ HelperFunctionsDateHelpers)
|
|
114787
114788
|
/* harmony export */ });
|
|
114788
114789
|
function parseDateString(value) {
|
|
114789
114790
|
const [date, month, year] = (value || "").split(".").map(x => x ? Number(x) : undefined);
|
|
@@ -114860,6 +114861,10 @@ function isLessOrEqualStringDates(a, b) {
|
|
|
114860
114861
|
|
|
114861
114862
|
return false;
|
|
114862
114863
|
}
|
|
114864
|
+
const HelperFunctionsDateHelpers = {
|
|
114865
|
+
isValidDate: isValidDate,
|
|
114866
|
+
parseDateString: parseDateString
|
|
114867
|
+
};
|
|
114863
114868
|
|
|
114864
114869
|
/***/ }),
|
|
114865
114870
|
|
|
@@ -115052,7 +115057,8 @@ let FilterType;
|
|
|
115052
115057
|
__webpack_require__.r(__webpack_exports__);
|
|
115053
115058
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
115054
115059
|
/* harmony export */ "splitLastOccurrence": () => (/* binding */ splitLastOccurrence),
|
|
115055
|
-
/* harmony export */ "pluralize": () => (/* binding */ pluralize)
|
|
115060
|
+
/* harmony export */ "pluralize": () => (/* binding */ pluralize),
|
|
115061
|
+
/* harmony export */ "HelperFunctionsStringHelpers": () => (/* binding */ HelperFunctionsStringHelpers)
|
|
115056
115062
|
/* harmony export */ });
|
|
115057
115063
|
/* harmony import */ var _Common_IntRangeUtils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../Common/IntRangeUtils */ "./Common/IntRangeUtils.ts");
|
|
115058
115064
|
|
|
@@ -115073,6 +115079,9 @@ const pluralize = (count, words, localizer) => {
|
|
|
115073
115079
|
const x = count % 100 > 4 && count % 100 < 20 ? 2 : cases[(0,_Common_IntRangeUtils__WEBPACK_IMPORTED_MODULE_0__.clampUInt)(count % 10, 0, 5)];
|
|
115074
115080
|
return count.toString() + " " + (localizer ? localizer.translate(words[x]) : words[x]);
|
|
115075
115081
|
};
|
|
115082
|
+
const HelperFunctionsStringHelpers = {
|
|
115083
|
+
pluralize: pluralize
|
|
115084
|
+
};
|
|
115076
115085
|
|
|
115077
115086
|
/***/ }),
|
|
115078
115087
|
|