@gm-mobile/c-react 3.9.6 → 3.9.7-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gm-mobile/c-react",
3
- "version": "3.9.6",
3
+ "version": "3.9.7-beta.1",
4
4
  "description": "> TODO: description",
5
5
  "author": "liyatang <liyatang@qq.com>",
6
6
  "homepage": "https://github.com/gmfe/gm-mobile#readme",
@@ -21,9 +21,9 @@
21
21
  "url": "https://github.com/gmfe/gm-mobile/issues"
22
22
  },
23
23
  "dependencies": {
24
- "@gm-mobile/c-font": "^3.9.6",
25
- "@gm-mobile/c-tool": "^3.9.6",
26
- "@gm-mobile/locales": "^3.9.6"
24
+ "@gm-mobile/c-font": "^3.9.7-beta.1",
25
+ "@gm-mobile/c-tool": "^3.9.7-beta.1",
26
+ "@gm-mobile/locales": "^3.9.7-beta.1"
27
27
  },
28
28
  "peerDependencies": {
29
29
  "@tarojs/components": "3.0.18",
@@ -33,5 +33,5 @@
33
33
  "prop-types": "^15.7.2",
34
34
  "react": "^16.13.1"
35
35
  },
36
- "gitHead": "695c72ec31adad0a9a4f6d1253394491cc2fae83"
36
+ "gitHead": "8d9525acaf27467649b1ead173a12b0e23772d83"
37
37
  }
@@ -11,9 +11,9 @@ import { Flex } from '../flex'
11
11
 
12
12
  /** 数字按钮 */
13
13
  export const defaultDigitalKeys = [
14
- ...['1', '2', '3'].map((v, _) => new DKBtn({ label: v })),
15
- ...['4', '5', '6'].map((v, _) => new DKBtn({ label: v })),
16
14
  ...['7', '8', '9'].map((v, _) => new DKBtn({ label: v })),
15
+ ...['4', '5', '6'].map((v, _) => new DKBtn({ label: v })),
16
+ ...['1', '2', '3'].map((v, _) => new DKBtn({ label: v })),
17
17
  new DKBtn({
18
18
  label: '.',
19
19
  fn: (value = '') => {
@@ -14,7 +14,7 @@
14
14
  }
15
15
  .keyboard-item {
16
16
  padding: 3.5px;
17
- height: 44px;
17
+ height: 60px;
18
18
  .keyboard-button {
19
19
  display: flex;
20
20
  font-family: DINPro-Medium, DINPro;
@@ -59,21 +59,19 @@
59
59
  .bt-delete {
60
60
  padding-right: 10px;
61
61
  .square {
62
- width: 18px;
63
- height: 18px;
62
+ width: 20px;
63
+ height: 20px;
64
64
  background: #000000;
65
65
  border-bottom-right-radius: 2px;
66
66
  border-top-right-radius: 2px;
67
- border-top-left-radius: 3px;
68
- border-bottom-left-radius: 3px;
67
+ padding-right: 2px;
69
68
  }
70
69
 
71
70
  .triangle {
72
71
  width: 0;
73
72
  height: 0;
74
- border: 9px solid;
73
+ border: 10px solid;
75
74
  border-color: transparent #000000 transparent transparent;
76
- margin-right: -2px;
77
75
  }
78
76
  }
79
77
  }