@solcre-org/core-ui 2.15.46 → 2.16.0
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.
|
@@ -19,20 +19,20 @@
|
|
|
19
19
|
"SUCCESS": "Success",
|
|
20
20
|
"ERROR": "Error",
|
|
21
21
|
"WARNING": "Warning",
|
|
22
|
-
"INFO": "
|
|
23
|
-
"SUCCESS_CREATE": "
|
|
24
|
-
"SUCCESS_UPDATE": "
|
|
25
|
-
"SUCCESS_DELETE": "
|
|
26
|
-
"SUCCESS_CLOSE": "
|
|
27
|
-
"SUCCESS_SAVE": "
|
|
28
|
-
"SUCCESS_CANCEL": "
|
|
29
|
-
"ERROR_CREATE": "
|
|
30
|
-
"ERROR_UPDATE": "
|
|
31
|
-
"ERROR_DELETE": "
|
|
32
|
-
"ERROR_CLOSE": "
|
|
33
|
-
"ERROR_SAVE": "
|
|
34
|
-
"ERROR_CANCEL": "
|
|
35
|
-
"ERROR_FETCH": "
|
|
22
|
+
"INFO": "Information",
|
|
23
|
+
"SUCCESS_CREATE": "Successfully created",
|
|
24
|
+
"SUCCESS_UPDATE": "Successfully updated",
|
|
25
|
+
"SUCCESS_DELETE": "Successfully deactivated",
|
|
26
|
+
"SUCCESS_CLOSE": "Successfully closed",
|
|
27
|
+
"SUCCESS_SAVE": "Successfully saved",
|
|
28
|
+
"SUCCESS_CANCEL": "Successfully cancelled",
|
|
29
|
+
"ERROR_CREATE": "An error occurred while creating",
|
|
30
|
+
"ERROR_UPDATE": "An error occurred while updating",
|
|
31
|
+
"ERROR_DELETE": "An error occurred while deactivating",
|
|
32
|
+
"ERROR_CLOSE": "An error occurred while closing",
|
|
33
|
+
"ERROR_SAVE": "An error occurred while saving",
|
|
34
|
+
"ERROR_CANCEL": "An error occurred while cancelling",
|
|
35
|
+
"ERROR_FETCH": "An error occurred while fetching the data"
|
|
36
36
|
},
|
|
37
37
|
"select": {
|
|
38
38
|
"placeholder": "Select an option"
|
|
@@ -8045,7 +8045,18 @@ class DateUtility {
|
|
|
8045
8045
|
const yyyy = d.getUTCFullYear();
|
|
8046
8046
|
const HH = this.pad2(d.getUTCHours());
|
|
8047
8047
|
const MM = this.pad2(d.getUTCMinutes());
|
|
8048
|
+
const SS = this.pad2(d.getUTCSeconds());
|
|
8048
8049
|
switch (pattern) {
|
|
8050
|
+
case 'YYYY-MM-DDTHH:mm:ssZ':
|
|
8051
|
+
const offsetMinutes = d.getTimezoneOffset();
|
|
8052
|
+
const offSign = offsetMinutes <= 0 ? '+' : '-';
|
|
8053
|
+
const abs = Math.abs(offsetMinutes);
|
|
8054
|
+
const offHH = this.pad2(Math.floor(abs / 60));
|
|
8055
|
+
const offMM = this.pad2(abs % 60);
|
|
8056
|
+
const offset = `${offSign}${offHH}:${offMM}`;
|
|
8057
|
+
return `${yyyy}-${mm}-${dd}T${HH}:${MM}:${SS}${offset}`;
|
|
8058
|
+
case 'YYYY-MM-DDTHH:mm:ss':
|
|
8059
|
+
return `${yyyy}-${mm}-${dd} ${HH}:${MM}:${SS}`;
|
|
8049
8060
|
case 'DD/MM/YYYY HH:mm':
|
|
8050
8061
|
return `${dd}/${mm}/${yyyy} ${HH}:${MM}`;
|
|
8051
8062
|
case 'YYYY-MM-DD HH:mm':
|
|
@@ -16399,12 +16410,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
16399
16410
|
// Este archivo es generado automáticamente por scripts/update-version.js
|
|
16400
16411
|
// No edites manualmente este archivo
|
|
16401
16412
|
const VERSION = {
|
|
16402
|
-
full: '2.
|
|
16413
|
+
full: '2.16.0',
|
|
16403
16414
|
major: 2,
|
|
16404
|
-
minor:
|
|
16405
|
-
patch:
|
|
16406
|
-
timestamp: '2025-12-
|
|
16407
|
-
buildDate: '
|
|
16415
|
+
minor: 16,
|
|
16416
|
+
patch: 0,
|
|
16417
|
+
timestamp: '2025-12-04T12:05:49.777Z',
|
|
16418
|
+
buildDate: '4/12/2025'
|
|
16408
16419
|
};
|
|
16409
16420
|
|
|
16410
16421
|
class MainNavComponent {
|