@cashub/ui 0.49.0-beta.4 → 0.49.0-beta.6
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/Tab/TabList.js +12 -5
- package/Tab/TabTab.js +21 -7
- package/assets/images/bg-main-dark.png +0 -0
- package/assets/images/bg-main-light.png +0 -0
- package/assets/images/bg-main-midnight.png +0 -0
- package/assets/images/bg-main-vivid.png +0 -0
- package/assets/images/bg-main-white.png +0 -0
- package/assets/images/bg-main.png +0 -0
- package/icon/assets/info.jsx +17 -0
- package/icon/assets/redirect-portal.jsx +17 -0
- package/icon/registry.js +5 -1
- package/iconbox/IconBox.js +122 -3
- package/iconbox/subComponent/IconBoxImage.js +1 -1
- package/layout/Footer.js +1 -1
- package/layout/Sidebar.jsx +10 -1
- package/layout/bgMainRegistry.js +9 -1
- package/package.json +1 -1
- package/styles/theme/dark.theme.js +4 -1
- package/styles/theme/ember.theme.js +2 -0
- package/styles/theme/light.theme.js +3 -1
- package/styles/theme/midnight.theme.js +2 -0
- package/styles/theme/white.theme.js +3 -2
- package/table/Table.js +18 -17
- package/cashub-ui-0.49.0-beta.1.tgz +0 -0
package/Tab/TabList.js
CHANGED
|
@@ -15,6 +15,7 @@ const TabList = _ref => {
|
|
|
15
15
|
let {
|
|
16
16
|
children,
|
|
17
17
|
wrap = true,
|
|
18
|
+
noBorder,
|
|
18
19
|
...props
|
|
19
20
|
} = _ref;
|
|
20
21
|
const wrapperRef = (0, _react.useRef)(null);
|
|
@@ -104,6 +105,7 @@ const TabList = _ref => {
|
|
|
104
105
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(Container, {
|
|
105
106
|
role: "tablist",
|
|
106
107
|
$wrap: wrap,
|
|
108
|
+
$noBorder: noBorder,
|
|
107
109
|
...props,
|
|
108
110
|
children: wrap ? children : /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
|
|
109
111
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(TabWrapper, {
|
|
@@ -131,20 +133,25 @@ const TabList = _ref => {
|
|
|
131
133
|
};
|
|
132
134
|
const Container = _styledComponents.default.div`
|
|
133
135
|
position: relative;
|
|
134
|
-
|
|
136
|
+
${_ref2 => {
|
|
137
|
+
let {
|
|
138
|
+
$noBorder
|
|
139
|
+
} = _ref2;
|
|
140
|
+
return !$noBorder && 'border-bottom: var(--border-width) solid var(--border-color);';
|
|
141
|
+
}}
|
|
135
142
|
margin-bottom: var(--spacing);
|
|
136
143
|
|
|
137
|
-
${
|
|
144
|
+
${_ref3 => {
|
|
138
145
|
let {
|
|
139
146
|
$wrap
|
|
140
|
-
} =
|
|
147
|
+
} = _ref3;
|
|
141
148
|
return !$wrap && 'white-space: nowrap;';
|
|
142
149
|
}}
|
|
143
150
|
|
|
144
|
-
${
|
|
151
|
+
${_ref4 => {
|
|
145
152
|
let {
|
|
146
153
|
noMargin
|
|
147
|
-
} =
|
|
154
|
+
} = _ref4;
|
|
148
155
|
return noMargin && 'margin-bottom: 0;';
|
|
149
156
|
}}
|
|
150
157
|
`;
|
package/Tab/TabTab.js
CHANGED
|
@@ -26,6 +26,7 @@ const TabTab = _ref => {
|
|
|
26
26
|
} = (0, _react.useContext)(_TabContext.default);
|
|
27
27
|
const [isModify, setIsModify] = (0, _react.useState)(false);
|
|
28
28
|
const [currentTitle, setCurrentTitle] = (0, _react.useState)(title);
|
|
29
|
+
const active = selected === name;
|
|
29
30
|
const handleClick = (0, _react.useCallback)(() => {
|
|
30
31
|
if (selected !== name) {
|
|
31
32
|
onChange(name);
|
|
@@ -63,35 +64,47 @@ const TabTab = _ref => {
|
|
|
63
64
|
role: "tab",
|
|
64
65
|
onClick: handleClick,
|
|
65
66
|
onDoubleClick: handleDoubleClick,
|
|
66
|
-
active:
|
|
67
|
+
active: active,
|
|
67
68
|
...props,
|
|
68
|
-
children:
|
|
69
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(TabLabel, {
|
|
70
|
+
active: active,
|
|
71
|
+
children: children
|
|
72
|
+
})
|
|
69
73
|
});
|
|
70
74
|
};
|
|
71
75
|
const Tab = _styledComponents.default.div`
|
|
72
76
|
background: transparent;
|
|
73
77
|
padding: 10px var(--spacing-s);
|
|
74
78
|
border: none;
|
|
75
|
-
border-bottom: 4px solid transparent;
|
|
76
79
|
`;
|
|
77
80
|
const ButtonTab = (0, _styledComponents.default)(Tab).attrs({
|
|
78
81
|
as: 'button'
|
|
79
82
|
})`
|
|
80
83
|
color: var(--font-on-mute);
|
|
81
|
-
transition: color 0.3s
|
|
84
|
+
transition: color 0.3s;
|
|
82
85
|
cursor: pointer;
|
|
83
|
-
|
|
84
86
|
&:hover {
|
|
85
87
|
color: var(--font-on-background);
|
|
86
88
|
}
|
|
87
|
-
|
|
88
89
|
${_ref2 => {
|
|
89
90
|
let {
|
|
90
91
|
active
|
|
91
92
|
} = _ref2;
|
|
93
|
+
return active && `
|
|
94
|
+
color: var(--color-primary);
|
|
95
|
+
`;
|
|
96
|
+
}}
|
|
97
|
+
`;
|
|
98
|
+
const TabLabel = _styledComponents.default.span`
|
|
99
|
+
display: inline-block;
|
|
100
|
+
padding-bottom: 10px;
|
|
101
|
+
border-bottom: 4px solid transparent;
|
|
102
|
+
${_ref3 => {
|
|
103
|
+
let {
|
|
104
|
+
active
|
|
105
|
+
} = _ref3;
|
|
92
106
|
return active && `
|
|
93
107
|
border-color: var(--color-primary);
|
|
94
|
-
color: var(--font-on-background);
|
|
95
108
|
`;
|
|
96
109
|
}}
|
|
97
110
|
`;
|
|
@@ -101,5 +114,6 @@ const InputTab = (0, _styledComponents.default)(Tab).attrs({
|
|
|
101
114
|
color: var(--font-on-background);
|
|
102
115
|
border-color: var(--color-primary);
|
|
103
116
|
outline: none;
|
|
117
|
+
border-bottom: 4px solid var(--color-primary);
|
|
104
118
|
`;
|
|
105
119
|
var _default = exports.default = TabTab;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
const InfoIcon = (props) => (
|
|
2
|
+
<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg' {...props}>
|
|
3
|
+
<g clipPath='url(#clip0_249_12353)'>
|
|
4
|
+
<path
|
|
5
|
+
d='M9 18C4.02975 18 0 13.9703 0 9C0 4.02975 4.02975 0 9 0C13.9703 0 18 4.02975 18 9C18 13.9703 13.9703 18 9 18ZM9 16.5C13.1422 16.5 16.5 13.1422 16.5 9C16.5 4.85775 13.1422 1.5 9 1.5C4.85775 1.5 1.5 4.85775 1.5 9C1.5 13.1422 4.85775 16.5 9 16.5ZM8.25 8.25C8.25 8.05109 8.32902 7.86032 8.46967 7.71967C8.61032 7.57902 8.80109 7.5 9 7.5C9.19891 7.5 9.38968 7.57902 9.53033 7.71967C9.67098 7.86032 9.75 8.05109 9.75 8.25V13.5C9.75 13.6989 9.67098 13.8897 9.53033 14.0303C9.38968 14.171 9.19891 14.25 9 14.25C8.80109 14.25 8.61032 14.171 8.46967 14.0303C8.32902 13.8897 8.25 13.6989 8.25 13.5V8.25ZM8.925 5.85C8.64652 5.85 8.37945 5.73938 8.18254 5.54246C7.98562 5.34555 7.875 5.07848 7.875 4.8C7.875 4.52152 7.98562 4.25445 8.18254 4.05754C8.37945 3.86062 8.64652 3.75 8.925 3.75C9.20348 3.75 9.47055 3.86062 9.66746 4.05754C9.86438 4.25445 9.975 4.52152 9.975 4.8C9.975 5.07848 9.86438 5.34555 9.66746 5.54246C9.47055 5.73938 9.20348 5.85 8.925 5.85Z'
|
|
6
|
+
fill='currentColor'
|
|
7
|
+
/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<clipPath id='clip0_249_12353'>
|
|
11
|
+
<rect width='18' height='18' fill='currentColor' />
|
|
12
|
+
</clipPath>
|
|
13
|
+
</defs>
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
|
|
17
|
+
export default InfoIcon;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
const RedirectPortalIcon = () => (
|
|
2
|
+
<svg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'>
|
|
3
|
+
<g clipPath='url(#clip0_249_12351)'>
|
|
4
|
+
<path
|
|
5
|
+
d='M7.85672 2.14244V7.85672H2.14244V2.14244H7.85672ZM7.85672 0.713867H2.14244C1.35672 0.713867 0.713867 1.35672 0.713867 2.14244V7.85672C0.713867 8.64244 1.35672 9.2853 2.14244 9.2853H7.85672C8.64244 9.2853 9.2853 8.64244 9.2853 7.85672V2.14244C9.2853 1.35672 8.64244 0.713867 7.85672 0.713867ZM7.85672 12.1424V17.8567H2.14244V12.1424H7.85672ZM7.85672 10.7139H2.14244C1.35672 10.7139 0.713867 11.3567 0.713867 12.1424V17.8567C0.713867 18.6424 1.35672 19.2853 2.14244 19.2853H7.85672C8.64244 19.2853 9.2853 18.6424 9.2853 17.8567V12.1424C9.2853 11.3567 8.64244 10.7139 7.85672 10.7139ZM17.8567 2.14244V7.85672H12.1424V2.14244H17.8567ZM17.8567 0.713867H12.1424C11.3567 0.713867 10.7139 1.35672 10.7139 2.14244V7.85672C10.7139 8.64244 11.3567 9.2853 12.1424 9.2853H17.8567C18.6424 9.2853 19.2853 8.64244 19.2853 7.85672V2.14244C19.2853 1.35672 18.6424 0.713867 17.8567 0.713867ZM17.8567 12.1424V17.8567H12.1424V12.1424H17.8567ZM17.8567 10.7139H12.1424C11.3567 10.7139 10.7139 11.3567 10.7139 12.1424V17.8567C10.7139 18.6424 11.3567 19.2853 12.1424 19.2853H17.8567C18.6424 19.2853 19.2853 18.6424 19.2853 17.8567V12.1424C19.2853 11.3567 18.6424 10.7139 17.8567 10.7139Z'
|
|
6
|
+
fill='currentColor'
|
|
7
|
+
/>
|
|
8
|
+
</g>
|
|
9
|
+
<defs>
|
|
10
|
+
<clipPath id='clip0_249_12351'>
|
|
11
|
+
<rect width='20' height='20' fill='currentColor' />
|
|
12
|
+
</clipPath>
|
|
13
|
+
</defs>
|
|
14
|
+
</svg>
|
|
15
|
+
);
|
|
16
|
+
|
|
17
|
+
export default RedirectPortalIcon;
|
package/icon/registry.js
CHANGED
|
@@ -42,6 +42,8 @@ var _key = _interopRequireDefault(require("./assets/key"));
|
|
|
42
42
|
var _task = _interopRequireDefault(require("./assets/task"));
|
|
43
43
|
var _priceChange = _interopRequireDefault(require("./assets/price-change"));
|
|
44
44
|
var _productManagement = _interopRequireDefault(require("./assets/product-management"));
|
|
45
|
+
var _redirectPortal = _interopRequireDefault(require("./assets/redirect-portal"));
|
|
46
|
+
var _info = _interopRequireDefault(require("./assets/info"));
|
|
45
47
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
46
48
|
const iconOverrides = {
|
|
47
49
|
merchant: _merchant.default,
|
|
@@ -81,6 +83,8 @@ const iconOverrides = {
|
|
|
81
83
|
key: _key.default,
|
|
82
84
|
task: _task.default,
|
|
83
85
|
'price-change': _priceChange.default,
|
|
84
|
-
'product-management': _productManagement.default
|
|
86
|
+
'product-management': _productManagement.default,
|
|
87
|
+
'redirect-portal': _redirectPortal.default,
|
|
88
|
+
info: _info.default
|
|
85
89
|
};
|
|
86
90
|
var _default = exports.default = iconOverrides;
|
package/iconbox/IconBox.js
CHANGED
|
@@ -4,13 +4,17 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.default = void 0;
|
|
7
|
-
var
|
|
7
|
+
var _react = require("react");
|
|
8
|
+
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
8
9
|
var _IconBoxFigure = _interopRequireDefault(require("./subComponent/IconBoxFigure"));
|
|
9
10
|
var _IconBoxImage = _interopRequireDefault(require("./subComponent/IconBoxImage"));
|
|
10
11
|
var _bgChartTriangle = _interopRequireDefault(require("../assets/images/bg-chart-triangle.png"));
|
|
11
12
|
var _bgImageRegistry = _interopRequireDefault(require("./bgImageRegistry"));
|
|
12
13
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
13
14
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
15
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
16
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
17
|
+
const withAlpha = (hex, alphaHex) => hex ? `${hex}${alphaHex}` : undefined;
|
|
14
18
|
const IconBox = _ref => {
|
|
15
19
|
let {
|
|
16
20
|
icon,
|
|
@@ -21,10 +25,47 @@ const IconBox = _ref => {
|
|
|
21
25
|
sizeXS = true,
|
|
22
26
|
sizeS = false,
|
|
23
27
|
size,
|
|
28
|
+
iconSize,
|
|
24
29
|
bgImageKey,
|
|
25
30
|
gradientFrom,
|
|
26
|
-
gradientTo
|
|
31
|
+
gradientTo,
|
|
32
|
+
colors
|
|
27
33
|
} = _ref;
|
|
34
|
+
const theme = (0, _react.useContext)(_styledComponents.ThemeContext);
|
|
35
|
+
const mode = colors ? theme?.cardMode || 'accent' : 'image';
|
|
36
|
+
if (mode === 'accent' || mode === 'gradient') {
|
|
37
|
+
const accent = colors.accent;
|
|
38
|
+
const gradientEnd = colors.gradient || accent;
|
|
39
|
+
const borderColor = colors.border || accent;
|
|
40
|
+
const circleSize = size || 60;
|
|
41
|
+
const innerIconSize = iconSize || Math.round(circleSize * 0.5);
|
|
42
|
+
const iconColorFinal = mode === 'gradient' ? '#FFFFFF' : accent;
|
|
43
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(AccentWrapper, {
|
|
44
|
+
mode: mode,
|
|
45
|
+
accent: accent,
|
|
46
|
+
gradientEnd: gradientEnd,
|
|
47
|
+
borderColor: borderColor,
|
|
48
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(IconCircle, {
|
|
49
|
+
mode: mode,
|
|
50
|
+
accent: accent,
|
|
51
|
+
circleSize: circleSize,
|
|
52
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_IconBoxImage.default, {
|
|
53
|
+
size: innerIconSize,
|
|
54
|
+
iconKey: iconKey,
|
|
55
|
+
iconColor: iconColorFinal,
|
|
56
|
+
src: icon,
|
|
57
|
+
alt: `${title}'s icon`
|
|
58
|
+
})
|
|
59
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(TextColumn, {
|
|
60
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(IconBoxTitle, {
|
|
61
|
+
children: title
|
|
62
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(IconBoxBody, {
|
|
63
|
+
accentColor: accent,
|
|
64
|
+
children: children
|
|
65
|
+
})]
|
|
66
|
+
})]
|
|
67
|
+
});
|
|
68
|
+
}
|
|
28
69
|
const bgImage = bgImageKey && _bgImageRegistry.default[bgImageKey];
|
|
29
70
|
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(Wrapper, {
|
|
30
71
|
bgImage: bgImage,
|
|
@@ -53,6 +94,9 @@ const IconBox = _ref => {
|
|
|
53
94
|
})]
|
|
54
95
|
});
|
|
55
96
|
};
|
|
97
|
+
|
|
98
|
+
/* ---------- image 模式 ---------- */
|
|
99
|
+
|
|
56
100
|
const Wrapper = _styledComponents.default.div`
|
|
57
101
|
display: flex;
|
|
58
102
|
flex-direction: column;
|
|
@@ -90,14 +134,89 @@ const IconBoxHead = _styledComponents.default.div`
|
|
|
90
134
|
align-items: center;
|
|
91
135
|
margin-bottom: var(--spacing);
|
|
92
136
|
`;
|
|
137
|
+
|
|
138
|
+
/* ---------- accent / gradient 模式 ---------- */
|
|
139
|
+
|
|
140
|
+
const AccentWrapper = _styledComponents.default.div`
|
|
141
|
+
display: flex;
|
|
142
|
+
align-items: center;
|
|
143
|
+
padding: var(--spacing);
|
|
144
|
+
border-radius: var(--border-radius);
|
|
145
|
+
color: var(--font-on-background);
|
|
146
|
+
${_ref3 => {
|
|
147
|
+
let {
|
|
148
|
+
mode,
|
|
149
|
+
accent,
|
|
150
|
+
gradientEnd,
|
|
151
|
+
borderColor
|
|
152
|
+
} = _ref3;
|
|
153
|
+
if (mode === 'gradient') {
|
|
154
|
+
return `
|
|
155
|
+
background: linear-gradient(45deg, var(--color-background2), ${gradientEnd});
|
|
156
|
+
border: 2px solid ${borderColor};
|
|
157
|
+
`;
|
|
158
|
+
}
|
|
159
|
+
return `
|
|
160
|
+
background: ${withAlpha(accent, '0D')};
|
|
161
|
+
border: 2px solid ${withAlpha(accent, '1A')};
|
|
162
|
+
`;
|
|
163
|
+
}}
|
|
164
|
+
`;
|
|
165
|
+
const IconCircle = _styledComponents.default.span`
|
|
166
|
+
display: inline-flex;
|
|
167
|
+
align-items: center;
|
|
168
|
+
justify-content: center;
|
|
169
|
+
border-radius: 50%;
|
|
170
|
+
width: ${_ref4 => {
|
|
171
|
+
let {
|
|
172
|
+
circleSize
|
|
173
|
+
} = _ref4;
|
|
174
|
+
return `${circleSize}px`;
|
|
175
|
+
}};
|
|
176
|
+
height: ${_ref5 => {
|
|
177
|
+
let {
|
|
178
|
+
circleSize
|
|
179
|
+
} = _ref5;
|
|
180
|
+
return `${circleSize}px`;
|
|
181
|
+
}};
|
|
182
|
+
flex-shrink: 0;
|
|
183
|
+
margin-right: var(--spacing-s);
|
|
184
|
+
background: ${_ref6 => {
|
|
185
|
+
let {
|
|
186
|
+
mode,
|
|
187
|
+
accent
|
|
188
|
+
} = _ref6;
|
|
189
|
+
return mode === 'gradient' ? 'rgba(255, 255, 255, 0.2)' : withAlpha(accent, '14');
|
|
190
|
+
}};
|
|
191
|
+
`;
|
|
192
|
+
const TextColumn = _styledComponents.default.div`
|
|
193
|
+
display: flex;
|
|
194
|
+
flex-direction: column;
|
|
195
|
+
`;
|
|
196
|
+
|
|
197
|
+
/* ---------- 共用 ---------- */
|
|
198
|
+
|
|
93
199
|
const IconBoxTitle = _styledComponents.default.div`
|
|
94
200
|
font-size: var(--font-h2);
|
|
95
201
|
font-weight: bold;
|
|
202
|
+
line-height: 1.4;
|
|
96
203
|
word-break: break-all;
|
|
97
204
|
`;
|
|
98
205
|
const IconBoxBody = _styledComponents.default.div`
|
|
99
206
|
font-size: var(--font-h1);
|
|
100
207
|
font-weight: bold;
|
|
101
|
-
|
|
208
|
+
line-height: 1.3;
|
|
209
|
+
text-align: ${_ref7 => {
|
|
210
|
+
let {
|
|
211
|
+
accentColor
|
|
212
|
+
} = _ref7;
|
|
213
|
+
return accentColor ? 'left' : 'center';
|
|
214
|
+
}};
|
|
215
|
+
color: ${_ref8 => {
|
|
216
|
+
let {
|
|
217
|
+
accentColor
|
|
218
|
+
} = _ref8;
|
|
219
|
+
return accentColor || 'inherit';
|
|
220
|
+
}};
|
|
102
221
|
`;
|
|
103
222
|
var _default = exports.default = IconBox;
|
|
@@ -69,7 +69,7 @@ const IconBoxImage = _ref6 => {
|
|
|
69
69
|
...rest
|
|
70
70
|
} = _ref6;
|
|
71
71
|
const theme = (0, _react.useContext)(_styledComponents.ThemeContext);
|
|
72
|
-
const override = theme?.
|
|
72
|
+
const override = theme?.useModernCardIcons && iconKey && _registry.default[iconKey];
|
|
73
73
|
const IconComponent = override || icon;
|
|
74
74
|
const isComponent = typeof IconComponent === 'function';
|
|
75
75
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(Wrapper, {
|
package/layout/Footer.js
CHANGED
|
@@ -12,7 +12,7 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
|
|
|
12
12
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
13
13
|
const Footer = _styledComponents.default.footer`
|
|
14
14
|
transition: 0.3s;
|
|
15
|
-
border-top:
|
|
15
|
+
border-top: none;
|
|
16
16
|
color: var(--font-on-mute);
|
|
17
17
|
height: 64px;
|
|
18
18
|
line-height: 64px;
|
package/layout/Sidebar.jsx
CHANGED
|
@@ -203,6 +203,8 @@ const MenuItem = styled.li`
|
|
|
203
203
|
props.active === true &&
|
|
204
204
|
css`
|
|
205
205
|
background: var(--color-active-sidebar);
|
|
206
|
+
border-top-right-radius: 10px;
|
|
207
|
+
border-bottom-right-radius: 10px;
|
|
206
208
|
`};
|
|
207
209
|
`;
|
|
208
210
|
const MenuItemLink = styled(Link)`
|
|
@@ -244,12 +246,19 @@ const SubMenuItem = styled.li`
|
|
|
244
246
|
padding: 0 calc(var(--spacing) * 2 + 1.5rem);
|
|
245
247
|
padding-left: ${({ $level }) =>
|
|
246
248
|
`calc(var(--spacing) * 2 + 1.5rem + ${$level} * var(--spacing))`};
|
|
247
|
-
height: 48px;
|
|
249
|
+
min-height: 48px;
|
|
250
|
+
padding-top: 0.5rem;
|
|
251
|
+
padding-bottom: 0.5rem;
|
|
248
252
|
${({ active }) =>
|
|
249
253
|
active === true &&
|
|
250
254
|
css`
|
|
251
255
|
background: var(--color-active-sidebar);
|
|
256
|
+
border-top-right-radius: 10px;
|
|
257
|
+
border-bottom-right-radius: 10px;
|
|
252
258
|
`};
|
|
259
|
+
span {
|
|
260
|
+
line-height: 1.4;
|
|
261
|
+
}
|
|
253
262
|
}
|
|
254
263
|
`;
|
|
255
264
|
const EmptyIcon = styled.span`
|
package/layout/bgMainRegistry.js
CHANGED
|
@@ -6,9 +6,17 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _bgMain = _interopRequireDefault(require("../assets/images/bg-main.png"));
|
|
8
8
|
var _bgMainVivid = _interopRequireDefault(require("../assets/images/bg-main-vivid.png"));
|
|
9
|
+
var _bgMainDark = _interopRequireDefault(require("../assets/images/bg-main-dark.png"));
|
|
10
|
+
var _bgMainLight = _interopRequireDefault(require("../assets/images/bg-main-light.png"));
|
|
11
|
+
var _bgMainWhite = _interopRequireDefault(require("../assets/images/bg-main-white.png"));
|
|
12
|
+
var _bgMainMidnight = _interopRequireDefault(require("../assets/images/bg-main-midnight.png"));
|
|
9
13
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
14
|
const bgMainRegistry = {
|
|
11
15
|
default: _bgMain.default,
|
|
12
|
-
vivid: _bgMainVivid.default
|
|
16
|
+
vivid: _bgMainVivid.default,
|
|
17
|
+
dark: _bgMainDark.default,
|
|
18
|
+
light: _bgMainLight.default,
|
|
19
|
+
white: _bgMainWhite.default,
|
|
20
|
+
midnight: _bgMainMidnight.default
|
|
13
21
|
};
|
|
14
22
|
var _default = exports.default = bgMainRegistry;
|
package/package.json
CHANGED
|
@@ -22,8 +22,11 @@ const colorStyle = {
|
|
|
22
22
|
bgColor3: '#2d2a5d',
|
|
23
23
|
bgColor4: '#222143',
|
|
24
24
|
backdropBg: 'rgba(0, 0, 0, 0.75)',
|
|
25
|
+
cardMode: 'gradient',
|
|
26
|
+
bgMainKey: 'dark',
|
|
27
|
+
useModernCardIcons: true,
|
|
25
28
|
useLightBrand: true,
|
|
26
|
-
hideMainDecoration:
|
|
29
|
+
hideMainDecoration: false
|
|
27
30
|
};
|
|
28
31
|
|
|
29
32
|
// Common font style
|
|
@@ -21,7 +21,9 @@ const colorStyle = {
|
|
|
21
21
|
bgColor4: 'linear-gradient(90deg, #E62B27 0%, #D9211E 45%, #C60E27 100%)',
|
|
22
22
|
backdropBg: 'rgba(0, 0, 0, 0.75)',
|
|
23
23
|
useModernIcons: true,
|
|
24
|
+
useModernCardIcons: true,
|
|
24
25
|
useLightBrand: true,
|
|
26
|
+
cardMode: 'accent',
|
|
25
27
|
bgMainKey: 'vivid',
|
|
26
28
|
colorHoverSidebar: 'rgba(255, 255, 255, 0.15)',
|
|
27
29
|
colorActiveSidebar: 'rgba(255, 255, 255, 0.22)',
|
|
@@ -22,10 +22,11 @@ const colorStyle = {
|
|
|
22
22
|
bgColor3: '#FFFFFF',
|
|
23
23
|
bgColor4: '#F7F7F7',
|
|
24
24
|
backdropBg: 'rgba(0, 0, 0, 0.75)',
|
|
25
|
+
cardMode: 'accent',
|
|
26
|
+
bgMainKey: 'white',
|
|
25
27
|
useModernIcons: false,
|
|
26
28
|
useLightBrand: false,
|
|
27
|
-
hideMainDecoration: false
|
|
28
|
-
bgMainKey: 'default'
|
|
29
|
+
hideMainDecoration: false
|
|
29
30
|
};
|
|
30
31
|
|
|
31
32
|
// Common font style
|
package/table/Table.js
CHANGED
|
@@ -44,7 +44,23 @@ const Table = _ref => {
|
|
|
44
44
|
beforeCreateRow,
|
|
45
45
|
popoverContainer,
|
|
46
46
|
centerFooter = false,
|
|
47
|
-
showPager = true
|
|
47
|
+
showPager = true,
|
|
48
|
+
limitOptions = [{
|
|
49
|
+
id: 10,
|
|
50
|
+
text: '10'
|
|
51
|
+
}, {
|
|
52
|
+
id: 20,
|
|
53
|
+
text: '20'
|
|
54
|
+
}, {
|
|
55
|
+
id: 30,
|
|
56
|
+
text: '30'
|
|
57
|
+
}, {
|
|
58
|
+
id: 40,
|
|
59
|
+
text: '40'
|
|
60
|
+
}, {
|
|
61
|
+
id: 50,
|
|
62
|
+
text: '50'
|
|
63
|
+
}]
|
|
48
64
|
} = _ref;
|
|
49
65
|
const tableRef = (0, _react.useRef)(null);
|
|
50
66
|
const {
|
|
@@ -304,22 +320,7 @@ const Table = _ref => {
|
|
|
304
320
|
fill: true,
|
|
305
321
|
fillReverse: backgroundReverse,
|
|
306
322
|
allowSearch: false,
|
|
307
|
-
options:
|
|
308
|
-
id: 10,
|
|
309
|
-
text: '10'
|
|
310
|
-
}, {
|
|
311
|
-
id: 20,
|
|
312
|
-
text: '20'
|
|
313
|
-
}, {
|
|
314
|
-
id: 30,
|
|
315
|
-
text: '30'
|
|
316
|
-
}, {
|
|
317
|
-
id: 40,
|
|
318
|
-
text: '40'
|
|
319
|
-
}, {
|
|
320
|
-
id: 50,
|
|
321
|
-
text: '50'
|
|
322
|
-
}],
|
|
323
|
+
options: limitOptions,
|
|
323
324
|
selected: limit,
|
|
324
325
|
onSelect: onLimitChange
|
|
325
326
|
})]
|
|
Binary file
|