@digi-frontend/dgate-api-documentation 1.0.56 → 1.0.57
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/dist/_virtual/index4.js +1 -1
- package/dist/_virtual/index5.js +1 -1
- package/dist/_virtual/index6.js +1 -1
- package/dist/_virtual/index7.js +1 -1
- package/dist/node_modules/toposort/index.js +1 -1
- package/dist/node_modules/yup/index.esm.js +1 -1
- package/dist/src/components/LivePreview/LivePreview.js +1 -1
- package/dist/src/components/LivePreview/LivePreview.js.map +1 -1
- package/dist/src/components/MethodAccordion/MethodAccordion.js +1 -1
- package/dist/src/components/MethodAccordion/MethodAccordion.js.map +1 -1
- package/dist/src/components/table/table.js +1 -1
- package/dist/src/components/table/table.js.map +1 -1
- package/dist/src/components/table/tags-table.js +1 -1
- package/dist/src/components/table/tags-table.js.map +1 -1
- package/dist/styles.css +241 -238
- package/package.json +1 -1
- package/src/components/LivePreview/LivePreview.module.scss +15 -14
- package/src/components/LivePreview/LivePreview.tsx +1 -0
- package/src/components/MethodAccordion/MethodAccordion.tsx +101 -110
- package/src/components/table/table.tsx +39 -32
- package/src/components/table/tags-table.tsx +2 -2
package/dist/styles.css
CHANGED
|
@@ -765,11 +765,14 @@
|
|
|
765
765
|
background-color: #ebecf2;
|
|
766
766
|
color: #12131a;
|
|
767
767
|
}
|
|
768
|
+
.livePreviewContainer .description_preview {
|
|
769
|
+
word-break: break-all;
|
|
770
|
+
}
|
|
768
771
|
|
|
769
772
|
.requestAccordion,
|
|
770
773
|
.responseAccordion {
|
|
771
|
-
background-color: #
|
|
772
|
-
border: 1px solid #
|
|
774
|
+
background-color: #f4c5c5;
|
|
775
|
+
border: 1px solid #da3f3f;
|
|
773
776
|
border-radius: 0.3125rem !important;
|
|
774
777
|
box-shadow: none !important;
|
|
775
778
|
margin-bottom: 0 !important;
|
|
@@ -778,7 +781,7 @@
|
|
|
778
781
|
}
|
|
779
782
|
.requestAccordion :global(.accordion-header),
|
|
780
783
|
.responseAccordion :global(.accordion-header) {
|
|
781
|
-
background-color: #
|
|
784
|
+
background-color: #f4c5c5;
|
|
782
785
|
display: flex;
|
|
783
786
|
align-items: center;
|
|
784
787
|
justify-content: space-between;
|
|
@@ -792,7 +795,7 @@
|
|
|
792
795
|
border-top: 1px solid #000 !important;
|
|
793
796
|
padding: 1.25rem !important;
|
|
794
797
|
padding: 0 !important;
|
|
795
|
-
background-color: #
|
|
798
|
+
background-color: #f4c5c5;
|
|
796
799
|
}
|
|
797
800
|
.requestAccordion :global(.accordion-details.expanded) :global(.jsonField) div textarea,
|
|
798
801
|
.responseAccordion :global(.accordion-details.expanded) :global(.jsonField) div textarea {
|
|
@@ -993,29 +996,193 @@
|
|
|
993
996
|
--alert-natural: #c4d3f1;
|
|
994
997
|
}
|
|
995
998
|
|
|
996
|
-
|
|
999
|
+
#EnumButton {
|
|
997
1000
|
display: flex;
|
|
998
|
-
|
|
1001
|
+
justify-content: center;
|
|
1002
|
+
align-items: center;
|
|
1003
|
+
border: 0.0375rem solid #babdcc;
|
|
1004
|
+
border-radius: 0.3125rem;
|
|
999
1005
|
}
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
font-size: 24px;
|
|
1004
|
-
line-height: 35px;
|
|
1005
|
-
margin-bottom: 3px;
|
|
1006
|
-
margin-top: 1.5rem;
|
|
1006
|
+
|
|
1007
|
+
div.endBtnIcon {
|
|
1008
|
+
align-self: center !important;
|
|
1007
1009
|
}
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
+
|
|
1011
|
+
.methodDescForEnum {
|
|
1012
|
+
width: 16.875rem !important;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
.select-inputs {
|
|
1016
|
+
display: flex;
|
|
1017
|
+
flex-direction: row;
|
|
1018
|
+
gap: 0.625rem;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.addEnumButton {
|
|
1022
|
+
color: #4d75d8 !important;
|
|
1023
|
+
display: flex;
|
|
1024
|
+
flex-direction: row;
|
|
1025
|
+
align-items: center;
|
|
1026
|
+
font-size: 0.9375rem;
|
|
1010
1027
|
font-weight: 400;
|
|
1011
|
-
font-
|
|
1012
|
-
|
|
1028
|
+
font-family: "Cairo";
|
|
1029
|
+
gap: 0.3125rem;
|
|
1030
|
+
cursor: pointer;
|
|
1013
1031
|
}
|
|
1014
|
-
|
|
1015
|
-
|
|
1032
|
+
|
|
1033
|
+
.tableSectionContainer .tableContainer {
|
|
1034
|
+
max-width: 100%;
|
|
1035
|
+
overflow-x: overlay;
|
|
1016
1036
|
}
|
|
1017
|
-
.
|
|
1018
|
-
|
|
1037
|
+
.tableSectionContainer .tableContainer.tableContainer * {
|
|
1038
|
+
font-family: "Cairo";
|
|
1039
|
+
}
|
|
1040
|
+
.tableSectionContainer .tableContainer .table {
|
|
1041
|
+
width: 100%;
|
|
1042
|
+
border-spacing: 0;
|
|
1043
|
+
border: none;
|
|
1044
|
+
border-right: 1px solid var(--border-color-neutral);
|
|
1045
|
+
border-left: 1px solid var(--border-color-neutral);
|
|
1046
|
+
}
|
|
1047
|
+
.tableSectionContainer .tableContainer .table.borderRadiusTop {
|
|
1048
|
+
border-top-left-radius: 0.625rem;
|
|
1049
|
+
border-top-right-radius: 0.625rem;
|
|
1050
|
+
}
|
|
1051
|
+
.tableSectionContainer .tableContainer .table.borderRadiusBottom {
|
|
1052
|
+
border-bottom-left-radius: 0.625rem;
|
|
1053
|
+
border-bottom-right-radius: 0.625rem;
|
|
1054
|
+
}
|
|
1055
|
+
.tableSectionContainer .tableContainer .table .tableHead {
|
|
1056
|
+
border: 1px solid var(--Gray-10);
|
|
1057
|
+
margin: 0rem !important;
|
|
1058
|
+
background-color: #f8f9fb;
|
|
1059
|
+
width: max-content;
|
|
1060
|
+
min-width: 100%;
|
|
1061
|
+
color: var(--Gray-50);
|
|
1062
|
+
font-weight: 400;
|
|
1063
|
+
}
|
|
1064
|
+
.tableSectionContainer .tableContainer .table .tableHead .tableHeadCell {
|
|
1065
|
+
border-bottom: 1px solid var(--border-color-neutral);
|
|
1066
|
+
border-top: 1px solid var(--border-color-neutral);
|
|
1067
|
+
font-style: normal;
|
|
1068
|
+
font-size: 0.875rem;
|
|
1069
|
+
padding: 0.75rem 1.875rem;
|
|
1070
|
+
text-align: start;
|
|
1071
|
+
white-space: nowrap;
|
|
1072
|
+
color: inherit;
|
|
1073
|
+
font-weight: inherit;
|
|
1074
|
+
}
|
|
1075
|
+
.tableSectionContainer .tableContainer .table .tableHead .tableHeadCell .sortIcon {
|
|
1076
|
+
padding: 0rem 0.25rem;
|
|
1077
|
+
height: 1.875rem;
|
|
1078
|
+
cursor: pointer;
|
|
1079
|
+
}
|
|
1080
|
+
.tableSectionContainer .tableContainer .table .tableHead .headContainer {
|
|
1081
|
+
display: flex;
|
|
1082
|
+
flex-direction: row;
|
|
1083
|
+
align-items: center;
|
|
1084
|
+
text-overflow: ellipsis;
|
|
1085
|
+
}
|
|
1086
|
+
.tableSectionContainer .tableContainer .table .tableBody tr {
|
|
1087
|
+
background-color: var(--background-color-white-secondary);
|
|
1088
|
+
overflow: visible !important;
|
|
1089
|
+
}
|
|
1090
|
+
.tableSectionContainer .tableContainer .table .tableBody tr .tippy-content {
|
|
1091
|
+
background-color: var(--border-color-hover);
|
|
1092
|
+
color: var(--text-color-disabled);
|
|
1093
|
+
border-radius: 5px;
|
|
1094
|
+
font-size: 14px;
|
|
1095
|
+
font-weight: 400;
|
|
1096
|
+
line-height: 20px;
|
|
1097
|
+
text-align: left;
|
|
1098
|
+
}
|
|
1099
|
+
.tableSectionContainer .tableContainer .table .tableBody tr .tippy-box[data-placement^=bottom] > .tippy-arrow:before {
|
|
1100
|
+
color: var(--border-color-hover);
|
|
1101
|
+
}
|
|
1102
|
+
.tableSectionContainer .tableContainer .table .tableBody tr.rowSelected {
|
|
1103
|
+
background-color: var(--background-color-gray-40);
|
|
1104
|
+
}
|
|
1105
|
+
.tableSectionContainer .tableContainer .table .tableBody tr td {
|
|
1106
|
+
font-weight: 400;
|
|
1107
|
+
font-size: 0.875rem;
|
|
1108
|
+
text-align: start;
|
|
1109
|
+
color: var(--text-color-primary);
|
|
1110
|
+
border-bottom: 1px solid var(--border-color-gray);
|
|
1111
|
+
width: max-content;
|
|
1112
|
+
white-space: nowrap;
|
|
1113
|
+
height: 3.75rem;
|
|
1114
|
+
padding: 0.75rem 1.875rem;
|
|
1115
|
+
overflow: visible !important;
|
|
1116
|
+
}
|
|
1117
|
+
.tableSectionContainer .tableContainer .table .tableBody tr td .tableData {
|
|
1118
|
+
max-width: 100%;
|
|
1119
|
+
width: fit-content;
|
|
1120
|
+
white-space: nowrap;
|
|
1121
|
+
text-overflow: ellipsis;
|
|
1122
|
+
overflow: visible !important;
|
|
1123
|
+
}
|
|
1124
|
+
.tableSectionContainer .tableContainer .table .tableBody tr td:nth-child(2) .tableData .customBtn .btnContentWrapper .endBtnIcon svg path,
|
|
1125
|
+
.tableSectionContainer .tableContainer .table .tableBody tr td:nth-child(2) .tableData .customBtn :link .btnContentWrapper .endBtnIcon svg path,
|
|
1126
|
+
.tableSectionContainer .tableContainer .table .tableBody tr td:nth-child(2) .tableData .customBtn :visited .btnContentWrapper .endBtnIcon svg path {
|
|
1127
|
+
stroke-width: 0.1 !important;
|
|
1128
|
+
fill: #12131a !important;
|
|
1129
|
+
}
|
|
1130
|
+
.tableSectionContainer .tableContainer .table .tableBody tr:hover {
|
|
1131
|
+
background-color: var(--background-color-gray-10);
|
|
1132
|
+
}
|
|
1133
|
+
.tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow {
|
|
1134
|
+
background-color: var(--background-color-white-secondary);
|
|
1135
|
+
height: 4.375rem;
|
|
1136
|
+
}
|
|
1137
|
+
.tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow:hover {
|
|
1138
|
+
background-color: var(--background-color-white-secondary);
|
|
1139
|
+
}
|
|
1140
|
+
.tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow .fallbackContainer {
|
|
1141
|
+
width: 100%;
|
|
1142
|
+
height: 100%;
|
|
1143
|
+
color: var(--text-color-quaternary);
|
|
1144
|
+
}
|
|
1145
|
+
.tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow .fallbackContainer .fallbackTextContainer {
|
|
1146
|
+
display: flex;
|
|
1147
|
+
flex-direction: row;
|
|
1148
|
+
align-items: center;
|
|
1149
|
+
justify-content: center;
|
|
1150
|
+
width: 100%;
|
|
1151
|
+
height: 100%;
|
|
1152
|
+
}
|
|
1153
|
+
.tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow .fallbackContainer .fallbackTextContainer .fallbackText {
|
|
1154
|
+
font-style: normal;
|
|
1155
|
+
font-weight: 400;
|
|
1156
|
+
font-size: 0.875rem;
|
|
1157
|
+
line-height: 1.25rem;
|
|
1158
|
+
}
|
|
1159
|
+
.tableSectionContainer .tableContainer .table th,
|
|
1160
|
+
.tableSectionContainer .tableContainer .table td {
|
|
1161
|
+
text-align: left;
|
|
1162
|
+
}
|
|
1163
|
+
.tableSectionContainer .tableFooterContainer {
|
|
1164
|
+
display: flex;
|
|
1165
|
+
width: 100%;
|
|
1166
|
+
height: auto;
|
|
1167
|
+
}
|
|
1168
|
+
.tableSectionContainer .ascArrow {
|
|
1169
|
+
height: 0.8125rem;
|
|
1170
|
+
margin-bottom: 0.4375rem;
|
|
1171
|
+
cursor: pointer;
|
|
1172
|
+
}
|
|
1173
|
+
.tableSectionContainer .descArrow {
|
|
1174
|
+
height: 0.8125rem;
|
|
1175
|
+
margin-top: 0.4375rem;
|
|
1176
|
+
cursor: pointer;
|
|
1177
|
+
}
|
|
1178
|
+
.tableSectionContainer .defaultSortArrow {
|
|
1179
|
+
height: 1.25rem;
|
|
1180
|
+
cursor: pointer;
|
|
1181
|
+
}
|
|
1182
|
+
.tableSectionContainer .ascArrow path,
|
|
1183
|
+
.tableSectionContainer .descArrow path,
|
|
1184
|
+
.tableSectionContainer .defaultSortArrow path {
|
|
1185
|
+
fill: var(--Gray-50);
|
|
1019
1186
|
}.json-editor-container {
|
|
1020
1187
|
overflow: hidden;
|
|
1021
1188
|
border-bottom-right-radius: 0.3125rem;
|
|
@@ -1209,193 +1376,29 @@
|
|
|
1209
1376
|
--alert-natural: #c4d3f1;
|
|
1210
1377
|
}
|
|
1211
1378
|
|
|
1212
|
-
|
|
1213
|
-
display: flex;
|
|
1214
|
-
justify-content: center;
|
|
1215
|
-
align-items: center;
|
|
1216
|
-
border: 0.0375rem solid #babdcc;
|
|
1217
|
-
border-radius: 0.3125rem;
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
|
-
div.endBtnIcon {
|
|
1221
|
-
align-self: center !important;
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
.methodDescForEnum {
|
|
1225
|
-
width: 16.875rem !important;
|
|
1226
|
-
}
|
|
1227
|
-
|
|
1228
|
-
.select-inputs {
|
|
1229
|
-
display: flex;
|
|
1230
|
-
flex-direction: row;
|
|
1231
|
-
gap: 0.625rem;
|
|
1232
|
-
}
|
|
1233
|
-
|
|
1234
|
-
.addEnumButton {
|
|
1235
|
-
color: #4d75d8 !important;
|
|
1236
|
-
display: flex;
|
|
1237
|
-
flex-direction: row;
|
|
1238
|
-
align-items: center;
|
|
1239
|
-
font-size: 0.9375rem;
|
|
1240
|
-
font-weight: 400;
|
|
1241
|
-
font-family: "Cairo";
|
|
1242
|
-
gap: 0.3125rem;
|
|
1243
|
-
cursor: pointer;
|
|
1244
|
-
}
|
|
1245
|
-
|
|
1246
|
-
.tableSectionContainer .tableContainer {
|
|
1247
|
-
max-width: 100%;
|
|
1248
|
-
overflow-x: overlay;
|
|
1249
|
-
}
|
|
1250
|
-
.tableSectionContainer .tableContainer.tableContainer * {
|
|
1251
|
-
font-family: "Cairo";
|
|
1252
|
-
}
|
|
1253
|
-
.tableSectionContainer .tableContainer .table {
|
|
1254
|
-
width: 100%;
|
|
1255
|
-
border-spacing: 0;
|
|
1256
|
-
border: none;
|
|
1257
|
-
border-right: 1px solid var(--border-color-neutral);
|
|
1258
|
-
border-left: 1px solid var(--border-color-neutral);
|
|
1259
|
-
}
|
|
1260
|
-
.tableSectionContainer .tableContainer .table.borderRadiusTop {
|
|
1261
|
-
border-top-left-radius: 0.625rem;
|
|
1262
|
-
border-top-right-radius: 0.625rem;
|
|
1263
|
-
}
|
|
1264
|
-
.tableSectionContainer .tableContainer .table.borderRadiusBottom {
|
|
1265
|
-
border-bottom-left-radius: 0.625rem;
|
|
1266
|
-
border-bottom-right-radius: 0.625rem;
|
|
1267
|
-
}
|
|
1268
|
-
.tableSectionContainer .tableContainer .table .tableHead {
|
|
1269
|
-
border: 1px solid var(--Gray-10);
|
|
1270
|
-
margin: 0rem !important;
|
|
1271
|
-
background-color: #f8f9fb;
|
|
1272
|
-
width: max-content;
|
|
1273
|
-
min-width: 100%;
|
|
1274
|
-
color: var(--Gray-50);
|
|
1275
|
-
font-weight: 400;
|
|
1276
|
-
}
|
|
1277
|
-
.tableSectionContainer .tableContainer .table .tableHead .tableHeadCell {
|
|
1278
|
-
border-bottom: 1px solid var(--border-color-neutral);
|
|
1279
|
-
border-top: 1px solid var(--border-color-neutral);
|
|
1280
|
-
font-style: normal;
|
|
1281
|
-
font-size: 0.875rem;
|
|
1282
|
-
padding: 0.75rem 1.875rem;
|
|
1283
|
-
text-align: start;
|
|
1284
|
-
white-space: nowrap;
|
|
1285
|
-
color: inherit;
|
|
1286
|
-
font-weight: inherit;
|
|
1287
|
-
}
|
|
1288
|
-
.tableSectionContainer .tableContainer .table .tableHead .tableHeadCell .sortIcon {
|
|
1289
|
-
padding: 0rem 0.25rem;
|
|
1290
|
-
height: 1.875rem;
|
|
1291
|
-
cursor: pointer;
|
|
1292
|
-
}
|
|
1293
|
-
.tableSectionContainer .tableContainer .table .tableHead .headContainer {
|
|
1379
|
+
.drawerItemContainer {
|
|
1294
1380
|
display: flex;
|
|
1295
|
-
flex-direction:
|
|
1296
|
-
align-items: center;
|
|
1297
|
-
text-overflow: ellipsis;
|
|
1298
|
-
}
|
|
1299
|
-
.tableSectionContainer .tableContainer .table .tableBody tr {
|
|
1300
|
-
background-color: var(--background-color-white-secondary);
|
|
1301
|
-
overflow: visible !important;
|
|
1302
|
-
}
|
|
1303
|
-
.tableSectionContainer .tableContainer .table .tableBody tr .tippy-content {
|
|
1304
|
-
background-color: var(--border-color-hover);
|
|
1305
|
-
color: var(--text-color-disabled);
|
|
1306
|
-
border-radius: 5px;
|
|
1307
|
-
font-size: 14px;
|
|
1308
|
-
font-weight: 400;
|
|
1309
|
-
line-height: 20px;
|
|
1310
|
-
text-align: left;
|
|
1311
|
-
}
|
|
1312
|
-
.tableSectionContainer .tableContainer .table .tableBody tr .tippy-box[data-placement^=bottom] > .tippy-arrow:before {
|
|
1313
|
-
color: var(--border-color-hover);
|
|
1314
|
-
}
|
|
1315
|
-
.tableSectionContainer .tableContainer .table .tableBody tr.rowSelected {
|
|
1316
|
-
background-color: var(--background-color-gray-40);
|
|
1317
|
-
}
|
|
1318
|
-
.tableSectionContainer .tableContainer .table .tableBody tr td {
|
|
1319
|
-
font-weight: 400;
|
|
1320
|
-
font-size: 0.875rem;
|
|
1321
|
-
text-align: start;
|
|
1322
|
-
color: var(--text-color-primary);
|
|
1323
|
-
border-bottom: 1px solid var(--border-color-gray);
|
|
1324
|
-
width: max-content;
|
|
1325
|
-
white-space: nowrap;
|
|
1326
|
-
height: 3.75rem;
|
|
1327
|
-
padding: 0.75rem 1.875rem;
|
|
1328
|
-
overflow: visible !important;
|
|
1329
|
-
}
|
|
1330
|
-
.tableSectionContainer .tableContainer .table .tableBody tr td .tableData {
|
|
1331
|
-
max-width: 100%;
|
|
1332
|
-
width: fit-content;
|
|
1333
|
-
white-space: nowrap;
|
|
1334
|
-
text-overflow: ellipsis;
|
|
1335
|
-
overflow: visible !important;
|
|
1336
|
-
}
|
|
1337
|
-
.tableSectionContainer .tableContainer .table .tableBody tr td:nth-child(2) .tableData .customBtn .btnContentWrapper .endBtnIcon svg path,
|
|
1338
|
-
.tableSectionContainer .tableContainer .table .tableBody tr td:nth-child(2) .tableData .customBtn :link .btnContentWrapper .endBtnIcon svg path,
|
|
1339
|
-
.tableSectionContainer .tableContainer .table .tableBody tr td:nth-child(2) .tableData .customBtn :visited .btnContentWrapper .endBtnIcon svg path {
|
|
1340
|
-
stroke-width: 0.1 !important;
|
|
1341
|
-
fill: #12131a !important;
|
|
1342
|
-
}
|
|
1343
|
-
.tableSectionContainer .tableContainer .table .tableBody tr:hover {
|
|
1344
|
-
background-color: var(--background-color-gray-10);
|
|
1345
|
-
}
|
|
1346
|
-
.tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow {
|
|
1347
|
-
background-color: var(--background-color-white-secondary);
|
|
1348
|
-
height: 4.375rem;
|
|
1349
|
-
}
|
|
1350
|
-
.tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow:hover {
|
|
1351
|
-
background-color: var(--background-color-white-secondary);
|
|
1352
|
-
}
|
|
1353
|
-
.tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow .fallbackContainer {
|
|
1354
|
-
width: 100%;
|
|
1355
|
-
height: 100%;
|
|
1356
|
-
color: var(--text-color-quaternary);
|
|
1381
|
+
flex-direction: column;
|
|
1357
1382
|
}
|
|
1358
|
-
.
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1383
|
+
.drawerItemContainer .title {
|
|
1384
|
+
color: #000;
|
|
1385
|
+
font-weight: 600;
|
|
1386
|
+
font-size: 24px;
|
|
1387
|
+
line-height: 35px;
|
|
1388
|
+
margin-bottom: 3px;
|
|
1389
|
+
margin-top: 1.5rem;
|
|
1365
1390
|
}
|
|
1366
|
-
.
|
|
1367
|
-
|
|
1391
|
+
.drawerItemContainer .text {
|
|
1392
|
+
color: #000;
|
|
1368
1393
|
font-weight: 400;
|
|
1369
|
-
font-size:
|
|
1370
|
-
line-height:
|
|
1371
|
-
}
|
|
1372
|
-
.tableSectionContainer .tableContainer .table th,
|
|
1373
|
-
.tableSectionContainer .tableContainer .table td {
|
|
1374
|
-
text-align: left;
|
|
1375
|
-
}
|
|
1376
|
-
.tableSectionContainer .tableFooterContainer {
|
|
1377
|
-
display: flex;
|
|
1378
|
-
width: 100%;
|
|
1379
|
-
height: auto;
|
|
1380
|
-
}
|
|
1381
|
-
.tableSectionContainer .ascArrow {
|
|
1382
|
-
height: 0.8125rem;
|
|
1383
|
-
margin-bottom: 0.4375rem;
|
|
1384
|
-
cursor: pointer;
|
|
1385
|
-
}
|
|
1386
|
-
.tableSectionContainer .descArrow {
|
|
1387
|
-
height: 0.8125rem;
|
|
1388
|
-
margin-top: 0.4375rem;
|
|
1389
|
-
cursor: pointer;
|
|
1394
|
+
font-size: 24px;
|
|
1395
|
+
line-height: 25px;
|
|
1390
1396
|
}
|
|
1391
|
-
.
|
|
1392
|
-
|
|
1393
|
-
cursor: pointer;
|
|
1397
|
+
.drawerItemContainer .color-green {
|
|
1398
|
+
color: var(--color-success);
|
|
1394
1399
|
}
|
|
1395
|
-
.
|
|
1396
|
-
|
|
1397
|
-
.tableSectionContainer .defaultSortArrow path {
|
|
1398
|
-
fill: var(--Gray-50);
|
|
1400
|
+
.drawerItemContainer .color-red {
|
|
1401
|
+
color: var(--color-error);
|
|
1399
1402
|
}.api-docs-api-tree {
|
|
1400
1403
|
width: 100%;
|
|
1401
1404
|
max-width: 12.5rem;
|
|
@@ -1789,42 +1792,6 @@ div.endBtnIcon {
|
|
|
1789
1792
|
opacity: 1 !important;
|
|
1790
1793
|
backdrop-filter: blur(0.5rem);
|
|
1791
1794
|
background-color: rgba(0, 0, 0, 0.281) !important;
|
|
1792
|
-
}.codebox {
|
|
1793
|
-
border-radius: 0.25rem;
|
|
1794
|
-
overflow: hidden;
|
|
1795
|
-
}
|
|
1796
|
-
.codebox_header {
|
|
1797
|
-
display: flex;
|
|
1798
|
-
align-items: center;
|
|
1799
|
-
gap: 0.25rem;
|
|
1800
|
-
padding-left: 0.5rem;
|
|
1801
|
-
height: 1.75rem;
|
|
1802
|
-
border: 1px solid #bbbec5;
|
|
1803
|
-
border-top-right-radius: 0.25rem;
|
|
1804
|
-
border-top-left-radius: 0.25rem;
|
|
1805
|
-
}
|
|
1806
|
-
.codebox_header_themeToggle {
|
|
1807
|
-
width: 0.75rem;
|
|
1808
|
-
min-width: 0.75rem;
|
|
1809
|
-
aspect-ratio: 1/1;
|
|
1810
|
-
border: 1px solid transparent;
|
|
1811
|
-
border-radius: 100%;
|
|
1812
|
-
cursor: pointer;
|
|
1813
|
-
}
|
|
1814
|
-
.codebox_header_themeToggle_dark {
|
|
1815
|
-
background-color: #455162;
|
|
1816
|
-
border-color: #6b7280;
|
|
1817
|
-
}
|
|
1818
|
-
.codebox_header_themeToggle_light {
|
|
1819
|
-
background-color: #edf1fb;
|
|
1820
|
-
border-color: #6b7280;
|
|
1821
|
-
}
|
|
1822
|
-
.codebox_header_copyIcon {
|
|
1823
|
-
cursor: pointer;
|
|
1824
|
-
}
|
|
1825
|
-
.codebox :global(.custom-code-line),
|
|
1826
|
-
.codebox :global(.custom-code-line span) {
|
|
1827
|
-
font-family: "Cascadia Code", sans-serif;
|
|
1828
1795
|
}.apiDocsAside {
|
|
1829
1796
|
width: 22.5rem;
|
|
1830
1797
|
padding: 3rem 1.5rem;
|
|
@@ -1911,6 +1878,42 @@ div.endBtnIcon {
|
|
|
1911
1878
|
}
|
|
1912
1879
|
.apiDocsAside :global(.multiSelectGroup .selectDisplay .displayValueContainer .iconsContainer) {
|
|
1913
1880
|
padding-right: 0.75rem;
|
|
1881
|
+
}.codebox {
|
|
1882
|
+
border-radius: 0.25rem;
|
|
1883
|
+
overflow: hidden;
|
|
1884
|
+
}
|
|
1885
|
+
.codebox_header {
|
|
1886
|
+
display: flex;
|
|
1887
|
+
align-items: center;
|
|
1888
|
+
gap: 0.25rem;
|
|
1889
|
+
padding-left: 0.5rem;
|
|
1890
|
+
height: 1.75rem;
|
|
1891
|
+
border: 1px solid #bbbec5;
|
|
1892
|
+
border-top-right-radius: 0.25rem;
|
|
1893
|
+
border-top-left-radius: 0.25rem;
|
|
1894
|
+
}
|
|
1895
|
+
.codebox_header_themeToggle {
|
|
1896
|
+
width: 0.75rem;
|
|
1897
|
+
min-width: 0.75rem;
|
|
1898
|
+
aspect-ratio: 1/1;
|
|
1899
|
+
border: 1px solid transparent;
|
|
1900
|
+
border-radius: 100%;
|
|
1901
|
+
cursor: pointer;
|
|
1902
|
+
}
|
|
1903
|
+
.codebox_header_themeToggle_dark {
|
|
1904
|
+
background-color: #455162;
|
|
1905
|
+
border-color: #6b7280;
|
|
1906
|
+
}
|
|
1907
|
+
.codebox_header_themeToggle_light {
|
|
1908
|
+
background-color: #edf1fb;
|
|
1909
|
+
border-color: #6b7280;
|
|
1910
|
+
}
|
|
1911
|
+
.codebox_header_copyIcon {
|
|
1912
|
+
cursor: pointer;
|
|
1913
|
+
}
|
|
1914
|
+
.codebox :global(.custom-code-line),
|
|
1915
|
+
.codebox :global(.custom-code-line span) {
|
|
1916
|
+
font-family: "Cascadia Code", sans-serif;
|
|
1914
1917
|
}main {
|
|
1915
1918
|
padding: 2rem;
|
|
1916
1919
|
}
|
package/package.json
CHANGED
|
@@ -22,21 +22,24 @@
|
|
|
22
22
|
color: #12131a;
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
+
|
|
26
|
+
.description_preview {
|
|
27
|
+
word-break: break-all;
|
|
28
|
+
}
|
|
25
29
|
}
|
|
26
30
|
|
|
27
31
|
.requestAccordion,
|
|
28
32
|
.responseAccordion {
|
|
29
|
-
background-color: #
|
|
30
|
-
border: 1px solid #
|
|
33
|
+
background-color: #f4c5c5;
|
|
34
|
+
border: 1px solid #da3f3f;
|
|
31
35
|
border-radius: 0.3125rem !important;
|
|
32
36
|
box-shadow: none !important;
|
|
33
37
|
margin-bottom: 0 !important;
|
|
34
38
|
cursor: default !important;
|
|
35
|
-
margin-top: .625rem;
|
|
39
|
+
margin-top: 0.625rem;
|
|
36
40
|
|
|
37
41
|
:global(.accordion-header) {
|
|
38
|
-
|
|
39
|
-
background-color: #F4C5C5;
|
|
42
|
+
background-color: #f4c5c5;
|
|
40
43
|
display: flex;
|
|
41
44
|
align-items: center;
|
|
42
45
|
justify-content: space-between;
|
|
@@ -51,8 +54,7 @@
|
|
|
51
54
|
padding: 1.25rem !important;
|
|
52
55
|
padding: 0 !important;
|
|
53
56
|
|
|
54
|
-
|
|
55
|
-
background-color: #F4C5C5;
|
|
57
|
+
background-color: #f4c5c5;
|
|
56
58
|
:global(.jsonField) {
|
|
57
59
|
div {
|
|
58
60
|
textarea {
|
|
@@ -75,13 +77,13 @@
|
|
|
75
77
|
|
|
76
78
|
.accordionContent {
|
|
77
79
|
max-width: 100%;
|
|
78
|
-
padding-left: .625rem;
|
|
79
|
-
padding-right: .625rem;
|
|
80
|
-
padding-top: .9375rem;
|
|
81
|
-
|
|
82
|
-
ol{
|
|
80
|
+
padding-left: 0.625rem;
|
|
81
|
+
padding-right: 0.625rem;
|
|
82
|
+
padding-top: 0.9375rem;
|
|
83
|
+
|
|
84
|
+
ol {
|
|
83
85
|
padding-left: 1.7rem;
|
|
84
|
-
li{
|
|
86
|
+
li {
|
|
85
87
|
max-width: 100%;
|
|
86
88
|
// white-space: normal;
|
|
87
89
|
word-break: break-all;
|
|
@@ -111,7 +113,6 @@
|
|
|
111
113
|
display: flex;
|
|
112
114
|
align-items: center;
|
|
113
115
|
|
|
114
|
-
|
|
115
116
|
svg {
|
|
116
117
|
transition: rotate 0.2s ease-in-out;
|
|
117
118
|
}
|