@kontur.candy/generator 4.296.0 → 4.298.0-documentsPeriod.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +11 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -114702,7 +114702,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
114702
114702
|
/* harmony export */ "tryGetValidDateShape": () => (/* binding */ tryGetValidDateShape),
|
|
114703
114703
|
/* harmony export */ "comparator": () => (/* binding */ comparator),
|
|
114704
114704
|
/* harmony export */ "isValidStringDate": () => (/* binding */ isValidStringDate),
|
|
114705
|
-
/* harmony export */ "isLessOrEqualStringDates": () => (/* binding */ isLessOrEqualStringDates)
|
|
114705
|
+
/* harmony export */ "isLessOrEqualStringDates": () => (/* binding */ isLessOrEqualStringDates),
|
|
114706
|
+
/* harmony export */ "HelperFunctionsDateHelpers": () => (/* binding */ HelperFunctionsDateHelpers)
|
|
114706
114707
|
/* harmony export */ });
|
|
114707
114708
|
function parseDateString(value) {
|
|
114708
114709
|
const [date, month, year] = (value || "").split(".").map(x => x ? Number(x) : undefined);
|
|
@@ -114779,6 +114780,10 @@ function isLessOrEqualStringDates(a, b) {
|
|
|
114779
114780
|
|
|
114780
114781
|
return false;
|
|
114781
114782
|
}
|
|
114783
|
+
const HelperFunctionsDateHelpers = {
|
|
114784
|
+
isValidDate: isValidDate,
|
|
114785
|
+
parseDateString: parseDateString
|
|
114786
|
+
};
|
|
114782
114787
|
|
|
114783
114788
|
/***/ }),
|
|
114784
114789
|
|
|
@@ -114971,7 +114976,8 @@ let FilterType;
|
|
|
114971
114976
|
__webpack_require__.r(__webpack_exports__);
|
|
114972
114977
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
114973
114978
|
/* harmony export */ "splitLastOccurrence": () => (/* binding */ splitLastOccurrence),
|
|
114974
|
-
/* harmony export */ "pluralize": () => (/* binding */ pluralize)
|
|
114979
|
+
/* harmony export */ "pluralize": () => (/* binding */ pluralize),
|
|
114980
|
+
/* harmony export */ "HelperFunctionsStringHelpers": () => (/* binding */ HelperFunctionsStringHelpers)
|
|
114975
114981
|
/* harmony export */ });
|
|
114976
114982
|
/* harmony import */ var _Common_IntRangeUtils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../Common/IntRangeUtils */ "./Common/IntRangeUtils.ts");
|
|
114977
114983
|
|
|
@@ -114992,6 +114998,9 @@ const pluralize = (count, words, localizer) => {
|
|
|
114992
114998
|
const x = count % 100 > 4 && count % 100 < 20 ? 2 : cases[(0,_Common_IntRangeUtils__WEBPACK_IMPORTED_MODULE_0__.clampUInt)(count % 10, 0, 5)];
|
|
114993
114999
|
return count.toString() + " " + (localizer ? localizer.translate(words[x]) : words[x]);
|
|
114994
115000
|
};
|
|
115001
|
+
const HelperFunctionsStringHelpers = {
|
|
115002
|
+
pluralize: pluralize
|
|
115003
|
+
};
|
|
114995
115004
|
|
|
114996
115005
|
/***/ }),
|
|
114997
115006
|
|