@teamturing/react-kit 2.35.0 → 2.35.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/dist/index.d.ts +2 -0
- package/dist/index.js +3 -2
- package/esm/index.js +1 -0
- package/esm/packages/icons/esm/PillColor.js +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -70,6 +70,8 @@ export { default as Stack } from './core/Stack';
|
|
|
70
70
|
export type { StackProps } from './core/Stack';
|
|
71
71
|
export { default as StyledIcon } from './core/StyledIcon';
|
|
72
72
|
export type { StyledIconProps } from './core/StyledIcon';
|
|
73
|
+
export { default as Switch } from './core/Switch';
|
|
74
|
+
export type { SwitchProps } from './core/Switch';
|
|
73
75
|
export { default as Tab } from './core/Tab';
|
|
74
76
|
export type { TabProps } from './core/Tab';
|
|
75
77
|
export { default as Text } from './core/Text';
|
package/dist/index.js
CHANGED
|
@@ -3511,10 +3511,10 @@ const SvgPillColor = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
3511
3511
|
fill: "none",
|
|
3512
3512
|
viewBox: "0 0 24 24"
|
|
3513
3513
|
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3514
|
-
fill: "#
|
|
3514
|
+
fill: "#C6D8FA",
|
|
3515
3515
|
d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z"
|
|
3516
3516
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3517
|
-
fill: "#
|
|
3517
|
+
fill: "#6D99F1",
|
|
3518
3518
|
d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
|
|
3519
3519
|
}));
|
|
3520
3520
|
|
|
@@ -39767,6 +39767,7 @@ exports.Space = Space;
|
|
|
39767
39767
|
exports.Spinner = Spinner;
|
|
39768
39768
|
exports.Stack = Stack$1;
|
|
39769
39769
|
exports.StyledIcon = StyledIcon;
|
|
39770
|
+
exports.Switch = Switch$1;
|
|
39770
39771
|
exports.Tab = index$1;
|
|
39771
39772
|
exports.Text = Text;
|
|
39772
39773
|
exports.TextInput = TextInput$1;
|
package/esm/index.js
CHANGED
|
@@ -32,6 +32,7 @@ export { default as Space } from './core/Space/index.js';
|
|
|
32
32
|
export { default as Spinner } from './core/Spinner/index.js';
|
|
33
33
|
export { default as Stack } from './core/Stack/index.js';
|
|
34
34
|
export { default as StyledIcon } from './core/StyledIcon/index.js';
|
|
35
|
+
export { default as Switch } from './core/Switch/index.js';
|
|
35
36
|
export { default as Tab } from './core/Tab/index.js';
|
|
36
37
|
export { default as Text } from './core/Text/index.js';
|
|
37
38
|
export { default as Textarea } from './core/Textarea/index.js';
|
|
@@ -8,10 +8,10 @@ const SvgPillColor = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
|
8
8
|
fill: "none",
|
|
9
9
|
viewBox: "0 0 24 24"
|
|
10
10
|
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
-
fill: "#
|
|
11
|
+
fill: "#C6D8FA",
|
|
12
12
|
d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z"
|
|
13
13
|
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
-
fill: "#
|
|
14
|
+
fill: "#6D99F1",
|
|
15
15
|
d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
|
|
16
16
|
}));
|
|
17
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.35.
|
|
3
|
+
"version": "2.35.2",
|
|
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",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@floating-ui/react-dom": "^2.0.2",
|
|
57
57
|
"@primer/behaviors": "^1.3.6",
|
|
58
|
-
"@teamturing/icons": "^1.43.
|
|
58
|
+
"@teamturing/icons": "^1.43.2",
|
|
59
59
|
"@teamturing/token-studio": "^1.9.0",
|
|
60
60
|
"@teamturing/utils": "^1.4.0",
|
|
61
61
|
"framer-motion": "^10.16.4",
|
|
@@ -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": "8a7130853ecdce2c6619bd81f69e54d86904f979"
|
|
70
70
|
}
|