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

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,6 +917,117 @@
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;
930
+ }
931
+ .json-editor-container .json-editor {
932
+ display: flex;
933
+ 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
+ }
969
+ .json-editor-container .json-editor .actions-container .beautify {
970
+ color: #fff;
971
+ text-align: center;
972
+ font-size: 1rem;
973
+ font-style: normal;
974
+ 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;
986
+ }
987
+ .json-editor-container .json-editor textarea {
988
+ width: 100%;
989
+ padding: 1.25rem;
990
+ font-size: 0.875rem;
991
+ font-style: normal;
992
+ 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;
1021
+ }
1022
+ .json-editor-container .error-message {
1023
+ color: #ce2828;
1024
+ font-size: 0.75rem;
1025
+ line-height: 1.25rem;
1026
+ margin-top: 0.625rem;
1027
+ }
1028
+ .json-editor-container.disabled .json-editor textarea {
1029
+ background-color: white;
1030
+ color: #12131a;
920
1031
  }:root {
921
1032
  --white: #fff;
922
1033
  --Gray-5: #f1f2f6;
@@ -1291,117 +1402,6 @@ div.endBtnIcon {
1291
1402
  .tableSectionContainer .descArrow path,
1292
1403
  .tableSectionContainer .defaultSortArrow path {
1293
1404
  fill: var(--Gray-50);
1294
- }.json-editor-container {
1295
- overflow: hidden;
1296
- border-bottom-right-radius: 0.3125rem;
1297
- border-bottom-left-radius: 0.3125rem;
1298
- }
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 {
1306
- display: flex;
1307
- flex-direction: column;
1308
- background-color: #142452;
1309
- width: 100%;
1310
- outline: 1px solid transparent;
1311
- position: relative;
1312
- overflow: hidden;
1313
- }
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;
1330
- font-weight: 600;
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;
1338
- }
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
1405
  }.api-docs-api-tree {
1406
1406
  width: 100%;
1407
1407
  max-width: 12.5rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digi-frontend/dgate-api-documentation",
3
- "version": "1.0.81",
3
+ "version": "1.0.82",
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.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
1
+ export APP_VERSION=1.0.81
2
+ export ECR_IMAGE=650046438355.dkr.ecr.eu-central-1.amazonaws.com/dgate-api-documentation:1.0.81-31104-develop
3
+ export IMAGE_TAG=1.0.81-31104-develop
4
4
  export TARGET_ENV=dev
@@ -1,12 +0,0 @@
1
- #!/usr/bin/env bash
2
- #export CODEARTIFACT_AUTH_TOKEN=`aws codeartifact get-authorization-token --domain digitinary --domain-owner 650046438355 --region eu-central-1 --query authorizationToken --output text`
3
-
4
- set -e
5
-
6
- npm install
7
-
8
- npm version patch --no-git-tag-version
9
-
10
- npm run build
11
-
12
- npm publish