@skyux/datetime 9.0.0-alpha.8 → 9.0.0-beta.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 (24) hide show
  1. package/documentation.json +1408 -1468
  2. package/esm2022/lib/modules/date-pipe/date-pipe.module.mjs +3 -4
  3. package/esm2022/lib/modules/date-pipe/date.service.mjs +6 -3
  4. package/esm2022/lib/modules/date-range-picker/date-range-picker.component.mjs +3 -3
  5. package/esm2022/lib/modules/datepicker/datepicker-calendar-inner.component.mjs +2 -2
  6. package/esm2022/lib/modules/datepicker/datepicker-input-fuzzy.directive.mjs +4 -16
  7. package/esm2022/lib/modules/datepicker/datepicker-input.directive.mjs +4 -15
  8. package/esm2022/lib/modules/datepicker/datepicker.component.mjs +7 -4
  9. package/esm2022/lib/modules/datepicker/datepicker.module.mjs +2 -5
  10. package/esm2022/lib/modules/datepicker/daypicker.component.mjs +3 -3
  11. package/esm2022/lib/modules/datepicker/monthpicker.component.mjs +3 -3
  12. package/esm2022/lib/modules/datepicker/yearpicker.component.mjs +3 -3
  13. package/esm2022/lib/modules/shared/sky-datetime-resources.module.mjs +4 -4
  14. package/esm2022/lib/modules/timepicker/timepicker.component.mjs +7 -4
  15. package/esm2022/lib/modules/timepicker/timepicker.directive.mjs +4 -15
  16. package/esm2022/lib/modules/timepicker/timepicker.module.mjs +2 -5
  17. package/fesm2022/skyux-datetime.mjs +41 -71
  18. package/fesm2022/skyux-datetime.mjs.map +1 -1
  19. package/lib/modules/datepicker/datepicker-input-fuzzy.directive.d.ts +3 -3
  20. package/lib/modules/datepicker/datepicker-input.directive.d.ts +3 -3
  21. package/lib/modules/datepicker/datepicker.module.d.ts +1 -1
  22. package/lib/modules/timepicker/timepicker.directive.d.ts +1 -2
  23. package/lib/modules/timepicker/timepicker.module.d.ts +1 -1
  24. package/package.json +8 -8
@@ -1,6 +1,6 @@
1
1
  import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
2
2
  import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
3
- import { SkyAppLocaleProvider, SkyLibResourcesService } from '@skyux/i18n';
3
+ import { SkyAppLocaleProvider } from '@skyux/i18n';
4
4
  import { SkyDatepickerConfigService } from './datepicker-config.service';
5
5
  import { SkyDatepickerComponent } from './datepicker.component';
6
6
  import { SkyFuzzyDate } from './fuzzy-date';
@@ -64,7 +64,7 @@ export declare class SkyFuzzyDatepickerInputDirective implements OnInit, OnDestr
64
64
  */
65
65
  set yearRequired(value: boolean | undefined);
66
66
  get yearRequired(): boolean | undefined;
67
- constructor(changeDetector: ChangeDetectorRef, configService: SkyDatepickerConfigService, elementRef: ElementRef, fuzzyDateService: SkyFuzzyDateService, localeProvider: SkyAppLocaleProvider, renderer: Renderer2, resourcesService: SkyLibResourcesService, datepickerComponent?: SkyDatepickerComponent);
67
+ constructor(changeDetector: ChangeDetectorRef, configService: SkyDatepickerConfigService, elementRef: ElementRef, fuzzyDateService: SkyFuzzyDateService, localeProvider: SkyAppLocaleProvider, renderer: Renderer2, datepickerComponent?: SkyDatepickerComponent);
68
68
  ngOnInit(): void;
69
69
  ngAfterContentInit(): void;
70
70
  ngAfterViewInit(): void;
@@ -83,6 +83,6 @@ export declare class SkyFuzzyDatepickerInputDirective implements OnInit, OnDestr
83
83
  * This is useful if you need to update the ngModel value before the input element loses focus.
84
84
  */
85
85
  detectInputValueChange(): void;
86
- static ɵfac: i0.ɵɵFactoryDeclaration<SkyFuzzyDatepickerInputDirective, [null, null, null, null, null, null, null, { optional: true; }]>;
86
+ static ɵfac: i0.ɵɵFactoryDeclaration<SkyFuzzyDatepickerInputDirective, [null, null, null, null, null, null, { optional: true; }]>;
87
87
  static ɵdir: i0.ɵɵDirectiveDeclaration<SkyFuzzyDatepickerInputDirective, "[skyFuzzyDatepickerInput]", never, { "dateFormat": { "alias": "dateFormat"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "futureDisabled": { "alias": "futureDisabled"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "skyDatepickerNoValidate": { "alias": "skyDatepickerNoValidate"; "required": false; }; "startingDay": { "alias": "startingDay"; "required": false; }; "yearRequired": { "alias": "yearRequired"; "required": false; }; }, {}, never, never, false, never>;
88
88
  }
@@ -1,6 +1,6 @@
1
1
  import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
2
2
  import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
3
- import { SkyAppLocaleProvider, SkyLibResourcesService } from '@skyux/i18n';
3
+ import { SkyAppLocaleProvider } from '@skyux/i18n';
4
4
  import { SkyDatepickerAdapterService } from './datepicker-adapter.service';
5
5
  import { SkyDatepickerConfigService } from './datepicker-config.service';
6
6
  import { SkyDatepickerComponent } from './datepicker.component';
@@ -63,7 +63,7 @@ export declare class SkyDatepickerInputDirective implements OnInit, OnDestroy, A
63
63
  */
64
64
  set strict(value: boolean | undefined);
65
65
  get strict(): boolean;
66
- constructor(adapter: SkyDatepickerAdapterService, changeDetector: ChangeDetectorRef, configService: SkyDatepickerConfigService, elementRef: ElementRef, localeProvider: SkyAppLocaleProvider, renderer: Renderer2, resourcesService: SkyLibResourcesService, datepickerComponent?: SkyDatepickerComponent);
66
+ constructor(adapter: SkyDatepickerAdapterService, changeDetector: ChangeDetectorRef, configService: SkyDatepickerConfigService, elementRef: ElementRef, localeProvider: SkyAppLocaleProvider, renderer: Renderer2, datepickerComponent?: SkyDatepickerComponent);
67
67
  ngOnInit(): void;
68
68
  ngAfterContentInit(): void;
69
69
  ngAfterViewInit(): void;
@@ -82,6 +82,6 @@ export declare class SkyDatepickerInputDirective implements OnInit, OnDestroy, A
82
82
  * This is useful if you need to update the ngModel value before the input element loses focus.
83
83
  */
84
84
  detectInputValueChange(): void;
85
- static ɵfac: i0.ɵɵFactoryDeclaration<SkyDatepickerInputDirective, [null, null, null, null, null, null, null, { optional: true; }]>;
85
+ static ɵfac: i0.ɵɵFactoryDeclaration<SkyDatepickerInputDirective, [null, null, null, null, null, null, { optional: true; }]>;
86
86
  static ɵdir: i0.ɵɵDirectiveDeclaration<SkyDatepickerInputDirective, "[skyDatepickerInput]", never, { "dateFormat": { "alias": "dateFormat"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "skyDatepickerInput": { "alias": "skyDatepickerInput"; "required": false; }; "skyDatepickerNoValidate": { "alias": "skyDatepickerNoValidate"; "required": false; }; "startingDay": { "alias": "startingDay"; "required": false; }; "strict": { "alias": "strict"; "required": false; }; }, {}, never, never, false, never>;
87
87
  }
@@ -18,6 +18,6 @@ import * as i16 from "@skyux/theme";
18
18
  import * as i17 from "@skyux/popovers";
19
19
  export declare class SkyDatepickerModule {
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyDatepickerModule, never>;
21
- static ɵmod: i0.ɵɵNgModuleDeclaration<SkyDatepickerModule, [typeof i1.SkyDatepickerCalendarComponent, typeof i2.SkyDatepickerCalendarInnerComponent, typeof i3.SkyDayPickerComponent, typeof i4.SkyMonthPickerComponent, typeof i5.SkyYearPickerComponent, typeof i6.SkyDatepickerComponent, typeof i7.SkyDatepickerInputDirective, typeof i8.SkyFuzzyDatepickerInputDirective, typeof i9.SkyDayPickerCellComponent, typeof i10.SkyDayPickerButtonComponent], [typeof i11.CommonModule, typeof i12.FormsModule, typeof i13.SkyIconModule, typeof i14.SkyDatetimeResourcesModule, typeof i15.SkyAffixModule, typeof i15.SkyOverlayModule, typeof i16.SkyThemeModule, typeof i17.SkyPopoverModule, typeof i13.SkyWaitModule], [typeof i1.SkyDatepickerCalendarComponent, typeof i6.SkyDatepickerComponent, typeof i7.SkyDatepickerInputDirective, typeof i8.SkyFuzzyDatepickerInputDirective]>;
21
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SkyDatepickerModule, [typeof i1.SkyDatepickerCalendarComponent, typeof i2.SkyDatepickerCalendarInnerComponent, typeof i3.SkyDayPickerComponent, typeof i4.SkyMonthPickerComponent, typeof i5.SkyYearPickerComponent, typeof i6.SkyDatepickerComponent, typeof i7.SkyDatepickerInputDirective, typeof i8.SkyFuzzyDatepickerInputDirective, typeof i9.SkyDayPickerCellComponent, typeof i10.SkyDayPickerButtonComponent], [typeof i11.CommonModule, typeof i12.FormsModule, typeof i13.SkyIconModule, typeof i14.SkyDatetimeResourcesModule, typeof i15.SkyAffixModule, typeof i16.SkyThemeModule, typeof i17.SkyPopoverModule, typeof i13.SkyWaitModule], [typeof i1.SkyDatepickerCalendarComponent, typeof i6.SkyDatepickerComponent, typeof i7.SkyDatepickerInputDirective, typeof i8.SkyFuzzyDatepickerInputDirective]>;
22
22
  static ɵinj: i0.ɵɵInjectorDeclaration<SkyDatepickerModule>;
23
23
  }
@@ -1,6 +1,5 @@
1
1
  import { AfterContentInit, ChangeDetectorRef, ElementRef, OnChanges, OnDestroy, OnInit, Renderer2 } from '@angular/core';
2
2
  import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
3
- import { SkyLibResourcesService } from '@skyux/i18n';
4
3
  import { Subscription } from 'rxjs';
5
4
  import { SkyTimepickerTimeFormatType } from './timepicker-time-format-type';
6
5
  import { SkyTimepickerComponent } from './timepicker.component';
@@ -34,7 +33,7 @@ export declare class SkyTimepickerInputDirective implements OnInit, OnDestroy, C
34
33
  */
35
34
  get disabled(): boolean;
36
35
  set disabled(value: boolean | undefined);
37
- constructor(renderer: Renderer2, elRef: ElementRef, resourcesService: SkyLibResourcesService, changeDetector: ChangeDetectorRef);
36
+ constructor(renderer: Renderer2, elRef: ElementRef, changeDetector: ChangeDetectorRef);
38
37
  ngOnInit(): void;
39
38
  ngAfterContentInit(): void;
40
39
  ngOnDestroy(): void;
@@ -8,6 +8,6 @@ import * as i6 from "@skyux/core";
8
8
  import * as i7 from "@skyux/theme";
9
9
  export declare class SkyTimepickerModule {
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyTimepickerModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<SkyTimepickerModule, [typeof i1.SkyTimepickerInputDirective, typeof i2.SkyTimepickerComponent], [typeof i3.CommonModule, typeof i4.SkyIconModule, typeof i5.SkyDatetimeResourcesModule, typeof i6.SkyAffixModule, typeof i6.SkyOverlayModule, typeof i7.SkyThemeModule], [typeof i1.SkyTimepickerInputDirective, typeof i2.SkyTimepickerComponent]>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SkyTimepickerModule, [typeof i1.SkyTimepickerInputDirective, typeof i2.SkyTimepickerComponent], [typeof i3.CommonModule, typeof i4.SkyIconModule, typeof i5.SkyDatetimeResourcesModule, typeof i6.SkyAffixModule, typeof i7.SkyThemeModule], [typeof i1.SkyTimepickerInputDirective, typeof i2.SkyTimepickerComponent]>;
12
12
  static ɵinj: i0.ɵɵInjectorDeclaration<SkyTimepickerModule>;
13
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/datetime",
3
- "version": "9.0.0-alpha.8",
3
+ "version": "9.0.0-beta.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -40,13 +40,13 @@
40
40
  "@angular/core": "^16.2.1",
41
41
  "@angular/forms": "^16.2.1",
42
42
  "@angular/platform-browser": "^16.2.1",
43
- "@skyux-sdk/testing": "9.0.0-alpha.8",
44
- "@skyux/core": "9.0.0-alpha.8",
45
- "@skyux/forms": "9.0.0-alpha.8",
46
- "@skyux/i18n": "9.0.0-alpha.8",
47
- "@skyux/indicators": "9.0.0-alpha.8",
48
- "@skyux/popovers": "9.0.0-alpha.8",
49
- "@skyux/theme": "9.0.0-alpha.8",
43
+ "@skyux-sdk/testing": "9.0.0-beta.0",
44
+ "@skyux/core": "9.0.0-beta.0",
45
+ "@skyux/forms": "9.0.0-beta.0",
46
+ "@skyux/i18n": "9.0.0-beta.0",
47
+ "@skyux/indicators": "9.0.0-beta.0",
48
+ "@skyux/popovers": "9.0.0-beta.0",
49
+ "@skyux/theme": "9.0.0-beta.0",
50
50
  "moment": "^2.29.4"
51
51
  },
52
52
  "dependencies": {