@ecodev/natural 69.0.5 → 69.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecodev/natural",
3
- "version": "69.0.5",
3
+ "version": "69.0.7",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,6 +9,7 @@ body {
9
9
  --nat-gradient-inverse-surface: var(--mat-sys-inverse-surface);
10
10
  --nat-dark-fixed: #343434;
11
11
  --nat-on-dark-fixed: #f8f8f8;
12
+ --nat-gradient-dark-fixed: var(--nat-dark-fixed);
12
13
  --nat-bad: rgb(200, 11, 11);
13
14
  --nat-on-bad: white;
14
15
  --nat-gradient-bad: var(--nat-bad);
@@ -2637,7 +2637,7 @@ type HierarchicModel = {
2637
2637
  * Wrapper for the original model from the DB with specific metadata for tree
2638
2638
  */
2639
2639
  declare class ModelNode {
2640
- readonly model: HierarchicModel;
2640
+ model: HierarchicModel;
2641
2641
  readonly config: NaturalHierarchicConfiguration;
2642
2642
  readonly childrenChange: BehaviorSubject<ModelNode[]>;
2643
2643
  isLoading: boolean;