@ecodev/natural 47.0.0 → 47.1.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.
@@ -10,7 +10,7 @@ export declare function formatIsoDate(date: Date): string;
10
10
  export declare function formatIsoDate(date: Date | null): string | null;
11
11
  /**
12
12
  * Format a date and time in a way that will preserve the local time zone.
13
- * This allow the server side to know the day (without time) that was selected on client side.
13
+ * This allows the server side to know the day (without time) that was selected on client side.
14
14
  *
15
15
  * So something like: "2021-09-23T17:57:16+09:00"
16
16
  */
@@ -26,8 +26,10 @@ export declare class NaturalSelectHierarchicComponent extends AbstractSelect<Lit
26
26
  selectLabel?: string;
27
27
  /**
28
28
  * Configuration for hierarchic relations
29
+ *
30
+ * It should be an array with at least one element with `selectableAtKey` configured, otherwise the selector will never open.
29
31
  */
30
- config: NaturalHierarchicConfiguration[];
32
+ config: NaturalHierarchicConfiguration[] | null;
31
33
  /**
32
34
  * Filters formatted for hierarchic selector
33
35
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecodev/natural",
3
- "version": "47.0.0",
3
+ "version": "47.1.0",
4
4
  "license": "MIT",
5
5
  "repository": "github:Ecodev/natural",
6
6
  "sideEffects": false,
@@ -26,14 +26,14 @@
26
26
  "@angular/cdk": "^15.1.0",
27
27
  "@angular/common": "^15.1.0",
28
28
  "@angular/core": "^15.1.0",
29
- "@angular/flex-layout": "^15.1.0",
29
+ "@angular/flex-layout": "^15.0.0-beta.42",
30
30
  "@angular/forms": "^15.1.0",
31
31
  "@angular/localize": "^15.1.0",
32
32
  "@angular/material": "^15.1.0",
33
33
  "@angular/platform-browser": "^15.1.0",
34
34
  "@angular/platform-browser-dynamic": "^15.1.0",
35
35
  "@angular/router": "^15.1.0",
36
- "apollo-angular": "^3.0.0",
36
+ "apollo-angular": "^4.2.0",
37
37
  "lodash-es": "^4.17.21",
38
38
  "rxjs": "^7.4.0"
39
39
  },