@sisense/sdk-ui-angular 2.16.1 → 2.17.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 +8 -3
- package/dist/esm2020/lib/components/widgets/pivot-table-widget.component.mjs +2 -3
- package/dist/esm2020/lib/services/query.service.mjs +1 -2
- package/dist/esm2020/version.mjs +2 -2
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs +9 -6
- package/dist/fesm2015/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs +9 -6
- package/dist/fesm2020/sisense-sdk-ui-angular.mjs.map +1 -1
- package/dist/lib/components/charts/pivot-table.component.d.ts +7 -2
- package/dist/lib/components/widgets/pivot-table-widget.component.d.ts +1 -2
- package/dist/lib/services/query.service.d.ts +0 -1
- package/dist/package.json +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -48,7 +48,7 @@ export class AnalyticsComponent {
|
|
|
48
48
|
dataBars: true,
|
|
49
49
|
},
|
|
50
50
|
],
|
|
51
|
-
grandTotals: {
|
|
51
|
+
grandTotals: { rows: true, columns: true },
|
|
52
52
|
};
|
|
53
53
|
|
|
54
54
|
pivotTable = {
|
|
@@ -61,8 +61,13 @@ export class AnalyticsComponent {
|
|
|
61
61
|
}
|
|
62
62
|
* ```
|
|
63
63
|
* <img src="media://angular-pivot-table-example.png" width="800px" />
|
|
64
|
+
*
|
|
65
|
+
* @remarks
|
|
66
|
+
* Configuration options can also be applied within the scope of a `<SisenseContextProvider>` to control the default behavior of PivotTable, by changing available settings within `appConfig.chartConfig.tabular.*`
|
|
67
|
+
*
|
|
68
|
+
* Follow the link to {@link AppConfig} for more details on the available settings.
|
|
69
|
+
*
|
|
64
70
|
* @group Data Grids
|
|
65
|
-
* @beta
|
|
66
71
|
*/
|
|
67
72
|
export declare class PivotTableComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
68
73
|
private sisenseContextService;
|
|
@@ -53,7 +53,7 @@ export class AnalyticsComponent {
|
|
|
53
53
|
dataBars: true,
|
|
54
54
|
},
|
|
55
55
|
],
|
|
56
|
-
grandTotals: {
|
|
56
|
+
grandTotals: { rows: true, columns: true },
|
|
57
57
|
},
|
|
58
58
|
filters: [filterFactory.members(DM.Commerce.Gender, ['Female', 'Male'])],
|
|
59
59
|
styleOptions: { width: 1400, height: 600, rowsPerPage: 25 },
|
|
@@ -64,7 +64,6 @@ export class AnalyticsComponent {
|
|
|
64
64
|
* ```
|
|
65
65
|
* <img src="media://angular-pivot-table-widget-example.png" width="800px" />
|
|
66
66
|
* @group Dashboards
|
|
67
|
-
* @beta
|
|
68
67
|
*/
|
|
69
68
|
export declare class PivotTableWidgetComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
70
69
|
private sisenseContextService;
|
package/dist/package.json
CHANGED
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.
|
|
1
|
+
declare const _default: "2.17.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.17.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 || ^20.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.17.0",
|
|
80
|
+
"@sisense/sdk-tracking": "2.17.0",
|
|
81
|
+
"@sisense/sdk-ui-preact": "2.17.0",
|
|
82
82
|
"rxjs": "^7.8.1",
|
|
83
83
|
"ts-deepmerge": "^6.2.0",
|
|
84
84
|
"tslib": "^2.3.0"
|