@provoly/dashboard 1.4.60 → 1.4.61
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/esm2022/lib/dashboard/components/widgets/header/widget-header.component.mjs +48 -41
- package/fesm2022/provoly-dashboard.mjs +47 -40
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/dashboard/components/widgets/header/widget-header.component.d.ts +1 -0
- package/package.json +7 -7
- package/styles/components/_o-widget.scss +10 -0
|
@@ -100,6 +100,7 @@ export declare class PryWidgetHeaderComponent extends SubscriptionnerDirective i
|
|
|
100
100
|
menuOpen($event?: MouseEvent, forceOpen?: boolean): void;
|
|
101
101
|
toggleDatasourceSelection(): void;
|
|
102
102
|
moveInNewWindow(widgetIndex: number, targetIndex: number): void;
|
|
103
|
+
isWidgetZoomed(index: number): boolean;
|
|
103
104
|
maximize(widgetIndex: number): void;
|
|
104
105
|
minimize(widgetIndex: number): void;
|
|
105
106
|
emitManifest(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.61",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"homepage": "https://documentation.provoly.com/provoly-dashboard/main/index.html",
|
|
6
6
|
"repository": {
|
|
@@ -97,18 +97,18 @@
|
|
|
97
97
|
"esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
98
98
|
"default": "./fesm2022/provoly-dashboard-dataset.mjs"
|
|
99
99
|
},
|
|
100
|
-
"./mock": {
|
|
101
|
-
"types": "./mock/index.d.ts",
|
|
102
|
-
"esm2022": "./esm2022/mock/provoly-dashboard-mock.mjs",
|
|
103
|
-
"esm": "./esm2022/mock/provoly-dashboard-mock.mjs",
|
|
104
|
-
"default": "./fesm2022/provoly-dashboard-mock.mjs"
|
|
105
|
-
},
|
|
106
100
|
"./import": {
|
|
107
101
|
"types": "./import/index.d.ts",
|
|
108
102
|
"esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
109
103
|
"esm": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
110
104
|
"default": "./fesm2022/provoly-dashboard-import.mjs"
|
|
111
105
|
},
|
|
106
|
+
"./mock": {
|
|
107
|
+
"types": "./mock/index.d.ts",
|
|
108
|
+
"esm2022": "./esm2022/mock/provoly-dashboard-mock.mjs",
|
|
109
|
+
"esm": "./esm2022/mock/provoly-dashboard-mock.mjs",
|
|
110
|
+
"default": "./fesm2022/provoly-dashboard-mock.mjs"
|
|
111
|
+
},
|
|
112
112
|
"./notification": {
|
|
113
113
|
"types": "./notification/index.d.ts",
|
|
114
114
|
"esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
|
|
@@ -309,5 +309,15 @@ pry-datasource-selector {
|
|
|
309
309
|
background: #FFD841;
|
|
310
310
|
outline: 1px solid #666666
|
|
311
311
|
}
|
|
312
|
+
&.zoom-disabled {
|
|
313
|
+
cursor: auto;
|
|
314
|
+
&:hover {
|
|
315
|
+
background: none;
|
|
316
|
+
outline: none;
|
|
317
|
+
}
|
|
318
|
+
> pry-icon > .a-icon {
|
|
319
|
+
background-color: lightgray;
|
|
320
|
+
}
|
|
321
|
+
}
|
|
312
322
|
}
|
|
313
323
|
}
|