@sisense/sdk-ui-angular 1.15.1 → 1.16.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/charts/line-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/charts/pie-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/charts/polar-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/charts/scatter-chart.component.mjs +1 -1
- package/dist/esm2020/lib/components/dashboard/dashboard-by-id.component.mjs +3 -1
- package/dist/esm2020/lib/components/dashboard/dashboard.component.mjs +7 -2
- package/dist/esm2020/lib/components/widgets/dashboard-widget.component.mjs +1 -1
- package/dist/esm2020/lib/components/widgets/drilldown-widget.component.mjs +6 -1
- package/dist/esm2020/lib/services/dashboard.service.mjs +3 -1
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +16 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +16 -2
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/charts/line-chart.component.d.ts +1 -1
- package/dist/lib/components/charts/pie-chart.component.d.ts +1 -1
- package/dist/lib/components/charts/polar-chart.component.d.ts +1 -1
- package/dist/lib/components/charts/scatter-chart.component.d.ts +1 -1
- package/dist/lib/components/dashboard/dashboard-by-id.component.d.ts +2 -0
- package/dist/lib/components/dashboard/dashboard.component.d.ts +7 -1
- package/dist/lib/components/widgets/dashboard-widget.component.d.ts +41 -1
- package/dist/lib/components/widgets/drilldown-widget.component.d.ts +15 -0
- package/dist/lib/services/dashboard.service.d.ts +2 -0
- package/dist/lib/services/query.service.d.ts +1 -2
- package/dist/lib/services/theme.service.d.ts +14 -0
- package/dist/package.json +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -249,6 +249,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
249
249
|
/**
|
|
250
250
|
* Service for working with Sisense Fusion dashboards.
|
|
251
251
|
*
|
|
252
|
+
* **Note:** Dashboard extensions based on JS scripts and add-ons in Fusion are not supported.
|
|
253
|
+
*
|
|
252
254
|
* @group Fusion Embed
|
|
253
255
|
* @fusionEmbed
|
|
254
256
|
*/
|
|
@@ -340,7 +342,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
340
342
|
}]
|
|
341
343
|
}], ctorParameters: function () { return [{ type: SisenseContextService }]; } });
|
|
342
344
|
|
|
343
|
-
var packageVersion = '1.
|
|
345
|
+
var packageVersion = '1.16.0';
|
|
344
346
|
|
|
345
347
|
function Trackable(target, propertyKey, descriptor) {
|
|
346
348
|
const originalMethod = descriptor.value;
|
|
@@ -3297,6 +3299,11 @@ class DrilldownWidgetComponent {
|
|
|
3297
3299
|
themeService) {
|
|
3298
3300
|
this.sisenseContextService = sisenseContextService;
|
|
3299
3301
|
this.themeService = themeService;
|
|
3302
|
+
/**
|
|
3303
|
+
* Drilldown result change handler callback
|
|
3304
|
+
*
|
|
3305
|
+
* @category Callbacks
|
|
3306
|
+
*/
|
|
3300
3307
|
this.drilldownResultChange = new EventEmitter();
|
|
3301
3308
|
this.componentAdapter = new ComponentAdapter(() => this.createPreactComponent(), [
|
|
3302
3309
|
createSisenseContextConnector(this.sisenseContextService),
|
|
@@ -3536,6 +3543,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3536
3543
|
/**
|
|
3537
3544
|
* An Angular component used for easily rendering a dashboard by its ID created in a Sisense Fusion instance.
|
|
3538
3545
|
*
|
|
3546
|
+
* **Note:** Dashboard extensions based on JS scripts and add-ons in Fusion are not supported.
|
|
3547
|
+
*
|
|
3539
3548
|
* @example
|
|
3540
3549
|
* ```html
|
|
3541
3550
|
* <csdk-dashboard-by-id
|
|
@@ -3630,6 +3639,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3630
3639
|
/**
|
|
3631
3640
|
* An Angular component used for easily rendering a dashboard.
|
|
3632
3641
|
*
|
|
3642
|
+
* **Note:** Dashboard extensions based on JS scripts and add-ons in Fusion are not supported.
|
|
3643
|
+
*
|
|
3633
3644
|
* @example
|
|
3634
3645
|
* ```html
|
|
3635
3646
|
* <csdk-dashboard
|
|
@@ -3714,6 +3725,7 @@ class DashboardComponent {
|
|
|
3714
3725
|
filters: this.filters,
|
|
3715
3726
|
defaultDataSource: this.defaultDataSource,
|
|
3716
3727
|
widgetFilterOptions: this.widgetFilterOptions,
|
|
3728
|
+
styleOptions: this.styleOptions,
|
|
3717
3729
|
};
|
|
3718
3730
|
return createElement(Dashboard, props);
|
|
3719
3731
|
}
|
|
@@ -3725,7 +3737,7 @@ class DashboardComponent {
|
|
|
3725
3737
|
}
|
|
3726
3738
|
}
|
|
3727
3739
|
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 });
|
|
3728
|
-
DashboardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DashboardComponent, selector: "csdk-dashboard", inputs: { title: "title", layout: "layout", widgets: "widgets", filters: "filters", defaultDataSource: "defaultDataSource", widgetFilterOptions: "widgetFilterOptions" }, 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 });
|
|
3740
|
+
DashboardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DashboardComponent, selector: "csdk-dashboard", inputs: { title: "title", layout: "layout", widgets: "widgets", filters: "filters", defaultDataSource: "defaultDataSource", widgetFilterOptions: "widgetFilterOptions", 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 });
|
|
3729
3741
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DashboardComponent, decorators: [{
|
|
3730
3742
|
type: Component,
|
|
3731
3743
|
args: [{
|
|
@@ -3747,6 +3759,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3747
3759
|
type: Input
|
|
3748
3760
|
}], widgetFilterOptions: [{
|
|
3749
3761
|
type: Input
|
|
3762
|
+
}], styleOptions: [{
|
|
3763
|
+
type: Input
|
|
3750
3764
|
}] } });
|
|
3751
3765
|
|
|
3752
3766
|
/**
|