td-stylekit 32.0.1 → 33.1.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/CHANGELOG.md +24 -0
- package/dist/es/DataGrid/elements.d.ts +0 -6
- package/dist/es/Logo/Logo.js +1 -1
- package/dist/es/Logo/LogoDark.js +83 -59
- package/dist/es/Logo/LogoLight.js +69 -51
- package/dist/es/ThemeProvider/overridable.d.ts +0 -6
- package/dist/es/ThemeProvider/overridable.js +0 -6
- package/dist/es/ThemeProvider/reskinTheme.js +2 -36
- package/dist/es/index.d.ts +0 -3
- package/dist/es/index.js +0 -32
- package/llms.md +1 -1
- package/package.json +2 -5
- package/dist/es/Tree/NodeContent.d.ts +0 -25
- package/dist/es/Tree/NodeContent.js +0 -197
- package/dist/es/Tree/NodeContextMenu.d.ts +0 -14
- package/dist/es/Tree/NodeContextMenu.js +0 -41
- package/dist/es/Tree/Tree.d.ts +0 -23
- package/dist/es/Tree/Tree.js +0 -197
- package/dist/es/Tree/TreeNode.d.ts +0 -5
- package/dist/es/Tree/TreeNode.js +0 -71
- package/dist/es/Tree/elements.d.ts +0 -57
- package/dist/es/Tree/elements.js +0 -171
- package/dist/es/Tree/index.d.ts +0 -24
- package/dist/es/Tree/index.js +0 -56
- package/dist/es/Tree/mockData.d.ts +0 -41
- package/dist/es/Tree/mockData.js +0 -66
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# [33.1.0](https://github.com/treasure-data/td-stylekit/compare/v33.0.0...v33.1.0) (2026-04-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **API-8974:** Update Logo components with new logo assets ([#1794](https://github.com/treasure-data/td-stylekit/issues/1794)) ([9270ef9](https://github.com/treasure-data/td-stylekit/commit/9270ef9ff188a9b9ade30aedbcc132bb63e3f28b))
|
|
7
|
+
|
|
8
|
+
# [33.0.0](https://github.com/treasure-data/td-stylekit/compare/v32.0.1...v33.0.0) (2026-03-25)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **UIDX-593:** Remove Tree and react-sortable-tree dep ([#1770](https://github.com/treasure-data/td-stylekit/issues/1770)) ([a764224](https://github.com/treasure-data/td-stylekit/commit/a764224c57503e3b8b089a0d72b7008365c76c9d))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### BREAKING CHANGES
|
|
17
|
+
|
|
18
|
+
* **UIDX-593:** Testing major release mechanism with empty commit
|
|
19
|
+
|
|
20
|
+
* feat!: trigger major release
|
|
21
|
+
* **UIDX-593:** Testing major release mechanism with proper conventional commit format
|
|
22
|
+
|
|
23
|
+
* fix Preview
|
|
24
|
+
|
|
1
25
|
## [32.0.1](https://github.com/treasure-data/td-stylekit/compare/v32.0.0...v32.0.1) (2026-03-03)
|
|
2
26
|
|
|
3
27
|
|
|
@@ -453,12 +453,6 @@ export declare const CategoryInput: typeof Input & StyledComponent<any, {}, {
|
|
|
453
453
|
Root: symbol;
|
|
454
454
|
ToggleKnob: symbol;
|
|
455
455
|
};
|
|
456
|
-
Tree: {
|
|
457
|
-
NodeContentWrapper: symbol;
|
|
458
|
-
IconWrapper: symbol;
|
|
459
|
-
PlusMinusButton: symbol;
|
|
460
|
-
Spinner: symbol;
|
|
461
|
-
};
|
|
462
456
|
UserAvatar: {
|
|
463
457
|
Root: symbol;
|
|
464
458
|
AvatarFallback: symbol;
|
package/dist/es/Logo/Logo.js
CHANGED
|
@@ -18,7 +18,7 @@ function LogoTD(_ref) {
|
|
|
18
18
|
_ref$width = _ref.width,
|
|
19
19
|
width = _ref$width === void 0 ? 30 : _ref$width,
|
|
20
20
|
_ref$height = _ref.height,
|
|
21
|
-
height = _ref$height === void 0 ?
|
|
21
|
+
height = _ref$height === void 0 ? 20 : _ref$height,
|
|
22
22
|
_ref$variant = _ref.variant,
|
|
23
23
|
variant = _ref$variant === void 0 ? 'themed' : _ref$variant;
|
|
24
24
|
// return the relevant logo based on the variant - if the type is 'themed'
|
package/dist/es/Logo/LogoDark.js
CHANGED
|
@@ -17,110 +17,134 @@ function LogoDark(_ref) {
|
|
|
17
17
|
_ref$width = _ref.width,
|
|
18
18
|
width = _ref$width === void 0 ? 30 : _ref$width,
|
|
19
19
|
_ref$height = _ref.height,
|
|
20
|
-
height = _ref$height === void 0 ?
|
|
20
|
+
height = _ref$height === void 0 ? 20 : _ref$height;
|
|
21
21
|
return (0, _jsxRuntime.jsxs)("svg", {
|
|
22
22
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg"),
|
|
23
23
|
width: width,
|
|
24
24
|
height: height,
|
|
25
25
|
className: className,
|
|
26
|
-
|
|
27
|
-
viewBox: "0 0 30 21",
|
|
26
|
+
viewBox: "0 0 156 104",
|
|
28
27
|
xmlns: "http://www.w3.org/2000/svg",
|
|
29
28
|
children: [(0, _jsxRuntime.jsxs)("defs", {
|
|
30
29
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs"),
|
|
31
30
|
children: [(0, _jsxRuntime.jsxs)("linearGradient", {
|
|
32
31
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient"),
|
|
33
|
-
id: "
|
|
34
|
-
x1: "
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
y2: "
|
|
38
|
-
gradientTransform: "matrix(1 0 0 -1 -542.85 580.46)",
|
|
32
|
+
id: "logo-dark-gradient",
|
|
33
|
+
x1: "26.5",
|
|
34
|
+
y1: "78.52",
|
|
35
|
+
x2: "116.36",
|
|
36
|
+
y2: "-11.35",
|
|
39
37
|
gradientUnits: "userSpaceOnUse",
|
|
40
38
|
children: [(0, _jsxRuntime.jsx)("stop", {
|
|
41
39
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
42
|
-
|
|
43
|
-
|
|
40
|
+
offset: ".03",
|
|
41
|
+
stopColor: "#ff86b4"
|
|
44
42
|
}), (0, _jsxRuntime.jsx)("stop", {
|
|
45
43
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
46
|
-
|
|
47
|
-
|
|
44
|
+
offset: ".04",
|
|
45
|
+
stopColor: "#fa84b7"
|
|
46
|
+
}), (0, _jsxRuntime.jsx)("stop", {
|
|
47
|
+
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
48
|
+
offset: ".16",
|
|
49
|
+
stopColor: "#c572dd"
|
|
50
|
+
}), (0, _jsxRuntime.jsx)("stop", {
|
|
51
|
+
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
52
|
+
offset: ".25",
|
|
53
|
+
stopColor: "#a468f5"
|
|
54
|
+
}), (0, _jsxRuntime.jsx)("stop", {
|
|
55
|
+
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
56
|
+
offset: ".31",
|
|
57
|
+
stopColor: "#9864ff"
|
|
58
|
+
}), (0, _jsxRuntime.jsx)("stop", {
|
|
59
|
+
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
60
|
+
offset: ".38",
|
|
61
|
+
stopColor: "#8470ff"
|
|
62
|
+
}), (0, _jsxRuntime.jsx)("stop", {
|
|
63
|
+
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
64
|
+
offset: ".68",
|
|
65
|
+
stopColor: "#3d9cff"
|
|
66
|
+
}), (0, _jsxRuntime.jsx)("stop", {
|
|
67
|
+
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
68
|
+
offset: ".89",
|
|
69
|
+
stopColor: "#11b8ff"
|
|
70
|
+
}), (0, _jsxRuntime.jsx)("stop", {
|
|
71
|
+
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
72
|
+
offset: "1",
|
|
73
|
+
stopColor: "#00c3ff"
|
|
48
74
|
})]
|
|
49
|
-
}), (0, _jsxRuntime.jsx)("linearGradient", {
|
|
50
|
-
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient"),
|
|
51
|
-
id: "linearGradient3192",
|
|
52
|
-
x1: "530.33",
|
|
53
|
-
x2: "540.4",
|
|
54
|
-
y1: "569.98",
|
|
55
|
-
y2: "611.57",
|
|
56
|
-
gradientTransform: "matrix(1 0 0 -1 -542.85 580.46)",
|
|
57
|
-
gradientUnits: "userSpaceOnUse"
|
|
58
75
|
}), (0, _jsxRuntime.jsxs)("linearGradient", {
|
|
59
76
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient"),
|
|
60
|
-
id: "
|
|
61
|
-
x1: "
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
y2: "
|
|
65
|
-
gradientTransform: "matrix(1,0,0,-1,0,1080)",
|
|
77
|
+
id: "logo-dark-gradient-2",
|
|
78
|
+
x1: "87.78",
|
|
79
|
+
y1: "17.35",
|
|
80
|
+
x2: "87.78",
|
|
81
|
+
y2: "-12.19",
|
|
66
82
|
gradientUnits: "userSpaceOnUse",
|
|
67
83
|
children: [(0, _jsxRuntime.jsx)("stop", {
|
|
68
84
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
69
|
-
|
|
70
|
-
|
|
85
|
+
offset: ".07",
|
|
86
|
+
stopColor: "#fff"
|
|
71
87
|
}), (0, _jsxRuntime.jsx)("stop", {
|
|
72
88
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
73
|
-
|
|
74
|
-
|
|
89
|
+
offset: ".89",
|
|
90
|
+
stopColor: "#00baff"
|
|
75
91
|
})]
|
|
76
|
-
}), (0, _jsxRuntime.
|
|
92
|
+
}), (0, _jsxRuntime.jsxs)("linearGradient", {
|
|
77
93
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient"),
|
|
78
|
-
id: "
|
|
79
|
-
x1: "
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
y2: "
|
|
83
|
-
|
|
94
|
+
id: "logo-dark-gradient-3",
|
|
95
|
+
x1: "121.2",
|
|
96
|
+
y1: "15.53",
|
|
97
|
+
x2: "170.87",
|
|
98
|
+
y2: "15.53",
|
|
99
|
+
gradientUnits: "userSpaceOnUse",
|
|
100
|
+
children: [(0, _jsxRuntime.jsx)("stop", {
|
|
101
|
+
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
102
|
+
offset: "0",
|
|
103
|
+
stopColor: "#fff"
|
|
104
|
+
}), (0, _jsxRuntime.jsx)("stop", {
|
|
105
|
+
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
106
|
+
offset: ".89",
|
|
107
|
+
stopColor: "#30c4ff"
|
|
108
|
+
})]
|
|
84
109
|
}), (0, _jsxRuntime.jsxs)("linearGradient", {
|
|
85
110
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient"),
|
|
86
|
-
id: "
|
|
87
|
-
x1: "
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
y2: "
|
|
91
|
-
gradientTransform: "matrix(1 0 0 -1 -542.85 580.46)",
|
|
111
|
+
id: "logo-dark-gradient-4",
|
|
112
|
+
x1: "84.53",
|
|
113
|
+
y1: "59.64",
|
|
114
|
+
x2: "143.97",
|
|
115
|
+
y2: "70.74",
|
|
92
116
|
gradientUnits: "userSpaceOnUse",
|
|
93
117
|
children: [(0, _jsxRuntime.jsx)("stop", {
|
|
94
118
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
95
|
-
|
|
96
|
-
|
|
119
|
+
offset: ".03",
|
|
120
|
+
stopColor: "#7b32dc"
|
|
97
121
|
}), (0, _jsxRuntime.jsx)("stop", {
|
|
98
122
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "defs", "linear-gradient", "stop"),
|
|
99
|
-
|
|
100
|
-
|
|
123
|
+
offset: ".98",
|
|
124
|
+
stopColor: "#32bdff"
|
|
101
125
|
})]
|
|
102
126
|
})]
|
|
103
127
|
}), (0, _jsxRuntime.jsxs)("g", {
|
|
104
128
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "g"),
|
|
105
|
-
|
|
129
|
+
id: "Stacked",
|
|
106
130
|
children: [(0, _jsxRuntime.jsx)("path", {
|
|
107
131
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "g", "path"),
|
|
108
|
-
d: "
|
|
109
|
-
fill: "url(#
|
|
132
|
+
d: "M83.02,102.82l70.21-70.21c2.93-2.93,2.93-7.69,0-10.62l-18.44-18.44C132.52,1.28,129.43,0,126.21,0H29.22C26,0,22.91,1.28,20.64,3.56L2.2,21.99c-2.93,2.93-2.93,7.69,0,10.62l70.21,70.21c2.93,2.93,7.69,2.93,10.62,0Z",
|
|
133
|
+
fill: "url(#logo-dark-gradient)"
|
|
110
134
|
}), (0, _jsxRuntime.jsx)("path", {
|
|
111
135
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "g", "path"),
|
|
112
|
-
d: "
|
|
113
|
-
fill: "url(#
|
|
136
|
+
d: "M20.13,4.07c2.54-2.54,6.18-3.64,9.7-2.92l121.91,24.78c2.43.49,3.58,3.07,2.68,5.14,1.66-2.87,1.27-6.6-1.18-9.06l-18.44-18.44c-2.28-2.28-5.36-3.55-8.58-3.55H29.22c-3.22,0-6.31,1.28-8.58,3.56l-.51.51Z",
|
|
137
|
+
fill: "url(#logo-dark-gradient-2)",
|
|
114
138
|
opacity: ".4"
|
|
115
139
|
}), (0, _jsxRuntime.jsx)("path", {
|
|
116
140
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "g", "path"),
|
|
117
|
-
d: "
|
|
118
|
-
fill: "url(#
|
|
119
|
-
opacity: ".
|
|
141
|
+
d: "M128.59,5.35l-7.14,14.42,30.29,6.15c2.43.49,3.58,3.07,2.68,5.14,1.66-2.87,1.27-6.6-1.18-9.06l-18.44-18.44c-2.28-2.28-5.36-3.55-8.58-3.55h-.94c2.75,0,4.54,2.88,3.32,5.35Z",
|
|
142
|
+
fill: "url(#logo-dark-gradient-3)",
|
|
143
|
+
opacity: ".6"
|
|
120
144
|
}), (0, _jsxRuntime.jsx)("path", {
|
|
121
145
|
"data-gs": gs("src", "logo", "logodark.tsx", "logo-dark", "svg", "g", "path"),
|
|
122
|
-
d: "
|
|
123
|
-
fill: "url(#
|
|
146
|
+
d: "M154.42,31.06c.9-2.06-.25-4.64-2.68-5.14l-30.29-6.15-40.65,82.12c-1.14,2.3-3.72,3.25-5.96,2.56,2.72,1.12,5.97.58,8.18-1.63l70.21-70.21c.47-.47.86-1,1.19-1.56h0Z",
|
|
147
|
+
fill: "url(#logo-dark-gradient-4)"
|
|
124
148
|
})]
|
|
125
149
|
})]
|
|
126
150
|
});
|
|
@@ -15,108 +15,126 @@ function LogoLight(_ref) {
|
|
|
15
15
|
_ref$width = _ref.width,
|
|
16
16
|
width = _ref$width === void 0 ? 30 : _ref$width,
|
|
17
17
|
_ref$height = _ref.height,
|
|
18
|
-
height = _ref$height === void 0 ?
|
|
18
|
+
height = _ref$height === void 0 ? 20 : _ref$height;
|
|
19
19
|
return (0, _jsxRuntime.jsxs)("svg", {
|
|
20
20
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg"),
|
|
21
21
|
width: width,
|
|
22
22
|
height: height,
|
|
23
23
|
className: className,
|
|
24
|
-
|
|
25
|
-
viewBox: "0 0 30 21",
|
|
24
|
+
viewBox: "0 0 156 104",
|
|
26
25
|
xmlns: "http://www.w3.org/2000/svg",
|
|
27
26
|
children: [(0, _jsxRuntime.jsxs)("defs", {
|
|
28
27
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs"),
|
|
29
28
|
children: [(0, _jsxRuntime.jsxs)("linearGradient", {
|
|
30
29
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient"),
|
|
31
|
-
id: "
|
|
32
|
-
x1: "
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
y2: "
|
|
30
|
+
id: "logo-light-gradient",
|
|
31
|
+
x1: "43.56",
|
|
32
|
+
y1: "86.46",
|
|
33
|
+
x2: "102.47",
|
|
34
|
+
y2: "-15.58",
|
|
36
35
|
gradientUnits: "userSpaceOnUse",
|
|
37
36
|
children: [(0, _jsxRuntime.jsx)("stop", {
|
|
38
37
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient", "stop"),
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
offset: "0",
|
|
39
|
+
stopColor: "#fff"
|
|
41
40
|
}), (0, _jsxRuntime.jsx)("stop", {
|
|
42
41
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient", "stop"),
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
offset: "1",
|
|
43
|
+
stopColor: "#c8c8c8"
|
|
45
44
|
})]
|
|
46
45
|
}), (0, _jsxRuntime.jsxs)("linearGradient", {
|
|
47
46
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient"),
|
|
48
|
-
id: "
|
|
49
|
-
x1: "
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
y2: "-
|
|
47
|
+
id: "logo-light-gradient-2",
|
|
48
|
+
x1: "86.7",
|
|
49
|
+
y1: "20.57",
|
|
50
|
+
x2: "97.43",
|
|
51
|
+
y2: "-23.74",
|
|
53
52
|
gradientUnits: "userSpaceOnUse",
|
|
54
53
|
children: [(0, _jsxRuntime.jsx)("stop", {
|
|
55
54
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient", "stop"),
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
offset: ".07",
|
|
56
|
+
stopColor: "#fff"
|
|
58
57
|
}), (0, _jsxRuntime.jsx)("stop", {
|
|
59
58
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient", "stop"),
|
|
60
|
-
|
|
61
|
-
|
|
59
|
+
offset: "1",
|
|
60
|
+
stopColor: "#f0f0f0"
|
|
62
61
|
})]
|
|
63
62
|
}), (0, _jsxRuntime.jsxs)("linearGradient", {
|
|
64
63
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient"),
|
|
65
|
-
id: "
|
|
66
|
-
x1: "
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
y2: "
|
|
64
|
+
id: "logo-light-gradient-3",
|
|
65
|
+
x1: "79.31",
|
|
66
|
+
y1: "53.41",
|
|
67
|
+
x2: "137.92",
|
|
68
|
+
y2: "73.7",
|
|
70
69
|
gradientUnits: "userSpaceOnUse",
|
|
71
70
|
children: [(0, _jsxRuntime.jsx)("stop", {
|
|
72
71
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient", "stop"),
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
offset: ".34",
|
|
73
|
+
stopColor: "#c8c8c8"
|
|
75
74
|
}), (0, _jsxRuntime.jsx)("stop", {
|
|
76
75
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient", "stop"),
|
|
77
|
-
|
|
78
|
-
|
|
76
|
+
offset: ".55",
|
|
77
|
+
stopColor: "#d0d0d0"
|
|
78
|
+
}), (0, _jsxRuntime.jsx)("stop", {
|
|
79
|
+
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient", "stop"),
|
|
80
|
+
offset: ".9",
|
|
81
|
+
stopColor: "#e7e7e7"
|
|
82
|
+
}), (0, _jsxRuntime.jsx)("stop", {
|
|
83
|
+
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient", "stop"),
|
|
84
|
+
offset: "1",
|
|
85
|
+
stopColor: "#f0f0f0"
|
|
79
86
|
})]
|
|
80
87
|
}), (0, _jsxRuntime.jsxs)("linearGradient", {
|
|
81
88
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient"),
|
|
82
|
-
id: "
|
|
83
|
-
x1: "
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
y2: "
|
|
89
|
+
id: "logo-light-gradient-4",
|
|
90
|
+
x1: "-31.25",
|
|
91
|
+
y1: "6.25",
|
|
92
|
+
x2: "137.84",
|
|
93
|
+
y2: "64.79",
|
|
87
94
|
gradientUnits: "userSpaceOnUse",
|
|
88
95
|
children: [(0, _jsxRuntime.jsx)("stop", {
|
|
89
96
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient", "stop"),
|
|
90
|
-
|
|
91
|
-
|
|
97
|
+
offset: "0",
|
|
98
|
+
stopColor: "#85f"
|
|
92
99
|
}), (0, _jsxRuntime.jsx)("stop", {
|
|
93
100
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "defs", "linear-gradient", "stop"),
|
|
94
|
-
|
|
95
|
-
|
|
101
|
+
offset: "1",
|
|
102
|
+
stopColor: "#00b6ff"
|
|
96
103
|
})]
|
|
97
104
|
})]
|
|
98
105
|
}), (0, _jsxRuntime.jsxs)("g", {
|
|
99
106
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "g"),
|
|
100
|
-
|
|
101
|
-
|
|
107
|
+
style: {
|
|
108
|
+
isolation: 'isolate'
|
|
109
|
+
},
|
|
102
110
|
children: [(0, _jsxRuntime.jsx)("path", {
|
|
103
111
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "g", "path"),
|
|
104
|
-
d: "
|
|
105
|
-
fill: "url(#
|
|
112
|
+
d: "M83.02,102.82l70.21-70.21c2.93-2.93,2.93-7.69,0-10.62l-18.44-18.44C132.52,1.28,129.43,0,126.21,0H29.22C26,0,22.91,1.28,20.64,3.56L2.2,21.99c-2.93,2.93-2.93,7.69,0,10.62l70.21,70.21c2.93,2.93,7.69,2.93,10.62,0Z",
|
|
113
|
+
fill: "url(#logo-light-gradient)"
|
|
106
114
|
}), (0, _jsxRuntime.jsx)("path", {
|
|
107
115
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "g", "path"),
|
|
108
|
-
d: "
|
|
109
|
-
fill: "url(#
|
|
110
|
-
opacity: ".
|
|
116
|
+
d: "M20.13,4.07c2.54-2.54,6.18-3.64,9.7-2.92l121.91,24.78c2.43.49,3.58,3.07,2.68,5.14,1.66-2.87,1.27-6.6-1.18-9.06l-18.44-18.44c-2.28-2.28-5.36-3.55-8.58-3.55H29.22c-3.22,0-6.31,1.28-8.58,3.56l-.51.51Z",
|
|
117
|
+
fill: "url(#logo-light-gradient-2)",
|
|
118
|
+
opacity: ".7"
|
|
111
119
|
}), (0, _jsxRuntime.jsx)("path", {
|
|
112
120
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "g", "path"),
|
|
113
|
-
d: "
|
|
114
|
-
fill: "
|
|
115
|
-
opacity: ".4"
|
|
121
|
+
d: "M128.59,5.35l-7.14,14.42,30.29,6.15c2.43.49,3.58,3.07,2.68,5.14,1.66-2.87,1.27-6.6-1.18-9.06l-18.44-18.44c-2.28-2.28-5.36-3.55-8.58-3.55h-.94c2.75,0,4.54,2.88,3.32,5.35Z",
|
|
122
|
+
fill: "#fff"
|
|
116
123
|
}), (0, _jsxRuntime.jsx)("path", {
|
|
117
124
|
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "g", "path"),
|
|
118
|
-
d: "
|
|
119
|
-
fill: "url(#
|
|
125
|
+
d: "M154.42,31.06c.9-2.06-.25-4.64-2.68-5.14l-30.29-6.15-40.65,82.12c-1.14,2.3-3.72,3.25-5.96,2.56,2.72,1.12,5.97.58,8.18-1.63l70.21-70.21c.47-.47.86-1,1.19-1.56h0Z",
|
|
126
|
+
fill: "url(#logo-light-gradient-3)"
|
|
127
|
+
}), (0, _jsxRuntime.jsx)("g", {
|
|
128
|
+
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "g", "g"),
|
|
129
|
+
style: {
|
|
130
|
+
mixBlendMode: 'color',
|
|
131
|
+
opacity: 0.5
|
|
132
|
+
},
|
|
133
|
+
children: (0, _jsxRuntime.jsx)("path", {
|
|
134
|
+
"data-gs": gs("src", "logo", "logolight.tsx", "logo-light", "svg", "g", "g", "path"),
|
|
135
|
+
d: "M155.39,26.89c-.01-.26-.03-.51-.07-.77-.03-.19-.07-.37-.11-.55-.03-.13-.04-.26-.08-.38-.04-.14-.1-.26-.15-.4-.06-.17-.12-.33-.19-.5-.12-.28-.27-.54-.43-.81-.08-.13-.15-.27-.23-.39-.26-.38-.55-.75-.89-1.09h0s-18.44-18.44-18.44-18.44c-.85-.85-1.82-1.57-2.87-2.13-.02-.01-.04-.02-.06-.03C130.14.49,128.2,0,126.21,0H29.22C26,0,22.91,1.28,20.64,3.56L2.2,21.99c-2.93,2.93-2.93,7.69,0,10.62l70.21,70.21c.72.72,1.56,1.26,2.45,1.63,0,0,0,0,0,0,0,0,0,0,.01,0,.07.03.14.04.21.07.34.13.69.23,1.04.31.14.03.29.05.44.08.3.05.6.08.9.09.14,0,.28.01.42.01.43,0,.85-.04,1.27-.12.04,0,.07-.02.11-.03.39-.08.77-.2,1.15-.34.13-.05.25-.11.37-.16.29-.13.58-.28.86-.45.12-.07.23-.14.34-.21.37-.26.73-.54,1.06-.87l70.21-70.21c.31-.31.58-.65.82-1,.09-.12.17-.25.25-.37.04-.06.08-.12.12-.18.09-.15.14-.31.22-.46.1-.2.21-.4.29-.6.11-.27.18-.56.25-.84.07-.29.13-.59.17-.89.03-.27.07-.53.08-.8,0-.19-.01-.38-.02-.58Z",
|
|
136
|
+
fill: "url(#logo-light-gradient-4)"
|
|
137
|
+
})
|
|
120
138
|
})]
|
|
121
139
|
})]
|
|
122
140
|
});
|
|
@@ -215,12 +215,6 @@ declare const Overridable: {
|
|
|
215
215
|
Root: symbol;
|
|
216
216
|
ToggleKnob: symbol;
|
|
217
217
|
};
|
|
218
|
-
Tree: {
|
|
219
|
-
NodeContentWrapper: symbol;
|
|
220
|
-
IconWrapper: symbol;
|
|
221
|
-
PlusMinusButton: symbol;
|
|
222
|
-
Spinner: symbol;
|
|
223
|
-
};
|
|
224
218
|
UserAvatar: {
|
|
225
219
|
Root: symbol;
|
|
226
220
|
AvatarFallback: symbol;
|
|
@@ -223,12 +223,6 @@ var Overridable = {
|
|
|
223
223
|
Root: Symbol('Toggle.Root'),
|
|
224
224
|
ToggleKnob: Symbol('Toggle.ToggleKnob')
|
|
225
225
|
},
|
|
226
|
-
Tree: {
|
|
227
|
-
NodeContentWrapper: Symbol('Tree.NodeContentWrapper'),
|
|
228
|
-
IconWrapper: Symbol('Tree.IconWrapper'),
|
|
229
|
-
PlusMinusButton: Symbol('Tree.PlusMinusButton'),
|
|
230
|
-
Spinner: Symbol('Tree.Spinner')
|
|
231
|
-
},
|
|
232
226
|
UserAvatar: {
|
|
233
227
|
Root: Symbol('UserAvatar.Root'),
|
|
234
228
|
AvatarFallback: Symbol('UserAvatar.AvatarFallback')
|
|
@@ -182,40 +182,6 @@ var overrides = (_overrides = {}, _defineProperty(_defineProperty(_definePropert
|
|
|
182
182
|
':hover': {
|
|
183
183
|
backgroundColor: palette.secondary[3]
|
|
184
184
|
}
|
|
185
|
-
}), _overridable["default"].Tree.NodeContentWrapper, function (props) {
|
|
186
|
-
return {
|
|
187
|
-
borderRadius: radius[1],
|
|
188
|
-
backgroundColor: props.selected ? palette.secondary[0] : palette.neutral[0],
|
|
189
|
-
color: props.disabled ? palette.neutral[9] : props.selected ? palette.secondary[5] : palette.neutral[11],
|
|
190
|
-
':hover': {
|
|
191
|
-
color: props.selected ? palette.secondary[5] : props.disabled ? '' : palette.secondary[4],
|
|
192
|
-
// I'm only using this to override the hover color of the icon
|
|
193
|
-
// because I don't want to import IconWrapper and cause a circular dependency.
|
|
194
|
-
// The selector should be: [IconWrapper as any]
|
|
195
|
-
'div > div:has(+ div)': {
|
|
196
|
-
color: props.selected ? "".concat(palette.secondary[5], " !important") // don't do this in real life :P
|
|
197
|
-
: props.disabled ? '' : palette.secondary[4]
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
};
|
|
201
|
-
}), _overridable["default"].Tree.IconWrapper, function (props) {
|
|
202
|
-
return {
|
|
203
|
-
color: props.disabled ? palette.neutral[7] : props.selected ? palette.secondary[5] : palette.neutral[8]
|
|
204
|
-
};
|
|
205
|
-
}), _overridable["default"].Tree.PlusMinusButton, function (props) {
|
|
206
|
-
return {
|
|
207
|
-
color: props.disabled ? palette.neutral[7] : props.selected ? palette.neutral[0] : palette.neutral[8],
|
|
208
|
-
backgroundColor: props.spinner ? 'transparent' : props.selected ? palette.secondary[5] : palette.neutral[0],
|
|
209
|
-
':hover': {
|
|
210
|
-
color: props.selected ? palette.neutral[0] : props.disabled ? '' : palette.secondary[4]
|
|
211
|
-
}
|
|
212
|
-
};
|
|
213
|
-
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_overrides, _overridable["default"].Tree.Spinner, function (props) {
|
|
214
|
-
return {
|
|
215
|
-
borderTopColor: props.selected ? palette.secondary[2] : '#706e6b',
|
|
216
|
-
borderRightColor: props.selected ? palette.secondary[2] : '#706e6b',
|
|
217
|
-
borderBottomColor: props.selected ? palette.secondary[2] : '#706e6b'
|
|
218
|
-
};
|
|
219
185
|
}), _overridable["default"].Link.Root, {
|
|
220
186
|
fontWeight: 'inherit'
|
|
221
187
|
}), _overridable["default"].Tabs.Tab, {
|
|
@@ -229,7 +195,7 @@ var overrides = (_overrides = {}, _defineProperty(_defineProperty(_definePropert
|
|
|
229
195
|
return {
|
|
230
196
|
borderRadius: radius[0]
|
|
231
197
|
};
|
|
232
|
-
}), _overridable["default"].ActionBar.IconButton, {
|
|
198
|
+
}), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_overrides, _overridable["default"].ActionBar.IconButton, {
|
|
233
199
|
borderRadius: radius[1]
|
|
234
200
|
}), _overridable["default"].ActionBar.Root, {
|
|
235
201
|
backgroundColor: 'transparent',
|
|
@@ -275,7 +241,7 @@ var overrides = (_overrides = {}, _defineProperty(_defineProperty(_definePropert
|
|
|
275
241
|
};
|
|
276
242
|
}
|
|
277
243
|
return {};
|
|
278
|
-
}),
|
|
244
|
+
}), _overridable["default"].UserAvatar.Root, {
|
|
279
245
|
backgroundColor: palette.neutral[2]
|
|
280
246
|
}), _overridable["default"].UserAvatar.AvatarFallback, {
|
|
281
247
|
backgroundColor: palette.neutral[2],
|
package/dist/es/index.d.ts
CHANGED
|
@@ -66,7 +66,6 @@ import TimePicker from './TimePicker';
|
|
|
66
66
|
import Toast from './Toast';
|
|
67
67
|
import Toggle from './Toggle';
|
|
68
68
|
import TooltipPopover from './TooltipPopover';
|
|
69
|
-
import Tree, { TREE_UTILS, TreeNodeContent, TreeNodeContentWrapper, TreeNodeIconWrapper } from './Tree';
|
|
70
69
|
import UserAvatar from './UserAvatar';
|
|
71
70
|
import View from './View';
|
|
72
71
|
import VisuallyHidden from './VisuallyHidden';
|
|
@@ -118,8 +117,6 @@ export { Paragraph };
|
|
|
118
117
|
export { Row };
|
|
119
118
|
/** @deprecated Use semantic HTML with Tailwind classes */
|
|
120
119
|
export { Text };
|
|
121
|
-
/** @deprecated Use react-aria-components to build your own */
|
|
122
|
-
export { Tree, TREE_UTILS, TreeNodeContent, TreeNodeContentWrapper, TreeNodeIconWrapper };
|
|
123
120
|
/** @deprecated Use @treasure-data/stylekit/tooltip */
|
|
124
121
|
export { TooltipPopover };
|
|
125
122
|
/** @deprecated Use semantic HTML with Tailwind classes */
|
package/dist/es/index.js
CHANGED
|
@@ -376,12 +376,6 @@ Object.defineProperty(exports, "Slider", {
|
|
|
376
376
|
return _Slider["default"];
|
|
377
377
|
}
|
|
378
378
|
});
|
|
379
|
-
Object.defineProperty(exports, "TREE_UTILS", {
|
|
380
|
-
enumerable: true,
|
|
381
|
-
get: function get() {
|
|
382
|
-
return _Tree.TREE_UTILS;
|
|
383
|
-
}
|
|
384
|
-
});
|
|
385
379
|
Object.defineProperty(exports, "Tabs", {
|
|
386
380
|
enumerable: true,
|
|
387
381
|
get: function get() {
|
|
@@ -436,30 +430,6 @@ Object.defineProperty(exports, "TooltipPopover", {
|
|
|
436
430
|
return _TooltipPopover["default"];
|
|
437
431
|
}
|
|
438
432
|
});
|
|
439
|
-
Object.defineProperty(exports, "Tree", {
|
|
440
|
-
enumerable: true,
|
|
441
|
-
get: function get() {
|
|
442
|
-
return _Tree["default"];
|
|
443
|
-
}
|
|
444
|
-
});
|
|
445
|
-
Object.defineProperty(exports, "TreeNodeContent", {
|
|
446
|
-
enumerable: true,
|
|
447
|
-
get: function get() {
|
|
448
|
-
return _Tree.TreeNodeContent;
|
|
449
|
-
}
|
|
450
|
-
});
|
|
451
|
-
Object.defineProperty(exports, "TreeNodeContentWrapper", {
|
|
452
|
-
enumerable: true,
|
|
453
|
-
get: function get() {
|
|
454
|
-
return _Tree.TreeNodeContentWrapper;
|
|
455
|
-
}
|
|
456
|
-
});
|
|
457
|
-
Object.defineProperty(exports, "TreeNodeIconWrapper", {
|
|
458
|
-
enumerable: true,
|
|
459
|
-
get: function get() {
|
|
460
|
-
return _Tree.TreeNodeIconWrapper;
|
|
461
|
-
}
|
|
462
|
-
});
|
|
463
433
|
Object.defineProperty(exports, "UserAvatar", {
|
|
464
434
|
enumerable: true,
|
|
465
435
|
get: function get() {
|
|
@@ -595,7 +565,6 @@ var _TimePicker = _interopRequireDefault(require("./TimePicker"));
|
|
|
595
565
|
var _Toast = _interopRequireDefault(require("./Toast"));
|
|
596
566
|
var _Toggle = _interopRequireDefault(require("./Toggle"));
|
|
597
567
|
var _TooltipPopover = _interopRequireDefault(require("./TooltipPopover"));
|
|
598
|
-
var _Tree = _interopRequireWildcard(require("./Tree"));
|
|
599
568
|
var _UserAvatar = _interopRequireDefault(require("./UserAvatar"));
|
|
600
569
|
var _View = _interopRequireDefault(require("./View"));
|
|
601
570
|
var _VisuallyHidden = _interopRequireDefault(require("./VisuallyHidden"));
|
|
@@ -628,7 +597,6 @@ if (typeof window !== "undefined" && !window.gsC) window.gsC = function () {};
|
|
|
628
597
|
/** @deprecated Use semantic HTML with Tailwind classes */
|
|
629
598
|
// eslint-disable-next-line deprecation/deprecation
|
|
630
599
|
/** @deprecated Use semantic HTML with Tailwind classes */
|
|
631
|
-
/** @deprecated Use react-aria-components to build your own */
|
|
632
600
|
/** @deprecated Use @treasure-data/stylekit/tooltip */
|
|
633
601
|
/** @deprecated Use semantic HTML with Tailwind classes */
|
|
634
602
|
/** @deprecated Stylekit no longer provides charts */
|
package/llms.md
CHANGED
|
@@ -129,7 +129,7 @@ The build system outputs ES modules with TypeScript declarations:
|
|
|
129
129
|
- Uses Yarn v3.2.0 workspaces
|
|
130
130
|
- Conventional commit format required for releases
|
|
131
131
|
- Automated releases via semantic-release
|
|
132
|
-
- Peer dependencies: React & ReactDOM 18.2.0, react-
|
|
132
|
+
- Peer dependencies: React & ReactDOM 18.2.0, react-virtualized
|
|
133
133
|
- When you see a code like FG-123, CON-123, API-123, AI-123, etc, that is a Jira ticket you can get more information on using the Jira tool.
|
|
134
134
|
- When you create a branch for a Jira ticket use the format `ai-fix-<ticket key>`, e.g. ai-fix-FG-123.
|
|
135
135
|
- When you create a new branch do it locally with the git cli.
|