Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@gooddata/sdk-ui-all",
"comment": "sdk-ui-kit: Make `EditableLabel` accessible by keyboard.",
"type": "none"
}
],
"packageName": "@gooddata/sdk-ui-all"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@gooddata/sdk-ui-all",
"comment": "sdk-ui-kit: Restore focus on `UiDrawer` close and add `returnFocusTo` option.",
"type": "none"
}
],
"packageName": "@gooddata/sdk-ui-all"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@gooddata/sdk-ui-all",
"comment": "sdk-ui-dashboard: Remove the “Select all” checkbox from the attribute picker",
"type": "none"
}
],
"packageName": "@gooddata/sdk-ui-all"
}
10 changes: 10 additions & 0 deletions common/changes/@gooddata/sdk-ui-all/jsc-f_1_2026-01-13-11-44.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@gooddata/sdk-ui-all",
"comment": "sdk-ui-kit: Enhance Input component accessibility by providing proper prefix and suffix aria labels.",
"type": "none"
}
],
"packageName": "@gooddata/sdk-ui-all"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@gooddata/sdk-ui-all",
"comment": "sdk-ui-charts, sdk-ui-dashboards: Open dashboard drilldown menu at the position of the click, not in the center of the insight",
"type": "none"
}
],
"packageName": "@gooddata/sdk-ui-all"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@gooddata/sdk-ui-all",
"comment": "sdk-ui-dashboard: Fix insight elements DOM order according to a11y findings. Visually unchanged.",
"type": "none"
}
],
"packageName": "@gooddata/sdk-ui-all"
}
4 changes: 2 additions & 2 deletions common/config/rush/version-policies.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
{
"definitionName": "lockStepVersion",
"policyName": "sdk",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"nextBump": "prerelease",
"mainProject": "@gooddata/sdk-ui-all"
},
{
"definitionName": "lockStepVersion",
"policyName": "sdk-examples",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"nextBump": "prerelease",
"mainProject": "@gooddata/sdk-ui-all"
}
Expand Down
7 changes: 3 additions & 4 deletions examples/playground/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [
tsOverride(__dirname, {
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-assignment": "warn",
}),
],
};
7 changes: 5 additions & 2 deletions examples/playground/src/createBackend.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
// (C) 2022-2025 GoodData Corporation
// (C) 2022-2026 GoodData Corporation

import { RecommendedCachingConfiguration, withCaching } from "@gooddata/sdk-backend-base";
import { type IAnalyticalBackend } from "@gooddata/sdk-backend-spi";
import { TigerTokenAuthProvider, tigerFactory } from "@gooddata/sdk-backend-tiger";

export function createBackend(): IAnalyticalBackend {
return withCaching(
tigerFactory().withAuthentication(new TigerTokenAuthProvider(import.meta.env.VITE_TIGER_API_TOKEN)),
tigerFactory().withAuthentication(
new TigerTokenAuthProvider(import.meta.env["VITE_TIGER_API_TOKEN"] as string),
),
RecommendedCachingConfiguration,
);
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-examples-template",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "GoodData interactive example template",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-attributefilter",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-chartconfig",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "This interactive example demonstrates how to manipulate the chart config.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-columnchart",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-combochart",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "Example demonstrates ComboChart secondaryMeasures definition. ",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-dashboard",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "This example shows how to use the Dashboard component.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-datefilter",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "Example demonstrates usage of Date Filter component.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-dependentfilters",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-execute",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "This example demonstrates using Execute component and build custom visualization.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-granularity",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "This example exmplains DateFilter granularity ",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-headline",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "This example shows how to use the Headline component.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-pivottable",
"version": "11.16.0-alpha.4",
"version": "11.16.0-alpha.5",
"private": false,
"description": "Basic PivotTable manipulation.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// (C) 2020 GoodData Corporation
// (C) 2020-2026 GoodData Corporation

const { tsOverride } = require("@gooddata/eslint-config/tsOverride");

module.exports = {
extends: ["@gooddata/eslint-config/esm-react"],
rules: {
"import/no-unassigned-import": "off",
"import/no-unassigned-import": "warn",
},
overrides: [tsOverride(__dirname)],
};
Loading
Loading