coer-elements 0.0.72 → 0.0.73
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/components/lib/coer-grid/coer-grid.extension.d.ts +6 -4
- package/fesm2022/coer-elements-components.mjs +25 -4
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +2 -2
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/interfaces/lib/coer-grid/grid-column.interface.d.ts +1 -0
- package/package.json +1 -1
- package/tools/lib/date-time.class.d.ts +1 -1
@@ -696,10 +696,10 @@ class DateTime {
|
|
696
696
|
date = DateTime.GetFormatDB(date);
|
697
697
|
return moment(date).parseZone().local(true).format('MMM, DD YYYY');
|
698
698
|
}
|
699
|
-
/** MMM, DD YYYY */
|
699
|
+
/** MMM, DD YYYY at hh:mm a */
|
700
700
|
static GetDateTimeFormat(date) {
|
701
701
|
date = DateTime.GetFormatDB(date);
|
702
|
-
return moment(date).parseZone().local(true).format('MMM, DD YYYY hh:mm a');
|
702
|
+
return moment(date).parseZone().local(true).format('MMM, DD YYYY - hh:mm a').replace('-', 'at');
|
703
703
|
}
|
704
704
|
/** */
|
705
705
|
static IsValidDate(date) {
|