@easyv/react-components 0.0.16 → 0.0.17

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.
@@ -1,9 +1,24 @@
1
1
  .arco-modal {
2
2
  .arco-modal-header {
3
+ height: 56px;
4
+ padding: 0 24px;
5
+
3
6
  .arco-modal-title {
4
7
  text-align: left;
5
8
  }
6
9
  }
10
+
11
+ .arco-modal-close-icon {
12
+ font-size: 14px;
13
+ }
14
+
15
+ .arco-modal-content {
16
+ padding: 24px;
17
+ }
18
+
19
+ .arco-modal-footer {
20
+ padding: 12px 24px;
21
+ }
7
22
  }
8
23
 
9
24
  .arco-modal-simple {
@@ -35,6 +35,8 @@ export default function Points(props) {
35
35
  return i === active ? _objectSpread(_objectSpread({}, d), {}, {
36
36
  offset: newOffset
37
37
  }) : d;
38
+ }).sort(function (a, b) {
39
+ return a.offset - b.offset;
38
40
  });
39
41
  onChange(newDots);
40
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easyv/react-components",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "a react component library base on arco design",
5
5
  "license": "MIT",
6
6
  "module": "dist/index.js",