@digi-frontend/dgate-api-documentation 1.0.76 → 1.0.81

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/styles.css CHANGED
@@ -917,117 +917,111 @@
917
917
  width: 0.625rem;
918
918
  aspect-ratio: 1/1;
919
919
  border-radius: 100%;
920
- }.json-editor-container {
921
- overflow: hidden;
922
- border-bottom-right-radius: 0.3125rem;
923
- border-bottom-left-radius: 0.3125rem;
924
- }
925
- .json-editor-container .json-editor-label {
926
- font-size: 0.875rem;
927
- font-weight: 600;
928
- line-height: 1.25rem;
929
- margin-bottom: 0.3125rem;
920
+ }:root {
921
+ --white: #fff;
922
+ --Gray-5: #f1f2f6;
923
+ --Gray-10: #ebecf2;
924
+ --Gray-20: #d8dae5;
925
+ --Gray-30: #babdcc;
926
+ --Gray-40: #9a9eb2;
927
+ --Gray-50: #828699;
928
+ --Gray-60: #696c80;
929
+ --Gray-100: #12131a;
930
+ --black: #000;
931
+ --primary-static: #4d75d8;
932
+ --primary-hover: #7c9bea;
933
+ --primary-active: #2c4fa4;
934
+ --primary-disabled: #9a9eb2;
935
+ --secondary-static: #40e0d0;
936
+ --secondary-hover: #9efcf2;
937
+ --secondary-active: #2fa599;
938
+ --error-static: #da3f3f;
939
+ --error-hover: #e75d5d;
940
+ --error-active: #bb3232;
941
+ --success-static: #3aaa35;
942
+ --success-hover: #5cda56;
943
+ --success-active: #2a8a25;
944
+ --info-static: #c6c6c6;
945
+ --info-hover: #e4e4e4;
946
+ --info-active: #979797;
947
+ --warning-static: #faad14;
948
+ --warning-hover: #f9be4a;
949
+ --warning-active: #db9711;
950
+ --action-static: #142452;
951
+ --action-hover: #21387d;
952
+ --action-active: #000000;
953
+ --color-info-primary: #3a6cd1;
954
+ --primary-font-color: #142452;
955
+ --placeholder-font-color: #babdcc;
956
+ --warning-font-color: #ce2828;
957
+ --alert-error: #da3f3f;
958
+ --alert-light-error: #f4c5c5;
959
+ --alert-success: #3aaa35;
960
+ --alert-light-success: #c4e5c2;
961
+ --alert-info: #8eaaf1;
962
+ --alert-light-info: #c4d3f1;
963
+ --alert-warning: #faad14;
964
+ --alert-light-warning: #fde6b8;
965
+ --border-focus: #3a6cd1;
966
+ --tooltip-background-color: #202f5b;
967
+ --text-color-primary: #142452;
968
+ --text-color-secondary: #ffff;
969
+ --text-color-neutral: #828699;
970
+ --text-color-tertiary: #808080;
971
+ --text-color-note: #242424;
972
+ --text-color-quaternary: #142452;
973
+ --text-color-disabled: #ffff;
974
+ --background-color-white-primary: #fff;
975
+ --background-color-light-primary: #8eaaf1;
976
+ --background-color-white-secondary: #fff;
977
+ --background-color-primary-dark: #142452;
978
+ --background-color-gray-5: #f1f2f6;
979
+ --background-color-gray-30: #ebecf2;
980
+ --background-color-tertiary-light: #2c4fa4;
981
+ --background-color-gray-10: #f1f2f6;
982
+ --background-color-gray-40: #ebecf2;
983
+ --background-color-light-blue: #dfe7f8;
984
+ --border-color-primary: #babdcc;
985
+ --border-color-secondary: #d8dae5;
986
+ --border-color-neutral: #ebecf2;
987
+ --border-color-tertiary: #ebecf2;
988
+ --border-color-gray: #ebecf2;
989
+ --border-color-hover: #142452;
990
+ --border-color-active: #3a6cd1;
991
+ --icon-color-main: #142452;
992
+ --icon-color-secondary: #000;
993
+ --icon-color-quaternary: #babdcc;
994
+ --icon-color-disabled: #9a9eb2;
995
+ --link-btn-primary-color: #3a6cd1;
996
+ --button-color-static: #4d75d8;
997
+ --button-color-hover: #7c9bea;
998
+ --button-color-active: #2c4fa4;
999
+ --alert-natural: #c4d3f1;
930
1000
  }
931
- .json-editor-container .json-editor {
1001
+
1002
+ .drawerItemContainer {
932
1003
  display: flex;
933
1004
  flex-direction: column;
934
- background-color: #142452;
935
- width: 100%;
936
- outline: 1px solid transparent;
937
- position: relative;
938
- overflow: hidden;
939
- }
940
- .json-editor-container .json-editor .actions-container {
941
- width: 100%;
942
- height: 5rem;
943
- padding: 1.25rem;
944
- border-radius: 0 0 0.3125rem 0.3125rem;
945
- background: #101e47;
946
- display: flex;
947
- flex-direction: row;
948
- gap: 1.25rem;
949
- align-items: center;
950
- }
951
- .json-editor-container .json-editor .actions-container .validate {
952
- color: #fff;
953
- text-align: center;
954
- font-size: 1rem;
955
- font-style: normal;
956
- font-weight: 600;
957
- line-height: 1.25rem;
958
- width: 8.75rem;
959
- padding: 0.625rem 2.25rem;
960
- background-color: rgba(240, 248, 255, 0);
961
- border-radius: 0.3125rem;
962
- border: 0.0625rem solid #4d75d8;
963
- cursor: pointer;
964
- }
965
- .json-editor-container .json-editor .actions-container .validate:disabled {
966
- color: #babdcc;
967
- border-color: #a2a5b6;
968
1005
  }
969
- .json-editor-container .json-editor .actions-container .beautify {
970
- color: #fff;
971
- text-align: center;
972
- font-size: 1rem;
973
- font-style: normal;
1006
+ .drawerItemContainer .title {
1007
+ color: #000;
974
1008
  font-weight: 600;
975
- line-height: 1.25rem;
976
- width: 8.75rem;
977
- padding: 0.625rem 2.25rem;
978
- background-color: rgba(240, 248, 255, 0);
979
- border-radius: 0.3125rem;
980
- border: 1px solid #babdcc;
981
- cursor: pointer;
982
- }
983
- .json-editor-container .json-editor .actions-container .beautify:disabled {
984
- color: #a2a5b6;
985
- border-color: #a2a5b6;
1009
+ font-size: 24px;
1010
+ line-height: 35px;
1011
+ margin-bottom: 3px;
1012
+ margin-top: 1.5rem;
986
1013
  }
987
- .json-editor-container .json-editor textarea {
988
- width: 100%;
989
- padding: 1.25rem;
990
- font-size: 0.875rem;
991
- font-style: normal;
1014
+ .drawerItemContainer .text {
1015
+ color: #000;
992
1016
  font-weight: 400;
993
- line-height: 1.25rem;
994
- color: white;
995
- height: 25rem;
996
- background-color: #142452;
997
- border: none;
998
- resize: none;
999
- }
1000
- .json-editor-container .json-editor textarea:focus, .json-editor-container .json-editor textarea:focus-within, .json-editor-container .json-editor textarea:focus-visible .json-editor-container .json-editor textarea:active {
1001
- outline: none;
1002
- border: none;
1003
- }
1004
- .json-editor-container .json-editor textarea::-webkit-scrollbar {
1005
- width: 0.5rem;
1006
- }
1007
- .json-editor-container .json-editor textarea::-webkit-scrollbar-track {
1008
- background-color: #828699;
1009
- border: none;
1010
- border-color: transparent;
1011
- border-top-left-radius: 0;
1012
- }
1013
- .json-editor-container .json-editor textarea::-webkit-scrollbar-thumb {
1014
- background-color: #d8dae5;
1015
- border: none;
1016
- border-color: transparent;
1017
- border-radius: 0;
1018
- }
1019
- .json-editor-container .json-editor.invalid {
1020
- outline: 1px solid #ce2828 !important;
1017
+ font-size: 24px;
1018
+ line-height: 25px;
1021
1019
  }
1022
- .json-editor-container .error-message {
1023
- color: #ce2828;
1024
- font-size: 0.75rem;
1025
- line-height: 1.25rem;
1026
- margin-top: 0.625rem;
1020
+ .drawerItemContainer .color-green {
1021
+ color: var(--color-success);
1027
1022
  }
1028
- .json-editor-container.disabled .json-editor textarea {
1029
- background-color: white;
1030
- color: #12131a;
1023
+ .drawerItemContainer .color-red {
1024
+ color: var(--color-error);
1031
1025
  }:root {
1032
1026
  --white: #fff;
1033
1027
  --Gray-5: #f1f2f6;
@@ -1297,111 +1291,271 @@ div.endBtnIcon {
1297
1291
  .tableSectionContainer .descArrow path,
1298
1292
  .tableSectionContainer .defaultSortArrow path {
1299
1293
  fill: var(--Gray-50);
1300
- }:root {
1301
- --white: #fff;
1302
- --Gray-5: #f1f2f6;
1303
- --Gray-10: #ebecf2;
1304
- --Gray-20: #d8dae5;
1305
- --Gray-30: #babdcc;
1306
- --Gray-40: #9a9eb2;
1307
- --Gray-50: #828699;
1308
- --Gray-60: #696c80;
1309
- --Gray-100: #12131a;
1310
- --black: #000;
1311
- --primary-static: #4d75d8;
1312
- --primary-hover: #7c9bea;
1313
- --primary-active: #2c4fa4;
1314
- --primary-disabled: #9a9eb2;
1315
- --secondary-static: #40e0d0;
1316
- --secondary-hover: #9efcf2;
1317
- --secondary-active: #2fa599;
1318
- --error-static: #da3f3f;
1319
- --error-hover: #e75d5d;
1320
- --error-active: #bb3232;
1321
- --success-static: #3aaa35;
1322
- --success-hover: #5cda56;
1323
- --success-active: #2a8a25;
1324
- --info-static: #c6c6c6;
1325
- --info-hover: #e4e4e4;
1326
- --info-active: #979797;
1327
- --warning-static: #faad14;
1328
- --warning-hover: #f9be4a;
1329
- --warning-active: #db9711;
1330
- --action-static: #142452;
1331
- --action-hover: #21387d;
1332
- --action-active: #000000;
1333
- --color-info-primary: #3a6cd1;
1334
- --primary-font-color: #142452;
1335
- --placeholder-font-color: #babdcc;
1336
- --warning-font-color: #ce2828;
1337
- --alert-error: #da3f3f;
1338
- --alert-light-error: #f4c5c5;
1339
- --alert-success: #3aaa35;
1340
- --alert-light-success: #c4e5c2;
1341
- --alert-info: #8eaaf1;
1342
- --alert-light-info: #c4d3f1;
1343
- --alert-warning: #faad14;
1344
- --alert-light-warning: #fde6b8;
1345
- --border-focus: #3a6cd1;
1346
- --tooltip-background-color: #202f5b;
1347
- --text-color-primary: #142452;
1348
- --text-color-secondary: #ffff;
1349
- --text-color-neutral: #828699;
1350
- --text-color-tertiary: #808080;
1351
- --text-color-note: #242424;
1352
- --text-color-quaternary: #142452;
1353
- --text-color-disabled: #ffff;
1354
- --background-color-white-primary: #fff;
1355
- --background-color-light-primary: #8eaaf1;
1356
- --background-color-white-secondary: #fff;
1357
- --background-color-primary-dark: #142452;
1358
- --background-color-gray-5: #f1f2f6;
1359
- --background-color-gray-30: #ebecf2;
1360
- --background-color-tertiary-light: #2c4fa4;
1361
- --background-color-gray-10: #f1f2f6;
1362
- --background-color-gray-40: #ebecf2;
1363
- --background-color-light-blue: #dfe7f8;
1364
- --border-color-primary: #babdcc;
1365
- --border-color-secondary: #d8dae5;
1366
- --border-color-neutral: #ebecf2;
1367
- --border-color-tertiary: #ebecf2;
1368
- --border-color-gray: #ebecf2;
1369
- --border-color-hover: #142452;
1370
- --border-color-active: #3a6cd1;
1371
- --icon-color-main: #142452;
1372
- --icon-color-secondary: #000;
1373
- --icon-color-quaternary: #babdcc;
1374
- --icon-color-disabled: #9a9eb2;
1375
- --link-btn-primary-color: #3a6cd1;
1376
- --button-color-static: #4d75d8;
1377
- --button-color-hover: #7c9bea;
1378
- --button-color-active: #2c4fa4;
1379
- --alert-natural: #c4d3f1;
1294
+ }.json-editor-container {
1295
+ overflow: hidden;
1296
+ border-bottom-right-radius: 0.3125rem;
1297
+ border-bottom-left-radius: 0.3125rem;
1380
1298
  }
1381
-
1382
- .drawerItemContainer {
1299
+ .json-editor-container .json-editor-label {
1300
+ font-size: 0.875rem;
1301
+ font-weight: 600;
1302
+ line-height: 1.25rem;
1303
+ margin-bottom: 0.3125rem;
1304
+ }
1305
+ .json-editor-container .json-editor {
1383
1306
  display: flex;
1384
1307
  flex-direction: column;
1308
+ background-color: #142452;
1309
+ width: 100%;
1310
+ outline: 1px solid transparent;
1311
+ position: relative;
1312
+ overflow: hidden;
1385
1313
  }
1386
- .drawerItemContainer .title {
1387
- color: #000;
1314
+ .json-editor-container .json-editor .actions-container {
1315
+ width: 100%;
1316
+ height: 5rem;
1317
+ padding: 1.25rem;
1318
+ border-radius: 0 0 0.3125rem 0.3125rem;
1319
+ background: #101e47;
1320
+ display: flex;
1321
+ flex-direction: row;
1322
+ gap: 1.25rem;
1323
+ align-items: center;
1324
+ }
1325
+ .json-editor-container .json-editor .actions-container .validate {
1326
+ color: #fff;
1327
+ text-align: center;
1328
+ font-size: 1rem;
1329
+ font-style: normal;
1388
1330
  font-weight: 600;
1389
- font-size: 24px;
1390
- line-height: 35px;
1391
- margin-bottom: 3px;
1392
- margin-top: 1.5rem;
1331
+ line-height: 1.25rem;
1332
+ width: 8.75rem;
1333
+ padding: 0.625rem 2.25rem;
1334
+ background-color: rgba(240, 248, 255, 0);
1335
+ border-radius: 0.3125rem;
1336
+ border: 0.0625rem solid #4d75d8;
1337
+ cursor: pointer;
1393
1338
  }
1394
- .drawerItemContainer .text {
1339
+ .json-editor-container .json-editor .actions-container .validate:disabled {
1340
+ color: #babdcc;
1341
+ border-color: #a2a5b6;
1342
+ }
1343
+ .json-editor-container .json-editor .actions-container .beautify {
1344
+ color: #fff;
1345
+ text-align: center;
1346
+ font-size: 1rem;
1347
+ font-style: normal;
1348
+ font-weight: 600;
1349
+ line-height: 1.25rem;
1350
+ width: 8.75rem;
1351
+ padding: 0.625rem 2.25rem;
1352
+ background-color: rgba(240, 248, 255, 0);
1353
+ border-radius: 0.3125rem;
1354
+ border: 1px solid #babdcc;
1355
+ cursor: pointer;
1356
+ }
1357
+ .json-editor-container .json-editor .actions-container .beautify:disabled {
1358
+ color: #a2a5b6;
1359
+ border-color: #a2a5b6;
1360
+ }
1361
+ .json-editor-container .json-editor textarea {
1362
+ width: 100%;
1363
+ padding: 1.25rem;
1364
+ font-size: 0.875rem;
1365
+ font-style: normal;
1366
+ font-weight: 400;
1367
+ line-height: 1.25rem;
1368
+ color: white;
1369
+ height: 25rem;
1370
+ background-color: #142452;
1371
+ border: none;
1372
+ resize: none;
1373
+ }
1374
+ .json-editor-container .json-editor textarea:focus, .json-editor-container .json-editor textarea:focus-within, .json-editor-container .json-editor textarea:focus-visible .json-editor-container .json-editor textarea:active {
1375
+ outline: none;
1376
+ border: none;
1377
+ }
1378
+ .json-editor-container .json-editor textarea::-webkit-scrollbar {
1379
+ width: 0.5rem;
1380
+ }
1381
+ .json-editor-container .json-editor textarea::-webkit-scrollbar-track {
1382
+ background-color: #828699;
1383
+ border: none;
1384
+ border-color: transparent;
1385
+ border-top-left-radius: 0;
1386
+ }
1387
+ .json-editor-container .json-editor textarea::-webkit-scrollbar-thumb {
1388
+ background-color: #d8dae5;
1389
+ border: none;
1390
+ border-color: transparent;
1391
+ border-radius: 0;
1392
+ }
1393
+ .json-editor-container .json-editor.invalid {
1394
+ outline: 1px solid #ce2828 !important;
1395
+ }
1396
+ .json-editor-container .error-message {
1397
+ color: #ce2828;
1398
+ font-size: 0.75rem;
1399
+ line-height: 1.25rem;
1400
+ margin-top: 0.625rem;
1401
+ }
1402
+ .json-editor-container.disabled .json-editor textarea {
1403
+ background-color: white;
1404
+ color: #12131a;
1405
+ }.api-docs-api-tree {
1406
+ width: 100%;
1407
+ max-width: 12.5rem;
1408
+ padding: 3rem 1.25rem;
1409
+ box-sizing: border-box;
1410
+ }
1411
+ .api-docs-api-tree > * {
1412
+ box-sizing: border-box;
1413
+ }
1414
+ .api-docs-api-tree__section-header {
1415
+ display: flex;
1416
+ align-items: center;
1417
+ gap: 0.25rem;
1418
+ padding-inline: 0.5rem;
1419
+ cursor: pointer;
1420
+ user-select: none;
1421
+ height: 2.5rem;
1422
+ }
1423
+ .api-docs-api-tree__section-header:hover {
1424
+ background-color: #f3f4f6;
1425
+ }
1426
+ .api-docs-api-tree__section-header svg:first-child path {
1427
+ stroke: #bbbec5;
1428
+ }
1429
+ .api-docs-api-tree__section-title {
1430
+ font-size: 0.75rem;
1431
+ line-height: 0.875rem;
1432
+ font-weight: 500;
1395
1433
  color: #000;
1434
+ margin-left: 0.25rem;
1435
+ }
1436
+ .api-docs-api-tree__section__overview {
1437
+ display: flex;
1438
+ align-items: center;
1439
+ gap: 0.5rem;
1440
+ padding: 0.5rem 1.75rem;
1441
+ border-radius: 0.25rem;
1442
+ cursor: pointer;
1443
+ }
1444
+ .api-docs-api-tree__section__overview:hover {
1445
+ background-color: #f3f4f6;
1446
+ }
1447
+ .api-docs-api-tree__section__overview span {
1448
+ font-size: 0.75rem;
1449
+ line-height: 0.875rem;
1450
+ color: #000000;
1451
+ }
1452
+ .api-docs-api-tree__section__overview[data-active=true] {
1453
+ background-color: #f0f1f2;
1454
+ }
1455
+ .api-docs-api-tree__section__endpoints {
1456
+ display: flex;
1457
+ align-items: center;
1458
+ height: 1.5rem;
1459
+ gap: 0.5rem;
1460
+ border-radius: 0.25rem;
1461
+ padding-inline: 1.75rem;
1462
+ cursor: pointer;
1463
+ }
1464
+ .api-docs-api-tree__section__endpoints span {
1465
+ font-size: 0.75rem;
1466
+ line-height: 0.875rem;
1467
+ color: #000000;
1468
+ }
1469
+ .api-docs-api-tree__section__endpoints[data-active=true] {
1470
+ background-color: #f0f1f2;
1471
+ }
1472
+ .api-docs-api-tree__section[data-active=true] .api-docs-api-tree__section-title {
1473
+ color: #616874;
1474
+ }
1475
+ .api-docs-api-tree__endpoints {
1476
+ display: flex;
1477
+ flex-direction: column;
1478
+ align-items: start;
1479
+ gap: 0.5rem;
1480
+ border-radius: 0.25rem;
1481
+ cursor: pointer;
1482
+ }
1483
+ .api-docs-api-tree__endpoints span {
1484
+ font-size: 0.75rem;
1485
+ line-height: 0.875rem;
1486
+ color: #000000;
1487
+ }
1488
+ .api-docs-api-tree__endpoints[data-active=true] {
1489
+ background-color: #f0f1f2;
1490
+ }
1491
+ .api-docs-api-tree__subsection-header {
1492
+ height: 2rem;
1493
+ display: flex;
1494
+ align-items: center;
1495
+ gap: 0.875rem;
1496
+ padding-inline: 0.5rem;
1497
+ cursor: pointer;
1498
+ user-select: none;
1499
+ }
1500
+ .api-docs-api-tree__subsection-header svg {
1501
+ color: #6b7280;
1502
+ }
1503
+ .api-docs-api-tree__subsection-title {
1504
+ font-size: 0.75rem;
1505
+ line-height: 0.875rem;
1506
+ color: #616874;
1507
+ }
1508
+ .api-docs-api-tree__endpoint {
1509
+ display: flex;
1510
+ align-items: center;
1511
+ gap: 0.25rem;
1512
+ padding: 0.5rem 0.75rem;
1513
+ text-transform: capitalize;
1514
+ width: 100%;
1515
+ cursor: pointer;
1516
+ }
1517
+ .api-docs-api-tree__endpoint[data-active=true] {
1518
+ background-color: #f0f1f2;
1519
+ }
1520
+ .api-docs-api-tree__endpoint:hover {
1521
+ background-color: #f3f4f6;
1522
+ }
1523
+ .api-docs-api-tree__endpoint-method {
1524
+ font-size: 0.75rem;
1525
+ line-height: 0.875rem;
1396
1526
  font-weight: 400;
1397
- font-size: 24px;
1398
- line-height: 25px;
1527
+ text-align: start;
1399
1528
  }
1400
- .drawerItemContainer .color-green {
1401
- color: var(--color-success);
1529
+ .api-docs-api-tree__endpoint-name {
1530
+ font-size: 0.75rem;
1531
+ line-height: 0.875rem;
1532
+ color: #3b3f46;
1533
+ display: -webkit-box;
1534
+ -webkit-box-orient: vertical;
1535
+ -webkit-line-clamp: 1;
1536
+ overflow: hidden;
1537
+ text-overflow: ellipsis;
1402
1538
  }
1403
- .drawerItemContainer .color-red {
1404
- color: var(--color-error);
1539
+ .api-docs-api-tree__endpoint--get .api-docs-api-tree__endpoint-method {
1540
+ color: #3a6cd1;
1541
+ }
1542
+ .api-docs-api-tree__endpoint--post .api-docs-api-tree__endpoint-method {
1543
+ color: #3aaa35;
1544
+ }
1545
+ .api-docs-api-tree__endpoint--put .api-docs-api-tree__endpoint-method {
1546
+ color: #faad14;
1547
+ }
1548
+ .api-docs-api-tree__endpoint--delete .api-docs-api-tree__endpoint-method {
1549
+ color: #da3f3f;
1550
+ }
1551
+ .api-docs-api-tree__endpoint--option .api-docs-api-tree__endpoint-method {
1552
+ color: #495d97;
1553
+ }
1554
+ .api-docs-api-tree__endpoint--head .api-docs-api-tree__endpoint-method {
1555
+ color: #9461c9;
1556
+ }
1557
+ .api-docs-api-tree__endpoint--patch .api-docs-api-tree__endpoint-method {
1558
+ color: #58e2c2;
1405
1559
  }.api_docs_header {
1406
1560
  height: 2.625rem;
1407
1561
  background-color: #f0f1f2;
@@ -1640,160 +1794,6 @@ div.endBtnIcon {
1640
1794
  opacity: 1 !important;
1641
1795
  backdrop-filter: blur(0.5rem);
1642
1796
  background-color: rgba(0, 0, 0, 0.281) !important;
1643
- }.api-docs-api-tree {
1644
- width: 100%;
1645
- max-width: 12.5rem;
1646
- padding: 3rem 1.25rem;
1647
- box-sizing: border-box;
1648
- }
1649
- .api-docs-api-tree > * {
1650
- box-sizing: border-box;
1651
- }
1652
- .api-docs-api-tree__section-header {
1653
- display: flex;
1654
- align-items: center;
1655
- gap: 0.25rem;
1656
- padding-inline: 0.5rem;
1657
- cursor: pointer;
1658
- user-select: none;
1659
- height: 2.5rem;
1660
- }
1661
- .api-docs-api-tree__section-header:hover {
1662
- background-color: #f3f4f6;
1663
- }
1664
- .api-docs-api-tree__section-header svg:first-child path {
1665
- stroke: #bbbec5;
1666
- }
1667
- .api-docs-api-tree__section-title {
1668
- font-size: 0.75rem;
1669
- line-height: 0.875rem;
1670
- font-weight: 500;
1671
- color: #000;
1672
- margin-left: 0.25rem;
1673
- }
1674
- .api-docs-api-tree__section__overview {
1675
- display: flex;
1676
- align-items: center;
1677
- gap: 0.5rem;
1678
- padding: 0.5rem 1.75rem;
1679
- border-radius: 0.25rem;
1680
- cursor: pointer;
1681
- }
1682
- .api-docs-api-tree__section__overview:hover {
1683
- background-color: #f3f4f6;
1684
- }
1685
- .api-docs-api-tree__section__overview span {
1686
- font-size: 0.75rem;
1687
- line-height: 0.875rem;
1688
- color: #000000;
1689
- }
1690
- .api-docs-api-tree__section__overview[data-active=true] {
1691
- background-color: #f0f1f2;
1692
- }
1693
- .api-docs-api-tree__section__endpoints {
1694
- display: flex;
1695
- align-items: center;
1696
- height: 1.5rem;
1697
- gap: 0.5rem;
1698
- border-radius: 0.25rem;
1699
- padding-inline: 1.75rem;
1700
- cursor: pointer;
1701
- }
1702
- .api-docs-api-tree__section__endpoints span {
1703
- font-size: 0.75rem;
1704
- line-height: 0.875rem;
1705
- color: #000000;
1706
- }
1707
- .api-docs-api-tree__section__endpoints[data-active=true] {
1708
- background-color: #f0f1f2;
1709
- }
1710
- .api-docs-api-tree__section[data-active=true] .api-docs-api-tree__section-title {
1711
- color: #616874;
1712
- }
1713
- .api-docs-api-tree__endpoints {
1714
- display: flex;
1715
- flex-direction: column;
1716
- align-items: start;
1717
- gap: 0.5rem;
1718
- border-radius: 0.25rem;
1719
- cursor: pointer;
1720
- }
1721
- .api-docs-api-tree__endpoints span {
1722
- font-size: 0.75rem;
1723
- line-height: 0.875rem;
1724
- color: #000000;
1725
- }
1726
- .api-docs-api-tree__endpoints[data-active=true] {
1727
- background-color: #f0f1f2;
1728
- }
1729
- .api-docs-api-tree__subsection-header {
1730
- height: 2rem;
1731
- display: flex;
1732
- align-items: center;
1733
- gap: 0.875rem;
1734
- padding-inline: 0.5rem;
1735
- cursor: pointer;
1736
- user-select: none;
1737
- }
1738
- .api-docs-api-tree__subsection-header svg {
1739
- color: #6b7280;
1740
- }
1741
- .api-docs-api-tree__subsection-title {
1742
- font-size: 0.75rem;
1743
- line-height: 0.875rem;
1744
- color: #616874;
1745
- }
1746
- .api-docs-api-tree__endpoint {
1747
- display: flex;
1748
- align-items: center;
1749
- gap: 0.25rem;
1750
- padding: 0.5rem 0.75rem;
1751
- text-transform: capitalize;
1752
- width: 100%;
1753
- cursor: pointer;
1754
- }
1755
- .api-docs-api-tree__endpoint[data-active=true] {
1756
- background-color: #f0f1f2;
1757
- }
1758
- .api-docs-api-tree__endpoint:hover {
1759
- background-color: #f3f4f6;
1760
- }
1761
- .api-docs-api-tree__endpoint-method {
1762
- font-size: 0.75rem;
1763
- line-height: 0.875rem;
1764
- font-weight: 400;
1765
- text-align: start;
1766
- }
1767
- .api-docs-api-tree__endpoint-name {
1768
- font-size: 0.75rem;
1769
- line-height: 0.875rem;
1770
- color: #3b3f46;
1771
- display: -webkit-box;
1772
- -webkit-box-orient: vertical;
1773
- -webkit-line-clamp: 1;
1774
- overflow: hidden;
1775
- text-overflow: ellipsis;
1776
- }
1777
- .api-docs-api-tree__endpoint--get .api-docs-api-tree__endpoint-method {
1778
- color: #3a6cd1;
1779
- }
1780
- .api-docs-api-tree__endpoint--post .api-docs-api-tree__endpoint-method {
1781
- color: #3aaa35;
1782
- }
1783
- .api-docs-api-tree__endpoint--put .api-docs-api-tree__endpoint-method {
1784
- color: #faad14;
1785
- }
1786
- .api-docs-api-tree__endpoint--delete .api-docs-api-tree__endpoint-method {
1787
- color: #da3f3f;
1788
- }
1789
- .api-docs-api-tree__endpoint--option .api-docs-api-tree__endpoint-method {
1790
- color: #495d97;
1791
- }
1792
- .api-docs-api-tree__endpoint--head .api-docs-api-tree__endpoint-method {
1793
- color: #9461c9;
1794
- }
1795
- .api-docs-api-tree__endpoint--patch .api-docs-api-tree__endpoint-method {
1796
- color: #58e2c2;
1797
1797
  }.codebox {
1798
1798
  border-radius: 0.25rem;
1799
1799
  overflow: hidden;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digi-frontend/dgate-api-documentation",
3
- "version": "1.0.76",
3
+ "version": "1.0.81",
4
4
  "main": "dist/src/index.js",
5
5
  "module": "dist/src/index.js",
6
6
  "types": "dist/types/index.d.ts",
package/variables.txt CHANGED
@@ -1,4 +1,4 @@
1
- export APP_VERSION=1.0.75
2
- export ECR_IMAGE=650046438355.dkr.ecr.eu-central-1.amazonaws.com/dgate-api-documentation:1.0.75-31099-develop
3
- export IMAGE_TAG=1.0.75-31099-develop
1
+ export APP_VERSION=1.0.80
2
+ export ECR_IMAGE=650046438355.dkr.ecr.eu-central-1.amazonaws.com/dgate-api-documentation:1.0.80-31103-develop
3
+ export IMAGE_TAG=1.0.80-31103-develop
4
4
  export TARGET_ENV=dev