@dragonworks/ngx-dashboard 21.2.1 → 21.2.2

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,7 +1,10 @@
1
1
  {
2
2
  "name": "@dragonworks/ngx-dashboard",
3
- "version": "21.2.1",
3
+ "version": "21.2.2",
4
4
  "description": "Angular library for building drag-and-drop grid dashboards with resizable cells and customizable widgets",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
5
8
  "peerDependencies": {
6
9
  "@angular/common": "^21.0.0",
7
10
  "@angular/core": "^21.0.0",
@@ -4,7 +4,7 @@ import { Type, ViewContainerRef, ComponentRef, OnChanges, SimpleChanges, Injecti
4
4
  import * as _ngrx_signals from '@ngrx/signals';
5
5
  import { SafeHtml } from '@angular/platform-browser';
6
6
 
7
- declare const NGX_DASHBOARD_VERSION = "21.2.1";
7
+ declare const NGX_DASHBOARD_VERSION = "21.2.2";
8
8
 
9
9
  /**
10
10
  * Branded type for cell identifiers to ensure type safety when working with grid coordinates.
@@ -471,6 +471,11 @@ declare class DashboardComponent implements OnChanges {
471
471
  loadDashboard(data: DashboardDataDto): void;
472
472
  getCurrentDashboardData(): DashboardDataDto;
473
473
  clearDashboard(): void;
474
+ /**
475
+ * Forwards to the active viewer. No-op in edit mode.
476
+ * See `DashboardViewerComponent.clearSelection()`.
477
+ */
478
+ clearSelection(): void;
474
479
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DashboardComponent, never>;
475
480
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DashboardComponent, "ngx-dashboard", never, { "dashboardData": { "alias": "dashboardData"; "required": true; "isSignal": true; }; "editMode": { "alias": "editMode"; "required": false; "isSignal": true; }; "reservedSpace": { "alias": "reservedSpace"; "required": false; "isSignal": true; }; "enableSelection": { "alias": "enableSelection"; "required": false; "isSignal": true; }; "selectionModifier": { "alias": "selectionModifier"; "required": false; "isSignal": true; }; "dragThreshold": { "alias": "dragThreshold"; "required": false; "isSignal": true; }; }, { "selectionComplete": "selectionComplete"; }, never, never, true, never>;
476
481
  }