@voplus/morpho-workspace 6.1.56 → 6.1.58

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.
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import { SubTaskListProps } from "../SubTaskList/state";
3
+ import "./index.less";
4
+ declare const TaskListCard: (props: SubTaskListProps) => React.JSX.Element;
5
+ export default TaskListCard;
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+ import { observe } from "@voplus/morpho-ui";
3
+ import ListCard from "@voplus/morpho-ui/es/controls/ListCard";
4
+ import SubTaskList from "../SubTaskList";
5
+ import "./index.less";
6
+ const TaskListCard = (props) => {
7
+ return observe(() => (React.createElement(ListCard, { title: "Task List", className: "task-list-card" },
8
+ React.createElement(SubTaskList, { ...props }))));
9
+ };
10
+ export default TaskListCard;
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/modules/tasks/components/TaskListCard/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,QAAQ,MAAM,wCAAwC,CAAC;AAC9D,OAAO,WAAW,MAAM,gBAAgB,CAAC;AAEzC,OAAO,cAAc,CAAC;AAEtB,MAAM,YAAY,GAAG,CAAC,KAAuB,EAAE,EAAE;IAChD,OAAO,OAAO,CAAC,GAAG,EAAE,CAAC,CACpB,oBAAC,QAAQ,IAAC,KAAK,EAAC,WAAW,EAAC,SAAS,EAAC,gBAAgB;QACrD,oBAAC,WAAW,OAAK,KAAK,GAAI,CAChB,CACX,CAAC,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -0,0 +1,10 @@
1
+ :global {
2
+ .task-list-card {
3
+ .multiple-header-padding {
4
+ display: none;
5
+ }
6
+ .batch-operation-checkbox {
7
+ display: none;
8
+ }
9
+ }
10
+ }
@@ -133,6 +133,7 @@
133
133
  height: 18px;
134
134
  line-height: 18px;
135
135
  border-radius: 6px;
136
+ background: @purple-primary-color;
136
137
  }
137
138
  }
138
139
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voplus/morpho-workspace",
3
- "version": "6.1.56",
3
+ "version": "6.1.58",
4
4
  "description": "morpho workspace module",
5
5
  "repository": {
6
6
  "type": "git",