@schneideress/dashboardframework 17.0.38 → 17.0.40
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/ra-dashboard-area/ra.dashboard.area.mjs +2 -2
- package/esm2022/lib/ra-widget-container/ra.widget.container.component.mjs +2 -2
- package/esm2022/lib/ra.event.enum.mjs +5 -1
- package/fesm2022/schneideress-dashboardframework.mjs +6 -2
- package/fesm2022/schneideress-dashboardframework.mjs.map +1 -1
- package/lib/ra.event.enum.d.ts +5 -1
- package/package.json +1 -1
package/lib/ra.event.enum.d.ts
CHANGED
|
@@ -60,7 +60,11 @@ export declare enum RAEvent {
|
|
|
60
60
|
/** Event raised when DownloadOnlyState is activated */
|
|
61
61
|
DownloadOnlyState = "DownloadOnlyState",
|
|
62
62
|
/** Event on excel download button clicked*/
|
|
63
|
-
DownloadExcelClick = "DownloadExcelClick"
|
|
63
|
+
DownloadExcelClick = "DownloadExcelClick",
|
|
64
|
+
/** Event on emission report snapshot button clicked*/
|
|
65
|
+
SnapShotClick = "SnapShotClick",
|
|
66
|
+
/** Event on emission report snapshot selected from list*/
|
|
67
|
+
SnapShotSelected = "SnapShotSelected"
|
|
64
68
|
}
|
|
65
69
|
export declare enum RAEventKey {
|
|
66
70
|
/** on edit widget click */
|