@ebscn/ui 1.0.3-beta.3 → 1.0.3-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/cjs/components/card/card.js +2 -2
- package/cjs/components/number-keyboard/number-keyboard.css +44 -38
- package/cjs/components/number-keyboard/number-keyboard.d.ts +1 -0
- package/cjs/components/number-keyboard/number-keyboard.js +1 -0
- package/cjs/components/stock-count-keyboard/stock-count-keyboard.css +39 -38
- package/cjs/components/stock-count-keyboard/stock-count-keyboard.js +1 -1
- package/cjs/components/stock-keyboard/stock-keyboard.css +50 -52
- package/cjs/components/stock-keyboard/stock-keyboard.js +3 -3
- package/cjs/global/global.css +2 -2
- package/cjs/global/theme-dark.css +2 -2
- package/cjs/index.d.ts +4 -0
- package/cjs/index.js +33 -1
- package/es/components/card/card.js +2 -2
- package/es/components/number-keyboard/number-keyboard.css +44 -38
- package/es/components/number-keyboard/number-keyboard.d.ts +1 -0
- package/es/components/number-keyboard/number-keyboard.js +1 -0
- package/es/components/stock-count-keyboard/stock-count-keyboard.css +39 -38
- package/es/components/stock-count-keyboard/stock-count-keyboard.js +1 -1
- package/es/components/stock-keyboard/stock-keyboard.css +50 -52
- package/es/components/stock-keyboard/stock-keyboard.js +3 -3
- package/es/global/global.css +2 -2
- package/es/global/theme-dark.css +2 -2
- package/es/index.d.ts +4 -0
- package/es/index.js +4 -4
- package/package.json +2 -10
|
@@ -16,7 +16,7 @@ function Card(props) {
|
|
|
16
16
|
return null;
|
|
17
17
|
}
|
|
18
18
|
return _react.default.createElement("div", {
|
|
19
|
-
className: (0, _classnames.default)("".concat(classPrefix, "-header"), "".concat(
|
|
19
|
+
className: (0, _classnames.default)("".concat(classPrefix, "-header"), "".concat(typeClassName, "-header"), props.headerClassName),
|
|
20
20
|
style: props.headerStyle,
|
|
21
21
|
onClick: props.onHeaderClick
|
|
22
22
|
}, _react.default.createElement("div", {
|
|
@@ -28,7 +28,7 @@ function Card(props) {
|
|
|
28
28
|
return null;
|
|
29
29
|
}
|
|
30
30
|
return _react.default.createElement("div", {
|
|
31
|
-
className: (0, _classnames.default)("".concat(classPrefix, "-body"), "".concat(
|
|
31
|
+
className: (0, _classnames.default)("".concat(classPrefix, "-body"), "".concat(typeClassName, "-body"), props.bodyClassName),
|
|
32
32
|
style: props.bodyStyle,
|
|
33
33
|
onClick: props.onBodyClick
|
|
34
34
|
}, props.children);
|
|
@@ -1,69 +1,75 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--ebscn-color-keyboard-bg: #d2d5d8;
|
|
3
|
+
--ebscn-color-keyboard-key-bg: #fff;
|
|
4
|
+
--ebscn-color-functionkey-background: #adb3bd;
|
|
5
|
+
--ebscn-color-keyboard-active-background: #E5E5E5;
|
|
6
|
+
}
|
|
7
|
+
html[data-prefers-color-scheme='dark'] {
|
|
8
|
+
--ebscn-color-keyboard-bg: #1a1a1a;
|
|
9
|
+
--ebscn-color-keyboard-key-bg: #474747;
|
|
10
|
+
--ebscn-color-functionkey-background: #292929;
|
|
11
|
+
--ebscn-color-keyboard-active-background: #323232;
|
|
12
|
+
}
|
|
1
13
|
.ebscn-number-keyboard {
|
|
2
14
|
display: none;
|
|
3
15
|
position: fixed;
|
|
16
|
+
z-index: 9999;
|
|
4
17
|
bottom: 0;
|
|
18
|
+
left: 0;
|
|
5
19
|
transform: translateY(101%);
|
|
6
20
|
display: flex;
|
|
7
21
|
flex-wrap: wrap;
|
|
8
22
|
width: 100%;
|
|
9
|
-
height:
|
|
10
|
-
padding:
|
|
23
|
+
height: 223px;
|
|
24
|
+
padding: 3px;
|
|
25
|
+
background-color: var(--ebscn-color-keyboard-bg);
|
|
11
26
|
transition: all 0.5s;
|
|
12
27
|
align-content: flex-start;
|
|
13
28
|
}
|
|
14
29
|
.ebscn-number-keyboard :last-child {
|
|
15
30
|
background: var(--ebscn-color-primary);
|
|
16
|
-
color:
|
|
31
|
+
color: #fff;
|
|
17
32
|
}
|
|
18
|
-
.ebscn-number-keyboard-key
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
33
|
+
.ebscn-number-keyboard-key,
|
|
34
|
+
.ebscn-number-keyboard-confirmKey {
|
|
35
|
+
width: calc(25% - 7.5px);
|
|
36
|
+
height: 48.5px;
|
|
37
|
+
line-height: 48.5px;
|
|
38
|
+
border-radius: 4.17px;
|
|
39
|
+
margin: 3px;
|
|
22
40
|
text-align: center;
|
|
23
|
-
font-
|
|
24
|
-
font-weight:
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
41
|
+
font-weight: bold;
|
|
42
|
+
font-weight: 400;
|
|
43
|
+
}
|
|
44
|
+
.ebscn-number-keyboard-key {
|
|
45
|
+
font-size: 23px;
|
|
46
|
+
color: var(--ebscn-color-text);
|
|
47
|
+
background: var(--ebscn-color-keyboard-key-bg);
|
|
29
48
|
}
|
|
30
49
|
.ebscn-number-keyboard-key:active {
|
|
31
|
-
|
|
32
|
-
height: 54px;
|
|
33
|
-
line-height: 54px;
|
|
34
|
-
text-align: center;
|
|
35
|
-
font-size: 24px;
|
|
36
|
-
color: var(--ebscn-color-text-dark-solid);
|
|
37
|
-
font-weight: 300;
|
|
38
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
39
|
-
background: var(--ebscn-color-border);
|
|
50
|
+
background: var(--ebscn-color-keyboard-active-background);
|
|
40
51
|
}
|
|
41
52
|
.ebscn-number-keyboard-option {
|
|
42
|
-
font-size: var(--ebscn-font-size-
|
|
43
|
-
|
|
53
|
+
font-size: var(--ebscn-font-size-10);
|
|
54
|
+
color: var(--ebscn-color-text);
|
|
55
|
+
background-color: var(--ebscn-color-functionkey-background);
|
|
44
56
|
}
|
|
45
57
|
.ebscn-number-keyboard-option:active {
|
|
46
|
-
font-size: var(--ebscn-font-size-
|
|
47
|
-
background:
|
|
58
|
+
font-size: var(--ebscn-font-size-10);
|
|
59
|
+
background-color: var(--ebscn-color-keyboard-active-background);
|
|
48
60
|
}
|
|
49
61
|
.ebscn-number-keyboard-delete {
|
|
50
|
-
background: url(../../assets/images/delete.png)
|
|
62
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-functionkey-background) no-repeat center;
|
|
51
63
|
background-size: 24px 24px;
|
|
52
64
|
}
|
|
53
65
|
.ebscn-number-keyboard-delete:active {
|
|
54
|
-
background: url(../../assets/images/delete.png)
|
|
66
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-keyboard-active-background) no-repeat center;
|
|
55
67
|
background-size: 24px 24px;
|
|
56
68
|
}
|
|
57
69
|
.ebscn-number-keyboard-confirmKey {
|
|
58
70
|
background-color: var(--ebscn-color-primary);
|
|
59
|
-
width: 25
|
|
60
|
-
|
|
61
|
-
line-height: 54px;
|
|
62
|
-
text-align: center;
|
|
63
|
-
font-size: var(--ebscn-font-size-11);
|
|
64
|
-
color: var(--ebscn-color-text-dark-solid);
|
|
65
|
-
font-weight: 300;
|
|
66
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
71
|
+
width: calc(25% - 6px);
|
|
72
|
+
font-size: var(--ebscn-font-size-10);
|
|
67
73
|
}
|
|
68
74
|
.ebscn-number-keyboard-confirmKey:active {
|
|
69
75
|
background-color: #D03B21;
|
|
@@ -71,7 +77,7 @@
|
|
|
71
77
|
}
|
|
72
78
|
@supports (bottom: env(safe-area-inset-bottom)) or (constant(safe-area-inset-bottom)) {
|
|
73
79
|
.ebscn-number-keyboard {
|
|
74
|
-
height: calc(
|
|
75
|
-
height: calc(
|
|
80
|
+
height: calc(223px + env(safe-area-inset-bottom));
|
|
81
|
+
height: calc(223px + constant(safe-area-inset-bottom));
|
|
76
82
|
}
|
|
77
83
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { NativeProps } from '../../utils/native-props';
|
|
3
|
+
import './number-keyboard.less';
|
|
3
4
|
export type NumberKeyboardProps = {
|
|
4
5
|
types?: 'fullKeyboard' | 'numberKeyboard' | 'numberKeyboardWithDot';
|
|
5
6
|
type?: 'fullKeyboard' | 'numberKeyboard' | 'numberKeyboardWithDot';
|
|
@@ -8,6 +8,7 @@ var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
8
8
|
var _react = _interopRequireWildcard(require("react"));
|
|
9
9
|
var _nativeProps = require("../../utils/native-props");
|
|
10
10
|
var _withDefaultProps = require("../../utils/with-default-props");
|
|
11
|
+
require("./number-keyboard.css");
|
|
11
12
|
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); }
|
|
12
13
|
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 && Object.prototype.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
14
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--ebscn-color-keyboard-bg: #d2d5d8;
|
|
3
|
+
--ebscn-color-keyboard-key-bg: #fff;
|
|
4
|
+
--ebscn-color-functionkey-background: #adb3bd;
|
|
5
|
+
--ebscn-color-keyboard-active-background: #E5E5E5;
|
|
6
|
+
}
|
|
7
|
+
html[data-prefers-color-scheme='dark'] {
|
|
8
|
+
--ebscn-color-keyboard-bg: #1a1a1a;
|
|
9
|
+
--ebscn-color-keyboard-key-bg: #474747;
|
|
10
|
+
--ebscn-color-functionkey-background: #292929;
|
|
11
|
+
--ebscn-color-keyboard-active-background: #323232;
|
|
12
|
+
}
|
|
1
13
|
.ebscn-stock-count-keyboard {
|
|
2
14
|
display: none;
|
|
3
15
|
position: fixed;
|
|
@@ -6,69 +18,58 @@
|
|
|
6
18
|
display: flex;
|
|
7
19
|
flex-wrap: wrap;
|
|
8
20
|
width: 100%;
|
|
9
|
-
height:
|
|
21
|
+
height: 223px;
|
|
22
|
+
background-color: var(--ebscn-color-keyboard-bg);
|
|
23
|
+
padding: 3px;
|
|
10
24
|
transition: all 0.5s;
|
|
11
25
|
align-content: flex-start;
|
|
12
26
|
}
|
|
13
|
-
.ebscn-stock-count-keyboard
|
|
14
|
-
|
|
15
|
-
|
|
27
|
+
.ebscn-stock-count-keyboard-key,
|
|
28
|
+
.ebscn-stock-count-keyboard-confirmKey {
|
|
29
|
+
border-radius: 4.17px;
|
|
30
|
+
width: calc(20% - 7.5px);
|
|
31
|
+
margin: 3px;
|
|
32
|
+
height: 48px;
|
|
33
|
+
text-align: center;
|
|
34
|
+
line-height: 48px;
|
|
35
|
+
font-weight: 400;
|
|
16
36
|
}
|
|
17
37
|
.ebscn-stock-count-keyboard-key {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
line-height: 54px;
|
|
22
|
-
font-size: 24px;
|
|
23
|
-
color: var(--ebscn-color-text-dark-solid);
|
|
24
|
-
font-weight: 300;
|
|
25
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
26
|
-
background: var(--ebscn-color-background);
|
|
38
|
+
font-size: 23px;
|
|
39
|
+
color: var(--ebscn-color-text);
|
|
40
|
+
background: var(--ebscn-color-keyboard-key-bg);
|
|
27
41
|
}
|
|
28
42
|
.ebscn-stock-count-keyboard-key:active {
|
|
29
|
-
|
|
30
|
-
height: 54px;
|
|
31
|
-
text-align: center;
|
|
32
|
-
font-size: 24px;
|
|
33
|
-
color: var(--ebscn-color-text-dark-solid);
|
|
34
|
-
font-weight: 300;
|
|
35
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
36
|
-
background: var(--ebscn-color-border);
|
|
43
|
+
background: var(--ebscn-color-keyboard-active-background);
|
|
37
44
|
}
|
|
38
45
|
.ebscn-stock-count-keyboard-option {
|
|
39
|
-
font-size: var(--ebscn-font-size-
|
|
40
|
-
|
|
46
|
+
font-size: var(--ebscn-font-size-10);
|
|
47
|
+
color: var(--ebscn-color-text);
|
|
48
|
+
background-color: var(--ebscn-color-functionkey-background);
|
|
41
49
|
}
|
|
42
50
|
.ebscn-stock-count-keyboard-option:active {
|
|
43
|
-
font-size: var(--ebscn-font-size-
|
|
44
|
-
background:
|
|
51
|
+
font-size: var(--ebscn-font-size-10);
|
|
52
|
+
background-color: var(--ebscn-color-keyboard-active-background);
|
|
45
53
|
}
|
|
46
54
|
.ebscn-stock-count-keyboard-delete {
|
|
47
|
-
background: url(../../assets/images/delete.png)
|
|
55
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-functionkey-background) no-repeat center;
|
|
48
56
|
background-size: 24px 24px;
|
|
49
57
|
}
|
|
50
58
|
.ebscn-stock-count-keyboard-delete:active {
|
|
51
|
-
background: url(../../assets/images/delete.png)
|
|
59
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-keyboard-active-background) no-repeat center;
|
|
52
60
|
background-size: 24px 24px;
|
|
53
61
|
}
|
|
54
62
|
.ebscn-stock-count-keyboard-confirmKey {
|
|
55
63
|
background-color: var(--ebscn-color-primary);
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
line-height: 54px;
|
|
59
|
-
text-align: center;
|
|
60
|
-
font-size: var(--ebscn-font-size-11);
|
|
61
|
-
color: var(--ebscn-color-text-dark-solid);
|
|
62
|
-
font-weight: 300;
|
|
63
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
64
|
+
font-size: var(--ebscn-font-size-10);
|
|
65
|
+
color: var(--ebscn-color-white);
|
|
64
66
|
}
|
|
65
67
|
.ebscn-stock-count-keyboard-confirmKey:active {
|
|
66
68
|
background-color: #D03B21;
|
|
67
|
-
color: var(--ebscn-color-background);
|
|
68
69
|
}
|
|
69
70
|
@supports (bottom: env(safe-area-inset-bottom)) or (constant(safe-area-inset-bottom)) {
|
|
70
71
|
.ebscn-stock-count-keyboard {
|
|
71
|
-
height: calc(
|
|
72
|
-
height: calc(
|
|
72
|
+
height: calc(223px + env(safe-area-inset-bottom));
|
|
73
|
+
height: calc(223px + constant(safe-area-inset-bottom));
|
|
73
74
|
}
|
|
74
75
|
}
|
|
@@ -71,7 +71,7 @@ function StockCountKeyboard(p) {
|
|
|
71
71
|
}, keys.map(function (item, index) {
|
|
72
72
|
return _react.default.createElement("div", {
|
|
73
73
|
key: item || index,
|
|
74
|
-
className: (0, _classnames.default)(item !== '确定' ? "".concat(classPrefix, "-key") : "".concat(classPrefix, "-confirmKey"), typeof item !== 'number' && item.length && item !== '.' && item !== '确定' ? "".concat(classPrefix, "-option") : item == '确定' ? "".concat(classPrefix, "-confirmKey") : "".concat(classPrefix, "-number-key"), item === 'X' && "".concat(classPrefix, "-delete")),
|
|
74
|
+
className: (0, _classnames.default)(item !== '确定' ? "".concat(classPrefix, "-key") : "".concat(classPrefix, "-confirmKey"), typeof item !== 'number' && item !== '00' && item.length && item !== '.' && item !== '确定' ? "".concat(classPrefix, "-option") : item == '确定' ? "".concat(classPrefix, "-confirmKey") : "".concat(classPrefix, "-number-key"), item === 'X' && "".concat(classPrefix, "-delete")),
|
|
75
75
|
onClick: function () {
|
|
76
76
|
if (visible) {
|
|
77
77
|
onKeyPress(item);
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--ebscn-color-keyboard-bg: #d2d5d8;
|
|
3
|
+
--ebscn-color-keyboard-key-bg: #fff;
|
|
4
|
+
--ebscn-color-functionkey-background: #adb3bd;
|
|
5
|
+
--ebscn-color-keyboard-active-background: #E5E5E5;
|
|
6
|
+
}
|
|
7
|
+
html[data-prefers-color-scheme='dark'] {
|
|
8
|
+
--ebscn-color-keyboard-bg: #1a1a1a;
|
|
9
|
+
--ebscn-color-keyboard-key-bg: #474747;
|
|
10
|
+
--ebscn-color-functionkey-background: #292929;
|
|
11
|
+
--ebscn-color-keyboard-active-background: #323232;
|
|
12
|
+
}
|
|
1
13
|
.ebscn-stock-keyboard {
|
|
2
14
|
transform: translateY(101%);
|
|
3
15
|
display: flex;
|
|
@@ -5,107 +17,93 @@
|
|
|
5
17
|
bottom: 0;
|
|
6
18
|
flex-direction: row;
|
|
7
19
|
width: 100%;
|
|
8
|
-
height:
|
|
20
|
+
height: 223px;
|
|
9
21
|
transition: all 0.5s;
|
|
10
22
|
align-content: flex-start;
|
|
23
|
+
background-color: var(--ebscn-color-keyboard-bg);
|
|
11
24
|
}
|
|
12
25
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right {
|
|
13
26
|
display: flex;
|
|
14
27
|
flex-wrap: wrap;
|
|
15
28
|
width: 80%;
|
|
16
|
-
height:
|
|
29
|
+
height: 223px;
|
|
17
30
|
transition: all 0.5s;
|
|
18
31
|
align-content: flex-start;
|
|
19
32
|
}
|
|
20
33
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right :last-child {
|
|
21
34
|
background: var(--ebscn-color-primary);
|
|
22
|
-
color:
|
|
35
|
+
color: #fff;
|
|
23
36
|
}
|
|
24
|
-
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-key
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
37
|
+
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-key,
|
|
38
|
+
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-confirmKey {
|
|
39
|
+
width: calc(25% - 7.5px);
|
|
40
|
+
margin: 6px 3px 0 3px;
|
|
41
|
+
border-radius: 4.17px;
|
|
42
|
+
height: 48px;
|
|
43
|
+
line-height: 48px;
|
|
28
44
|
text-align: center;
|
|
29
|
-
font-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
45
|
+
font-weight: 400;
|
|
46
|
+
}
|
|
47
|
+
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-key {
|
|
48
|
+
color: var(--ebscn-color-text);
|
|
49
|
+
font-size: 23px;
|
|
33
50
|
background: var(--ebscn-color-white);
|
|
34
51
|
}
|
|
35
52
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-key:active {
|
|
36
|
-
|
|
37
|
-
height: 54px;
|
|
38
|
-
line-height: 54px;
|
|
39
|
-
text-align: center;
|
|
40
|
-
font-size: 24px;
|
|
41
|
-
color: #000000;
|
|
42
|
-
font-weight: 300;
|
|
43
|
-
box-shadow: 0 0 0 1px var(--ebscn-color-light);
|
|
44
|
-
background: var(--ebscn-color-border);
|
|
53
|
+
background: var(--ebscn-color-keyboard-active-background);
|
|
45
54
|
}
|
|
46
55
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-option {
|
|
47
|
-
font-size: var(--ebscn-font-size-
|
|
48
|
-
|
|
56
|
+
font-size: var(--ebscn-font-size-10);
|
|
57
|
+
color: var(--ebscn-color-text);
|
|
58
|
+
background-color: var(--ebscn-color-functionkey-background);
|
|
49
59
|
}
|
|
50
60
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-option:active {
|
|
51
|
-
font-size: var(--ebscn-font-size-
|
|
52
|
-
background:
|
|
61
|
+
font-size: var(--ebscn-font-size-10);
|
|
62
|
+
background-color: var(--ebscn-color-keyboard-active-background);
|
|
53
63
|
}
|
|
54
64
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-delete {
|
|
55
|
-
background: url(../../assets/images/delete.png)
|
|
65
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-functionkey-background) no-repeat center;
|
|
56
66
|
background-size: 24px 24px;
|
|
57
67
|
}
|
|
58
68
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-delete:active {
|
|
59
|
-
background: url(../../assets/images/delete.png)
|
|
69
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-keyboard-active-background) no-repeat center;
|
|
60
70
|
background-size: 24px 24px;
|
|
61
71
|
}
|
|
62
|
-
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-header {
|
|
63
|
-
padding-top: 24px;
|
|
64
|
-
padding-bottom: 16px;
|
|
65
|
-
font-size: var(--ebscn-font-size-10);
|
|
66
|
-
color: #333333;
|
|
67
|
-
text-align: center;
|
|
68
|
-
font-weight: 500;
|
|
69
|
-
}
|
|
70
72
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-confirmKey {
|
|
73
|
+
font-size: var(--ebscn-font-size-10);
|
|
74
|
+
width: calc(25% - 7.5px);
|
|
71
75
|
background-color: var(--ebscn-color-primary);
|
|
72
|
-
width: 25%;
|
|
73
|
-
height: 54px;
|
|
74
|
-
line-height: 54px;
|
|
75
|
-
text-align: center;
|
|
76
|
-
font-size: var(--ebscn-font-size-11);
|
|
77
|
-
color: #000000;
|
|
78
|
-
font-weight: 300;
|
|
79
|
-
box-shadow: 0 0 0 1px var(--ebscn-color-light);
|
|
80
76
|
}
|
|
81
77
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-confirmKey:active {
|
|
82
78
|
background-color: #D03B21;
|
|
83
79
|
color: var(--ebscn-color-white);
|
|
84
80
|
}
|
|
81
|
+
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-bottom-option {
|
|
82
|
+
font-size: var(--ebscn-font-size-10);
|
|
83
|
+
}
|
|
85
84
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-left {
|
|
86
85
|
width: 20%;
|
|
87
|
-
height: 216px;
|
|
88
86
|
}
|
|
89
87
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-left-key {
|
|
90
88
|
display: flex;
|
|
91
89
|
align-items: center;
|
|
92
90
|
justify-content: center;
|
|
93
|
-
|
|
91
|
+
border-radius: 4.17px;
|
|
92
|
+
height: 48px;
|
|
93
|
+
margin: 6px 3px 6px 6px;
|
|
94
94
|
font-size: var(--ebscn-font-size-10);
|
|
95
95
|
font-weight: 400;
|
|
96
96
|
text-align: center;
|
|
97
|
-
color:
|
|
98
|
-
line-height:
|
|
99
|
-
|
|
100
|
-
background: #e1e3e8;
|
|
97
|
+
color: var(--ebscn-color-text);
|
|
98
|
+
line-height: 48px;
|
|
99
|
+
background-color: var(--ebscn-color-functionkey-background);
|
|
101
100
|
}
|
|
102
101
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-left-key:active {
|
|
103
|
-
|
|
104
|
-
background: #CACBD0;
|
|
102
|
+
background: var(--ebscn-color-keyboard-active-background);
|
|
105
103
|
}
|
|
106
104
|
@supports (bottom: env(safe-area-inset-bottom)) or (constant(safe-area-inset-bottom)) {
|
|
107
105
|
.ebscn-stock-keyboard {
|
|
108
|
-
height: calc(
|
|
109
|
-
height: calc(
|
|
106
|
+
height: calc(223px + env(safe-area-inset-bottom));
|
|
107
|
+
height: calc(223px + constant(safe-area-inset-bottom));
|
|
110
108
|
}
|
|
111
109
|
}
|
|
@@ -25,8 +25,8 @@ function StockKeyboard(p) {
|
|
|
25
25
|
onClean = props.onClean,
|
|
26
26
|
onConfirm = props.onConfirm,
|
|
27
27
|
onChangeKeyBoard = props.onChangeKeyBoard;
|
|
28
|
-
var keys = [1, 2, 3, 'X', 4, 5, 6, '清除', 7, 8, 9, '隐藏', 'ABC', 0, '', '确定'];
|
|
29
|
-
var leftKeys = ['600', '601', '000', '
|
|
28
|
+
var keys = [1, 2, 3, 'X', 4, 5, 6, '清除', 7, 8, 9, '隐藏', 'ABC', 0, '002', '确定'];
|
|
29
|
+
var leftKeys = ['600', '601', '000', '300'];
|
|
30
30
|
var hideTimer = (0, _react.useRef)(null);
|
|
31
31
|
var appearTimer = (0, _react.useRef)(null);
|
|
32
32
|
var lastVisible = (0, _react.useRef)(null);
|
|
@@ -96,7 +96,7 @@ function StockKeyboard(p) {
|
|
|
96
96
|
}, keys.map(function (item, index) {
|
|
97
97
|
return _react.default.createElement("div", {
|
|
98
98
|
key: item || index,
|
|
99
|
-
className: (0, _classnames.default)(item !== '确定' ? "".concat(classPrefix, "-right-key") : "".concat(classPrefix, "-right-confirmKey"), typeof item !== 'number' && item.length && item !== '.' && item !== '确定' ? "".concat(classPrefix, "-right-option") : item == '确定' ? "".concat(classPrefix, "-right-confirmKey") : "".concat(classPrefix, "-right-number-key"), item === 'X' && "".concat(classPrefix, "-right-delete")),
|
|
99
|
+
className: (0, _classnames.default)(item !== '确定' ? "".concat(classPrefix, "-right-key") : "".concat(classPrefix, "-right-confirmKey"), item === 'ABC' || item === '002' ? "".concat(classPrefix, "-right-bottom-option") : '', typeof item !== 'number' && item !== 'ABC' && item !== '002' && item.length && item !== '.' && item !== '确定' ? "".concat(classPrefix, "-right-option") : item == '确定' ? "".concat(classPrefix, "-right-confirmKey") : "".concat(classPrefix, "-right-number-key"), item === 'X' && "".concat(classPrefix, "-right-delete")),
|
|
100
100
|
onClick: function () {
|
|
101
101
|
if (visible) {
|
|
102
102
|
onKeyPress(item);
|
package/cjs/global/global.css
CHANGED
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
--ebscn-color-split-line: #EBEBEB;
|
|
48
48
|
}
|
|
49
49
|
html[data-prefers-color-scheme='dark'] {
|
|
50
|
-
--ebscn-color-
|
|
50
|
+
--ebscn-color-blue: #4c7cf1;
|
|
51
51
|
--ebscn-color-success: #34b368;
|
|
52
52
|
--ebscn-color-warning: #ffa930;
|
|
53
53
|
--ebscn-color-danger: #ff4a58;
|
|
54
54
|
--ebscn-color-yellow: #ffa930;
|
|
55
55
|
--ebscn-color-orange: #e65a2b;
|
|
56
56
|
--ebscn-color-wathet: #0d2543;
|
|
57
|
-
--ebscn-color-text: #
|
|
57
|
+
--ebscn-color-text: #ebebeb;
|
|
58
58
|
--ebscn-color-text-secondary: #b3b3b3;
|
|
59
59
|
--ebscn-color-weak: #808080;
|
|
60
60
|
--ebscn-color-light: #4d4d4d;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
html[data-prefers-color-scheme='dark'] {
|
|
2
|
-
--ebscn-color-
|
|
2
|
+
--ebscn-color-blue: #4c7cf1;
|
|
3
3
|
--ebscn-color-success: #34b368;
|
|
4
4
|
--ebscn-color-warning: #ffa930;
|
|
5
5
|
--ebscn-color-danger: #ff4a58;
|
|
6
6
|
--ebscn-color-yellow: #ffa930;
|
|
7
7
|
--ebscn-color-orange: #e65a2b;
|
|
8
8
|
--ebscn-color-wathet: #0d2543;
|
|
9
|
-
--ebscn-color-text: #
|
|
9
|
+
--ebscn-color-text: #ebebeb;
|
|
10
10
|
--ebscn-color-text-secondary: #b3b3b3;
|
|
11
11
|
--ebscn-color-weak: #808080;
|
|
12
12
|
--ebscn-color-light: #4d4d4d;
|
package/cjs/index.d.ts
CHANGED
|
@@ -36,3 +36,7 @@ export { default as Tabs } from './components/tabs';
|
|
|
36
36
|
export { default as Tip } from './components/tip';
|
|
37
37
|
export { default as ToastLoading } from './components/toastLoading';
|
|
38
38
|
export { default as Input } from './components/input';
|
|
39
|
+
export { default as PayInput } from './components/pay-input';
|
|
40
|
+
export { default as MoneyInput } from './components/money-input';
|
|
41
|
+
export { default as FeneInput } from './components/fene-input';
|
|
42
|
+
export { default as CommonInput } from './components/common-input';
|
package/cjs/index.js
CHANGED
|
@@ -41,7 +41,11 @@ var _exportNames = {
|
|
|
41
41
|
Tabs: true,
|
|
42
42
|
Tip: true,
|
|
43
43
|
ToastLoading: true,
|
|
44
|
-
Input: true
|
|
44
|
+
Input: true,
|
|
45
|
+
PayInput: true,
|
|
46
|
+
MoneyInput: true,
|
|
47
|
+
FeneInput: true,
|
|
48
|
+
CommonInput: true
|
|
45
49
|
};
|
|
46
50
|
Object.defineProperty(exports, "AlphabetKeyboard", {
|
|
47
51
|
enumerable: true,
|
|
@@ -73,6 +77,12 @@ Object.defineProperty(exports, "Checkbox", {
|
|
|
73
77
|
return _checkbox.default;
|
|
74
78
|
}
|
|
75
79
|
});
|
|
80
|
+
Object.defineProperty(exports, "CommonInput", {
|
|
81
|
+
enumerable: true,
|
|
82
|
+
get: function () {
|
|
83
|
+
return _commonInput.default;
|
|
84
|
+
}
|
|
85
|
+
});
|
|
76
86
|
Object.defineProperty(exports, "DateRangePicker", {
|
|
77
87
|
enumerable: true,
|
|
78
88
|
get: function () {
|
|
@@ -85,6 +95,12 @@ Object.defineProperty(exports, "Divider", {
|
|
|
85
95
|
return _divider.default;
|
|
86
96
|
}
|
|
87
97
|
});
|
|
98
|
+
Object.defineProperty(exports, "FeneInput", {
|
|
99
|
+
enumerable: true,
|
|
100
|
+
get: function () {
|
|
101
|
+
return _feneInput.default;
|
|
102
|
+
}
|
|
103
|
+
});
|
|
88
104
|
Object.defineProperty(exports, "Grid", {
|
|
89
105
|
enumerable: true,
|
|
90
106
|
get: function () {
|
|
@@ -121,6 +137,12 @@ Object.defineProperty(exports, "Mask", {
|
|
|
121
137
|
return _mask.default;
|
|
122
138
|
}
|
|
123
139
|
});
|
|
140
|
+
Object.defineProperty(exports, "MoneyInput", {
|
|
141
|
+
enumerable: true,
|
|
142
|
+
get: function () {
|
|
143
|
+
return _moneyInput.default;
|
|
144
|
+
}
|
|
145
|
+
});
|
|
124
146
|
Object.defineProperty(exports, "NoticeBar", {
|
|
125
147
|
enumerable: true,
|
|
126
148
|
get: function () {
|
|
@@ -145,6 +167,12 @@ Object.defineProperty(exports, "PageIndicator", {
|
|
|
145
167
|
return _pageIndicator.default;
|
|
146
168
|
}
|
|
147
169
|
});
|
|
170
|
+
Object.defineProperty(exports, "PayInput", {
|
|
171
|
+
enumerable: true,
|
|
172
|
+
get: function () {
|
|
173
|
+
return _payInput.default;
|
|
174
|
+
}
|
|
175
|
+
});
|
|
148
176
|
Object.defineProperty(exports, "Picker", {
|
|
149
177
|
enumerable: true,
|
|
150
178
|
get: function () {
|
|
@@ -320,4 +348,8 @@ var _tabs = _interopRequireDefault(require("./components/tabs"));
|
|
|
320
348
|
var _tip = _interopRequireDefault(require("./components/tip"));
|
|
321
349
|
var _toastLoading = _interopRequireDefault(require("./components/toastLoading"));
|
|
322
350
|
var _input = _interopRequireDefault(require("./components/input"));
|
|
351
|
+
var _payInput = _interopRequireDefault(require("./components/pay-input"));
|
|
352
|
+
var _moneyInput = _interopRequireDefault(require("./components/money-input"));
|
|
353
|
+
var _feneInput = _interopRequireDefault(require("./components/fene-input"));
|
|
354
|
+
var _commonInput = _interopRequireDefault(require("./components/common-input"));
|
|
323
355
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -9,7 +9,7 @@ export default function Card(props) {
|
|
|
9
9
|
return null;
|
|
10
10
|
}
|
|
11
11
|
return React.createElement("div", {
|
|
12
|
-
className: cns("".concat(classPrefix, "-header"), "".concat(
|
|
12
|
+
className: cns("".concat(classPrefix, "-header"), "".concat(typeClassName, "-header"), props.headerClassName),
|
|
13
13
|
style: props.headerStyle,
|
|
14
14
|
onClick: props.onHeaderClick
|
|
15
15
|
}, React.createElement("div", {
|
|
@@ -21,7 +21,7 @@ export default function Card(props) {
|
|
|
21
21
|
return null;
|
|
22
22
|
}
|
|
23
23
|
return React.createElement("div", {
|
|
24
|
-
className: cns("".concat(classPrefix, "-body"), "".concat(
|
|
24
|
+
className: cns("".concat(classPrefix, "-body"), "".concat(typeClassName, "-body"), props.bodyClassName),
|
|
25
25
|
style: props.bodyStyle,
|
|
26
26
|
onClick: props.onBodyClick
|
|
27
27
|
}, props.children);
|
|
@@ -1,69 +1,75 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--ebscn-color-keyboard-bg: #d2d5d8;
|
|
3
|
+
--ebscn-color-keyboard-key-bg: #fff;
|
|
4
|
+
--ebscn-color-functionkey-background: #adb3bd;
|
|
5
|
+
--ebscn-color-keyboard-active-background: #E5E5E5;
|
|
6
|
+
}
|
|
7
|
+
html[data-prefers-color-scheme='dark'] {
|
|
8
|
+
--ebscn-color-keyboard-bg: #1a1a1a;
|
|
9
|
+
--ebscn-color-keyboard-key-bg: #474747;
|
|
10
|
+
--ebscn-color-functionkey-background: #292929;
|
|
11
|
+
--ebscn-color-keyboard-active-background: #323232;
|
|
12
|
+
}
|
|
1
13
|
.ebscn-number-keyboard {
|
|
2
14
|
display: none;
|
|
3
15
|
position: fixed;
|
|
16
|
+
z-index: 9999;
|
|
4
17
|
bottom: 0;
|
|
18
|
+
left: 0;
|
|
5
19
|
transform: translateY(101%);
|
|
6
20
|
display: flex;
|
|
7
21
|
flex-wrap: wrap;
|
|
8
22
|
width: 100%;
|
|
9
|
-
height:
|
|
10
|
-
padding:
|
|
23
|
+
height: 223px;
|
|
24
|
+
padding: 3px;
|
|
25
|
+
background-color: var(--ebscn-color-keyboard-bg);
|
|
11
26
|
transition: all 0.5s;
|
|
12
27
|
align-content: flex-start;
|
|
13
28
|
}
|
|
14
29
|
.ebscn-number-keyboard :last-child {
|
|
15
30
|
background: var(--ebscn-color-primary);
|
|
16
|
-
color:
|
|
31
|
+
color: #fff;
|
|
17
32
|
}
|
|
18
|
-
.ebscn-number-keyboard-key
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
33
|
+
.ebscn-number-keyboard-key,
|
|
34
|
+
.ebscn-number-keyboard-confirmKey {
|
|
35
|
+
width: calc(25% - 7.5px);
|
|
36
|
+
height: 48.5px;
|
|
37
|
+
line-height: 48.5px;
|
|
38
|
+
border-radius: 4.17px;
|
|
39
|
+
margin: 3px;
|
|
22
40
|
text-align: center;
|
|
23
|
-
font-
|
|
24
|
-
font-weight:
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
41
|
+
font-weight: bold;
|
|
42
|
+
font-weight: 400;
|
|
43
|
+
}
|
|
44
|
+
.ebscn-number-keyboard-key {
|
|
45
|
+
font-size: 23px;
|
|
46
|
+
color: var(--ebscn-color-text);
|
|
47
|
+
background: var(--ebscn-color-keyboard-key-bg);
|
|
29
48
|
}
|
|
30
49
|
.ebscn-number-keyboard-key:active {
|
|
31
|
-
|
|
32
|
-
height: 54px;
|
|
33
|
-
line-height: 54px;
|
|
34
|
-
text-align: center;
|
|
35
|
-
font-size: 24px;
|
|
36
|
-
color: var(--ebscn-color-text-dark-solid);
|
|
37
|
-
font-weight: 300;
|
|
38
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
39
|
-
background: var(--ebscn-color-border);
|
|
50
|
+
background: var(--ebscn-color-keyboard-active-background);
|
|
40
51
|
}
|
|
41
52
|
.ebscn-number-keyboard-option {
|
|
42
|
-
font-size: var(--ebscn-font-size-
|
|
43
|
-
|
|
53
|
+
font-size: var(--ebscn-font-size-10);
|
|
54
|
+
color: var(--ebscn-color-text);
|
|
55
|
+
background-color: var(--ebscn-color-functionkey-background);
|
|
44
56
|
}
|
|
45
57
|
.ebscn-number-keyboard-option:active {
|
|
46
|
-
font-size: var(--ebscn-font-size-
|
|
47
|
-
background:
|
|
58
|
+
font-size: var(--ebscn-font-size-10);
|
|
59
|
+
background-color: var(--ebscn-color-keyboard-active-background);
|
|
48
60
|
}
|
|
49
61
|
.ebscn-number-keyboard-delete {
|
|
50
|
-
background: url(../../assets/images/delete.png)
|
|
62
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-functionkey-background) no-repeat center;
|
|
51
63
|
background-size: 24px 24px;
|
|
52
64
|
}
|
|
53
65
|
.ebscn-number-keyboard-delete:active {
|
|
54
|
-
background: url(../../assets/images/delete.png)
|
|
66
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-keyboard-active-background) no-repeat center;
|
|
55
67
|
background-size: 24px 24px;
|
|
56
68
|
}
|
|
57
69
|
.ebscn-number-keyboard-confirmKey {
|
|
58
70
|
background-color: var(--ebscn-color-primary);
|
|
59
|
-
width: 25
|
|
60
|
-
|
|
61
|
-
line-height: 54px;
|
|
62
|
-
text-align: center;
|
|
63
|
-
font-size: var(--ebscn-font-size-11);
|
|
64
|
-
color: var(--ebscn-color-text-dark-solid);
|
|
65
|
-
font-weight: 300;
|
|
66
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
71
|
+
width: calc(25% - 6px);
|
|
72
|
+
font-size: var(--ebscn-font-size-10);
|
|
67
73
|
}
|
|
68
74
|
.ebscn-number-keyboard-confirmKey:active {
|
|
69
75
|
background-color: #D03B21;
|
|
@@ -71,7 +77,7 @@
|
|
|
71
77
|
}
|
|
72
78
|
@supports (bottom: env(safe-area-inset-bottom)) or (constant(safe-area-inset-bottom)) {
|
|
73
79
|
.ebscn-number-keyboard {
|
|
74
|
-
height: calc(
|
|
75
|
-
height: calc(
|
|
80
|
+
height: calc(223px + env(safe-area-inset-bottom));
|
|
81
|
+
height: calc(223px + constant(safe-area-inset-bottom));
|
|
76
82
|
}
|
|
77
83
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { NativeProps } from '../../utils/native-props';
|
|
3
|
+
import './number-keyboard.less';
|
|
3
4
|
export type NumberKeyboardProps = {
|
|
4
5
|
types?: 'fullKeyboard' | 'numberKeyboard' | 'numberKeyboardWithDot';
|
|
5
6
|
type?: 'fullKeyboard' | 'numberKeyboard' | 'numberKeyboardWithDot';
|
|
@@ -3,6 +3,7 @@ import { useEffect, useRef } from "react";
|
|
|
3
3
|
import React from "react";
|
|
4
4
|
import { withNativeProps } from '../../utils/native-props';
|
|
5
5
|
import { mergeProps } from '../../utils/with-default-props';
|
|
6
|
+
import "./number-keyboard.css";
|
|
6
7
|
var classPrefix = 'ebscn-number-keyboard';
|
|
7
8
|
var defaultProps = {
|
|
8
9
|
types: 'numberKeyboard',
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--ebscn-color-keyboard-bg: #d2d5d8;
|
|
3
|
+
--ebscn-color-keyboard-key-bg: #fff;
|
|
4
|
+
--ebscn-color-functionkey-background: #adb3bd;
|
|
5
|
+
--ebscn-color-keyboard-active-background: #E5E5E5;
|
|
6
|
+
}
|
|
7
|
+
html[data-prefers-color-scheme='dark'] {
|
|
8
|
+
--ebscn-color-keyboard-bg: #1a1a1a;
|
|
9
|
+
--ebscn-color-keyboard-key-bg: #474747;
|
|
10
|
+
--ebscn-color-functionkey-background: #292929;
|
|
11
|
+
--ebscn-color-keyboard-active-background: #323232;
|
|
12
|
+
}
|
|
1
13
|
.ebscn-stock-count-keyboard {
|
|
2
14
|
display: none;
|
|
3
15
|
position: fixed;
|
|
@@ -6,69 +18,58 @@
|
|
|
6
18
|
display: flex;
|
|
7
19
|
flex-wrap: wrap;
|
|
8
20
|
width: 100%;
|
|
9
|
-
height:
|
|
21
|
+
height: 223px;
|
|
22
|
+
background-color: var(--ebscn-color-keyboard-bg);
|
|
23
|
+
padding: 3px;
|
|
10
24
|
transition: all 0.5s;
|
|
11
25
|
align-content: flex-start;
|
|
12
26
|
}
|
|
13
|
-
.ebscn-stock-count-keyboard
|
|
14
|
-
|
|
15
|
-
|
|
27
|
+
.ebscn-stock-count-keyboard-key,
|
|
28
|
+
.ebscn-stock-count-keyboard-confirmKey {
|
|
29
|
+
border-radius: 4.17px;
|
|
30
|
+
width: calc(20% - 7.5px);
|
|
31
|
+
margin: 3px;
|
|
32
|
+
height: 48px;
|
|
33
|
+
text-align: center;
|
|
34
|
+
line-height: 48px;
|
|
35
|
+
font-weight: 400;
|
|
16
36
|
}
|
|
17
37
|
.ebscn-stock-count-keyboard-key {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
line-height: 54px;
|
|
22
|
-
font-size: 24px;
|
|
23
|
-
color: var(--ebscn-color-text-dark-solid);
|
|
24
|
-
font-weight: 300;
|
|
25
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
26
|
-
background: var(--ebscn-color-background);
|
|
38
|
+
font-size: 23px;
|
|
39
|
+
color: var(--ebscn-color-text);
|
|
40
|
+
background: var(--ebscn-color-keyboard-key-bg);
|
|
27
41
|
}
|
|
28
42
|
.ebscn-stock-count-keyboard-key:active {
|
|
29
|
-
|
|
30
|
-
height: 54px;
|
|
31
|
-
text-align: center;
|
|
32
|
-
font-size: 24px;
|
|
33
|
-
color: var(--ebscn-color-text-dark-solid);
|
|
34
|
-
font-weight: 300;
|
|
35
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
36
|
-
background: var(--ebscn-color-border);
|
|
43
|
+
background: var(--ebscn-color-keyboard-active-background);
|
|
37
44
|
}
|
|
38
45
|
.ebscn-stock-count-keyboard-option {
|
|
39
|
-
font-size: var(--ebscn-font-size-
|
|
40
|
-
|
|
46
|
+
font-size: var(--ebscn-font-size-10);
|
|
47
|
+
color: var(--ebscn-color-text);
|
|
48
|
+
background-color: var(--ebscn-color-functionkey-background);
|
|
41
49
|
}
|
|
42
50
|
.ebscn-stock-count-keyboard-option:active {
|
|
43
|
-
font-size: var(--ebscn-font-size-
|
|
44
|
-
background:
|
|
51
|
+
font-size: var(--ebscn-font-size-10);
|
|
52
|
+
background-color: var(--ebscn-color-keyboard-active-background);
|
|
45
53
|
}
|
|
46
54
|
.ebscn-stock-count-keyboard-delete {
|
|
47
|
-
background: url(../../assets/images/delete.png)
|
|
55
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-functionkey-background) no-repeat center;
|
|
48
56
|
background-size: 24px 24px;
|
|
49
57
|
}
|
|
50
58
|
.ebscn-stock-count-keyboard-delete:active {
|
|
51
|
-
background: url(../../assets/images/delete.png)
|
|
59
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-keyboard-active-background) no-repeat center;
|
|
52
60
|
background-size: 24px 24px;
|
|
53
61
|
}
|
|
54
62
|
.ebscn-stock-count-keyboard-confirmKey {
|
|
55
63
|
background-color: var(--ebscn-color-primary);
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
line-height: 54px;
|
|
59
|
-
text-align: center;
|
|
60
|
-
font-size: var(--ebscn-font-size-11);
|
|
61
|
-
color: var(--ebscn-color-text-dark-solid);
|
|
62
|
-
font-weight: 300;
|
|
63
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
64
|
+
font-size: var(--ebscn-font-size-10);
|
|
65
|
+
color: var(--ebscn-color-white);
|
|
64
66
|
}
|
|
65
67
|
.ebscn-stock-count-keyboard-confirmKey:active {
|
|
66
68
|
background-color: #D03B21;
|
|
67
|
-
color: var(--ebscn-color-background);
|
|
68
69
|
}
|
|
69
70
|
@supports (bottom: env(safe-area-inset-bottom)) or (constant(safe-area-inset-bottom)) {
|
|
70
71
|
.ebscn-stock-count-keyboard {
|
|
71
|
-
height: calc(
|
|
72
|
-
height: calc(
|
|
72
|
+
height: calc(223px + env(safe-area-inset-bottom));
|
|
73
|
+
height: calc(223px + constant(safe-area-inset-bottom));
|
|
73
74
|
}
|
|
74
75
|
}
|
|
@@ -63,7 +63,7 @@ export function StockCountKeyboard(p) {
|
|
|
63
63
|
}, keys.map(function (item, index) {
|
|
64
64
|
return React.createElement("div", {
|
|
65
65
|
key: item || index,
|
|
66
|
-
className: cns(item !== '确定' ? "".concat(classPrefix, "-key") : "".concat(classPrefix, "-confirmKey"), typeof item !== 'number' && item.length && item !== '.' && item !== '确定' ? "".concat(classPrefix, "-option") : item == '确定' ? "".concat(classPrefix, "-confirmKey") : "".concat(classPrefix, "-number-key"), item === 'X' && "".concat(classPrefix, "-delete")),
|
|
66
|
+
className: cns(item !== '确定' ? "".concat(classPrefix, "-key") : "".concat(classPrefix, "-confirmKey"), typeof item !== 'number' && item !== '00' && item.length && item !== '.' && item !== '确定' ? "".concat(classPrefix, "-option") : item == '确定' ? "".concat(classPrefix, "-confirmKey") : "".concat(classPrefix, "-number-key"), item === 'X' && "".concat(classPrefix, "-delete")),
|
|
67
67
|
onClick: function () {
|
|
68
68
|
if (visible) {
|
|
69
69
|
onKeyPress(item);
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--ebscn-color-keyboard-bg: #d2d5d8;
|
|
3
|
+
--ebscn-color-keyboard-key-bg: #fff;
|
|
4
|
+
--ebscn-color-functionkey-background: #adb3bd;
|
|
5
|
+
--ebscn-color-keyboard-active-background: #E5E5E5;
|
|
6
|
+
}
|
|
7
|
+
html[data-prefers-color-scheme='dark'] {
|
|
8
|
+
--ebscn-color-keyboard-bg: #1a1a1a;
|
|
9
|
+
--ebscn-color-keyboard-key-bg: #474747;
|
|
10
|
+
--ebscn-color-functionkey-background: #292929;
|
|
11
|
+
--ebscn-color-keyboard-active-background: #323232;
|
|
12
|
+
}
|
|
1
13
|
.ebscn-stock-keyboard {
|
|
2
14
|
transform: translateY(101%);
|
|
3
15
|
display: flex;
|
|
@@ -5,107 +17,93 @@
|
|
|
5
17
|
bottom: 0;
|
|
6
18
|
flex-direction: row;
|
|
7
19
|
width: 100%;
|
|
8
|
-
height:
|
|
20
|
+
height: 223px;
|
|
9
21
|
transition: all 0.5s;
|
|
10
22
|
align-content: flex-start;
|
|
23
|
+
background-color: var(--ebscn-color-keyboard-bg);
|
|
11
24
|
}
|
|
12
25
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right {
|
|
13
26
|
display: flex;
|
|
14
27
|
flex-wrap: wrap;
|
|
15
28
|
width: 80%;
|
|
16
|
-
height:
|
|
29
|
+
height: 223px;
|
|
17
30
|
transition: all 0.5s;
|
|
18
31
|
align-content: flex-start;
|
|
19
32
|
}
|
|
20
33
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right :last-child {
|
|
21
34
|
background: var(--ebscn-color-primary);
|
|
22
|
-
color:
|
|
35
|
+
color: #fff;
|
|
23
36
|
}
|
|
24
|
-
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-key
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
37
|
+
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-key,
|
|
38
|
+
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-confirmKey {
|
|
39
|
+
width: calc(25% - 7.5px);
|
|
40
|
+
margin: 6px 3px 0 3px;
|
|
41
|
+
border-radius: 4.17px;
|
|
42
|
+
height: 48px;
|
|
43
|
+
line-height: 48px;
|
|
28
44
|
text-align: center;
|
|
29
|
-
font-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
45
|
+
font-weight: 400;
|
|
46
|
+
}
|
|
47
|
+
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-key {
|
|
48
|
+
color: var(--ebscn-color-text);
|
|
49
|
+
font-size: 23px;
|
|
33
50
|
background: var(--ebscn-color-white);
|
|
34
51
|
}
|
|
35
52
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-key:active {
|
|
36
|
-
|
|
37
|
-
height: 54px;
|
|
38
|
-
line-height: 54px;
|
|
39
|
-
text-align: center;
|
|
40
|
-
font-size: 24px;
|
|
41
|
-
color: #000000;
|
|
42
|
-
font-weight: 300;
|
|
43
|
-
box-shadow: 0 0 0 1px var(--ebscn-color-light);
|
|
44
|
-
background: var(--ebscn-color-border);
|
|
53
|
+
background: var(--ebscn-color-keyboard-active-background);
|
|
45
54
|
}
|
|
46
55
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-option {
|
|
47
|
-
font-size: var(--ebscn-font-size-
|
|
48
|
-
|
|
56
|
+
font-size: var(--ebscn-font-size-10);
|
|
57
|
+
color: var(--ebscn-color-text);
|
|
58
|
+
background-color: var(--ebscn-color-functionkey-background);
|
|
49
59
|
}
|
|
50
60
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-option:active {
|
|
51
|
-
font-size: var(--ebscn-font-size-
|
|
52
|
-
background:
|
|
61
|
+
font-size: var(--ebscn-font-size-10);
|
|
62
|
+
background-color: var(--ebscn-color-keyboard-active-background);
|
|
53
63
|
}
|
|
54
64
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-delete {
|
|
55
|
-
background: url(../../assets/images/delete.png)
|
|
65
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-functionkey-background) no-repeat center;
|
|
56
66
|
background-size: 24px 24px;
|
|
57
67
|
}
|
|
58
68
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-delete:active {
|
|
59
|
-
background: url(../../assets/images/delete.png)
|
|
69
|
+
background: url(../../assets/images/delete.png) var(--ebscn-color-keyboard-active-background) no-repeat center;
|
|
60
70
|
background-size: 24px 24px;
|
|
61
71
|
}
|
|
62
|
-
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-header {
|
|
63
|
-
padding-top: 24px;
|
|
64
|
-
padding-bottom: 16px;
|
|
65
|
-
font-size: var(--ebscn-font-size-10);
|
|
66
|
-
color: #333333;
|
|
67
|
-
text-align: center;
|
|
68
|
-
font-weight: 500;
|
|
69
|
-
}
|
|
70
72
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-confirmKey {
|
|
73
|
+
font-size: var(--ebscn-font-size-10);
|
|
74
|
+
width: calc(25% - 7.5px);
|
|
71
75
|
background-color: var(--ebscn-color-primary);
|
|
72
|
-
width: 25%;
|
|
73
|
-
height: 54px;
|
|
74
|
-
line-height: 54px;
|
|
75
|
-
text-align: center;
|
|
76
|
-
font-size: var(--ebscn-font-size-11);
|
|
77
|
-
color: #000000;
|
|
78
|
-
font-weight: 300;
|
|
79
|
-
box-shadow: 0 0 0 1px var(--ebscn-color-light);
|
|
80
76
|
}
|
|
81
77
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-confirmKey:active {
|
|
82
78
|
background-color: #D03B21;
|
|
83
79
|
color: var(--ebscn-color-white);
|
|
84
80
|
}
|
|
81
|
+
.ebscn-stock-keyboard .ebscn-stock-keyboard-right-bottom-option {
|
|
82
|
+
font-size: var(--ebscn-font-size-10);
|
|
83
|
+
}
|
|
85
84
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-left {
|
|
86
85
|
width: 20%;
|
|
87
|
-
height: 216px;
|
|
88
86
|
}
|
|
89
87
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-left-key {
|
|
90
88
|
display: flex;
|
|
91
89
|
align-items: center;
|
|
92
90
|
justify-content: center;
|
|
93
|
-
|
|
91
|
+
border-radius: 4.17px;
|
|
92
|
+
height: 48px;
|
|
93
|
+
margin: 6px 3px 6px 6px;
|
|
94
94
|
font-size: var(--ebscn-font-size-10);
|
|
95
95
|
font-weight: 400;
|
|
96
96
|
text-align: center;
|
|
97
|
-
color:
|
|
98
|
-
line-height:
|
|
99
|
-
|
|
100
|
-
background: #e1e3e8;
|
|
97
|
+
color: var(--ebscn-color-text);
|
|
98
|
+
line-height: 48px;
|
|
99
|
+
background-color: var(--ebscn-color-functionkey-background);
|
|
101
100
|
}
|
|
102
101
|
.ebscn-stock-keyboard .ebscn-stock-keyboard-left-key:active {
|
|
103
|
-
|
|
104
|
-
background: #CACBD0;
|
|
102
|
+
background: var(--ebscn-color-keyboard-active-background);
|
|
105
103
|
}
|
|
106
104
|
@supports (bottom: env(safe-area-inset-bottom)) or (constant(safe-area-inset-bottom)) {
|
|
107
105
|
.ebscn-stock-keyboard {
|
|
108
|
-
height: calc(
|
|
109
|
-
height: calc(
|
|
106
|
+
height: calc(223px + env(safe-area-inset-bottom));
|
|
107
|
+
height: calc(223px + constant(safe-area-inset-bottom));
|
|
110
108
|
}
|
|
111
109
|
}
|
|
@@ -17,8 +17,8 @@ export function StockKeyboard(p) {
|
|
|
17
17
|
onClean = props.onClean,
|
|
18
18
|
onConfirm = props.onConfirm,
|
|
19
19
|
onChangeKeyBoard = props.onChangeKeyBoard;
|
|
20
|
-
var keys = [1, 2, 3, 'X', 4, 5, 6, '清除', 7, 8, 9, '隐藏', 'ABC', 0, '', '确定'];
|
|
21
|
-
var leftKeys = ['600', '601', '000', '
|
|
20
|
+
var keys = [1, 2, 3, 'X', 4, 5, 6, '清除', 7, 8, 9, '隐藏', 'ABC', 0, '002', '确定'];
|
|
21
|
+
var leftKeys = ['600', '601', '000', '300'];
|
|
22
22
|
var hideTimer = useRef(null);
|
|
23
23
|
var appearTimer = useRef(null);
|
|
24
24
|
var lastVisible = useRef(null);
|
|
@@ -88,7 +88,7 @@ export function StockKeyboard(p) {
|
|
|
88
88
|
}, keys.map(function (item, index) {
|
|
89
89
|
return React.createElement("div", {
|
|
90
90
|
key: item || index,
|
|
91
|
-
className: cns(item !== '确定' ? "".concat(classPrefix, "-right-key") : "".concat(classPrefix, "-right-confirmKey"), typeof item !== 'number' && item.length && item !== '.' && item !== '确定' ? "".concat(classPrefix, "-right-option") : item == '确定' ? "".concat(classPrefix, "-right-confirmKey") : "".concat(classPrefix, "-right-number-key"), item === 'X' && "".concat(classPrefix, "-right-delete")),
|
|
91
|
+
className: cns(item !== '确定' ? "".concat(classPrefix, "-right-key") : "".concat(classPrefix, "-right-confirmKey"), item === 'ABC' || item === '002' ? "".concat(classPrefix, "-right-bottom-option") : '', typeof item !== 'number' && item !== 'ABC' && item !== '002' && item.length && item !== '.' && item !== '确定' ? "".concat(classPrefix, "-right-option") : item == '确定' ? "".concat(classPrefix, "-right-confirmKey") : "".concat(classPrefix, "-right-number-key"), item === 'X' && "".concat(classPrefix, "-right-delete")),
|
|
92
92
|
onClick: function () {
|
|
93
93
|
if (visible) {
|
|
94
94
|
onKeyPress(item);
|
package/es/global/global.css
CHANGED
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
--ebscn-color-split-line: #EBEBEB;
|
|
48
48
|
}
|
|
49
49
|
html[data-prefers-color-scheme='dark'] {
|
|
50
|
-
--ebscn-color-
|
|
50
|
+
--ebscn-color-blue: #4c7cf1;
|
|
51
51
|
--ebscn-color-success: #34b368;
|
|
52
52
|
--ebscn-color-warning: #ffa930;
|
|
53
53
|
--ebscn-color-danger: #ff4a58;
|
|
54
54
|
--ebscn-color-yellow: #ffa930;
|
|
55
55
|
--ebscn-color-orange: #e65a2b;
|
|
56
56
|
--ebscn-color-wathet: #0d2543;
|
|
57
|
-
--ebscn-color-text: #
|
|
57
|
+
--ebscn-color-text: #ebebeb;
|
|
58
58
|
--ebscn-color-text-secondary: #b3b3b3;
|
|
59
59
|
--ebscn-color-weak: #808080;
|
|
60
60
|
--ebscn-color-light: #4d4d4d;
|
package/es/global/theme-dark.css
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
html[data-prefers-color-scheme='dark'] {
|
|
2
|
-
--ebscn-color-
|
|
2
|
+
--ebscn-color-blue: #4c7cf1;
|
|
3
3
|
--ebscn-color-success: #34b368;
|
|
4
4
|
--ebscn-color-warning: #ffa930;
|
|
5
5
|
--ebscn-color-danger: #ff4a58;
|
|
6
6
|
--ebscn-color-yellow: #ffa930;
|
|
7
7
|
--ebscn-color-orange: #e65a2b;
|
|
8
8
|
--ebscn-color-wathet: #0d2543;
|
|
9
|
-
--ebscn-color-text: #
|
|
9
|
+
--ebscn-color-text: #ebebeb;
|
|
10
10
|
--ebscn-color-text-secondary: #b3b3b3;
|
|
11
11
|
--ebscn-color-weak: #808080;
|
|
12
12
|
--ebscn-color-light: #4d4d4d;
|
package/es/index.d.ts
CHANGED
|
@@ -36,3 +36,7 @@ export { default as Tabs } from './components/tabs';
|
|
|
36
36
|
export { default as Tip } from './components/tip';
|
|
37
37
|
export { default as ToastLoading } from './components/toastLoading';
|
|
38
38
|
export { default as Input } from './components/input';
|
|
39
|
+
export { default as PayInput } from './components/pay-input';
|
|
40
|
+
export { default as MoneyInput } from './components/money-input';
|
|
41
|
+
export { default as FeneInput } from './components/fene-input';
|
|
42
|
+
export { default as CommonInput } from './components/common-input';
|
package/es/index.js
CHANGED
|
@@ -37,8 +37,8 @@ export { default as Switch } from './components/switch';
|
|
|
37
37
|
export { default as Tabs } from './components/tabs';
|
|
38
38
|
export { default as Tip } from './components/tip';
|
|
39
39
|
export { default as ToastLoading } from './components/toastLoading';
|
|
40
|
-
//export { default as PayInput} from './components/pay-input';
|
|
41
|
-
//export { default as MoneyInput } from './components/money-input';
|
|
42
|
-
//export { default as FeneInput } from './components/fene-input';
|
|
43
40
|
export { default as Input } from './components/input';
|
|
44
|
-
|
|
41
|
+
export { default as PayInput } from './components/pay-input';
|
|
42
|
+
export { default as MoneyInput } from './components/money-input';
|
|
43
|
+
export { default as FeneInput } from './components/fene-input';
|
|
44
|
+
export { default as CommonInput } from './components/common-input';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ebscn/ui",
|
|
3
|
-
"version": "1.0.3-beta.
|
|
3
|
+
"version": "1.0.3-beta.6",
|
|
4
4
|
"description": "ebscn react library",
|
|
5
5
|
"module": "./es/index.js",
|
|
6
6
|
"types": "./es/index.d.ts",
|
|
@@ -47,13 +47,5 @@
|
|
|
47
47
|
"react-is": "^18.2.0",
|
|
48
48
|
"react-photo-view": "^1.2.4",
|
|
49
49
|
"use-sync-external-store": "^1.2.0"
|
|
50
|
-
}
|
|
51
|
-
"sideEffects": [
|
|
52
|
-
"**/*.css",
|
|
53
|
-
"**/*.less",
|
|
54
|
-
"./es/index.js",
|
|
55
|
-
"./src/index.ts",
|
|
56
|
-
"./es/global/index.js",
|
|
57
|
-
"./src/global/index.ts"
|
|
58
|
-
]
|
|
50
|
+
}
|
|
59
51
|
}
|