@digi-frontend/dgate-api-documentation 1.0.50 → 1.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_virtual/index3.js +1 -1
- package/dist/_virtual/index4.js +1 -1
- package/dist/_virtual/index5.js +1 -1
- package/dist/_virtual/index6.js +1 -1
- package/dist/node_modules/toposort/index.js +1 -1
- package/dist/node_modules/yup/index.esm.js +1 -1
- package/dist/src/components/MethodAccordion/MethodAccordion.js +1 -1
- package/dist/src/components/MethodAccordion/MethodAccordion.js.map +1 -1
- package/dist/src/helpers/docs.helper.js +1 -1
- package/dist/src/helpers/docs.helper.js.map +1 -1
- package/dist/src/helpers/layout.helper.js +1 -1
- package/dist/src/helpers/layout.helper.js.map +1 -1
- package/dist/src/layout/docsComponents/DocsAside/DocsAside.js +1 -1
- package/dist/src/layout/docsComponents/DocsAside/DocsAside.js.map +1 -1
- package/dist/src/layout/docsComponents/DocsContent/DocsContent.js +1 -1
- package/dist/src/layout/docsComponents/DocsContent/DocsContent.js.map +1 -1
- package/dist/src/layout/docsComponents/DocsContent/EndpointPage/index.js +1 -1
- package/dist/src/layout/docsComponents/DocsContent/EndpointPage/index.js.map +1 -1
- package/dist/src/layout/docsComponents/DocsContent/TagPage/index.js +1 -1
- package/dist/src/layout/docsComponents/DocsContent/TagPage/index.js.map +1 -1
- package/dist/src/layout/docsComponents/DocsHeader/DocsHeader.js +1 -1
- package/dist/src/layout/docsComponents/DocsHeader/DocsHeader.js.map +1 -1
- package/dist/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.js +1 -1
- package/dist/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.js.map +1 -1
- package/dist/src/layout/docsLayout.js +1 -1
- package/dist/src/layout/docsLayout.js.map +1 -1
- package/dist/src/layout/layout.js +1 -1
- package/dist/src/layout/layout.js.map +1 -1
- package/dist/src/layout/layout.module.css.js +1 -1
- package/dist/src/validator/form.scheme.js +1 -1
- package/dist/src/validator/form.scheme.js.map +1 -1
- package/dist/styles.css +638 -596
- package/dist/types/helpers/docs.helper.d.ts +2 -2
- package/dist/types/layout/docsComponents/DocsContent/DocsContent.d.ts +2 -1
- package/dist/types/layout/docsComponents/DocsContent/TagPage/index.d.ts +4 -1
- package/dist/types/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.d.ts +12 -6
- package/dist/types/layout/docsLayout.d.ts +5 -4
- package/dist/types/layout/layout.d.ts +1 -1
- package/dist/types/types/index.d.ts +27 -0
- package/dist/types/types/layout.type.d.ts +1 -0
- package/dist/types/types/openApi.d.ts +1 -0
- package/dist/types/validator/form.scheme.d.ts +1 -0
- package/package.json +1 -2
- package/src/components/MethodAccordion/MethodAccordion.tsx +372 -4
- package/src/helpers/docs.helper.ts +17 -4
- package/src/helpers/layout.helper.ts +19 -2
- package/src/layout/docsComponents/DocsAside/DocsAside.tsx +6 -7
- package/src/layout/docsComponents/DocsContent/DocsContent.tsx +24 -3
- package/src/layout/docsComponents/DocsContent/EndpointPage/index.tsx +132 -121
- package/src/layout/docsComponents/DocsContent/EndpointPage/style.scss +45 -0
- package/src/layout/docsComponents/DocsContent/TagPage/index.tsx +49 -17
- package/src/layout/docsComponents/DocsHeader/DocsHeader.tsx +34 -1
- package/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.tsx +106 -79
- package/src/layout/docsLayout.tsx +43 -17
- package/src/layout/layout.module.css +1 -1
- package/src/layout/layout.tsx +36 -18
- package/src/types/index.ts +28 -0
- package/src/types/layout.type.ts +1 -0
- package/src/types/openApi.ts +1 -0
- package/src/validator/form.scheme.ts +9 -1
package/dist/styles.css
CHANGED
|
@@ -62,6 +62,124 @@
|
|
|
62
62
|
}
|
|
63
63
|
.containerTitleDrawer .closeIcon {
|
|
64
64
|
cursor: pointer;
|
|
65
|
+
}.apiInfoForm {
|
|
66
|
+
display: grid;
|
|
67
|
+
padding: 1.25rem 1.875rem;
|
|
68
|
+
gap: 1.25rem;
|
|
69
|
+
}
|
|
70
|
+
.apiInfoForm .paramsTable .paramDescContainer {
|
|
71
|
+
display: flex;
|
|
72
|
+
}
|
|
73
|
+
.apiInfoForm .paramsTable .paramDescContainer .paramDescContainer_separator {
|
|
74
|
+
height: inherit;
|
|
75
|
+
width: 1px;
|
|
76
|
+
background-color: #d8dae5;
|
|
77
|
+
}
|
|
78
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn) svg path {
|
|
79
|
+
stroke-width: 0.1;
|
|
80
|
+
}
|
|
81
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn {
|
|
82
|
+
padding: 0;
|
|
83
|
+
margin-right: 1.25rem;
|
|
84
|
+
}
|
|
85
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) {
|
|
86
|
+
display: flex;
|
|
87
|
+
align-items: center;
|
|
88
|
+
padding: 0;
|
|
89
|
+
font-size: 0.875rem;
|
|
90
|
+
}
|
|
91
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
|
|
92
|
+
margin-block: auto;
|
|
93
|
+
}
|
|
94
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg path {
|
|
95
|
+
fill: #12131a;
|
|
96
|
+
}
|
|
97
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn {
|
|
98
|
+
padding: 0;
|
|
99
|
+
border-width: 0 !important;
|
|
100
|
+
}
|
|
101
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
|
|
102
|
+
margin-block: auto;
|
|
103
|
+
}
|
|
104
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg {
|
|
105
|
+
width: 1.125rem;
|
|
106
|
+
}
|
|
107
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) {
|
|
108
|
+
margin-block: auto;
|
|
109
|
+
}
|
|
110
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg {
|
|
111
|
+
width: 1.125rem;
|
|
112
|
+
}
|
|
113
|
+
.apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg path {
|
|
114
|
+
fill: #3aaa35;
|
|
115
|
+
}
|
|
116
|
+
.apiInfoForm .paramsTable .externalDocsLink {
|
|
117
|
+
font-size: 0.875rem;
|
|
118
|
+
line-height: 1.25rem;
|
|
119
|
+
cursor: pointer;
|
|
120
|
+
align-self: center;
|
|
121
|
+
margin-right: 2rem;
|
|
122
|
+
}
|
|
123
|
+
.apiInfoForm .paramsTable .editExternalDocs {
|
|
124
|
+
display: flex;
|
|
125
|
+
align-items: center;
|
|
126
|
+
padding-right: 0.625rem;
|
|
127
|
+
}
|
|
128
|
+
.apiInfoForm .paramsTable .editExternalDocs svg {
|
|
129
|
+
cursor: pointer;
|
|
130
|
+
}
|
|
131
|
+
.apiInfoForm .paramsTable .editExternalDocs svg path {
|
|
132
|
+
fill: #12131a;
|
|
133
|
+
}
|
|
134
|
+
.apiInfoForm .paramsTable .editDescTooltipContent {
|
|
135
|
+
display: flex;
|
|
136
|
+
flex-direction: column;
|
|
137
|
+
gap: 0.625rem;
|
|
138
|
+
padding-bottom: 0.625rem;
|
|
139
|
+
}
|
|
140
|
+
.apiInfoForm .paramsTable .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
|
|
141
|
+
margin-inline: 0.625rem;
|
|
142
|
+
}
|
|
143
|
+
.apiInfoForm .paramsTable .editDescTooltipContent .editDescTooltipContent_header {
|
|
144
|
+
font-weight: 600;
|
|
145
|
+
font-size: 0.875rem;
|
|
146
|
+
line-height: 1.25rem;
|
|
147
|
+
padding: 0.75rem 1.25rem;
|
|
148
|
+
border-bottom: 1px solid #d8dae5;
|
|
149
|
+
}
|
|
150
|
+
.apiInfoForm .paramsTable :global(.requiredParam) :global(.headContainer)::after {
|
|
151
|
+
content: "*";
|
|
152
|
+
color: red;
|
|
153
|
+
transform: translateX(0.125rem);
|
|
154
|
+
}
|
|
155
|
+
.apiInfoForm .apiDocRow {
|
|
156
|
+
display: grid;
|
|
157
|
+
grid-template-columns: 1fr 1fr;
|
|
158
|
+
gap: 1.25rem;
|
|
159
|
+
}
|
|
160
|
+
.apiInfoForm .apiInfoForm_tagsChips {
|
|
161
|
+
margin-top: -1.25rem;
|
|
162
|
+
}
|
|
163
|
+
.apiInfoForm .editDescTooltipContent {
|
|
164
|
+
display: flex;
|
|
165
|
+
flex-direction: column;
|
|
166
|
+
gap: 0.625rem;
|
|
167
|
+
padding-bottom: 0.625rem;
|
|
168
|
+
}
|
|
169
|
+
.apiInfoForm .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
|
|
170
|
+
margin-inline: 0.625rem;
|
|
171
|
+
}
|
|
172
|
+
.apiInfoForm .editDescTooltipContent .editDescTooltipContent_header {
|
|
173
|
+
font-weight: 600;
|
|
174
|
+
font-size: 0.875rem;
|
|
175
|
+
line-height: 1.25rem;
|
|
176
|
+
padding: 0.75rem 1.25rem;
|
|
177
|
+
border-bottom: 1px solid #d8dae5;
|
|
178
|
+
}
|
|
179
|
+
.apiInfoForm :global(.requiredParam) :global(.headContainer)::after {
|
|
180
|
+
content: "*";
|
|
181
|
+
color: red;
|
|
182
|
+
transform: translateX(0.125rem);
|
|
65
183
|
}.methodAccordion {
|
|
66
184
|
border: none !important;
|
|
67
185
|
box-shadow: none !important;
|
|
@@ -390,124 +508,147 @@
|
|
|
390
508
|
}
|
|
391
509
|
.methodAccordion.readOnly .methodSummaryContainer .methodExpandArrowContainer {
|
|
392
510
|
background-color: #ebecf2;
|
|
393
|
-
}.
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
511
|
+
}#common-dialog.dialog-content-wrapper {
|
|
512
|
+
overflow: visible !important;
|
|
513
|
+
max-height: 100%;
|
|
514
|
+
width: 22.1875rem;
|
|
397
515
|
}
|
|
398
|
-
.
|
|
399
|
-
|
|
516
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root {
|
|
517
|
+
overflow: visible !important;
|
|
518
|
+
border-radius: 0.625rem;
|
|
519
|
+
max-height: 100%;
|
|
400
520
|
}
|
|
401
|
-
.
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
521
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content {
|
|
522
|
+
padding: 0 1.875rem !important;
|
|
523
|
+
overflow: visible !important;
|
|
524
|
+
max-height: 100%;
|
|
405
525
|
}
|
|
406
|
-
.
|
|
407
|
-
|
|
526
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog {
|
|
527
|
+
position: relative;
|
|
408
528
|
}
|
|
409
|
-
.
|
|
410
|
-
|
|
411
|
-
|
|
529
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .close-icon {
|
|
530
|
+
position: absolute;
|
|
531
|
+
z-index: 1;
|
|
532
|
+
top: 1.5rem;
|
|
533
|
+
right: 0;
|
|
534
|
+
transform: translate(0.625rem, -0.625rem);
|
|
535
|
+
cursor: pointer;
|
|
412
536
|
}
|
|
413
|
-
.
|
|
537
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header {
|
|
414
538
|
display: flex;
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
font-size: 0.875rem;
|
|
539
|
+
padding-top: 0.5rem;
|
|
540
|
+
position: relative;
|
|
418
541
|
}
|
|
419
|
-
.
|
|
420
|
-
margin-
|
|
542
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon {
|
|
543
|
+
margin-top: 1rem;
|
|
544
|
+
margin-bottom: 1.5rem;
|
|
545
|
+
margin-inline: auto;
|
|
421
546
|
}
|
|
422
|
-
.
|
|
547
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info path {
|
|
548
|
+
stroke: #12131a;
|
|
549
|
+
}
|
|
550
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line {
|
|
551
|
+
stroke: #12131a;
|
|
552
|
+
}
|
|
553
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line + path {
|
|
423
554
|
fill: #12131a;
|
|
424
555
|
}
|
|
425
|
-
.
|
|
426
|
-
|
|
427
|
-
border-width: 0 !important;
|
|
556
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning path {
|
|
557
|
+
stroke: #faad14;
|
|
428
558
|
}
|
|
429
|
-
.
|
|
430
|
-
|
|
559
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning line {
|
|
560
|
+
stroke: #faad14;
|
|
431
561
|
}
|
|
432
|
-
.
|
|
433
|
-
|
|
562
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error path {
|
|
563
|
+
stroke: #da3f3f;
|
|
434
564
|
}
|
|
435
|
-
.
|
|
436
|
-
|
|
565
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line {
|
|
566
|
+
stroke: #da3f3f;
|
|
437
567
|
}
|
|
438
|
-
.
|
|
439
|
-
|
|
568
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line + path {
|
|
569
|
+
fill: #da3f3f;
|
|
440
570
|
}
|
|
441
|
-
.
|
|
442
|
-
|
|
571
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title {
|
|
572
|
+
font-size: 1.5rem;
|
|
573
|
+
font-weight: 500;
|
|
574
|
+
line-height: 1.875rem;
|
|
575
|
+
text-align: center;
|
|
576
|
+
margin-bottom: 0.625rem;
|
|
443
577
|
}
|
|
444
|
-
.
|
|
445
|
-
|
|
446
|
-
line-height: 1.25rem;
|
|
447
|
-
cursor: pointer;
|
|
448
|
-
align-self: center;
|
|
449
|
-
margin-right: 2rem;
|
|
578
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.error-title {
|
|
579
|
+
color: #da3f3f;
|
|
450
580
|
}
|
|
451
|
-
.
|
|
581
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.warning-title {
|
|
582
|
+
color: #faad14;
|
|
583
|
+
}
|
|
584
|
+
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-footer {
|
|
452
585
|
display: flex;
|
|
453
|
-
|
|
454
|
-
|
|
586
|
+
gap: 1.25rem;
|
|
587
|
+
margin-top: 1.875rem;
|
|
455
588
|
}
|
|
456
|
-
|
|
457
|
-
|
|
589
|
+
|
|
590
|
+
.common-dialog {
|
|
591
|
+
position: relative;
|
|
458
592
|
}
|
|
459
|
-
.
|
|
460
|
-
|
|
593
|
+
.common-dialog .close-icon {
|
|
594
|
+
position: absolute !important;
|
|
595
|
+
z-index: 1 !important;
|
|
596
|
+
top: 0.75rem !important;
|
|
597
|
+
right: 0.4rem !important;
|
|
598
|
+
transform: translate(0.625rem, -0.625rem) !important;
|
|
599
|
+
cursor: pointer !important;
|
|
461
600
|
}
|
|
462
|
-
.
|
|
601
|
+
.common-dialog .confirmation-dialog-header {
|
|
463
602
|
display: flex;
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
padding-bottom: 0.625rem;
|
|
603
|
+
padding-top: 0.5rem;
|
|
604
|
+
position: relative;
|
|
467
605
|
}
|
|
468
|
-
.
|
|
469
|
-
margin-
|
|
606
|
+
.common-dialog .confirmation-dialog-header .icon {
|
|
607
|
+
margin-top: 1rem;
|
|
608
|
+
margin-bottom: 1.5rem;
|
|
609
|
+
margin-inline: auto;
|
|
470
610
|
}
|
|
471
|
-
.
|
|
472
|
-
|
|
473
|
-
font-size: 0.875rem;
|
|
474
|
-
line-height: 1.25rem;
|
|
475
|
-
padding: 0.75rem 1.25rem;
|
|
476
|
-
border-bottom: 1px solid #d8dae5;
|
|
611
|
+
.common-dialog .confirmation-dialog-header .icon.info path {
|
|
612
|
+
stroke: #12131a;
|
|
477
613
|
}
|
|
478
|
-
.
|
|
479
|
-
|
|
480
|
-
color: red;
|
|
481
|
-
transform: translateX(0.125rem);
|
|
614
|
+
.common-dialog .confirmation-dialog-header .icon.info line {
|
|
615
|
+
stroke: #12131a;
|
|
482
616
|
}
|
|
483
|
-
.
|
|
484
|
-
|
|
485
|
-
grid-template-columns: 1fr 1fr;
|
|
486
|
-
gap: 1.25rem;
|
|
617
|
+
.common-dialog .confirmation-dialog-header .icon.info line + path {
|
|
618
|
+
fill: #12131a;
|
|
487
619
|
}
|
|
488
|
-
.
|
|
489
|
-
|
|
620
|
+
.common-dialog .confirmation-dialog-header .icon.warning path {
|
|
621
|
+
stroke: #faad14;
|
|
490
622
|
}
|
|
491
|
-
.
|
|
492
|
-
|
|
493
|
-
flex-direction: column;
|
|
494
|
-
gap: 0.625rem;
|
|
495
|
-
padding-bottom: 0.625rem;
|
|
623
|
+
.common-dialog .confirmation-dialog-header .icon.warning line {
|
|
624
|
+
stroke: #faad14;
|
|
496
625
|
}
|
|
497
|
-
.
|
|
498
|
-
|
|
626
|
+
.common-dialog .confirmation-dialog-header .icon.error path {
|
|
627
|
+
stroke: #da3f3f;
|
|
499
628
|
}
|
|
500
|
-
.
|
|
501
|
-
|
|
502
|
-
font-size: 0.875rem;
|
|
503
|
-
line-height: 1.25rem;
|
|
504
|
-
padding: 0.75rem 1.25rem;
|
|
505
|
-
border-bottom: 1px solid #d8dae5;
|
|
629
|
+
.common-dialog .confirmation-dialog-header .icon.error line {
|
|
630
|
+
stroke: #da3f3f;
|
|
506
631
|
}
|
|
507
|
-
.
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
632
|
+
.common-dialog .confirmation-dialog-header .icon.error line + path {
|
|
633
|
+
fill: #da3f3f;
|
|
634
|
+
}
|
|
635
|
+
.common-dialog .confirmation-title {
|
|
636
|
+
font-size: 1.5rem;
|
|
637
|
+
font-weight: 500;
|
|
638
|
+
line-height: 1.875rem;
|
|
639
|
+
text-align: center;
|
|
640
|
+
margin-bottom: 0.625rem;
|
|
641
|
+
}
|
|
642
|
+
.common-dialog .confirmation-title.error-title {
|
|
643
|
+
color: #da3f3f;
|
|
644
|
+
}
|
|
645
|
+
.common-dialog .confirmation-title.warning-title {
|
|
646
|
+
color: #faad14;
|
|
647
|
+
}
|
|
648
|
+
.common-dialog .confirmation-dialog-footer {
|
|
649
|
+
display: flex;
|
|
650
|
+
gap: 1.25rem;
|
|
651
|
+
margin-top: 1.875rem;
|
|
511
652
|
}.tooltip-custom-wrapper {
|
|
512
653
|
display: flex;
|
|
513
654
|
}
|
|
@@ -603,147 +744,6 @@
|
|
|
603
744
|
z-index: 2;
|
|
604
745
|
top: -0.45rem;
|
|
605
746
|
transform-origin: center !important;
|
|
606
|
-
}#common-dialog.dialog-content-wrapper {
|
|
607
|
-
overflow: visible !important;
|
|
608
|
-
max-height: 100%;
|
|
609
|
-
width: 22.1875rem;
|
|
610
|
-
}
|
|
611
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root {
|
|
612
|
-
overflow: visible !important;
|
|
613
|
-
border-radius: 0.625rem;
|
|
614
|
-
max-height: 100%;
|
|
615
|
-
}
|
|
616
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content {
|
|
617
|
-
padding: 0 1.875rem !important;
|
|
618
|
-
overflow: visible !important;
|
|
619
|
-
max-height: 100%;
|
|
620
|
-
}
|
|
621
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog {
|
|
622
|
-
position: relative;
|
|
623
|
-
}
|
|
624
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .close-icon {
|
|
625
|
-
position: absolute;
|
|
626
|
-
z-index: 1;
|
|
627
|
-
top: 1.5rem;
|
|
628
|
-
right: 0;
|
|
629
|
-
transform: translate(0.625rem, -0.625rem);
|
|
630
|
-
cursor: pointer;
|
|
631
|
-
}
|
|
632
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header {
|
|
633
|
-
display: flex;
|
|
634
|
-
padding-top: 0.5rem;
|
|
635
|
-
position: relative;
|
|
636
|
-
}
|
|
637
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon {
|
|
638
|
-
margin-top: 1rem;
|
|
639
|
-
margin-bottom: 1.5rem;
|
|
640
|
-
margin-inline: auto;
|
|
641
|
-
}
|
|
642
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info path {
|
|
643
|
-
stroke: #12131a;
|
|
644
|
-
}
|
|
645
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line {
|
|
646
|
-
stroke: #12131a;
|
|
647
|
-
}
|
|
648
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line + path {
|
|
649
|
-
fill: #12131a;
|
|
650
|
-
}
|
|
651
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning path {
|
|
652
|
-
stroke: #faad14;
|
|
653
|
-
}
|
|
654
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning line {
|
|
655
|
-
stroke: #faad14;
|
|
656
|
-
}
|
|
657
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error path {
|
|
658
|
-
stroke: #da3f3f;
|
|
659
|
-
}
|
|
660
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line {
|
|
661
|
-
stroke: #da3f3f;
|
|
662
|
-
}
|
|
663
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line + path {
|
|
664
|
-
fill: #da3f3f;
|
|
665
|
-
}
|
|
666
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title {
|
|
667
|
-
font-size: 1.5rem;
|
|
668
|
-
font-weight: 500;
|
|
669
|
-
line-height: 1.875rem;
|
|
670
|
-
text-align: center;
|
|
671
|
-
margin-bottom: 0.625rem;
|
|
672
|
-
}
|
|
673
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.error-title {
|
|
674
|
-
color: #da3f3f;
|
|
675
|
-
}
|
|
676
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.warning-title {
|
|
677
|
-
color: #faad14;
|
|
678
|
-
}
|
|
679
|
-
#common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-footer {
|
|
680
|
-
display: flex;
|
|
681
|
-
gap: 1.25rem;
|
|
682
|
-
margin-top: 1.875rem;
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
.common-dialog {
|
|
686
|
-
position: relative;
|
|
687
|
-
}
|
|
688
|
-
.common-dialog .close-icon {
|
|
689
|
-
position: absolute !important;
|
|
690
|
-
z-index: 1 !important;
|
|
691
|
-
top: 0.75rem !important;
|
|
692
|
-
right: 0.4rem !important;
|
|
693
|
-
transform: translate(0.625rem, -0.625rem) !important;
|
|
694
|
-
cursor: pointer !important;
|
|
695
|
-
}
|
|
696
|
-
.common-dialog .confirmation-dialog-header {
|
|
697
|
-
display: flex;
|
|
698
|
-
padding-top: 0.5rem;
|
|
699
|
-
position: relative;
|
|
700
|
-
}
|
|
701
|
-
.common-dialog .confirmation-dialog-header .icon {
|
|
702
|
-
margin-top: 1rem;
|
|
703
|
-
margin-bottom: 1.5rem;
|
|
704
|
-
margin-inline: auto;
|
|
705
|
-
}
|
|
706
|
-
.common-dialog .confirmation-dialog-header .icon.info path {
|
|
707
|
-
stroke: #12131a;
|
|
708
|
-
}
|
|
709
|
-
.common-dialog .confirmation-dialog-header .icon.info line {
|
|
710
|
-
stroke: #12131a;
|
|
711
|
-
}
|
|
712
|
-
.common-dialog .confirmation-dialog-header .icon.info line + path {
|
|
713
|
-
fill: #12131a;
|
|
714
|
-
}
|
|
715
|
-
.common-dialog .confirmation-dialog-header .icon.warning path {
|
|
716
|
-
stroke: #faad14;
|
|
717
|
-
}
|
|
718
|
-
.common-dialog .confirmation-dialog-header .icon.warning line {
|
|
719
|
-
stroke: #faad14;
|
|
720
|
-
}
|
|
721
|
-
.common-dialog .confirmation-dialog-header .icon.error path {
|
|
722
|
-
stroke: #da3f3f;
|
|
723
|
-
}
|
|
724
|
-
.common-dialog .confirmation-dialog-header .icon.error line {
|
|
725
|
-
stroke: #da3f3f;
|
|
726
|
-
}
|
|
727
|
-
.common-dialog .confirmation-dialog-header .icon.error line + path {
|
|
728
|
-
fill: #da3f3f;
|
|
729
|
-
}
|
|
730
|
-
.common-dialog .confirmation-title {
|
|
731
|
-
font-size: 1.5rem;
|
|
732
|
-
font-weight: 500;
|
|
733
|
-
line-height: 1.875rem;
|
|
734
|
-
text-align: center;
|
|
735
|
-
margin-bottom: 0.625rem;
|
|
736
|
-
}
|
|
737
|
-
.common-dialog .confirmation-title.error-title {
|
|
738
|
-
color: #da3f3f;
|
|
739
|
-
}
|
|
740
|
-
.common-dialog .confirmation-title.warning-title {
|
|
741
|
-
color: #faad14;
|
|
742
|
-
}
|
|
743
|
-
.common-dialog .confirmation-dialog-footer {
|
|
744
|
-
display: flex;
|
|
745
|
-
gap: 1.25rem;
|
|
746
|
-
margin-top: 1.875rem;
|
|
747
747
|
}.livePreviewContainer .titleContainer {
|
|
748
748
|
margin-top: 1.875rem;
|
|
749
749
|
display: flex;
|
|
@@ -1390,40 +1390,194 @@ div.endBtnIcon {
|
|
|
1390
1390
|
.tableSectionContainer .descArrow path,
|
|
1391
1391
|
.tableSectionContainer .defaultSortArrow path {
|
|
1392
1392
|
fill: var(--Gray-50);
|
|
1393
|
-
}.
|
|
1394
|
-
height: 2.625rem;
|
|
1395
|
-
background-color: #f0f1f2;
|
|
1396
|
-
display: flex;
|
|
1397
|
-
align-items: center;
|
|
1398
|
-
padding: 0 1rem;
|
|
1399
|
-
}
|
|
1400
|
-
.api_docs_header .header_content {
|
|
1393
|
+
}.api-docs-api-tree {
|
|
1401
1394
|
width: 100%;
|
|
1402
|
-
|
|
1403
|
-
|
|
1395
|
+
max-width: 12.5rem;
|
|
1396
|
+
padding: 3rem 1.25rem;
|
|
1397
|
+
box-sizing: border-box;
|
|
1404
1398
|
}
|
|
1405
|
-
.
|
|
1399
|
+
.api-docs-api-tree > * {
|
|
1400
|
+
box-sizing: border-box;
|
|
1401
|
+
}
|
|
1402
|
+
.api-docs-api-tree__section-header {
|
|
1406
1403
|
display: flex;
|
|
1407
|
-
|
|
1408
|
-
|
|
1404
|
+
align-items: center;
|
|
1405
|
+
gap: 0.25rem;
|
|
1406
|
+
padding-inline: 0.5rem;
|
|
1407
|
+
cursor: pointer;
|
|
1408
|
+
user-select: none;
|
|
1409
|
+
height: 2.5rem;
|
|
1409
1410
|
}
|
|
1410
|
-
.
|
|
1411
|
-
background-color: #
|
|
1412
|
-
border: 1px solid #e8e9ee !important;
|
|
1413
|
-
width: 10.4375rem;
|
|
1414
|
-
height: 2.25rem;
|
|
1415
|
-
font-weight: 400;
|
|
1416
|
-
font-size: 1rem;
|
|
1417
|
-
line-height: 1.25rem;
|
|
1411
|
+
.api-docs-api-tree__section-header:hover {
|
|
1412
|
+
background-color: #f3f4f6;
|
|
1418
1413
|
}
|
|
1419
|
-
.
|
|
1420
|
-
|
|
1414
|
+
.api-docs-api-tree__section-header svg:first-child path {
|
|
1415
|
+
stroke: #bbbec5;
|
|
1421
1416
|
}
|
|
1422
|
-
.
|
|
1417
|
+
.api-docs-api-tree__section-title {
|
|
1418
|
+
font-size: 0.75rem;
|
|
1419
|
+
line-height: 0.875rem;
|
|
1420
|
+
font-weight: 500;
|
|
1423
1421
|
color: #000;
|
|
1422
|
+
margin-left: 0.25rem;
|
|
1424
1423
|
}
|
|
1425
|
-
.
|
|
1426
|
-
|
|
1424
|
+
.api-docs-api-tree__section__overview {
|
|
1425
|
+
display: flex;
|
|
1426
|
+
align-items: center;
|
|
1427
|
+
gap: 0.5rem;
|
|
1428
|
+
padding: 0.5rem 1.75rem;
|
|
1429
|
+
border-radius: 0.25rem;
|
|
1430
|
+
cursor: pointer;
|
|
1431
|
+
}
|
|
1432
|
+
.api-docs-api-tree__section__overview:hover {
|
|
1433
|
+
background-color: #f3f4f6;
|
|
1434
|
+
}
|
|
1435
|
+
.api-docs-api-tree__section__overview span {
|
|
1436
|
+
font-size: 0.75rem;
|
|
1437
|
+
line-height: 0.875rem;
|
|
1438
|
+
color: #000000;
|
|
1439
|
+
}
|
|
1440
|
+
.api-docs-api-tree__section__overview[data-active=true] {
|
|
1441
|
+
background-color: #f0f1f2;
|
|
1442
|
+
}
|
|
1443
|
+
.api-docs-api-tree__section__endpoints {
|
|
1444
|
+
display: flex;
|
|
1445
|
+
align-items: center;
|
|
1446
|
+
height: 1.5rem;
|
|
1447
|
+
gap: 0.5rem;
|
|
1448
|
+
border-radius: 0.25rem;
|
|
1449
|
+
padding-inline: 1.75rem;
|
|
1450
|
+
cursor: pointer;
|
|
1451
|
+
}
|
|
1452
|
+
.api-docs-api-tree__section__endpoints span {
|
|
1453
|
+
font-size: 0.75rem;
|
|
1454
|
+
line-height: 0.875rem;
|
|
1455
|
+
color: #000000;
|
|
1456
|
+
}
|
|
1457
|
+
.api-docs-api-tree__section__endpoints[data-active=true] {
|
|
1458
|
+
background-color: #f0f1f2;
|
|
1459
|
+
}
|
|
1460
|
+
.api-docs-api-tree__section[data-active=true] .api-docs-api-tree__section-title {
|
|
1461
|
+
color: #616874;
|
|
1462
|
+
}
|
|
1463
|
+
.api-docs-api-tree__endpoints {
|
|
1464
|
+
display: flex;
|
|
1465
|
+
flex-direction: column;
|
|
1466
|
+
align-items: start;
|
|
1467
|
+
gap: 0.5rem;
|
|
1468
|
+
border-radius: 0.25rem;
|
|
1469
|
+
cursor: pointer;
|
|
1470
|
+
}
|
|
1471
|
+
.api-docs-api-tree__endpoints span {
|
|
1472
|
+
font-size: 0.75rem;
|
|
1473
|
+
line-height: 0.875rem;
|
|
1474
|
+
color: #000000;
|
|
1475
|
+
}
|
|
1476
|
+
.api-docs-api-tree__endpoints[data-active=true] {
|
|
1477
|
+
background-color: #f0f1f2;
|
|
1478
|
+
}
|
|
1479
|
+
.api-docs-api-tree__subsection-header {
|
|
1480
|
+
height: 2rem;
|
|
1481
|
+
display: flex;
|
|
1482
|
+
align-items: center;
|
|
1483
|
+
gap: 0.875rem;
|
|
1484
|
+
padding-inline: 0.5rem;
|
|
1485
|
+
cursor: pointer;
|
|
1486
|
+
user-select: none;
|
|
1487
|
+
}
|
|
1488
|
+
.api-docs-api-tree__subsection-header svg {
|
|
1489
|
+
color: #6b7280;
|
|
1490
|
+
}
|
|
1491
|
+
.api-docs-api-tree__subsection-title {
|
|
1492
|
+
font-size: 0.75rem;
|
|
1493
|
+
line-height: 0.875rem;
|
|
1494
|
+
color: #616874;
|
|
1495
|
+
}
|
|
1496
|
+
.api-docs-api-tree__endpoint {
|
|
1497
|
+
display: flex;
|
|
1498
|
+
align-items: center;
|
|
1499
|
+
gap: 0.25rem;
|
|
1500
|
+
padding: 0.5rem 0.75rem;
|
|
1501
|
+
text-transform: capitalize;
|
|
1502
|
+
width: 100%;
|
|
1503
|
+
cursor: pointer;
|
|
1504
|
+
}
|
|
1505
|
+
.api-docs-api-tree__endpoint[data-active=true] {
|
|
1506
|
+
background-color: #f0f1f2;
|
|
1507
|
+
}
|
|
1508
|
+
.api-docs-api-tree__endpoint:hover {
|
|
1509
|
+
background-color: #f3f4f6;
|
|
1510
|
+
}
|
|
1511
|
+
.api-docs-api-tree__endpoint-method {
|
|
1512
|
+
font-size: 0.75rem;
|
|
1513
|
+
line-height: 0.875rem;
|
|
1514
|
+
font-weight: 400;
|
|
1515
|
+
text-align: start;
|
|
1516
|
+
}
|
|
1517
|
+
.api-docs-api-tree__endpoint-name {
|
|
1518
|
+
font-size: 0.75rem;
|
|
1519
|
+
line-height: 0.875rem;
|
|
1520
|
+
color: #3b3f46;
|
|
1521
|
+
display: -webkit-box;
|
|
1522
|
+
-webkit-box-orient: vertical;
|
|
1523
|
+
-webkit-line-clamp: 1;
|
|
1524
|
+
overflow: hidden;
|
|
1525
|
+
text-overflow: ellipsis;
|
|
1526
|
+
}
|
|
1527
|
+
.api-docs-api-tree__endpoint--get .api-docs-api-tree__endpoint-method {
|
|
1528
|
+
color: #3a6cd1;
|
|
1529
|
+
}
|
|
1530
|
+
.api-docs-api-tree__endpoint--post .api-docs-api-tree__endpoint-method {
|
|
1531
|
+
color: #3aaa35;
|
|
1532
|
+
}
|
|
1533
|
+
.api-docs-api-tree__endpoint--put .api-docs-api-tree__endpoint-method {
|
|
1534
|
+
color: #faad14;
|
|
1535
|
+
}
|
|
1536
|
+
.api-docs-api-tree__endpoint--delete .api-docs-api-tree__endpoint-method {
|
|
1537
|
+
color: #da3f3f;
|
|
1538
|
+
}
|
|
1539
|
+
.api-docs-api-tree__endpoint--option .api-docs-api-tree__endpoint-method {
|
|
1540
|
+
color: #495d97;
|
|
1541
|
+
}
|
|
1542
|
+
.api-docs-api-tree__endpoint--head .api-docs-api-tree__endpoint-method {
|
|
1543
|
+
color: #9461c9;
|
|
1544
|
+
}
|
|
1545
|
+
.api-docs-api-tree__endpoint--patch .api-docs-api-tree__endpoint-method {
|
|
1546
|
+
color: #58e2c2;
|
|
1547
|
+
}.api_docs_header {
|
|
1548
|
+
height: 2.625rem;
|
|
1549
|
+
background-color: #f0f1f2;
|
|
1550
|
+
display: flex;
|
|
1551
|
+
align-items: center;
|
|
1552
|
+
padding: 0 1rem;
|
|
1553
|
+
}
|
|
1554
|
+
.api_docs_header .header_content {
|
|
1555
|
+
width: 100%;
|
|
1556
|
+
display: flex;
|
|
1557
|
+
align-items: center;
|
|
1558
|
+
}
|
|
1559
|
+
.api_docs_header .nav_buttons {
|
|
1560
|
+
display: flex;
|
|
1561
|
+
gap: 1rem;
|
|
1562
|
+
margin-left: 2.9375rem;
|
|
1563
|
+
}
|
|
1564
|
+
.api_docs_header .search_filter_btn {
|
|
1565
|
+
background-color: #ffffff !important;
|
|
1566
|
+
border: 1px solid #e8e9ee !important;
|
|
1567
|
+
width: 10.4375rem;
|
|
1568
|
+
height: 2.25rem;
|
|
1569
|
+
font-weight: 400;
|
|
1570
|
+
font-size: 1rem;
|
|
1571
|
+
line-height: 1.25rem;
|
|
1572
|
+
}
|
|
1573
|
+
.api_docs_header .search_filter_btn:hover:not(:disabled) {
|
|
1574
|
+
color: #000000;
|
|
1575
|
+
}
|
|
1576
|
+
.api_docs_header .search_filter_btn:hover {
|
|
1577
|
+
color: #000;
|
|
1578
|
+
}
|
|
1579
|
+
.api_docs_header .search_filter_btn svg {
|
|
1580
|
+
margin-left: 0.5rem;
|
|
1427
1581
|
}
|
|
1428
1582
|
.api_docs_header :global(.guide-btn) {
|
|
1429
1583
|
background-color: #ffffff !important;
|
|
@@ -1629,6 +1783,42 @@ div.endBtnIcon {
|
|
|
1629
1783
|
opacity: 1 !important;
|
|
1630
1784
|
backdrop-filter: blur(0.5rem);
|
|
1631
1785
|
background-color: rgba(0, 0, 0, 0.281) !important;
|
|
1786
|
+
}.codebox {
|
|
1787
|
+
border-radius: 0.25rem;
|
|
1788
|
+
overflow: hidden;
|
|
1789
|
+
}
|
|
1790
|
+
.codebox_header {
|
|
1791
|
+
display: flex;
|
|
1792
|
+
align-items: center;
|
|
1793
|
+
gap: 0.25rem;
|
|
1794
|
+
padding-left: 0.5rem;
|
|
1795
|
+
height: 1.75rem;
|
|
1796
|
+
border: 1px solid #bbbec5;
|
|
1797
|
+
border-top-right-radius: 0.25rem;
|
|
1798
|
+
border-top-left-radius: 0.25rem;
|
|
1799
|
+
}
|
|
1800
|
+
.codebox_header_themeToggle {
|
|
1801
|
+
width: 0.75rem;
|
|
1802
|
+
min-width: 0.75rem;
|
|
1803
|
+
aspect-ratio: 1/1;
|
|
1804
|
+
border: 1px solid transparent;
|
|
1805
|
+
border-radius: 100%;
|
|
1806
|
+
cursor: pointer;
|
|
1807
|
+
}
|
|
1808
|
+
.codebox_header_themeToggle_dark {
|
|
1809
|
+
background-color: #455162;
|
|
1810
|
+
border-color: #6b7280;
|
|
1811
|
+
}
|
|
1812
|
+
.codebox_header_themeToggle_light {
|
|
1813
|
+
background-color: #edf1fb;
|
|
1814
|
+
border-color: #6b7280;
|
|
1815
|
+
}
|
|
1816
|
+
.codebox_header_copyIcon {
|
|
1817
|
+
cursor: pointer;
|
|
1818
|
+
}
|
|
1819
|
+
.codebox :global(.custom-code-line),
|
|
1820
|
+
.codebox :global(.custom-code-line span) {
|
|
1821
|
+
font-family: "Cascadia Code", sans-serif;
|
|
1632
1822
|
}.apiDocsAside {
|
|
1633
1823
|
width: 22.5rem;
|
|
1634
1824
|
padding: 3rem 1.5rem;
|
|
@@ -1715,196 +1905,245 @@ div.endBtnIcon {
|
|
|
1715
1905
|
}
|
|
1716
1906
|
.apiDocsAside :global(.multiSelectGroup .selectDisplay .displayValueContainer .iconsContainer) {
|
|
1717
1907
|
padding-right: 0.75rem;
|
|
1718
|
-
}
|
|
1719
|
-
|
|
1720
|
-
max-width: 12.5rem;
|
|
1721
|
-
padding: 3rem 1.25rem;
|
|
1722
|
-
box-sizing: border-box;
|
|
1908
|
+
}main {
|
|
1909
|
+
padding: 2rem;
|
|
1723
1910
|
}
|
|
1724
|
-
.api-
|
|
1725
|
-
|
|
1911
|
+
main .api-details-expanded .api-title {
|
|
1912
|
+
font-size: 3rem;
|
|
1913
|
+
font-weight: 600;
|
|
1914
|
+
letter-spacing: -1px;
|
|
1915
|
+
line-height: 3.5rem;
|
|
1916
|
+
margin-bottom: 0.752rem;
|
|
1917
|
+
color: #4d75d9;
|
|
1726
1918
|
}
|
|
1727
|
-
.api-
|
|
1919
|
+
main .api-details-expanded .test-button {
|
|
1920
|
+
margin-top: 1.25rem;
|
|
1921
|
+
margin-bottom: 3.125rem;
|
|
1728
1922
|
display: flex;
|
|
1729
1923
|
align-items: center;
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
cursor: pointer;
|
|
1733
|
-
user-select: none;
|
|
1734
|
-
height: 2.5rem;
|
|
1735
|
-
}
|
|
1736
|
-
.api-docs-api-tree__section-header:hover {
|
|
1737
|
-
background-color: #f3f4f6;
|
|
1738
|
-
}
|
|
1739
|
-
.api-docs-api-tree__section-header svg:first-child path {
|
|
1740
|
-
stroke: #bbbec5;
|
|
1741
|
-
}
|
|
1742
|
-
.api-docs-api-tree__section-title {
|
|
1743
|
-
font-size: 0.75rem;
|
|
1744
|
-
line-height: 0.875rem;
|
|
1745
|
-
font-weight: 500;
|
|
1746
|
-
color: #000;
|
|
1747
|
-
margin-left: 0.25rem;
|
|
1924
|
+
justify-content: space-between;
|
|
1925
|
+
gap: 0.5rem;
|
|
1748
1926
|
}
|
|
1749
|
-
.api-
|
|
1750
|
-
display: flex;
|
|
1927
|
+
main .api-details-expanded .test-button .back-button {
|
|
1928
|
+
display: inline-flex;
|
|
1751
1929
|
align-items: center;
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1930
|
+
justify-content: center;
|
|
1931
|
+
width: 2.75rem;
|
|
1932
|
+
height: 2.75rem;
|
|
1933
|
+
border: 1px solid #3b82f6;
|
|
1934
|
+
border-radius: 0.5rem;
|
|
1935
|
+
background-color: white;
|
|
1936
|
+
color: #3b82f6;
|
|
1755
1937
|
cursor: pointer;
|
|
1938
|
+
transition: background-color 0.2s ease;
|
|
1756
1939
|
}
|
|
1757
|
-
.api-
|
|
1758
|
-
|
|
1759
|
-
}
|
|
1760
|
-
.api-docs-api-tree__section__overview span {
|
|
1761
|
-
font-size: 0.75rem;
|
|
1762
|
-
line-height: 0.875rem;
|
|
1763
|
-
color: #000000;
|
|
1940
|
+
main .api-details-expanded .test-button .back-button svg {
|
|
1941
|
+
stroke-width: 2;
|
|
1764
1942
|
}
|
|
1765
|
-
.api-
|
|
1766
|
-
background-color: #
|
|
1943
|
+
main .api-details-expanded .test-button .back-button:hover {
|
|
1944
|
+
background-color: #eff6ff;
|
|
1767
1945
|
}
|
|
1768
|
-
.api-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
border-radius:
|
|
1774
|
-
|
|
1775
|
-
|
|
1946
|
+
main .api-details-expanded .test-button .disabled {
|
|
1947
|
+
background: #f0f1f2;
|
|
1948
|
+
color: #9ca1aa;
|
|
1949
|
+
cursor: not-allowed;
|
|
1950
|
+
padding: 0.375rem 1rem;
|
|
1951
|
+
border-radius: 6px;
|
|
1952
|
+
font-size: 14px;
|
|
1953
|
+
border: 1px #b8bfca solid;
|
|
1954
|
+
width: 7.56rem;
|
|
1955
|
+
height: 2.75rem;
|
|
1956
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
1776
1957
|
}
|
|
1777
|
-
.api-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1958
|
+
main .api-details-expanded h3 {
|
|
1959
|
+
color: #616874;
|
|
1960
|
+
font-size: 1.125rem;
|
|
1961
|
+
font-weight: 400;
|
|
1962
|
+
letter-spacing: 0px;
|
|
1963
|
+
line-height: 1.5rem;
|
|
1964
|
+
margin-top: 1.5rem;
|
|
1965
|
+
margin-bottom: 0.5rem;
|
|
1781
1966
|
}
|
|
1782
|
-
.api-
|
|
1783
|
-
|
|
1967
|
+
main .api-details-expanded .url-box {
|
|
1968
|
+
height: 1.75rem;
|
|
1969
|
+
justify-content: space-between;
|
|
1970
|
+
background-color: #edf1fb !important;
|
|
1784
1971
|
}
|
|
1785
|
-
.api-
|
|
1786
|
-
color: #
|
|
1972
|
+
main .api-details-expanded .url-text {
|
|
1973
|
+
color: #3b3f46;
|
|
1974
|
+
font-size: 1.25rem;
|
|
1975
|
+
letter-spacing: 0px;
|
|
1976
|
+
line-height: 1.75rem;
|
|
1787
1977
|
}
|
|
1788
|
-
.api-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1978
|
+
main .api-details-expanded .method-label {
|
|
1979
|
+
font-size: 0.924rem;
|
|
1980
|
+
font-weight: 600;
|
|
1981
|
+
padding: 0.125rem 0.5rem;
|
|
1982
|
+
border-radius: 0.375rem;
|
|
1983
|
+
text-transform: uppercase;
|
|
1984
|
+
color: #3aaa35;
|
|
1985
|
+
text-decoration: underline;
|
|
1795
1986
|
}
|
|
1796
|
-
.api-
|
|
1797
|
-
|
|
1798
|
-
line-height: 0.875rem;
|
|
1799
|
-
color: #000000;
|
|
1987
|
+
main .api-details-expanded .method-label.get {
|
|
1988
|
+
color: #3a6cd1;
|
|
1800
1989
|
}
|
|
1801
|
-
.api-
|
|
1802
|
-
|
|
1990
|
+
main .api-details-expanded .method-label.post {
|
|
1991
|
+
color: #3aaa35;
|
|
1803
1992
|
}
|
|
1804
|
-
.api-
|
|
1805
|
-
|
|
1993
|
+
main .api-details-expanded .method-label.put {
|
|
1994
|
+
color: #faad14;
|
|
1995
|
+
}
|
|
1996
|
+
main .api-details-expanded .method-label.patch {
|
|
1997
|
+
color: #58e2c2;
|
|
1998
|
+
}
|
|
1999
|
+
main .api-details-expanded .method-label.delete {
|
|
2000
|
+
color: #da3f3f;
|
|
2001
|
+
}
|
|
2002
|
+
main .api-details-expanded .method-label.head {
|
|
2003
|
+
color: #9461c9;
|
|
2004
|
+
}
|
|
2005
|
+
main .api-details-expanded .method-label.trace {
|
|
2006
|
+
color: #ffa28f;
|
|
2007
|
+
}
|
|
2008
|
+
main .api-details-expanded .method-label.options {
|
|
2009
|
+
color: #495d97;
|
|
2010
|
+
}
|
|
2011
|
+
main .api-details-expanded .url-box {
|
|
2012
|
+
background-color: #f3f4f6;
|
|
2013
|
+
padding: 0.375rem 0.75rem;
|
|
2014
|
+
border-radius: 0.5rem;
|
|
1806
2015
|
display: flex;
|
|
1807
2016
|
align-items: center;
|
|
1808
|
-
gap: 0.
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
2017
|
+
gap: 0.5rem;
|
|
2018
|
+
font-size: 14px;
|
|
2019
|
+
flex: 1;
|
|
2020
|
+
height: 2.8rem;
|
|
2021
|
+
margin-bottom: 1.5rem;
|
|
1812
2022
|
}
|
|
1813
|
-
.api-
|
|
2023
|
+
main .api-details-expanded .api-desc {
|
|
1814
2024
|
color: #6b7280;
|
|
2025
|
+
margin: 1.5rem 0;
|
|
1815
2026
|
}
|
|
1816
|
-
.api-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
2027
|
+
main .api-details-expanded .head-table-label {
|
|
2028
|
+
color: #3b3f46 !important;
|
|
2029
|
+
letter-spacing: 0px;
|
|
2030
|
+
font-weight: 400 !important;
|
|
2031
|
+
line-height: 1rem;
|
|
1820
2032
|
}
|
|
1821
|
-
.api-
|
|
2033
|
+
main .api-details-expanded .request-tabs {
|
|
2034
|
+
display: flex;
|
|
2035
|
+
gap: 0.5rem;
|
|
2036
|
+
margin-bottom: 0.75rem;
|
|
2037
|
+
}
|
|
2038
|
+
main .api-details-expanded .tab {
|
|
2039
|
+
background: white;
|
|
2040
|
+
border: 1px solid #d1d3d8;
|
|
2041
|
+
padding: 0.375rem 0.75rem;
|
|
2042
|
+
border-radius: 6px;
|
|
2043
|
+
cursor: pointer;
|
|
2044
|
+
font-size: 0.875rem;
|
|
2045
|
+
color: #000000;
|
|
1822
2046
|
display: flex;
|
|
1823
2047
|
align-items: center;
|
|
1824
|
-
gap: 0.
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
2048
|
+
gap: 0.375rem;
|
|
2049
|
+
}
|
|
2050
|
+
main .api-details-expanded .tab {
|
|
2051
|
+
background: white;
|
|
2052
|
+
border: 1px solid #d1d3d8;
|
|
2053
|
+
padding: 0.375rem 0.75rem;
|
|
2054
|
+
border-radius: 6px;
|
|
1828
2055
|
cursor: pointer;
|
|
2056
|
+
font-size: 0.875rem;
|
|
2057
|
+
color: #000000;
|
|
2058
|
+
display: flex;
|
|
2059
|
+
align-items: center;
|
|
2060
|
+
gap: 0.375rem;
|
|
1829
2061
|
}
|
|
1830
|
-
.api-
|
|
1831
|
-
background-color: #
|
|
2062
|
+
main .api-details-expanded .tab.active {
|
|
2063
|
+
background-color: #e5edff;
|
|
2064
|
+
border-color: #4d75d9;
|
|
2065
|
+
color: #000000;
|
|
2066
|
+
font-weight: 400;
|
|
1832
2067
|
}
|
|
1833
|
-
.api-
|
|
1834
|
-
|
|
2068
|
+
main .api-details-expanded .icon-left {
|
|
2069
|
+
width: 0.875rem;
|
|
2070
|
+
height: 0.875rem;
|
|
1835
2071
|
}
|
|
1836
|
-
.api-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
2072
|
+
main .api-details-expanded .table-wrapper {
|
|
2073
|
+
overflow-x: auto;
|
|
2074
|
+
border: 1px solid #e5e7eb;
|
|
2075
|
+
border-radius: 0.8rem;
|
|
2076
|
+
background: white;
|
|
2077
|
+
border: 1px #bbbec5 solid;
|
|
2078
|
+
margin-bottom: 2rem;
|
|
1841
2079
|
}
|
|
1842
|
-
.api-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
2080
|
+
main .api-details-expanded .param-table {
|
|
2081
|
+
width: 100%;
|
|
2082
|
+
border-collapse: collapse;
|
|
2083
|
+
font-size: 0.875rem;
|
|
2084
|
+
}
|
|
2085
|
+
main .api-details-expanded .param-table .desc-cell {
|
|
2086
|
+
position: relative;
|
|
2087
|
+
max-width: 20rem;
|
|
2088
|
+
padding-right: 1.5rem;
|
|
2089
|
+
}
|
|
2090
|
+
main .api-details-expanded .param-table .desc-text {
|
|
2091
|
+
white-space: nowrap;
|
|
1849
2092
|
overflow: hidden;
|
|
1850
2093
|
text-overflow: ellipsis;
|
|
2094
|
+
max-width: 90%;
|
|
1851
2095
|
}
|
|
1852
|
-
.api-
|
|
1853
|
-
|
|
1854
|
-
}
|
|
1855
|
-
.api-docs-api-tree__endpoint--post .api-docs-api-tree__endpoint-method {
|
|
1856
|
-
color: #3aaa35;
|
|
2096
|
+
main .api-details-expanded .param-table .desc-text.expanded {
|
|
2097
|
+
white-space: normal;
|
|
1857
2098
|
}
|
|
1858
|
-
.api-
|
|
1859
|
-
|
|
2099
|
+
main .api-details-expanded .param-table .desc-toggle {
|
|
2100
|
+
position: absolute;
|
|
2101
|
+
right: 0.5rem;
|
|
2102
|
+
top: 50%;
|
|
2103
|
+
transform: translateY(-50%);
|
|
2104
|
+
background: none;
|
|
2105
|
+
border: none;
|
|
2106
|
+
cursor: pointer;
|
|
1860
2107
|
}
|
|
1861
|
-
.api-
|
|
1862
|
-
|
|
2108
|
+
main .api-details-expanded .param-table .desc-toggle svg {
|
|
2109
|
+
transition: transform 0.2s ease;
|
|
1863
2110
|
}
|
|
1864
|
-
.api-
|
|
1865
|
-
|
|
2111
|
+
main .api-details-expanded .param-table .desc-toggle .rotated {
|
|
2112
|
+
transform: rotate(180deg);
|
|
1866
2113
|
}
|
|
1867
|
-
.api-
|
|
1868
|
-
|
|
2114
|
+
main .api-details-expanded .param-table th,
|
|
2115
|
+
main .api-details-expanded .param-table td {
|
|
2116
|
+
padding: 10px;
|
|
2117
|
+
border-bottom: 1px solid #bbbec5;
|
|
2118
|
+
text-align: left;
|
|
2119
|
+
color: #3b3f46;
|
|
1869
2120
|
}
|
|
1870
|
-
.api-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
border-radius: 0.25rem;
|
|
1874
|
-
overflow: hidden;
|
|
2121
|
+
main .api-details-expanded .param-table th {
|
|
2122
|
+
background: #edf1fb;
|
|
2123
|
+
font-weight: 600;
|
|
1875
2124
|
}
|
|
1876
|
-
.
|
|
2125
|
+
main .api-details-expanded .response-status {
|
|
1877
2126
|
display: flex;
|
|
1878
2127
|
align-items: center;
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
border-top-left-radius: 0.25rem;
|
|
1885
|
-
}
|
|
1886
|
-
.codebox_header_themeToggle {
|
|
1887
|
-
width: 0.75rem;
|
|
1888
|
-
min-width: 0.75rem;
|
|
1889
|
-
aspect-ratio: 1/1;
|
|
1890
|
-
border: 1px solid transparent;
|
|
1891
|
-
border-radius: 100%;
|
|
1892
|
-
cursor: pointer;
|
|
2128
|
+
justify-content: end;
|
|
2129
|
+
gap: 0.375rem;
|
|
2130
|
+
font-size: 0.875rem;
|
|
2131
|
+
color: green;
|
|
2132
|
+
margin-bottom: 0.75rem;
|
|
1893
2133
|
}
|
|
1894
|
-
.
|
|
1895
|
-
|
|
1896
|
-
|
|
2134
|
+
main .api-details-expanded .response-drop {
|
|
2135
|
+
width: 10rem;
|
|
2136
|
+
justify-content: end;
|
|
1897
2137
|
}
|
|
1898
|
-
.
|
|
1899
|
-
|
|
1900
|
-
|
|
2138
|
+
main .api-details-expanded .response-drop-test {
|
|
2139
|
+
justify-content: end !important;
|
|
2140
|
+
align-items: end !important;
|
|
2141
|
+
align-content: end !important;
|
|
1901
2142
|
}
|
|
1902
|
-
.
|
|
2143
|
+
main .api-details-expanded .copy-icon {
|
|
1903
2144
|
cursor: pointer;
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
.codebox :global(.custom-code-line span) {
|
|
1907
|
-
font-family: "Cascadia Code", sans-serif;
|
|
2145
|
+
width: 1.5rem;
|
|
2146
|
+
height: 1.5rem;
|
|
1908
2147
|
}.api-details-page {
|
|
1909
2148
|
padding: 2rem;
|
|
1910
2149
|
}
|
|
@@ -2155,201 +2394,4 @@ div.endBtnIcon {
|
|
|
2155
2394
|
font-size: 0.875rem;
|
|
2156
2395
|
color: #4d75d9;
|
|
2157
2396
|
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2509803922);
|
|
2158
|
-
}main {
|
|
2159
|
-
padding: 2rem;
|
|
2160
|
-
}
|
|
2161
|
-
main .api-details-expanded .api-title {
|
|
2162
|
-
font-size: 3rem;
|
|
2163
|
-
font-weight: 600;
|
|
2164
|
-
letter-spacing: -1px;
|
|
2165
|
-
line-height: 3.5rem;
|
|
2166
|
-
margin-bottom: 0.752rem;
|
|
2167
|
-
color: #4d75d9;
|
|
2168
|
-
}
|
|
2169
|
-
main .api-details-expanded .test-button {
|
|
2170
|
-
margin-top: 1.25rem;
|
|
2171
|
-
margin-bottom: 3.125rem;
|
|
2172
|
-
display: flex;
|
|
2173
|
-
align-items: center;
|
|
2174
|
-
justify-content: space-between;
|
|
2175
|
-
gap: 0.5rem;
|
|
2176
|
-
}
|
|
2177
|
-
main .api-details-expanded .test-button .back-button {
|
|
2178
|
-
display: inline-flex;
|
|
2179
|
-
align-items: center;
|
|
2180
|
-
justify-content: center;
|
|
2181
|
-
width: 2.75rem;
|
|
2182
|
-
height: 2.75rem;
|
|
2183
|
-
border: 1px solid #3b82f6;
|
|
2184
|
-
border-radius: 0.5rem;
|
|
2185
|
-
background-color: white;
|
|
2186
|
-
color: #3b82f6;
|
|
2187
|
-
cursor: pointer;
|
|
2188
|
-
transition: background-color 0.2s ease;
|
|
2189
|
-
}
|
|
2190
|
-
main .api-details-expanded .test-button .back-button svg {
|
|
2191
|
-
stroke-width: 2;
|
|
2192
|
-
}
|
|
2193
|
-
main .api-details-expanded .test-button .back-button:hover {
|
|
2194
|
-
background-color: #eff6ff;
|
|
2195
|
-
}
|
|
2196
|
-
main .api-details-expanded .test-button .disabled {
|
|
2197
|
-
background: #f0f1f2;
|
|
2198
|
-
color: #9ca1aa;
|
|
2199
|
-
cursor: not-allowed;
|
|
2200
|
-
padding: 0.375rem 1rem;
|
|
2201
|
-
border-radius: 6px;
|
|
2202
|
-
font-size: 14px;
|
|
2203
|
-
border: 1px #b8bfca solid;
|
|
2204
|
-
width: 7.56rem;
|
|
2205
|
-
height: 2.75rem;
|
|
2206
|
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
2207
|
-
}
|
|
2208
|
-
main .api-details-expanded h3 {
|
|
2209
|
-
color: #616874;
|
|
2210
|
-
font-size: 1.125rem;
|
|
2211
|
-
font-weight: 400;
|
|
2212
|
-
letter-spacing: 0px;
|
|
2213
|
-
line-height: 1.5rem;
|
|
2214
|
-
margin-bottom: 0.5rem;
|
|
2215
|
-
}
|
|
2216
|
-
main .api-details-expanded .url-box {
|
|
2217
|
-
height: 1.75rem;
|
|
2218
|
-
justify-content: space-between;
|
|
2219
|
-
background-color: #edf1fb !important;
|
|
2220
|
-
}
|
|
2221
|
-
main .api-details-expanded .url-text {
|
|
2222
|
-
color: #3b3f46;
|
|
2223
|
-
font-size: 1.25rem;
|
|
2224
|
-
letter-spacing: 0px;
|
|
2225
|
-
line-height: 1.75rem;
|
|
2226
|
-
}
|
|
2227
|
-
main .api-details-expanded .method-label {
|
|
2228
|
-
font-size: 0.924rem;
|
|
2229
|
-
font-weight: 600;
|
|
2230
|
-
padding: 0.125rem 0.5rem;
|
|
2231
|
-
border-radius: 0.375rem;
|
|
2232
|
-
text-transform: uppercase;
|
|
2233
|
-
color: #3aaa35;
|
|
2234
|
-
text-decoration: underline;
|
|
2235
|
-
}
|
|
2236
|
-
main .api-details-expanded .url-box {
|
|
2237
|
-
background-color: #f3f4f6;
|
|
2238
|
-
padding: 0.375rem 0.75rem;
|
|
2239
|
-
border-radius: 0.5rem;
|
|
2240
|
-
display: flex;
|
|
2241
|
-
align-items: center;
|
|
2242
|
-
gap: 0.5rem;
|
|
2243
|
-
font-size: 14px;
|
|
2244
|
-
flex: 1;
|
|
2245
|
-
height: 2.8rem;
|
|
2246
|
-
margin-bottom: 1.5rem;
|
|
2247
|
-
}
|
|
2248
|
-
main .api-details-expanded .api-desc {
|
|
2249
|
-
color: #6b7280;
|
|
2250
|
-
margin: 1.5rem 0;
|
|
2251
|
-
}
|
|
2252
|
-
main .api-details-expanded .head-table-label {
|
|
2253
|
-
color: #3b3f46 !important;
|
|
2254
|
-
letter-spacing: 0px;
|
|
2255
|
-
font-weight: 400 !important;
|
|
2256
|
-
line-height: 1rem;
|
|
2257
|
-
}
|
|
2258
|
-
main .api-details-expanded .request-tabs {
|
|
2259
|
-
display: flex;
|
|
2260
|
-
gap: 0.5rem;
|
|
2261
|
-
margin-bottom: 0.75rem;
|
|
2262
|
-
}
|
|
2263
|
-
main .api-details-expanded .tab {
|
|
2264
|
-
background: white;
|
|
2265
|
-
border: 1px solid #d1d3d8;
|
|
2266
|
-
padding: 0.375rem 0.75rem;
|
|
2267
|
-
border-radius: 6px;
|
|
2268
|
-
cursor: pointer;
|
|
2269
|
-
font-size: 0.875rem;
|
|
2270
|
-
color: #000000;
|
|
2271
|
-
}
|
|
2272
|
-
main .api-details-expanded .tab {
|
|
2273
|
-
display: flex;
|
|
2274
|
-
align-items: center;
|
|
2275
|
-
gap: 0.375rem;
|
|
2276
|
-
}
|
|
2277
|
-
main .api-details-expanded .icon-left {
|
|
2278
|
-
width: 0.875rem;
|
|
2279
|
-
height: 0.875rem;
|
|
2280
|
-
}
|
|
2281
|
-
main .api-details-expanded .table-wrapper {
|
|
2282
|
-
overflow-x: auto;
|
|
2283
|
-
border: 1px solid #e5e7eb;
|
|
2284
|
-
border-radius: 0.8rem;
|
|
2285
|
-
background: white;
|
|
2286
|
-
border: 1px #bbbec5 solid;
|
|
2287
|
-
}
|
|
2288
|
-
main .api-details-expanded .param-table {
|
|
2289
|
-
width: 100%;
|
|
2290
|
-
border-collapse: collapse;
|
|
2291
|
-
font-size: 0.875rem;
|
|
2292
|
-
}
|
|
2293
|
-
main .api-details-expanded .param-table .desc-cell {
|
|
2294
|
-
position: relative;
|
|
2295
|
-
max-width: 20rem;
|
|
2296
|
-
padding-right: 1.5rem;
|
|
2297
|
-
}
|
|
2298
|
-
main .api-details-expanded .param-table .desc-text {
|
|
2299
|
-
white-space: nowrap;
|
|
2300
|
-
overflow: hidden;
|
|
2301
|
-
text-overflow: ellipsis;
|
|
2302
|
-
max-width: 90%;
|
|
2303
|
-
}
|
|
2304
|
-
main .api-details-expanded .param-table .desc-text.expanded {
|
|
2305
|
-
white-space: normal;
|
|
2306
|
-
}
|
|
2307
|
-
main .api-details-expanded .param-table .desc-toggle {
|
|
2308
|
-
position: absolute;
|
|
2309
|
-
right: 0.5rem;
|
|
2310
|
-
top: 50%;
|
|
2311
|
-
transform: translateY(-50%);
|
|
2312
|
-
background: none;
|
|
2313
|
-
border: none;
|
|
2314
|
-
cursor: pointer;
|
|
2315
|
-
}
|
|
2316
|
-
main .api-details-expanded .param-table .desc-toggle svg {
|
|
2317
|
-
transition: transform 0.2s ease;
|
|
2318
|
-
}
|
|
2319
|
-
main .api-details-expanded .param-table .desc-toggle .rotated {
|
|
2320
|
-
transform: rotate(180deg);
|
|
2321
|
-
}
|
|
2322
|
-
main .api-details-expanded .param-table th,
|
|
2323
|
-
main .api-details-expanded .param-table td {
|
|
2324
|
-
padding: 10px;
|
|
2325
|
-
border-bottom: 1px solid #bbbec5;
|
|
2326
|
-
text-align: left;
|
|
2327
|
-
color: #3b3f46;
|
|
2328
|
-
}
|
|
2329
|
-
main .api-details-expanded .param-table th {
|
|
2330
|
-
background: #edf1fb;
|
|
2331
|
-
font-weight: 600;
|
|
2332
|
-
}
|
|
2333
|
-
main .api-details-expanded .response-status {
|
|
2334
|
-
display: flex;
|
|
2335
|
-
align-items: center;
|
|
2336
|
-
justify-content: end;
|
|
2337
|
-
gap: 0.375rem;
|
|
2338
|
-
font-size: 0.875rem;
|
|
2339
|
-
color: green;
|
|
2340
|
-
margin-bottom: 0.75rem;
|
|
2341
|
-
}
|
|
2342
|
-
main .api-details-expanded .response-drop {
|
|
2343
|
-
width: 10rem;
|
|
2344
|
-
justify-content: end;
|
|
2345
|
-
}
|
|
2346
|
-
main .api-details-expanded .response-drop-test {
|
|
2347
|
-
justify-content: end !important;
|
|
2348
|
-
align-items: end !important;
|
|
2349
|
-
align-content: end !important;
|
|
2350
|
-
}
|
|
2351
|
-
main .api-details-expanded .copy-icon {
|
|
2352
|
-
cursor: pointer;
|
|
2353
|
-
width: 1.5rem;
|
|
2354
|
-
height: 1.5rem;
|
|
2355
2397
|
}
|