@skyux/datetime 5.1.3 → 5.1.4
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/bundles/skyux-datetime.umd.js +5 -4
- package/bundles/skyux-datetime.umd.js.map +1 -1
- package/documentation.json +33 -27
- package/esm2015/modules/date-range-picker/date-range-picker.component.js +2 -2
- package/esm2015/modules/datepicker/datepicker-config.service.js +1 -1
- package/esm2015/modules/datepicker/datepicker-input-fuzzy.directive.js +2 -2
- package/esm2015/modules/datepicker/datepicker-input.directive.js +2 -2
- package/esm2015/modules/datepicker/datepicker.component.js +2 -1
- package/esm2015/modules/timepicker/timepicker.directive.js +2 -2
- package/fesm2015/skyux-datetime.js +5 -4
- package/fesm2015/skyux-datetime.js.map +1 -1
- package/modules/date-range-picker/date-range-picker.component.d.ts +1 -1
- package/modules/datepicker/datepicker-config.service.d.ts +1 -1
- package/modules/datepicker/datepicker-input-fuzzy.directive.d.ts +1 -1
- package/modules/datepicker/datepicker-input.directive.d.ts +1 -1
- package/modules/datepicker/datepicker.component.d.ts +1 -0
- package/modules/timepicker/timepicker.directive.d.ts +1 -1
- package/package.json +3 -2
|
@@ -2004,6 +2004,7 @@
|
|
|
2004
2004
|
this.inputBoxHostService = inputBoxHostService;
|
|
2005
2005
|
/**
|
|
2006
2006
|
* Adds a class to the datepicker.
|
|
2007
|
+
* @default ""
|
|
2007
2008
|
*/
|
|
2008
2009
|
this.pickerClass = '';
|
|
2009
2010
|
/**
|
|
@@ -2396,7 +2397,7 @@
|
|
|
2396
2397
|
/**
|
|
2397
2398
|
* Specifies the date format for the input. Place this attribute on the `input` element
|
|
2398
2399
|
* to override the default in the `SkyDatepickerConfigService`.
|
|
2399
|
-
* @default MM/DD/YYYY
|
|
2400
|
+
* @default "MM/DD/YYYY"
|
|
2400
2401
|
*/
|
|
2401
2402
|
set: function (value) {
|
|
2402
2403
|
/* istanbul ignore else */
|
|
@@ -2860,7 +2861,7 @@
|
|
|
2860
2861
|
/**
|
|
2861
2862
|
* Specifies the date format for the input. Place this attribute on the `input` element
|
|
2862
2863
|
* to override the default in `SkyDatepickerConfigService`.
|
|
2863
|
-
* @default MM/DD/YYYY
|
|
2864
|
+
* @default "MM/DD/YYYY"
|
|
2864
2865
|
*/
|
|
2865
2866
|
set: function (value) {
|
|
2866
2867
|
this._dateFormat = value;
|
|
@@ -4043,7 +4044,7 @@
|
|
|
4043
4044
|
* [the `sky-datepicker` components](https://developer.blackbaud.com/skyux/components/datepicker)
|
|
4044
4045
|
* that make up the date range picker. The text input is a composite component of
|
|
4045
4046
|
* up to two `sky-datepicker` components.
|
|
4046
|
-
* @default MM/DD/YYYY
|
|
4047
|
+
* @default "MM/DD/YYYY"
|
|
4047
4048
|
*/
|
|
4048
4049
|
set: function (value) {
|
|
4049
4050
|
this._dateFormat = value;
|
|
@@ -4518,7 +4519,7 @@
|
|
|
4518
4519
|
},
|
|
4519
4520
|
/**
|
|
4520
4521
|
* Specifies the 12-hour `hh` or 24-hour `HH` time format for the input.
|
|
4521
|
-
* @default hh
|
|
4522
|
+
* @default "hh"
|
|
4522
4523
|
*/
|
|
4523
4524
|
set: function (value) {
|
|
4524
4525
|
this._timeFormat = value;
|