@provoly/dashboard 0.25.4 → 0.25.5

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.
@@ -19,10 +19,10 @@ export declare class PryImportComponent extends SubscriptionnerDirective impleme
19
19
  }[];
20
20
  fileExtension: Record<FileExtension, string>;
21
21
  showMessage: boolean;
22
+ maxDate: string;
22
23
  productionDate: string;
23
24
  producer: string;
24
25
  additionalInformation: string;
25
- maxDate: string;
26
26
  constructor(store: Store, dsService: DataSourceService);
27
27
  ngOnDestroy(): void;
28
28
  uploadedChange($event: File): void;
@@ -31,6 +31,7 @@ export declare class PryImportComponent extends SubscriptionnerDirective impleme
31
31
  getFileSize(size: number): string;
32
32
  onFileTypeChange(fileType: FileExtension): void;
33
33
  getLastActiveVersion($event?: Dataset): void;
34
+ productionDateIsInTheFuture(): boolean;
34
35
  static ɵfac: i0.ɵɵFactoryDeclaration<PryImportComponent, never>;
35
36
  static ɵcmp: i0.ɵɵComponentDeclaration<PryImportComponent, "pry-import", never, {}, {}, never, never, false, never>;
36
37
  }
@@ -1,3 +1,6 @@
1
+ import { AbstractControl, ValidationErrors } from '@angular/forms';
1
2
  export declare class DateUtils {
2
3
  static formatDate(date: Date): string;
4
+ static onlyPastDateValidator(control: AbstractControl): ValidationErrors | null;
5
+ static isInTheFuture(date: Date): boolean;
3
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "0.25.4",
3
+ "version": "0.25.5",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "16.x || 17.x",
@@ -108,18 +108,18 @@
108
108
  "esm": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
109
109
  "default": "./fesm2022/provoly-dashboard-pipeline.mjs"
110
110
  },
111
- "./restitution": {
112
- "types": "./restitution/index.d.ts",
113
- "esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
114
- "esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
115
- "default": "./fesm2022/provoly-dashboard-restitution.mjs"
116
- },
117
111
  "./presentation": {
118
112
  "types": "./presentation/index.d.ts",
119
113
  "esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
120
114
  "esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
121
115
  "default": "./fesm2022/provoly-dashboard-presentation.mjs"
122
116
  },
117
+ "./restitution": {
118
+ "types": "./restitution/index.d.ts",
119
+ "esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
120
+ "esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
121
+ "default": "./fesm2022/provoly-dashboard-restitution.mjs"
122
+ },
123
123
  "./search": {
124
124
  "types": "./search/index.d.ts",
125
125
  "esm2022": "./esm2022/search/provoly-dashboard-search.mjs",
@@ -252,6 +252,18 @@
252
252
  "esm": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
253
253
  "default": "./fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs"
254
254
  },
255
+ "./tooltips/attribute": {
256
+ "types": "./tooltips/attribute/index.d.ts",
257
+ "esm2022": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
258
+ "esm": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
259
+ "default": "./fesm2022/provoly-dashboard-tooltips-attribute.mjs"
260
+ },
261
+ "./tooltips/cluster": {
262
+ "types": "./tooltips/cluster/index.d.ts",
263
+ "esm2022": "./esm2022/tooltips/cluster/provoly-dashboard-tooltips-cluster.mjs",
264
+ "esm": "./esm2022/tooltips/cluster/provoly-dashboard-tooltips-cluster.mjs",
265
+ "default": "./fesm2022/provoly-dashboard-tooltips-cluster.mjs"
266
+ },
255
267
  "./widgets/widget-aggregated-chart": {
256
268
  "types": "./widgets/widget-aggregated-chart/index.d.ts",
257
269
  "esm2022": "./esm2022/widgets/widget-aggregated-chart/provoly-dashboard-widgets-widget-aggregated-chart.mjs",
@@ -317,18 +329,6 @@
317
329
  "esm2022": "./esm2022/widgets/widget-vega/provoly-dashboard-widgets-widget-vega.mjs",
318
330
  "esm": "./esm2022/widgets/widget-vega/provoly-dashboard-widgets-widget-vega.mjs",
319
331
  "default": "./fesm2022/provoly-dashboard-widgets-widget-vega.mjs"
320
- },
321
- "./tooltips/attribute": {
322
- "types": "./tooltips/attribute/index.d.ts",
323
- "esm2022": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
324
- "esm": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
325
- "default": "./fesm2022/provoly-dashboard-tooltips-attribute.mjs"
326
- },
327
- "./tooltips/cluster": {
328
- "types": "./tooltips/cluster/index.d.ts",
329
- "esm2022": "./esm2022/tooltips/cluster/provoly-dashboard-tooltips-cluster.mjs",
330
- "esm": "./esm2022/tooltips/cluster/provoly-dashboard-tooltips-cluster.mjs",
331
- "default": "./fesm2022/provoly-dashboard-tooltips-cluster.mjs"
332
332
  }
333
333
  },
334
334
  "schematics": "./schematics/collection.json",