@provoly/dashboard 1.3.10 → 1.3.12

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 (38) hide show
  1. package/admin/components/admin-fields/admin-fields-form/admin-fields-form.component.d.ts +1 -0
  2. package/admin/i18n/en.translations.d.ts +1 -0
  3. package/admin/i18n/fr.translations.d.ts +1 -0
  4. package/esm2022/admin/components/admin-fields/admin-fields-form/admin-fields-form.component.mjs +9 -6
  5. package/esm2022/admin/i18n/en.translations.mjs +2 -1
  6. package/esm2022/admin/i18n/fr.translations.mjs +2 -1
  7. package/esm2022/components/data-format/data-format.pipe.mjs +2 -2
  8. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +3 -3
  9. package/esm2022/filters/autocomplete/autocomplete.component.mjs +11 -8
  10. package/esm2022/lib/core/model/widget-table-manifest.interface.mjs +1 -1
  11. package/esm2022/lib/dashboard/dashboard.module.mjs +8 -5
  12. package/esm2022/lib/dashboard/filter/base-filter.component.mjs +7 -3
  13. package/esm2022/lib/dashboard/filter/components/filter-group/filter-group.component.mjs +5 -5
  14. package/esm2022/widgets/widget-detail/component/widget-detail.component.mjs +4 -3
  15. package/esm2022/widgets/widget-detail/widget-detail.module.mjs +8 -4
  16. package/esm2022/widgets/widget-table/component/widget-table.component.mjs +1 -1
  17. package/esm2022/widgets/widget-table/widget-table.module.mjs +3 -3
  18. package/fesm2022/provoly-dashboard-admin.mjs +10 -5
  19. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  20. package/fesm2022/provoly-dashboard-components-data-format.mjs +1 -1
  21. package/fesm2022/provoly-dashboard-components-data-format.mjs.map +1 -1
  22. package/fesm2022/provoly-dashboard-dataset.mjs +2 -2
  23. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  24. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +9 -6
  25. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -1
  26. package/fesm2022/provoly-dashboard-widgets-widget-detail.mjs +10 -5
  27. package/fesm2022/provoly-dashboard-widgets-widget-detail.mjs.map +1 -1
  28. package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +2 -2
  29. package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
  30. package/fesm2022/provoly-dashboard.mjs +12 -5
  31. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  32. package/filters/autocomplete/autocomplete.component.d.ts +2 -1
  33. package/lib/dashboard/dashboard.module.d.ts +1 -1
  34. package/lib/dashboard/filter/base-filter.component.d.ts +3 -2
  35. package/lib/dashboard/filter/components/filter-group/filter-group.component.d.ts +4 -4
  36. package/package.json +37 -37
  37. package/widgets/widget-detail/widget-detail.module.d.ts +2 -1
  38. package/widgets/widget-table/widget-table.module.d.ts +1 -1
@@ -11419,6 +11419,7 @@ class BaseFilterComponent extends SubscriptionnerDirective {
11419
11419
  constructor(store) {
11420
11420
  super();
11421
11421
  this.store = store;
11422
+ this.valueUpdated = new EventEmitter();
11422
11423
  this.type = 'base';
11423
11424
  }
11424
11425
  ngOnInit() {
@@ -11426,6 +11427,7 @@ class BaseFilterComponent extends SubscriptionnerDirective {
11426
11427
  }
11427
11428
  updateFilter(value) {
11428
11429
  this._value = value;
11430
+ this.valueUpdated.next(value);
11429
11431
  }
11430
11432
  validateFilters() {
11431
11433
  if (this.filter) {
@@ -11439,13 +11441,15 @@ class BaseFilterComponent extends SubscriptionnerDirective {
11439
11441
  }
11440
11442
  }
11441
11443
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: BaseFilterComponent, deps: [{ token: i1.Store }], target: i0.ɵɵFactoryTarget.Component }); }
11442
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: BaseFilterComponent, selector: "pry-base-filter", inputs: { filter: "filter" }, usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
11444
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: BaseFilterComponent, selector: "pry-base-filter", inputs: { filter: "filter" }, outputs: { valueUpdated: "valueUpdated" }, usesInheritance: true, ngImport: i0, template: '', isInline: true }); }
11443
11445
  }
11444
11446
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: BaseFilterComponent, decorators: [{
11445
11447
  type: Component,
11446
11448
  args: [{ selector: 'pry-base-filter', template: '' }]
11447
11449
  }], ctorParameters: () => [{ type: i1.Store }], propDecorators: { filter: [{
11448
11450
  type: Input
11451
+ }], valueUpdated: [{
11452
+ type: Output
11449
11453
  }] } });
11450
11454
 
11451
11455
  const FILTER_DEFINITION = new InjectionToken('Filter definition');
@@ -13184,7 +13188,8 @@ const components = [
13184
13188
  FilterGroupComponent,
13185
13189
  DatasourceSelectorComponent,
13186
13190
  PryDatasourceCardComponent,
13187
- PryDatasourceListComponent
13191
+ PryDatasourceListComponent,
13192
+ PryFilterGroupCssComponent
13188
13193
  ];
13189
13194
  class PryDashboardModule {
13190
13195
  static forRoot(widgetReference, options, tooltipReference, filterReference, additionalGridLayouts = []) {
@@ -13231,7 +13236,8 @@ class PryDashboardModule {
13231
13236
  FilterGroupComponent,
13232
13237
  DatasourceSelectorComponent,
13233
13238
  PryDatasourceCardComponent,
13234
- PryDatasourceListComponent, PryFilterGroupCssComponent], imports: [CommonModule,
13239
+ PryDatasourceListComponent,
13240
+ PryFilterGroupCssComponent], imports: [CommonModule,
13235
13241
  FormsModule,
13236
13242
  PrySelectModule,
13237
13243
  PryIconModule,
@@ -13261,7 +13267,8 @@ class PryDashboardModule {
13261
13267
  FilterGroupComponent,
13262
13268
  DatasourceSelectorComponent,
13263
13269
  PryDatasourceCardComponent,
13264
- PryDatasourceListComponent] }); }
13270
+ PryDatasourceListComponent,
13271
+ PryFilterGroupCssComponent] }); }
13265
13272
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PryDashboardModule, imports: [CommonModule,
13266
13273
  FormsModule,
13267
13274
  PrySelectModule,
@@ -13280,7 +13287,7 @@ class PryDashboardModule {
13280
13287
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PryDashboardModule, decorators: [{
13281
13288
  type: NgModule,
13282
13289
  args: [{
13283
- declarations: [...components, PryFilterGroupCssComponent],
13290
+ declarations: [...components],
13284
13291
  imports: [
13285
13292
  CommonModule,
13286
13293
  FormsModule,