@sisense/sdk-ui-angular 1.10.1 → 1.12.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/pivot-table.component.mjs +6 -3
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +6 -3
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +6 -3
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/charts/pivot-table.component.d.ts +8 -2
- package/dist/lib/services/theme.service.d.ts +17 -4
- package/dist/package.json +4 -4
- package/dist/version.d.ts +1 -1
- package/package.json +7 -7
|
@@ -340,7 +340,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
340
340
|
}]
|
|
341
341
|
}], ctorParameters: function () { return [{ type: SisenseContextService }]; } });
|
|
342
342
|
|
|
343
|
-
var packageVersion = '1.
|
|
343
|
+
var packageVersion = '1.12.0';
|
|
344
344
|
|
|
345
345
|
function Trackable(target, propertyKey, descriptor) {
|
|
346
346
|
const originalMethod = descriptor.value;
|
|
@@ -2792,7 +2792,7 @@ export class AnalyticsComponent {
|
|
|
2792
2792
|
* ```
|
|
2793
2793
|
* <img src="media://angular-pivot-table-example.png" width="800px" />
|
|
2794
2794
|
* @group Data Grids
|
|
2795
|
-
* @
|
|
2795
|
+
* @beta
|
|
2796
2796
|
*/
|
|
2797
2797
|
class PivotTableComponent {
|
|
2798
2798
|
constructor(sisenseContextService, themeService) {
|
|
@@ -2818,6 +2818,7 @@ class PivotTableComponent {
|
|
|
2818
2818
|
dataSet: this.dataSet,
|
|
2819
2819
|
dataOptions: this.dataOptions,
|
|
2820
2820
|
filters: this.filters,
|
|
2821
|
+
highlights: this.highlights,
|
|
2821
2822
|
styleOptions: this.styleOptions,
|
|
2822
2823
|
};
|
|
2823
2824
|
return createElement(PivotTable, props);
|
|
@@ -2828,7 +2829,7 @@ class PivotTableComponent {
|
|
|
2828
2829
|
}
|
|
2829
2830
|
}
|
|
2830
2831
|
PivotTableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PivotTableComponent, deps: [{ token: SisenseContextService }, { token: ThemeService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2831
|
-
PivotTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PivotTableComponent, selector: "csdk-pivot-table", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", 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 });
|
|
2832
|
+
PivotTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PivotTableComponent, selector: "csdk-pivot-table", inputs: { dataSet: "dataSet", dataOptions: "dataOptions", filters: "filters", highlights: "highlights", 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 });
|
|
2832
2833
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PivotTableComponent, decorators: [{
|
|
2833
2834
|
type: Component,
|
|
2834
2835
|
args: [{
|
|
@@ -2844,6 +2845,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2844
2845
|
type: Input
|
|
2845
2846
|
}], filters: [{
|
|
2846
2847
|
type: Input
|
|
2848
|
+
}], highlights: [{
|
|
2849
|
+
type: Input
|
|
2847
2850
|
}], styleOptions: [{
|
|
2848
2851
|
type: Input
|
|
2849
2852
|
}] } });
|