@ctlyst.id/internal-ui 1.0.4-canary.6 → 1.0.4-canary.7
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/breadcrumb/index.d.ts +2 -2
- package/dist/internal-ui.cjs.development.js +6 -6
- package/dist/internal-ui.cjs.development.js.map +1 -1
- package/dist/internal-ui.cjs.production.min.js +1 -1
- package/dist/internal-ui.cjs.production.min.js.map +1 -1
- package/dist/internal-ui.esm.js +6 -6
- package/dist/internal-ui.esm.js.map +1 -1
- package/package.json +2 -2
- /package/dist/components/breadcrumb/components/{BreadCrumb.d.ts → bread-crumb.d.ts} +0 -0
package/dist/internal-ui.esm.js
CHANGED
@@ -29,7 +29,7 @@ const BreadCrumb = props => {
|
|
29
29
|
disableHome,
|
30
30
|
spacing = 2
|
31
31
|
} = props;
|
32
|
-
const [
|
32
|
+
const [neutral6, dark5] = useToken('colors', ['neutral.600', 'dark.500']);
|
33
33
|
return /*#__PURE__*/createElement(Box, {
|
34
34
|
"data-test-id": "CT_component_breadcrumb_breadcrumb",
|
35
35
|
className: className,
|
@@ -42,16 +42,16 @@ const BreadCrumb = props => {
|
|
42
42
|
alignItems: "center"
|
43
43
|
}, /*#__PURE__*/createElement(Text, {
|
44
44
|
pr: 2,
|
45
|
-
fontWeight:
|
46
|
-
textStyle: "heading.
|
45
|
+
fontWeight: 600,
|
46
|
+
textStyle: "heading.4",
|
47
47
|
color: useColorModeValue('neutral.700', 'white')
|
48
48
|
}, title), /*#__PURE__*/createElement(Box, {
|
49
49
|
h: "22px",
|
50
50
|
borderLeft: "1px solid",
|
51
|
-
borderColor: useColorModeValue(
|
51
|
+
borderColor: useColorModeValue(neutral6, 'white')
|
52
52
|
}), /*#__PURE__*/createElement(Breadcrumb, {
|
53
53
|
separator: /*#__PURE__*/createElement(FiChevronsRight, {
|
54
|
-
color: useColorModeValue(
|
54
|
+
color: useColorModeValue(neutral6, dark5),
|
55
55
|
size: 14
|
56
56
|
}),
|
57
57
|
pl: 2.5,
|
@@ -101,7 +101,7 @@ const BreadCrumb = props => {
|
|
101
101
|
cursor: 'default'
|
102
102
|
}
|
103
103
|
}, /*#__PURE__*/createElement(Text, {
|
104
|
-
color: useColorModeValue(
|
104
|
+
color: useColorModeValue(neutral6, 'white'),
|
105
105
|
fontSize: "text.sm",
|
106
106
|
fontWeight: 400
|
107
107
|
}, title))))), children && /*#__PURE__*/createElement(Box, null, children));
|