@provoly/dashboard 1.1.5 → 1.1.6

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.
@@ -18,5 +18,5 @@ export interface Filter {
18
18
  export interface FilterContext {
19
19
  attribute: string;
20
20
  operator: string;
21
- value: string | undefined | number;
21
+ value: string | number | string[] | number[] | undefined;
22
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "16.x || 17.x",
@@ -84,23 +84,17 @@
84
84
  "esm": "./esm2022/admin/provoly-dashboard-admin.mjs",
85
85
  "default": "./fesm2022/provoly-dashboard-admin.mjs"
86
86
  },
87
- "./import": {
88
- "types": "./import/index.d.ts",
89
- "esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
90
- "esm": "./esm2022/import/provoly-dashboard-import.mjs",
91
- "default": "./fesm2022/provoly-dashboard-import.mjs"
92
- },
93
87
  "./dataset": {
94
88
  "types": "./dataset/index.d.ts",
95
89
  "esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
96
90
  "esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
97
91
  "default": "./fesm2022/provoly-dashboard-dataset.mjs"
98
92
  },
99
- "./notification": {
100
- "types": "./notification/index.d.ts",
101
- "esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
102
- "esm": "./esm2022/notification/provoly-dashboard-notification.mjs",
103
- "default": "./fesm2022/provoly-dashboard-notification.mjs"
93
+ "./import": {
94
+ "types": "./import/index.d.ts",
95
+ "esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
96
+ "esm": "./esm2022/import/provoly-dashboard-import.mjs",
97
+ "default": "./fesm2022/provoly-dashboard-import.mjs"
104
98
  },
105
99
  "./pipeline": {
106
100
  "types": "./pipeline/index.d.ts",
@@ -108,6 +102,12 @@
108
102
  "esm": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
109
103
  "default": "./fesm2022/provoly-dashboard-pipeline.mjs"
110
104
  },
105
+ "./notification": {
106
+ "types": "./notification/index.d.ts",
107
+ "esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
108
+ "esm": "./esm2022/notification/provoly-dashboard-notification.mjs",
109
+ "default": "./fesm2022/provoly-dashboard-notification.mjs"
110
+ },
111
111
  "./presentation": {
112
112
  "types": "./presentation/index.d.ts",
113
113
  "esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
@@ -174,18 +174,18 @@
174
174
  "esm": "./esm2022/components/page-loader/provoly-dashboard-components-page-loader.mjs",
175
175
  "default": "./fesm2022/provoly-dashboard-components-page-loader.mjs"
176
176
  },
177
- "./components/scheme-picker": {
178
- "types": "./components/scheme-picker/index.d.ts",
179
- "esm2022": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
180
- "esm": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
181
- "default": "./fesm2022/provoly-dashboard-components-scheme-picker.mjs"
182
- },
183
177
  "./components/sinceDate": {
184
178
  "types": "./components/sinceDate/index.d.ts",
185
179
  "esm2022": "./esm2022/components/sinceDate/provoly-dashboard-components-sinceDate.mjs",
186
180
  "esm": "./esm2022/components/sinceDate/provoly-dashboard-components-sinceDate.mjs",
187
181
  "default": "./fesm2022/provoly-dashboard-components-sinceDate.mjs"
188
182
  },
183
+ "./components/scheme-picker": {
184
+ "types": "./components/scheme-picker/index.d.ts",
185
+ "esm2022": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
186
+ "esm": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
187
+ "default": "./fesm2022/provoly-dashboard-components-scheme-picker.mjs"
188
+ },
189
189
  "./components/stepper": {
190
190
  "types": "./components/stepper/index.d.ts",
191
191
  "esm2022": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
@@ -3,4 +3,5 @@ export declare class CqlUtils {
3
3
  static getCQLParamsFor(datasourceId: string, filters: {
4
4
  [p: string]: FilterContext[];
5
5
  }, classes: Class[], fields: Field[]): string | null;
6
+ static getConditionsForValue(attributeName: string | undefined, cond: FilterContext, field: Field | undefined, datasourceId: string): string;
6
7
  }