td-stylekit 30.9.0 → 30.9.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [30.9.2](https://github.com/treasure-data/td-stylekit/compare/v30.9.1...v30.9.2) (2025-05-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **FG-166:** Change link font weight in reskin theme ([#1663](https://github.com/treasure-data/td-stylekit/issues/1663)) ([d8107eb](https://github.com/treasure-data/td-stylekit/commit/d8107eb543c473b415a8a48e189ba9e455d50b40))
7
+
8
+ ## [30.9.1](https://github.com/treasure-data/td-stylekit/compare/v30.9.0...v30.9.1) (2025-05-21)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **FG-165:** Give right hand icon bar 0 border radius ([#1662](https://github.com/treasure-data/td-stylekit/issues/1662)) ([cf32aee](https://github.com/treasure-data/td-stylekit/commit/cf32aeee1ad4b94949f90677f244bd6b8a2d65e7))
14
+
1
15
  # [30.9.0](https://github.com/treasure-data/td-stylekit/compare/v30.8.0...v30.9.0) (2025-05-21)
2
16
 
3
17
 
@@ -119,6 +119,7 @@ declare namespace ThemeProvider {
119
119
  borderBottom?: undefined;
120
120
  ':hover'?: undefined;
121
121
  borderRight?: undefined;
122
+ fontWeight?: undefined;
122
123
  } | {
123
124
  borderColor: string;
124
125
  borderRadius: string;
@@ -127,6 +128,7 @@ declare namespace ThemeProvider {
127
128
  borderBottom?: undefined;
128
129
  ':hover'?: undefined;
129
130
  borderRight?: undefined;
131
+ fontWeight?: undefined;
130
132
  } | {
131
133
  borderColor: string;
132
134
  backgroundColor: string;
@@ -135,6 +137,7 @@ declare namespace ThemeProvider {
135
137
  borderBottom?: undefined;
136
138
  ':hover'?: undefined;
137
139
  borderRight?: undefined;
140
+ fontWeight?: undefined;
138
141
  } | {
139
142
  backgroundColor: string;
140
143
  borderBottom: string;
@@ -145,6 +148,7 @@ declare namespace ThemeProvider {
145
148
  borderColor?: undefined;
146
149
  color?: undefined;
147
150
  borderRight?: undefined;
151
+ fontWeight?: undefined;
148
152
  } | {
149
153
  borderRight: string;
150
154
  borderRadius?: undefined;
@@ -153,6 +157,7 @@ declare namespace ThemeProvider {
153
157
  color?: undefined;
154
158
  borderBottom?: undefined;
155
159
  ':hover'?: undefined;
160
+ fontWeight?: undefined;
156
161
  } | {
157
162
  ':hover': {
158
163
  backgroundColor: string;
@@ -163,6 +168,16 @@ declare namespace ThemeProvider {
163
168
  color?: undefined;
164
169
  borderBottom?: undefined;
165
170
  borderRight?: undefined;
171
+ fontWeight?: undefined;
172
+ } | {
173
+ fontWeight: string;
174
+ borderRadius?: undefined;
175
+ borderColor?: undefined;
176
+ backgroundColor?: undefined;
177
+ color?: undefined;
178
+ borderBottom?: undefined;
179
+ ':hover'?: undefined;
180
+ borderRight?: undefined;
166
181
  };
167
182
  };
168
183
  };
@@ -64,6 +64,7 @@ export declare const theme: {
64
64
  borderBottom?: undefined;
65
65
  ':hover'?: undefined;
66
66
  borderRight?: undefined;
67
+ fontWeight?: undefined;
67
68
  } | {
68
69
  borderColor: string;
69
70
  borderRadius: string;
@@ -72,6 +73,7 @@ export declare const theme: {
72
73
  borderBottom?: undefined;
73
74
  ':hover'?: undefined;
74
75
  borderRight?: undefined;
76
+ fontWeight?: undefined;
75
77
  } | {
76
78
  borderColor: string;
77
79
  backgroundColor: string;
@@ -80,6 +82,7 @@ export declare const theme: {
80
82
  borderBottom?: undefined;
81
83
  ':hover'?: undefined;
82
84
  borderRight?: undefined;
85
+ fontWeight?: undefined;
83
86
  } | {
84
87
  backgroundColor: string;
85
88
  borderBottom: string;
@@ -90,6 +93,7 @@ export declare const theme: {
90
93
  borderColor?: undefined;
91
94
  color?: undefined;
92
95
  borderRight?: undefined;
96
+ fontWeight?: undefined;
93
97
  } | {
94
98
  borderRight: string;
95
99
  borderRadius?: undefined;
@@ -98,6 +102,7 @@ export declare const theme: {
98
102
  color?: undefined;
99
103
  borderBottom?: undefined;
100
104
  ':hover'?: undefined;
105
+ fontWeight?: undefined;
101
106
  } | {
102
107
  ':hover': {
103
108
  backgroundColor: string;
@@ -108,6 +113,16 @@ export declare const theme: {
108
113
  color?: undefined;
109
114
  borderBottom?: undefined;
110
115
  borderRight?: undefined;
116
+ fontWeight?: undefined;
117
+ } | {
118
+ fontWeight: string;
119
+ borderRadius?: undefined;
120
+ borderColor?: undefined;
121
+ backgroundColor?: undefined;
122
+ color?: undefined;
123
+ borderBottom?: undefined;
124
+ ':hover'?: undefined;
125
+ borderRight?: undefined;
111
126
  };
112
127
  };
113
128
  };
@@ -87,10 +87,13 @@ var gradient = {
87
87
  neutral: 'linear-gradient(179.94deg, #FFFFFF 8.73%, #F5F5F5 33.78%)'
88
88
  };
89
89
  var overrides = (_overrides = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_overrides, _overridable["default"].IconBar.Root, function (props) {
90
- return props.colorVariant === 'dark' && {
91
- background: "linear-gradient(180deg, #141023 0%, #2E41A6 100%)",
90
+ var overrides = {
92
91
  borderRadius: 0
93
92
  };
93
+ if (props.colorVariant === 'dark') {
94
+ overrides.background = "linear-gradient(180deg, #141023 0%, #2E41A6 100%)";
95
+ }
96
+ return overrides;
94
97
  }), _overridable["default"].IconBar.IconItemContainer, function (props) {
95
98
  return (
96
99
  // dark variant
@@ -199,12 +202,14 @@ var overrides = (_overrides = {}, _defineProperty(_defineProperty(_definePropert
199
202
  color: props.selected ? palette.neutral[0] : props.disabled ? '' : palette.secondary[4]
200
203
  }
201
204
  };
202
- }), _defineProperty(_overrides, _overridable["default"].Tree.Spinner, function (props) {
205
+ }), _defineProperty(_defineProperty(_overrides, _overridable["default"].Tree.Spinner, function (props) {
203
206
  return {
204
207
  borderTopColor: props.selected ? palette.secondary[2] : '#706e6b',
205
208
  borderRightColor: props.selected ? palette.secondary[2] : '#706e6b',
206
209
  borderBottomColor: props.selected ? palette.secondary[2] : '#706e6b'
207
210
  };
211
+ }), _overridable["default"].Link.Root, {
212
+ fontWeight: 'inherit'
208
213
  }));
209
214
  var theme = exports.theme = {
210
215
  space: space,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "td-stylekit",
3
- "version": "30.9.0",
3
+ "version": "30.9.2",
4
4
  "main": "dist/es/index.js",
5
5
  "module": "dist/es/index.js",
6
6
  "types": "dist/es/index.d.ts",