ebaoferc 2.0.8 → 2.0.9-beta.0
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/LICENSE +21 -21
- package/README.md +43 -43
- package/dist/components/BlockHeader/style.less +52 -52
- package/dist/components/ImageViewTrigger/index.less +25 -25
- package/dist/components/MaskInput/index.d.ts +16 -0
- package/dist/components/MaskInput/index.js +130 -0
- package/dist/components/MaskInput/style.module.less +4 -0
- package/dist/components/MaskTxt/index.d.ts +16 -0
- package/dist/components/MaskTxt/index.js +121 -0
- package/dist/components/MaskTxt/style.module.less +6 -0
- package/dist/components/MindGraph/core/graphic/drag.js +15 -15
- package/dist/components/MindGraph/core/graphic/index.js +105 -105
- package/dist/components/MindGraph/core/helper/depth-first-walk-tree.js +4 -4
- package/dist/components/MindGraph/core/helper/descendant.js +3 -3
- package/dist/components/MindGraph/core/helper/get-layout-calc-children.js +6 -6
- package/dist/components/MindGraph/core/helper/index.d.ts +15 -15
- package/dist/components/MindGraph/core/helper/judge-if-all-child-fold.js +4 -4
- package/dist/components/MindGraph/core/helper/judge-if-heir-and-fold.js +6 -6
- package/dist/components/MindGraph/core/helper/judge-if-visual-leaf.js +3 -3
- package/dist/components/MindGraph/core/index.d.ts +6 -2
- package/dist/components/MindGraph/core/index.js +26 -26
- package/dist/components/MindGraph/core/process/layout/structured/get-node-cross-boundary.js +7 -7
- package/dist/components/MindGraph/core/process/layout/type.js +20 -20
- package/dist/components/MindGraph/core/process/visible.js +3 -3
- package/dist/components/MindGraph/core/render/index.d.ts +12 -12
- package/dist/components/MindGraph/react/component/index.module.less +71 -71
- package/dist/components/MindGraph/react/hook/use-shadow-state.d.ts +1 -1
- package/dist/components/MindGraph/react/scrollbar/axis/index.module.less +47 -47
- package/dist/components/QueryProCard/index.less +9 -9
- package/dist/components/SectionTitleBar/index.less +31 -31
- package/dist/components/SliderVerify/style.module.less +119 -119
- package/dist/components/StyledModalForm/index.d.ts +1 -1
- package/dist/components/StyledModalForm/index.less +51 -51
- package/dist/components/StyledQueryFilter/index.js +11 -9
- package/dist/components/StyledQueryFilter/index.less +26 -26
- package/dist/components/StyledTable/index.less +18 -18
- package/dist/components/ThemeStatusTag/index.less +11 -11
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +2 -0
- package/dist/hooks/usePathname/index.js +2 -2
- package/dist/typings.d.ts +20 -20
- package/dist/utils/format/index.js +14 -14
- package/package.json +102 -102
|
@@ -8,57 +8,57 @@ import { DraggableLayout as DraggableLayoutClass } from "./process/layout/type";
|
|
|
8
8
|
export var Mind;
|
|
9
9
|
(function (_Mind) {
|
|
10
10
|
var ChildAlignMode = _Mind.ChildAlignMode = {
|
|
11
|
-
/**
|
|
12
|
-
* 子代对齐模式
|
|
11
|
+
/**
|
|
12
|
+
* 子代对齐模式
|
|
13
13
|
*/
|
|
14
14
|
descendantCenter: 'descendant-center',
|
|
15
|
-
/**
|
|
16
|
-
* 直系子代节点中心对齐
|
|
15
|
+
/**
|
|
16
|
+
* 直系子代节点中心对齐
|
|
17
17
|
*/
|
|
18
18
|
heirCenter: 'heir-center',
|
|
19
|
-
/**
|
|
20
|
-
* 结构化规整模式
|
|
19
|
+
/**
|
|
20
|
+
* 结构化规整模式
|
|
21
21
|
*/
|
|
22
22
|
structured: 'structured'
|
|
23
23
|
};
|
|
24
24
|
var Orientation = _Mind.Orientation = {
|
|
25
|
-
/**
|
|
26
|
-
* 处于正向区域
|
|
25
|
+
/**
|
|
26
|
+
* 处于正向区域
|
|
27
27
|
*/
|
|
28
28
|
negative: 'negative',
|
|
29
|
-
/**
|
|
30
|
-
* 处于负向区域
|
|
29
|
+
/**
|
|
30
|
+
* 处于负向区域
|
|
31
31
|
*/
|
|
32
32
|
positive: 'positive',
|
|
33
|
-
/**
|
|
34
|
-
* 根节点
|
|
33
|
+
/**
|
|
34
|
+
* 根节点
|
|
35
35
|
*/
|
|
36
36
|
root: 'root'
|
|
37
37
|
};
|
|
38
38
|
var Direction = _Mind.Direction = {
|
|
39
|
-
/**
|
|
40
|
-
* x轴水平方向渲染
|
|
39
|
+
/**
|
|
40
|
+
* x轴水平方向渲染
|
|
41
41
|
*/
|
|
42
42
|
x: 'x',
|
|
43
|
-
/**
|
|
44
|
-
* y轴垂直方向渲染
|
|
43
|
+
/**
|
|
44
|
+
* y轴垂直方向渲染
|
|
45
45
|
*/
|
|
46
46
|
y: 'y'
|
|
47
47
|
};
|
|
48
48
|
var LinkStyle = _Mind.LinkStyle = {
|
|
49
|
-
/**
|
|
50
|
-
* 贝塞尔曲线
|
|
49
|
+
/**
|
|
50
|
+
* 贝塞尔曲线
|
|
51
51
|
*/
|
|
52
52
|
bezier: 'bezier',
|
|
53
|
-
/**
|
|
54
|
-
* 线性
|
|
55
|
-
* - 线性只有在 ChildAlignMode.structured 风格下表现最佳
|
|
53
|
+
/**
|
|
54
|
+
* 线性
|
|
55
|
+
* - 线性只有在 ChildAlignMode.structured 风格下表现最佳
|
|
56
56
|
*/
|
|
57
57
|
line: 'line'
|
|
58
58
|
};
|
|
59
59
|
|
|
60
|
-
/**
|
|
61
|
-
* 拖动关联信息
|
|
60
|
+
/**
|
|
61
|
+
* 拖动关联信息
|
|
62
62
|
*/
|
|
63
63
|
|
|
64
64
|
var RelativeX = _Mind.RelativeX = {
|
|
@@ -72,9 +72,9 @@ export var Mind;
|
|
|
72
72
|
top: 'top'
|
|
73
73
|
};
|
|
74
74
|
|
|
75
|
-
/**
|
|
76
|
-
* 位移/缩放事件函数
|
|
77
|
-
* @param event the underlying input event, such as mousemove or touchmove
|
|
75
|
+
/**
|
|
76
|
+
* 位移/缩放事件函数
|
|
77
|
+
* @param event the underlying input event, such as mousemove or touchmove
|
|
78
78
|
*/
|
|
79
79
|
|
|
80
80
|
var Graphic = _Mind.Graphic = GraphicClass;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Helper } from "../../../helper";
|
|
2
|
-
/**
|
|
3
|
-
* 获取节点交叉轴边界
|
|
4
|
-
* - 如果存在视觉子代,请保证视觉子代边界计算完成
|
|
5
|
-
* @param cache
|
|
6
|
-
* @param children
|
|
7
|
-
* @param vertical
|
|
8
|
-
* @param cacheMap
|
|
2
|
+
/**
|
|
3
|
+
* 获取节点交叉轴边界
|
|
4
|
+
* - 如果存在视觉子代,请保证视觉子代边界计算完成
|
|
5
|
+
* @param cache
|
|
6
|
+
* @param children
|
|
7
|
+
* @param vertical
|
|
8
|
+
* @param cacheMap
|
|
9
9
|
*/
|
|
10
10
|
export var getNodeCrossBoundary = function getNodeCrossBoundary(cache, children, vertical, cacheMap) {
|
|
11
11
|
var boundary = {
|
|
@@ -10,38 +10,38 @@ import { Helper } from "../../helper";
|
|
|
10
10
|
export var DraggableLayout = /*#__PURE__*/_createClass(function DraggableLayout() {
|
|
11
11
|
_classCallCheck(this, DraggableLayout);
|
|
12
12
|
});
|
|
13
|
-
/**
|
|
14
|
-
* 计算拖动关联信息
|
|
15
|
-
* @param context 上下文
|
|
16
|
-
* @param context.cacheMap 缓存地图
|
|
17
|
-
* @param context.draggingRect 正在拖动节点的大小以及位置
|
|
18
|
-
* @param context.canBeAttachedNodes 可以被关联的节点
|
|
19
|
-
* @param context.ignoreNodes 需要被忽略的节点
|
|
20
|
-
* @param context.root 根节点
|
|
21
|
-
* @param context.options 选项
|
|
22
|
-
* @return 如果没有合法的节点关联,则返回`undefined`
|
|
13
|
+
/**
|
|
14
|
+
* 计算拖动关联信息
|
|
15
|
+
* @param context 上下文
|
|
16
|
+
* @param context.cacheMap 缓存地图
|
|
17
|
+
* @param context.draggingRect 正在拖动节点的大小以及位置
|
|
18
|
+
* @param context.canBeAttachedNodes 可以被关联的节点
|
|
19
|
+
* @param context.ignoreNodes 需要被忽略的节点
|
|
20
|
+
* @param context.root 根节点
|
|
21
|
+
* @param context.options 选项
|
|
22
|
+
* @return 如果没有合法的节点关联,则返回`undefined`
|
|
23
23
|
*/
|
|
24
24
|
_defineProperty(DraggableLayout, "calcDragAttach", function (context) {
|
|
25
25
|
// 此处是为了 ts 报错
|
|
26
26
|
context = context;
|
|
27
27
|
throw Helper.error('DraggableLayout static calcDragAttach must be implemented');
|
|
28
28
|
});
|
|
29
|
-
/**
|
|
30
|
-
* 计算拖动结束被放置的下标
|
|
31
|
-
* @param context 上下文
|
|
32
|
-
* @param context.cacheMap 缓存地图
|
|
33
|
-
* @param context.attachedNodeChildren 关联节点子代
|
|
34
|
-
* @param context.dropPosition 拖拽结束位置
|
|
35
|
-
* @param context.root 根节点
|
|
29
|
+
/**
|
|
30
|
+
* 计算拖动结束被放置的下标
|
|
31
|
+
* @param context 上下文
|
|
32
|
+
* @param context.cacheMap 缓存地图
|
|
33
|
+
* @param context.attachedNodeChildren 关联节点子代
|
|
34
|
+
* @param context.dropPosition 拖拽结束位置
|
|
35
|
+
* @param context.root 根节点
|
|
36
36
|
*/
|
|
37
37
|
_defineProperty(DraggableLayout, "calcDropIndex", function (context) {
|
|
38
38
|
// 此处是为了 ts 报错
|
|
39
39
|
context = context;
|
|
40
40
|
throw Helper.error('DraggableLayout static calcDropIndex must be implemented');
|
|
41
41
|
});
|
|
42
|
-
/**
|
|
43
|
-
* 是否为合法的继承了这个类的类对象
|
|
44
|
-
* @param classObject
|
|
42
|
+
/**
|
|
43
|
+
* 是否为合法的继承了这个类的类对象
|
|
44
|
+
* @param classObject
|
|
45
45
|
*/
|
|
46
46
|
_defineProperty(DraggableLayout, "isValidExtendsClass", function (classObject) {
|
|
47
47
|
var shouldBeRealizedFunc = ['calcDragAttach', 'calcDropIndex'];
|
|
@@ -31,9 +31,9 @@ export var Visible = /*#__PURE__*/_createClass(function Visible() {
|
|
|
31
31
|
_this.options = options;
|
|
32
32
|
_this.getRootHeirOrientation = getRootHeirOrientation;
|
|
33
33
|
});
|
|
34
|
-
/**
|
|
35
|
-
* 返回可见是否改变
|
|
36
|
-
* - 使用次返回值得前提是,数据没有出现改变(也就是在viewport尺寸改变或者transform时可以使用)
|
|
34
|
+
/**
|
|
35
|
+
* 返回可见是否改变
|
|
36
|
+
* - 使用次返回值得前提是,数据没有出现改变(也就是在viewport尺寸改变或者transform时可以使用)
|
|
37
37
|
*/
|
|
38
38
|
_defineProperty(this, "end", function () {
|
|
39
39
|
var visibleChange = {
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
export declare const Render: {
|
|
2
2
|
calcVisible: (context: {
|
|
3
|
-
cacheMap: import("
|
|
4
|
-
options: Required<import("
|
|
5
|
-
root: import("
|
|
3
|
+
cacheMap: import("..").Mind.CacheMap;
|
|
4
|
+
options: Required<import("..").Mind.Options>;
|
|
5
|
+
root: import("..").Mind.Root;
|
|
6
6
|
container: HTMLElement;
|
|
7
7
|
viewport: HTMLElement;
|
|
8
|
-
transform: import("
|
|
8
|
+
transform: import("..").Mind.Transform;
|
|
9
9
|
zoom: import("../graphic/zoom").Zoom;
|
|
10
|
-
}) => import("
|
|
10
|
+
}) => import("..").Mind.Visible;
|
|
11
11
|
connect: (context: {
|
|
12
|
-
cacheMap: import("
|
|
13
|
-
options: Required<import("
|
|
14
|
-
root: import("
|
|
12
|
+
cacheMap: import("..").Mind.CacheMap;
|
|
13
|
+
options: Required<import("..").Mind.Options>;
|
|
14
|
+
root: import("..").Mind.Root;
|
|
15
15
|
container: HTMLElement;
|
|
16
16
|
}) => void;
|
|
17
17
|
layout: (context: {
|
|
18
|
-
cacheMap: import("
|
|
19
|
-
options: Required<import("
|
|
20
|
-
root: import("
|
|
18
|
+
cacheMap: import("..").Mind.CacheMap;
|
|
19
|
+
options: Required<import("..").Mind.Options>;
|
|
20
|
+
root: import("..").Mind.Root;
|
|
21
21
|
container: HTMLElement;
|
|
22
22
|
viewport: HTMLElement;
|
|
23
|
-
transform: import("
|
|
23
|
+
transform: import("..").Mind.Transform;
|
|
24
24
|
anchor?: string | undefined;
|
|
25
25
|
zoom: import("../graphic/zoom").Zoom;
|
|
26
26
|
}) => void;
|
|
@@ -1,72 +1,72 @@
|
|
|
1
|
-
.viewport,.root{
|
|
2
|
-
width: 100%;
|
|
3
|
-
height: 100%;
|
|
4
|
-
position: relative;
|
|
5
|
-
overflow: hidden;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.viewport{
|
|
9
|
-
&--drag-move{
|
|
10
|
-
cursor: pointer;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.container{
|
|
15
|
-
position: relative;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.nodes{
|
|
19
|
-
position: relative;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.node-wrapper{
|
|
23
|
-
position: absolute;
|
|
24
|
-
top: 0;
|
|
25
|
-
left: 0;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.drag-mirror-node{
|
|
29
|
-
cursor: pointer;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.temporary-line{
|
|
33
|
-
position: absolute;
|
|
34
|
-
pointer-events: none;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
// default set
|
|
38
|
-
.node-wrapper--dragging{
|
|
39
|
-
&>*{
|
|
40
|
-
outline: 2px solid #c04851;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
// default set
|
|
45
|
-
.node-wrapper--attached{
|
|
46
|
-
&>*{
|
|
47
|
-
outline: 2px solid #2775b6;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
// default set
|
|
52
|
-
.drag-mirror-node{
|
|
53
|
-
opacity: 0.6;
|
|
54
|
-
|
|
55
|
-
&>*{
|
|
56
|
-
outline: 2px solid #2775b6;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
:global{
|
|
61
|
-
// default set
|
|
62
|
-
.mind {
|
|
63
|
-
&__lines{
|
|
64
|
-
stroke: #2775b6;
|
|
65
|
-
stroke-width: 3px;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
&__temporary-line{
|
|
69
|
-
opacity: 0.6;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
1
|
+
.viewport,.root{
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
position: relative;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.viewport{
|
|
9
|
+
&--drag-move{
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.container{
|
|
15
|
+
position: relative;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.nodes{
|
|
19
|
+
position: relative;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.node-wrapper{
|
|
23
|
+
position: absolute;
|
|
24
|
+
top: 0;
|
|
25
|
+
left: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.drag-mirror-node{
|
|
29
|
+
cursor: pointer;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.temporary-line{
|
|
33
|
+
position: absolute;
|
|
34
|
+
pointer-events: none;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// default set
|
|
38
|
+
.node-wrapper--dragging{
|
|
39
|
+
&>*{
|
|
40
|
+
outline: 2px solid #c04851;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// default set
|
|
45
|
+
.node-wrapper--attached{
|
|
46
|
+
&>*{
|
|
47
|
+
outline: 2px solid #2775b6;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// default set
|
|
52
|
+
.drag-mirror-node{
|
|
53
|
+
opacity: 0.6;
|
|
54
|
+
|
|
55
|
+
&>*{
|
|
56
|
+
outline: 2px solid #2775b6;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
:global{
|
|
61
|
+
// default set
|
|
62
|
+
.mind {
|
|
63
|
+
&__lines{
|
|
64
|
+
stroke: #2775b6;
|
|
65
|
+
stroke-width: 3px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&__temporary-line{
|
|
69
|
+
opacity: 0.6;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
72
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export declare const useShadowState: <T>(init?: T) => readonly [T, (update: T | ((prevState: T) => T)) => void, import("react").MutableRefObject<T>];
|
|
2
|
+
export declare const useShadowState: <T>(init?: T | undefined) => readonly [T, (update: T | ((prevState: T) => T)) => void, import("react").MutableRefObject<T>];
|
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
@size: 8px;
|
|
2
|
-
@border-radius: 4px;
|
|
3
|
-
@active-background: #7a7374;
|
|
4
|
-
|
|
5
|
-
.axis{
|
|
6
|
-
position: absolute;
|
|
7
|
-
|
|
8
|
-
.thumb{
|
|
9
|
-
position: absolute;
|
|
10
|
-
left: 0;
|
|
11
|
-
top: 0;
|
|
12
|
-
border-radius: @border-radius;
|
|
13
|
-
// 大理石灰
|
|
14
|
-
background: #c4cbcf;
|
|
15
|
-
|
|
16
|
-
&:hover{
|
|
17
|
-
background: @active-background;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
&--active{
|
|
22
|
-
.thumb{
|
|
23
|
-
background: @active-background;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
&--y{
|
|
28
|
-
right: 0;
|
|
29
|
-
top: 0;
|
|
30
|
-
height: 100%;
|
|
31
|
-
width: @size;
|
|
32
|
-
|
|
33
|
-
.thumb{
|
|
34
|
-
width: 100%;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
&--x{
|
|
39
|
-
left: 0;
|
|
40
|
-
bottom: 0;
|
|
41
|
-
width: 100%;
|
|
42
|
-
height: @size;
|
|
43
|
-
|
|
44
|
-
.thumb{
|
|
45
|
-
height: 100%;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
1
|
+
@size: 8px;
|
|
2
|
+
@border-radius: 4px;
|
|
3
|
+
@active-background: #7a7374;
|
|
4
|
+
|
|
5
|
+
.axis{
|
|
6
|
+
position: absolute;
|
|
7
|
+
|
|
8
|
+
.thumb{
|
|
9
|
+
position: absolute;
|
|
10
|
+
left: 0;
|
|
11
|
+
top: 0;
|
|
12
|
+
border-radius: @border-radius;
|
|
13
|
+
// 大理石灰
|
|
14
|
+
background: #c4cbcf;
|
|
15
|
+
|
|
16
|
+
&:hover{
|
|
17
|
+
background: @active-background;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&--active{
|
|
22
|
+
.thumb{
|
|
23
|
+
background: @active-background;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&--y{
|
|
28
|
+
right: 0;
|
|
29
|
+
top: 0;
|
|
30
|
+
height: 100%;
|
|
31
|
+
width: @size;
|
|
32
|
+
|
|
33
|
+
.thumb{
|
|
34
|
+
width: 100%;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&--x{
|
|
39
|
+
left: 0;
|
|
40
|
+
bottom: 0;
|
|
41
|
+
width: 100%;
|
|
42
|
+
height: @size;
|
|
43
|
+
|
|
44
|
+
.thumb{
|
|
45
|
+
height: 100%;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
48
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
.custom-filter-card-container-wrapper {
|
|
2
|
-
.ant-pro-card-body {
|
|
3
|
-
padding: 24px 16px 0 !important;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.ant-form-item {
|
|
7
|
-
margin-bottom: 24px;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
1
|
+
.custom-filter-card-container-wrapper {
|
|
2
|
+
.ant-pro-card-body {
|
|
3
|
+
padding: 24px 16px 0 !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.ant-form-item {
|
|
7
|
+
margin-bottom: 24px;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
.section-title-bar {
|
|
2
|
-
display: flex;
|
|
3
|
-
align-items: center;
|
|
4
|
-
gap: 8px;
|
|
5
|
-
margin-bottom: 0;
|
|
6
|
-
|
|
7
|
-
.title-wrapper {
|
|
8
|
-
overflow: hidden;
|
|
9
|
-
// text-overflow: ellipsis;
|
|
10
|
-
// white-space: nowrap;
|
|
11
|
-
|
|
12
|
-
font-size: 16px;
|
|
13
|
-
font-weight: bold;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.center-tools {
|
|
17
|
-
flex-grow: 1;
|
|
18
|
-
display: flex;
|
|
19
|
-
align-items: center;
|
|
20
|
-
flex-wrap: wrap;
|
|
21
|
-
gap: 8px;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.right-tools {
|
|
25
|
-
display: flex;
|
|
26
|
-
align-items: center;
|
|
27
|
-
flex-shrink: 0;
|
|
28
|
-
// flex-wrap: wrap;
|
|
29
|
-
gap: 8px;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
1
|
+
.section-title-bar {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
gap: 8px;
|
|
5
|
+
margin-bottom: 0;
|
|
6
|
+
|
|
7
|
+
.title-wrapper {
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
// text-overflow: ellipsis;
|
|
10
|
+
// white-space: nowrap;
|
|
11
|
+
|
|
12
|
+
font-size: 16px;
|
|
13
|
+
font-weight: bold;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.center-tools {
|
|
17
|
+
flex-grow: 1;
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
flex-wrap: wrap;
|
|
21
|
+
gap: 8px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.right-tools {
|
|
25
|
+
display: flex;
|
|
26
|
+
align-items: center;
|
|
27
|
+
flex-shrink: 0;
|
|
28
|
+
// flex-wrap: wrap;
|
|
29
|
+
gap: 8px;
|
|
30
|
+
}
|
|
31
|
+
}
|