@provoly/dashboard 0.24.10 → 0.24.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 (27) hide show
  1. package/esm2022/filters/autocomplete/autocomplete.component.mjs +2 -2
  2. package/esm2022/lib/core/components/edit-input/edit-input.component.mjs +3 -3
  3. package/esm2022/lib/core/store/search/search.actions.mjs +1 -1
  4. package/esm2022/lib/core/store/search/search.service.mjs +1 -1
  5. package/esm2022/lib/dashboard/components/dashboard.component.mjs +6 -3
  6. package/esm2022/search/i18n/en.translations.mjs +5 -4
  7. package/esm2022/search/i18n/fr.translations.mjs +3 -2
  8. package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +8 -4
  9. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +4 -4
  10. package/esm2022/widgets/widget-template/component/widget-template.component.mjs +2 -2
  11. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +1 -1
  12. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -1
  13. package/fesm2022/provoly-dashboard-search.mjs +6 -4
  14. package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
  15. package/fesm2022/provoly-dashboard-toolbox.mjs +7 -3
  16. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  17. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +3 -3
  18. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  19. package/fesm2022/provoly-dashboard-widgets-widget-template.mjs +1 -1
  20. package/fesm2022/provoly-dashboard-widgets-widget-template.mjs.map +1 -1
  21. package/fesm2022/provoly-dashboard.mjs +6 -4
  22. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  23. package/lib/core/store/search/search.actions.d.ts +0 -4
  24. package/lib/core/store/search/search.service.d.ts +0 -2
  25. package/package.json +7 -7
  26. package/search/i18n/en.translations.d.ts +1 -0
  27. package/search/i18n/fr.translations.d.ts +1 -0
@@ -45,8 +45,6 @@ export declare const SearchActions: {
45
45
  filterId: string;
46
46
  attributes: {
47
47
  id: string;
48
- technicalName: string;
49
- label: string;
50
48
  datasource: string;
51
49
  }[];
52
50
  limit: number;
@@ -54,8 +52,6 @@ export declare const SearchActions: {
54
52
  filterId: string;
55
53
  attributes: {
56
54
  id: string;
57
- technicalName: string;
58
- label: string;
59
55
  datasource: string;
60
56
  }[];
61
57
  limit: number;
@@ -45,8 +45,6 @@ export declare class SearchService {
45
45
  applyTransformations(id: string, rs: ResultSet): ResultSet;
46
46
  autocomplete(attributes: {
47
47
  id: string;
48
- technicalName: string;
49
- label: string;
50
48
  datasource: string;
51
49
  }[] | undefined, search?: string, limit?: number): Observable<string[]>;
52
50
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchService, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "0.24.10",
3
+ "version": "0.24.12",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "16.x || 17.x",
@@ -114,18 +114,18 @@
114
114
  "esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
115
115
  "default": "./fesm2022/provoly-dashboard-presentation.mjs"
116
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
117
  "./search": {
124
118
  "types": "./search/index.d.ts",
125
119
  "esm2022": "./esm2022/search/provoly-dashboard-search.mjs",
126
120
  "esm": "./esm2022/search/provoly-dashboard-search.mjs",
127
121
  "default": "./fesm2022/provoly-dashboard-search.mjs"
128
122
  },
123
+ "./restitution": {
124
+ "types": "./restitution/index.d.ts",
125
+ "esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
126
+ "esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
127
+ "default": "./fesm2022/provoly-dashboard-restitution.mjs"
128
+ },
129
129
  "./toolbox": {
130
130
  "types": "./toolbox/index.d.ts",
131
131
  "esm2022": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
@@ -43,6 +43,7 @@ export declare const enTranslations: {
43
43
  };
44
44
  operator: {
45
45
  contains: string;
46
+ containsCaseInsensitive: string;
46
47
  startWith: string;
47
48
  endWith: string;
48
49
  notEqualsString: string;
@@ -43,6 +43,7 @@ export declare const frTranslations: {
43
43
  };
44
44
  operator: {
45
45
  contains: string;
46
+ containsCaseInsensitive: string;
46
47
  startWith: string;
47
48
  endWith: string;
48
49
  notEqualsString: string;