@odx/angular 5.5.2 → 5.5.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @odx/angular
2
2
 
3
+ ## 5.5.3
4
+
5
+ ### Patch Changes
6
+
7
+ - e57838d: Add missing date-fns dependency to package.json
8
+
3
9
  ## 5.5.2
4
10
 
5
11
  ### Patch Changes
@@ -69,7 +69,7 @@ export declare const CalendarConfig: import("@angular/core").InjectionToken<Part
69
69
  monthA11yLabel: string;
70
70
  yearA11yLabel: string;
71
71
  displayAdjacentDays: boolean;
72
- locale: BehaviorSubject<globalThis.Locale>;
72
+ locale: BehaviorSubject<Locale>;
73
73
  yearView: {
74
74
  itemsPerRow: number;
75
75
  };
@@ -87,7 +87,7 @@ export declare const CalendarConfig: import("@angular/core").InjectionToken<Part
87
87
  monthA11yLabel: string;
88
88
  yearA11yLabel: string;
89
89
  displayAdjacentDays: boolean;
90
- locale: BehaviorSubject<globalThis.Locale>;
90
+ locale: BehaviorSubject<Locale>;
91
91
  yearView: {
92
92
  itemsPerRow: number;
93
93
  };
@@ -105,7 +105,7 @@ export declare const CalendarConfig: import("@angular/core").InjectionToken<Part
105
105
  monthA11yLabel: string;
106
106
  yearA11yLabel: string;
107
107
  displayAdjacentDays: boolean;
108
- locale: BehaviorSubject<globalThis.Locale>;
108
+ locale: BehaviorSubject<Locale>;
109
109
  yearView: {
110
110
  itemsPerRow: number;
111
111
  };
@@ -123,7 +123,7 @@ export declare const CalendarConfig: import("@angular/core").InjectionToken<Part
123
123
  monthA11yLabel: string;
124
124
  yearA11yLabel: string;
125
125
  displayAdjacentDays: boolean;
126
- locale: BehaviorSubject<globalThis.Locale>;
126
+ locale: BehaviorSubject<Locale>;
127
127
  yearView: {
128
128
  itemsPerRow: number;
129
129
  };
@@ -141,7 +141,7 @@ export declare const CalendarConfig: import("@angular/core").InjectionToken<Part
141
141
  monthA11yLabel: string;
142
142
  yearA11yLabel: string;
143
143
  displayAdjacentDays: boolean;
144
- locale: BehaviorSubject<globalThis.Locale>;
144
+ locale: BehaviorSubject<Locale>;
145
145
  yearView: {
146
146
  itemsPerRow: number;
147
147
  };
@@ -15,7 +15,7 @@ export declare class CalendarCellDirective implements OnChanges {
15
15
  monthA11yLabel: string;
16
16
  yearA11yLabel: string;
17
17
  displayAdjacentDays: boolean;
18
- locale: import("rxjs").BehaviorSubject<Locale>;
18
+ locale: import("rxjs").BehaviorSubject<import("date-fns").Locale>;
19
19
  yearView: {
20
20
  itemsPerRow: number;
21
21
  };
@@ -15,7 +15,7 @@ export declare abstract class CalendarViewDirective {
15
15
  monthA11yLabel: string;
16
16
  yearA11yLabel: string;
17
17
  displayAdjacentDays: boolean;
18
- locale: import("rxjs").BehaviorSubject<Locale>;
18
+ locale: import("rxjs").BehaviorSubject<import("date-fns").Locale>;
19
19
  yearView: {
20
20
  itemsPerRow: number;
21
21
  };
@@ -11,7 +11,7 @@ export declare class DateLabelPipe implements PipeTransform {
11
11
  monthA11yLabel: string;
12
12
  yearA11yLabel: string;
13
13
  displayAdjacentDays: boolean;
14
- locale: import("rxjs").BehaviorSubject<Locale>;
14
+ locale: import("rxjs").BehaviorSubject<import("date-fns").Locale>;
15
15
  yearView: {
16
16
  itemsPerRow: number;
17
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odx/angular",
3
- "version": "5.5.2",
3
+ "version": "5.5.3",
4
4
  "author": "Drägerwerk AG & Co.KGaA",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "peerDependencies": {
@@ -21,6 +21,7 @@
21
21
  "@floating-ui/dom": "^1.5.0",
22
22
  "@ngrx/component": "^16.3.0",
23
23
  "deepmerge-ts": "^5.1.0",
24
+ "date-fns": "^3.3.0",
24
25
  "tslib": "^2.5.0",
25
26
  "ngx-mask": "^16.2.6"
26
27
  },