ebaoferc 0.3.5 → 1.0.3

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.
Files changed (35) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +43 -43
  3. package/dist/components/ImageViewTrigger/index.less +25 -25
  4. package/dist/components/MindGraph/core/graphic/drag.js +15 -15
  5. package/dist/components/MindGraph/core/graphic/index.js +105 -105
  6. package/dist/components/MindGraph/core/helper/depth-first-walk-tree.js +4 -4
  7. package/dist/components/MindGraph/core/helper/descendant.js +3 -3
  8. package/dist/components/MindGraph/core/helper/get-layout-calc-children.js +6 -6
  9. package/dist/components/MindGraph/core/helper/index.d.ts +15 -15
  10. package/dist/components/MindGraph/core/helper/judge-if-all-child-fold.js +4 -4
  11. package/dist/components/MindGraph/core/helper/judge-if-heir-and-fold.js +6 -6
  12. package/dist/components/MindGraph/core/helper/judge-if-visual-leaf.js +3 -3
  13. package/dist/components/MindGraph/core/index.d.ts +2 -6
  14. package/dist/components/MindGraph/core/index.js +26 -26
  15. package/dist/components/MindGraph/core/process/layout/structured/get-node-cross-boundary.js +7 -7
  16. package/dist/components/MindGraph/core/process/layout/type.js +20 -20
  17. package/dist/components/MindGraph/core/process/visible.js +3 -3
  18. package/dist/components/MindGraph/core/render/index.d.ts +12 -12
  19. package/dist/components/MindGraph/react/component/index.module.less +71 -71
  20. package/dist/components/MindGraph/react/hook/use-shadow-state.d.ts +1 -1
  21. package/dist/components/MindGraph/react/scrollbar/axis/index.module.less +47 -47
  22. package/dist/components/QueryProCard/index.less +9 -9
  23. package/dist/components/SectionTitleBar/index.less +31 -31
  24. package/dist/components/SliderVerify/style.module.less +119 -119
  25. package/dist/components/StyledQueryFilter/index.less +34 -34
  26. package/dist/components/StyledTable/index.d.ts +8 -4
  27. package/dist/components/StyledTable/index.js +23 -11
  28. package/dist/components/StyledTable/index.less +18 -18
  29. package/dist/components/ThemeStatusTag/index.less +11 -11
  30. package/dist/hooks/index.d.ts +1 -0
  31. package/dist/hooks/index.js +1 -0
  32. package/dist/hooks/useTabRouteWatcher/index.d.ts +5 -0
  33. package/dist/hooks/useTabRouteWatcher/index.js +26 -0
  34. package/dist/utils/format/index.js +14 -14
  35. package/package.json +101 -100
@@ -1,119 +1,119 @@
1
- .slider {
2
- background-color: #fff;
3
- width: 278px;
4
- z-index: 999;
5
- box-sizing: border-box;
6
- padding: 9px;
7
- border-radius: 6px;
8
- box-shadow: 0 0 11px 0 #999;
9
- user-select: none;
10
- }
11
-
12
- .slider .content {
13
- width: 100%;
14
- height: 159px;
15
- position: relative;
16
- }
17
-
18
- .bg-img-div {
19
- width: 100%;
20
- height: 100%;
21
- position: absolute;
22
- transform: translate(0, 0);
23
- }
24
-
25
- .slider-img-div {
26
- height: 100%;
27
- position: absolute;
28
- transform: translate(0, 0);
29
- }
30
-
31
- .bg-img-div img {
32
- width: 100%;
33
- -webkit-user-drag: none;
34
- -khtml-user-drag: none;
35
- -moz-user-drag: none;
36
- -o-user-drag: none;
37
- }
38
-
39
- .slider-img-div img {
40
- height: 100%;
41
- -webkit-user-drag: none;
42
- -khtml-user-drag: none;
43
- -moz-user-drag: none;
44
- -o-user-drag: none;
45
- }
46
-
47
- .slider .slider-move {
48
- width: 100%;
49
- margin: 11px 0;
50
- position: relative;
51
- }
52
-
53
- .slider .bottom {
54
- width: 100%;
55
- display: flex;
56
- justify-content: flex-end;
57
- }
58
-
59
- .refresh-btn,
60
- .close-btn {
61
- display: inline-block;
62
- }
63
-
64
- .slider-move .slider-move-track {
65
- line-height: 32px;
66
- font-size: 14px;
67
- text-align: center;
68
- white-space: nowrap;
69
- color: #88949d;
70
- user-select: none;
71
- border-radius: 20px;
72
- background: #dfe1e2;
73
- box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 15%);
74
- }
75
-
76
- .slider-move .slider-move-btn {
77
- transform: translate(0, 0);
78
- position: absolute;
79
- top: -8px;
80
- left: 0;
81
- width: 48px;
82
- height: 48px;
83
- -webkit-user-drag: none;
84
- -khtml-user-drag: none;
85
- -moz-user-drag: none;
86
- -o-user-drag: none;
87
- box-shadow: 0 0 8px 0 rgba(0, 0, 0, 30%), inset 0 0 6px 0 rgba(0, 0, 0, 5%);
88
- background-color: white;
89
- border-radius: 50%;
90
- display: flex;
91
- justify-content: center;
92
- align-items: center;
93
- }
94
-
95
- .slider-move .slider-move-btn-img {
96
- -webkit-user-drag: none;
97
- -khtml-user-drag: none;
98
- -moz-user-drag: none;
99
- -o-user-drag: none;
100
- display: flex;
101
- }
102
-
103
- .slider-move-btn:hover,
104
- .close-btn:hover,
105
- .refresh-btn:hover {
106
- cursor: pointer;
107
- }
108
-
109
- .bottom .close-btn {
110
- width: 20px;
111
- height: 20px;
112
- margin: 5px;
113
- }
114
-
115
- .bottom .refresh-btn {
116
- width: 20px;
117
- height: 20px;
118
- margin: 5px;
119
- }
1
+ .slider {
2
+ background-color: #fff;
3
+ width: 278px;
4
+ z-index: 999;
5
+ box-sizing: border-box;
6
+ padding: 9px;
7
+ border-radius: 6px;
8
+ box-shadow: 0 0 11px 0 #999;
9
+ user-select: none;
10
+ }
11
+
12
+ .slider .content {
13
+ width: 100%;
14
+ height: 159px;
15
+ position: relative;
16
+ }
17
+
18
+ .bg-img-div {
19
+ width: 100%;
20
+ height: 100%;
21
+ position: absolute;
22
+ transform: translate(0, 0);
23
+ }
24
+
25
+ .slider-img-div {
26
+ height: 100%;
27
+ position: absolute;
28
+ transform: translate(0, 0);
29
+ }
30
+
31
+ .bg-img-div img {
32
+ width: 100%;
33
+ -webkit-user-drag: none;
34
+ -khtml-user-drag: none;
35
+ -moz-user-drag: none;
36
+ -o-user-drag: none;
37
+ }
38
+
39
+ .slider-img-div img {
40
+ height: 100%;
41
+ -webkit-user-drag: none;
42
+ -khtml-user-drag: none;
43
+ -moz-user-drag: none;
44
+ -o-user-drag: none;
45
+ }
46
+
47
+ .slider .slider-move {
48
+ width: 100%;
49
+ margin: 11px 0;
50
+ position: relative;
51
+ }
52
+
53
+ .slider .bottom {
54
+ width: 100%;
55
+ display: flex;
56
+ justify-content: flex-end;
57
+ }
58
+
59
+ .refresh-btn,
60
+ .close-btn {
61
+ display: inline-block;
62
+ }
63
+
64
+ .slider-move .slider-move-track {
65
+ line-height: 32px;
66
+ font-size: 14px;
67
+ text-align: center;
68
+ white-space: nowrap;
69
+ color: #88949d;
70
+ user-select: none;
71
+ border-radius: 20px;
72
+ background: #dfe1e2;
73
+ box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 15%);
74
+ }
75
+
76
+ .slider-move .slider-move-btn {
77
+ transform: translate(0, 0);
78
+ position: absolute;
79
+ top: -8px;
80
+ left: 0;
81
+ width: 48px;
82
+ height: 48px;
83
+ -webkit-user-drag: none;
84
+ -khtml-user-drag: none;
85
+ -moz-user-drag: none;
86
+ -o-user-drag: none;
87
+ box-shadow: 0 0 8px 0 rgba(0, 0, 0, 30%), inset 0 0 6px 0 rgba(0, 0, 0, 5%);
88
+ background-color: white;
89
+ border-radius: 50%;
90
+ display: flex;
91
+ justify-content: center;
92
+ align-items: center;
93
+ }
94
+
95
+ .slider-move .slider-move-btn-img {
96
+ -webkit-user-drag: none;
97
+ -khtml-user-drag: none;
98
+ -moz-user-drag: none;
99
+ -o-user-drag: none;
100
+ display: flex;
101
+ }
102
+
103
+ .slider-move-btn:hover,
104
+ .close-btn:hover,
105
+ .refresh-btn:hover {
106
+ cursor: pointer;
107
+ }
108
+
109
+ .bottom .close-btn {
110
+ width: 20px;
111
+ height: 20px;
112
+ margin: 5px;
113
+ }
114
+
115
+ .bottom .refresh-btn {
116
+ width: 20px;
117
+ height: 20px;
118
+ margin: 5px;
119
+ }
@@ -1,34 +1,34 @@
1
- .custom-styled-query-filter {
2
- display: flex;
3
- justify-content: space-between;
4
- column-gap: 16px;
5
-
6
- &__form {
7
- flex: 1;
8
- }
9
-
10
- &__right {
11
- display: flex;
12
- flex-direction: column;
13
- justify-content: space-between;
14
- align-items: flex-end;
15
-
16
- .ant-btn-link {
17
- padding-right: 0;
18
- margin-bottom: 28px;
19
- }
20
- }
21
-
22
- &__submitter {
23
- display: flex;
24
- column-gap: 8px;
25
- }
26
-
27
- .ant-form-item-no-colon {
28
- margin-right: 10px;
29
-
30
- &::after {
31
- display: none;
32
- }
33
- }
34
- }
1
+ .custom-styled-query-filter {
2
+ display: flex;
3
+ justify-content: space-between;
4
+ column-gap: 16px;
5
+
6
+ &__form {
7
+ flex: 1;
8
+ }
9
+
10
+ &__right {
11
+ display: flex;
12
+ flex-direction: column;
13
+ justify-content: space-between;
14
+ align-items: flex-end;
15
+
16
+ .ant-btn-link {
17
+ padding-right: 0;
18
+ margin-bottom: 28px;
19
+ }
20
+ }
21
+
22
+ &__submitter {
23
+ display: flex;
24
+ column-gap: 8px;
25
+ }
26
+
27
+ .ant-form-item-no-colon {
28
+ margin-right: 10px;
29
+
30
+ &::after {
31
+ display: none;
32
+ }
33
+ }
34
+ }
@@ -1,15 +1,18 @@
1
1
  import type { TableProps } from 'antd';
2
2
  import { SetStateAction } from 'react';
3
3
  import './index.less';
4
+ type StyledTableProps = TableProps<any> & {
5
+ maxCellWidth?: number;
6
+ maxTooltipWidth?: number;
7
+ maxTooltipHeight?: number;
8
+ };
4
9
  export declare const PaginationCommonProps: {
5
10
  showSizeChanger: boolean;
6
11
  showQuickJumper: boolean;
7
12
  showTotal: (total: number) => string;
8
13
  };
9
- export declare const TableCellText: (text: string | number, maxWidth?: number) => import("react/jsx-runtime").JSX.Element | "-";
10
- export default function (props: TableProps<any> & {
11
- maxCellWidth?: number;
12
- }): import("react/jsx-runtime").JSX.Element;
14
+ export declare const TableCellText: (text: string | number, cellWidth: any, maxTooltipWidth: any, maxTooltipHeight: any) => "-" | import("react/jsx-runtime").JSX.Element;
15
+ export default function (props: StyledTableProps): import("react/jsx-runtime").JSX.Element;
13
16
  export declare const useRowSelection: () => {
14
17
  selectedRowKeys: any[];
15
18
  selectedRows: any[];
@@ -26,3 +29,4 @@ export declare const useRowSelection: () => {
26
29
  };
27
30
  clearRows: () => void;
28
31
  };
32
+ export {};
@@ -1,5 +1,6 @@
1
1
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
- var _excluded = ["columns", "pagination", "maxCellWidth"];
2
+ var _excluded = ["columns", "pagination", "maxCellWidth", "maxTooltipWidth", "maxTooltipHeight"],
3
+ _excluded2 = ["longTextWidth", "maxTooltipWidth", "maxTooltipHeight"];
3
4
  function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
4
5
  function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
5
6
  function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
@@ -30,26 +31,30 @@ export var PaginationCommonProps = {
30
31
  showQuickJumper: true,
31
32
  showTotal: showTotal
32
33
  };
33
- export var TableCellText = function TableCellText(text) {
34
- var maxWidth = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 230;
34
+ export var TableCellText = function TableCellText(text, cellWidth, maxTooltipWidth, maxTooltipHeight) {
35
35
  var val = text || text === 0 ? text : '-';
36
36
  if (val === '-') return '-';
37
+ var _maxWidth = maxTooltipWidth || cellWidth + 100;
37
38
  return /*#__PURE__*/_jsx(Typography.Text, {
38
39
  ellipsis: {
39
40
  tooltip: {
40
41
  color: '#fff',
41
42
  title: val,
42
43
  placement: 'topLeft',
43
- overlayInnerStyle: {
44
- color: '#000',
45
- width: maxWidth + 100,
46
- lineHeight: '22px',
47
- padding: '15px'
44
+ styles: {
45
+ body: {
46
+ color: '#000',
47
+ width: _maxWidth,
48
+ lineHeight: '22px',
49
+ maxHeight: maxTooltipHeight,
50
+ overflow: 'auto',
51
+ padding: '15px 10px 15px 15px'
52
+ }
48
53
  }
49
54
  }
50
55
  },
51
56
  style: {
52
- maxWidth: maxWidth
57
+ maxWidth: cellWidth
53
58
  },
54
59
  children: val
55
60
  });
@@ -59,13 +64,20 @@ export default function (props) {
59
64
  pagination = props.pagination,
60
65
  _props$maxCellWidth = props.maxCellWidth,
61
66
  maxCellWidth = _props$maxCellWidth === void 0 ? 230 : _props$maxCellWidth,
67
+ maxTooltipWidth = props.maxTooltipWidth,
68
+ _props$maxTooltipHeig = props.maxTooltipHeight,
69
+ maxTooltipHeight = _props$maxTooltipHeig === void 0 ? 300 : _props$maxTooltipHeig,
62
70
  rest = _objectWithoutProperties(props, _excluded);
63
71
  var _columns = columns === null || columns === void 0 ? void 0 : columns.map(function (item) {
64
- return _objectSpread(_objectSpread({}, item), {}, {
72
+ var longTextWidth = item.longTextWidth,
73
+ _maxTooltipWidth = item.maxTooltipWidth,
74
+ _maxTooltipHeight = item.maxTooltipHeight,
75
+ rest = _objectWithoutProperties(item, _excluded2);
76
+ return _objectSpread(_objectSpread({}, rest), {}, {
65
77
  ellipsis: false,
66
78
  render: function render(val, record, index) {
67
79
  var renderVal = item.render ? item.render(val, record, index) : val;
68
- return /*#__PURE__*/isValidElement(renderVal) ? renderVal : TableCellText(renderVal, item.longTextWidth || maxCellWidth);
80
+ return /*#__PURE__*/isValidElement(renderVal) ? renderVal : TableCellText(renderVal, longTextWidth || maxCellWidth, _maxTooltipWidth || maxTooltipWidth, _maxTooltipHeight || maxTooltipHeight);
69
81
  }
70
82
  });
71
83
  });
@@ -1,18 +1,18 @@
1
- .styled-table-row {
2
- td {
3
- padding-top: 12.67px !important;
4
- padding-bottom: 12.67px !important;
5
- }
6
-
7
- &:hover {
8
- td {
9
- background-color: #f0f0f0 !important;
10
- }
11
- }
12
- }
13
-
14
- .styled-table-zebra-stripe {
15
- td {
16
- background: #f9f9f9 !important;
17
- }
18
- }
1
+ .styled-table-row {
2
+ td {
3
+ padding-top: 12.67px !important;
4
+ padding-bottom: 12.67px !important;
5
+ }
6
+
7
+ &:hover {
8
+ td {
9
+ background-color: #f0f0f0 !important;
10
+ }
11
+ }
12
+ }
13
+
14
+ .styled-table-zebra-stripe {
15
+ td {
16
+ background: #f9f9f9 !important;
17
+ }
18
+ }
@@ -1,11 +1,11 @@
1
- .theme-status-tag {
2
- display: flex;
3
- align-items: center;
4
- gap: 4px;
5
-
6
- .circle {
7
- width: 7px;
8
- height: 7px;
9
- border-radius: 50%;
10
- }
11
- }
1
+ .theme-status-tag {
2
+ display: flex;
3
+ align-items: center;
4
+ gap: 4px;
5
+
6
+ .circle {
7
+ width: 7px;
8
+ height: 7px;
9
+ border-radius: 50%;
10
+ }
11
+ }
@@ -1,3 +1,4 @@
1
1
  export * from './useBIHooks';
2
2
  export * from './useEnhancePagination';
3
+ export * from './useTabRouteWatcher';
3
4
  export * from './useTabsTablePagination/index';
@@ -1,3 +1,4 @@
1
1
  export * from "./useBIHooks";
2
2
  export * from "./useEnhancePagination";
3
+ export * from "./useTabRouteWatcher";
3
4
  export * from "./useTabsTablePagination/index";
@@ -0,0 +1,5 @@
1
+ /**
2
+ * 项目多tab模式,某个tab下,监听路由变化,当重新回到该tab时,执行回调
3
+ * @param onRefresh 路由变化时执行的回调
4
+ */
5
+ export declare const useTabRouteWatcher: (onRefresh: () => void) => void;
@@ -0,0 +1,26 @@
1
+ import { history } from '@umijs/max';
2
+ import { useEffect, useRef } from 'react';
3
+
4
+ /**
5
+ * 项目多tab模式,某个tab下,监听路由变化,当重新回到该tab时,执行回调
6
+ * @param onRefresh 路由变化时执行的回调
7
+ */
8
+ export var useTabRouteWatcher = function useTabRouteWatcher(onRefresh) {
9
+ var pathname = useRef(window.location.pathname);
10
+ useEffect(function () {
11
+ var unlisten = history.listen(function (_ref) {
12
+ var location = _ref.location;
13
+ if (location.pathname === pathname.current) {
14
+ try {
15
+ onRefresh === null || onRefresh === void 0 || onRefresh();
16
+ } catch (error) {
17
+ console.error(error);
18
+ }
19
+ }
20
+ });
21
+ return function () {
22
+ unlisten();
23
+ };
24
+ // eslint-disable-next-line react-hooks/exhaustive-deps
25
+ }, []);
26
+ };
@@ -26,17 +26,17 @@ export function arrayToSingleValue(value) {
26
26
  return value;
27
27
  }
28
28
 
29
- /**
30
- * 判断数据类型 Number/String/Boolean/Null/Undefined/Array/Object/Symbol/Date/RegExp/FormData
31
- * @param data
32
- * @returns
29
+ /**
30
+ * 判断数据类型 Number/String/Boolean/Null/Undefined/Array/Object/Symbol/Date/RegExp/FormData
31
+ * @param data
32
+ * @returns
33
33
  */
34
34
  export function typeOfData(data) {
35
35
  return Object.prototype.toString.call(data).slice(8, -1);
36
36
  }
37
37
 
38
- /**
39
- * 给对象第一层的字符串属性值做 trim
38
+ /**
39
+ * 给对象第一层的字符串属性值做 trim
40
40
  */
41
41
  export function trimObjectValuesFirstLayer(obj) {
42
42
  if (typeOfData(obj) !== 'Object') return obj;
@@ -48,10 +48,10 @@ export function trimObjectValuesFirstLayer(obj) {
48
48
  }
49
49
  return result;
50
50
  }
51
- /**
52
- * 表格序号
53
- * @param TableRiwNoType
54
- * @returns
51
+ /**
52
+ * 表格序号
53
+ * @param TableRiwNoType
54
+ * @returns
55
55
  */
56
56
  export function computedTableRowSerialNo(_ref) {
57
57
  var pagination = _ref.pagination,
@@ -65,10 +65,10 @@ export function computedTableRowSerialNo(_ref) {
65
65
  }
66
66
  }
67
67
 
68
- /**
69
- * 对中国手机号进行加密中间四位。
70
- * @param phoneNumber - 需要加密的手机号
71
- * @returns 加密后的手机号
68
+ /**
69
+ * 对中国手机号进行加密中间四位。
70
+ * @param phoneNumber - 需要加密的手机号
71
+ * @returns 加密后的手机号
72
72
  */
73
73
  export function encryptPhoneNumber(phoneNumber) {
74
74
  // 将中间四位替换为星号