@gooddata/sdk-ui 8.10.0-alpha.1 → 8.10.0-alpha.4
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/base/results/internal/dataAccessDigest.d.ts +1 -1
- package/dist/base/results/internal/dataAccessDigest.js +1 -1
- package/dist/base/results/internal/dataAccessImpl.d.ts +1 -1
- package/dist/base/results/internal/dataAccessImpl.js +2 -2
- package/esm/base/results/internal/dataAccessDigest.d.ts +1 -1
- package/esm/base/results/internal/dataAccessDigest.js +1 -1
- package/esm/base/results/internal/dataAccessImpl.d.ts +1 -1
- package/esm/base/results/internal/dataAccessImpl.js +2 -2
- package/package.json +8 -8
|
@@ -32,7 +32,7 @@ export declare type DataSeriesDigest = {
|
|
|
32
32
|
*/
|
|
33
33
|
allAttributeHeaders: IResultAttributeHeader[][];
|
|
34
34
|
/**
|
|
35
|
-
* Index of measure local id
|
|
35
|
+
* Index of measure local id → index into the series dimension
|
|
36
36
|
*/
|
|
37
37
|
measureIndexes: {
|
|
38
38
|
[localId: string]: number[];
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createDataAccessDigest = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
|
-
// (C) 2019-
|
|
5
|
+
// (C) 2019-2022 GoodData Corporation
|
|
6
6
|
var sdk_backend_spi_1 = require("@gooddata/sdk-backend-spi");
|
|
7
7
|
var utils_1 = require("./utils");
|
|
8
8
|
var sdk_model_1 = require("@gooddata/sdk-model");
|
|
@@ -10,7 +10,7 @@ import { DataAccessConfig } from "../dataAccessConfig";
|
|
|
10
10
|
* The responsibilities of this class is to operate on top of digest & data stored in the data view and
|
|
11
11
|
* from information therein create descriptors for series, slices and then series and slices itself. It also
|
|
12
12
|
* makes access to underlying data transparent - hiding the detail whether series and slices have their
|
|
13
|
-
* data organized in row
|
|
13
|
+
* data organized in row→col or col→row.
|
|
14
14
|
*/
|
|
15
15
|
export declare class DataAccessImpl {
|
|
16
16
|
private readonly dataView;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// (C) 2019-
|
|
2
|
+
// (C) 2019-2022 GoodData Corporation
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.DataAccessImpl = void 0;
|
|
5
5
|
var tslib_1 = require("tslib");
|
|
@@ -205,7 +205,7 @@ function illegalState(message) {
|
|
|
205
205
|
* The responsibilities of this class is to operate on top of digest & data stored in the data view and
|
|
206
206
|
* from information therein create descriptors for series, slices and then series and slices itself. It also
|
|
207
207
|
* makes access to underlying data transparent - hiding the detail whether series and slices have their
|
|
208
|
-
* data organized in row
|
|
208
|
+
* data organized in row→col or col→row.
|
|
209
209
|
*/
|
|
210
210
|
var DataAccessImpl = /** @class */ (function () {
|
|
211
211
|
function DataAccessImpl(dataView, config) {
|
|
@@ -32,7 +32,7 @@ export declare type DataSeriesDigest = {
|
|
|
32
32
|
*/
|
|
33
33
|
allAttributeHeaders: IResultAttributeHeader[][];
|
|
34
34
|
/**
|
|
35
|
-
* Index of measure local id
|
|
35
|
+
* Index of measure local id → index into the series dimension
|
|
36
36
|
*/
|
|
37
37
|
measureIndexes: {
|
|
38
38
|
[localId: string]: number[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __read, __values } from "tslib";
|
|
2
|
-
// (C) 2019-
|
|
2
|
+
// (C) 2019-2022 GoodData Corporation
|
|
3
3
|
import { isAttributeDescriptor, isMeasureGroupDescriptor, isResultAttributeHeader, isResultMeasureHeader, } from "@gooddata/sdk-backend-spi";
|
|
4
4
|
import { dataViewDimensionItems, dataViewHeaders, measureGroupItems } from "./utils";
|
|
5
5
|
import { attributeLocalId, measureLocalId } from "@gooddata/sdk-model";
|
|
@@ -10,7 +10,7 @@ import { DataAccessConfig } from "../dataAccessConfig";
|
|
|
10
10
|
* The responsibilities of this class is to operate on top of digest & data stored in the data view and
|
|
11
11
|
* from information therein create descriptors for series, slices and then series and slices itself. It also
|
|
12
12
|
* makes access to underlying data transparent - hiding the detail whether series and slices have their
|
|
13
|
-
* data organized in row
|
|
13
|
+
* data organized in row→col or col→row.
|
|
14
14
|
*/
|
|
15
15
|
export declare class DataAccessImpl {
|
|
16
16
|
private readonly dataView;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// (C) 2019-
|
|
1
|
+
// (C) 2019-2022 GoodData Corporation
|
|
2
2
|
import { isResultTotalHeader, resultHeaderName, } from "@gooddata/sdk-backend-spi";
|
|
3
3
|
import { createDataAccessDigest } from "./dataAccessDigest";
|
|
4
4
|
import { LazyInitArray } from "./lazyInitArray";
|
|
@@ -201,7 +201,7 @@ function illegalState(message) {
|
|
|
201
201
|
* The responsibilities of this class is to operate on top of digest & data stored in the data view and
|
|
202
202
|
* from information therein create descriptors for series, slices and then series and slices itself. It also
|
|
203
203
|
* makes access to underlying data transparent - hiding the detail whether series and slices have their
|
|
204
|
-
* data organized in row
|
|
204
|
+
* data organized in row→col or col→row.
|
|
205
205
|
*/
|
|
206
206
|
var DataAccessImpl = /** @class */ (function () {
|
|
207
207
|
function DataAccessImpl(dataView, config) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui",
|
|
3
|
-
"version": "8.10.0-alpha.
|
|
3
|
+
"version": "8.10.0-alpha.4",
|
|
4
4
|
"description": "GoodData.UI SDK - Core",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@formatjs/intl-pluralrules": "~1.3.7",
|
|
39
39
|
"@gooddata/numberjs": "^4.0.1",
|
|
40
|
-
"@gooddata/sdk-backend-spi": "^8.10.0-alpha.
|
|
41
|
-
"@gooddata/sdk-model": "^8.10.0-alpha.
|
|
42
|
-
"@gooddata/util": "^8.10.0-alpha.
|
|
40
|
+
"@gooddata/sdk-backend-spi": "^8.10.0-alpha.4",
|
|
41
|
+
"@gooddata/sdk-model": "^8.10.0-alpha.4",
|
|
42
|
+
"@gooddata/util": "^8.10.0-alpha.4",
|
|
43
43
|
"custom-event": "^1.0.1",
|
|
44
44
|
"hoist-non-react-statics": "^3.3.0",
|
|
45
45
|
"http-status-codes": "^2.1.4",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@gooddata/eslint-config": "^2.1.0",
|
|
60
|
-
"@gooddata/reference-workspace": "^8.10.0-alpha.
|
|
61
|
-
"@gooddata/sdk-backend-base": "^8.10.0-alpha.
|
|
62
|
-
"@gooddata/sdk-backend-mockingbird": "^8.10.0-alpha.
|
|
60
|
+
"@gooddata/reference-workspace": "^8.10.0-alpha.4",
|
|
61
|
+
"@gooddata/sdk-backend-base": "^8.10.0-alpha.4",
|
|
62
|
+
"@gooddata/sdk-backend-mockingbird": "^8.10.0-alpha.4",
|
|
63
63
|
"@gooddata/stylelint-config": "^5.0.0",
|
|
64
64
|
"@microsoft/api-documenter": "^7.12.13",
|
|
65
65
|
"@microsoft/api-extractor": "^7.18.4",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"eslint-plugin-sonarjs": "^0.11.0",
|
|
90
90
|
"foundation-sites": "^5.5.3",
|
|
91
91
|
"full-icu": "^1.3.0",
|
|
92
|
-
"jest": "^27.
|
|
92
|
+
"jest": "^27.5.1",
|
|
93
93
|
"jest-enzyme": "^7.1.2",
|
|
94
94
|
"jest-junit": "^3.0.0",
|
|
95
95
|
"prettier": "~2.5.0",
|