@digi-frontend/dgate-api-documentation 1.0.21 → 1.0.26

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.
Files changed (44) hide show
  1. package/dist/src/components/InfoForm/InfoForm.js +1 -1
  2. package/dist/src/components/InfoForm/InfoForm.js.map +1 -1
  3. package/dist/src/components/JsonInput/JsonInput.js +1 -1
  4. package/dist/src/components/JsonInput/JsonInput.js.map +1 -1
  5. package/dist/src/components/LivePreview/LivePreview.js +1 -1
  6. package/dist/src/components/LivePreview/LivePreview.js.map +1 -1
  7. package/dist/src/components/MethodAccordion/MethodAccordion.js +1 -1
  8. package/dist/src/components/MethodAccordion/MethodAccordion.js.map +1 -1
  9. package/dist/src/components/Tooltip/Tooltip.js.map +1 -1
  10. package/dist/src/components/table/table.js +1 -1
  11. package/dist/src/components/table/table.js.map +1 -1
  12. package/dist/src/components/table/tags-table.js +1 -1
  13. package/dist/src/components/table/tags-table.js.map +1 -1
  14. package/dist/src/constants/regex.js +1 -1
  15. package/dist/src/constants/regex.js.map +1 -1
  16. package/dist/src/helpers/layout.helper.js +1 -1
  17. package/dist/src/helpers/layout.helper.js.map +1 -1
  18. package/dist/src/layout/layout.js +1 -1
  19. package/dist/src/layout/layout.js.map +1 -1
  20. package/dist/src/layout/layout.module.css.js +1 -1
  21. package/dist/src/validator/form.scheme.js +1 -1
  22. package/dist/src/validator/form.scheme.js.map +1 -1
  23. package/dist/styles.css +344 -311
  24. package/dist/types/components/MethodAccordion/MethodAccordion.d.ts +3 -1
  25. package/dist/types/components/Tooltip/Tooltip.d.ts +2 -2
  26. package/dist/types/constants/regex.d.ts +2 -0
  27. package/dist/types/validator/form.scheme.d.ts +1 -1
  28. package/package.json +2 -2
  29. package/src/components/InfoForm/InfoForm.module.scss +24 -1
  30. package/src/components/InfoForm/InfoForm.tsx +89 -47
  31. package/src/components/JsonInput/JsonInput.tsx +18 -7
  32. package/src/components/LivePreview/LivePreview.module.scss +18 -5
  33. package/src/components/LivePreview/LivePreview.tsx +47 -25
  34. package/src/components/MethodAccordion/MethodAccordion.tsx +103 -67
  35. package/src/components/Tooltip/Tooltip.scss +12 -9
  36. package/src/components/Tooltip/Tooltip.tsx +2 -3
  37. package/src/components/table/style.scss +1 -1
  38. package/src/components/table/table.tsx +11 -8
  39. package/src/components/table/tags-table.tsx +49 -14
  40. package/src/constants/regex.ts +2 -0
  41. package/src/helpers/layout.helper.ts +1 -1
  42. package/src/layout/layout.module.css +5 -0
  43. package/src/layout/layout.tsx +45 -7
  44. package/src/validator/form.scheme.ts +9 -9
package/dist/styles.css CHANGED
@@ -1,103 +1,4 @@
1
- .apiInfoForm {
2
- display: grid;
3
- padding: 1.25rem 1.875rem;
4
- gap: 1.25rem;
5
- }
6
- .apiInfoForm .paramsTable .paramDescContainer {
7
- display: flex;
8
- }
9
- .apiInfoForm .paramsTable .paramDescContainer .paramDescContainer_separator {
10
- height: inherit;
11
- width: 1px;
12
- background-color: #d8dae5;
13
- }
14
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn) svg path {
15
- stroke-width: 0.1;
16
- }
17
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn {
18
- padding: 0;
19
- margin-right: 1.25rem;
20
- }
21
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) {
22
- display: flex;
23
- align-items: center;
24
- padding: 0;
25
- color: #12131a;
26
- }
27
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
28
- margin-block: auto;
29
- }
30
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg path {
31
- fill: #12131a;
32
- }
33
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn {
34
- padding: 0;
35
- }
36
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
37
- margin-block: auto;
38
- }
39
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg {
40
- width: 1.125rem;
41
- }
42
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) {
43
- margin-block: auto;
44
- }
45
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg {
46
- width: 1.125rem;
47
- }
48
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg path {
49
- fill: #3aaa35;
50
- }
51
- .apiInfoForm .paramsTable .editDescTooltipContent {
52
- display: flex;
53
- flex-direction: column;
54
- gap: 0.625rem;
55
- padding-bottom: 0.625rem;
56
- }
57
- .apiInfoForm .paramsTable .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
58
- margin-inline: 0.625rem;
59
- }
60
- .apiInfoForm .paramsTable .editDescTooltipContent .editDescTooltipContent_header {
61
- font-weight: 600;
62
- font-size: 0.875rem;
63
- line-height: 1.25rem;
64
- padding: 0.75rem 1.25rem;
65
- border-bottom: 1px solid #d8dae5;
66
- }
67
- .apiInfoForm .paramsTable :global(.requiredParam) :global(.headContainer)::after {
68
- content: "*";
69
- color: red;
70
- transform: translateX(0.125rem);
71
- }
72
- .apiInfoForm .apiDocRow {
73
- display: grid;
74
- grid-template-columns: 1fr 1fr;
75
- gap: 1.25rem;
76
- }
77
- .apiInfoForm .apiInfoForm_tagsChips {
78
- margin-top: -1.25rem;
79
- }
80
- .apiInfoForm .editDescTooltipContent {
81
- display: flex;
82
- flex-direction: column;
83
- gap: 0.625rem;
84
- padding-bottom: 0.625rem;
85
- }
86
- .apiInfoForm .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
87
- margin-inline: 0.625rem;
88
- }
89
- .apiInfoForm .editDescTooltipContent .editDescTooltipContent_header {
90
- font-weight: 600;
91
- font-size: 0.875rem;
92
- line-height: 1.25rem;
93
- padding: 0.75rem 1.25rem;
94
- border-bottom: 1px solid #d8dae5;
95
- }
96
- .apiInfoForm :global(.requiredParam) :global(.headContainer)::after {
97
- content: "*";
98
- color: red;
99
- transform: translateX(0.125rem);
100
- }.methodAccordion {
1
+ .methodAccordion {
101
2
  border: none !important;
102
3
  box-shadow: none !important;
103
4
  margin-bottom: 0 !important;
@@ -370,33 +271,320 @@
370
271
  }
371
272
  .methodAccordion.readOnly .methodSummaryContainer .methodExpandArrowContainer {
372
273
  background-color: #ebecf2;
373
- }.containerTitleDrawer {
374
- height: 64px;
375
- min-height: 64px;
274
+ }.apiInfoForm {
275
+ display: grid;
276
+ padding: 1.25rem 1.875rem;
277
+ gap: 1.25rem;
278
+ }
279
+ .apiInfoForm .paramsTable .paramDescContainer {
280
+ display: flex;
281
+ }
282
+ .apiInfoForm .paramsTable .paramDescContainer .paramDescContainer_separator {
283
+ height: inherit;
284
+ width: 1px;
285
+ background-color: #d8dae5;
286
+ }
287
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn) svg path {
288
+ stroke-width: 0.1;
289
+ }
290
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn {
291
+ padding: 0;
292
+ margin-right: 1.25rem;
293
+ }
294
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) {
295
+ display: flex;
296
+ align-items: center;
297
+ padding: 0;
298
+ font-size: 0.875rem;
299
+ }
300
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
301
+ margin-block: auto;
302
+ }
303
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg path {
304
+ fill: #12131a;
305
+ }
306
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn {
307
+ padding: 0;
308
+ border-width: 0 !important;
309
+ }
310
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
311
+ margin-block: auto;
312
+ }
313
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg {
314
+ width: 1.125rem;
315
+ }
316
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) {
317
+ margin-block: auto;
318
+ }
319
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg {
320
+ width: 1.125rem;
321
+ }
322
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg path {
323
+ fill: #3aaa35;
324
+ }
325
+ .apiInfoForm .paramsTable .externalDocsLink {
326
+ font-size: 0.875rem;
327
+ line-height: 1.25rem;
328
+ cursor: pointer;
329
+ align-self: center;
330
+ margin-right: 2rem;
331
+ }
332
+ .apiInfoForm .paramsTable .editExternalDocs {
333
+ display: flex;
334
+ align-items: center;
335
+ padding-right: 0.625rem;
336
+ }
337
+ .apiInfoForm .paramsTable .editExternalDocs svg {
338
+ cursor: pointer;
339
+ }
340
+ .apiInfoForm .paramsTable .editExternalDocs svg path {
341
+ fill: #12131a;
342
+ }
343
+ .apiInfoForm .paramsTable .editDescTooltipContent {
344
+ display: flex;
345
+ flex-direction: column;
346
+ gap: 0.625rem;
347
+ padding-bottom: 0.625rem;
348
+ }
349
+ .apiInfoForm .paramsTable .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
350
+ margin-inline: 0.625rem;
351
+ }
352
+ .apiInfoForm .paramsTable .editDescTooltipContent .editDescTooltipContent_header {
353
+ font-weight: 600;
354
+ font-size: 0.875rem;
355
+ line-height: 1.25rem;
356
+ padding: 0.75rem 1.25rem;
357
+ border-bottom: 1px solid #d8dae5;
358
+ }
359
+ .apiInfoForm .paramsTable :global(.requiredParam) :global(.headContainer)::after {
360
+ content: "*";
361
+ color: red;
362
+ transform: translateX(0.125rem);
363
+ }
364
+ .apiInfoForm .apiDocRow {
365
+ display: grid;
366
+ grid-template-columns: 1fr 1fr;
367
+ gap: 1.25rem;
368
+ }
369
+ .apiInfoForm .apiInfoForm_tagsChips {
370
+ margin-top: -1.25rem;
371
+ }
372
+ .apiInfoForm .editDescTooltipContent {
373
+ display: flex;
374
+ flex-direction: column;
375
+ gap: 0.625rem;
376
+ padding-bottom: 0.625rem;
377
+ }
378
+ .apiInfoForm .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
379
+ margin-inline: 0.625rem;
380
+ }
381
+ .apiInfoForm .editDescTooltipContent .editDescTooltipContent_header {
382
+ font-weight: 600;
383
+ font-size: 0.875rem;
384
+ line-height: 1.25rem;
385
+ padding: 0.75rem 1.25rem;
386
+ border-bottom: 1px solid #d8dae5;
387
+ }
388
+ .apiInfoForm :global(.requiredParam) :global(.headContainer)::after {
389
+ content: "*";
390
+ color: red;
391
+ transform: translateX(0.125rem);
392
+ }.json-editor-container {
393
+ overflow: hidden;
394
+ border-bottom-right-radius: 0.3125rem;
395
+ border-bottom-left-radius: 0.3125rem;
396
+ }
397
+ .json-editor-container .json-editor-label {
398
+ font-size: 0.875rem;
399
+ font-weight: 600;
400
+ line-height: 1.25rem;
401
+ margin-bottom: 0.3125rem;
402
+ }
403
+ .json-editor-container .json-editor {
404
+ display: flex;
405
+ flex-direction: column;
406
+ background-color: #142452;
407
+ width: 100%;
408
+ outline: 1px solid transparent;
409
+ position: relative;
410
+ overflow: hidden;
411
+ }
412
+ .json-editor-container .json-editor .actions-container {
413
+ width: 100%;
414
+ height: 5rem;
415
+ padding: 1.25rem;
416
+ border-radius: 0 0 0.3125rem 0.3125rem;
417
+ background: #101e47;
376
418
  display: flex;
377
419
  flex-direction: row;
378
- justify-content: space-between;
420
+ gap: 1.25rem;
379
421
  align-items: center;
380
- background-color: #f1f2f6;
381
- padding: 0 30px 0 30px;
422
+ }
423
+ .json-editor-container .json-editor .actions-container .validate {
424
+ color: #fff;
425
+ text-align: center;
426
+ font-size: 1rem;
427
+ font-style: normal;
428
+ font-weight: 600;
429
+ line-height: 1.25rem;
430
+ width: 8.75rem;
431
+ padding: 0.625rem 2.25rem;
432
+ background-color: rgba(240, 248, 255, 0);
433
+ border-radius: 0.3125rem;
434
+ border: 0.0625rem solid #4d75d8;
435
+ cursor: pointer;
436
+ }
437
+ .json-editor-container .json-editor .actions-container .validate:disabled {
438
+ color: #babdcc;
439
+ border-color: #a2a5b6;
440
+ }
441
+ .json-editor-container .json-editor .actions-container .beautify {
442
+ color: #fff;
443
+ text-align: center;
444
+ font-size: 1rem;
445
+ font-style: normal;
446
+ font-weight: 600;
447
+ line-height: 1.25rem;
448
+ width: 8.75rem;
449
+ padding: 0.625rem 2.25rem;
450
+ background-color: rgba(240, 248, 255, 0);
451
+ border-radius: 0.3125rem;
452
+ border: 1px solid #babdcc;
453
+ cursor: pointer;
454
+ }
455
+ .json-editor-container .json-editor .actions-container .beautify:disabled {
456
+ color: #a2a5b6;
457
+ border-color: #a2a5b6;
458
+ }
459
+ .json-editor-container .json-editor textarea {
382
460
  width: 100%;
461
+ padding: 1.25rem;
462
+ font-size: 0.875rem;
463
+ font-style: normal;
464
+ font-weight: 400;
465
+ line-height: 1.25rem;
466
+ color: white;
467
+ height: 25rem;
468
+ background-color: #142452;
469
+ border: none;
470
+ resize: none;
471
+ }
472
+ .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 {
473
+ outline: none;
474
+ border: none;
475
+ }
476
+ .json-editor-container .json-editor textarea::-webkit-scrollbar {
477
+ width: 0.5rem;
478
+ }
479
+ .json-editor-container .json-editor textarea::-webkit-scrollbar-track {
480
+ background-color: #828699;
481
+ border: none;
482
+ border-color: transparent;
483
+ border-top-left-radius: 0;
484
+ }
485
+ .json-editor-container .json-editor textarea::-webkit-scrollbar-thumb {
486
+ background-color: #d8dae5;
487
+ border: none;
488
+ border-color: transparent;
489
+ border-radius: 0;
490
+ }
491
+ .json-editor-container .json-editor.invalid {
492
+ outline: 1px solid #ce2828 !important;
493
+ }
494
+ .json-editor-container .error-message {
495
+ color: #ce2828;
496
+ font-size: 0.75rem;
497
+ line-height: 1.25rem;
498
+ margin-top: 0.625rem;
499
+ }
500
+ .json-editor-container.disabled .json-editor textarea {
501
+ background-color: white;
502
+ color: #12131a;
503
+ }#common-dialog.dialog-content-wrapper {
504
+ overflow: visible !important;
505
+ max-height: 100%;
506
+ width: 22.1875rem;
507
+ }
508
+ #common-dialog.dialog-content-wrapper .dialog-content-root {
509
+ overflow: visible !important;
510
+ border-radius: 0.625rem;
511
+ max-height: 100%;
512
+ }
513
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content {
514
+ padding: 0 1.875rem !important;
515
+ overflow: visible !important;
516
+ max-height: 100%;
517
+ }
518
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog {
519
+ position: relative;
520
+ }
521
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .close-icon {
522
+ position: absolute;
523
+ z-index: 1;
524
+ top: 1.5rem;
525
+ right: 0;
526
+ transform: translate(0.625rem, -0.625rem);
527
+ cursor: pointer;
528
+ }
529
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header {
530
+ display: flex;
531
+ padding-top: 0.5rem;
532
+ position: relative;
533
+ }
534
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon {
535
+ margin-top: 1rem;
536
+ margin-bottom: 1.5rem;
537
+ margin-inline: auto;
538
+ }
539
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info path {
540
+ stroke: #12131a;
541
+ }
542
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line {
543
+ stroke: #12131a;
544
+ }
545
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line + path {
546
+ fill: #12131a;
547
+ }
548
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning path {
549
+ stroke: #faad14;
550
+ }
551
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning line {
552
+ stroke: #faad14;
383
553
  }
384
- .containerTitleDrawer span {
385
- color: #12131a;
386
- font-weight: 600;
387
- font-size: 18px;
388
- line-height: 25px;
389
- letter-spacing: 0em;
554
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error path {
555
+ stroke: #da3f3f;
390
556
  }
391
- .containerTitleDrawer svg path {
392
- stroke: #000 !important;
557
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line {
558
+ stroke: #da3f3f;
393
559
  }
394
- .containerTitleDrawer .closeIcon {
395
- cursor: pointer;
560
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line + path {
561
+ fill: #da3f3f;
562
+ }
563
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title {
564
+ font-size: 1.5rem;
565
+ font-weight: 500;
566
+ line-height: 1.875rem;
567
+ text-align: center;
568
+ margin-bottom: 0.625rem;
569
+ }
570
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.error-title {
571
+ color: #da3f3f;
572
+ }
573
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.warning-title {
574
+ color: #faad14;
575
+ }
576
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-footer {
577
+ display: flex;
578
+ gap: 1.25rem;
579
+ margin-top: 1.875rem;
396
580
  }.tooltip-custom-wrapper {
397
581
  display: flex;
398
582
  }
399
583
 
584
+ [data-tippy-root] {
585
+ z-index: 2 !important;
586
+ }
587
+
400
588
  .tippy-box {
401
589
  background-color: #202f5b;
402
590
  font-size: 0.875rem;
@@ -407,12 +595,13 @@
407
595
  word-break: break-word;
408
596
  position: relative;
409
597
  border: 1px solid #d8dae5;
598
+ z-index: 2;
410
599
  }
411
600
  .tippy-box.function .tippy-content {
412
601
  background-color: #fff !important;
413
602
  color: #000 !important;
414
603
  }
415
- .tippy-box[data-placement] > .tippy-arrow:before {
604
+ .tippy-box.function[data-placement] > .tippy-arrow:before {
416
605
  color: #fff !important;
417
606
  }
418
607
  .tippy-box.info .tippy-arrow {
@@ -469,20 +658,33 @@
469
658
  .tippy-box.arrow-with-border[data-placement] .tippy-arrow {
470
659
  top: 1px;
471
660
  background-color: white;
472
- z-index: 9999;
661
+ z-index: 2;
473
662
  height: 1px;
474
663
  }
475
664
  .tippy-box.arrow-with-border[data-placement] .tippy-arrow:before {
476
- width: 1rem;
477
- height: 1rem;
665
+ width: 0.625rem;
666
+ height: 0.625rem;
478
667
  background-color: white;
479
668
  transform: rotate(45deg);
480
669
  border: none;
481
670
  border-left: 1px solid #d8dae5 !important;
482
671
  border-top: 1px solid #d8dae5 !important;
483
- z-index: 20000000000;
484
- top: -0.6rem;
672
+ z-index: 2;
673
+ top: -0.45rem;
485
674
  transform-origin: center !important;
675
+ }.livePreviewContainer .titleContainer {
676
+ display: flex;
677
+ justify-content: space-between;
678
+ align-items: center;
679
+ }
680
+ .livePreviewContainer .titleContainer p.apiName {
681
+ font-size: 40px;
682
+ line-height: 30px;
683
+ font-weight: 500;
684
+ }
685
+ .livePreviewContainer .titleContainer .livePreviewChip {
686
+ background-color: #ebecf2;
687
+ color: #12131a;
486
688
  }:root {
487
689
  --white: #fff;
488
690
  --Gray-5: #f1f2f6;
@@ -590,7 +792,7 @@
590
792
  .tableSectionContainer .tableContainer .table .tableHead {
591
793
  border: 1px solid var(--Gray-10);
592
794
  margin: 0rem !important;
593
- background-color: var(--background-color-header);
795
+ background-color: #f8f9fb;
594
796
  width: max-content;
595
797
  min-width: 100%;
596
798
  color: var(--Gray-50);
@@ -718,87 +920,29 @@
718
920
  .tableSectionContainer .descArrow path,
719
921
  .tableSectionContainer .defaultSortArrow path {
720
922
  fill: var(--Gray-50);
721
- }p.apiName {
722
- font-size: 40px;
723
- line-height: 30px;
724
- font-weight: 500;
725
- }#common-dialog.dialog-content-wrapper {
726
- overflow: visible !important;
727
- max-height: 100%;
728
- width: 22.1875rem;
729
- }
730
- #common-dialog.dialog-content-wrapper .dialog-content-root {
731
- overflow: visible !important;
732
- border-radius: 0.625rem;
733
- max-height: 100%;
734
- }
735
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content {
736
- padding: 0 1.875rem !important;
737
- overflow: visible !important;
738
- max-height: 100%;
739
- }
740
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog {
741
- position: relative;
742
- }
743
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .close-icon {
744
- position: absolute;
745
- z-index: 1;
746
- top: 1.5rem;
747
- right: 0;
748
- transform: translate(0.625rem, -0.625rem);
749
- cursor: pointer;
750
- }
751
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header {
923
+ }.containerTitleDrawer {
924
+ height: 64px;
925
+ min-height: 64px;
752
926
  display: flex;
753
- padding-top: 0.5rem;
754
- position: relative;
755
- }
756
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon {
757
- margin-top: 1rem;
758
- margin-bottom: 1.5rem;
759
- margin-inline: auto;
760
- }
761
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info path {
762
- stroke: #12131a;
763
- }
764
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line {
765
- stroke: #12131a;
766
- }
767
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line + path {
768
- fill: #12131a;
769
- }
770
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning path {
771
- stroke: #faad14;
772
- }
773
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning line {
774
- stroke: #faad14;
775
- }
776
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error path {
777
- stroke: #da3f3f;
778
- }
779
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line {
780
- stroke: #da3f3f;
781
- }
782
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line + path {
783
- fill: #da3f3f;
784
- }
785
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title {
786
- font-size: 1.5rem;
787
- font-weight: 500;
788
- line-height: 1.875rem;
789
- text-align: center;
790
- margin-bottom: 0.625rem;
927
+ flex-direction: row;
928
+ justify-content: space-between;
929
+ align-items: center;
930
+ background-color: #f1f2f6;
931
+ padding: 0 30px 0 30px;
932
+ width: 100%;
791
933
  }
792
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.error-title {
793
- color: #da3f3f;
934
+ .containerTitleDrawer span {
935
+ color: #12131a;
936
+ font-weight: 600;
937
+ font-size: 18px;
938
+ line-height: 25px;
939
+ letter-spacing: 0em;
794
940
  }
795
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.warning-title {
796
- color: #faad14;
941
+ .containerTitleDrawer svg path {
942
+ stroke: #000 !important;
797
943
  }
798
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-footer {
799
- display: flex;
800
- gap: 1.25rem;
801
- margin-top: 1.875rem;
944
+ .containerTitleDrawer .closeIcon {
945
+ cursor: pointer;
802
946
  }:root {
803
947
  --white: #fff;
804
948
  --Gray-5: #f1f2f6;
@@ -904,115 +1048,4 @@
904
1048
  }
905
1049
  .drawerItemContainer .color-red {
906
1050
  color: var(--color-error);
907
- }.json-editor-container {
908
- overflow: hidden;
909
- border-bottom-right-radius: 0.3125rem;
910
- border-bottom-left-radius: 0.3125rem;
911
- }
912
- .json-editor-container .json-editor-label {
913
- font-size: 0.875rem;
914
- font-weight: 600;
915
- line-height: 1.25rem;
916
- margin-bottom: 0.3125rem;
917
- }
918
- .json-editor-container .json-editor {
919
- display: flex;
920
- flex-direction: column;
921
- background-color: #142452;
922
- width: 100%;
923
- outline: 1px solid transparent;
924
- position: relative;
925
- overflow: hidden;
926
- }
927
- .json-editor-container .json-editor .actions-container {
928
- width: 100%;
929
- height: 5rem;
930
- padding: 1.25rem;
931
- border-radius: 0 0 0.3125rem 0.3125rem;
932
- background: #101e47;
933
- display: flex;
934
- flex-direction: row;
935
- gap: 1.25rem;
936
- align-items: center;
937
- }
938
- .json-editor-container .json-editor .actions-container .validate {
939
- color: #fff;
940
- text-align: center;
941
- font-size: 1rem;
942
- font-style: normal;
943
- font-weight: 600;
944
- line-height: 1.25rem;
945
- width: 8.75rem;
946
- padding: 0.625rem 2.25rem;
947
- background-color: rgba(240, 248, 255, 0);
948
- border-radius: 0.3125rem;
949
- border: 0.0625rem solid #4d75d8;
950
- cursor: pointer;
951
- }
952
- .json-editor-container .json-editor .actions-container .validate:disabled {
953
- color: #babdcc;
954
- border-color: #a2a5b6;
955
- }
956
- .json-editor-container .json-editor .actions-container .beautify {
957
- color: #fff;
958
- text-align: center;
959
- font-size: 1rem;
960
- font-style: normal;
961
- font-weight: 600;
962
- line-height: 1.25rem;
963
- width: 8.75rem;
964
- padding: 0.625rem 2.25rem;
965
- background-color: rgba(240, 248, 255, 0);
966
- border-radius: 0.3125rem;
967
- border: 1px solid #babdcc;
968
- cursor: pointer;
969
- }
970
- .json-editor-container .json-editor .actions-container .beautify:disabled {
971
- color: #a2a5b6;
972
- border-color: #a2a5b6;
973
- }
974
- .json-editor-container .json-editor textarea {
975
- width: 100%;
976
- padding: 1.25rem;
977
- font-size: 0.875rem;
978
- font-style: normal;
979
- font-weight: 400;
980
- line-height: 1.25rem;
981
- color: white;
982
- height: 25rem;
983
- background-color: #142452;
984
- border: none;
985
- resize: none;
986
- }
987
- .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 {
988
- outline: none;
989
- border: none;
990
- }
991
- .json-editor-container .json-editor textarea::-webkit-scrollbar {
992
- width: 0.5rem;
993
- }
994
- .json-editor-container .json-editor textarea::-webkit-scrollbar-track {
995
- background-color: #828699;
996
- border: none;
997
- border-color: transparent;
998
- border-top-left-radius: 0;
999
- }
1000
- .json-editor-container .json-editor textarea::-webkit-scrollbar-thumb {
1001
- background-color: #d8dae5;
1002
- border: none;
1003
- border-color: transparent;
1004
- border-radius: 0;
1005
- }
1006
- .json-editor-container .json-editor.invalid {
1007
- outline: 1px solid #ce2828 !important;
1008
- }
1009
- .json-editor-container .error-message {
1010
- color: #ce2828;
1011
- font-size: 0.75rem;
1012
- line-height: 1.25rem;
1013
- margin-top: 0.625rem;
1014
- }
1015
- .json-editor-container.disabled .json-editor textarea {
1016
- background-color: white;
1017
- color: #12131a;
1018
1051
  }