@provoly/dashboard 1.4.19 → 1.4.21

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.
@@ -7,7 +7,6 @@ import { DashboardGridLayout, DashboardManifest, WidgetLayout, WidgetManifest }
7
7
  import { DashboardCellParams } from '../store/dashboard.actions';
8
8
  import { SubscriptionnerDirective } from './subscriptionner.directive';
9
9
  import { WidgetInstanciatorComponent } from './widgets/widget-instanciator/widget-instanciator.component';
10
- import { WidgetFactoryService } from './widgets/widget-instanciator/widget-factory.service';
11
10
  import * as i0 from "@angular/core";
12
11
  export declare const MIME_TYPE_WIDGET_MANIFEST = "application/widget-manifest";
13
12
  export declare const MIME_TYPE_WIDGET_TYPE = "application/widget-type-";
@@ -16,7 +15,7 @@ export declare class DashboardComponent extends SubscriptionnerDirective impleme
16
15
  private store;
17
16
  private overlay;
18
17
  private viewContainerRef;
19
- private widgetFactoryService;
18
+ private el;
20
19
  manifest: DashboardManifest | null;
21
20
  windowManifest$: Observable<DashboardManifest>;
22
21
  modeEdition: boolean;
@@ -33,6 +32,8 @@ export declare class DashboardComponent extends SubscriptionnerDirective impleme
33
32
  dataFetching$: Observable<string[]>;
34
33
  params: DashboardCellParams;
35
34
  forceModeEdition$: BehaviorSubject<boolean | undefined>;
35
+ width: import("@angular/core").WritableSignal<number>;
36
+ height: import("@angular/core").WritableSignal<number>;
36
37
  get widgetsInstances(): any[];
37
38
  set staticDashboard(window: DashboardManifest);
38
39
  set forceModeEdition(mode: boolean);
@@ -61,9 +62,10 @@ export declare class DashboardComponent extends SubscriptionnerDirective impleme
61
62
  backgroundArea$: Observable<string>;
62
63
  private confirmRemoveRef?;
63
64
  Array: any;
64
- constructor(store: Store<any>, overlay: Overlay, viewContainerRef: ViewContainerRef, widgetFactoryService: WidgetFactoryService);
65
+ constructor(store: Store<any>, overlay: Overlay, viewContainerRef: ViewContainerRef, el: ElementRef);
65
66
  ngOnInit(): void;
66
67
  ngAfterViewInit(): void;
68
+ updateSelfSize(): void;
67
69
  /***
68
70
  * Manage display
69
71
  */
@@ -14,6 +14,33 @@
14
14
  margin-bottom: toRem(-5);
15
15
  padding: toRem(4) 0;
16
16
  overflow-x: auto;
17
+
18
+ pry-filter-instanciator {
19
+ min-width: 0;
20
+
21
+ pry-select {
22
+ min-width: 0;
23
+
24
+ .a-pry-select__value {
25
+ min-width: 0;
26
+
27
+ div.u-display-flex {
28
+ min-width: 0;
29
+
30
+ span {
31
+ overflow: hidden;
32
+ text-overflow: ellipsis;
33
+ }
34
+ }
35
+ }
36
+ }
37
+
38
+ input {
39
+ text-overflow: ellipsis;
40
+ white-space: nowrap;
41
+ overflow: hidden;
42
+ }
43
+ }
17
44
  }
18
45
 
19
46
  &__filter-actions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "1.4.19",
3
+ "version": "1.4.21",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "17.x || 18.x",