@bbn/bbn 1.0.27 → 1.0.28
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/bundle.d.ts +6 -6
- package/dist/bundle.js +22 -22
- package/package.json +1 -1
package/dist/bundle.d.ts
CHANGED
|
@@ -362,11 +362,11 @@ declare module "fn/cssExists" {
|
|
|
362
362
|
export { cssExists };
|
|
363
363
|
}
|
|
364
364
|
declare module "fn/dateSQL" {
|
|
365
|
-
const dateSQL: (v: any, dayOnly: any) =>
|
|
365
|
+
const dateSQL: (v: any, dayOnly: any) => string;
|
|
366
366
|
export { dateSQL };
|
|
367
367
|
}
|
|
368
368
|
declare module "fn/daysInMonth" {
|
|
369
|
-
const daysInMonth: (v: any) =>
|
|
369
|
+
const daysInMonth: (v: any) => number | false;
|
|
370
370
|
export { daysInMonth };
|
|
371
371
|
}
|
|
372
372
|
declare module "fn/deepPath" {
|
|
@@ -478,7 +478,7 @@ declare module "fn/formatBytes" {
|
|
|
478
478
|
export { formatBytes };
|
|
479
479
|
}
|
|
480
480
|
declare module "fn/formatDate" {
|
|
481
|
-
const formatDate: (date: any, format: any) =>
|
|
481
|
+
const formatDate: (date: any, format: any) => string;
|
|
482
482
|
export { formatDate };
|
|
483
483
|
}
|
|
484
484
|
declare module "fn/formatSize" {
|
|
@@ -1113,8 +1113,8 @@ declare module "index" {
|
|
|
1113
1113
|
createObject: (...args: any[]) => any;
|
|
1114
1114
|
cssExists: (f: any) => boolean;
|
|
1115
1115
|
date: (v: any) => any;
|
|
1116
|
-
dateSQL: (v: any, dayOnly: any) =>
|
|
1117
|
-
daysInMonth: (v: any) =>
|
|
1116
|
+
dateSQL: (v: any, dayOnly: any) => string;
|
|
1117
|
+
daysInMonth: (v: any) => number | false;
|
|
1118
1118
|
deepPath: (arr: any[], filter: object, deepProperty: string, res?: any[]) => false | any[];
|
|
1119
1119
|
defaultAjaxAbortFunction: (message: string, url?: string) => void;
|
|
1120
1120
|
defaultAjaxErrorFunction: (jqXHR: any, textStatus?: string, errorThrown?: Error) => boolean;
|
|
@@ -1154,7 +1154,7 @@ declare module "index" {
|
|
|
1154
1154
|
forir: (arr: any[], fn: (a: any, b: number) => any, max?: number, min?: number) => void;
|
|
1155
1155
|
format: (str: any) => any;
|
|
1156
1156
|
formatBytes: (bytes: any, decimals?: number) => string;
|
|
1157
|
-
formatDate: (date: any, format: any) =>
|
|
1157
|
+
formatDate: (date: any, format: any) => string;
|
|
1158
1158
|
formatSize: (st: any, noValid: any) => any;
|
|
1159
1159
|
formdata: (form: HTMLFormElement) => {};
|
|
1160
1160
|
fromXml: (xml: any, arrayTags: any) => {};
|
package/dist/bundle.js
CHANGED
|
@@ -1786,7 +1786,7 @@ var bbn = (() => {
|
|
|
1786
1786
|
};
|
|
1787
1787
|
exports.date = date;
|
|
1788
1788
|
});
|
|
1789
|
-
define("fn/fdatetime", ["require", "exports", "fn/date", "fn/isDate", "fn/isString", "dayjs"], function (require, exports, date_1, isDate_3, isString_5,
|
|
1789
|
+
define("fn/fdatetime", ["require", "exports", "fn/date", "fn/isDate", "fn/isString", "dayjs"], function (require, exports, date_1, isDate_3, isString_5, dayjs) {
|
|
1790
1790
|
"use strict";
|
|
1791
1791
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1792
1792
|
exports.fdatetime = void 0;
|
|
@@ -1795,9 +1795,9 @@ var bbn = (() => {
|
|
|
1795
1795
|
if (!(0, isDate_3.isDate)(r)) {
|
|
1796
1796
|
return wrong_result && (0, isString_5.isString)(wrong_result) ? wrong_result : '';
|
|
1797
1797
|
}
|
|
1798
|
-
if (undefined !==
|
|
1798
|
+
if (undefined !== dayjs) {
|
|
1799
1799
|
//return dayjs(r).format('lll');
|
|
1800
|
-
return (
|
|
1800
|
+
return dayjs(r).calendar(null, {
|
|
1801
1801
|
sameDay: '[' + bbn._('Today') + '] HH:mm',
|
|
1802
1802
|
nextDay: '[' + bbn._('Tomorrow') + '] HH:mm',
|
|
1803
1803
|
nextWeek: 'ddd D HH:mm',
|
|
@@ -1811,7 +1811,7 @@ var bbn = (() => {
|
|
|
1811
1811
|
};
|
|
1812
1812
|
exports.fdatetime = fdatetime;
|
|
1813
1813
|
});
|
|
1814
|
-
define("fn/fdate", ["require", "exports", "fn/fdatetime", "fn/date", "fn/isDate", "fn/isString", "dayjs"], function (require, exports, fdatetime_1, date_2, isDate_4, isString_6,
|
|
1814
|
+
define("fn/fdate", ["require", "exports", "fn/fdatetime", "fn/date", "fn/isDate", "fn/isString", "dayjs"], function (require, exports, fdatetime_1, date_2, isDate_4, isString_6, dayjs) {
|
|
1815
1815
|
"use strict";
|
|
1816
1816
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1817
1817
|
exports.fdate = void 0;
|
|
@@ -1824,27 +1824,27 @@ var bbn = (() => {
|
|
|
1824
1824
|
if (!(0, isDate_4.isDate)(r)) {
|
|
1825
1825
|
return wrong_result && (0, isString_6.isString)(wrong_result) ? wrong_result : '';
|
|
1826
1826
|
}
|
|
1827
|
-
if (undefined !==
|
|
1828
|
-
return (
|
|
1827
|
+
if (undefined !== dayjs) {
|
|
1828
|
+
return dayjs(r).format('L');
|
|
1829
1829
|
}
|
|
1830
1830
|
return r.toLocaleDateString();
|
|
1831
1831
|
};
|
|
1832
1832
|
exports.fdate = fdate;
|
|
1833
1833
|
});
|
|
1834
|
-
define("fn/calendar", ["require", "exports", "fn/fdate", "fn/date", "fn/isDate", "fn/isString", "dayjs", "dayjs/plugin/calendar"], function (require, exports, fdate_1, date_3, isDate_5, isString_7,
|
|
1834
|
+
define("fn/calendar", ["require", "exports", "fn/fdate", "fn/date", "fn/isDate", "fn/isString", "dayjs", "dayjs/plugin/calendar"], function (require, exports, fdate_1, date_3, isDate_5, isString_7, dayjs, cal) {
|
|
1835
1835
|
"use strict";
|
|
1836
1836
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1837
1837
|
exports.calendar = void 0;
|
|
1838
|
-
|
|
1838
|
+
dayjs.extend(cal);
|
|
1839
1839
|
const calendar = function (d, wrong_result) {
|
|
1840
|
-
if (undefined ===
|
|
1840
|
+
if (undefined === dayjs) {
|
|
1841
1841
|
return (0, fdate_1.fdate)(d, wrong_result);
|
|
1842
1842
|
}
|
|
1843
1843
|
let r = (0, date_3.date)(d);
|
|
1844
1844
|
if (!(0, isDate_5.isDate)(r)) {
|
|
1845
1845
|
return wrong_result && (0, isString_7.isString)(wrong_result) ? wrong_result : '';
|
|
1846
1846
|
}
|
|
1847
|
-
return (
|
|
1847
|
+
return dayjs(r).calendar(null, {
|
|
1848
1848
|
sameDay: '[' + bbn._('Today') + ']',
|
|
1849
1849
|
nextDay: '[' + bbn._('Tomorrow') + ']',
|
|
1850
1850
|
nextWeek: 'ddd D',
|
|
@@ -2341,26 +2341,26 @@ var bbn = (() => {
|
|
|
2341
2341
|
};
|
|
2342
2342
|
exports.cssExists = cssExists;
|
|
2343
2343
|
});
|
|
2344
|
-
define("fn/dateSQL", ["require", "exports", "fn/date", "dayjs"], function (require, exports, date_4,
|
|
2344
|
+
define("fn/dateSQL", ["require", "exports", "fn/date", "dayjs"], function (require, exports, date_4, dayjs) {
|
|
2345
2345
|
"use strict";
|
|
2346
2346
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2347
2347
|
exports.dateSQL = void 0;
|
|
2348
2348
|
const dateSQL = function (v, dayOnly) {
|
|
2349
2349
|
let value = (0, date_4.date)(v);
|
|
2350
2350
|
if (value) {
|
|
2351
|
-
return (
|
|
2351
|
+
return dayjs(value).format('YYYY-MM-DD' + (dayOnly ? '' : ' HH:mm:ss'));
|
|
2352
2352
|
}
|
|
2353
2353
|
};
|
|
2354
2354
|
exports.dateSQL = dateSQL;
|
|
2355
2355
|
});
|
|
2356
|
-
define("fn/daysInMonth", ["require", "exports", "fn/date", "dayjs"], function (require, exports, date_5,
|
|
2356
|
+
define("fn/daysInMonth", ["require", "exports", "fn/date", "dayjs"], function (require, exports, date_5, dayjs) {
|
|
2357
2357
|
"use strict";
|
|
2358
2358
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2359
2359
|
exports.daysInMonth = void 0;
|
|
2360
2360
|
const daysInMonth = function (v) {
|
|
2361
2361
|
let d = (0, date_5.date)(v);
|
|
2362
2362
|
if (d) {
|
|
2363
|
-
return (
|
|
2363
|
+
return dayjs(d).daysInMonth();
|
|
2364
2364
|
}
|
|
2365
2365
|
return false;
|
|
2366
2366
|
};
|
|
@@ -2951,12 +2951,12 @@ var bbn = (() => {
|
|
|
2951
2951
|
};
|
|
2952
2952
|
exports.formatBytes = formatBytes;
|
|
2953
2953
|
});
|
|
2954
|
-
define("fn/formatDate", ["require", "exports", "dayjs"], function (require, exports,
|
|
2954
|
+
define("fn/formatDate", ["require", "exports", "dayjs"], function (require, exports, dayjs) {
|
|
2955
2955
|
"use strict";
|
|
2956
2956
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2957
2957
|
exports.formatDate = void 0;
|
|
2958
2958
|
const formatDate = function (date, format) {
|
|
2959
|
-
return (
|
|
2959
|
+
return dayjs(date).format(format);
|
|
2960
2960
|
};
|
|
2961
2961
|
exports.formatDate = formatDate;
|
|
2962
2962
|
});
|
|
@@ -3077,18 +3077,18 @@ var bbn = (() => {
|
|
|
3077
3077
|
};
|
|
3078
3078
|
exports.fromXml = fromXml;
|
|
3079
3079
|
});
|
|
3080
|
-
define("fn/ftime", ["require", "exports", "fn/date", "fn/isDate", "fn/isString", "dayjs", "dayjs/plugin/calendar"], function (require, exports, date_6, isDate_7, isString_17,
|
|
3080
|
+
define("fn/ftime", ["require", "exports", "fn/date", "fn/isDate", "fn/isString", "dayjs", "dayjs/plugin/calendar"], function (require, exports, date_6, isDate_7, isString_17, dayjs, cal) {
|
|
3081
3081
|
"use strict";
|
|
3082
3082
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3083
3083
|
exports.ftime = void 0;
|
|
3084
|
-
|
|
3084
|
+
dayjs.extend(cal);
|
|
3085
3085
|
const ftime = function (d, wrong_result) {
|
|
3086
3086
|
let r = (0, date_6.date)(d);
|
|
3087
3087
|
if (!(0, isDate_7.isDate)(r)) {
|
|
3088
3088
|
return wrong_result && (0, isString_17.isString)(wrong_result) ? wrong_result : '';
|
|
3089
3089
|
}
|
|
3090
|
-
if (undefined !==
|
|
3091
|
-
return (
|
|
3090
|
+
if (undefined !== dayjs) {
|
|
3091
|
+
return dayjs(r).calendar();
|
|
3092
3092
|
}
|
|
3093
3093
|
return r.toLocaleDateString();
|
|
3094
3094
|
};
|
|
@@ -5818,7 +5818,7 @@ var bbn = (() => {
|
|
|
5818
5818
|
};
|
|
5819
5819
|
exports.upload = upload;
|
|
5820
5820
|
});
|
|
5821
|
-
define("index", ["require", "exports", "fn/_addLoader", "fn/_compareValues", "fn/_deleteLoader", "fn/abort", "fn/abortURL", "fn/addColors", "fn/addInputs", "fn/addStyle", "fn/adjustHeight", "fn/adjustSize", "fn/adjustWidth", "fn/ajax", "fn/analyzeFunction", "fn/animateCss", "fn/arrayBuffer2String", "fn/arrayFromProp", "fn/autoExtend", "fn/baseName", "fn/br2nl", "fn/calendar", "fn/callback", "fn/camelize", "fn/camelToCss", "fn/canvasToImage", "fn/center", "fn/checkProps", "fn/checkPropsDetails", "fn/checkPropsOrDie", "fn/checkType", "fn/circularReplacer", "fn/clone", "fn/colorToHex", "fn/compare", "fn/compareConditions", "fn/copy", "fn/correctCase", "fn/count", "fn/crc32", "fn/createObject", "fn/cssExists", "fn/date", "fn/dateSQL", "fn/daysInMonth", "fn/deepPath", "fn/defaultAjaxAbortFunction", "fn/defaultAjaxErrorFunction", "fn/defaultAlertFunction", "fn/defaultConfirmFunction", "fn/defaultEndLoadingFunction", "fn/defaultErrorFunction", "fn/defaultHistoryFunction", "fn/defaultLinkFunction", "fn/defaultPostLinkFunction", "fn/defaultPreLinkFunction", "fn/defaultResizeFunction", "fn/defaultStartLoadingFunction", "fn/deleteProp", "fn/diffObj", "fn/dirName", "fn/download", "fn/downloadContent", "fn/each", "fn/eraseCookie", "fn/error", "fn/escapeDquotes", "fn/escapeRegExp", "fn/escapeSquotes", "fn/escapeTicks", "fn/escapeUrl", "fn/extend", "fn/extendOut", "fn/fdate", "fn/fdatetime", "fn/fieldValue", "fn/fileExt", "fn/filter", "fn/filterToConditions", "fn/findAll", "fn/fori", "fn/forir", "fn/format", "fn/formatBytes", "fn/formatDate", "fn/formatSize", "fn/formdata", "fn/fromXml", "fn/ftime", "fn/getAllTags", "fn/getAncestors", "fn/getAttributes", "fn/getBrowserName", "fn/getBrowserVersion", "fn/getCookie", "fn/getCssVar", "fn/getDay", "fn/getDeviceType", "fn/getEventData", "fn/getField", "fn/getFieldValues", "fn/getHtml", "fn/getHTMLOfSelection", "fn/getLoader", "fn/getPath", "fn/getProp", "fn/getProperty", "fn/getRequestId", "fn/getRow", "fn/getScrollBarSize", "fn/getText", "fn/getTimeoff", "fn/happy", "fn/hash", "fn/hex2rgb", "fn/history", "fn/html2text", "fn/imageToCanvas", "fn/imgToBase64", "fn/info", "fn/init", "fn/isActiveInterface", "fn/isArray", "fn/isBlob", "fn/isBoolean", "fn/isCanvas", "fn/isColor", "fn/isComment", "fn/isCp", "fn/isDate", "fn/isDesktopDevice", "fn/isDimension", "fn/isDom", "fn/isEmail", "fn/isEmpty", "fn/isEvent", "fn/isFocused", "fn/isFunction", "fn/isHostname", "fn/isInside", "fn/isInt", "fn/isIP", "fn/isIterable", "fn/isMobile", "fn/isMobileDevice", "fn/isNull", "fn/isNumber", "fn/isObject", "fn/isPercent", "fn/isPrimitive", "fn/isPromise", "fn/isPropSize", "fn/isSame", "fn/isSQLDate", "fn/isString", "fn/isSymbol", "fn/isTabletDevice", "fn/isURL", "fn/isValidDimension", "fn/isValidName", "fn/isValue", "fn/isVue", "fn/iterate", "fn/lightenDarkenHex", "fn/link", "fn/log", "fn/makeReactive", "fn/map", "fn/md5", "fn/money", "fn/move", "fn/multiorder", "fn/nl2br", "fn/numProperties", "fn/objectToFormData", "fn/order", "fn/outerHeight", "fn/outerWidth", "fn/percent", "fn/pickValue", "fn/post", "fn/postOut", "fn/printf", "fn/quotes2html", "fn/randomInt", "fn/randomString", "fn/removeAccents", "fn/removeEmpty", "fn/removeExtraSpaces", "fn/removeHtmlComments", "fn/removePrivateProp", "fn/removeTrailingChars", "fn/repeat", "fn/replaceAll", "fn/replaceSelection", "fn/resize", "fn/rgb2hex", "fn/riterate", "fn/roundDecimal", "fn/sanitize", "fn/search", "fn/selectElementText", "fn/selector", "fn/setCookie", "fn/setCssVar", "fn/setNavigationVars", "fn/setProp", "fn/setProperty", "fn/shorten", "fn/shortenObj", "fn/shuffle", "fn/simpleHash", "fn/simpleHash1", "fn/simpleHash2", "fn/chrono", "fn/stat", "fn/string2ArrayBuffer", "fn/submit", "fn/substr", "fn/sum", "fn/timestamp", "fn/toCSV", "fn/toggleFullScreen", "fn/translate", "fn/treatAjaxArguments", "fn/trim", "fn/uniqString", "fn/unique", "fn/upload", "fn/warning"], function (require, exports, _addLoader_2, _compareValues_3, _deleteLoader_2, abort_1, abortURL_1, addColors_2, addInputs_2, addStyle_1, adjustHeight_1, adjustSize_3, adjustWidth_1, ajax_4, analyzeFunction_1, animateCss_1, arrayBuffer2String_1, arrayFromProp_1, autoExtend_1, baseName_3, br2nl_1,
|
|
5821
|
+
define("index", ["require", "exports", "fn/_addLoader", "fn/_compareValues", "fn/_deleteLoader", "fn/abort", "fn/abortURL", "fn/addColors", "fn/addInputs", "fn/addStyle", "fn/adjustHeight", "fn/adjustSize", "fn/adjustWidth", "fn/ajax", "fn/analyzeFunction", "fn/animateCss", "fn/arrayBuffer2String", "fn/arrayFromProp", "fn/autoExtend", "fn/baseName", "fn/br2nl", "fn/calendar", "fn/callback", "fn/camelize", "fn/camelToCss", "fn/canvasToImage", "fn/center", "fn/checkProps", "fn/checkPropsDetails", "fn/checkPropsOrDie", "fn/checkType", "fn/circularReplacer", "fn/clone", "fn/colorToHex", "fn/compare", "fn/compareConditions", "fn/copy", "fn/correctCase", "fn/count", "fn/crc32", "fn/createObject", "fn/cssExists", "fn/date", "fn/dateSQL", "fn/daysInMonth", "fn/deepPath", "fn/defaultAjaxAbortFunction", "fn/defaultAjaxErrorFunction", "fn/defaultAlertFunction", "fn/defaultConfirmFunction", "fn/defaultEndLoadingFunction", "fn/defaultErrorFunction", "fn/defaultHistoryFunction", "fn/defaultLinkFunction", "fn/defaultPostLinkFunction", "fn/defaultPreLinkFunction", "fn/defaultResizeFunction", "fn/defaultStartLoadingFunction", "fn/deleteProp", "fn/diffObj", "fn/dirName", "fn/download", "fn/downloadContent", "fn/each", "fn/eraseCookie", "fn/error", "fn/escapeDquotes", "fn/escapeRegExp", "fn/escapeSquotes", "fn/escapeTicks", "fn/escapeUrl", "fn/extend", "fn/extendOut", "fn/fdate", "fn/fdatetime", "fn/fieldValue", "fn/fileExt", "fn/filter", "fn/filterToConditions", "fn/findAll", "fn/fori", "fn/forir", "fn/format", "fn/formatBytes", "fn/formatDate", "fn/formatSize", "fn/formdata", "fn/fromXml", "fn/ftime", "fn/getAllTags", "fn/getAncestors", "fn/getAttributes", "fn/getBrowserName", "fn/getBrowserVersion", "fn/getCookie", "fn/getCssVar", "fn/getDay", "fn/getDeviceType", "fn/getEventData", "fn/getField", "fn/getFieldValues", "fn/getHtml", "fn/getHTMLOfSelection", "fn/getLoader", "fn/getPath", "fn/getProp", "fn/getProperty", "fn/getRequestId", "fn/getRow", "fn/getScrollBarSize", "fn/getText", "fn/getTimeoff", "fn/happy", "fn/hash", "fn/hex2rgb", "fn/history", "fn/html2text", "fn/imageToCanvas", "fn/imgToBase64", "fn/info", "fn/init", "fn/isActiveInterface", "fn/isArray", "fn/isBlob", "fn/isBoolean", "fn/isCanvas", "fn/isColor", "fn/isComment", "fn/isCp", "fn/isDate", "fn/isDesktopDevice", "fn/isDimension", "fn/isDom", "fn/isEmail", "fn/isEmpty", "fn/isEvent", "fn/isFocused", "fn/isFunction", "fn/isHostname", "fn/isInside", "fn/isInt", "fn/isIP", "fn/isIterable", "fn/isMobile", "fn/isMobileDevice", "fn/isNull", "fn/isNumber", "fn/isObject", "fn/isPercent", "fn/isPrimitive", "fn/isPromise", "fn/isPropSize", "fn/isSame", "fn/isSQLDate", "fn/isString", "fn/isSymbol", "fn/isTabletDevice", "fn/isURL", "fn/isValidDimension", "fn/isValidName", "fn/isValue", "fn/isVue", "fn/iterate", "fn/lightenDarkenHex", "fn/link", "fn/log", "fn/makeReactive", "fn/map", "fn/md5", "fn/money", "fn/move", "fn/multiorder", "fn/nl2br", "fn/numProperties", "fn/objectToFormData", "fn/order", "fn/outerHeight", "fn/outerWidth", "fn/percent", "fn/pickValue", "fn/post", "fn/postOut", "fn/printf", "fn/quotes2html", "fn/randomInt", "fn/randomString", "fn/removeAccents", "fn/removeEmpty", "fn/removeExtraSpaces", "fn/removeHtmlComments", "fn/removePrivateProp", "fn/removeTrailingChars", "fn/repeat", "fn/replaceAll", "fn/replaceSelection", "fn/resize", "fn/rgb2hex", "fn/riterate", "fn/roundDecimal", "fn/sanitize", "fn/search", "fn/selectElementText", "fn/selector", "fn/setCookie", "fn/setCssVar", "fn/setNavigationVars", "fn/setProp", "fn/setProperty", "fn/shorten", "fn/shortenObj", "fn/shuffle", "fn/simpleHash", "fn/simpleHash1", "fn/simpleHash2", "fn/chrono", "fn/stat", "fn/string2ArrayBuffer", "fn/submit", "fn/substr", "fn/sum", "fn/timestamp", "fn/toCSV", "fn/toggleFullScreen", "fn/translate", "fn/treatAjaxArguments", "fn/trim", "fn/uniqString", "fn/unique", "fn/upload", "fn/warning"], function (require, exports, _addLoader_2, _compareValues_3, _deleteLoader_2, abort_1, abortURL_1, addColors_2, addInputs_2, addStyle_1, adjustHeight_1, adjustSize_3, adjustWidth_1, ajax_4, analyzeFunction_1, animateCss_1, arrayBuffer2String_1, arrayFromProp_1, autoExtend_1, baseName_3, br2nl_1, calendar_1, callback_3, camelize_1, camelToCss_1, canvasToImage_1, center_1, checkProps_1, checkPropsDetails_3, checkPropsOrDie_1, checkType_5, circularReplacer_2, clone_2, colorToHex_1, compare_1, compareConditions_3, copy_1, correctCase_2, count_1, crc32_1, createObject_4, cssExists_1, date_8, dateSQL_1, daysInMonth_1, deepPath_1, defaultAjaxAbortFunction_2, defaultAjaxErrorFunction_3, defaultAlertFunction_2, defaultConfirmFunction_1, defaultEndLoadingFunction_2, defaultErrorFunction_2, defaultHistoryFunction_2, defaultLinkFunction_2, defaultPostLinkFunction_2, defaultPreLinkFunction_2, defaultResizeFunction_2, defaultStartLoadingFunction_2, deleteProp_1, diffObj_1, dirName_2, download_1, downloadContent_2, each_28, eraseCookie_1, error_4, escapeDquotes_1, escapeRegExp_3, escapeSquotes_1, escapeTicks_1, escapeUrl_1, extend_7, extendOut_1, fdate_2, fdatetime_2, fieldValue_2, fileExt_2, filter_6, filterToConditions_3, findAll_1, fori_1, forir_1, format_1, formatBytes_1, formatDate_1, formatSize_1, formdata_2, fromXml_1, ftime_1, getAllTags_1, getAncestors_2, getAttributes_1, getBrowserName_1, getBrowserVersion_1, getCookie_1, getCssVar_2, getDay_1, getDeviceType_1, getEventData_1, getField_1, getFieldValues_1, getHtml_1, getHTMLOfSelection_2, getLoader_4, getPath_1, getProp_1, getProperty_4, getRequestId_2, getRow_3, getScrollBarSize_1, getText_1, getTimeoff_1, happy_1, hash_2, hex2rgb_1, history_1, html2text_2, imageToCanvas_2, imgToBase64_1, info_1, init_1, isActiveInterface_1, isArray_19, isBlob_2, isBoolean_1, isCanvas_2, isColor_1, isComment_1, isCp_3, isDate_8, isDesktopDevice_1, isDimension_1, isDom_5, isEmail_1, isEmpty_2, isEvent_1, isFocused_1, isFunction_12, isHostname_1, isInside_1, isInt_2, isIP_2, isIterable_5, isMobile_2, isMobileDevice_2, isNull_4, isNumber_10, isObject_18, isPercent_1, isPrimitive_1, isPromise_1, isPropSize_1, isSame_3, isSQLDate_1, isString_27, isSymbol_2, isTabletDevice_3, isURL_1, isValidDimension_2, isValidName_1, isValue_2, isVue_1, iterate_11, lightenDarkenHex_1, link_2, log_19, makeReactive_1, map_1, md5_4, money_1, move_1, multiorder_1, nl2br_1, numProperties_8, objectToFormData_2, order_1, outerHeight_1, outerWidth_1, percent_1, pickValue_1, post_2, postOut_1, printf_1, quotes2html_1, randomInt_2, randomString_1, removeAccents_4, removeEmpty_1, removeExtraSpaces_1, removeHtmlComments_2, removePrivateProp_2, removeTrailingChars_1, repeat_1, replaceAll_8, replaceSelection_1, resize_3, rgb2hex_1, riterate_1, roundDecimal_1, sanitize_1, search_6, selectElementText_1, selector_3, setCookie_1, setCssVar_1, setNavigationVars_2, setProp_1, setProperty_1, shorten_2, shortenObj_1, shuffle_1, simpleHash_2, simpleHash1_2, simpleHash2_2, chrono_1, stat_1, string2ArrayBuffer_1, submit_2, substr_16, sum_1, timestamp_1, toCSV_1, toggleFullScreen_1, translate_1, treatAjaxArguments_3, trim_2, uniqString_1, unique_2, upload_1, warning_2) {
|
|
5822
5822
|
"use strict";
|
|
5823
5823
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5824
5824
|
exports.fn = exports.env = exports.vars = exports.app = exports.lng = exports._popups = exports.$ = exports._ = exports.opt = exports.version = void 0;
|
|
@@ -6017,7 +6017,7 @@ var bbn = (() => {
|
|
|
6017
6017
|
autoExtend: autoExtend_1.autoExtend,
|
|
6018
6018
|
baseName: baseName_3.baseName,
|
|
6019
6019
|
br2nl: br2nl_1.br2nl,
|
|
6020
|
-
calendar:
|
|
6020
|
+
calendar: calendar_1.calendar,
|
|
6021
6021
|
callback: callback_3.callback,
|
|
6022
6022
|
camelize: camelize_1.camelize,
|
|
6023
6023
|
camelToCss: camelToCss_1.camelToCss,
|