mapa-library-ui 0.51.5 → 0.53.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 (27) hide show
  1. package/esm2020/src/lib/components/capability/lib/components/capability/src/capability-indicator-list/capability-indicator-list.component.mjs +3 -3
  2. package/esm2020/src/lib/components/dropdown/lib/components/dropdown-tree/src/dropdown.component.mjs +12 -3
  3. package/esm2020/src/lib/components/dropdown-tree/lib/components/dropdown-tree/src/dropdown.component.mjs +12 -3
  4. package/esm2020/src/lib/components/group-report/lib/components/capability/src/capability-indicator-list/capability-indicator-list.component.mjs +3 -3
  5. package/esm2020/src/lib/components/scale/lib/components/capability/src/capability-indicator-list/capability-indicator-list.component.mjs +3 -3
  6. package/esm2020/src/lib/components/scale-parameterization/lib/components/capability/src/capability-indicator-list/capability-indicator-list.component.mjs +3 -3
  7. package/fesm2015/mapa-library-ui-src-lib-components-capability.mjs +2 -2
  8. package/fesm2015/mapa-library-ui-src-lib-components-capability.mjs.map +1 -1
  9. package/fesm2015/mapa-library-ui-src-lib-components-dropdown-tree.mjs +12 -4
  10. package/fesm2015/mapa-library-ui-src-lib-components-dropdown-tree.mjs.map +1 -1
  11. package/fesm2015/mapa-library-ui-src-lib-components-dropdown.mjs +12 -4
  12. package/fesm2015/mapa-library-ui-src-lib-components-dropdown.mjs.map +1 -1
  13. package/fesm2015/mapa-library-ui-src-lib-components-scale-parameterization.mjs +2 -2
  14. package/fesm2015/mapa-library-ui-src-lib-components-scale-parameterization.mjs.map +1 -1
  15. package/fesm2020/mapa-library-ui-src-lib-components-capability.mjs +2 -2
  16. package/fesm2020/mapa-library-ui-src-lib-components-capability.mjs.map +1 -1
  17. package/fesm2020/mapa-library-ui-src-lib-components-dropdown-tree.mjs +12 -4
  18. package/fesm2020/mapa-library-ui-src-lib-components-dropdown-tree.mjs.map +1 -1
  19. package/fesm2020/mapa-library-ui-src-lib-components-dropdown.mjs +12 -4
  20. package/fesm2020/mapa-library-ui-src-lib-components-dropdown.mjs.map +1 -1
  21. package/fesm2020/mapa-library-ui-src-lib-components-scale-parameterization.mjs +2 -2
  22. package/fesm2020/mapa-library-ui-src-lib-components-scale-parameterization.mjs.map +1 -1
  23. package/mapa-library-ui-0.53.0.tgz +0 -0
  24. package/package.json +1 -1
  25. package/src/lib/components/dropdown/lib/components/dropdown-tree/src/dropdown.component.d.ts +3 -0
  26. package/src/lib/components/dropdown-tree/lib/components/dropdown-tree/src/dropdown.component.d.ts +3 -0
  27. package/mapa-library-ui-0.51.5.tgz +0 -0
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mapa-library-ui",
3
- "version": "0.51.5",
3
+ "version": "0.53.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0"
@@ -8,6 +8,7 @@ import { Observable } from "rxjs";
8
8
  import { ChecklistDatabase } from "./checklist-database";
9
9
  import { MatAutocomplete } from "@angular/material/autocomplete";
10
10
  import { MatCheckbox, MatCheckboxChange } from "@angular/material/checkbox";
11
+ import { MatMenuTrigger } from "@angular/material/menu";
11
12
  import * as i0 from "@angular/core";
12
13
  export declare class DataNode {
13
14
  key: string;
@@ -30,6 +31,7 @@ export declare class MapaDropdownTreeComponent implements OnInit, AfterViewInit
30
31
  element: DropdownTree;
31
32
  autocomplete: MatAutocomplete;
32
33
  tree: MatTree<DataNode>;
34
+ trigger: MatMenuTrigger;
33
35
  toggleAllCheckbox: MatCheckbox;
34
36
  isMenuExpanded: boolean;
35
37
  /** Map from flat node to nested node. This helps us finding the nested node to be modified */
@@ -79,6 +81,7 @@ export declare class MapaDropdownTreeComponent implements OnInit, AfterViewInit
79
81
  getSelectedItems(): string;
80
82
  filterChanged(event: any): void;
81
83
  clearSearchValue(): void;
84
+ selectSingleItem(node: DataFlatNode): void;
82
85
  static ɵfac: i0.ɵɵFactoryDeclaration<MapaDropdownTreeComponent, never>;
83
86
  static ɵcmp: i0.ɵɵComponentDeclaration<MapaDropdownTreeComponent, "mapa-dropdown-tree", never, { "formGroup": "formGroup"; "element": "element"; }, {}, never, never, false, never>;
84
87
  }
@@ -8,6 +8,7 @@ import { Observable } from "rxjs";
8
8
  import { ChecklistDatabase } from "./checklist-database";
9
9
  import { MatAutocomplete } from "@angular/material/autocomplete";
10
10
  import { MatCheckbox, MatCheckboxChange } from "@angular/material/checkbox";
11
+ import { MatMenuTrigger } from "@angular/material/menu";
11
12
  import * as i0 from "@angular/core";
12
13
  export declare class DataNode {
13
14
  key: string;
@@ -30,6 +31,7 @@ export declare class MapaDropdownTreeComponent implements OnInit, AfterViewInit
30
31
  element: DropdownTree;
31
32
  autocomplete: MatAutocomplete;
32
33
  tree: MatTree<DataNode>;
34
+ trigger: MatMenuTrigger;
33
35
  toggleAllCheckbox: MatCheckbox;
34
36
  isMenuExpanded: boolean;
35
37
  /** Map from flat node to nested node. This helps us finding the nested node to be modified */
@@ -79,6 +81,7 @@ export declare class MapaDropdownTreeComponent implements OnInit, AfterViewInit
79
81
  getSelectedItems(): string;
80
82
  filterChanged(event: any): void;
81
83
  clearSearchValue(): void;
84
+ selectSingleItem(node: DataFlatNode): void;
82
85
  static ɵfac: i0.ɵɵFactoryDeclaration<MapaDropdownTreeComponent, never>;
83
86
  static ɵcmp: i0.ɵɵComponentDeclaration<MapaDropdownTreeComponent, "mapa-dropdown-tree", never, { "formGroup": "formGroup"; "element": "element"; }, {}, never, never, false, never>;
84
87
  }
Binary file