ronds-metadata 1.1.13 → 1.1.16
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/es/comps/DynamicPorts/comps/ContextMenu.js +1 -1
- package/es/comps/DynamicPorts/comps/{ContextMenu.css → ContextMenu.less} +0 -0
- package/es/comps/DynamicPorts/comps/DragNode.js +1 -1
- package/es/comps/DynamicPorts/comps/GraphHandler/index.js +1 -1
- package/es/comps/DynamicPorts/comps/GraphHandler/{index.css → index.less} +17 -10
- package/es/comps/DynamicPorts/comps/NodeElement.js +1 -1
- package/es/comps/DynamicPorts/comps/contextMenu/EdgeContextMenu/index.js +1 -1
- package/es/comps/DynamicPorts/comps/contextMenu/EdgeContextMenu/{index.css → index.less} +0 -0
- package/es/comps/DynamicPorts/comps/contextMenu/GraphContextMenu/index.js +1 -1
- package/es/comps/DynamicPorts/comps/contextMenu/GraphContextMenu/index.less +40 -0
- package/es/comps/DynamicPorts/comps/contextMenu/NodeContextMenu/index.js +1 -1
- package/es/comps/DynamicPorts/comps/contextMenu/NodeContextMenu/index.less +42 -0
- package/es/comps/DynamicPorts/comps/shape/edge.js +1 -1
- package/es/comps/DynamicPorts/comps/shape/edge.less +8 -0
- package/es/comps/DynamicPorts/index.js +1 -1
- package/es/comps/DynamicPorts/index.less +198 -0
- package/es/comps/Editable/comps/EditableAction.js +8 -4
- package/es/comps/Editable/comps/EditableCell.js +1 -1
- package/es/comps/Editable/comps/EditableHeardCell.js +1 -1
- package/es/comps/Editable/comps/EditableRow.js +12 -2
- package/es/comps/Editable/comps/Texty.js +1 -1
- package/es/comps/Editable/comps/{Texty.css → Texty.less} +4 -0
- package/es/comps/Editable/comps/{index.css → index.less} +5 -0
- package/es/comps/Editable/index.d.ts +4 -0
- package/es/comps/Editable/index.js +6 -1
- package/es/comps/Editable/index.less +97 -0
- package/es/comps/JsonEdit/index.js +1 -1
- package/es/comps/JsonEdit/{index.css → index.less} +6 -0
- package/es/comps/JsonView/index.js +1 -1
- package/es/comps/JsonView/{index.css → index.less} +41 -41
- package/es/comps/MdEdit/index.js +1 -1
- package/es/comps/MdEdit/{index.css → index.less} +0 -0
- package/es/comps/MetadataEdit/index.js +1 -1
- package/es/comps/MetadataEdit/index.less +10 -0
- package/es/comps/MetadataEditV2/index.js +1 -1
- package/es/comps/MetadataEditV2/index.less +11 -0
- package/es/comps/MetadataForm/HOC/index.js +1 -1
- package/es/comps/MetadataForm/HOC/index.less +25 -0
- package/es/comps/MetadataForm/index.js +1 -1
- package/es/comps/MetadataForm/index.less +11 -0
- package/es/framework/graph/index.js +1 -1
- package/es/framework/graph/{index.css → index.less} +2 -0
- package/es/framework/libs/iconfont/iconfont.css +19 -3
- package/es/framework/libs/iconfont/iconfont.ttf +0 -0
- package/es/framework/libs/iconfont/iconfont.woff +0 -0
- package/es/framework/libs/iconfont/iconfont.woff2 +0 -0
- package/es/index.js +1 -1
- package/es/theme.less +69 -0
- package/package.json +3 -2
- package/es/comps/DynamicPorts/comps/contextMenu/GraphContextMenu/index.css +0 -21
- package/es/comps/DynamicPorts/comps/contextMenu/NodeContextMenu/index.css +0 -23
- package/es/comps/DynamicPorts/comps/shape/edge.css +0 -4
- package/es/comps/DynamicPorts/index.css +0 -169
- package/es/comps/Editable/index.css +0 -75
- package/es/comps/MetadataEdit/index.css +0 -10
- package/es/comps/MetadataEditV2/index.css +0 -11
- package/es/comps/MetadataForm/HOC/index.css +0 -25
- package/es/comps/MetadataForm/index.css +0 -9
- package/es/theme.css +0 -56
@@ -1,169 +0,0 @@
|
|
1
|
-
.node-element {
|
2
|
-
display: flex;
|
3
|
-
align-items: center;
|
4
|
-
box-sizing: border-box;
|
5
|
-
width: 180px;
|
6
|
-
height: 32px;
|
7
|
-
overflow: hidden;
|
8
|
-
background-color: var(--ronds-metadata-color-bg-4);
|
9
|
-
color: var(--ronds-metadata-color-text-1);
|
10
|
-
border-radius: 4px;
|
11
|
-
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
|
12
|
-
}
|
13
|
-
.node-element.selected,
|
14
|
-
.node-element:hover {
|
15
|
-
background-color: var(--ronds-metadata-color-bg-4);
|
16
|
-
color: var(--ronds-metadata-color-text-1);
|
17
|
-
border: 1px solid #1890ff;
|
18
|
-
box-shadow: 0 0 3px 3px rgba(64, 169, 255, 0.2);
|
19
|
-
}
|
20
|
-
.node-element.selected .icon,
|
21
|
-
.node-element:hover .icon {
|
22
|
-
width: 32px;
|
23
|
-
height: 30px;
|
24
|
-
margin: 0 1px 0 -1px;
|
25
|
-
}
|
26
|
-
.node-element > * {
|
27
|
-
flex-grow: 1;
|
28
|
-
}
|
29
|
-
.node-element .icon {
|
30
|
-
display: inline-flex;
|
31
|
-
flex-grow: 0;
|
32
|
-
align-items: center;
|
33
|
-
justify-content: center;
|
34
|
-
width: 32px;
|
35
|
-
height: 32px;
|
36
|
-
background-color: var(--ronds-metadata-color-bg-2);
|
37
|
-
border-radius: 4px 0 0 4px;
|
38
|
-
}
|
39
|
-
.node-element .notation {
|
40
|
-
display: inline-flex;
|
41
|
-
align-items: center;
|
42
|
-
width: calc(100% - 32px);
|
43
|
-
padding: 0 8px;
|
44
|
-
user-select: none;
|
45
|
-
}
|
46
|
-
.node-element .notation > * {
|
47
|
-
flex-grow: 1;
|
48
|
-
}
|
49
|
-
.node-element .notation .name {
|
50
|
-
overflow-x: hidden;
|
51
|
-
color: var(--ronds-metadata-color-text-1);
|
52
|
-
font-size: 12px;
|
53
|
-
white-space: nowrap;
|
54
|
-
text-overflow: ellipsis;
|
55
|
-
vertical-align: middle;
|
56
|
-
}
|
57
|
-
.node-element .notation .statusIcon {
|
58
|
-
display: inline-flex;
|
59
|
-
flex-grow: 0;
|
60
|
-
align-items: center;
|
61
|
-
font-size: 14px;
|
62
|
-
transform: translateZ(0);
|
63
|
-
}
|
64
|
-
.dynamic-ports {
|
65
|
-
position: relative;
|
66
|
-
}
|
67
|
-
.dynamic-ports .x6-node [magnet='true'] {
|
68
|
-
cursor: crosshair;
|
69
|
-
transition: none;
|
70
|
-
}
|
71
|
-
.dynamic-ports .x6-node [magnet='true']:hover {
|
72
|
-
opacity: 1;
|
73
|
-
}
|
74
|
-
.dynamic-ports .x6-node [magnet='true'][port-group='in'] {
|
75
|
-
cursor: move;
|
76
|
-
stroke: none;
|
77
|
-
}
|
78
|
-
.dynamic-ports .x6-port-body > span {
|
79
|
-
display: block;
|
80
|
-
}
|
81
|
-
.dynamic-ports .x6-node-selected .node-element {
|
82
|
-
background-color: var(--ronds-metadata-color-bg-4);
|
83
|
-
border: 1px solid #1890ff;
|
84
|
-
box-shadow: 0 0 3px 3px rgba(64, 169, 255, 0.2);
|
85
|
-
}
|
86
|
-
.dynamic-ports .dp-port {
|
87
|
-
width: 100%;
|
88
|
-
height: 100%;
|
89
|
-
border: 1px solid #808080;
|
90
|
-
border-radius: 100%;
|
91
|
-
background: #fff;
|
92
|
-
display: block;
|
93
|
-
}
|
94
|
-
.dynamic-ports .dp-port.connected {
|
95
|
-
width: 0;
|
96
|
-
height: 0;
|
97
|
-
margin-top: 3px;
|
98
|
-
margin-left: -1px;
|
99
|
-
border-width: 5px 4px 0;
|
100
|
-
border-style: solid;
|
101
|
-
border-color: #808080 transparent transparent;
|
102
|
-
border-radius: 0;
|
103
|
-
background-color: transparent;
|
104
|
-
}
|
105
|
-
.dynamic-ports .x6-port-body.available {
|
106
|
-
overflow: visible;
|
107
|
-
}
|
108
|
-
.dynamic-ports .x6-port-body.available body {
|
109
|
-
overflow: visible;
|
110
|
-
}
|
111
|
-
.dynamic-ports .x6-port-body.available span {
|
112
|
-
overflow: visible;
|
113
|
-
display: block;
|
114
|
-
}
|
115
|
-
.dynamic-ports .x6-port-body.available body > span::before {
|
116
|
-
content: ' ';
|
117
|
-
float: left;
|
118
|
-
width: 20px;
|
119
|
-
height: 20px;
|
120
|
-
margin-top: -6px;
|
121
|
-
margin-left: -6px;
|
122
|
-
border-radius: 50%;
|
123
|
-
background-color: rgba(57, 202, 116, 0.6);
|
124
|
-
box-sizing: border-box;
|
125
|
-
}
|
126
|
-
.dynamic-ports .x6-port-body.available body > span::after {
|
127
|
-
content: ' ';
|
128
|
-
float: left;
|
129
|
-
clear: both;
|
130
|
-
width: 10px;
|
131
|
-
height: 10px;
|
132
|
-
margin-top: -15px;
|
133
|
-
margin-left: -1px;
|
134
|
-
border-radius: 50%;
|
135
|
-
background-color: #fff;
|
136
|
-
border: 1px solid #39ca74;
|
137
|
-
z-index: 10;
|
138
|
-
box-sizing: border-box;
|
139
|
-
}
|
140
|
-
.dynamic-ports .x6-port-body.adsorbed {
|
141
|
-
overflow: visible;
|
142
|
-
}
|
143
|
-
.dynamic-ports .x6-port-body.adsorbed body {
|
144
|
-
overflow: visible;
|
145
|
-
}
|
146
|
-
.dynamic-ports .x6-port-body.adsorbed body > span::before {
|
147
|
-
content: ' ';
|
148
|
-
float: left;
|
149
|
-
width: 28px;
|
150
|
-
height: 28px;
|
151
|
-
margin-top: -9px;
|
152
|
-
margin-left: -10px;
|
153
|
-
border-radius: 50%;
|
154
|
-
background-color: rgba(57, 202, 116, 0.6);
|
155
|
-
box-sizing: border-box;
|
156
|
-
}
|
157
|
-
.dynamic-ports .x6-port-body.adsorbed body > span::after {
|
158
|
-
content: ' ';
|
159
|
-
float: left;
|
160
|
-
clear: both;
|
161
|
-
width: 10px;
|
162
|
-
height: 10px;
|
163
|
-
margin-top: -19px;
|
164
|
-
border-radius: 50%;
|
165
|
-
background-color: #fff;
|
166
|
-
border: 1px solid #39ca74;
|
167
|
-
z-index: 10;
|
168
|
-
box-sizing: border-box;
|
169
|
-
}
|
@@ -1,75 +0,0 @@
|
|
1
|
-
.ronds-edit-table {
|
2
|
-
width: 100%;
|
3
|
-
height: 100%;
|
4
|
-
}
|
5
|
-
.ronds-edit-table .ant-table-body {
|
6
|
-
overflow: auto !important;
|
7
|
-
}
|
8
|
-
.ronds-edit-table .ant-table-fixed-left .ant-table-body-outer,
|
9
|
-
.ronds-edit-table .ant-table-fixed-right .ant-table-body-outer {
|
10
|
-
margin-bottom: 0 !important;
|
11
|
-
}
|
12
|
-
.ronds-edit-table .ant-table-fixed-left .ant-table-cell-scrollbar,
|
13
|
-
.ronds-edit-table .ant-table-fixed-right .ant-table-cell-scrollbar {
|
14
|
-
margin: 0 !important;
|
15
|
-
padding: 0 !important;
|
16
|
-
}
|
17
|
-
.ronds-edit-table .ant-spin-nested-loading,
|
18
|
-
.ronds-edit-table .ant-spin-container,
|
19
|
-
.ronds-edit-table .ant-table,
|
20
|
-
.ronds-edit-table .ant-table-container,
|
21
|
-
.ronds-edit-table .ant-table-content {
|
22
|
-
width: 100%;
|
23
|
-
height: 100%;
|
24
|
-
}
|
25
|
-
.ronds-edit-table .ant-table-cell,
|
26
|
-
.ronds-edit-table .ant-table-row {
|
27
|
-
height: 30px;
|
28
|
-
padding: 0px 8px !important;
|
29
|
-
}
|
30
|
-
.ronds-edit-table .ant-table-body {
|
31
|
-
height: 100%;
|
32
|
-
overflow-y: auto !important;
|
33
|
-
}
|
34
|
-
.ronds-edit-table .ant-table.ant-table-small .ant-table-thead > tr > th {
|
35
|
-
padding: 8px !important;
|
36
|
-
background-color: #ebebeb;
|
37
|
-
border-right: 1px solid #f2f2f2;
|
38
|
-
}
|
39
|
-
.ronds-edit-table .ant-table-fixed {
|
40
|
-
table-layout: fixed;
|
41
|
-
}
|
42
|
-
.ronds-edit-table .ant-table-tbody > tr > td {
|
43
|
-
word-wrap: break-word;
|
44
|
-
word-break: break-all;
|
45
|
-
}
|
46
|
-
.ronds-edit-table .ant-table.ant-table-bordered > .ant-table-container {
|
47
|
-
border-bottom: 1px solid #f0f0f0;
|
48
|
-
}
|
49
|
-
.ronds-edit-table .ant-table .ant-table-expanded-row-fixed {
|
50
|
-
padding: 0% !important;
|
51
|
-
margin: 0% !important;
|
52
|
-
}
|
53
|
-
.ronds-edit-table .ant-table.ant-table-bordered > .ant-table-container > .ant-table-body > table > tbody > tr > td > .ant-table-expanded-row-fixed::after {
|
54
|
-
border-right: 0 !important;
|
55
|
-
}
|
56
|
-
.ronds-metadata-normal .ant-table {
|
57
|
-
border-right: 1px solid #f0f0f0 !important;
|
58
|
-
}
|
59
|
-
.ronds-metadata-normal .ant-table .ant-table-row--odd {
|
60
|
-
background-color: #ebebeb !important;
|
61
|
-
}
|
62
|
-
.ronds-metadata-normal .ant-table .ant-table-row--odd .ant-table-cell {
|
63
|
-
background-color: #ebebeb !important;
|
64
|
-
}
|
65
|
-
.ronds-metadata-normal .ant-table .ant-table-expanded-row-fixed::after {
|
66
|
-
border: 0 !important;
|
67
|
-
}
|
68
|
-
.ronds-metadata-normal .ant-table .ant-table-placeholder {
|
69
|
-
pointer-events: none;
|
70
|
-
background-color: #fff !important;
|
71
|
-
}
|
72
|
-
.ronds-metadata-normal .ant-table .ant-table-placeholder .ant-table-cell {
|
73
|
-
padding: 0 !important;
|
74
|
-
background-color: #fff !important;
|
75
|
-
}
|
@@ -1,25 +0,0 @@
|
|
1
|
-
.with-add-on-after {
|
2
|
-
--card-bg: #ffffff;
|
3
|
-
position: relative;
|
4
|
-
width: 100%;
|
5
|
-
}
|
6
|
-
.with-add-on-after > .ant-form-item {
|
7
|
-
padding: 0 !important;
|
8
|
-
flex: 1;
|
9
|
-
}
|
10
|
-
.with-add-on-after-extra {
|
11
|
-
position: absolute;
|
12
|
-
right: 20px;
|
13
|
-
top: 18px;
|
14
|
-
padding: 0 6px;
|
15
|
-
background-color: var(--card-bg);
|
16
|
-
z-index: 1000;
|
17
|
-
}
|
18
|
-
.with-add-on-after-ref {
|
19
|
-
position: absolute;
|
20
|
-
right: 20px;
|
21
|
-
top: -10px;
|
22
|
-
padding: 0 6px;
|
23
|
-
background-color: var(--card-bg);
|
24
|
-
z-index: 1000;
|
25
|
-
}
|
package/es/theme.css
DELETED
@@ -1,56 +0,0 @@
|
|
1
|
-
.ronds-metadata-dark {
|
2
|
-
--ronds-metadata-color-border-1: #314162;
|
3
|
-
--ronds-metadata-color-bg-2: #0d1f40;
|
4
|
-
--ronds-metadata-color-bg-4: #1c3771;
|
5
|
-
--ronds-metadata-color-text-1: #ffffff;
|
6
|
-
}
|
7
|
-
.ronds-metadata-dark ::-webkit-scrollbar {
|
8
|
-
width: 6px;
|
9
|
-
height: 6px;
|
10
|
-
overflow: auto;
|
11
|
-
}
|
12
|
-
.ronds-metadata-dark ::-webkit-scrollbar-corner {
|
13
|
-
background-color: transparent;
|
14
|
-
color: transparent;
|
15
|
-
}
|
16
|
-
.ronds-metadata-dark ::-webkit-scrollbar-thumb {
|
17
|
-
box-shadow: inset 0 0 5px var(--scrollbar-bg-color);
|
18
|
-
background: var(--scrollbar-color);
|
19
|
-
min-height: 25px;
|
20
|
-
min-width: 25px;
|
21
|
-
border-radius: 3px;
|
22
|
-
}
|
23
|
-
.ronds-metadata-dark ::-webkit-scrollbar-thumb:hover {
|
24
|
-
border-radius: 2px;
|
25
|
-
background: var(--scrollbar-color-hover);
|
26
|
-
}
|
27
|
-
.ronds-metadata-dark ::-webkit-scrollbar-thumb:active {
|
28
|
-
background: var(--scrollbar-color-hover);
|
29
|
-
}
|
30
|
-
.ronds-metadata-normal {
|
31
|
-
--ronds-metadata-color-border-1: #d9d9d9;
|
32
|
-
--ronds-metadata-color-bg-2: rgba(229, 238, 255, 0.85);
|
33
|
-
--ronds-metadata-color-bg-4: #ffffff;
|
34
|
-
--ronds-metadata-color-text-1: #1d2129;
|
35
|
-
}
|
36
|
-
.ronds-metadata-normal ::-webkit-scrollbar {
|
37
|
-
width: 6px;
|
38
|
-
height: 6px;
|
39
|
-
overflow: auto;
|
40
|
-
}
|
41
|
-
.ronds-metadata-normal ::-webkit-scrollbar-thumb {
|
42
|
-
background-color: var(--scrollbar-color);
|
43
|
-
min-height: 25px;
|
44
|
-
min-width: 25px;
|
45
|
-
border-radius: 3px;
|
46
|
-
/* border: 1px solid #e0e0e0; */
|
47
|
-
}
|
48
|
-
.ronds-metadata-normal ::-webkit-scrollbar-thumb:hover {
|
49
|
-
background-color: #a8a8a8;
|
50
|
-
}
|
51
|
-
.ronds-metadata-normal ::-webkit-scrollbar-thumb:active {
|
52
|
-
background-color: #787878;
|
53
|
-
}
|
54
|
-
.ronds-metadata-normal ::-webkit-scrollbar-track {
|
55
|
-
background-color: #f7f7f7;
|
56
|
-
}
|