@sisense/sdk-ui-angular 1.19.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 +14 -14
- package/dist/esm2020/lib/components/dashboard/dashboard.component.mjs +29 -18
- 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/components/widgets/drilldown-widget.component.mjs +1 -1
- 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/plugins.service.mjs +1 -1
- package/dist/esm2020/public-api.mjs +4 -4
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +177 -42
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +177 -42
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/dashboard/dashboard-by-id.component.d.ts +13 -13
- package/dist/lib/components/dashboard/dashboard.component.d.ts +31 -17
- 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/components/widgets/drilldown-widget.component.d.ts +1 -1
- package/dist/lib/sdk-ui-core-exports.d.ts +2 -2
- package/dist/lib/sdk-ui.module.d.ts +12 -11
- package/dist/lib/services/plugins.service.d.ts +4 -4
- package/dist/package.json +1 -1
- package/dist/public-api.d.ts +3 -3
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1,8 +1,8 @@
|
|
|
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';
|
|
5
|
-
export { boxWhiskerProcessResult } 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
|
+
export { boxWhiskerProcessResult, dashboardModelTranslator, widgetModelTranslator } from '@sisense/sdk-ui-preact';
|
|
6
6
|
import { map, BehaviorSubject } from 'rxjs';
|
|
7
7
|
import { __decorate } from 'tslib';
|
|
8
8
|
import merge from 'ts-deepmerge';
|
|
@@ -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,26 +3749,26 @@ 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
|
|
3652
3772
|
*/
|
|
3653
3773
|
class DashboardByIdComponent {
|
|
3654
3774
|
/**
|
|
@@ -3737,17 +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
|
-
* [
|
|
3742
|
-
* [widgets]="dashboard
|
|
3743
|
-
* [filters]="dashboard
|
|
3744
|
-
* [defaultDataSource]="dashboard
|
|
3745
|
-
* [
|
|
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
|
* ```
|
|
3868
|
+
*
|
|
3748
3869
|
* ```ts
|
|
3749
3870
|
* import { Component } from '@angular/core';
|
|
3750
|
-
* import {
|
|
3871
|
+
* import {
|
|
3872
|
+
* type DashboardProps,
|
|
3873
|
+
* DashboardService,
|
|
3874
|
+
* dashboardModelTranslator,
|
|
3875
|
+
* } from '@sisense/sdk-ui-angular';
|
|
3751
3876
|
*
|
|
3752
3877
|
* @Component({
|
|
3753
3878
|
* selector: 'app-dashboard',
|
|
@@ -3756,17 +3881,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3756
3881
|
* })
|
|
3757
3882
|
* export class DashboardComponent {
|
|
3758
3883
|
*
|
|
3759
|
-
* dashboard:
|
|
3884
|
+
* dashboard: DashboardProps | null = null;
|
|
3760
3885
|
*
|
|
3761
3886
|
* constructor(private dashboardService: DashboardService) {}
|
|
3762
3887
|
*
|
|
3763
3888
|
* async ngOnInit(): Promise<void> {
|
|
3764
|
-
*
|
|
3889
|
+
* const dashboardModel = await this.dashboardService.getDashboardModel('your-dashboard-oid', { includeWidgets: true, includeFilters: true });
|
|
3890
|
+
* this.dashboard = dashboardModelTranslator.toDashboardProps(dashboardModel);
|
|
3765
3891
|
* }
|
|
3766
3892
|
* ```
|
|
3767
|
-
*
|
|
3768
|
-
*
|
|
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
|
|
3897
|
+
* @beta
|
|
3770
3898
|
*/
|
|
3771
3899
|
class DashboardComponent {
|
|
3772
3900
|
/**
|
|
@@ -3812,11 +3940,12 @@ class DashboardComponent {
|
|
|
3812
3940
|
createPreactComponent() {
|
|
3813
3941
|
const props = {
|
|
3814
3942
|
title: this.title,
|
|
3815
|
-
|
|
3943
|
+
layoutOptions: this.layoutOptions,
|
|
3944
|
+
config: this.config,
|
|
3816
3945
|
widgets: this.widgets,
|
|
3817
3946
|
filters: this.filters,
|
|
3818
3947
|
defaultDataSource: this.defaultDataSource,
|
|
3819
|
-
|
|
3948
|
+
widgetsOptions: this.widgetsOptions,
|
|
3820
3949
|
styleOptions: this.styleOptions,
|
|
3821
3950
|
};
|
|
3822
3951
|
return createElement(Dashboard, props);
|
|
@@ -3829,7 +3958,7 @@ class DashboardComponent {
|
|
|
3829
3958
|
}
|
|
3830
3959
|
}
|
|
3831
3960
|
DashboardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DashboardComponent, deps: [{ token: SisenseContextService }, { token: ThemeService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3832
|
-
DashboardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DashboardComponent, selector: "csdk-dashboard", inputs: { title: "title",
|
|
3961
|
+
DashboardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DashboardComponent, selector: "csdk-dashboard", inputs: { title: "title", layoutOptions: "layoutOptions", config: "config", widgets: "widgets", filters: "filters", defaultDataSource: "defaultDataSource", widgetsOptions: "widgetsOptions", styleOptions: "styleOptions" }, 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 });
|
|
3833
3962
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DashboardComponent, decorators: [{
|
|
3834
3963
|
type: Component,
|
|
3835
3964
|
args: [{
|
|
@@ -3841,7 +3970,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3841
3970
|
args: [rootId]
|
|
3842
3971
|
}], title: [{
|
|
3843
3972
|
type: Input
|
|
3844
|
-
}],
|
|
3973
|
+
}], layoutOptions: [{
|
|
3974
|
+
type: Input
|
|
3975
|
+
}], config: [{
|
|
3845
3976
|
type: Input
|
|
3846
3977
|
}], widgets: [{
|
|
3847
3978
|
type: Input
|
|
@@ -3849,7 +3980,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3849
3980
|
type: Input
|
|
3850
3981
|
}], defaultDataSource: [{
|
|
3851
3982
|
type: Input
|
|
3852
|
-
}],
|
|
3983
|
+
}], widgetsOptions: [{
|
|
3853
3984
|
type: Input
|
|
3854
3985
|
}], styleOptions: [{
|
|
3855
3986
|
type: Input
|
|
@@ -4089,6 +4220,7 @@ SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "1
|
|
|
4089
4220
|
MemberFilterTileComponent,
|
|
4090
4221
|
DrilldownWidgetComponent,
|
|
4091
4222
|
DateRangeFilterTileComponent,
|
|
4223
|
+
CriteriaFilterTileComponent,
|
|
4092
4224
|
DrilldownBreadcrumbsComponent,
|
|
4093
4225
|
ContextMenuComponent,
|
|
4094
4226
|
BoxplotChartComponent,
|
|
@@ -4117,6 +4249,7 @@ SdkUiModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "1
|
|
|
4117
4249
|
MemberFilterTileComponent,
|
|
4118
4250
|
DrilldownWidgetComponent,
|
|
4119
4251
|
DateRangeFilterTileComponent,
|
|
4252
|
+
CriteriaFilterTileComponent,
|
|
4120
4253
|
DrilldownBreadcrumbsComponent,
|
|
4121
4254
|
ContextMenuComponent,
|
|
4122
4255
|
BoxplotChartComponent,
|
|
@@ -4151,6 +4284,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4151
4284
|
MemberFilterTileComponent,
|
|
4152
4285
|
DrilldownWidgetComponent,
|
|
4153
4286
|
DateRangeFilterTileComponent,
|
|
4287
|
+
CriteriaFilterTileComponent,
|
|
4154
4288
|
DrilldownBreadcrumbsComponent,
|
|
4155
4289
|
ContextMenuComponent,
|
|
4156
4290
|
BoxplotChartComponent,
|
|
@@ -4183,6 +4317,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4183
4317
|
MemberFilterTileComponent,
|
|
4184
4318
|
DrilldownWidgetComponent,
|
|
4185
4319
|
DateRangeFilterTileComponent,
|
|
4320
|
+
CriteriaFilterTileComponent,
|
|
4186
4321
|
DrilldownBreadcrumbsComponent,
|
|
4187
4322
|
ContextMenuComponent,
|
|
4188
4323
|
BoxplotChartComponent,
|
|
@@ -4205,9 +4340,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4205
4340
|
/**
|
|
4206
4341
|
* @packageDocumentation
|
|
4207
4342
|
* @groupDescription Charts
|
|
4208
|
-
* Angular components for charts
|
|
4209
|
-
* @groupDescription Chart Utilities
|
|
4210
|
-
* Utilities to be used with charts
|
|
4343
|
+
* Angular components and utilities for working with charts
|
|
4211
4344
|
* @groupDescription Data Grids
|
|
4212
4345
|
* Angular components for data grids
|
|
4213
4346
|
* @groupDescription Drilldown
|
|
@@ -4218,6 +4351,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4218
4351
|
* Angular context modules, services, and variables
|
|
4219
4352
|
* @groupDescription Queries
|
|
4220
4353
|
* Angular query service
|
|
4354
|
+
* @groupDescription Dashboards
|
|
4355
|
+
* Angular components and utilities for working with dashboards
|
|
4221
4356
|
* @groupDescription Fusion Embed
|
|
4222
4357
|
* Angular modules, services, and components for working with Fusion Embed dashboards, widgets, queries, and formulas
|
|
4223
4358
|
* @groupDescription Interfaces
|
|
@@ -4230,5 +4365,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4230
4365
|
* Generated bundle index. Do not edit.
|
|
4231
4366
|
*/
|
|
4232
4367
|
|
|
4233
|
-
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 };
|
|
4234
4369
|
//# sourceMappingURL=sisense-sdk-ui-angular.mjs.map
|