funcnodes-react-flow 0.3.10__py3-none-any.whl → 0.3.11__py3-none-any.whl
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.
- funcnodes_react_flow/static/css/style.css +134 -134
- funcnodes_react_flow/static/js/index.js +2 -2
- funcnodes_react_flow/static/js/index.js.map +1 -1
- {funcnodes_react_flow-0.3.10.dist-info → funcnodes_react_flow-0.3.11.dist-info}/METADATA +1 -1
- {funcnodes_react_flow-0.3.10.dist-info → funcnodes_react_flow-0.3.11.dist-info}/RECORD +8 -8
- {funcnodes_react_flow-0.3.10.dist-info → funcnodes_react_flow-0.3.11.dist-info}/LICENSE +0 -0
- {funcnodes_react_flow-0.3.10.dist-info → funcnodes_react_flow-0.3.11.dist-info}/WHEEL +0 -0
- {funcnodes_react_flow-0.3.10.dist-info → funcnodes_react_flow-0.3.11.dist-info}/entry_points.txt +0 -0
@@ -1,16 +1,4 @@
|
|
1
1
|
@charset "UTF-8";
|
2
|
-
:root {
|
3
|
-
--funcnodesedgecolor: #7bb3ec;
|
4
|
-
}
|
5
|
-
|
6
|
-
.funcnodes-edge .react-flow__edge-path {
|
7
|
-
stroke: var(--funcnodesedgecolor);
|
8
|
-
stroke-width: 2px;
|
9
|
-
}
|
10
|
-
.funcnodes-edge.selected .react-flow__edge-path {
|
11
|
-
stroke: #11ff00;
|
12
|
-
}
|
13
|
-
|
14
2
|
:root {
|
15
3
|
--expandtime: 0.3s;
|
16
4
|
--libnodebgcolor: #48465f;
|
@@ -344,6 +332,18 @@
|
|
344
332
|
overflow: auto;
|
345
333
|
}
|
346
334
|
|
335
|
+
:root {
|
336
|
+
--funcnodesedgecolor: #7bb3ec;
|
337
|
+
}
|
338
|
+
|
339
|
+
.funcnodes-edge .react-flow__edge-path {
|
340
|
+
stroke: var(--funcnodesedgecolor);
|
341
|
+
stroke-width: 2px;
|
342
|
+
}
|
343
|
+
.funcnodes-edge.selected .react-flow__edge-path {
|
344
|
+
stroke: #11ff00;
|
345
|
+
}
|
346
|
+
|
347
347
|
/* this gets exported as style.css and can be used for the default theming */
|
348
348
|
/* these are the necessary styles for React Flow, they get used by base.css and style.css */
|
349
349
|
.react-flow {
|
@@ -832,14 +832,6 @@
|
|
832
832
|
top: 100%;
|
833
833
|
}
|
834
834
|
|
835
|
-
.smooth-expand-expanded {
|
836
|
-
position: absolute;
|
837
|
-
top: 0;
|
838
|
-
left: 0;
|
839
|
-
width: 100vw;
|
840
|
-
height: 100vh;
|
841
|
-
}
|
842
|
-
|
843
835
|
.basicstyleelement, .headermenucontent, .styled-select__menu, .styleelement, .styledcheckbox, .styledinput, .styledbtn, .styleddropdown {
|
844
836
|
background-color: var(--funcnodesbackground1);
|
845
837
|
color: var(--funcnodestextcolor1);
|
@@ -969,6 +961,14 @@ button {
|
|
969
961
|
font-size: inherit;
|
970
962
|
}
|
971
963
|
|
964
|
+
.smooth-expand-expanded {
|
965
|
+
position: absolute;
|
966
|
+
top: 0;
|
967
|
+
left: 0;
|
968
|
+
width: 100vw;
|
969
|
+
height: 100vh;
|
970
|
+
}
|
971
|
+
|
972
972
|
:root {
|
973
973
|
--funheadercolor: #00d9ff;
|
974
974
|
--funcnodesbackground1: hsl(243, 26%, 13%);
|
@@ -1116,120 +1116,6 @@ button {
|
|
1116
1116
|
color: #fff;
|
1117
1117
|
}
|
1118
1118
|
|
1119
|
-
.nodesettings_container {
|
1120
|
-
height: 100%;
|
1121
|
-
display: flex;
|
1122
|
-
flex-direction: row;
|
1123
|
-
}
|
1124
|
-
.nodesettings_expander {
|
1125
|
-
height: 100%;
|
1126
|
-
display: flex;
|
1127
|
-
align-items: center;
|
1128
|
-
justify-content: center;
|
1129
|
-
cursor: pointer;
|
1130
|
-
padding: 3px 3px;
|
1131
|
-
}
|
1132
|
-
.nodesettings_content {
|
1133
|
-
display: flex;
|
1134
|
-
flex-direction: column;
|
1135
|
-
flex: 1;
|
1136
|
-
padding: 0 5px;
|
1137
|
-
overflow: auto;
|
1138
|
-
transition: width 0.5s;
|
1139
|
-
}
|
1140
|
-
.nodesettings_content.expanded {
|
1141
|
-
width: 250px;
|
1142
|
-
}
|
1143
|
-
.nodesettings_content.collapsed {
|
1144
|
-
width: 0;
|
1145
|
-
}
|
1146
|
-
.nodesettings_section {
|
1147
|
-
margin-bottom: 10px;
|
1148
|
-
margin-left: 0.5rem;
|
1149
|
-
}
|
1150
|
-
.nodesettings_component {
|
1151
|
-
margin-bottom: 0.5rem;
|
1152
|
-
margin-left: 0.5rem;
|
1153
|
-
margin-top: 0.5rem;
|
1154
|
-
}
|
1155
|
-
|
1156
|
-
.tablecontainer {
|
1157
|
-
overflow: auto;
|
1158
|
-
background-color: white;
|
1159
|
-
min-height: 20rem;
|
1160
|
-
}
|
1161
|
-
|
1162
|
-
.tableHead {
|
1163
|
-
color: var(--funheadercolor) !important;
|
1164
|
-
background-color: var(--funcnodesbackground1);
|
1165
|
-
font-weight: bold !important;
|
1166
|
-
}
|
1167
|
-
|
1168
|
-
.tableheadercolor {
|
1169
|
-
color: inherit !important;
|
1170
|
-
font-family: inherit !important;
|
1171
|
-
font-weight: inherit !important;
|
1172
|
-
}
|
1173
|
-
|
1174
|
-
.indexcol {
|
1175
|
-
background-color: var(--funcnodesbackground2);
|
1176
|
-
color: var(--funheadercolor) !important;
|
1177
|
-
font-family: inherit !important;
|
1178
|
-
font-weight: inherit !important;
|
1179
|
-
}
|
1180
|
-
|
1181
|
-
.styled-select__control {
|
1182
|
-
height: 100%;
|
1183
|
-
min-height: initial;
|
1184
|
-
min-width: 10px;
|
1185
|
-
}
|
1186
|
-
.styled-select__menu-list {
|
1187
|
-
max-height: 200px;
|
1188
|
-
}
|
1189
|
-
.styled-select__single-value {
|
1190
|
-
text-align: start;
|
1191
|
-
}
|
1192
|
-
.styled-select__option {
|
1193
|
-
text-align: start;
|
1194
|
-
padding: 2px 5px;
|
1195
|
-
}
|
1196
|
-
.styled-select__option:hover {
|
1197
|
-
cursor: pointer;
|
1198
|
-
}
|
1199
|
-
|
1200
|
-
.colorspace {
|
1201
|
-
margin: 0.2rem;
|
1202
|
-
display: grid;
|
1203
|
-
grid-template-columns: auto minmax(0, 1fr);
|
1204
|
-
}
|
1205
|
-
.colorspace_title {
|
1206
|
-
font-size: 0.7em;
|
1207
|
-
font-weight: bold;
|
1208
|
-
}
|
1209
|
-
.colorspace label {
|
1210
|
-
font-size: 0.7rem;
|
1211
|
-
}
|
1212
|
-
.colorspace input {
|
1213
|
-
font-size: 0.7rem;
|
1214
|
-
max-height: 0.7rem;
|
1215
|
-
}
|
1216
|
-
.colorspace input[type=range] {
|
1217
|
-
width: 100%;
|
1218
|
-
margin: 0;
|
1219
|
-
padding: 0;
|
1220
|
-
-webkit-appearance: none;
|
1221
|
-
background-color: #666;
|
1222
|
-
height: 0.7rem;
|
1223
|
-
border-radius: 5px;
|
1224
|
-
}
|
1225
|
-
.colorspace input[type=range]::-webkit-slider-thumb, .colorspace input[type=range]::-webkit-range-thumb, .colorspace input[type=range]::-moz-range-thumb {
|
1226
|
-
width: 0.7rem;
|
1227
|
-
height: 0.7rem;
|
1228
|
-
background-color: #cc1c1c;
|
1229
|
-
border-radius: 50%;
|
1230
|
-
cursor: pointer;
|
1231
|
-
}
|
1232
|
-
|
1233
1119
|
:root {
|
1234
1120
|
--node_border_radius: 5px;
|
1235
1121
|
--handle_outer_radius: 4px;
|
@@ -1499,6 +1385,120 @@ input.nodedatainput.styledinput,
|
|
1499
1385
|
transition: width 0.3s ease;
|
1500
1386
|
}
|
1501
1387
|
|
1388
|
+
.nodesettings_container {
|
1389
|
+
height: 100%;
|
1390
|
+
display: flex;
|
1391
|
+
flex-direction: row;
|
1392
|
+
}
|
1393
|
+
.nodesettings_expander {
|
1394
|
+
height: 100%;
|
1395
|
+
display: flex;
|
1396
|
+
align-items: center;
|
1397
|
+
justify-content: center;
|
1398
|
+
cursor: pointer;
|
1399
|
+
padding: 3px 3px;
|
1400
|
+
}
|
1401
|
+
.nodesettings_content {
|
1402
|
+
display: flex;
|
1403
|
+
flex-direction: column;
|
1404
|
+
flex: 1;
|
1405
|
+
padding: 0 5px;
|
1406
|
+
overflow: auto;
|
1407
|
+
transition: width 0.5s;
|
1408
|
+
}
|
1409
|
+
.nodesettings_content.expanded {
|
1410
|
+
width: 250px;
|
1411
|
+
}
|
1412
|
+
.nodesettings_content.collapsed {
|
1413
|
+
width: 0;
|
1414
|
+
}
|
1415
|
+
.nodesettings_section {
|
1416
|
+
margin-bottom: 10px;
|
1417
|
+
margin-left: 0.5rem;
|
1418
|
+
}
|
1419
|
+
.nodesettings_component {
|
1420
|
+
margin-bottom: 0.5rem;
|
1421
|
+
margin-left: 0.5rem;
|
1422
|
+
margin-top: 0.5rem;
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
.tablecontainer {
|
1426
|
+
overflow: auto;
|
1427
|
+
background-color: white;
|
1428
|
+
min-height: 20rem;
|
1429
|
+
}
|
1430
|
+
|
1431
|
+
.tableHead {
|
1432
|
+
color: var(--funheadercolor) !important;
|
1433
|
+
background-color: var(--funcnodesbackground1);
|
1434
|
+
font-weight: bold !important;
|
1435
|
+
}
|
1436
|
+
|
1437
|
+
.tableheadercolor {
|
1438
|
+
color: inherit !important;
|
1439
|
+
font-family: inherit !important;
|
1440
|
+
font-weight: inherit !important;
|
1441
|
+
}
|
1442
|
+
|
1443
|
+
.indexcol {
|
1444
|
+
background-color: var(--funcnodesbackground2);
|
1445
|
+
color: var(--funheadercolor) !important;
|
1446
|
+
font-family: inherit !important;
|
1447
|
+
font-weight: inherit !important;
|
1448
|
+
}
|
1449
|
+
|
1450
|
+
.styled-select__control {
|
1451
|
+
height: 100%;
|
1452
|
+
min-height: initial;
|
1453
|
+
min-width: 10px;
|
1454
|
+
}
|
1455
|
+
.styled-select__menu-list {
|
1456
|
+
max-height: 200px;
|
1457
|
+
}
|
1458
|
+
.styled-select__single-value {
|
1459
|
+
text-align: start;
|
1460
|
+
}
|
1461
|
+
.styled-select__option {
|
1462
|
+
text-align: start;
|
1463
|
+
padding: 2px 5px;
|
1464
|
+
}
|
1465
|
+
.styled-select__option:hover {
|
1466
|
+
cursor: pointer;
|
1467
|
+
}
|
1468
|
+
|
1469
|
+
.colorspace {
|
1470
|
+
margin: 0.2rem;
|
1471
|
+
display: grid;
|
1472
|
+
grid-template-columns: auto minmax(0, 1fr);
|
1473
|
+
}
|
1474
|
+
.colorspace_title {
|
1475
|
+
font-size: 0.7em;
|
1476
|
+
font-weight: bold;
|
1477
|
+
}
|
1478
|
+
.colorspace label {
|
1479
|
+
font-size: 0.7rem;
|
1480
|
+
}
|
1481
|
+
.colorspace input {
|
1482
|
+
font-size: 0.7rem;
|
1483
|
+
max-height: 0.7rem;
|
1484
|
+
}
|
1485
|
+
.colorspace input[type=range] {
|
1486
|
+
width: 100%;
|
1487
|
+
margin: 0;
|
1488
|
+
padding: 0;
|
1489
|
+
-webkit-appearance: none;
|
1490
|
+
background-color: #666;
|
1491
|
+
height: 0.7rem;
|
1492
|
+
border-radius: 5px;
|
1493
|
+
}
|
1494
|
+
.colorspace input[type=range]::-webkit-slider-thumb, .colorspace input[type=range]::-webkit-range-thumb, .colorspace input[type=range]::-moz-range-thumb {
|
1495
|
+
width: 0.7rem;
|
1496
|
+
height: 0.7rem;
|
1497
|
+
background-color: #cc1c1c;
|
1498
|
+
border-radius: 50%;
|
1499
|
+
cursor: pointer;
|
1500
|
+
}
|
1501
|
+
|
1502
1502
|
s slideUpAndFade from {
|
1503
1503
|
opacity: 0;
|
1504
1504
|
transform: translateY(2px);
|