@bnsights/bbsf-controls 1.2.14-beta.1 → 1.2.15
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/README.md
CHANGED
|
@@ -394,6 +394,19 @@ If the issue persists, consider using a different HTML editor component that's c
|
|
|
394
394
|
|
|
395
395
|
## Change Log
|
|
396
396
|
|
|
397
|
+
## 1.2.15 / 24-03-2026
|
|
398
|
+
|
|
399
|
+
=====================
|
|
400
|
+
|
|
401
|
+
- Update bbsf-utilities package to 1.2.9
|
|
402
|
+
- Fix full date time display issue
|
|
403
|
+
|
|
404
|
+
## 1.2.14 / 24-03-2026
|
|
405
|
+
|
|
406
|
+
=====================
|
|
407
|
+
|
|
408
|
+
- Update bbsf-utilities package to 1.2.8
|
|
409
|
+
|
|
397
410
|
## 1.2.13 / 24-03-2026
|
|
398
411
|
|
|
399
412
|
=====================
|
|
@@ -3115,13 +3115,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.16", ngImpo
|
|
|
3115
3115
|
|
|
3116
3116
|
// Custom date/time formats for the picker
|
|
3117
3117
|
const BBSF_DATE_TIME_FORMATS = {
|
|
3118
|
-
parseInput:
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3118
|
+
parseInput: {
|
|
3119
|
+
year: 'numeric',
|
|
3120
|
+
month: '2-digit',
|
|
3121
|
+
day: '2-digit',
|
|
3122
|
+
hour: '2-digit',
|
|
3123
|
+
minute: '2-digit'
|
|
3124
|
+
},
|
|
3125
|
+
fullPickerInput: {
|
|
3126
|
+
year: 'numeric',
|
|
3127
|
+
month: '2-digit',
|
|
3128
|
+
day: '2-digit',
|
|
3129
|
+
hour: '2-digit',
|
|
3130
|
+
minute: '2-digit'
|
|
3131
|
+
},
|
|
3132
|
+
datePickerInput: {
|
|
3133
|
+
year: 'numeric',
|
|
3134
|
+
month: '2-digit',
|
|
3135
|
+
day: '2-digit'
|
|
3136
|
+
},
|
|
3137
|
+
timePickerInput: {
|
|
3138
|
+
hour: '2-digit',
|
|
3139
|
+
minute: '2-digit'
|
|
3140
|
+
},
|
|
3141
|
+
monthYearLabel: {
|
|
3142
|
+
year: 'numeric',
|
|
3143
|
+
month: 'short'
|
|
3144
|
+
},
|
|
3145
|
+
dateA11yLabel: {
|
|
3146
|
+
year: 'numeric',
|
|
3147
|
+
month: 'long',
|
|
3148
|
+
day: 'numeric'
|
|
3149
|
+
},
|
|
3150
|
+
monthYearA11yLabel: {
|
|
3151
|
+
year: 'numeric',
|
|
3152
|
+
month: 'long'
|
|
3153
|
+
}
|
|
3125
3154
|
};
|
|
3126
3155
|
class DateInputComponent {
|
|
3127
3156
|
static { this.controlContainerStatic = null; }
|