@digi-frontend/dgate-api-documentation 1.0.9 → 1.0.11

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 (34) 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/table/table.js +1 -1
  10. package/dist/src/components/table/table.js.map +1 -1
  11. package/dist/src/components/table/tags-table.js +1 -1
  12. package/dist/src/components/table/tags-table.js.map +1 -1
  13. package/dist/src/constants/index.js.map +1 -1
  14. package/dist/src/helpers/layout.helper.js +1 -1
  15. package/dist/src/helpers/layout.helper.js.map +1 -1
  16. package/dist/src/layout/layout.js +1 -1
  17. package/dist/src/layout/layout.js.map +1 -1
  18. package/dist/src/layout/layout.module.css.js +1 -1
  19. package/dist/styles.css +341 -441
  20. package/dist/types/components/JsonInput/JsonInput.d.ts +2 -1
  21. package/dist/types/components/MethodAccordion/MethodAccordion.d.ts +1 -1
  22. package/package.json +1 -1
  23. package/src/components/InfoForm/InfoForm.tsx +13 -7
  24. package/src/components/JsonInput/JsonInput.tsx +34 -26
  25. package/src/components/JsonInput/style.module.scss +14 -4
  26. package/src/components/LivePreview/LivePreview.tsx +142 -33
  27. package/src/components/MethodAccordion/MethodAccordion.module.scss +23 -10
  28. package/src/components/MethodAccordion/MethodAccordion.tsx +7 -4
  29. package/src/components/table/table.tsx +27 -16
  30. package/src/components/table/tags-table.tsx +1 -0
  31. package/src/constants/index.ts +4 -4
  32. package/src/helpers/layout.helper.ts +13 -1
  33. package/src/layout/layout.module.css +1 -1
  34. package/src/layout/layout.tsx +1 -2
package/dist/styles.css CHANGED
@@ -1,4 +1,94 @@
1
- :root {
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 .editDescTooltipContent {
43
+ display: flex;
44
+ flex-direction: column;
45
+ gap: 0.625rem;
46
+ padding-bottom: 0.625rem;
47
+ }
48
+ .apiInfoForm .paramsTable .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
49
+ margin-inline: 0.625rem;
50
+ }
51
+ .apiInfoForm .paramsTable .editDescTooltipContent .editDescTooltipContent_header {
52
+ font-weight: 600;
53
+ font-size: 0.875rem;
54
+ line-height: 1.25rem;
55
+ padding: 0.75rem 1.25rem;
56
+ border-bottom: 1px solid #d8dae5;
57
+ }
58
+ .apiInfoForm .paramsTable :global(.requiredParam) :global(.headContainer)::after {
59
+ content: "*";
60
+ color: red;
61
+ transform: translateX(0.125rem);
62
+ }
63
+ .apiInfoForm .apiDocRow {
64
+ display: grid;
65
+ grid-template-columns: 1fr 1fr;
66
+ gap: 1.25rem;
67
+ }
68
+ .apiInfoForm .apiInfoForm_tagsChips {
69
+ margin-top: -1.25rem;
70
+ }
71
+ .apiInfoForm .editDescTooltipContent {
72
+ display: flex;
73
+ flex-direction: column;
74
+ gap: 0.625rem;
75
+ padding-bottom: 0.625rem;
76
+ }
77
+ .apiInfoForm .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
78
+ margin-inline: 0.625rem;
79
+ }
80
+ .apiInfoForm .editDescTooltipContent .editDescTooltipContent_header {
81
+ font-weight: 600;
82
+ font-size: 0.875rem;
83
+ line-height: 1.25rem;
84
+ padding: 0.75rem 1.25rem;
85
+ border-bottom: 1px solid #d8dae5;
86
+ }
87
+ .apiInfoForm :global(.requiredParam) :global(.headContainer)::after {
88
+ content: "*";
89
+ color: red;
90
+ transform: translateX(0.125rem);
91
+ }:root {
2
92
  --white: #fff;
3
93
  --Gray-5: #f1f2f6;
4
94
  --Gray-10: #ebecf2;
@@ -227,111 +317,83 @@
227
317
  .tableSectionContainer .descArrow path,
228
318
  .tableSectionContainer .defaultSortArrow path {
229
319
  fill: var(--Gray-50);
230
- }.json-editor-container .json-editor-label {
231
- font-size: 0.875rem;
232
- font-weight: 600;
233
- line-height: 1.25rem;
234
- margin-bottom: 0.3125rem;
320
+ }#common-dialog.dialog-content-wrapper {
321
+ overflow: visible !important;
322
+ max-height: 100%;
323
+ width: 22.1875rem;
235
324
  }
236
- .json-editor-container .json-editor {
237
- display: flex;
238
- flex-direction: column;
239
- background-color: #142452;
240
- width: 100%;
241
- border-radius: 0.3125rem;
242
- margin-bottom: -0.5rem;
243
- outline: 1px solid transparent;
325
+ #common-dialog.dialog-content-wrapper .dialog-content-root {
326
+ overflow: visible !important;
327
+ border-radius: 0.625rem;
328
+ max-height: 100%;
329
+ }
330
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content {
331
+ padding: 0 1.875rem !important;
332
+ overflow: visible !important;
333
+ max-height: 100%;
334
+ }
335
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog {
244
336
  position: relative;
245
337
  }
246
- .json-editor-container .json-editor .actions-container {
247
- width: 100%;
248
- height: 5rem;
249
- padding: 1.25rem;
250
- border-radius: 0 0 0.3125rem 0.3125rem;
251
- background: #101e47;
338
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .close-icon {
339
+ position: absolute;
340
+ z-index: 1;
341
+ top: 1.5rem;
342
+ right: 0;
343
+ transform: translate(0.625rem, -0.625rem);
344
+ cursor: pointer;
345
+ }
346
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header {
252
347
  display: flex;
253
- flex-direction: row;
254
- gap: 1.25rem;
255
- align-items: center;
348
+ padding-top: 0.5rem;
349
+ position: relative;
256
350
  }
257
- .json-editor-container .json-editor .actions-container .validate {
258
- color: #fff;
259
- text-align: center;
260
- font-size: 1rem;
261
- font-style: normal;
262
- font-weight: 600;
263
- line-height: 1.25rem;
264
- width: 8.75rem;
265
- padding: 0.625rem 2.25rem;
266
- background-color: rgba(240, 248, 255, 0);
267
- border-radius: 0.3125rem;
268
- border: 0.0625rem solid #4d75d8;
269
- cursor: pointer;
351
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon {
352
+ margin-top: 1rem;
353
+ margin-bottom: 1.5rem;
354
+ margin-inline: auto;
270
355
  }
271
- .json-editor-container .json-editor .actions-container .validate:disabled {
272
- color: #babdcc;
273
- border-color: #a2a5b6;
356
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info path {
357
+ stroke: #12131a;
274
358
  }
275
- .json-editor-container .json-editor .actions-container .beautify {
276
- color: #fff;
277
- text-align: center;
278
- font-size: 1rem;
279
- font-style: normal;
280
- font-weight: 600;
281
- line-height: 1.25rem;
282
- width: 8.75rem;
283
- padding: 0.625rem 2.25rem;
284
- background-color: rgba(240, 248, 255, 0);
285
- border-radius: 0.3125rem;
286
- border: 1px solid #babdcc;
287
- cursor: pointer;
359
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line {
360
+ stroke: #12131a;
288
361
  }
289
- .json-editor-container .json-editor .actions-container .beautify:disabled {
290
- color: #a2a5b6;
291
- border-color: #a2a5b6;
362
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line + path {
363
+ fill: #12131a;
292
364
  }
293
- .json-editor-container .json-editor textarea {
294
- width: 100%;
295
- padding: 1.25rem;
296
- font-size: 0.875rem;
297
- font-style: normal;
298
- font-weight: 400;
299
- line-height: 1.25rem;
300
- color: white;
301
- height: 25rem;
302
- background-color: #142452;
303
- border: none;
304
- resize: none;
305
- border-radius: 0.3125rem;
365
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning path {
366
+ stroke: #faad14;
306
367
  }
307
- .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 {
308
- outline: none;
309
- border: none;
368
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning line {
369
+ stroke: #faad14;
310
370
  }
311
- .json-editor-container .json-editor textarea::-webkit-scrollbar {
312
- width: 0.5rem;
371
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error path {
372
+ stroke: #da3f3f;
313
373
  }
314
- .json-editor-container .json-editor textarea::-webkit-scrollbar-track {
315
- background-color: #828699;
316
- border: none;
317
- border-color: transparent;
318
- border-top-right-radius: 0.25rem;
319
- border-top-left-radius: 0;
374
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line {
375
+ stroke: #da3f3f;
320
376
  }
321
- .json-editor-container .json-editor textarea::-webkit-scrollbar-thumb {
322
- background-color: #d8dae5;
323
- border: none;
324
- border-color: transparent;
325
- border-radius: 0;
377
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line + path {
378
+ fill: #da3f3f;
326
379
  }
327
- .json-editor-container .json-editor.invalid {
328
- outline: 1px solid #ce2828 !important;
380
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title {
381
+ font-size: 1.5rem;
382
+ font-weight: 500;
383
+ line-height: 1.875rem;
384
+ text-align: center;
385
+ margin-bottom: 0.625rem;
329
386
  }
330
- .json-editor-container .error-message {
331
- color: #ce2828;
332
- font-size: 0.75rem;
333
- line-height: 1.25rem;
334
- margin-top: 0.625rem;
387
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.error-title {
388
+ color: #da3f3f;
389
+ }
390
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.warning-title {
391
+ color: #faad14;
392
+ }
393
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-footer {
394
+ display: flex;
395
+ gap: 1.25rem;
396
+ margin-top: 1.875rem;
335
397
  }.methodAccordion {
336
398
  border: none !important;
337
399
  box-shadow: none !important;
@@ -395,12 +457,6 @@
395
457
  .methodAccordion .methodSummaryContainer .methodExpandArrowContainer svg {
396
458
  transition: rotate 0.3s ease-in-out;
397
459
  }
398
- .methodAccordion .methodSummaryContainer.readOnly .methodSummary {
399
- background-color: #ebecf2;
400
- }
401
- .methodAccordion .methodSummaryContainer.readOnly .methodExpandArrowContainer {
402
- background-color: #ebecf2;
403
- }
404
460
  .methodAccordion .methodAccordionContent {
405
461
  display: flex;
406
462
  flex-direction: column;
@@ -587,238 +643,111 @@
587
643
  width: 0.625rem;
588
644
  aspect-ratio: 1/1;
589
645
  border-radius: 100%;
590
- }.containerTitleDrawer {
591
- height: 64px;
592
- min-height: 64px;
593
- display: flex;
594
- flex-direction: row;
595
- justify-content: space-between;
596
- align-items: center;
597
- background-color: #f1f2f6;
598
- padding: 0 30px 0 30px;
599
- width: 100%;
600
646
  }
601
- .containerTitleDrawer span {
602
- color: #12131a;
603
- font-weight: 600;
604
- font-size: 18px;
605
- line-height: 25px;
606
- letter-spacing: 0em;
607
- }
608
- .containerTitleDrawer svg path {
609
- stroke: #000 !important;
610
- }
611
- .containerTitleDrawer .closeIcon {
612
- cursor: pointer;
613
- }.apiInfoForm {
614
- display: grid;
615
- padding: 1.25rem 1.875rem;
616
- gap: 1.25rem;
617
- }
618
- .apiInfoForm .paramsTable .paramDescContainer {
619
- display: flex;
620
- }
621
- .apiInfoForm .paramsTable .paramDescContainer .paramDescContainer_separator {
622
- height: inherit;
623
- width: 1px;
624
- background-color: #d8dae5;
625
- }
626
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn) svg path {
627
- stroke-width: 0.1;
628
- }
629
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn {
647
+ .methodAccordion.readOnly .methodAccordionContent {
630
648
  padding: 0;
631
- margin-right: 1.25rem;
632
649
  }
633
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) {
634
- display: flex;
635
- align-items: center;
636
- padding: 0;
637
- color: #12131a;
638
- }
639
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
640
- margin-block: auto;
641
- }
642
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg path {
643
- fill: #12131a;
644
- }
645
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn {
646
- padding: 0;
650
+ .methodAccordion.readOnly :global(.accordion-header) {
651
+ margin: 1.25rem 0 0 0 !important;
647
652
  }
648
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
649
- margin-block: auto;
653
+ .methodAccordion.readOnly :global(.accordion-details) {
654
+ background-color: transparent !important;
650
655
  }
651
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg {
652
- width: 1.125rem;
656
+ .methodAccordion.readOnly .methodSummaryContainer .methodSummary {
657
+ background-color: #ebecf2;
653
658
  }
654
- .apiInfoForm .paramsTable .editDescTooltipContent {
659
+ .methodAccordion.readOnly .methodSummaryContainer .methodExpandArrowContainer {
660
+ background-color: #ebecf2;
661
+ }.tooltip-custom-wrapper {
655
662
  display: flex;
656
- flex-direction: column;
657
- gap: 0.625rem;
658
- padding-bottom: 0.625rem;
659
663
  }
660
- .apiInfoForm .paramsTable .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
661
- margin-inline: 0.625rem;
662
- }
663
- .apiInfoForm .paramsTable .editDescTooltipContent .editDescTooltipContent_header {
664
- font-weight: 600;
664
+
665
+ .tippy-box {
666
+ background-color: #202f5b;
665
667
  font-size: 0.875rem;
666
- line-height: 1.25rem;
667
- padding: 0.75rem 1.25rem;
668
- border-bottom: 1px solid #d8dae5;
669
- }
670
- .apiInfoForm .paramsTable :global(.requiredParam) :global(.headContainer)::after {
671
- content: "*";
672
- color: red;
673
- transform: translateX(0.125rem);
668
+ border-radius: 0.3125rem;
669
+ width: max-content;
670
+ max-width: 100%;
671
+ overflow-wrap: break-word;
672
+ word-break: break-word;
673
+ position: relative;
674
+ border: 1px solid #d8dae5;
674
675
  }
675
- .apiInfoForm .apiDocRow {
676
- display: grid;
677
- grid-template-columns: 1fr 1fr;
678
- gap: 1.25rem;
676
+ .tippy-box.function .tippy-content {
677
+ background-color: #fff !important;
678
+ color: #000 !important;
679
679
  }
680
- .apiInfoForm .apiInfoForm_tagsChips {
681
- margin-top: -1.25rem;
680
+ .tippy-box[data-placement] > .tippy-arrow:before {
681
+ color: #fff !important;
682
682
  }
683
- .apiInfoForm .editDescTooltipContent {
684
- display: flex;
685
- flex-direction: column;
686
- gap: 0.625rem;
687
- padding-bottom: 0.625rem;
683
+ .tippy-box.info .tippy-arrow {
684
+ color: #202f5b;
688
685
  }
689
- .apiInfoForm .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
690
- margin-inline: 0.625rem;
686
+ .tippy-box.success {
687
+ border-radius: 1.875rem;
688
+ background-color: #3aaa35;
689
+ padding-inline: 0.625rem;
691
690
  }
692
- .apiInfoForm .editDescTooltipContent .editDescTooltipContent_header {
693
- font-weight: 600;
691
+ .tippy-box .tippy-content {
692
+ text-align: justify;
694
693
  font-size: 0.875rem;
695
694
  line-height: 1.25rem;
696
- padding: 0.75rem 1.25rem;
697
- border-bottom: 1px solid #d8dae5;
698
- }
699
- .apiInfoForm :global(.requiredParam) :global(.headContainer)::after {
700
- content: "*";
701
- color: red;
702
- transform: translateX(0.125rem);
703
- }p.apiName {
704
- font-size: 40px;
705
- line-height: 30px;
706
- font-weight: 500;
707
- }.chips-container {
708
- width: 100%;
709
- }
710
- .chips-container .overflow-dropdown-div {
711
- max-height: 4.25rem;
712
- overflow: hidden;
713
- }
714
- .chips-container .overflow-dropdown-div .dropdown-list {
715
- display: flex;
716
- flex-wrap: wrap;
717
- gap: 0.625rem;
718
- margin-top: 0.625rem;
695
+ padding: 0.625rem;
719
696
  }
720
- .chips-container .overflow-dropdown-div .dropdown-list .chip {
721
- display: flex;
722
- justify-content: center;
723
- align-items: center;
724
- background: #ebecf2;
725
- border-radius: 3.125rem;
726
- width: max-content;
727
- height: 1.5rem;
728
- overflow: hidden;
729
- transition: all 0.4s ease-in-out;
730
- padding-right: 0.9375rem;
731
- cursor: default;
697
+ .tippy-box .tippy-arrow {
698
+ position: relative;
699
+ width: 1rem;
700
+ height: 1rem;
732
701
  }
733
- .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled):hover {
734
- background: #d8dae5;
702
+ .tippy-box[data-placement^=top] .tippy-arrow:before {
703
+ bottom: -0.4375rem;
704
+ border-width: 0.5rem 0.5rem 0 !important;
735
705
  }
736
- .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled):active {
737
- background: #696c80;
738
- color: #fff;
706
+ .tippy-box[data-placement^=right] .tippy-arrow:before {
707
+ left: -0.4375rem;
708
+ border-width: 0.5rem 0.5rem 0.5rem 0 !important;
739
709
  }
740
- .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled):active .chip-close-icon path {
741
- stroke: #fff;
710
+ .tippy-box[data-placement^=bottom] .tippy-arrow:before {
711
+ top: -0.4375rem;
712
+ border-width: 0 0.5rem 0.5rem !important;
742
713
  }
743
- .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled) .chip-close-icon {
744
- cursor: pointer;
714
+ .tippy-box[data-placement^=left] .tippy-arrow:before {
715
+ right: -0.4375rem;
716
+ border-width: 0.5rem 0 0.5rem 0.5rem !important;
745
717
  }
746
- .chips-container .overflow-dropdown-div .dropdown-list .chip.clickable {
747
- cursor: pointer;
718
+ .tippy-box[data-placement^=bottom-start] .tippy-arrow {
719
+ transform: translate(0.937rem, 0) !important;
748
720
  }
749
- .chips-container .overflow-dropdown-div .dropdown-list .chip .chip-text {
750
- display: flex;
751
- align-items: center;
752
- font-size: 0.95rem;
753
- height: 100%;
754
- padding-left: 0.9375rem;
755
- margin-top: -0.125rem;
721
+ .tippy-box[data-placement^=bottom-end] .tippy-arrow {
722
+ margin-left: calc(100% - 1.937rem);
723
+ transform: translate(0, 0) !important;
756
724
  }
757
- .chips-container .overflow-dropdown-div .dropdown-list .chip .chip-close-icon {
758
- display: block;
759
- height: 0.75rem;
760
- width: 0.75rem;
761
- margin-block: auto;
762
- margin-left: 0.625rem;
725
+ .tippy-box[data-placement^=top-start] .tippy-arrow {
726
+ transform: translate(0.937rem, 0) !important;
763
727
  }
764
- .chips-container .overflow-dropdown-div .dropdown-list .chip .chip-close-icon path {
765
- stroke: #12131a;
728
+ .tippy-box[data-placement^=top-end] .tippy-arrow {
729
+ transform: translate(0.937rem, 0) !important;
766
730
  }
767
- .chips-container .dropdown-max-height {
768
- max-height: -moz-fit-content;
769
- max-height: fit-content !important;
731
+ .tippy-box.arrow-with-border {
732
+ border: 1px solid #d8dae5;
770
733
  }
771
- .chips-container .dropdown-overflow {
772
- overflow: visible !important;
734
+ .tippy-box.arrow-with-border[data-placement] .tippy-arrow {
735
+ top: 1px;
736
+ background-color: white;
737
+ z-index: 9999;
738
+ height: 1px;
773
739
  }
774
- .chips-container .show-btn {
775
- display: flex;
776
- flex-direction: row;
777
- flex-wrap: nowrap;
778
- justify-content: center;
779
- align-items: center;
780
- width: auto;
781
- height: 1.25rem;
782
- cursor: pointer;
740
+ .tippy-box.arrow-with-border[data-placement] .tippy-arrow:before {
741
+ width: 1rem;
742
+ height: 1rem;
743
+ background-color: white;
744
+ transform: rotate(45deg);
783
745
  border: none;
784
- margin-top: 0.625rem;
785
- color: #9a9eb2;
786
- background-color: transparent;
787
- }
788
- .chips-container .show-btn .show-btn-text-container {
789
- flex: 1 1 auto;
790
- }
791
- .chips-container .show-btn .show-btn-text-container .show-btn-text {
792
- font-size: 0.75rem;
793
- text-decoration-line: underline;
794
- }
795
- .chips-container .show-btn .show-btn-icon-container {
796
- display: flex;
797
- justify-content: center;
798
- align-items: center;
799
- height: 1.25rem;
800
- width: 1.25rem;
801
- margin-top: 0.1875rem;
802
- margin-left: 0.125rem;
803
- }
804
- .chips-container .show-btn .show-btn-icon-container .show-btn-icon {
805
- height: 1.25rem;
806
- width: 1.25rem;
807
- }
808
- .chips-container .show-btn .show-btn-icon-container .show-btn-icon path {
809
- fill: #9a9eb2;
810
- }
811
- .chips-container .show-btn:hover {
812
- color: #7c9bea;
813
- }
814
- .chips-container .show-btn:hover .show-btn-icon-container .show-btn-icon path {
815
- fill: #7c9bea;
816
- }
817
- .chips-container .show-btn:active {
818
- color: #2c4fa4;
819
- }
820
- .chips-container .show-btn:active .show-btn-icon-container .show-btn-icon path {
821
- fill: #2c4fa4;
746
+ border-left: 1px solid #d8dae5 !important;
747
+ border-top: 1px solid #d8dae5 !important;
748
+ z-index: 20000000000;
749
+ top: -0.6rem;
750
+ transform-origin: center !important;
822
751
  }:root {
823
752
  --white: #fff;
824
753
  --Gray-5: #f1f2f6;
@@ -924,171 +853,142 @@
924
853
  }
925
854
  .drawerItemContainer .color-red {
926
855
  color: var(--color-error);
927
- }#common-dialog.dialog-content-wrapper {
928
- overflow: visible !important;
929
- max-height: 100%;
930
- width: 22.1875rem;
931
- }
932
- #common-dialog.dialog-content-wrapper .dialog-content-root {
933
- overflow: visible !important;
934
- border-radius: 0.625rem;
935
- max-height: 100%;
856
+ }.containerTitleDrawer {
857
+ height: 64px;
858
+ min-height: 64px;
859
+ display: flex;
860
+ flex-direction: row;
861
+ justify-content: space-between;
862
+ align-items: center;
863
+ background-color: #f1f2f6;
864
+ padding: 0 30px 0 30px;
865
+ width: 100%;
936
866
  }
937
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content {
938
- padding: 0 1.875rem !important;
939
- overflow: visible !important;
940
- max-height: 100%;
867
+ .containerTitleDrawer span {
868
+ color: #12131a;
869
+ font-weight: 600;
870
+ font-size: 18px;
871
+ line-height: 25px;
872
+ letter-spacing: 0em;
941
873
  }
942
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog {
943
- position: relative;
874
+ .containerTitleDrawer svg path {
875
+ stroke: #000 !important;
944
876
  }
945
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .close-icon {
946
- position: absolute;
947
- z-index: 1;
948
- top: 1.5rem;
949
- right: 0;
950
- transform: translate(0.625rem, -0.625rem);
877
+ .containerTitleDrawer .closeIcon {
951
878
  cursor: pointer;
879
+ }.json-editor-container {
880
+ overflow: hidden;
881
+ border-bottom-right-radius: 0.3125rem;
882
+ border-bottom-left-radius: 0.3125rem;
952
883
  }
953
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header {
884
+ .json-editor-container .json-editor-label {
885
+ font-size: 0.875rem;
886
+ font-weight: 600;
887
+ line-height: 1.25rem;
888
+ margin-bottom: 0.3125rem;
889
+ }
890
+ .json-editor-container .json-editor {
954
891
  display: flex;
955
- padding-top: 0.5rem;
892
+ flex-direction: column;
893
+ background-color: #142452;
894
+ width: 100%;
895
+ outline: 1px solid transparent;
956
896
  position: relative;
897
+ overflow: hidden;
957
898
  }
958
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon {
959
- margin-top: 1rem;
960
- margin-bottom: 1.5rem;
961
- margin-inline: auto;
962
- }
963
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info path {
964
- stroke: #12131a;
965
- }
966
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line {
967
- stroke: #12131a;
968
- }
969
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line + path {
970
- fill: #12131a;
971
- }
972
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning path {
973
- stroke: #faad14;
974
- }
975
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning line {
976
- stroke: #faad14;
977
- }
978
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error path {
979
- stroke: #da3f3f;
980
- }
981
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line {
982
- stroke: #da3f3f;
983
- }
984
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line + path {
985
- fill: #da3f3f;
986
- }
987
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title {
988
- font-size: 1.5rem;
989
- font-weight: 500;
990
- line-height: 1.875rem;
991
- text-align: center;
992
- margin-bottom: 0.625rem;
993
- }
994
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.error-title {
995
- color: #da3f3f;
996
- }
997
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.warning-title {
998
- color: #faad14;
999
- }
1000
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-footer {
899
+ .json-editor-container .json-editor .actions-container {
900
+ width: 100%;
901
+ height: 5rem;
902
+ padding: 1.25rem;
903
+ border-radius: 0 0 0.3125rem 0.3125rem;
904
+ background: #101e47;
1001
905
  display: flex;
906
+ flex-direction: row;
1002
907
  gap: 1.25rem;
1003
- margin-top: 1.875rem;
1004
- }.tooltip-custom-wrapper {
1005
- display: flex;
908
+ align-items: center;
1006
909
  }
1007
-
1008
- .tippy-box {
1009
- background-color: #202f5b;
1010
- font-size: 0.875rem;
910
+ .json-editor-container .json-editor .actions-container .validate {
911
+ color: #fff;
912
+ text-align: center;
913
+ font-size: 1rem;
914
+ font-style: normal;
915
+ font-weight: 600;
916
+ line-height: 1.25rem;
917
+ width: 8.75rem;
918
+ padding: 0.625rem 2.25rem;
919
+ background-color: rgba(240, 248, 255, 0);
1011
920
  border-radius: 0.3125rem;
1012
- width: max-content;
1013
- max-width: 100%;
1014
- overflow-wrap: break-word;
1015
- word-break: break-word;
1016
- position: relative;
1017
- border: 1px solid #d8dae5;
1018
- }
1019
- .tippy-box.function .tippy-content {
1020
- background-color: #fff !important;
1021
- color: #000 !important;
921
+ border: 0.0625rem solid #4d75d8;
922
+ cursor: pointer;
1022
923
  }
1023
- .tippy-box[data-placement] > .tippy-arrow:before {
1024
- color: #fff !important;
924
+ .json-editor-container .json-editor .actions-container .validate:disabled {
925
+ color: #babdcc;
926
+ border-color: #a2a5b6;
1025
927
  }
1026
- .tippy-box.info .tippy-arrow {
1027
- color: #202f5b;
928
+ .json-editor-container .json-editor .actions-container .beautify {
929
+ color: #fff;
930
+ text-align: center;
931
+ font-size: 1rem;
932
+ font-style: normal;
933
+ font-weight: 600;
934
+ line-height: 1.25rem;
935
+ width: 8.75rem;
936
+ padding: 0.625rem 2.25rem;
937
+ background-color: rgba(240, 248, 255, 0);
938
+ border-radius: 0.3125rem;
939
+ border: 1px solid #babdcc;
940
+ cursor: pointer;
1028
941
  }
1029
- .tippy-box.success {
1030
- border-radius: 1.875rem;
1031
- background-color: #3aaa35;
1032
- padding-inline: 0.625rem;
942
+ .json-editor-container .json-editor .actions-container .beautify:disabled {
943
+ color: #a2a5b6;
944
+ border-color: #a2a5b6;
1033
945
  }
1034
- .tippy-box .tippy-content {
1035
- text-align: justify;
946
+ .json-editor-container .json-editor textarea {
947
+ width: 100%;
948
+ padding: 1.25rem;
1036
949
  font-size: 0.875rem;
950
+ font-style: normal;
951
+ font-weight: 400;
1037
952
  line-height: 1.25rem;
1038
- padding: 0.625rem;
1039
- }
1040
- .tippy-box .tippy-arrow {
1041
- position: relative;
1042
- width: 1rem;
1043
- height: 1rem;
1044
- }
1045
- .tippy-box[data-placement^=top] .tippy-arrow:before {
1046
- bottom: -0.4375rem;
1047
- border-width: 0.5rem 0.5rem 0 !important;
1048
- }
1049
- .tippy-box[data-placement^=right] .tippy-arrow:before {
1050
- left: -0.4375rem;
1051
- border-width: 0.5rem 0.5rem 0.5rem 0 !important;
1052
- }
1053
- .tippy-box[data-placement^=bottom] .tippy-arrow:before {
1054
- top: -0.4375rem;
1055
- border-width: 0 0.5rem 0.5rem !important;
1056
- }
1057
- .tippy-box[data-placement^=left] .tippy-arrow:before {
1058
- right: -0.4375rem;
1059
- border-width: 0.5rem 0 0.5rem 0.5rem !important;
953
+ color: white;
954
+ height: 25rem;
955
+ background-color: #142452;
956
+ border: none;
957
+ resize: none;
1060
958
  }
1061
- .tippy-box[data-placement^=bottom-start] .tippy-arrow {
1062
- transform: translate(0.937rem, 0) !important;
959
+ .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 {
960
+ outline: none;
961
+ border: none;
1063
962
  }
1064
- .tippy-box[data-placement^=bottom-end] .tippy-arrow {
1065
- margin-left: calc(100% - 1.937rem);
1066
- transform: translate(0, 0) !important;
963
+ .json-editor-container .json-editor textarea::-webkit-scrollbar {
964
+ width: 0.5rem;
1067
965
  }
1068
- .tippy-box[data-placement^=top-start] .tippy-arrow {
1069
- transform: translate(0.937rem, 0) !important;
966
+ .json-editor-container .json-editor textarea::-webkit-scrollbar-track {
967
+ background-color: #828699;
968
+ border: none;
969
+ border-color: transparent;
970
+ border-top-left-radius: 0;
1070
971
  }
1071
- .tippy-box[data-placement^=top-end] .tippy-arrow {
1072
- transform: translate(0.937rem, 0) !important;
972
+ .json-editor-container .json-editor textarea::-webkit-scrollbar-thumb {
973
+ background-color: #d8dae5;
974
+ border: none;
975
+ border-color: transparent;
976
+ border-radius: 0;
1073
977
  }
1074
- .tippy-box.arrow-with-border {
1075
- border: 1px solid #d8dae5;
978
+ .json-editor-container .json-editor.invalid {
979
+ outline: 1px solid #ce2828 !important;
1076
980
  }
1077
- .tippy-box.arrow-with-border[data-placement] .tippy-arrow {
1078
- top: 1px;
1079
- background-color: white;
1080
- z-index: 9999;
1081
- height: 1px;
981
+ .json-editor-container .error-message {
982
+ color: #ce2828;
983
+ font-size: 0.75rem;
984
+ line-height: 1.25rem;
985
+ margin-top: 0.625rem;
1082
986
  }
1083
- .tippy-box.arrow-with-border[data-placement] .tippy-arrow:before {
1084
- width: 1rem;
1085
- height: 1rem;
987
+ .json-editor-container.disabled .json-editor textarea {
1086
988
  background-color: white;
1087
- transform: rotate(45deg);
1088
- border: none;
1089
- border-left: 1px solid #d8dae5 !important;
1090
- border-top: 1px solid #d8dae5 !important;
1091
- z-index: 20000000000;
1092
- top: -0.6rem;
1093
- transform-origin: center !important;
989
+ color: #12131a;
990
+ }p.apiName {
991
+ font-size: 40px;
992
+ line-height: 30px;
993
+ font-weight: 500;
1094
994
  }