bromcom-ui 2.3.59 → 2.3.60

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.
@@ -1150,10 +1150,10 @@ const BcmDatetimePicker = class {
1150
1150
  const year = new Date(date).getFullYear();
1151
1151
  const hours = new Date(date).getHours();
1152
1152
  const minutes = new Date(date).getMinutes();
1153
- if (this.type == "range" || this.type == "datetime") {
1154
- return `${month}/${day}/${year}`;
1153
+ if (this.type == "range" || this.type == "date") {
1154
+ return `${day}/${month}/${year}`;
1155
1155
  }
1156
- return `${month}/${day}/${year} ${pad(hours)}:${pad(minutes)}`;
1156
+ return `${day}/${month}/${year} ${pad(hours)}:${pad(minutes)}`;
1157
1157
  }
1158
1158
  /**
1159
1159
  * @desc
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bromcom-ui",
3
- "version": "2.3.59",
3
+ "version": "2.3.60",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",