@zgfe/modules-dm 1.0.34-heyh.10 → 1.0.34-heyh.11

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.
@@ -332,8 +332,11 @@ var EventGroupingDrawer = function EventGroupingDrawer(props) {
332
332
  title: null,
333
333
  content: moveContent
334
334
  }, /*#__PURE__*/React.createElement("span", {
335
+ className: "".concat(groupingData.length > 1 ? '' : 'not-operable'),
335
336
  onClick: function onClick() {
336
- return eventMove(item.groupId);
337
+ if (groupingData.length > 1) {
338
+ eventMove(item.groupId);
339
+ }
337
340
  }
338
341
  }, "\u79FB\u52A8")), /*#__PURE__*/React.createElement("span", {
339
342
  onClick: function onClick() {
@@ -499,8 +499,11 @@
499
499
  flex-wrap: wrap;
500
500
  justify-content: flex-start;
501
501
  width: 100%;
502
+ gap: 12px;
502
503
  .checkbox-item {
503
- width: 25%;
504
+ width: calc(25% - 9px);
505
+ background: #FAFAFB;
506
+ padding: 9px 0 9px 16px;
504
507
  .ant-checkbox + span {
505
508
  user-select: none;
506
509
  display: -webkit-box;
@@ -685,3 +688,9 @@
685
688
  .sortable-componnet-sortableList {
686
689
  z-index: 9999;
687
690
  }
691
+
692
+ .not-operable{
693
+ color: #ccd0d4;
694
+ cursor: not-allowed!important;
695
+ user-select: none;
696
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zgfe/modules-dm",
3
- "version": "1.0.34-heyh.10",
3
+ "version": "1.0.34-heyh.11",
4
4
  "license": "ISC",
5
5
  "module": "es/index.js",
6
6
  "typings": "es/index.d.ts",
@@ -52,7 +52,7 @@
52
52
  "umi-request": "^1.4.0",
53
53
  "yorkie": "^2.0.0"
54
54
  },
55
- "gitHead": "11760c86c52f86c0564a186a2c0e3922b2429b0e",
55
+ "gitHead": "03f82d438c992840be8dc377ee08fbc35c190b5b",
56
56
  "gitHooks": {
57
57
  "pre-commit": "lint-staged"
58
58
  }