@sisense/sdk-ui-angular 1.20.0 → 1.21.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/components/dashboard/dashboard-by-id.component.mjs +13 -13
- package/dist/esm2020/lib/components/dashboard/dashboard.component.mjs +18 -11
- package/dist/esm2020/lib/components/filters/criteria-filter-tile.component.mjs +131 -0
- package/dist/esm2020/lib/components/filters/date-range-filter-tile.component.mjs +1 -3
- package/dist/esm2020/lib/components/filters/index.mjs +2 -1
- package/dist/esm2020/lib/components/filters/member-filter-tile.component.mjs +1 -3
- package/dist/esm2020/lib/components/widgets/chart-widget.component.mjs +2 -2
- package/dist/esm2020/lib/sdk-ui.module.mjs +6 -2
- package/dist/esm2020/public-api.mjs +4 -6
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +164 -35
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +164 -35
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/dashboard/dashboard-by-id.component.d.ts +12 -12
- package/dist/lib/components/dashboard/dashboard.component.d.ts +17 -10
- package/dist/lib/components/filters/criteria-filter-tile.component.d.ts +117 -0
- package/dist/lib/components/filters/date-range-filter-tile.component.d.ts +0 -2
- package/dist/lib/components/filters/index.d.ts +1 -0
- package/dist/lib/components/filters/member-filter-tile.component.d.ts +0 -2
- package/dist/lib/components/widgets/chart-widget.component.d.ts +1 -1
- package/dist/lib/sdk-ui.module.d.ts +12 -11
- package/dist/lib/services/plugins.service.d.ts +1 -1
- package/dist/package.json +1 -1
- package/dist/public-api.d.ts +3 -5
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { EventEmitter, Component, ViewChild, Input, Output, InjectionToken, Injectable, Inject, NgModule, Optional } from '@angular/core';
|
|
3
3
|
import { CommonModule } from '@angular/common';
|
|
4
|
-
import { ComponentAdapter, createElement, BasicMemberFilterTile, createContextProviderRenderer, CustomThemeProvider, CustomSisenseContextProvider, CustomPluginsProvider, createClientApplication, executeQuery, executeQueryByWidgetId, getDashboardModel, getDashboardModels, getWidgetModel, getDefaultThemeSettings, getThemeSettingsByOid, MemberFilterTile, DateRangeFilterTile, Chart, Table, PivotTable, TableWidget, DashboardWidget, createWrapperElementHandler, createWrapperElement, DrilldownWidget, createComponentRenderer, ChartWidget, DashboardById, Dashboard, DrilldownBreadcrumbs, ContextMenu } from '@sisense/sdk-ui-preact';
|
|
4
|
+
import { ComponentAdapter, createElement, BasicMemberFilterTile, createContextProviderRenderer, CustomThemeProvider, CustomSisenseContextProvider, CustomPluginsProvider, createClientApplication, executeQuery, executeQueryByWidgetId, getDashboardModel, getDashboardModels, getWidgetModel, getDefaultThemeSettings, getThemeSettingsByOid, MemberFilterTile, DateRangeFilterTile, CriteriaFilterTile, Chart, Table, PivotTable, TableWidget, DashboardWidget, createWrapperElementHandler, createWrapperElement, DrilldownWidget, createComponentRenderer, ChartWidget, DashboardById, Dashboard, DrilldownBreadcrumbs, ContextMenu } from '@sisense/sdk-ui-preact';
|
|
5
5
|
export { boxWhiskerProcessResult, dashboardModelTranslator, widgetModelTranslator } from '@sisense/sdk-ui-preact';
|
|
6
6
|
import { map, BehaviorSubject } from 'rxjs';
|
|
7
7
|
import { __decorate } from 'tslib';
|
|
@@ -415,7 +415,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
415
415
|
}]
|
|
416
416
|
}], ctorParameters: function () { return [{ type: SisenseContextService }]; } });
|
|
417
417
|
|
|
418
|
-
var packageVersion = '1.
|
|
418
|
+
var packageVersion = '1.21.0';
|
|
419
419
|
|
|
420
420
|
function Trackable(target, propertyKey, descriptor) {
|
|
421
421
|
const originalMethod = descriptor.value;
|
|
@@ -567,7 +567,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
567
567
|
* ```
|
|
568
568
|
* ```ts
|
|
569
569
|
* import { Component } from '@angular/core';
|
|
570
|
-
* import { Member } from '@sisense/sdk-ui-angular';
|
|
571
570
|
* import { Filter, filterFactory } from '@sisense/sdk-data';
|
|
572
571
|
* import * as DM from '../../assets/sample-healthcare-model';
|
|
573
572
|
*
|
|
@@ -589,7 +588,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
589
588
|
* }
|
|
590
589
|
* ```
|
|
591
590
|
* <img src="media://angular-member-filter-tile-example.png" width="400px" />
|
|
592
|
-
*
|
|
593
591
|
* @group Filter Tiles
|
|
594
592
|
*/
|
|
595
593
|
class MemberFilterTileComponent {
|
|
@@ -691,7 +689,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
691
689
|
* ```
|
|
692
690
|
* ```ts
|
|
693
691
|
* import { Component } from '@angular/core';
|
|
694
|
-
* import { Member } from '@sisense/sdk-ui-angular';
|
|
695
692
|
* import { Filter, filterFactory } from '@sisense/sdk-data';
|
|
696
693
|
* import * as DM from '../../assets/sample-healthcare-model';
|
|
697
694
|
*
|
|
@@ -717,7 +714,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
717
714
|
* }
|
|
718
715
|
* ```
|
|
719
716
|
* <img src="media://angular-date-range-filter-tile-example.png" width="600px" />
|
|
720
|
-
*
|
|
721
717
|
* @group Filter Tiles
|
|
722
718
|
*/
|
|
723
719
|
class DateRangeFilterTileComponent {
|
|
@@ -811,6 +807,130 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
811
807
|
type: Output
|
|
812
808
|
}] } });
|
|
813
809
|
|
|
810
|
+
/**
|
|
811
|
+
* Criteria Filter Tile Component
|
|
812
|
+
*
|
|
813
|
+
* @example
|
|
814
|
+
* ```html
|
|
815
|
+
* <csdk-criteria-filter-tile
|
|
816
|
+
* [title]="criteriaFilterTileProps.title"
|
|
817
|
+
* [filter]="criteriaFilterTileProps.filter"
|
|
818
|
+
* (filterChange)="criteriaFilterTileProps.setFilter($event)"
|
|
819
|
+
* />
|
|
820
|
+
* ```
|
|
821
|
+
* ```ts
|
|
822
|
+
* import { Component } from '@angular/core';
|
|
823
|
+
* import { Filter, filterFactory } from '@sisense/sdk-data';
|
|
824
|
+
* import * as DM from '../../assets/sample-healthcare-model';
|
|
825
|
+
*
|
|
826
|
+
* @Component({
|
|
827
|
+
* selector: 'app-filters',
|
|
828
|
+
* templateUrl: './filters.component.html',
|
|
829
|
+
* styleUrls: ['./filters.component.scss'],
|
|
830
|
+
* })
|
|
831
|
+
* export class FiltersComponent {
|
|
832
|
+
* DM = DM;
|
|
833
|
+
* title: 'Room Number',
|
|
834
|
+
* filter: filterFactory.lessThan(DM.Rooms.Room_number, 200) as CriteriaFilterType,
|
|
835
|
+
* setFilter({ filter }: { filter: Filter | null }) {
|
|
836
|
+
* console.log(filter);
|
|
837
|
+
* if (filter) {
|
|
838
|
+
* this.filter = filter as CriteriaFilterType;
|
|
839
|
+
* }
|
|
840
|
+
* },
|
|
841
|
+
* }
|
|
842
|
+
* ```
|
|
843
|
+
* <img src="media://angular-criteria-filter-tile-example.png" width="400px" />
|
|
844
|
+
* @group Filter Tiles
|
|
845
|
+
*/
|
|
846
|
+
class CriteriaFilterTileComponent {
|
|
847
|
+
/**
|
|
848
|
+
* Constructor for the `CriteriaFilterTileComponent`.
|
|
849
|
+
*
|
|
850
|
+
* @param sisenseContextService - Sisense context service
|
|
851
|
+
* @param themeService - Theme service
|
|
852
|
+
*/
|
|
853
|
+
constructor(
|
|
854
|
+
/**
|
|
855
|
+
* Sisense context service
|
|
856
|
+
*
|
|
857
|
+
* @category Constructor
|
|
858
|
+
*/
|
|
859
|
+
sisenseContextService,
|
|
860
|
+
/**
|
|
861
|
+
* Theme service
|
|
862
|
+
*
|
|
863
|
+
* @category Constructor
|
|
864
|
+
*/
|
|
865
|
+
themeService) {
|
|
866
|
+
this.sisenseContextService = sisenseContextService;
|
|
867
|
+
this.themeService = themeService;
|
|
868
|
+
/**
|
|
869
|
+
* {@inheritDoc @sisense/sdk-ui!MemberFilterTileProps.onChange}
|
|
870
|
+
*/
|
|
871
|
+
this.filterChange = new EventEmitter();
|
|
872
|
+
this.componentAdapter = new ComponentAdapter(() => this.createPreactComponent(), [
|
|
873
|
+
createSisenseContextConnector(this.sisenseContextService),
|
|
874
|
+
createThemeContextConnector(this.themeService),
|
|
875
|
+
]);
|
|
876
|
+
}
|
|
877
|
+
/**
|
|
878
|
+
* @internal
|
|
879
|
+
*/
|
|
880
|
+
ngAfterViewInit() {
|
|
881
|
+
this.componentAdapter.render(this.preactRef.nativeElement);
|
|
882
|
+
}
|
|
883
|
+
/**
|
|
884
|
+
* @internal
|
|
885
|
+
*/
|
|
886
|
+
ngOnChanges() {
|
|
887
|
+
if (this.preactRef) {
|
|
888
|
+
this.componentAdapter.render(this.preactRef.nativeElement);
|
|
889
|
+
}
|
|
890
|
+
}
|
|
891
|
+
createPreactComponent() {
|
|
892
|
+
const props = {
|
|
893
|
+
title: this.title,
|
|
894
|
+
filter: this.filter,
|
|
895
|
+
arrangement: this.arrangement,
|
|
896
|
+
measures: this.measures,
|
|
897
|
+
tileDesignOptions: this.tileDesignOptions,
|
|
898
|
+
onUpdate: (...[filter]) => this.filterChange.emit({ filter }),
|
|
899
|
+
};
|
|
900
|
+
return createElement(CriteriaFilterTile, props);
|
|
901
|
+
}
|
|
902
|
+
/**
|
|
903
|
+
* @internal
|
|
904
|
+
*/
|
|
905
|
+
ngOnDestroy() {
|
|
906
|
+
this.componentAdapter.destroy();
|
|
907
|
+
}
|
|
908
|
+
}
|
|
909
|
+
CriteriaFilterTileComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CriteriaFilterTileComponent, deps: [{ token: SisenseContextService }, { token: ThemeService }], target: i0.ɵɵFactoryTarget.Component });
|
|
910
|
+
CriteriaFilterTileComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: CriteriaFilterTileComponent, selector: "csdk-criteria-filter-tile", inputs: { title: "title", filter: "filter", arrangement: "arrangement", measures: "measures", tileDesignOptions: "tileDesignOptions" }, outputs: { filterChange: "filterChange" }, viewQueries: [{ propertyName: "preactRef", first: true, predicate: ["preact"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "\n <div #preact style=\"width: 100%; height: 100%\"></div>\n", isInline: true });
|
|
911
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CriteriaFilterTileComponent, decorators: [{
|
|
912
|
+
type: Component,
|
|
913
|
+
args: [{
|
|
914
|
+
selector: 'csdk-criteria-filter-tile',
|
|
915
|
+
template,
|
|
916
|
+
}]
|
|
917
|
+
}], ctorParameters: function () { return [{ type: SisenseContextService }, { type: ThemeService }]; }, propDecorators: { preactRef: [{
|
|
918
|
+
type: ViewChild,
|
|
919
|
+
args: [rootId]
|
|
920
|
+
}], title: [{
|
|
921
|
+
type: Input
|
|
922
|
+
}], filter: [{
|
|
923
|
+
type: Input
|
|
924
|
+
}], arrangement: [{
|
|
925
|
+
type: Input
|
|
926
|
+
}], measures: [{
|
|
927
|
+
type: Input
|
|
928
|
+
}], tileDesignOptions: [{
|
|
929
|
+
type: Input
|
|
930
|
+
}], filterChange: [{
|
|
931
|
+
type: Output
|
|
932
|
+
}] } });
|
|
933
|
+
|
|
814
934
|
/**
|
|
815
935
|
* An Angular component used for easily switching chart types or rendering multiple series of different chart types.
|
|
816
936
|
*
|
|
@@ -3519,7 +3639,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3519
3639
|
* ```
|
|
3520
3640
|
* <img src="media://angular-chart-widget-example.png" width="800px" />
|
|
3521
3641
|
*
|
|
3522
|
-
* @group
|
|
3642
|
+
* @group Dashboards
|
|
3523
3643
|
*/
|
|
3524
3644
|
class ChartWidgetComponent {
|
|
3525
3645
|
constructor(sisenseContextService, themeService) {
|
|
@@ -3629,23 +3749,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3629
3749
|
* **Note:** Dashboard extensions based on JS scripts and add-ons in Fusion are not supported.
|
|
3630
3750
|
*
|
|
3631
3751
|
* @example
|
|
3632
|
-
* ```html
|
|
3633
|
-
* <csdk-dashboard-by-id
|
|
3634
|
-
* [dashboardOid]="dashboardOid"
|
|
3635
|
-
* />
|
|
3636
|
-
* ```
|
|
3637
3752
|
* ```ts
|
|
3638
3753
|
* import { Component } from '@angular/core';
|
|
3639
|
-
*
|
|
3640
3754
|
* @Component({
|
|
3641
|
-
*
|
|
3642
|
-
*
|
|
3643
|
-
*
|
|
3644
|
-
*
|
|
3645
|
-
*
|
|
3646
|
-
*
|
|
3755
|
+
* selector: 'code-example',
|
|
3756
|
+
* template: `
|
|
3757
|
+
* <div style="width: 100vw;">
|
|
3758
|
+
* <csdk-dashboard-by-id *ngIf="dashboardOid" [dashboardOid]="dashboardOid" />
|
|
3759
|
+
* </div>
|
|
3760
|
+
* `,
|
|
3761
|
+
* })
|
|
3762
|
+
* export class CodeExampleComponent {
|
|
3763
|
+
* dashboardOid = 'your-dashboard-oid';
|
|
3647
3764
|
* }
|
|
3648
3765
|
* ```
|
|
3766
|
+
*
|
|
3767
|
+
* To learn more about this and related dashboard components,
|
|
3768
|
+
* see [Embedded Dashboards](/guides/sdk/guides/dashboards/index.html).
|
|
3649
3769
|
* @group Fusion Embed
|
|
3650
3770
|
* @fusionEmbed
|
|
3651
3771
|
* @beta
|
|
@@ -3737,18 +3857,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3737
3857
|
* ```html
|
|
3738
3858
|
* <csdk-dashboard
|
|
3739
3859
|
* *ngIf="dashboard"
|
|
3740
|
-
* [title]="dashboard
|
|
3741
|
-
* [layoutOptions]="dashboard
|
|
3742
|
-
* [widgets]="dashboard
|
|
3743
|
-
* [filters]="dashboard
|
|
3744
|
-
* [defaultDataSource]="dashboard
|
|
3745
|
-
* [widgetsOptions]="dashboard
|
|
3860
|
+
* [title]="dashboard.title"
|
|
3861
|
+
* [layoutOptions]="dashboard.layoutOptions"
|
|
3862
|
+
* [widgets]="dashboard.widgets"
|
|
3863
|
+
* [filters]="dashboard.filters"
|
|
3864
|
+
* [defaultDataSource]="dashboard.defaultDataSource"
|
|
3865
|
+
* [widgetsOptions]="dashboard.widgetsOptions"
|
|
3746
3866
|
* />
|
|
3747
3867
|
* ```
|
|
3748
3868
|
*
|
|
3749
3869
|
* ```ts
|
|
3750
3870
|
* import { Component } from '@angular/core';
|
|
3751
|
-
* import {
|
|
3871
|
+
* import {
|
|
3872
|
+
* type DashboardProps,
|
|
3873
|
+
* DashboardService,
|
|
3874
|
+
* dashboardModelTranslator,
|
|
3875
|
+
* } from '@sisense/sdk-ui-angular';
|
|
3752
3876
|
*
|
|
3753
3877
|
* @Component({
|
|
3754
3878
|
* selector: 'app-dashboard',
|
|
@@ -3762,11 +3886,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3762
3886
|
* constructor(private dashboardService: DashboardService) {}
|
|
3763
3887
|
*
|
|
3764
3888
|
* async ngOnInit(): Promise<void> {
|
|
3765
|
-
* const dashboardModel = await this.dashboardService.getDashboardModel('
|
|
3766
|
-
* this.
|
|
3889
|
+
* const dashboardModel = await this.dashboardService.getDashboardModel('your-dashboard-oid', { includeWidgets: true, includeFilters: true });
|
|
3890
|
+
* this.dashboard = dashboardModelTranslator.toDashboardProps(dashboardModel);
|
|
3767
3891
|
* }
|
|
3768
3892
|
* ```
|
|
3769
|
-
*
|
|
3893
|
+
*
|
|
3894
|
+
* To learn more about this and related dashboard components,
|
|
3895
|
+
* see [Embedded Dashboards](/guides/sdk/guides/dashboards/index.html).
|
|
3896
|
+
* @group Dashboards
|
|
3770
3897
|
* @beta
|
|
3771
3898
|
*/
|
|
3772
3899
|
class DashboardComponent {
|
|
@@ -4093,6 +4220,7 @@ SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "1
|
|
|
4093
4220
|
MemberFilterTileComponent,
|
|
4094
4221
|
DrilldownWidgetComponent,
|
|
4095
4222
|
DateRangeFilterTileComponent,
|
|
4223
|
+
CriteriaFilterTileComponent,
|
|
4096
4224
|
DrilldownBreadcrumbsComponent,
|
|
4097
4225
|
ContextMenuComponent,
|
|
4098
4226
|
BoxplotChartComponent,
|
|
@@ -4121,6 +4249,7 @@ SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "1
|
|
|
4121
4249
|
MemberFilterTileComponent,
|
|
4122
4250
|
DrilldownWidgetComponent,
|
|
4123
4251
|
DateRangeFilterTileComponent,
|
|
4252
|
+
CriteriaFilterTileComponent,
|
|
4124
4253
|
DrilldownBreadcrumbsComponent,
|
|
4125
4254
|
ContextMenuComponent,
|
|
4126
4255
|
BoxplotChartComponent,
|
|
@@ -4155,6 +4284,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4155
4284
|
MemberFilterTileComponent,
|
|
4156
4285
|
DrilldownWidgetComponent,
|
|
4157
4286
|
DateRangeFilterTileComponent,
|
|
4287
|
+
CriteriaFilterTileComponent,
|
|
4158
4288
|
DrilldownBreadcrumbsComponent,
|
|
4159
4289
|
ContextMenuComponent,
|
|
4160
4290
|
BoxplotChartComponent,
|
|
@@ -4187,6 +4317,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4187
4317
|
MemberFilterTileComponent,
|
|
4188
4318
|
DrilldownWidgetComponent,
|
|
4189
4319
|
DateRangeFilterTileComponent,
|
|
4320
|
+
CriteriaFilterTileComponent,
|
|
4190
4321
|
DrilldownBreadcrumbsComponent,
|
|
4191
4322
|
ContextMenuComponent,
|
|
4192
4323
|
BoxplotChartComponent,
|
|
@@ -4209,9 +4340,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4209
4340
|
/**
|
|
4210
4341
|
* @packageDocumentation
|
|
4211
4342
|
* @groupDescription Charts
|
|
4212
|
-
* Angular components for charts
|
|
4213
|
-
* @groupDescription Chart Utilities
|
|
4214
|
-
* Utilities to be used with charts
|
|
4343
|
+
* Angular components and utilities for working with charts
|
|
4215
4344
|
* @groupDescription Data Grids
|
|
4216
4345
|
* Angular components for data grids
|
|
4217
4346
|
* @groupDescription Drilldown
|
|
@@ -4222,8 +4351,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4222
4351
|
* Angular context modules, services, and variables
|
|
4223
4352
|
* @groupDescription Queries
|
|
4224
4353
|
* Angular query service
|
|
4225
|
-
* @groupDescription
|
|
4226
|
-
* Angular
|
|
4354
|
+
* @groupDescription Dashboards
|
|
4355
|
+
* Angular components and utilities for working with dashboards
|
|
4227
4356
|
* @groupDescription Fusion Embed
|
|
4228
4357
|
* Angular modules, services, and components for working with Fusion Embed dashboards, widgets, queries, and formulas
|
|
4229
4358
|
* @groupDescription Interfaces
|
|
@@ -4236,5 +4365,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4236
4365
|
* Generated bundle index. Do not edit.
|
|
4237
4366
|
*/
|
|
4238
4367
|
|
|
4239
|
-
export { AreaChartComponent, AreaRangeChartComponent, AreamapChartComponent, BarChartComponent, BasicMemberFilterTileComponent, BoxplotChartComponent, ChartComponent, ChartWidgetComponent, ColumnChartComponent, ContextMenuComponent, DashboardByIdComponent, DashboardComponent, DashboardService, DashboardWidgetComponent, DateRangeFilterTileComponent, DrilldownBreadcrumbsComponent, DrilldownWidgetComponent, FunnelChartComponent, IndicatorChartComponent, LineChartComponent, MemberFilterTileComponent, PieChartComponent, PivotTableComponent, PluginsService, PolarChartComponent, QueryService, SISENSE_CONTEXT_CONFIG_TOKEN, ScatterChartComponent, ScattermapChartComponent, SdkUiModule, SisenseContextService, SunburstChartComponent, THEME_CONFIG_TOKEN, TableComponent, TableWidgetComponent, ThemeService, TreemapChartComponent, WidgetService };
|
|
4368
|
+
export { AreaChartComponent, AreaRangeChartComponent, AreamapChartComponent, BarChartComponent, BasicMemberFilterTileComponent, BoxplotChartComponent, ChartComponent, ChartWidgetComponent, ColumnChartComponent, ContextMenuComponent, CriteriaFilterTileComponent, DashboardByIdComponent, DashboardComponent, DashboardService, DashboardWidgetComponent, DateRangeFilterTileComponent, DrilldownBreadcrumbsComponent, DrilldownWidgetComponent, FunnelChartComponent, IndicatorChartComponent, LineChartComponent, MemberFilterTileComponent, PieChartComponent, PivotTableComponent, PluginsService, PolarChartComponent, QueryService, SISENSE_CONTEXT_CONFIG_TOKEN, ScatterChartComponent, ScattermapChartComponent, SdkUiModule, SisenseContextService, SunburstChartComponent, THEME_CONFIG_TOKEN, TableComponent, TableWidgetComponent, ThemeService, TreemapChartComponent, WidgetService };
|
|
4240
4369
|
//# sourceMappingURL=sisense-sdk-ui-angular.mjs.map
|