@teamturing/react-kit 2.43.0 → 2.43.1
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/index.js
CHANGED
|
@@ -39183,7 +39183,8 @@ const colorStopList = {
|
|
|
39183
39183
|
colorStopListVioletPink: '#8E6CF0, #CF75F3',
|
|
39184
39184
|
colorStopListBlackGray: '#0F0E0F, #595959',
|
|
39185
39185
|
colorStopListWhite: '#FFFFFF, #FFFFFF00',
|
|
39186
|
-
colorStopListBlack: '#000000, #00000000'
|
|
39186
|
+
colorStopListBlack: '#000000, #00000000',
|
|
39187
|
+
colorStopListPinkVioletBlue: '#FF6DEB, #8E6EF1, #5F9EFF'
|
|
39187
39188
|
};
|
|
39188
39189
|
|
|
39189
39190
|
const direction = {
|
|
@@ -39196,12 +39197,16 @@ const direction = {
|
|
|
39196
39197
|
|
|
39197
39198
|
const generateGradientTokenValue = (direction$1, colorStopList$1) => `${direction[direction$1]}, ${colorStopList[colorStopList$1]}`;
|
|
39198
39199
|
const textGradient = {
|
|
39199
|
-
'text/accent': generateGradientTokenValue('directionToRightBottom', 'colorStopListVioletPink')
|
|
39200
|
+
'text/accent': generateGradientTokenValue('directionToRightBottom', 'colorStopListVioletPink'),
|
|
39201
|
+
'text/accent/pinkblue': generateGradientTokenValue('directionToRightBottom', 'colorStopListPinkVioletBlue')
|
|
39200
39202
|
};
|
|
39201
39203
|
const bgGradient = {
|
|
39202
39204
|
'bg/accent/violet': generateGradientTokenValue('directionToRightBottom', 'colorStopListVioletPink'),
|
|
39203
39205
|
'bg/accent/neutral': generateGradientTokenValue('directionToRightBottom', 'colorStopListBlackGray')
|
|
39204
39206
|
};
|
|
39207
|
+
const iconGradient = {
|
|
39208
|
+
'icon/accent/pinkblue': generateGradientTokenValue('directionToRightBottom', 'colorStopListPinkVioletBlue')
|
|
39209
|
+
};
|
|
39205
39210
|
const borderGradient = {
|
|
39206
39211
|
'border/accent/violet': generateGradientTokenValue('directionToRightBottom', 'colorStopListVioletPink')
|
|
39207
39212
|
};
|
|
@@ -39221,6 +39226,7 @@ const overlayGradient = {
|
|
|
39221
39226
|
};
|
|
39222
39227
|
const gradient = {
|
|
39223
39228
|
...textGradient,
|
|
39229
|
+
...iconGradient,
|
|
39224
39230
|
...bgGradient,
|
|
39225
39231
|
...borderGradient,
|
|
39226
39232
|
...overlayGradient
|
package/dist/theme/index.d.ts
CHANGED
|
@@ -295,7 +295,9 @@ declare const theme: {
|
|
|
295
295
|
readonly 'border/accent/violet': string;
|
|
296
296
|
readonly 'bg/accent/violet': string;
|
|
297
297
|
readonly 'bg/accent/neutral': string;
|
|
298
|
+
readonly 'icon/accent/pinkblue': string;
|
|
298
299
|
readonly 'text/accent': string;
|
|
300
|
+
readonly 'text/accent/pinkblue': string;
|
|
299
301
|
};
|
|
300
302
|
shadows: {
|
|
301
303
|
'shadow/overlay': string;
|
|
@@ -2,7 +2,8 @@ const colorStopList = {
|
|
|
2
2
|
colorStopListVioletPink: '#8E6CF0, #CF75F3',
|
|
3
3
|
colorStopListBlackGray: '#0F0E0F, #595959',
|
|
4
4
|
colorStopListWhite: '#FFFFFF, #FFFFFF00',
|
|
5
|
-
colorStopListBlack: '#000000, #00000000'
|
|
5
|
+
colorStopListBlack: '#000000, #00000000',
|
|
6
|
+
colorStopListPinkVioletBlue: '#FF6DEB, #8E6EF1, #5F9EFF'
|
|
6
7
|
};
|
|
7
8
|
|
|
8
9
|
export { colorStopList as default };
|
|
@@ -3,12 +3,16 @@ import direction from '../../foundation/gradient/direction/index.js';
|
|
|
3
3
|
|
|
4
4
|
const generateGradientTokenValue = (direction$1, colorStopList$1) => `${direction[direction$1]}, ${colorStopList[colorStopList$1]}`;
|
|
5
5
|
const textGradient = {
|
|
6
|
-
'text/accent': generateGradientTokenValue('directionToRightBottom', 'colorStopListVioletPink')
|
|
6
|
+
'text/accent': generateGradientTokenValue('directionToRightBottom', 'colorStopListVioletPink'),
|
|
7
|
+
'text/accent/pinkblue': generateGradientTokenValue('directionToRightBottom', 'colorStopListPinkVioletBlue')
|
|
7
8
|
};
|
|
8
9
|
const bgGradient = {
|
|
9
10
|
'bg/accent/violet': generateGradientTokenValue('directionToRightBottom', 'colorStopListVioletPink'),
|
|
10
11
|
'bg/accent/neutral': generateGradientTokenValue('directionToRightBottom', 'colorStopListBlackGray')
|
|
11
12
|
};
|
|
13
|
+
const iconGradient = {
|
|
14
|
+
'icon/accent/pinkblue': generateGradientTokenValue('directionToRightBottom', 'colorStopListPinkVioletBlue')
|
|
15
|
+
};
|
|
12
16
|
const borderGradient = {
|
|
13
17
|
'border/accent/violet': generateGradientTokenValue('directionToRightBottom', 'colorStopListVioletPink')
|
|
14
18
|
};
|
|
@@ -28,9 +32,10 @@ const overlayGradient = {
|
|
|
28
32
|
};
|
|
29
33
|
const gradient = {
|
|
30
34
|
...textGradient,
|
|
35
|
+
...iconGradient,
|
|
31
36
|
...bgGradient,
|
|
32
37
|
...borderGradient,
|
|
33
38
|
...overlayGradient
|
|
34
39
|
};
|
|
35
40
|
|
|
36
|
-
export { bgGradient, borderGradient, gradient as default, overlayGradient, textGradient };
|
|
41
|
+
export { bgGradient, borderGradient, gradient as default, iconGradient, overlayGradient, textGradient };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.43.
|
|
3
|
+
"version": "2.43.1",
|
|
4
4
|
"description": "React components, hooks for create teamturing web application",
|
|
5
5
|
"author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
|
|
6
6
|
"homepage": "https://github.com/weareteamturing/bombe#readme",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@floating-ui/react-dom": "^2.0.2",
|
|
57
57
|
"@primer/behaviors": "^1.3.6",
|
|
58
58
|
"@teamturing/icons": "^1.49.0",
|
|
59
|
-
"@teamturing/token-studio": "^1.
|
|
59
|
+
"@teamturing/token-studio": "^1.11.0",
|
|
60
60
|
"@teamturing/utils": "^1.4.0",
|
|
61
61
|
"framer-motion": "^10.16.4",
|
|
62
62
|
"lodash.debounce": "^4.0.8",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"react-textarea-autosize": "^8.5.3",
|
|
67
67
|
"styled-system": "^5.1.5"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "7a5a4ccc3b698c7c5f4e2fe6f8cb209cdf38e245"
|
|
70
70
|
}
|