@provoly/dashboard 0.23.7 → 0.23.9
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.
- package/assets/svgs/default-dashboard.svg +25 -0
- package/assets/svgs/default-restitution.svg +17 -5
- package/assets/svgs/default.svg +11 -27
- package/esm2022/lib/core/components/chips-selector/chips-selector.component.mjs +3 -3
- package/esm2022/lib/core/store/config/icon-definitions.interface.mjs +2 -1
- package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.mjs +3 -3
- package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +6 -6
- package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +3 -3
- package/fesm2022/provoly-dashboard-presentation.mjs +5 -5
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs +2 -2
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +6 -5
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/store/config/icon-definitions.interface.d.ts +1 -0
- package/package.json +43 -43
- package/styles/components/_o-chips-selector.scss +12 -10
- package/styles-theme/components-theme/_a-chip.theme.scss +1 -1
|
@@ -11,6 +11,7 @@ export type IconDefinitions = {
|
|
|
11
11
|
};
|
|
12
12
|
export declare const DEFAULT_ICON_URL = "/assets/svgs/default.svg";
|
|
13
13
|
export declare const DEFAULT_RESTITUTION_ICON_URL = "/assets/svgs/default-restitution.svg";
|
|
14
|
+
export declare const DEFAULT_DASHBOARD_ICON_URL = "/assets/svgs/default-dashboard.svg";
|
|
14
15
|
export declare enum IconPosition {
|
|
15
16
|
FULL = "FULL",
|
|
16
17
|
TOP_LEFT = "TOP_LEFT",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.9",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -132,72 +132,42 @@
|
|
|
132
132
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
133
133
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
134
134
|
},
|
|
135
|
-
"./filters/autocomplete": {
|
|
136
|
-
"types": "./filters/autocomplete/index.d.ts",
|
|
137
|
-
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
138
|
-
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
139
|
-
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
140
|
-
},
|
|
141
|
-
"./filters/date": {
|
|
142
|
-
"types": "./filters/date/index.d.ts",
|
|
143
|
-
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
144
|
-
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
145
|
-
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
146
|
-
},
|
|
147
|
-
"./filters/list": {
|
|
148
|
-
"types": "./filters/list/index.d.ts",
|
|
149
|
-
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
150
|
-
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
151
|
-
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
152
|
-
},
|
|
153
|
-
"./filters/number": {
|
|
154
|
-
"types": "./filters/number/index.d.ts",
|
|
155
|
-
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
156
|
-
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
157
|
-
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
158
|
-
},
|
|
159
|
-
"./filters/text": {
|
|
160
|
-
"types": "./filters/text/index.d.ts",
|
|
161
|
-
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
162
|
-
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
163
|
-
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
164
|
-
},
|
|
165
135
|
"./components/card": {
|
|
166
136
|
"types": "./components/card/index.d.ts",
|
|
167
137
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
168
138
|
"esm": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
169
139
|
"default": "./fesm2022/provoly-dashboard-components-card.mjs"
|
|
170
140
|
},
|
|
171
|
-
"./components/checkbox": {
|
|
172
|
-
"types": "./components/checkbox/index.d.ts",
|
|
173
|
-
"esm2022": "./esm2022/components/checkbox/provoly-dashboard-components-checkbox.mjs",
|
|
174
|
-
"esm": "./esm2022/components/checkbox/provoly-dashboard-components-checkbox.mjs",
|
|
175
|
-
"default": "./fesm2022/provoly-dashboard-components-checkbox.mjs"
|
|
176
|
-
},
|
|
177
141
|
"./components/color-picker": {
|
|
178
142
|
"types": "./components/color-picker/index.d.ts",
|
|
179
143
|
"esm2022": "./esm2022/components/color-picker/provoly-dashboard-components-color-picker.mjs",
|
|
180
144
|
"esm": "./esm2022/components/color-picker/provoly-dashboard-components-color-picker.mjs",
|
|
181
145
|
"default": "./fesm2022/provoly-dashboard-components-color-picker.mjs"
|
|
182
146
|
},
|
|
147
|
+
"./components/checkbox": {
|
|
148
|
+
"types": "./components/checkbox/index.d.ts",
|
|
149
|
+
"esm2022": "./esm2022/components/checkbox/provoly-dashboard-components-checkbox.mjs",
|
|
150
|
+
"esm": "./esm2022/components/checkbox/provoly-dashboard-components-checkbox.mjs",
|
|
151
|
+
"default": "./fesm2022/provoly-dashboard-components-checkbox.mjs"
|
|
152
|
+
},
|
|
183
153
|
"./components/expand-panel": {
|
|
184
154
|
"types": "./components/expand-panel/index.d.ts",
|
|
185
155
|
"esm2022": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
|
|
186
156
|
"esm": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
|
|
187
157
|
"default": "./fesm2022/provoly-dashboard-components-expand-panel.mjs"
|
|
188
158
|
},
|
|
189
|
-
"./components/filter": {
|
|
190
|
-
"types": "./components/filter/index.d.ts",
|
|
191
|
-
"esm2022": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
192
|
-
"esm": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
193
|
-
"default": "./fesm2022/provoly-dashboard-components-filter.mjs"
|
|
194
|
-
},
|
|
195
159
|
"./components/metadata-editor": {
|
|
196
160
|
"types": "./components/metadata-editor/index.d.ts",
|
|
197
161
|
"esm2022": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
|
|
198
162
|
"esm": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
|
|
199
163
|
"default": "./fesm2022/provoly-dashboard-components-metadata-editor.mjs"
|
|
200
164
|
},
|
|
165
|
+
"./components/filter": {
|
|
166
|
+
"types": "./components/filter/index.d.ts",
|
|
167
|
+
"esm2022": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
168
|
+
"esm": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
169
|
+
"default": "./fesm2022/provoly-dashboard-components-filter.mjs"
|
|
170
|
+
},
|
|
201
171
|
"./components/scheme-picker": {
|
|
202
172
|
"types": "./components/scheme-picker/index.d.ts",
|
|
203
173
|
"esm2022": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
|
|
@@ -216,6 +186,36 @@
|
|
|
216
186
|
"esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
|
|
217
187
|
"default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
|
|
218
188
|
},
|
|
189
|
+
"./filters/autocomplete": {
|
|
190
|
+
"types": "./filters/autocomplete/index.d.ts",
|
|
191
|
+
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
192
|
+
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
193
|
+
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
194
|
+
},
|
|
195
|
+
"./filters/date": {
|
|
196
|
+
"types": "./filters/date/index.d.ts",
|
|
197
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
198
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
199
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
200
|
+
},
|
|
201
|
+
"./filters/list": {
|
|
202
|
+
"types": "./filters/list/index.d.ts",
|
|
203
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
204
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
205
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
206
|
+
},
|
|
207
|
+
"./filters/number": {
|
|
208
|
+
"types": "./filters/number/index.d.ts",
|
|
209
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
210
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
211
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
212
|
+
},
|
|
213
|
+
"./filters/text": {
|
|
214
|
+
"types": "./filters/text/index.d.ts",
|
|
215
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
216
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
217
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
218
|
+
},
|
|
219
219
|
"./pipeline-components/filter": {
|
|
220
220
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
221
221
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
display: flex;
|
|
15
15
|
flex-direction: column;
|
|
16
16
|
gap: toRem(15);
|
|
17
|
+
height: 100%;
|
|
17
18
|
|
|
18
19
|
&__list {
|
|
19
20
|
@extend %list-unstyled;
|
|
@@ -22,14 +23,6 @@
|
|
|
22
23
|
flex-wrap: wrap;
|
|
23
24
|
}
|
|
24
25
|
|
|
25
|
-
&__main {
|
|
26
|
-
flex: 1 1;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
&__bottom {
|
|
30
|
-
padding: toRem(5);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
26
|
&__chip {
|
|
34
27
|
border-radius: toRem(15);
|
|
35
28
|
padding: toRem(5) toRem(10);
|
|
@@ -48,7 +41,16 @@
|
|
|
48
41
|
margin-bottom: 0;
|
|
49
42
|
}
|
|
50
43
|
|
|
51
|
-
|
|
52
|
-
|
|
44
|
+
&__items {
|
|
45
|
+
max-height: 85%;
|
|
46
|
+
overflow: auto;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&__used-items {
|
|
50
|
+
margin-bottom: toRem(10);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&__unused-items {
|
|
54
|
+
margin-bottom: toRem(1);
|
|
53
55
|
}
|
|
54
56
|
}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
&--light {
|
|
22
22
|
background-color: themed($theme-map, 'color', 'primary', 50);
|
|
23
23
|
color: themed($theme-map, 'color', 'primary', 600);
|
|
24
|
-
|
|
24
|
+
border: solid 1px themed($theme-map, 'color', 'primary', 300);
|
|
25
25
|
|
|
26
26
|
&:hover {
|
|
27
27
|
@include changeBgColor(
|