@skyux/datetime 7.4.2 → 7.6.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.
Files changed (44) hide show
  1. package/documentation.json +70 -70
  2. package/esm2020/lib/modules/date-pipe/date-format-utility.mjs +3 -1
  3. package/esm2020/lib/modules/date-range-picker/date-range-picker.component.mjs +7 -7
  4. package/esm2020/lib/modules/date-range-picker/types/date-range-calculation.mjs +1 -1
  5. package/esm2020/lib/modules/date-range-picker/types/date-range-calculator-type.mjs +2 -2
  6. package/esm2020/lib/modules/date-range-picker/types/date-range-calculator.mjs +2 -2
  7. package/esm2020/lib/modules/date-range-picker/types/date-range.mjs +1 -1
  8. package/esm2020/lib/modules/datepicker/datepicker-calendar-change.mjs +1 -1
  9. package/esm2020/lib/modules/datepicker/datepicker-calendar-inner.component.mjs +2 -2
  10. package/esm2020/lib/modules/datepicker/datepicker-config.service.mjs +2 -2
  11. package/esm2020/lib/modules/datepicker/datepicker-custom-date.mjs +1 -1
  12. package/esm2020/lib/modules/datepicker/datepicker-input-fuzzy.directive.mjs +10 -10
  13. package/esm2020/lib/modules/datepicker/datepicker-input.directive.mjs +9 -9
  14. package/esm2020/lib/modules/datepicker/datepicker.component.mjs +6 -6
  15. package/esm2020/lib/modules/datepicker/datepicker.service.mjs +2 -2
  16. package/esm2020/lib/modules/datepicker/daypicker-button.component.mjs +1 -1
  17. package/esm2020/lib/modules/datepicker/daypicker-cell.component.mjs +1 -1
  18. package/esm2020/lib/modules/datepicker/fuzzy-date.mjs +1 -1
  19. package/esm2020/lib/modules/datepicker/fuzzy-date.service.mjs +2 -2
  20. package/esm2020/lib/modules/timepicker/timepicker.component.mjs +10 -10
  21. package/esm2020/lib/modules/timepicker/timepicker.directive.mjs +3 -3
  22. package/esm2020/lib/modules/timepicker/timepicker.interface.mjs +1 -1
  23. package/fesm2015/skyux-datetime.mjs +47 -45
  24. package/fesm2015/skyux-datetime.mjs.map +1 -1
  25. package/fesm2020/skyux-datetime.mjs +47 -45
  26. package/fesm2020/skyux-datetime.mjs.map +1 -1
  27. package/lib/modules/date-range-picker/date-range-picker.component.d.ts +6 -6
  28. package/lib/modules/date-range-picker/types/date-range-calculation.d.ts +1 -1
  29. package/lib/modules/date-range-picker/types/date-range-calculator-type.d.ts +1 -1
  30. package/lib/modules/date-range-picker/types/date-range-calculator.d.ts +4 -4
  31. package/lib/modules/date-range-picker/types/date-range.d.ts +2 -2
  32. package/lib/modules/datepicker/datepicker-calendar-change.d.ts +1 -1
  33. package/lib/modules/datepicker/datepicker-config.service.d.ts +4 -4
  34. package/lib/modules/datepicker/datepicker-custom-date.d.ts +2 -2
  35. package/lib/modules/datepicker/datepicker-input-fuzzy.directive.d.ts +8 -8
  36. package/lib/modules/datepicker/datepicker-input.directive.d.ts +7 -7
  37. package/lib/modules/datepicker/datepicker.service.d.ts +1 -1
  38. package/lib/modules/datepicker/daypicker-button.component.d.ts +1 -1
  39. package/lib/modules/datepicker/daypicker-cell.component.d.ts +2 -2
  40. package/lib/modules/datepicker/fuzzy-date.d.ts +3 -3
  41. package/lib/modules/timepicker/timepicker.component.d.ts +1 -1
  42. package/lib/modules/timepicker/timepicker.directive.d.ts +3 -3
  43. package/lib/modules/timepicker/timepicker.interface.d.ts +7 -7
  44. package/package.json +8 -8
@@ -23,6 +23,7 @@ import { SkyThemeModule } from '@skyux/theme';
23
23
 
24
24
  // This class is mostly ported from the Angular 4.x DatePipe in order to maintain the old
25
25
  class SkyDateFormatUtility {
26
+ /* spell-checker:enable */
26
27
  static format(locale, value, pattern) {
27
28
  let date;
28
29
  if (isBlank(value) || value !== value) {
@@ -45,6 +46,7 @@ class SkyDateFormatUtility {
45
46
  return SkyIntlDateFormatter.format(date, locale, SkyDateFormatUtility._ALIASES[pattern] || pattern);
46
47
  }
47
48
  }
49
+ /* spell-checker:disable */
48
50
  SkyDateFormatUtility._ALIASES = {
49
51
  medium: 'yMMMdjms',
50
52
  short: 'yMdjm',
@@ -550,7 +552,7 @@ _SkyFuzzyDateService_currentLocale = new WeakMap(), _SkyFuzzyDateService_ngUnsub
550
552
  }, _SkyFuzzyDateService_getMonthNumber = function _SkyFuzzyDateService_getMonthNumber(month) {
551
553
  let returnValue;
552
554
  const monthAsNumber = parseInt(month, 10);
553
- // If the month component is a string ("Janaury"), we check to see if it is a valid month
555
+ // If the month component is a string ("January"), we check to see if it is a valid month
554
556
  if (isNaN(monthAsNumber)) {
555
557
  if (!moment(month, 'MMMM').isValid()) {
556
558
  return;
@@ -703,7 +705,7 @@ var _SkyDateRangeCalculator_instances, _SkyDateRangeCalculator_config, _SkyDateR
703
705
  class SkyDateRangeCalculator {
704
706
  constructor(
705
707
  /**
706
- * Provides a calculator ID to specify calculator objects that represent date ranges.
708
+ * The calculator ID that specifies calculator objects that represent date ranges.
707
709
  */
708
710
  calculatorId, config) {
709
711
  this.calculatorId = calculatorId;
@@ -867,7 +869,7 @@ var SkyDateRangeCalculatorId;
867
869
  })(SkyDateRangeCalculatorId || (SkyDateRangeCalculatorId = {}));
868
870
 
869
871
  /**
870
- * Indicates the types of calculations available for a date range calculator.
872
+ * The types of calculations available for a date range calculator.
871
873
  */
872
874
  var SkyDateRangeCalculatorType;
873
875
  (function (SkyDateRangeCalculatorType) {
@@ -1151,7 +1153,7 @@ class SkyDatepickerCalendarInnerComponent {
1151
1153
  select(date, isManual = true) {
1152
1154
  this.activeDate = new Date(date.getFullYear(), date.getMonth(), date.getDate());
1153
1155
  /*
1154
- Only actually select date if in minmode (day picker mode).
1156
+ Only actually select date if in minMode (day picker mode).
1155
1157
  Otherwise, just change the active view for the datepicker.
1156
1158
  */
1157
1159
  if (this.datepickerMode === this.minMode) {
@@ -1279,7 +1281,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
1279
1281
  class SkyDatepickerConfigService {
1280
1282
  constructor() {
1281
1283
  /**
1282
- * Specifies the starting day of the week in the calendar,
1284
+ * The starting day of the week in the calendar,
1283
1285
  * where `0` sets the starting day to Sunday.
1284
1286
  * @default 0
1285
1287
  */
@@ -1301,7 +1303,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
1301
1303
  class SkyDatepickerService {
1302
1304
  constructor() {
1303
1305
  /**
1304
- * Specifies if a key date popover is currently displayed.
1306
+ * Whether a key date popover is currently displayed.
1305
1307
  * Useful for communicating across all daypicker siblings when a popover is displayed.
1306
1308
  */
1307
1309
  this.keyDatePopoverStream = new Subject();
@@ -1894,7 +1896,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
1894
1896
  }]
1895
1897
  }] } });
1896
1898
 
1897
- var _SkyDatepickerComponent_instances, _SkyDatepickerComponent_affixer, _SkyDatepickerComponent_calendarUnsubscribe, _SkyDatepickerComponent_customDatesSubscription, _SkyDatepickerComponent_ngUnsubscribe, _SkyDatepickerComponent_overlay, _SkyDatepickerComponent_overlayKeydownListner, _SkyDatepickerComponent__calendarRef, _SkyDatepickerComponent__disabled, _SkyDatepickerComponent__selectedDate, _SkyDatepickerComponent_affixService, _SkyDatepickerComponent_changeDetector, _SkyDatepickerComponent_coreAdapter, _SkyDatepickerComponent_overlayService, _SkyDatepickerComponent_closePicker, _SkyDatepickerComponent_openPicker, _SkyDatepickerComponent_createAffixer, _SkyDatepickerComponent_destroyAffixer, _SkyDatepickerComponent_createOverlay, _SkyDatepickerComponent_destroyOverlay, _SkyDatepickerComponent_addKeydownListener, _SkyDatepickerComponent_removePickerEventListeners, _SkyDatepickerComponent_cancelCustomDatesSubscription;
1899
+ var _SkyDatepickerComponent_instances, _SkyDatepickerComponent_affixer, _SkyDatepickerComponent_calendarUnsubscribe, _SkyDatepickerComponent_customDatesSubscription, _SkyDatepickerComponent_ngUnsubscribe, _SkyDatepickerComponent_overlay, _SkyDatepickerComponent_overlayKeydownListener, _SkyDatepickerComponent__calendarRef, _SkyDatepickerComponent__disabled, _SkyDatepickerComponent__selectedDate, _SkyDatepickerComponent_affixService, _SkyDatepickerComponent_changeDetector, _SkyDatepickerComponent_coreAdapter, _SkyDatepickerComponent_overlayService, _SkyDatepickerComponent_closePicker, _SkyDatepickerComponent_openPicker, _SkyDatepickerComponent_createAffixer, _SkyDatepickerComponent_destroyAffixer, _SkyDatepickerComponent_createOverlay, _SkyDatepickerComponent_destroyOverlay, _SkyDatepickerComponent_addKeydownListener, _SkyDatepickerComponent_removePickerEventListeners, _SkyDatepickerComponent_cancelCustomDatesSubscription;
1898
1900
  let nextId$1 = 0;
1899
1901
  /**
1900
1902
  * Creates the datepicker button and calendar.
@@ -1924,7 +1926,7 @@ class SkyDatepickerComponent {
1924
1926
  _SkyDatepickerComponent_customDatesSubscription.set(this, void 0);
1925
1927
  _SkyDatepickerComponent_ngUnsubscribe.set(this, new Subject());
1926
1928
  _SkyDatepickerComponent_overlay.set(this, void 0);
1927
- _SkyDatepickerComponent_overlayKeydownListner.set(this, void 0);
1929
+ _SkyDatepickerComponent_overlayKeydownListener.set(this, void 0);
1928
1930
  _SkyDatepickerComponent__calendarRef.set(this, void 0);
1929
1931
  _SkyDatepickerComponent__disabled.set(this, false);
1930
1932
  _SkyDatepickerComponent__selectedDate.set(this, void 0);
@@ -2056,7 +2058,7 @@ class SkyDatepickerComponent {
2056
2058
  }
2057
2059
  }
2058
2060
  }
2059
- _SkyDatepickerComponent_affixer = new WeakMap(), _SkyDatepickerComponent_calendarUnsubscribe = new WeakMap(), _SkyDatepickerComponent_customDatesSubscription = new WeakMap(), _SkyDatepickerComponent_ngUnsubscribe = new WeakMap(), _SkyDatepickerComponent_overlay = new WeakMap(), _SkyDatepickerComponent_overlayKeydownListner = new WeakMap(), _SkyDatepickerComponent__calendarRef = new WeakMap(), _SkyDatepickerComponent__disabled = new WeakMap(), _SkyDatepickerComponent__selectedDate = new WeakMap(), _SkyDatepickerComponent_affixService = new WeakMap(), _SkyDatepickerComponent_changeDetector = new WeakMap(), _SkyDatepickerComponent_coreAdapter = new WeakMap(), _SkyDatepickerComponent_overlayService = new WeakMap(), _SkyDatepickerComponent_instances = new WeakSet(), _SkyDatepickerComponent_closePicker = function _SkyDatepickerComponent_closePicker() {
2061
+ _SkyDatepickerComponent_affixer = new WeakMap(), _SkyDatepickerComponent_calendarUnsubscribe = new WeakMap(), _SkyDatepickerComponent_customDatesSubscription = new WeakMap(), _SkyDatepickerComponent_ngUnsubscribe = new WeakMap(), _SkyDatepickerComponent_overlay = new WeakMap(), _SkyDatepickerComponent_overlayKeydownListener = new WeakMap(), _SkyDatepickerComponent__calendarRef = new WeakMap(), _SkyDatepickerComponent__disabled = new WeakMap(), _SkyDatepickerComponent__selectedDate = new WeakMap(), _SkyDatepickerComponent_affixService = new WeakMap(), _SkyDatepickerComponent_changeDetector = new WeakMap(), _SkyDatepickerComponent_coreAdapter = new WeakMap(), _SkyDatepickerComponent_overlayService = new WeakMap(), _SkyDatepickerComponent_instances = new WeakSet(), _SkyDatepickerComponent_closePicker = function _SkyDatepickerComponent_closePicker() {
2060
2062
  __classPrivateFieldGet(this, _SkyDatepickerComponent_instances, "m", _SkyDatepickerComponent_destroyAffixer).call(this);
2061
2063
  __classPrivateFieldGet(this, _SkyDatepickerComponent_instances, "m", _SkyDatepickerComponent_destroyOverlay).call(this);
2062
2064
  __classPrivateFieldGet(this, _SkyDatepickerComponent_instances, "m", _SkyDatepickerComponent_removePickerEventListeners).call(this);
@@ -2121,7 +2123,7 @@ _SkyDatepickerComponent_affixer = new WeakMap(), _SkyDatepickerComponent_calenda
2121
2123
  __classPrivateFieldSet(this, _SkyDatepickerComponent_overlay, undefined, "f");
2122
2124
  }
2123
2125
  }, _SkyDatepickerComponent_addKeydownListener = function _SkyDatepickerComponent_addKeydownListener() {
2124
- __classPrivateFieldSet(this, _SkyDatepickerComponent_overlayKeydownListner, fromEvent(window.document, 'keydown')
2126
+ __classPrivateFieldSet(this, _SkyDatepickerComponent_overlayKeydownListener, fromEvent(window.document, 'keydown')
2125
2127
  .pipe(takeUntil(__classPrivateFieldGet(this, _SkyDatepickerComponent_ngUnsubscribe, "f")))
2126
2128
  .subscribe((event) => {
2127
2129
  const key = event.key?.toLowerCase();
@@ -2133,7 +2135,7 @@ _SkyDatepickerComponent_affixer = new WeakMap(), _SkyDatepickerComponent_calenda
2133
2135
  __classPrivateFieldGet(this, _SkyDatepickerComponent_calendarUnsubscribe, "f").next();
2134
2136
  __classPrivateFieldGet(this, _SkyDatepickerComponent_calendarUnsubscribe, "f").complete();
2135
2137
  __classPrivateFieldSet(this, _SkyDatepickerComponent_calendarUnsubscribe, new Subject(), "f");
2136
- __classPrivateFieldGet(this, _SkyDatepickerComponent_overlayKeydownListner, "f")?.unsubscribe();
2138
+ __classPrivateFieldGet(this, _SkyDatepickerComponent_overlayKeydownListener, "f")?.unsubscribe();
2137
2139
  }, _SkyDatepickerComponent_cancelCustomDatesSubscription = function _SkyDatepickerComponent_cancelCustomDatesSubscription() {
2138
2140
  if (__classPrivateFieldGet(this, _SkyDatepickerComponent_customDatesSubscription, "f")) {
2139
2141
  __classPrivateFieldGet(this, _SkyDatepickerComponent_customDatesSubscription, "f").unsubscribe();
@@ -2200,7 +2202,7 @@ class SkyFuzzyDatepickerInputDirective {
2200
2202
  constructor(changeDetector, configService, elementRef, fuzzyDateService, localeProvider, renderer, resourcesService, datepickerComponent) {
2201
2203
  _SkyFuzzyDatepickerInputDirective_instances.add(this);
2202
2204
  /**
2203
- * Indicates whether to disable date validation on the fuzzy datepicker input.
2205
+ * Whether to disable date validation on the fuzzy datepicker input.
2204
2206
  * @default false
2205
2207
  */
2206
2208
  this.skyDatepickerNoValidate = false;
@@ -2255,7 +2257,7 @@ class SkyFuzzyDatepickerInputDirective {
2255
2257
  });
2256
2258
  }
2257
2259
  /**
2258
- * Specifies the date format for the input. Place this attribute on the `input` element
2260
+ * The date format for the input. Place this attribute on the `input` element
2259
2261
  * to override the default in `SkyDatepickerConfigService`.
2260
2262
  * @default "MM/DD/YYYY"
2261
2263
  */
@@ -2274,7 +2276,7 @@ class SkyFuzzyDatepickerInputDirective {
2274
2276
  __classPrivateFieldGet(this, _SkyFuzzyDatepickerInputDirective_preferredShortDateFormat, "f"));
2275
2277
  }
2276
2278
  /**
2277
- * Indicates whether to disable the datepicker.
2279
+ * Whether to disable the datepicker.
2278
2280
  * @default false
2279
2281
  */
2280
2282
  set disabled(value) {
@@ -2286,7 +2288,7 @@ class SkyFuzzyDatepickerInputDirective {
2286
2288
  return __classPrivateFieldGet(this, _SkyFuzzyDatepickerInputDirective__disabled, "f");
2287
2289
  }
2288
2290
  /**
2289
- * Indicates whether to prevent users from specifying dates that are in the future.
2291
+ * Whether to prevent users from specifying dates that are in the future.
2290
2292
  * Place this attribute on the `input` element.
2291
2293
  * @default false
2292
2294
  */
@@ -2298,7 +2300,7 @@ class SkyFuzzyDatepickerInputDirective {
2298
2300
  return __classPrivateFieldGet(this, _SkyFuzzyDatepickerInputDirective__futureDisabled, "f");
2299
2301
  }
2300
2302
  /**
2301
- * Specifies the latest fuzzy date allowed. Place this attribute on the `input` element
2303
+ * The latest fuzzy date allowed. Place this attribute on the `input` element
2302
2304
  * to prevent fuzzy dates after a specified date. This property accepts
2303
2305
  * a `SkyFuzzyDate` value that includes numeric month, day, and year values.
2304
2306
  * For example: `{ month: 1, day: 1, year: 2027 }`.
@@ -2312,7 +2314,7 @@ class SkyFuzzyDatepickerInputDirective {
2312
2314
  return __classPrivateFieldGet(this, _SkyFuzzyDatepickerInputDirective__maxDate, "f");
2313
2315
  }
2314
2316
  /**
2315
- * Specifies the earliest fuzzy date allowed. Place this attribute on the `input` element
2317
+ * The earliest fuzzy date allowed. Place this attribute on the `input` element
2316
2318
  * to prevent fuzzy dates before a specified date. This property accepts a `SkyFuzzyDate` value
2317
2319
  * that includes numeric month, day, and year values.
2318
2320
  * For example: `{ month: 1, day: 1, year: 2007 }`.
@@ -2326,7 +2328,7 @@ class SkyFuzzyDatepickerInputDirective {
2326
2328
  return __classPrivateFieldGet(this, _SkyFuzzyDatepickerInputDirective__minDate, "f");
2327
2329
  }
2328
2330
  /**
2329
- * Specifies the starting day of the week in the calendar, where `0` sets the starting day
2331
+ * The starting day of the week in the calendar, where `0` sets the starting day
2330
2332
  * to Sunday. Place this attribute on the `input` element to override the default
2331
2333
  * in `SkyDatepickerConfigService`.
2332
2334
  * @default 0
@@ -2341,7 +2343,7 @@ class SkyFuzzyDatepickerInputDirective {
2341
2343
  return __classPrivateFieldGet(this, _SkyFuzzyDatepickerInputDirective__startingDay, "f") || __classPrivateFieldGet(this, _SkyFuzzyDatepickerInputDirective_configService, "f").startingDay;
2342
2344
  }
2343
2345
  /**
2344
- * Indicates whether to require the year in fuzzy dates.
2346
+ * Whether to require the year in fuzzy dates.
2345
2347
  * @default false
2346
2348
  */
2347
2349
  set yearRequired(value) {
@@ -2380,7 +2382,7 @@ class SkyFuzzyDatepickerInputDirective {
2380
2382
  }
2381
2383
  ngAfterViewInit() {
2382
2384
  // This is needed to address a bug in Angular 4.
2383
- // When a control value is set intially, its value is not represented on the view.
2385
+ // When a control value is set initially, its value is not represented on the view.
2384
2386
  // See: https://github.com/angular/angular/issues/13792
2385
2387
  // Of note is the parent check which allows us to determine if the form is reactive.
2386
2388
  // Without this check there is a changed before checked error
@@ -2650,7 +2652,7 @@ class SkyDatepickerInputDirective {
2650
2652
  constructor(adapter, changeDetector, configService, elementRef, localeProvider, renderer, resourcesService, datepickerComponent) {
2651
2653
  _SkyDatepickerInputDirective_instances.add(this);
2652
2654
  /**
2653
- * Indicates whether to disable date validation on the datepicker input.
2655
+ * Whether to disable date validation on the datepicker input.
2654
2656
  * @default false
2655
2657
  */
2656
2658
  this.skyDatepickerNoValidate = false;
@@ -2707,7 +2709,7 @@ class SkyDatepickerInputDirective {
2707
2709
  });
2708
2710
  }
2709
2711
  /**
2710
- * Specifies the date format for the input. Place this attribute on the `input` element
2712
+ * The date format for the input. Place this attribute on the `input` element
2711
2713
  * to override the default in the `SkyDatepickerConfigService`.
2712
2714
  * @default "MM/DD/YYYY"
2713
2715
  */
@@ -2725,7 +2727,7 @@ class SkyDatepickerInputDirective {
2725
2727
  __classPrivateFieldGet(this, _SkyDatepickerInputDirective_preferredShortDateFormat, "f"));
2726
2728
  }
2727
2729
  /**
2728
- * Indicates whether to disable the datepicker.
2730
+ * Whether to disable the datepicker.
2729
2731
  * @default false
2730
2732
  */
2731
2733
  set disabled(value) {
@@ -2737,7 +2739,7 @@ class SkyDatepickerInputDirective {
2737
2739
  return __classPrivateFieldGet(this, _SkyDatepickerInputDirective__disabled, "f");
2738
2740
  }
2739
2741
  /**
2740
- * Specifies the latest date that is available in the calendar. Place this attribute on
2742
+ * The latest date that is available in the calendar. Place this attribute on
2741
2743
  * the `input` element to override the default in `SkyDatepickerConfigService`.
2742
2744
  */
2743
2745
  set maxDate(value) {
@@ -2750,7 +2752,7 @@ class SkyDatepickerInputDirective {
2750
2752
  return __classPrivateFieldGet(this, _SkyDatepickerInputDirective__maxDate, "f") || __classPrivateFieldGet(this, _SkyDatepickerInputDirective_configService, "f").maxDate;
2751
2753
  }
2752
2754
  /**
2753
- * Specifies the earliest date that is available in the calendar. Place this attribute on
2755
+ * The earliest date that is available in the calendar. Place this attribute on
2754
2756
  * the `input` element to override the default in `SkyDatepickerConfigService`. To avoid validation errors, the time associated with the minimum date must be midnight. This is necessary because the datepicker automatically sets the time on the `Date` object for selected dates to midnight in the current user's time zone.
2755
2757
  */
2756
2758
  set minDate(value) {
@@ -2778,7 +2780,7 @@ class SkyDatepickerInputDirective {
2778
2780
  }
2779
2781
  }
2780
2782
  /**
2781
- * Specifies the starting day of the week in the calendar, where `0` sets the starting day
2783
+ * The starting day of the week in the calendar, where `0` sets the starting day
2782
2784
  * to Sunday. Place this attribute on the `input` element to override the default
2783
2785
  * in `SkyDatepickerConfigService`.
2784
2786
  * @default 0
@@ -2793,7 +2795,7 @@ class SkyDatepickerInputDirective {
2793
2795
  return __classPrivateFieldGet(this, _SkyDatepickerInputDirective__startingDay, "f") || __classPrivateFieldGet(this, _SkyDatepickerInputDirective_configService, "f").startingDay;
2794
2796
  }
2795
2797
  /**
2796
- * Indicates whether the format of the date value must match the format from the `dateFormat` value.
2798
+ * Whether the format of the date value must match the format from the `dateFormat` value.
2797
2799
  * If this property is `true` and the datepicker input directive cannot find an exact match, then
2798
2800
  * the input is marked as invalid.
2799
2801
  * If this property is `false` and the datepicker input directive cannot find an exact match, then
@@ -2830,7 +2832,7 @@ class SkyDatepickerInputDirective {
2830
2832
  }
2831
2833
  ngAfterViewInit() {
2832
2834
  // This is needed to address a bug in Angular 4.
2833
- // When a control value is set intially, its value is not represented on the view.
2835
+ // When a control value is set initially, its value is not represented on the view.
2834
2836
  // See: https://github.com/angular/angular/issues/13792
2835
2837
  // Of note is the parent check which allows us to determine if the form is reactive.
2836
2838
  // Without this check there is a changed before checked error
@@ -3736,12 +3738,12 @@ class SkyDateRangePickerComponent {
3736
3738
  constructor(changeDetector, dateRangeService, formBuilder, localeProvider, ngZone, themeSvc) {
3737
3739
  _SkyDateRangePickerComponent_instances.add(this);
3738
3740
  /**
3739
- * Indicates whether to require users to specify a start date.
3741
+ * Whether to require users to specify a start date.
3740
3742
  * @default false
3741
3743
  */
3742
3744
  this.startDateRequired = false;
3743
3745
  /**
3744
- * Indicates whether to require users to specify a end date.
3746
+ * Whether to require users to specify a end date.
3745
3747
  * @default false
3746
3748
  */
3747
3749
  this.endDateRequired = false;
@@ -3816,7 +3818,7 @@ class SkyDateRangePickerComponent {
3816
3818
  });
3817
3819
  }
3818
3820
  /**
3819
- * Specifies IDs for the date range options to include in the picker's dropdown.
3821
+ * IDs for the date range options to include in the picker's dropdown.
3820
3822
  * The options specify calculator objects that return two `Date` objects to represent date ranges.
3821
3823
  * By default, this property includes all `SkyDateRangeCalculatorId` values.
3822
3824
  */
@@ -3850,7 +3852,7 @@ class SkyDateRangePickerComponent {
3850
3852
  return __classPrivateFieldGet(this, _SkyDateRangePickerComponent__calculatorIds, "f");
3851
3853
  }
3852
3854
  /**
3853
- * Specifies a date format for
3855
+ * The date format for
3854
3856
  * [the `sky-datepicker` components](https://developer.blackbaud.com/skyux/components/datepicker)
3855
3857
  * that make up the date range picker. The text input is a composite component of
3856
3858
  * up to two `sky-datepicker` components.
@@ -3864,7 +3866,7 @@ class SkyDateRangePickerComponent {
3864
3866
  return __classPrivateFieldGet(this, _SkyDateRangePickerComponent__dateFormat, "f");
3865
3867
  }
3866
3868
  /**
3867
- * Indicates whether to disable the date range picker.
3869
+ * Whether to disable the date range picker.
3868
3870
  * @default false
3869
3871
  */
3870
3872
  set disabled(value) {
@@ -3901,7 +3903,7 @@ class SkyDateRangePickerComponent {
3901
3903
  __classPrivateFieldGet(this, _SkyDateRangePickerComponent_instances, "m", _SkyDateRangePickerComponent_setValue).call(this, newValue, false);
3902
3904
  __classPrivateFieldGet(this, _SkyDateRangePickerComponent_instances, "m", _SkyDateRangePickerComponent_resetFormGroupValue).call(this);
3903
3905
  // This is needed to address a bug in Angular 4.
3904
- // When a control value is set intially, its value is not represented on the view.
3906
+ // When a control value is set initially, its value is not represented on the view.
3905
3907
  // See: https://github.com/angular/angular/issues/13792
3906
3908
  /* istanbul ignore else */
3907
3909
  if (__classPrivateFieldGet(this, _SkyDateRangePickerComponent_control, "f")) {
@@ -4224,7 +4226,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
4224
4226
  }]
4225
4227
  }] });
4226
4228
 
4227
- var _SkyTimepickerComponent_instances, _SkyTimepickerComponent_affixer, _SkyTimepickerComponent_timepickerUnsubscribe, _SkyTimepickerComponent_ngUnsubscribe, _SkyTimepickerComponent_overlay, _SkyTimepickerComponent_overlayKeydownListner, _SkyTimepickerComponent__disabled, _SkyTimepickerComponent__timepickerRef, _SkyTimepickerComponent_affixService, _SkyTimepickerComponent_changeDetector, _SkyTimepickerComponent_coreAdapter, _SkyTimepickerComponent_overlayService, _SkyTimepickerComponent_closePicker, _SkyTimepickerComponent_openPicker, _SkyTimepickerComponent_createAffixer, _SkyTimepickerComponent_destroyAffixer, _SkyTimepickerComponent_createOverlay, _SkyTimepickerComponent_destroyOverlay, _SkyTimepickerComponent_addKeydownListener, _SkyTimepickerComponent_removePickerEventListeners;
4229
+ var _SkyTimepickerComponent_instances, _SkyTimepickerComponent_affixer, _SkyTimepickerComponent_timepickerUnsubscribe, _SkyTimepickerComponent_ngUnsubscribe, _SkyTimepickerComponent_overlay, _SkyTimepickerComponent_overlayKeydownListener, _SkyTimepickerComponent__disabled, _SkyTimepickerComponent__timepickerRef, _SkyTimepickerComponent_affixService, _SkyTimepickerComponent_changeDetector, _SkyTimepickerComponent_coreAdapter, _SkyTimepickerComponent_overlayService, _SkyTimepickerComponent_closePicker, _SkyTimepickerComponent_openPicker, _SkyTimepickerComponent_createAffixer, _SkyTimepickerComponent_destroyAffixer, _SkyTimepickerComponent_createOverlay, _SkyTimepickerComponent_destroyOverlay, _SkyTimepickerComponent_addKeydownListener, _SkyTimepickerComponent_removePickerEventListeners;
4228
4230
  let nextId = 0;
4229
4231
  /**
4230
4232
  * Creates a SKY UX-themed replacement for the HTML `input` element with `type="time"`.
@@ -4252,7 +4254,7 @@ class SkyTimepickerComponent {
4252
4254
  _SkyTimepickerComponent_timepickerUnsubscribe.set(this, new Subject());
4253
4255
  _SkyTimepickerComponent_ngUnsubscribe.set(this, new Subject());
4254
4256
  _SkyTimepickerComponent_overlay.set(this, void 0);
4255
- _SkyTimepickerComponent_overlayKeydownListner.set(this, void 0);
4257
+ _SkyTimepickerComponent_overlayKeydownListener.set(this, void 0);
4256
4258
  _SkyTimepickerComponent__disabled.set(this, false);
4257
4259
  _SkyTimepickerComponent__timepickerRef.set(this, void 0);
4258
4260
  _SkyTimepickerComponent_affixService.set(this, void 0);
@@ -4359,7 +4361,7 @@ class SkyTimepickerComponent {
4359
4361
  set timepickerRef(value) {
4360
4362
  if (value) {
4361
4363
  __classPrivateFieldSet(this, _SkyTimepickerComponent__timepickerRef, value, "f");
4362
- // Wait for the timepicker component to render before guaging dimensions.
4364
+ // Wait for the timepicker component to render before gauging dimensions.
4363
4365
  setTimeout(() => {
4364
4366
  __classPrivateFieldGet(this, _SkyTimepickerComponent_instances, "m", _SkyTimepickerComponent_destroyAffixer).call(this);
4365
4367
  __classPrivateFieldGet(this, _SkyTimepickerComponent_instances, "m", _SkyTimepickerComponent_createAffixer).call(this);
@@ -4438,7 +4440,7 @@ class SkyTimepickerComponent {
4438
4440
  this.localeFormat = data.localeFormat;
4439
4441
  this.minuteMultiplier = data.minuteMultiplier;
4440
4442
  }
4441
- onCloseButtonCick() {
4443
+ onCloseButtonClick() {
4442
4444
  __classPrivateFieldGet(this, _SkyTimepickerComponent_instances, "m", _SkyTimepickerComponent_closePicker).call(this);
4443
4445
  }
4444
4446
  setTime(event) {
@@ -4463,7 +4465,7 @@ class SkyTimepickerComponent {
4463
4465
  __classPrivateFieldGet(this, _SkyTimepickerComponent_instances, "m", _SkyTimepickerComponent_openPicker).call(this);
4464
4466
  }
4465
4467
  }
4466
- _SkyTimepickerComponent_affixer = new WeakMap(), _SkyTimepickerComponent_timepickerUnsubscribe = new WeakMap(), _SkyTimepickerComponent_ngUnsubscribe = new WeakMap(), _SkyTimepickerComponent_overlay = new WeakMap(), _SkyTimepickerComponent_overlayKeydownListner = new WeakMap(), _SkyTimepickerComponent__disabled = new WeakMap(), _SkyTimepickerComponent__timepickerRef = new WeakMap(), _SkyTimepickerComponent_affixService = new WeakMap(), _SkyTimepickerComponent_changeDetector = new WeakMap(), _SkyTimepickerComponent_coreAdapter = new WeakMap(), _SkyTimepickerComponent_overlayService = new WeakMap(), _SkyTimepickerComponent_instances = new WeakSet(), _SkyTimepickerComponent_closePicker = function _SkyTimepickerComponent_closePicker() {
4468
+ _SkyTimepickerComponent_affixer = new WeakMap(), _SkyTimepickerComponent_timepickerUnsubscribe = new WeakMap(), _SkyTimepickerComponent_ngUnsubscribe = new WeakMap(), _SkyTimepickerComponent_overlay = new WeakMap(), _SkyTimepickerComponent_overlayKeydownListener = new WeakMap(), _SkyTimepickerComponent__disabled = new WeakMap(), _SkyTimepickerComponent__timepickerRef = new WeakMap(), _SkyTimepickerComponent_affixService = new WeakMap(), _SkyTimepickerComponent_changeDetector = new WeakMap(), _SkyTimepickerComponent_coreAdapter = new WeakMap(), _SkyTimepickerComponent_overlayService = new WeakMap(), _SkyTimepickerComponent_instances = new WeakSet(), _SkyTimepickerComponent_closePicker = function _SkyTimepickerComponent_closePicker() {
4467
4469
  __classPrivateFieldGet(this, _SkyTimepickerComponent_instances, "m", _SkyTimepickerComponent_destroyAffixer).call(this);
4468
4470
  __classPrivateFieldGet(this, _SkyTimepickerComponent_instances, "m", _SkyTimepickerComponent_destroyOverlay).call(this);
4469
4471
  __classPrivateFieldGet(this, _SkyTimepickerComponent_instances, "m", _SkyTimepickerComponent_removePickerEventListeners).call(this);
@@ -4527,7 +4529,7 @@ _SkyTimepickerComponent_affixer = new WeakMap(), _SkyTimepickerComponent_timepic
4527
4529
  __classPrivateFieldSet(this, _SkyTimepickerComponent_overlay, undefined, "f");
4528
4530
  }
4529
4531
  }, _SkyTimepickerComponent_addKeydownListener = function _SkyTimepickerComponent_addKeydownListener() {
4530
- __classPrivateFieldSet(this, _SkyTimepickerComponent_overlayKeydownListner, fromEvent(window.document, 'keydown')
4532
+ __classPrivateFieldSet(this, _SkyTimepickerComponent_overlayKeydownListener, fromEvent(window.document, 'keydown')
4531
4533
  .pipe(takeUntil(__classPrivateFieldGet(this, _SkyTimepickerComponent_ngUnsubscribe, "f")))
4532
4534
  .subscribe((event) => {
4533
4535
  const key = event.key?.toLowerCase();
@@ -4544,13 +4546,13 @@ _SkyTimepickerComponent_affixer = new WeakMap(), _SkyTimepickerComponent_timepic
4544
4546
  __classPrivateFieldSet(this, _SkyTimepickerComponent_timepickerUnsubscribe, new Subject(), "f");
4545
4547
  }
4546
4548
  /* istanbul ignore next */
4547
- __classPrivateFieldGet(this, _SkyTimepickerComponent_overlayKeydownListner, "f")?.unsubscribe();
4549
+ __classPrivateFieldGet(this, _SkyTimepickerComponent_overlayKeydownListener, "f")?.unsubscribe();
4548
4550
  };
4549
4551
  SkyTimepickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.11", ngImport: i0, type: SkyTimepickerComponent, deps: [{ token: i1.SkyAffixService }, { token: i0.ChangeDetectorRef }, { token: i1.SkyCoreAdapterService }, { token: i1.SkyOverlayService }, { token: i2$1.SkyInputBoxHostService, optional: true }, { token: i3$2.SkyThemeService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
4550
- SkyTimepickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.11", type: SkyTimepickerComponent, selector: "sky-timepicker", outputs: { selectedTimeChanged: "selectedTimeChanged" }, viewQueries: [{ propertyName: "timepickerRef", first: true, predicate: ["timepickerRef"], descendants: true, read: ElementRef }, { propertyName: "timepickerTemplateRef", first: true, predicate: ["timepickerTemplateRef"], descendants: true, read: TemplateRef }, { propertyName: "triggerButtonRef", first: true, predicate: ["triggerButtonRef"], descendants: true, read: ElementRef }, { propertyName: "inputTemplateRef", first: true, predicate: ["inputTemplateRef"], descendants: true, read: TemplateRef, static: true }, { propertyName: "triggerButtonTemplateRef", first: true, predicate: ["triggerButtonTemplateRef"], descendants: true, read: TemplateRef, static: true }], ngImport: i0, template: "<div class=\"sky-timepicker\">\n <ng-container *ngIf=\"!inputBoxHostService\">\n <div class=\"sky-input-group\">\n <ng-container *ngTemplateOutlet=\"inputTemplateRef\"></ng-container>\n <ng-container *ngTemplateOutlet=\"triggerButtonTemplateRef\"></ng-container>\n </div>\n </ng-container>\n</div>\n\n<ng-template #inputTemplateRef>\n <ng-content></ng-content>\n</ng-template>\n\n<ng-template #triggerButtonTemplateRef>\n <div class=\"sky-input-group-btn\">\n <button\n aria-haspopup=\"dialog\"\n class=\"sky-btn sky-btn-default sky-input-group-timepicker-btn\"\n type=\"button\"\n [attr.aria-controls]=\"isOpen ? timepickerId : null\"\n [attr.aria-expanded]=\"isOpen\"\n [attr.aria-label]=\"'skyux_timepicker_button_label' | skyLibResources\"\n [attr.id]=\"triggerButtonId\"\n [attr.title]=\"'skyux_timepicker_button_label' | skyLibResources\"\n [disabled]=\"disabled\"\n (click)=\"onTriggerButtonClick()\"\n #triggerButtonRef\n >\n <sky-icon *skyThemeIf=\"'default'\" icon=\"clock-o\" size=\"lg\"></sky-icon>\n <sky-icon\n *skyThemeIf=\"'modern'\"\n icon=\"clock\"\n size=\"lg\"\n iconType=\"skyux\"\n ></sky-icon>\n </button>\n </div>\n</ng-template>\n\n<ng-template #timepickerTemplateRef>\n <div\n class=\"sky-timepicker-container sky-shadow sky-box sky-elevation-4\"\n role=\"dialog\"\n [attr.aria-labelledby]=\"triggerButtonId\"\n [attr.id]=\"timepickerId\"\n [class.sky-timepicker-hidden]=\"!isVisible\"\n #timepickerRef\n >\n <div class=\"sky-timepicker-content\">\n <section\n class=\"sky-timepicker-column\"\n [ngClass]=\"{ 'sky-timepicker-24hour': is8601 }\"\n >\n <ol>\n <li *ngFor=\"let hour of hours\">\n <button\n name=\"hour\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedHour === hour }\"\n (click)=\"setTime($event)\"\n >\n {{ hour }}\n </button>\n </li>\n </ol>\n </section>\n <section class=\"sky-timepicker-column\">\n <ol>\n <li *ngFor=\"let minute of minutes\">\n <button\n name=\"minute\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMinute === minute }\"\n (click)=\"setTime($event)\"\n >\n {{ '00'.substring(0, 2 - minute.toString().length) + minute }}\n </button>\n </li>\n </ol>\n </section>\n <section *ngIf=\"!is8601\" class=\"sky-timepicker-column\">\n <ol>\n <li>\n <button\n name=\"meridie\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMeridies === 'AM' }\"\n (click)=\"setTime($event)\"\n >\n AM\n </button>\n </li>\n <li>\n <button\n name=\"meridie\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMeridies === 'PM' }\"\n (click)=\"setTime($event)\"\n >\n PM\n </button>\n </li>\n </ol>\n </section>\n </div>\n <div class=\"sky-timepicker-footer\">\n <section class=\"sky-timepicker-column\">\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"onCloseButtonCick()\"\n >\n {{ 'skyux_timepicker_close' | skyLibResources }}\n </button>\n </section>\n </div>\n </div>\n</ng-template>\n", styles: [".sky-timepicker-container{position:fixed;font-size:15px;padding:5px;background-color:#eeeeef;border-radius:5px}.sky-timepicker-container :last-child ol{display:flex;flex-direction:column;height:100%}.sky-timepicker-container :last-child ol li{border-bottom:1px solid #e2e3e4;flex:1}.sky-timepicker-column{margin:5px}.sky-timepicker-column ol{border-top:1px solid #e2e3e4;border-right:1px solid #e2e3e4;border-bottom:1px solid #e2e3e4;border-left:1px solid #e2e3e4;column-gap:1px;columns:2;list-style-type:none;margin:0;padding:0}.sky-timepicker-column ol li{text-align:center;cursor:pointer;margin:0}.sky-timepicker-column ol li button{cursor:pointer}.sky-timepicker-column ol li button:focus{outline:thin dotted;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.sky-timepicker-column ol li button:hover{background-color:#eeeeef}.sky-timepicker-column ol li button:active{background-color:#e2e3e4}.sky-timepicker-column ol li button.sky-btn-active:hover{background-color:#c1e8fb}.sky-timepicker-column ol .sky-btn-active{background-color:#c1e8fb;box-shadow:inset 0 0 0 2px #00b4f1;border-radius:3px}.sky-timepicker-column.sky-timepicker-24hour ol{columns:4}.sky-timepicker-column.sky-timepicker-24hour ol li{border-bottom-width:0}.sky-timepicker-content{display:flex}.sky-timepicker-content button{background-color:#fff;border-width:0;padding:5px 15px;width:100%;height:100%}.sky-timepicker-footer{margin:0;padding:0 5px}.sky-timepicker-footer .sky-timepicker-column{margin-left:0;margin-right:0;width:100%}.sky-timepicker-hidden{visibility:hidden}.sky-timepicker-clock-icon-modern,.sky-theme-modern .sky-timepicker-clock-icon-default{display:none}.sky-theme-modern .sky-timepicker-clock-icon-modern{display:inline}.sky-theme-modern .sky-timepicker-container{background-color:#fff;border:solid 1px #cdcfd2;border-radius:6px;font-size:16px}.sky-theme-modern .sky-timepicker-container:focus-within{border:solid 2px #1870B8;padding:4px}.sky-theme-modern .sky-timepicker-container:last-child ol li{border-bottom:none}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol .sky-btn-default{border-width:1px;border-color:transparent;padding:4px 6px;outline:none}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:hover:not(.sky-btn-active){background-color:transparent}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol .sky-btn-active,.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:hover{box-shadow:inset 0 0 0 1px #00b4f1;border-radius:6px}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:active,.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:focus{outline:none;border-radius:6px;box-shadow:inset 0 0 0 2px #1870b8}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-container{color:#fbfcfe}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-container:not(:focus-within){border-color:#686c73}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol{border-color:#686c73}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol button{background-color:transparent;color:#fbfcfe}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol .sky-btn-active{background-color:#009cd1}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i3$1.λ4, selector: "sky-icon", inputs: ["icon", "iconType", "size", "fixedWidth", "variant"] }, { kind: "directive", type: i3$2.λ3, selector: "[skyThemeIf]", inputs: ["skyThemeIf"] }, { kind: "pipe", type: i3.SkyLibResourcesPipe, name: "skyLibResources" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
4552
+ SkyTimepickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.11", type: SkyTimepickerComponent, selector: "sky-timepicker", outputs: { selectedTimeChanged: "selectedTimeChanged" }, viewQueries: [{ propertyName: "timepickerRef", first: true, predicate: ["timepickerRef"], descendants: true, read: ElementRef }, { propertyName: "timepickerTemplateRef", first: true, predicate: ["timepickerTemplateRef"], descendants: true, read: TemplateRef }, { propertyName: "triggerButtonRef", first: true, predicate: ["triggerButtonRef"], descendants: true, read: ElementRef }, { propertyName: "inputTemplateRef", first: true, predicate: ["inputTemplateRef"], descendants: true, read: TemplateRef, static: true }, { propertyName: "triggerButtonTemplateRef", first: true, predicate: ["triggerButtonTemplateRef"], descendants: true, read: TemplateRef, static: true }], ngImport: i0, template: "<div class=\"sky-timepicker\">\n <ng-container *ngIf=\"!inputBoxHostService\">\n <div class=\"sky-input-group\">\n <ng-container *ngTemplateOutlet=\"inputTemplateRef\"></ng-container>\n <ng-container *ngTemplateOutlet=\"triggerButtonTemplateRef\"></ng-container>\n </div>\n </ng-container>\n</div>\n\n<ng-template #inputTemplateRef>\n <ng-content></ng-content>\n</ng-template>\n\n<ng-template #triggerButtonTemplateRef>\n <div class=\"sky-input-group-btn\">\n <button\n aria-haspopup=\"dialog\"\n class=\"sky-btn sky-btn-default sky-input-group-timepicker-btn\"\n type=\"button\"\n [attr.aria-controls]=\"isOpen ? timepickerId : null\"\n [attr.aria-expanded]=\"isOpen\"\n [attr.aria-label]=\"'skyux_timepicker_button_label' | skyLibResources\"\n [attr.id]=\"triggerButtonId\"\n [attr.title]=\"'skyux_timepicker_button_label' | skyLibResources\"\n [disabled]=\"disabled\"\n (click)=\"onTriggerButtonClick()\"\n #triggerButtonRef\n >\n <sky-icon *skyThemeIf=\"'default'\" icon=\"clock-o\" size=\"lg\"></sky-icon>\n <sky-icon\n *skyThemeIf=\"'modern'\"\n icon=\"clock\"\n size=\"lg\"\n iconType=\"skyux\"\n ></sky-icon>\n </button>\n </div>\n</ng-template>\n\n<ng-template #timepickerTemplateRef>\n <div\n class=\"sky-timepicker-container sky-shadow sky-box sky-elevation-4\"\n role=\"dialog\"\n [attr.aria-labelledby]=\"triggerButtonId\"\n [attr.id]=\"timepickerId\"\n [class.sky-timepicker-hidden]=\"!isVisible\"\n #timepickerRef\n >\n <div class=\"sky-timepicker-content\">\n <section\n class=\"sky-timepicker-column\"\n [ngClass]=\"{ 'sky-timepicker-24hour': is8601 }\"\n >\n <ol>\n <li *ngFor=\"let hour of hours\">\n <button\n name=\"hour\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedHour === hour }\"\n (click)=\"setTime($event)\"\n >\n {{ hour }}\n </button>\n </li>\n </ol>\n </section>\n <section class=\"sky-timepicker-column\">\n <ol>\n <li *ngFor=\"let minute of minutes\">\n <button\n name=\"minute\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMinute === minute }\"\n (click)=\"setTime($event)\"\n >\n {{ '00'.substring(0, 2 - minute.toString().length) + minute }}\n </button>\n </li>\n </ol>\n </section>\n <section *ngIf=\"!is8601\" class=\"sky-timepicker-column\">\n <ol>\n <li>\n <button\n name=\"meridie\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMeridies === 'AM' }\"\n (click)=\"setTime($event)\"\n >\n AM\n </button>\n </li>\n <li>\n <button\n name=\"meridie\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMeridies === 'PM' }\"\n (click)=\"setTime($event)\"\n >\n PM\n </button>\n </li>\n </ol>\n </section>\n </div>\n <div class=\"sky-timepicker-footer\">\n <section class=\"sky-timepicker-column\">\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"onCloseButtonClick()\"\n >\n {{ 'skyux_timepicker_close' | skyLibResources }}\n </button>\n </section>\n </div>\n </div>\n</ng-template>\n", styles: [".sky-timepicker-container{position:fixed;font-size:15px;padding:5px;background-color:#eeeeef;border-radius:5px}.sky-timepicker-container :last-child ol{display:flex;flex-direction:column;height:100%}.sky-timepicker-container :last-child ol li{border-bottom:1px solid #e2e3e4;flex:1}.sky-timepicker-column{margin:5px}.sky-timepicker-column ol{border-top:1px solid #e2e3e4;border-right:1px solid #e2e3e4;border-bottom:1px solid #e2e3e4;border-left:1px solid #e2e3e4;column-gap:1px;columns:2;list-style-type:none;margin:0;padding:0}.sky-timepicker-column ol li{text-align:center;cursor:pointer;margin:0}.sky-timepicker-column ol li button{cursor:pointer}.sky-timepicker-column ol li button:focus{outline:thin dotted;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.sky-timepicker-column ol li button:hover{background-color:#eeeeef}.sky-timepicker-column ol li button:active{background-color:#e2e3e4}.sky-timepicker-column ol li button.sky-btn-active:hover{background-color:#c1e8fb}.sky-timepicker-column ol .sky-btn-active{background-color:#c1e8fb;box-shadow:inset 0 0 0 2px #00b4f1;border-radius:3px}.sky-timepicker-column.sky-timepicker-24hour ol{columns:4}.sky-timepicker-column.sky-timepicker-24hour ol li{border-bottom-width:0}.sky-timepicker-content{display:flex}.sky-timepicker-content button{background-color:#fff;border-width:0;padding:5px 15px;width:100%;height:100%}.sky-timepicker-footer{margin:0;padding:0 5px}.sky-timepicker-footer .sky-timepicker-column{margin-left:0;margin-right:0;width:100%}.sky-timepicker-hidden{visibility:hidden}.sky-timepicker-clock-icon-modern,.sky-theme-modern .sky-timepicker-clock-icon-default{display:none}.sky-theme-modern .sky-timepicker-clock-icon-modern{display:inline}.sky-theme-modern .sky-timepicker-container{background-color:#fff;border:solid 1px #cdcfd2;border-radius:6px;font-size:16px}.sky-theme-modern .sky-timepicker-container:focus-within{border:solid 2px #1870B8;padding:4px}.sky-theme-modern .sky-timepicker-container:last-child ol li{border-bottom:none}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol .sky-btn-default{border-width:1px;border-color:transparent;padding:4px 6px;outline:none}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:hover:not(.sky-btn-active){background-color:transparent}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol .sky-btn-active,.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:hover{box-shadow:inset 0 0 0 1px #00b4f1;border-radius:6px}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:active,.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:focus{outline:none;border-radius:6px;box-shadow:inset 0 0 0 2px #1870b8}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-container{color:#fbfcfe}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-container:not(:focus-within){border-color:#686c73}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol{border-color:#686c73}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol button{background-color:transparent;color:#fbfcfe}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol .sky-btn-active{background-color:#009cd1}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i3$1.λ4, selector: "sky-icon", inputs: ["icon", "iconType", "size", "fixedWidth", "variant"] }, { kind: "directive", type: i3$2.λ3, selector: "[skyThemeIf]", inputs: ["skyThemeIf"] }, { kind: "pipe", type: i3.SkyLibResourcesPipe, name: "skyLibResources" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
4551
4553
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImport: i0, type: SkyTimepickerComponent, decorators: [{
4552
4554
  type: Component,
4553
- args: [{ selector: 'sky-timepicker', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"sky-timepicker\">\n <ng-container *ngIf=\"!inputBoxHostService\">\n <div class=\"sky-input-group\">\n <ng-container *ngTemplateOutlet=\"inputTemplateRef\"></ng-container>\n <ng-container *ngTemplateOutlet=\"triggerButtonTemplateRef\"></ng-container>\n </div>\n </ng-container>\n</div>\n\n<ng-template #inputTemplateRef>\n <ng-content></ng-content>\n</ng-template>\n\n<ng-template #triggerButtonTemplateRef>\n <div class=\"sky-input-group-btn\">\n <button\n aria-haspopup=\"dialog\"\n class=\"sky-btn sky-btn-default sky-input-group-timepicker-btn\"\n type=\"button\"\n [attr.aria-controls]=\"isOpen ? timepickerId : null\"\n [attr.aria-expanded]=\"isOpen\"\n [attr.aria-label]=\"'skyux_timepicker_button_label' | skyLibResources\"\n [attr.id]=\"triggerButtonId\"\n [attr.title]=\"'skyux_timepicker_button_label' | skyLibResources\"\n [disabled]=\"disabled\"\n (click)=\"onTriggerButtonClick()\"\n #triggerButtonRef\n >\n <sky-icon *skyThemeIf=\"'default'\" icon=\"clock-o\" size=\"lg\"></sky-icon>\n <sky-icon\n *skyThemeIf=\"'modern'\"\n icon=\"clock\"\n size=\"lg\"\n iconType=\"skyux\"\n ></sky-icon>\n </button>\n </div>\n</ng-template>\n\n<ng-template #timepickerTemplateRef>\n <div\n class=\"sky-timepicker-container sky-shadow sky-box sky-elevation-4\"\n role=\"dialog\"\n [attr.aria-labelledby]=\"triggerButtonId\"\n [attr.id]=\"timepickerId\"\n [class.sky-timepicker-hidden]=\"!isVisible\"\n #timepickerRef\n >\n <div class=\"sky-timepicker-content\">\n <section\n class=\"sky-timepicker-column\"\n [ngClass]=\"{ 'sky-timepicker-24hour': is8601 }\"\n >\n <ol>\n <li *ngFor=\"let hour of hours\">\n <button\n name=\"hour\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedHour === hour }\"\n (click)=\"setTime($event)\"\n >\n {{ hour }}\n </button>\n </li>\n </ol>\n </section>\n <section class=\"sky-timepicker-column\">\n <ol>\n <li *ngFor=\"let minute of minutes\">\n <button\n name=\"minute\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMinute === minute }\"\n (click)=\"setTime($event)\"\n >\n {{ '00'.substring(0, 2 - minute.toString().length) + minute }}\n </button>\n </li>\n </ol>\n </section>\n <section *ngIf=\"!is8601\" class=\"sky-timepicker-column\">\n <ol>\n <li>\n <button\n name=\"meridie\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMeridies === 'AM' }\"\n (click)=\"setTime($event)\"\n >\n AM\n </button>\n </li>\n <li>\n <button\n name=\"meridie\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMeridies === 'PM' }\"\n (click)=\"setTime($event)\"\n >\n PM\n </button>\n </li>\n </ol>\n </section>\n </div>\n <div class=\"sky-timepicker-footer\">\n <section class=\"sky-timepicker-column\">\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"onCloseButtonCick()\"\n >\n {{ 'skyux_timepicker_close' | skyLibResources }}\n </button>\n </section>\n </div>\n </div>\n</ng-template>\n", styles: [".sky-timepicker-container{position:fixed;font-size:15px;padding:5px;background-color:#eeeeef;border-radius:5px}.sky-timepicker-container :last-child ol{display:flex;flex-direction:column;height:100%}.sky-timepicker-container :last-child ol li{border-bottom:1px solid #e2e3e4;flex:1}.sky-timepicker-column{margin:5px}.sky-timepicker-column ol{border-top:1px solid #e2e3e4;border-right:1px solid #e2e3e4;border-bottom:1px solid #e2e3e4;border-left:1px solid #e2e3e4;column-gap:1px;columns:2;list-style-type:none;margin:0;padding:0}.sky-timepicker-column ol li{text-align:center;cursor:pointer;margin:0}.sky-timepicker-column ol li button{cursor:pointer}.sky-timepicker-column ol li button:focus{outline:thin dotted;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.sky-timepicker-column ol li button:hover{background-color:#eeeeef}.sky-timepicker-column ol li button:active{background-color:#e2e3e4}.sky-timepicker-column ol li button.sky-btn-active:hover{background-color:#c1e8fb}.sky-timepicker-column ol .sky-btn-active{background-color:#c1e8fb;box-shadow:inset 0 0 0 2px #00b4f1;border-radius:3px}.sky-timepicker-column.sky-timepicker-24hour ol{columns:4}.sky-timepicker-column.sky-timepicker-24hour ol li{border-bottom-width:0}.sky-timepicker-content{display:flex}.sky-timepicker-content button{background-color:#fff;border-width:0;padding:5px 15px;width:100%;height:100%}.sky-timepicker-footer{margin:0;padding:0 5px}.sky-timepicker-footer .sky-timepicker-column{margin-left:0;margin-right:0;width:100%}.sky-timepicker-hidden{visibility:hidden}.sky-timepicker-clock-icon-modern,.sky-theme-modern .sky-timepicker-clock-icon-default{display:none}.sky-theme-modern .sky-timepicker-clock-icon-modern{display:inline}.sky-theme-modern .sky-timepicker-container{background-color:#fff;border:solid 1px #cdcfd2;border-radius:6px;font-size:16px}.sky-theme-modern .sky-timepicker-container:focus-within{border:solid 2px #1870B8;padding:4px}.sky-theme-modern .sky-timepicker-container:last-child ol li{border-bottom:none}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol .sky-btn-default{border-width:1px;border-color:transparent;padding:4px 6px;outline:none}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:hover:not(.sky-btn-active){background-color:transparent}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol .sky-btn-active,.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:hover{box-shadow:inset 0 0 0 1px #00b4f1;border-radius:6px}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:active,.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:focus{outline:none;border-radius:6px;box-shadow:inset 0 0 0 2px #1870b8}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-container{color:#fbfcfe}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-container:not(:focus-within){border-color:#686c73}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol{border-color:#686c73}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol button{background-color:transparent;color:#fbfcfe}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol .sky-btn-active{background-color:#009cd1}\n"] }]
4555
+ args: [{ selector: 'sky-timepicker', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"sky-timepicker\">\n <ng-container *ngIf=\"!inputBoxHostService\">\n <div class=\"sky-input-group\">\n <ng-container *ngTemplateOutlet=\"inputTemplateRef\"></ng-container>\n <ng-container *ngTemplateOutlet=\"triggerButtonTemplateRef\"></ng-container>\n </div>\n </ng-container>\n</div>\n\n<ng-template #inputTemplateRef>\n <ng-content></ng-content>\n</ng-template>\n\n<ng-template #triggerButtonTemplateRef>\n <div class=\"sky-input-group-btn\">\n <button\n aria-haspopup=\"dialog\"\n class=\"sky-btn sky-btn-default sky-input-group-timepicker-btn\"\n type=\"button\"\n [attr.aria-controls]=\"isOpen ? timepickerId : null\"\n [attr.aria-expanded]=\"isOpen\"\n [attr.aria-label]=\"'skyux_timepicker_button_label' | skyLibResources\"\n [attr.id]=\"triggerButtonId\"\n [attr.title]=\"'skyux_timepicker_button_label' | skyLibResources\"\n [disabled]=\"disabled\"\n (click)=\"onTriggerButtonClick()\"\n #triggerButtonRef\n >\n <sky-icon *skyThemeIf=\"'default'\" icon=\"clock-o\" size=\"lg\"></sky-icon>\n <sky-icon\n *skyThemeIf=\"'modern'\"\n icon=\"clock\"\n size=\"lg\"\n iconType=\"skyux\"\n ></sky-icon>\n </button>\n </div>\n</ng-template>\n\n<ng-template #timepickerTemplateRef>\n <div\n class=\"sky-timepicker-container sky-shadow sky-box sky-elevation-4\"\n role=\"dialog\"\n [attr.aria-labelledby]=\"triggerButtonId\"\n [attr.id]=\"timepickerId\"\n [class.sky-timepicker-hidden]=\"!isVisible\"\n #timepickerRef\n >\n <div class=\"sky-timepicker-content\">\n <section\n class=\"sky-timepicker-column\"\n [ngClass]=\"{ 'sky-timepicker-24hour': is8601 }\"\n >\n <ol>\n <li *ngFor=\"let hour of hours\">\n <button\n name=\"hour\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedHour === hour }\"\n (click)=\"setTime($event)\"\n >\n {{ hour }}\n </button>\n </li>\n </ol>\n </section>\n <section class=\"sky-timepicker-column\">\n <ol>\n <li *ngFor=\"let minute of minutes\">\n <button\n name=\"minute\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMinute === minute }\"\n (click)=\"setTime($event)\"\n >\n {{ '00'.substring(0, 2 - minute.toString().length) + minute }}\n </button>\n </li>\n </ol>\n </section>\n <section *ngIf=\"!is8601\" class=\"sky-timepicker-column\">\n <ol>\n <li>\n <button\n name=\"meridie\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMeridies === 'AM' }\"\n (click)=\"setTime($event)\"\n >\n AM\n </button>\n </li>\n <li>\n <button\n name=\"meridie\"\n type=\"button\"\n [ngClass]=\"{ 'sky-btn-active': selectedMeridies === 'PM' }\"\n (click)=\"setTime($event)\"\n >\n PM\n </button>\n </li>\n </ol>\n </section>\n </div>\n <div class=\"sky-timepicker-footer\">\n <section class=\"sky-timepicker-column\">\n <button\n class=\"sky-btn sky-btn-primary\"\n type=\"button\"\n (click)=\"onCloseButtonClick()\"\n >\n {{ 'skyux_timepicker_close' | skyLibResources }}\n </button>\n </section>\n </div>\n </div>\n</ng-template>\n", styles: [".sky-timepicker-container{position:fixed;font-size:15px;padding:5px;background-color:#eeeeef;border-radius:5px}.sky-timepicker-container :last-child ol{display:flex;flex-direction:column;height:100%}.sky-timepicker-container :last-child ol li{border-bottom:1px solid #e2e3e4;flex:1}.sky-timepicker-column{margin:5px}.sky-timepicker-column ol{border-top:1px solid #e2e3e4;border-right:1px solid #e2e3e4;border-bottom:1px solid #e2e3e4;border-left:1px solid #e2e3e4;column-gap:1px;columns:2;list-style-type:none;margin:0;padding:0}.sky-timepicker-column ol li{text-align:center;cursor:pointer;margin:0}.sky-timepicker-column ol li button{cursor:pointer}.sky-timepicker-column ol li button:focus{outline:thin dotted;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.sky-timepicker-column ol li button:hover{background-color:#eeeeef}.sky-timepicker-column ol li button:active{background-color:#e2e3e4}.sky-timepicker-column ol li button.sky-btn-active:hover{background-color:#c1e8fb}.sky-timepicker-column ol .sky-btn-active{background-color:#c1e8fb;box-shadow:inset 0 0 0 2px #00b4f1;border-radius:3px}.sky-timepicker-column.sky-timepicker-24hour ol{columns:4}.sky-timepicker-column.sky-timepicker-24hour ol li{border-bottom-width:0}.sky-timepicker-content{display:flex}.sky-timepicker-content button{background-color:#fff;border-width:0;padding:5px 15px;width:100%;height:100%}.sky-timepicker-footer{margin:0;padding:0 5px}.sky-timepicker-footer .sky-timepicker-column{margin-left:0;margin-right:0;width:100%}.sky-timepicker-hidden{visibility:hidden}.sky-timepicker-clock-icon-modern,.sky-theme-modern .sky-timepicker-clock-icon-default{display:none}.sky-theme-modern .sky-timepicker-clock-icon-modern{display:inline}.sky-theme-modern .sky-timepicker-container{background-color:#fff;border:solid 1px #cdcfd2;border-radius:6px;font-size:16px}.sky-theme-modern .sky-timepicker-container:focus-within{border:solid 2px #1870B8;padding:4px}.sky-theme-modern .sky-timepicker-container:last-child ol li{border-bottom:none}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol .sky-btn-default{border-width:1px;border-color:transparent;padding:4px 6px;outline:none}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:hover:not(.sky-btn-active){background-color:transparent}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol .sky-btn-active,.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:hover{box-shadow:inset 0 0 0 1px #00b4f1;border-radius:6px}.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:active,.sky-theme-modern .sky-timepicker-container .sky-timepicker-column ol button:focus{outline:none;border-radius:6px;box-shadow:inset 0 0 0 2px #1870b8}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-container{color:#fbfcfe}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-container:not(:focus-within){border-color:#686c73}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol{border-color:#686c73}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol button{background-color:transparent;color:#fbfcfe}.sky-theme-modern.sky-theme-mode-dark .sky-timepicker-column ol .sky-btn-active{background-color:#009cd1}\n"] }]
4554
4556
  }], ctorParameters: function () { return [{ type: i1.SkyAffixService }, { type: i0.ChangeDetectorRef }, { type: i1.SkyCoreAdapterService }, { type: i1.SkyOverlayService }, { type: i2$1.SkyInputBoxHostService, decorators: [{
4555
4557
  type: Optional
4556
4558
  }] }, { type: i3$2.SkyThemeService, decorators: [{
@@ -4639,7 +4641,7 @@ class SkyTimepickerInputDirective {
4639
4641
  }
4640
4642
  // TODO: In a future breaking change - make this more specific than "string"
4641
4643
  /**
4642
- * Specifies the 12-hour `hh` or 24-hour `HH` time format for the input.
4644
+ * The 12-hour `hh` or 24-hour `HH` time format for the input.
4643
4645
  * @default "hh"
4644
4646
  */
4645
4647
  set timeFormat(value) {
@@ -4649,7 +4651,7 @@ class SkyTimepickerInputDirective {
4649
4651
  return __classPrivateFieldGet(this, _SkyTimepickerInputDirective__timeFormat, "f");
4650
4652
  }
4651
4653
  /**
4652
- * Indicates whether to disable the timepicker.
4654
+ * Whether to disable the timepicker.
4653
4655
  * @default false
4654
4656
  */
4655
4657
  get disabled() {