@gooddata/sdk-ui-theme-provider 11.39.0-alpha.3 → 11.39.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.
@@ -3,6 +3,7 @@
3
3
  import { chartThemeDeprecatedVariables } from "./deprecated/chart.js";
4
4
  import { paletteBaseThemeDeprecatedVariables } from "./deprecated/palette-base.js";
5
5
  import { inconsistentVariables } from "./inconsistent/inconsistent.js";
6
+ import { internalAvatarThemeVariables } from "./internal/avatar.js";
6
7
  import { internalButtonThemeVariables } from "./internal/button.js";
7
8
  import { internalFontThemeVariables } from "./internal/font.js";
8
9
  import { internalGeoThemeVariables } from "./internal/geo.js";
@@ -65,6 +66,7 @@ export const themeInternalCssVariables = [
65
66
  // Geo
66
67
  ...internalGeoThemeVariables,
67
68
  // Components
69
+ ...internalAvatarThemeVariables,
68
70
  ...internalButtonThemeVariables,
69
71
  ...internalIconThemeVariables,
70
72
  ...internalTabsThemeVariables,
@@ -0,0 +1,2 @@
1
+ import { type ThemeInternalCssVariable } from "../types.js";
2
+ export declare const internalAvatarThemeVariables: ThemeInternalCssVariable[];
@@ -0,0 +1,13 @@
1
+ // (C) 2026 GoodData Corporation
2
+ export const internalAvatarThemeVariables = [
3
+ {
4
+ type: "internal",
5
+ variableName: "--gd-avatar-background-color",
6
+ defaultValue: "var(--gd-palette-complementary-2)",
7
+ },
8
+ {
9
+ type: "internal",
10
+ variableName: "--gd-avatar-size",
11
+ defaultValue: null,
12
+ },
13
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-theme-provider",
3
- "version": "11.39.0-alpha.3",
3
+ "version": "11.39.0-alpha.4",
4
4
  "description": "GoodData SDK - Theme provider",
5
5
  "license": "MIT",
6
6
  "author": "GoodData Corporation",
@@ -32,10 +32,10 @@
32
32
  "postcss-value-parser": "^4.2.0",
33
33
  "ts-invariant": "0.10.3",
34
34
  "tslib": "2.8.1",
35
- "@gooddata/sdk-backend-spi": "11.39.0-alpha.3",
36
- "@gooddata/sdk-model": "11.39.0-alpha.3",
37
- "@gooddata/util": "11.39.0-alpha.3",
38
- "@gooddata/sdk-ui": "11.39.0-alpha.3"
35
+ "@gooddata/sdk-backend-spi": "11.39.0-alpha.4",
36
+ "@gooddata/sdk-ui": "11.39.0-alpha.4",
37
+ "@gooddata/sdk-model": "11.39.0-alpha.4",
38
+ "@gooddata/util": "11.39.0-alpha.4"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@microsoft/api-documenter": "^7.17.0",
@@ -73,10 +73,10 @@
73
73
  "react-dom": "19.1.1",
74
74
  "typescript": "5.9.3",
75
75
  "vitest": "4.1.0",
76
- "@gooddata/oxlint-config": "11.39.0-alpha.3",
77
- "@gooddata/reference-workspace": "11.39.0-alpha.3",
78
- "@gooddata/eslint-config": "11.39.0-alpha.3",
79
- "@gooddata/sdk-backend-mockingbird": "11.39.0-alpha.3"
76
+ "@gooddata/eslint-config": "11.39.0-alpha.4",
77
+ "@gooddata/oxlint-config": "11.39.0-alpha.4",
78
+ "@gooddata/reference-workspace": "11.39.0-alpha.4",
79
+ "@gooddata/sdk-backend-mockingbird": "11.39.0-alpha.4"
80
80
  },
81
81
  "peerDependencies": {
82
82
  "react": "^18.0.0 || ^19.0.0",