@sisense/sdk-ui-angular 2.3.0 → 2.4.0
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/dist/esm2020/lib/component-wrapper-helpers/context-connectors.mjs +21 -13
- package/dist/esm2020/lib/components/dashboard/dashboard-by-id.component.mjs +9 -9
- package/dist/esm2020/lib/components/dashboard/dashboard.component.mjs +9 -9
- package/dist/esm2020/lib/components/filters/filters-panel.component.mjs +129 -0
- package/dist/esm2020/lib/components/filters/index.mjs +2 -1
- package/dist/esm2020/lib/components/widgets/widget.component.mjs +4 -4
- package/dist/esm2020/lib/helpers/widget-props-preact-translator.mjs +5 -2
- package/dist/esm2020/lib/sdk-ui-core-exports.mjs +2 -2
- package/dist/esm2020/lib/sdk-ui.module.mjs +6 -2
- package/dist/esm2020/lib/services/custom-widgets.service.mjs +53 -0
- package/dist/esm2020/lib/services/dashboard.service.mjs +2 -2
- package/dist/esm2020/lib/services/dynamic-renderer.service.mjs +45 -0
- package/dist/esm2020/lib/services/filter.service.mjs +75 -0
- package/dist/esm2020/lib/services/index.mjs +3 -2
- package/dist/esm2020/lib/services/query.service.mjs +37 -3
- package/dist/esm2020/lib/types/chart-event-props.mjs +1 -1
- package/dist/esm2020/lib/types/data-point.mjs +1 -1
- package/dist/esm2020/lib/types/filter-event-props.mjs +1 -1
- package/dist/esm2020/lib/types/index.mjs +2 -2
- package/dist/esm2020/lib/types/widget-event-props.mjs +2 -0
- package/dist/esm2020/lib/utilities/widget-model-translator.mjs +1 -1
- package/dist/esm2020/public-api.mjs +2 -2
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +368 -86
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +364 -86
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/component-wrapper-helpers/context-connectors.d.ts +5 -5
- package/dist/lib/components/dashboard/dashboard-by-id.component.d.ts +7 -11
- package/dist/lib/components/dashboard/dashboard.component.d.ts +7 -11
- package/dist/lib/components/filters/filters-panel.component.d.ts +134 -0
- package/dist/lib/components/filters/index.d.ts +1 -0
- package/dist/lib/components/widgets/widget.component.d.ts +11 -5
- package/dist/lib/sdk-ui-core-exports.d.ts +2 -2
- package/dist/lib/sdk-ui.module.d.ts +5 -4
- package/dist/lib/services/custom-widgets.service.d.ts +41 -0
- package/dist/lib/services/dashboard.service.d.ts +1 -1
- package/dist/lib/services/dynamic-renderer.service.d.ts +27 -0
- package/dist/lib/services/filter.service.d.ts +46 -0
- package/dist/lib/services/index.d.ts +2 -1
- package/dist/lib/services/query.service.d.ts +21 -3
- package/dist/lib/types/chart-event-props.d.ts +8 -1
- package/dist/lib/types/data-point.d.ts +21 -2
- package/dist/lib/types/filter-event-props.d.ts +9 -1
- package/dist/lib/types/index.d.ts +1 -1
- package/dist/lib/types/widget-event-props.d.ts +13 -0
- package/dist/lib/utilities/widget-model-translator.d.ts +2 -2
- package/dist/package.json +1 -1
- package/dist/public-api.d.ts +2 -2
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
- package/dist/esm2020/lib/services/plugins.service.mjs +0 -55
- package/dist/esm2020/lib/types/dashboard-config.mjs +0 -2
- package/dist/lib/services/plugins.service.d.ts +0 -37
- package/dist/lib/types/dashboard-config.d.ts +0 -24
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Filter } from '@sisense/sdk-data';
|
|
1
|
+
import { Filter, FilterRelations } from '@sisense/sdk-data';
|
|
2
2
|
export type FilterChangeEvent = {
|
|
3
3
|
/** Filter that was changed */
|
|
4
4
|
filter: Filter | null;
|
|
@@ -7,6 +7,10 @@ export type FilterEditEvent = {
|
|
|
7
7
|
/** Index of the filter level that triggers the edit event (in the case of a cascading filter) */
|
|
8
8
|
levelIndex?: number;
|
|
9
9
|
};
|
|
10
|
+
export type FiltersPanelChangeEvent = {
|
|
11
|
+
/** The updated filters */
|
|
12
|
+
filters: Filter[] | FilterRelations;
|
|
13
|
+
};
|
|
10
14
|
/**
|
|
11
15
|
* Filter change event handler.
|
|
12
16
|
*/
|
|
@@ -19,6 +23,10 @@ export type FilterEditEventHandler = (event: FilterEditEvent) => void;
|
|
|
19
23
|
* Filter delete event handler.
|
|
20
24
|
*/
|
|
21
25
|
export type FilterDeleteEventHandler = () => void;
|
|
26
|
+
/**
|
|
27
|
+
* Filters panel change event handler.
|
|
28
|
+
*/
|
|
29
|
+
export type FiltersPanelChangeEventHandler = (event: FiltersPanelChangeEvent) => void;
|
|
22
30
|
export interface BaseFilterTileEventProps {
|
|
23
31
|
/**
|
|
24
32
|
* {@inheritDoc FilterChangeEventHandler}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TextWidgetDataPointEventHandler } from './data-point';
|
|
2
|
+
/**
|
|
3
|
+
* Event props for Text widget
|
|
4
|
+
*/
|
|
5
|
+
export interface TextWidgetEventProps {
|
|
6
|
+
/**
|
|
7
|
+
* {@inheritDoc @sisense/sdk-ui!TextWidgetProps.onDataPointClick}
|
|
8
|
+
*
|
|
9
|
+
* @category Callbacks
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
dataPointClick?: TextWidgetDataPointEventHandler;
|
|
13
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
import { ChartProps, ChartWidgetProps, PivotTableProps, PivotTableWidgetProps, TableProps } from '../components';
|
|
1
|
+
import { type WidgetModel } from '@sisense/sdk-ui-preact';
|
|
2
|
+
import { ChartProps, ChartWidgetProps, PivotTableProps, PivotTableWidgetProps, TableProps, type TextWidgetProps } from '../components';
|
|
3
3
|
import { ExecutePivotQueryParams, ExecuteQueryParams } from '../services';
|
|
4
4
|
/**
|
|
5
5
|
* Translates a {@link WidgetModel} to the parameters for executing a query for the widget.
|
package/dist/package.json
CHANGED
package/dist/public-api.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export * from './lib/components';
|
|
|
5
5
|
export * from './lib/sdk-ui.module';
|
|
6
6
|
export * from './lib/sdk-ui-core-exports';
|
|
7
7
|
export * from './lib/services';
|
|
8
|
-
export type { AreamapDataPointEvent, AreamapDataPointEventHandler, BoxplotDataPointEvent, BoxplotDataPointEventHandler, BoxplotDataPointsEvent, ChartDataPointClickEvent, ChartDataPointClickEventHandler, ChartDataPointContextMenuEvent, ChartDataPointContextMenuEventHandler, ChartDataPointsEvent, ChartDataPointsEventHandler,
|
|
8
|
+
export type { AreamapDataPointEvent, AreamapDataPointEventHandler, BoxplotDataPointEvent, BoxplotDataPointEventHandler, BoxplotDataPointsEvent, ChartDataPointClickEvent, ChartDataPointClickEventHandler, ChartDataPointContextMenuEvent, ChartDataPointContextMenuEventHandler, ChartDataPointsEvent, ChartDataPointsEventHandler, DataPointEvent, DataPointEventHandler, DataPointsEvent, DataPointsEventHandler, FilterChangeEvent, FilterChangeEventHandler, FilterDeleteEventHandler, FilterEditEvent, FilterEditEventHandler, FiltersPanelChangeEvent, FiltersPanelChangeEventHandler, IndicatorDataPointEvent, IndicatorDataPointEventHandler, ScatterDataPointEvent, ScatterDataPointEventHandler, ScatterDataPointsEvent, ScatterDataPointsEventHandler, ScattermapDataPointEvent, ScattermapDataPointEventHandler, } from './lib/types';
|
|
9
9
|
export * from './lib/utilities';
|
|
10
|
-
export {
|
|
10
|
+
export { createCustomWidgetsContextConnector, createSisenseContextConnector, createThemeContextConnector, } from './lib/component-wrapper-helpers';
|
|
11
11
|
export { TrackableService } from './lib/decorators';
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.
|
|
1
|
+
declare const _default: "2.4.0";
|
|
2
2
|
export default _default;
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"Sisense",
|
|
12
12
|
"Compose SDK"
|
|
13
13
|
],
|
|
14
|
-
"version": "2.
|
|
14
|
+
"version": "2.4.0",
|
|
15
15
|
"author": "Sisense",
|
|
16
16
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
17
17
|
"main": "dist",
|
|
@@ -76,9 +76,9 @@
|
|
|
76
76
|
"@angular/core": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@sisense/sdk-data": "2.
|
|
80
|
-
"@sisense/sdk-tracking": "2.
|
|
81
|
-
"@sisense/sdk-ui-preact": "2.
|
|
79
|
+
"@sisense/sdk-data": "2.4.0",
|
|
80
|
+
"@sisense/sdk-tracking": "2.4.0",
|
|
81
|
+
"@sisense/sdk-ui-preact": "2.4.0",
|
|
82
82
|
"rxjs": "^7.8.1",
|
|
83
83
|
"ts-deepmerge": "^6.2.0",
|
|
84
84
|
"tslib": "^2.3.0"
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { BehaviorSubject } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
/**
|
|
5
|
-
* Service for working with plugins fetched from an external environment.
|
|
6
|
-
*
|
|
7
|
-
* Provides methods for registering, retrieving, and interacting with plugins.
|
|
8
|
-
*
|
|
9
|
-
* @internal
|
|
10
|
-
* @group Contexts
|
|
11
|
-
*/
|
|
12
|
-
export class PluginsService {
|
|
13
|
-
constructor() {
|
|
14
|
-
this.pluginMap$ = new BehaviorSubject(new Map());
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* Registers a new plugin into the plugin map.
|
|
18
|
-
*
|
|
19
|
-
* @param pluginType - The unique identifier for the plugin type.
|
|
20
|
-
* @param plugin - The plugin instance to register.
|
|
21
|
-
*/
|
|
22
|
-
registerPlugin(pluginType, plugin) {
|
|
23
|
-
const pluginMap = this.pluginMap$.value;
|
|
24
|
-
if (!pluginMap.has(pluginType)) {
|
|
25
|
-
pluginMap.set(pluginType, plugin);
|
|
26
|
-
this.pluginMap$.next(pluginMap);
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* Retrieves a plugin by its type.
|
|
31
|
-
*
|
|
32
|
-
* @param pluginType - The unique identifier for the plugin type.
|
|
33
|
-
* @returns The plugin instance if found, otherwise undefined.
|
|
34
|
-
*/
|
|
35
|
-
getPlugin(pluginType) {
|
|
36
|
-
return this.pluginMap$.value.get(pluginType);
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* Retrieves a complete plugin map.
|
|
40
|
-
*
|
|
41
|
-
* @returns A plugin map.
|
|
42
|
-
*/
|
|
43
|
-
getPlugins() {
|
|
44
|
-
return this.pluginMap$;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
PluginsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PluginsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
48
|
-
PluginsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PluginsService, providedIn: 'root' });
|
|
49
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PluginsService, decorators: [{
|
|
50
|
-
type: Injectable,
|
|
51
|
-
args: [{
|
|
52
|
-
providedIn: 'root',
|
|
53
|
-
}]
|
|
54
|
-
}], ctorParameters: function () { return []; } });
|
|
55
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGx1Z2lucy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2xpYi9zZXJ2aWNlcy9wbHVnaW5zLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUUzQyxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sTUFBTSxDQUFDOztBQUV2Qzs7Ozs7OztHQU9HO0FBSUgsTUFBTSxPQUFPLGNBQWM7SUFHekI7UUFDRSxJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksZUFBZSxDQUFDLElBQUksR0FBRyxFQUEyQixDQUFDLENBQUM7SUFDNUUsQ0FBQztJQUVEOzs7OztPQUtHO0lBQ0gsY0FBYyxDQUFDLFVBQWtCLEVBQUUsTUFBdUI7UUFDeEQsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUM7UUFDeEMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLEVBQUU7WUFDOUIsU0FBUyxDQUFDLEdBQUcsQ0FBQyxVQUFVLEVBQUUsTUFBTSxDQUFDLENBQUM7WUFDbEMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUM7U0FDakM7SUFDSCxDQUFDO0lBRUQ7Ozs7O09BS0c7SUFDSCxTQUFTLENBQUMsVUFBa0I7UUFDMUIsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLENBQUM7SUFDL0MsQ0FBQztJQUVEOzs7O09BSUc7SUFDSCxVQUFVO1FBQ1IsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDO0lBQ3pCLENBQUM7OzRHQXRDVSxjQUFjO2dIQUFkLGNBQWMsY0FGYixNQUFNOzRGQUVQLGNBQWM7a0JBSDFCLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUGx1Z2luQ29tcG9uZW50IH0gZnJvbSAnQHNpc2Vuc2Uvc2RrLXVpLXByZWFjdCc7XG5pbXBvcnQgeyBCZWhhdmlvclN1YmplY3QgfSBmcm9tICdyeGpzJztcblxuLyoqXG4gKiBTZXJ2aWNlIGZvciB3b3JraW5nIHdpdGggcGx1Z2lucyBmZXRjaGVkIGZyb20gYW4gZXh0ZXJuYWwgZW52aXJvbm1lbnQuXG4gKlxuICogUHJvdmlkZXMgbWV0aG9kcyBmb3IgcmVnaXN0ZXJpbmcsIHJldHJpZXZpbmcsIGFuZCBpbnRlcmFjdGluZyB3aXRoIHBsdWdpbnMuXG4gKlxuICogQGludGVybmFsXG4gKiBAZ3JvdXAgQ29udGV4dHNcbiAqL1xuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIFBsdWdpbnNTZXJ2aWNlIHtcbiAgcHJpdmF0ZSBwbHVnaW5NYXAkOiBCZWhhdmlvclN1YmplY3Q8TWFwPHN0cmluZywgUGx1Z2luQ29tcG9uZW50Pj47XG5cbiAgY29uc3RydWN0b3IoKSB7XG4gICAgdGhpcy5wbHVnaW5NYXAkID0gbmV3IEJlaGF2aW9yU3ViamVjdChuZXcgTWFwPHN0cmluZywgUGx1Z2luQ29tcG9uZW50PigpKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBSZWdpc3RlcnMgYSBuZXcgcGx1Z2luIGludG8gdGhlIHBsdWdpbiBtYXAuXG4gICAqXG4gICAqIEBwYXJhbSBwbHVnaW5UeXBlIC0gVGhlIHVuaXF1ZSBpZGVudGlmaWVyIGZvciB0aGUgcGx1Z2luIHR5cGUuXG4gICAqIEBwYXJhbSBwbHVnaW4gLSBUaGUgcGx1Z2luIGluc3RhbmNlIHRvIHJlZ2lzdGVyLlxuICAgKi9cbiAgcmVnaXN0ZXJQbHVnaW4ocGx1Z2luVHlwZTogc3RyaW5nLCBwbHVnaW46IFBsdWdpbkNvbXBvbmVudCk6IHZvaWQge1xuICAgIGNvbnN0IHBsdWdpbk1hcCA9IHRoaXMucGx1Z2luTWFwJC52YWx1ZTtcbiAgICBpZiAoIXBsdWdpbk1hcC5oYXMocGx1Z2luVHlwZSkpIHtcbiAgICAgIHBsdWdpbk1hcC5zZXQocGx1Z2luVHlwZSwgcGx1Z2luKTtcbiAgICAgIHRoaXMucGx1Z2luTWFwJC5uZXh0KHBsdWdpbk1hcCk7XG4gICAgfVxuICB9XG5cbiAgLyoqXG4gICAqIFJldHJpZXZlcyBhIHBsdWdpbiBieSBpdHMgdHlwZS5cbiAgICpcbiAgICogQHBhcmFtIHBsdWdpblR5cGUgLSBUaGUgdW5pcXVlIGlkZW50aWZpZXIgZm9yIHRoZSBwbHVnaW4gdHlwZS5cbiAgICogQHJldHVybnMgVGhlIHBsdWdpbiBpbnN0YW5jZSBpZiBmb3VuZCwgb3RoZXJ3aXNlIHVuZGVmaW5lZC5cbiAgICovXG4gIGdldFBsdWdpbihwbHVnaW5UeXBlOiBzdHJpbmcpOiBQbHVnaW5Db21wb25lbnQgfCB1bmRlZmluZWQge1xuICAgIHJldHVybiB0aGlzLnBsdWdpbk1hcCQudmFsdWUuZ2V0KHBsdWdpblR5cGUpO1xuICB9XG5cbiAgLyoqXG4gICAqIFJldHJpZXZlcyBhIGNvbXBsZXRlIHBsdWdpbiBtYXAuXG4gICAqXG4gICAqIEByZXR1cm5zIEEgcGx1Z2luIG1hcC5cbiAgICovXG4gIGdldFBsdWdpbnMoKSB7XG4gICAgcmV0dXJuIHRoaXMucGx1Z2luTWFwJDtcbiAgfVxufVxuIl19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGFzaGJvYXJkLWNvbmZpZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9saWIvdHlwZXMvZGFzaGJvYXJkLWNvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHR5cGUge1xuICBEYXNoYm9hcmRCeUlkQ29uZmlnIGFzIERhc2hib2FyZEJ5SWRDb25maWdQcmVhY3QsXG4gIERhc2hib2FyZENvbmZpZyBhcyBEYXNoYm9hcmRDb25maWdQcmVhY3QsXG4gIERhc2hib2FyZEZpbHRlcnNQYW5lbENvbmZpZyBhcyBEYXNoYm9hcmRGaWx0ZXJzUGFuZWxDb25maWdQcmVhY3QsXG59IGZyb20gJ0BzaXNlbnNlL3Nkay11aS1wcmVhY3QnO1xuXG4vKipcbiAqIHtAaW5oZXJpdERvYyBAc2lzZW5zZS9zZGstdWkhRGFzaGJvYXJkRmlsdGVyc1BhbmVsQ29uZmlnfVxuICovXG5leHBvcnQgaW50ZXJmYWNlIERhc2hib2FyZEZpbHRlcnNQYW5lbENvbmZpZ1xuICBleHRlbmRzIE9taXQ8RGFzaGJvYXJkRmlsdGVyc1BhbmVsQ29uZmlnUHJlYWN0LCAnYWN0aW9ucyc+IHt9XG5cbi8qKlxuICoge0Bpbmhlcml0RG9jIEBzaXNlbnNlL3Nkay11aSFEYXNoYm9hcmRDb25maWd9XG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgRGFzaGJvYXJkQ29uZmlnIGV4dGVuZHMgT21pdDxEYXNoYm9hcmRDb25maWdQcmVhY3QsICdmaWx0ZXJzUGFuZWwnPiB7XG4gIC8qKlxuICAgKiB7QGluaGVyaXREb2MgQHNpc2Vuc2Uvc2RrLXVpIURhc2hib2FyZENvbmZpZy5maWx0ZXJzUGFuZWx9XG4gICAqL1xuICBmaWx0ZXJzUGFuZWw/OiBEYXNoYm9hcmRGaWx0ZXJzUGFuZWxDb25maWc7XG59XG5cbi8qKlxuICoge0Bpbmhlcml0RG9jIEBzaXNlbnNlL3Nkay11aSFEYXNoYm9hcmRCeUlkQ29uZmlnfVxuICovXG5leHBvcnQgaW50ZXJmYWNlIERhc2hib2FyZEJ5SWRDb25maWcgZXh0ZW5kcyBPbWl0PERhc2hib2FyZEJ5SWRDb25maWdQcmVhY3QsICdmaWx0ZXJzUGFuZWwnPiB7XG4gIC8qKlxuICAgKiB7QGluaGVyaXREb2MgQHNpc2Vuc2Uvc2RrLXVpIURhc2hib2FyZEJ5SWRDb25maWcuZmlsdGVyc1BhbmVsfVxuICAgKi9cbiAgZmlsdGVyc1BhbmVsPzogRGFzaGJvYXJkRmlsdGVyc1BhbmVsQ29uZmlnO1xufVxuIl19
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { PluginComponent } from '@sisense/sdk-ui-preact';
|
|
2
|
-
import { BehaviorSubject } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
/**
|
|
5
|
-
* Service for working with plugins fetched from an external environment.
|
|
6
|
-
*
|
|
7
|
-
* Provides methods for registering, retrieving, and interacting with plugins.
|
|
8
|
-
*
|
|
9
|
-
* @internal
|
|
10
|
-
* @group Contexts
|
|
11
|
-
*/
|
|
12
|
-
export declare class PluginsService {
|
|
13
|
-
private pluginMap$;
|
|
14
|
-
constructor();
|
|
15
|
-
/**
|
|
16
|
-
* Registers a new plugin into the plugin map.
|
|
17
|
-
*
|
|
18
|
-
* @param pluginType - The unique identifier for the plugin type.
|
|
19
|
-
* @param plugin - The plugin instance to register.
|
|
20
|
-
*/
|
|
21
|
-
registerPlugin(pluginType: string, plugin: PluginComponent): void;
|
|
22
|
-
/**
|
|
23
|
-
* Retrieves a plugin by its type.
|
|
24
|
-
*
|
|
25
|
-
* @param pluginType - The unique identifier for the plugin type.
|
|
26
|
-
* @returns The plugin instance if found, otherwise undefined.
|
|
27
|
-
*/
|
|
28
|
-
getPlugin(pluginType: string): PluginComponent | undefined;
|
|
29
|
-
/**
|
|
30
|
-
* Retrieves a complete plugin map.
|
|
31
|
-
*
|
|
32
|
-
* @returns A plugin map.
|
|
33
|
-
*/
|
|
34
|
-
getPlugins(): BehaviorSubject<Map<string, PluginComponent<import("@sisense/sdk-ui-preact").PluginComponentProps<import("@sisense/sdk-ui-preact").GenericDataOptions, any>>>>;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PluginsService, never>;
|
|
36
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<PluginsService>;
|
|
37
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import type { DashboardByIdConfig as DashboardByIdConfigPreact, DashboardConfig as DashboardConfigPreact, DashboardFiltersPanelConfig as DashboardFiltersPanelConfigPreact } from '@sisense/sdk-ui-preact';
|
|
2
|
-
/**
|
|
3
|
-
* {@inheritDoc @sisense/sdk-ui!DashboardFiltersPanelConfig}
|
|
4
|
-
*/
|
|
5
|
-
export interface DashboardFiltersPanelConfig extends Omit<DashboardFiltersPanelConfigPreact, 'actions'> {
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* {@inheritDoc @sisense/sdk-ui!DashboardConfig}
|
|
9
|
-
*/
|
|
10
|
-
export interface DashboardConfig extends Omit<DashboardConfigPreact, 'filtersPanel'> {
|
|
11
|
-
/**
|
|
12
|
-
* {@inheritDoc @sisense/sdk-ui!DashboardConfig.filtersPanel}
|
|
13
|
-
*/
|
|
14
|
-
filtersPanel?: DashboardFiltersPanelConfig;
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* {@inheritDoc @sisense/sdk-ui!DashboardByIdConfig}
|
|
18
|
-
*/
|
|
19
|
-
export interface DashboardByIdConfig extends Omit<DashboardByIdConfigPreact, 'filtersPanel'> {
|
|
20
|
-
/**
|
|
21
|
-
* {@inheritDoc @sisense/sdk-ui!DashboardByIdConfig.filtersPanel}
|
|
22
|
-
*/
|
|
23
|
-
filtersPanel?: DashboardFiltersPanelConfig;
|
|
24
|
-
}
|