eservices-core 1.0.359 → 1.0.360
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.d.ts +3 -0
- package/dist/index.js +4 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ import ApplicationManager from "./classes/ApplicationManager";
|
|
|
34
34
|
import NotificationSystem from "./classes/NotificationSystem";
|
|
35
35
|
import { clickOutside, requestHandler } from "./utils";
|
|
36
36
|
import valuesToUpperCase from "./utils/values-to-upper-case";
|
|
37
|
+
import { prettyDate, prettyDateWithTime } from "./utils/prettyDate";
|
|
37
38
|
export { StylesInterface };
|
|
38
39
|
import InterfaceContainer from "./widgets/interface/interface-container.vue";
|
|
39
40
|
/**WIDGETS**/
|
|
@@ -111,6 +112,8 @@ declare const utils: {
|
|
|
111
112
|
clickOutside: typeof _utils.clickOutside;
|
|
112
113
|
requestHandler: typeof _utils.requestHandler;
|
|
113
114
|
valuesToUpperCase: typeof valuesToUpperCase;
|
|
115
|
+
prettyDate: typeof prettyDate;
|
|
116
|
+
prettyDateWithTime: typeof prettyDateWithTime;
|
|
114
117
|
};
|
|
115
118
|
export { utils };
|
|
116
119
|
declare const _default: {
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* eservices-core v1.0.
|
|
2
|
+
* eservices-core v1.0.360
|
|
3
3
|
* (c) 2022 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -6096,7 +6096,9 @@ script.__file = "core/widgets/interface/interface-container.vue";
|
|
|
6096
6096
|
const utils = {
|
|
6097
6097
|
clickOutside,
|
|
6098
6098
|
requestHandler,
|
|
6099
|
-
valuesToUpperCase
|
|
6099
|
+
valuesToUpperCase,
|
|
6100
|
+
prettyDate,
|
|
6101
|
+
prettyDateWithTime
|
|
6100
6102
|
};
|
|
6101
6103
|
var index = {
|
|
6102
6104
|
services,
|