@digi-frontend/dgate-api-documentation 1.0.57 → 1.0.60

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 (81) hide show
  1. package/dist/_virtual/index4.js +1 -1
  2. package/dist/_virtual/index5.js +1 -1
  3. package/dist/_virtual/index6.js +1 -1
  4. package/dist/_virtual/index7.js +1 -1
  5. package/dist/node_modules/digitinary-ui/dist/index.js.map +1 -1
  6. package/dist/node_modules/highlight.js/lib/core.js.map +1 -1
  7. package/dist/node_modules/react/cjs/react-jsx-runtime.development.js +1 -1
  8. package/dist/node_modules/react/cjs/react-jsx-runtime.development.js.map +1 -1
  9. package/dist/node_modules/react-fast-compare/index.js +1 -1
  10. package/dist/node_modules/react-fast-compare/index.js.map +1 -1
  11. package/dist/node_modules/react-property/lib/index.js.map +1 -1
  12. package/dist/node_modules/toposort/index.js +1 -1
  13. package/dist/node_modules/yup/index.esm.js +1 -1
  14. package/dist/node_modules/yup/index.esm.js.map +1 -1
  15. package/dist/src/components/InfoForm/InfoForm.js +1 -1
  16. package/dist/src/components/InfoForm/InfoForm.js.map +1 -1
  17. package/dist/src/components/JsonInput/JsonInput.js.map +1 -1
  18. package/dist/src/components/LivePreview/LivePreview.js.map +1 -1
  19. package/dist/src/components/MethodAccordion/MethodAccordion.js.map +1 -1
  20. package/dist/src/components/SVGLoader/SVGLoader.js.map +1 -1
  21. package/dist/src/components/SectionHead/SectionHead.js.map +1 -1
  22. package/dist/src/components/SimpleLabelValue/SimpleLabelValue.js.map +1 -1
  23. package/dist/src/components/Tooltip/Tooltip.js.map +1 -1
  24. package/dist/src/components/dialog/index.js.map +1 -1
  25. package/dist/src/components/table/table.js +1 -1
  26. package/dist/src/components/table/table.js.map +1 -1
  27. package/dist/src/components/table/tags-table.js.map +1 -1
  28. package/dist/src/context/SectionToggleContext.js +2 -0
  29. package/dist/src/context/SectionToggleContext.js.map +1 -0
  30. package/dist/src/helpers/docs.helper.js +1 -1
  31. package/dist/src/helpers/docs.helper.js.map +1 -1
  32. package/dist/src/helpers/layout.helper.js.map +1 -1
  33. package/dist/src/layout/docsComponents/Codebox/Codebox.js.map +1 -1
  34. package/dist/src/layout/docsComponents/DocsAside/DocsAside.js +1 -1
  35. package/dist/src/layout/docsComponents/DocsAside/DocsAside.js.map +1 -1
  36. package/dist/src/layout/docsComponents/DocsContent/DocsContent.js +1 -1
  37. package/dist/src/layout/docsComponents/DocsContent/DocsContent.js.map +1 -1
  38. package/dist/src/layout/docsComponents/DocsContent/EndpointPage/index.js +1 -1
  39. package/dist/src/layout/docsComponents/DocsContent/EndpointPage/index.js.map +1 -1
  40. package/dist/src/layout/docsComponents/DocsContent/OverviewPage/index.js +1 -1
  41. package/dist/src/layout/docsComponents/DocsContent/OverviewPage/index.js.map +1 -1
  42. package/dist/src/layout/docsComponents/DocsHeader/DocsHeader.js.map +1 -1
  43. package/dist/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.js +1 -1
  44. package/dist/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.js.map +1 -1
  45. package/dist/src/layout/docsLayout.js +1 -1
  46. package/dist/src/layout/docsLayout.js.map +1 -1
  47. package/dist/src/layout/layout.js +1 -1
  48. package/dist/src/layout/layout.js.map +1 -1
  49. package/dist/src/utils/index.js +1 -1
  50. package/dist/src/utils/index.js.map +1 -1
  51. package/dist/styles.css +753 -753
  52. package/dist/types/context/SectionToggleContext.d.ts +37 -0
  53. package/dist/types/layout/docsComponents/DocsContent/DocsContent.d.ts +2 -3
  54. package/dist/types/layout/docsComponents/DocsContent/EndpointPage/index.d.ts +4 -2
  55. package/dist/types/layout/docsComponents/DocsContent/OverviewPage/index.d.ts +2 -2
  56. package/dist/types/layout/docsComponents/DocsHeader/DocsHeader.d.ts +5 -2
  57. package/dist/types/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.d.ts +3 -4
  58. package/dist/types/layout/docsLayout.d.ts +1 -6
  59. package/dist/types/types/docsLayout.type.d.ts +7 -0
  60. package/dist/types/utils/index.d.ts +1 -0
  61. package/package.json +1 -1
  62. package/src/components/InfoForm/InfoForm.tsx +2 -1
  63. package/src/components/table/table.tsx +1 -3
  64. package/src/context/SectionToggleContext.tsx +121 -0
  65. package/src/helpers/docs.helper.ts +1 -1
  66. package/src/layout/docsComponents/DocsAside/DocsAside.tsx +3 -3
  67. package/src/layout/docsComponents/DocsAside/style.module.scss +3 -3
  68. package/src/layout/docsComponents/DocsContent/DocsContent.tsx +18 -7
  69. package/src/layout/docsComponents/DocsContent/EndpointPage/index.tsx +46 -10
  70. package/src/layout/docsComponents/DocsContent/OverviewPage/index.tsx +37 -30
  71. package/src/layout/docsComponents/DocsHeader/DocsHeader.tsx +4 -3
  72. package/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.tsx +68 -44
  73. package/src/layout/docsLayout.tsx +35 -96
  74. package/src/layout/layout.tsx +1 -0
  75. package/src/types/docsLayout.type.ts +7 -0
  76. package/src/utils/index.ts +5 -0
  77. package/the_npm_commands.sh +12 -0
  78. package/variables.txt +4 -0
  79. package/dist/src/layout/docsComponents/DocsContent/TagPage/index.js +0 -2
  80. package/dist/src/layout/docsComponents/DocsContent/TagPage/index.js.map +0 -1
  81. package/dist/types/layout/docsComponents/DocsContent/TagPage/index.d.ts +0 -8
package/dist/styles.css CHANGED
@@ -39,6 +39,147 @@
39
39
  grid-row: 2;
40
40
  grid-column: 2;
41
41
  background-color: white;
42
+ }.containerTitleDrawer {
43
+ height: 64px;
44
+ min-height: 64px;
45
+ display: flex;
46
+ flex-direction: row;
47
+ justify-content: space-between;
48
+ align-items: center;
49
+ background-color: #f1f2f6;
50
+ padding: 0 30px 0 30px;
51
+ width: 100%;
52
+ }
53
+ .containerTitleDrawer span {
54
+ color: #12131a;
55
+ font-weight: 600;
56
+ font-size: 18px;
57
+ line-height: 25px;
58
+ letter-spacing: 0em;
59
+ }
60
+ .containerTitleDrawer svg path {
61
+ stroke: #000 !important;
62
+ }
63
+ .containerTitleDrawer .closeIcon {
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);
42
183
  }.methodAccordion {
43
184
  border: none !important;
44
185
  box-shadow: none !important;
@@ -367,221 +508,80 @@
367
508
  }
368
509
  .methodAccordion.readOnly .methodSummaryContainer .methodExpandArrowContainer {
369
510
  background-color: #ebecf2;
370
- }.apiInfoForm {
371
- display: grid;
372
- padding: 1.25rem 1.875rem;
373
- gap: 1.25rem;
374
- }
375
- .apiInfoForm .paramsTable .paramDescContainer {
511
+ }.tooltip-custom-wrapper {
376
512
  display: flex;
377
513
  }
378
- .apiInfoForm .paramsTable .paramDescContainer .paramDescContainer_separator {
379
- height: inherit;
380
- width: 1px;
381
- background-color: #d8dae5;
382
- }
383
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn) svg path {
384
- stroke-width: 0.1;
385
- }
386
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn {
387
- padding: 0;
388
- margin-right: 1.25rem;
514
+
515
+ [data-tippy-root] {
516
+ z-index: 2 !important;
389
517
  }
390
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) {
391
- display: flex;
392
- align-items: center;
393
- padding: 0;
518
+
519
+ .tippy-box {
520
+ background-color: #202f5b;
394
521
  font-size: 0.875rem;
522
+ border-radius: 0.3125rem;
523
+ width: max-content;
524
+ max-width: 100%;
525
+ overflow-wrap: break-word;
526
+ word-break: break-word;
527
+ position: relative;
528
+ border: 1px solid #d8dae5;
529
+ z-index: 2;
395
530
  }
396
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
397
- margin-block: auto;
531
+ .tippy-box.function .tippy-content {
532
+ background-color: #fff !important;
533
+ color: #000 !important;
398
534
  }
399
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg path {
400
- fill: #12131a;
535
+ .tippy-box.function[data-placement] > .tippy-arrow:before {
536
+ color: #fff !important;
401
537
  }
402
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn {
403
- padding: 0;
404
- border-width: 0 !important;
538
+ .tippy-box.info .tippy-arrow {
539
+ color: #202f5b;
405
540
  }
406
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
407
- margin-block: auto;
541
+ .tippy-box.success {
542
+ border-radius: 1.875rem;
543
+ background-color: #3aaa35;
544
+ padding-inline: 0.625rem;
408
545
  }
409
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg {
410
- width: 1.125rem;
546
+ .tippy-box .tippy-content {
547
+ text-align: justify;
548
+ font-size: 0.875rem;
549
+ line-height: 1.25rem;
550
+ padding: 0.625rem;
411
551
  }
412
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) {
413
- margin-block: auto;
552
+ .tippy-box .tippy-arrow {
553
+ position: relative;
554
+ width: 1rem;
555
+ height: 1rem;
414
556
  }
415
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg {
416
- width: 1.125rem;
557
+ .tippy-box[data-placement^=top] .tippy-arrow:before {
558
+ bottom: -0.4375rem;
559
+ border-width: 0.5rem 0.5rem 0 !important;
417
560
  }
418
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg path {
419
- fill: #3aaa35;
561
+ .tippy-box[data-placement^=right] .tippy-arrow:before {
562
+ left: -0.4375rem;
563
+ border-width: 0.5rem 0.5rem 0.5rem 0 !important;
420
564
  }
421
- .apiInfoForm .paramsTable .externalDocsLink {
422
- font-size: 0.875rem;
423
- line-height: 1.25rem;
424
- cursor: pointer;
425
- align-self: center;
426
- margin-right: 2rem;
565
+ .tippy-box[data-placement^=bottom] .tippy-arrow:before {
566
+ top: -0.4375rem;
567
+ border-width: 0 0.5rem 0.5rem !important;
427
568
  }
428
- .apiInfoForm .paramsTable .editExternalDocs {
429
- display: flex;
430
- align-items: center;
431
- padding-right: 0.625rem;
569
+ .tippy-box[data-placement^=left] .tippy-arrow:before {
570
+ right: -0.4375rem;
571
+ border-width: 0.5rem 0 0.5rem 0.5rem !important;
432
572
  }
433
- .apiInfoForm .paramsTable .editExternalDocs svg {
434
- cursor: pointer;
573
+ .tippy-box[data-placement^=bottom-start] .tippy-arrow {
574
+ transform: translate(0.937rem, 0) !important;
435
575
  }
436
- .apiInfoForm .paramsTable .editExternalDocs svg path {
437
- fill: #12131a;
576
+ .tippy-box[data-placement^=bottom-end] .tippy-arrow {
577
+ margin-left: calc(100% - 1.937rem);
578
+ transform: translate(0, 0) !important;
438
579
  }
439
- .apiInfoForm .paramsTable .editDescTooltipContent {
440
- display: flex;
441
- flex-direction: column;
442
- gap: 0.625rem;
443
- padding-bottom: 0.625rem;
580
+ .tippy-box[data-placement^=top-start] .tippy-arrow {
581
+ transform: translate(0.937rem, 0) !important;
444
582
  }
445
- .apiInfoForm .paramsTable .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
446
- margin-inline: 0.625rem;
447
- }
448
- .apiInfoForm .paramsTable .editDescTooltipContent .editDescTooltipContent_header {
449
- font-weight: 600;
450
- font-size: 0.875rem;
451
- line-height: 1.25rem;
452
- padding: 0.75rem 1.25rem;
453
- border-bottom: 1px solid #d8dae5;
454
- }
455
- .apiInfoForm .paramsTable :global(.requiredParam) :global(.headContainer)::after {
456
- content: "*";
457
- color: red;
458
- transform: translateX(0.125rem);
459
- }
460
- .apiInfoForm .apiDocRow {
461
- display: grid;
462
- grid-template-columns: 1fr 1fr;
463
- gap: 1.25rem;
464
- }
465
- .apiInfoForm .apiInfoForm_tagsChips {
466
- margin-top: -1.25rem;
467
- }
468
- .apiInfoForm .editDescTooltipContent {
469
- display: flex;
470
- flex-direction: column;
471
- gap: 0.625rem;
472
- padding-bottom: 0.625rem;
473
- }
474
- .apiInfoForm .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
475
- margin-inline: 0.625rem;
476
- }
477
- .apiInfoForm .editDescTooltipContent .editDescTooltipContent_header {
478
- font-weight: 600;
479
- font-size: 0.875rem;
480
- line-height: 1.25rem;
481
- padding: 0.75rem 1.25rem;
482
- border-bottom: 1px solid #d8dae5;
483
- }
484
- .apiInfoForm :global(.requiredParam) :global(.headContainer)::after {
485
- content: "*";
486
- color: red;
487
- transform: translateX(0.125rem);
488
- }.containerTitleDrawer {
489
- height: 64px;
490
- min-height: 64px;
491
- display: flex;
492
- flex-direction: row;
493
- justify-content: space-between;
494
- align-items: center;
495
- background-color: #f1f2f6;
496
- padding: 0 30px 0 30px;
497
- width: 100%;
498
- }
499
- .containerTitleDrawer span {
500
- color: #12131a;
501
- font-weight: 600;
502
- font-size: 18px;
503
- line-height: 25px;
504
- letter-spacing: 0em;
505
- }
506
- .containerTitleDrawer svg path {
507
- stroke: #000 !important;
508
- }
509
- .containerTitleDrawer .closeIcon {
510
- cursor: pointer;
511
- }.tooltip-custom-wrapper {
512
- display: flex;
513
- }
514
-
515
- [data-tippy-root] {
516
- z-index: 2 !important;
517
- }
518
-
519
- .tippy-box {
520
- background-color: #202f5b;
521
- font-size: 0.875rem;
522
- border-radius: 0.3125rem;
523
- width: max-content;
524
- max-width: 100%;
525
- overflow-wrap: break-word;
526
- word-break: break-word;
527
- position: relative;
528
- border: 1px solid #d8dae5;
529
- z-index: 2;
530
- }
531
- .tippy-box.function .tippy-content {
532
- background-color: #fff !important;
533
- color: #000 !important;
534
- }
535
- .tippy-box.function[data-placement] > .tippy-arrow:before {
536
- color: #fff !important;
537
- }
538
- .tippy-box.info .tippy-arrow {
539
- color: #202f5b;
540
- }
541
- .tippy-box.success {
542
- border-radius: 1.875rem;
543
- background-color: #3aaa35;
544
- padding-inline: 0.625rem;
545
- }
546
- .tippy-box .tippy-content {
547
- text-align: justify;
548
- font-size: 0.875rem;
549
- line-height: 1.25rem;
550
- padding: 0.625rem;
551
- }
552
- .tippy-box .tippy-arrow {
553
- position: relative;
554
- width: 1rem;
555
- height: 1rem;
556
- }
557
- .tippy-box[data-placement^=top] .tippy-arrow:before {
558
- bottom: -0.4375rem;
559
- border-width: 0.5rem 0.5rem 0 !important;
560
- }
561
- .tippy-box[data-placement^=right] .tippy-arrow:before {
562
- left: -0.4375rem;
563
- border-width: 0.5rem 0.5rem 0.5rem 0 !important;
564
- }
565
- .tippy-box[data-placement^=bottom] .tippy-arrow:before {
566
- top: -0.4375rem;
567
- border-width: 0 0.5rem 0.5rem !important;
568
- }
569
- .tippy-box[data-placement^=left] .tippy-arrow:before {
570
- right: -0.4375rem;
571
- border-width: 0.5rem 0 0.5rem 0.5rem !important;
572
- }
573
- .tippy-box[data-placement^=bottom-start] .tippy-arrow {
574
- transform: translate(0.937rem, 0) !important;
575
- }
576
- .tippy-box[data-placement^=bottom-end] .tippy-arrow {
577
- margin-left: calc(100% - 1.937rem);
578
- transform: translate(0, 0) !important;
579
- }
580
- .tippy-box[data-placement^=top-start] .tippy-arrow {
581
- transform: translate(0.937rem, 0) !important;
582
- }
583
- .tippy-box[data-placement^=top-end] .tippy-arrow {
584
- transform: translate(0.937rem, 0) !important;
583
+ .tippy-box[data-placement^=top-end] .tippy-arrow {
584
+ transform: translate(0.937rem, 0) !important;
585
585
  }
586
586
  .tippy-box.arrow-with-border {
587
587
  border: 1px solid #d8dae5;
@@ -914,6 +914,117 @@
914
914
  width: 0.625rem;
915
915
  aspect-ratio: 1/1;
916
916
  border-radius: 100%;
917
+ }.json-editor-container {
918
+ overflow: hidden;
919
+ border-bottom-right-radius: 0.3125rem;
920
+ border-bottom-left-radius: 0.3125rem;
921
+ }
922
+ .json-editor-container .json-editor-label {
923
+ font-size: 0.875rem;
924
+ font-weight: 600;
925
+ line-height: 1.25rem;
926
+ margin-bottom: 0.3125rem;
927
+ }
928
+ .json-editor-container .json-editor {
929
+ display: flex;
930
+ flex-direction: column;
931
+ background-color: #142452;
932
+ width: 100%;
933
+ outline: 1px solid transparent;
934
+ position: relative;
935
+ overflow: hidden;
936
+ }
937
+ .json-editor-container .json-editor .actions-container {
938
+ width: 100%;
939
+ height: 5rem;
940
+ padding: 1.25rem;
941
+ border-radius: 0 0 0.3125rem 0.3125rem;
942
+ background: #101e47;
943
+ display: flex;
944
+ flex-direction: row;
945
+ gap: 1.25rem;
946
+ align-items: center;
947
+ }
948
+ .json-editor-container .json-editor .actions-container .validate {
949
+ color: #fff;
950
+ text-align: center;
951
+ font-size: 1rem;
952
+ font-style: normal;
953
+ font-weight: 600;
954
+ line-height: 1.25rem;
955
+ width: 8.75rem;
956
+ padding: 0.625rem 2.25rem;
957
+ background-color: rgba(240, 248, 255, 0);
958
+ border-radius: 0.3125rem;
959
+ border: 0.0625rem solid #4d75d8;
960
+ cursor: pointer;
961
+ }
962
+ .json-editor-container .json-editor .actions-container .validate:disabled {
963
+ color: #babdcc;
964
+ border-color: #a2a5b6;
965
+ }
966
+ .json-editor-container .json-editor .actions-container .beautify {
967
+ color: #fff;
968
+ text-align: center;
969
+ font-size: 1rem;
970
+ font-style: normal;
971
+ font-weight: 600;
972
+ line-height: 1.25rem;
973
+ width: 8.75rem;
974
+ padding: 0.625rem 2.25rem;
975
+ background-color: rgba(240, 248, 255, 0);
976
+ border-radius: 0.3125rem;
977
+ border: 1px solid #babdcc;
978
+ cursor: pointer;
979
+ }
980
+ .json-editor-container .json-editor .actions-container .beautify:disabled {
981
+ color: #a2a5b6;
982
+ border-color: #a2a5b6;
983
+ }
984
+ .json-editor-container .json-editor textarea {
985
+ width: 100%;
986
+ padding: 1.25rem;
987
+ font-size: 0.875rem;
988
+ font-style: normal;
989
+ font-weight: 400;
990
+ line-height: 1.25rem;
991
+ color: white;
992
+ height: 25rem;
993
+ background-color: #142452;
994
+ border: none;
995
+ resize: none;
996
+ }
997
+ .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 {
998
+ outline: none;
999
+ border: none;
1000
+ }
1001
+ .json-editor-container .json-editor textarea::-webkit-scrollbar {
1002
+ width: 0.5rem;
1003
+ }
1004
+ .json-editor-container .json-editor textarea::-webkit-scrollbar-track {
1005
+ background-color: #828699;
1006
+ border: none;
1007
+ border-color: transparent;
1008
+ border-top-left-radius: 0;
1009
+ }
1010
+ .json-editor-container .json-editor textarea::-webkit-scrollbar-thumb {
1011
+ background-color: #d8dae5;
1012
+ border: none;
1013
+ border-color: transparent;
1014
+ border-radius: 0;
1015
+ }
1016
+ .json-editor-container .json-editor.invalid {
1017
+ outline: 1px solid #ce2828 !important;
1018
+ }
1019
+ .json-editor-container .error-message {
1020
+ color: #ce2828;
1021
+ font-size: 0.75rem;
1022
+ line-height: 1.25rem;
1023
+ margin-top: 0.625rem;
1024
+ }
1025
+ .json-editor-container.disabled .json-editor textarea {
1026
+ background-color: white;
1027
+ color: #12131a;
917
1028
  }:root {
918
1029
  --white: #fff;
919
1030
  --Gray-5: #f1f2f6;
@@ -996,12 +1107,117 @@
996
1107
  --alert-natural: #c4d3f1;
997
1108
  }
998
1109
 
999
- #EnumButton {
1110
+ .drawerItemContainer {
1000
1111
  display: flex;
1001
- justify-content: center;
1002
- align-items: center;
1003
- border: 0.0375rem solid #babdcc;
1004
- border-radius: 0.3125rem;
1112
+ flex-direction: column;
1113
+ }
1114
+ .drawerItemContainer .title {
1115
+ color: #000;
1116
+ font-weight: 600;
1117
+ font-size: 24px;
1118
+ line-height: 35px;
1119
+ margin-bottom: 3px;
1120
+ margin-top: 1.5rem;
1121
+ }
1122
+ .drawerItemContainer .text {
1123
+ color: #000;
1124
+ font-weight: 400;
1125
+ font-size: 24px;
1126
+ line-height: 25px;
1127
+ }
1128
+ .drawerItemContainer .color-green {
1129
+ color: var(--color-success);
1130
+ }
1131
+ .drawerItemContainer .color-red {
1132
+ color: var(--color-error);
1133
+ }:root {
1134
+ --white: #fff;
1135
+ --Gray-5: #f1f2f6;
1136
+ --Gray-10: #ebecf2;
1137
+ --Gray-20: #d8dae5;
1138
+ --Gray-30: #babdcc;
1139
+ --Gray-40: #9a9eb2;
1140
+ --Gray-50: #828699;
1141
+ --Gray-60: #696c80;
1142
+ --Gray-100: #12131a;
1143
+ --black: #000;
1144
+ --primary-static: #4d75d8;
1145
+ --primary-hover: #7c9bea;
1146
+ --primary-active: #2c4fa4;
1147
+ --primary-disabled: #9a9eb2;
1148
+ --secondary-static: #40e0d0;
1149
+ --secondary-hover: #9efcf2;
1150
+ --secondary-active: #2fa599;
1151
+ --error-static: #da3f3f;
1152
+ --error-hover: #e75d5d;
1153
+ --error-active: #bb3232;
1154
+ --success-static: #3aaa35;
1155
+ --success-hover: #5cda56;
1156
+ --success-active: #2a8a25;
1157
+ --info-static: #c6c6c6;
1158
+ --info-hover: #e4e4e4;
1159
+ --info-active: #979797;
1160
+ --warning-static: #faad14;
1161
+ --warning-hover: #f9be4a;
1162
+ --warning-active: #db9711;
1163
+ --action-static: #142452;
1164
+ --action-hover: #21387d;
1165
+ --action-active: #000000;
1166
+ --color-info-primary: #3a6cd1;
1167
+ --primary-font-color: #142452;
1168
+ --placeholder-font-color: #babdcc;
1169
+ --warning-font-color: #ce2828;
1170
+ --alert-error: #da3f3f;
1171
+ --alert-light-error: #f4c5c5;
1172
+ --alert-success: #3aaa35;
1173
+ --alert-light-success: #c4e5c2;
1174
+ --alert-info: #8eaaf1;
1175
+ --alert-light-info: #c4d3f1;
1176
+ --alert-warning: #faad14;
1177
+ --alert-light-warning: #fde6b8;
1178
+ --border-focus: #3a6cd1;
1179
+ --tooltip-background-color: #202f5b;
1180
+ --text-color-primary: #142452;
1181
+ --text-color-secondary: #ffff;
1182
+ --text-color-neutral: #828699;
1183
+ --text-color-tertiary: #808080;
1184
+ --text-color-note: #242424;
1185
+ --text-color-quaternary: #142452;
1186
+ --text-color-disabled: #ffff;
1187
+ --background-color-white-primary: #fff;
1188
+ --background-color-light-primary: #8eaaf1;
1189
+ --background-color-white-secondary: #fff;
1190
+ --background-color-primary-dark: #142452;
1191
+ --background-color-gray-5: #f1f2f6;
1192
+ --background-color-gray-30: #ebecf2;
1193
+ --background-color-tertiary-light: #2c4fa4;
1194
+ --background-color-gray-10: #f1f2f6;
1195
+ --background-color-gray-40: #ebecf2;
1196
+ --background-color-light-blue: #dfe7f8;
1197
+ --border-color-primary: #babdcc;
1198
+ --border-color-secondary: #d8dae5;
1199
+ --border-color-neutral: #ebecf2;
1200
+ --border-color-tertiary: #ebecf2;
1201
+ --border-color-gray: #ebecf2;
1202
+ --border-color-hover: #142452;
1203
+ --border-color-active: #3a6cd1;
1204
+ --icon-color-main: #142452;
1205
+ --icon-color-secondary: #000;
1206
+ --icon-color-quaternary: #babdcc;
1207
+ --icon-color-disabled: #9a9eb2;
1208
+ --link-btn-primary-color: #3a6cd1;
1209
+ --button-color-static: #4d75d8;
1210
+ --button-color-hover: #7c9bea;
1211
+ --button-color-active: #2c4fa4;
1212
+ --alert-natural: #c4d3f1;
1213
+ }
1214
+
1215
+ #EnumButton {
1216
+ display: flex;
1217
+ justify-content: center;
1218
+ align-items: center;
1219
+ border: 0.0375rem solid #babdcc;
1220
+ border-radius: 0.3125rem;
1005
1221
  }
1006
1222
 
1007
1223
  div.endBtnIcon {
@@ -1183,285 +1399,69 @@ div.endBtnIcon {
1183
1399
  .tableSectionContainer .descArrow path,
1184
1400
  .tableSectionContainer .defaultSortArrow path {
1185
1401
  fill: var(--Gray-50);
1186
- }.json-editor-container {
1187
- overflow: hidden;
1188
- border-bottom-right-radius: 0.3125rem;
1189
- border-bottom-left-radius: 0.3125rem;
1190
- }
1191
- .json-editor-container .json-editor-label {
1192
- font-size: 0.875rem;
1193
- font-weight: 600;
1194
- line-height: 1.25rem;
1195
- margin-bottom: 0.3125rem;
1196
- }
1197
- .json-editor-container .json-editor {
1198
- display: flex;
1199
- flex-direction: column;
1200
- background-color: #142452;
1402
+ }.api-docs-api-tree {
1201
1403
  width: 100%;
1202
- outline: 1px solid transparent;
1203
- position: relative;
1204
- overflow: hidden;
1404
+ max-width: 12.5rem;
1405
+ padding: 3rem 1.25rem;
1406
+ box-sizing: border-box;
1205
1407
  }
1206
- .json-editor-container .json-editor .actions-container {
1207
- width: 100%;
1208
- height: 5rem;
1209
- padding: 1.25rem;
1210
- border-radius: 0 0 0.3125rem 0.3125rem;
1211
- background: #101e47;
1408
+ .api-docs-api-tree > * {
1409
+ box-sizing: border-box;
1410
+ }
1411
+ .api-docs-api-tree__section-header {
1212
1412
  display: flex;
1213
- flex-direction: row;
1214
- gap: 1.25rem;
1215
1413
  align-items: center;
1216
- }
1217
- .json-editor-container .json-editor .actions-container .validate {
1218
- color: #fff;
1219
- text-align: center;
1220
- font-size: 1rem;
1221
- font-style: normal;
1222
- font-weight: 600;
1223
- line-height: 1.25rem;
1224
- width: 8.75rem;
1225
- padding: 0.625rem 2.25rem;
1226
- background-color: rgba(240, 248, 255, 0);
1227
- border-radius: 0.3125rem;
1228
- border: 0.0625rem solid #4d75d8;
1414
+ gap: 0.25rem;
1415
+ padding-inline: 0.5rem;
1229
1416
  cursor: pointer;
1417
+ user-select: none;
1418
+ height: 2.5rem;
1230
1419
  }
1231
- .json-editor-container .json-editor .actions-container .validate:disabled {
1232
- color: #babdcc;
1233
- border-color: #a2a5b6;
1234
- }
1235
- .json-editor-container .json-editor .actions-container .beautify {
1236
- color: #fff;
1237
- text-align: center;
1238
- font-size: 1rem;
1239
- font-style: normal;
1240
- font-weight: 600;
1241
- line-height: 1.25rem;
1242
- width: 8.75rem;
1243
- padding: 0.625rem 2.25rem;
1244
- background-color: rgba(240, 248, 255, 0);
1245
- border-radius: 0.3125rem;
1246
- border: 1px solid #babdcc;
1247
- cursor: pointer;
1420
+ .api-docs-api-tree__section-header:hover {
1421
+ background-color: #f3f4f6;
1248
1422
  }
1249
- .json-editor-container .json-editor .actions-container .beautify:disabled {
1250
- color: #a2a5b6;
1251
- border-color: #a2a5b6;
1423
+ .api-docs-api-tree__section-header svg:first-child path {
1424
+ stroke: #bbbec5;
1252
1425
  }
1253
- .json-editor-container .json-editor textarea {
1254
- width: 100%;
1255
- padding: 1.25rem;
1256
- font-size: 0.875rem;
1257
- font-style: normal;
1258
- font-weight: 400;
1259
- line-height: 1.25rem;
1260
- color: white;
1261
- height: 25rem;
1262
- background-color: #142452;
1263
- border: none;
1264
- resize: none;
1426
+ .api-docs-api-tree__section-title {
1427
+ font-size: 0.75rem;
1428
+ line-height: 0.875rem;
1429
+ font-weight: 500;
1430
+ color: #000;
1431
+ margin-left: 0.25rem;
1265
1432
  }
1266
- .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 {
1267
- outline: none;
1268
- border: none;
1433
+ .api-docs-api-tree__section__overview {
1434
+ display: flex;
1435
+ align-items: center;
1436
+ gap: 0.5rem;
1437
+ padding: 0.5rem 1.75rem;
1438
+ border-radius: 0.25rem;
1439
+ cursor: pointer;
1269
1440
  }
1270
- .json-editor-container .json-editor textarea::-webkit-scrollbar {
1271
- width: 0.5rem;
1441
+ .api-docs-api-tree__section__overview:hover {
1442
+ background-color: #f3f4f6;
1272
1443
  }
1273
- .json-editor-container .json-editor textarea::-webkit-scrollbar-track {
1274
- background-color: #828699;
1275
- border: none;
1276
- border-color: transparent;
1277
- border-top-left-radius: 0;
1444
+ .api-docs-api-tree__section__overview span {
1445
+ font-size: 0.75rem;
1446
+ line-height: 0.875rem;
1447
+ color: #000000;
1278
1448
  }
1279
- .json-editor-container .json-editor textarea::-webkit-scrollbar-thumb {
1280
- background-color: #d8dae5;
1281
- border: none;
1282
- border-color: transparent;
1283
- border-radius: 0;
1449
+ .api-docs-api-tree__section__overview[data-active=true] {
1450
+ background-color: #f0f1f2;
1284
1451
  }
1285
- .json-editor-container .json-editor.invalid {
1286
- outline: 1px solid #ce2828 !important;
1452
+ .api-docs-api-tree__section__endpoints {
1453
+ display: flex;
1454
+ align-items: center;
1455
+ height: 1.5rem;
1456
+ gap: 0.5rem;
1457
+ border-radius: 0.25rem;
1458
+ padding-inline: 1.75rem;
1459
+ cursor: pointer;
1287
1460
  }
1288
- .json-editor-container .error-message {
1289
- color: #ce2828;
1461
+ .api-docs-api-tree__section__endpoints span {
1290
1462
  font-size: 0.75rem;
1291
- line-height: 1.25rem;
1292
- margin-top: 0.625rem;
1293
- }
1294
- .json-editor-container.disabled .json-editor textarea {
1295
- background-color: white;
1296
- color: #12131a;
1297
- }:root {
1298
- --white: #fff;
1299
- --Gray-5: #f1f2f6;
1300
- --Gray-10: #ebecf2;
1301
- --Gray-20: #d8dae5;
1302
- --Gray-30: #babdcc;
1303
- --Gray-40: #9a9eb2;
1304
- --Gray-50: #828699;
1305
- --Gray-60: #696c80;
1306
- --Gray-100: #12131a;
1307
- --black: #000;
1308
- --primary-static: #4d75d8;
1309
- --primary-hover: #7c9bea;
1310
- --primary-active: #2c4fa4;
1311
- --primary-disabled: #9a9eb2;
1312
- --secondary-static: #40e0d0;
1313
- --secondary-hover: #9efcf2;
1314
- --secondary-active: #2fa599;
1315
- --error-static: #da3f3f;
1316
- --error-hover: #e75d5d;
1317
- --error-active: #bb3232;
1318
- --success-static: #3aaa35;
1319
- --success-hover: #5cda56;
1320
- --success-active: #2a8a25;
1321
- --info-static: #c6c6c6;
1322
- --info-hover: #e4e4e4;
1323
- --info-active: #979797;
1324
- --warning-static: #faad14;
1325
- --warning-hover: #f9be4a;
1326
- --warning-active: #db9711;
1327
- --action-static: #142452;
1328
- --action-hover: #21387d;
1329
- --action-active: #000000;
1330
- --color-info-primary: #3a6cd1;
1331
- --primary-font-color: #142452;
1332
- --placeholder-font-color: #babdcc;
1333
- --warning-font-color: #ce2828;
1334
- --alert-error: #da3f3f;
1335
- --alert-light-error: #f4c5c5;
1336
- --alert-success: #3aaa35;
1337
- --alert-light-success: #c4e5c2;
1338
- --alert-info: #8eaaf1;
1339
- --alert-light-info: #c4d3f1;
1340
- --alert-warning: #faad14;
1341
- --alert-light-warning: #fde6b8;
1342
- --border-focus: #3a6cd1;
1343
- --tooltip-background-color: #202f5b;
1344
- --text-color-primary: #142452;
1345
- --text-color-secondary: #ffff;
1346
- --text-color-neutral: #828699;
1347
- --text-color-tertiary: #808080;
1348
- --text-color-note: #242424;
1349
- --text-color-quaternary: #142452;
1350
- --text-color-disabled: #ffff;
1351
- --background-color-white-primary: #fff;
1352
- --background-color-light-primary: #8eaaf1;
1353
- --background-color-white-secondary: #fff;
1354
- --background-color-primary-dark: #142452;
1355
- --background-color-gray-5: #f1f2f6;
1356
- --background-color-gray-30: #ebecf2;
1357
- --background-color-tertiary-light: #2c4fa4;
1358
- --background-color-gray-10: #f1f2f6;
1359
- --background-color-gray-40: #ebecf2;
1360
- --background-color-light-blue: #dfe7f8;
1361
- --border-color-primary: #babdcc;
1362
- --border-color-secondary: #d8dae5;
1363
- --border-color-neutral: #ebecf2;
1364
- --border-color-tertiary: #ebecf2;
1365
- --border-color-gray: #ebecf2;
1366
- --border-color-hover: #142452;
1367
- --border-color-active: #3a6cd1;
1368
- --icon-color-main: #142452;
1369
- --icon-color-secondary: #000;
1370
- --icon-color-quaternary: #babdcc;
1371
- --icon-color-disabled: #9a9eb2;
1372
- --link-btn-primary-color: #3a6cd1;
1373
- --button-color-static: #4d75d8;
1374
- --button-color-hover: #7c9bea;
1375
- --button-color-active: #2c4fa4;
1376
- --alert-natural: #c4d3f1;
1377
- }
1378
-
1379
- .drawerItemContainer {
1380
- display: flex;
1381
- flex-direction: column;
1382
- }
1383
- .drawerItemContainer .title {
1384
- color: #000;
1385
- font-weight: 600;
1386
- font-size: 24px;
1387
- line-height: 35px;
1388
- margin-bottom: 3px;
1389
- margin-top: 1.5rem;
1390
- }
1391
- .drawerItemContainer .text {
1392
- color: #000;
1393
- font-weight: 400;
1394
- font-size: 24px;
1395
- line-height: 25px;
1396
- }
1397
- .drawerItemContainer .color-green {
1398
- color: var(--color-success);
1399
- }
1400
- .drawerItemContainer .color-red {
1401
- color: var(--color-error);
1402
- }.api-docs-api-tree {
1403
- width: 100%;
1404
- max-width: 12.5rem;
1405
- padding: 3rem 1.25rem;
1406
- box-sizing: border-box;
1407
- }
1408
- .api-docs-api-tree > * {
1409
- box-sizing: border-box;
1410
- }
1411
- .api-docs-api-tree__section-header {
1412
- display: flex;
1413
- align-items: center;
1414
- gap: 0.25rem;
1415
- padding-inline: 0.5rem;
1416
- cursor: pointer;
1417
- user-select: none;
1418
- height: 2.5rem;
1419
- }
1420
- .api-docs-api-tree__section-header:hover {
1421
- background-color: #f3f4f6;
1422
- }
1423
- .api-docs-api-tree__section-header svg:first-child path {
1424
- stroke: #bbbec5;
1425
- }
1426
- .api-docs-api-tree__section-title {
1427
- font-size: 0.75rem;
1428
- line-height: 0.875rem;
1429
- font-weight: 500;
1430
- color: #000;
1431
- margin-left: 0.25rem;
1432
- }
1433
- .api-docs-api-tree__section__overview {
1434
- display: flex;
1435
- align-items: center;
1436
- gap: 0.5rem;
1437
- padding: 0.5rem 1.75rem;
1438
- border-radius: 0.25rem;
1439
- cursor: pointer;
1440
- }
1441
- .api-docs-api-tree__section__overview:hover {
1442
- background-color: #f3f4f6;
1443
- }
1444
- .api-docs-api-tree__section__overview span {
1445
- font-size: 0.75rem;
1446
- line-height: 0.875rem;
1447
- color: #000000;
1448
- }
1449
- .api-docs-api-tree__section__overview[data-active=true] {
1450
- background-color: #f0f1f2;
1451
- }
1452
- .api-docs-api-tree__section__endpoints {
1453
- display: flex;
1454
- align-items: center;
1455
- height: 1.5rem;
1456
- gap: 0.5rem;
1457
- border-radius: 0.25rem;
1458
- padding-inline: 1.75rem;
1459
- cursor: pointer;
1460
- }
1461
- .api-docs-api-tree__section__endpoints span {
1462
- font-size: 0.75rem;
1463
- line-height: 0.875rem;
1464
- color: #000000;
1463
+ line-height: 0.875rem;
1464
+ color: #000000;
1465
1465
  }
1466
1466
  .api-docs-api-tree__section__endpoints[data-active=true] {
1467
1467
  background-color: #f0f1f2;
@@ -1792,6 +1792,42 @@ div.endBtnIcon {
1792
1792
  opacity: 1 !important;
1793
1793
  backdrop-filter: blur(0.5rem);
1794
1794
  background-color: rgba(0, 0, 0, 0.281) !important;
1795
+ }.codebox {
1796
+ border-radius: 0.25rem;
1797
+ overflow: hidden;
1798
+ }
1799
+ .codebox_header {
1800
+ display: flex;
1801
+ align-items: center;
1802
+ gap: 0.25rem;
1803
+ padding-left: 0.5rem;
1804
+ height: 1.75rem;
1805
+ border: 1px solid #bbbec5;
1806
+ border-top-right-radius: 0.25rem;
1807
+ border-top-left-radius: 0.25rem;
1808
+ }
1809
+ .codebox_header_themeToggle {
1810
+ width: 0.75rem;
1811
+ min-width: 0.75rem;
1812
+ aspect-ratio: 1/1;
1813
+ border: 1px solid transparent;
1814
+ border-radius: 100%;
1815
+ cursor: pointer;
1816
+ }
1817
+ .codebox_header_themeToggle_dark {
1818
+ background-color: #455162;
1819
+ border-color: #6b7280;
1820
+ }
1821
+ .codebox_header_themeToggle_light {
1822
+ background-color: #edf1fb;
1823
+ border-color: #6b7280;
1824
+ }
1825
+ .codebox_header_copyIcon {
1826
+ cursor: pointer;
1827
+ }
1828
+ .codebox :global(.custom-code-line),
1829
+ .codebox :global(.custom-code-line span) {
1830
+ font-family: "Cascadia Code", sans-serif;
1795
1831
  }.apiDocsAside {
1796
1832
  width: 22.5rem;
1797
1833
  padding: 3rem 1.5rem;
@@ -1865,294 +1901,19 @@ div.endBtnIcon {
1865
1901
  gap: 0.625rem;
1866
1902
  padding-left: 0.75rem;
1867
1903
  }
1868
- .apiDocsAside .codeboxSection :global(.multiSelectGroup) .statusCodeOptionContainer .statusCodeOptionCircle {
1869
- width: 0.625rem;
1870
- min-width: 0.625rem;
1871
- aspect-ratio: 1/1;
1872
- border-radius: 100%;
1873
- }
1874
- .apiDocsAside :global(.multiSelectGroup .selectDisplay),
1875
- .apiDocsAside :global(.multiSelectGroup) {
1876
- width: 6.25rem;
1877
- height: 1.5rem;
1878
- }
1879
- .apiDocsAside :global(.multiSelectGroup .selectDisplay .displayValueContainer .iconsContainer) {
1880
- padding-right: 0.75rem;
1881
- }.codebox {
1882
- border-radius: 0.25rem;
1883
- overflow: hidden;
1884
- }
1885
- .codebox_header {
1886
- display: flex;
1887
- align-items: center;
1888
- gap: 0.25rem;
1889
- padding-left: 0.5rem;
1890
- height: 1.75rem;
1891
- border: 1px solid #bbbec5;
1892
- border-top-right-radius: 0.25rem;
1893
- border-top-left-radius: 0.25rem;
1894
- }
1895
- .codebox_header_themeToggle {
1896
- width: 0.75rem;
1897
- min-width: 0.75rem;
1898
- aspect-ratio: 1/1;
1899
- border: 1px solid transparent;
1900
- border-radius: 100%;
1901
- cursor: pointer;
1902
- }
1903
- .codebox_header_themeToggle_dark {
1904
- background-color: #455162;
1905
- border-color: #6b7280;
1906
- }
1907
- .codebox_header_themeToggle_light {
1908
- background-color: #edf1fb;
1909
- border-color: #6b7280;
1910
- }
1911
- .codebox_header_copyIcon {
1912
- cursor: pointer;
1913
- }
1914
- .codebox :global(.custom-code-line),
1915
- .codebox :global(.custom-code-line span) {
1916
- font-family: "Cascadia Code", sans-serif;
1917
- }main {
1918
- padding: 2rem;
1919
- }
1920
- main .api-details-expanded .api-title {
1921
- font-size: 3rem;
1922
- font-weight: 600;
1923
- letter-spacing: -1px;
1924
- line-height: 3.5rem;
1925
- margin-bottom: 0.752rem;
1926
- color: #4d75d9;
1927
- }
1928
- main .api-details-expanded .test-button {
1929
- margin-top: 1.25rem;
1930
- margin-bottom: 3.125rem;
1931
- display: flex;
1932
- align-items: center;
1933
- justify-content: space-between;
1934
- gap: 0.5rem;
1935
- }
1936
- main .api-details-expanded .test-button .back-button {
1937
- display: inline-flex;
1938
- align-items: center;
1939
- justify-content: center;
1940
- width: 2.75rem;
1941
- height: 2.75rem;
1942
- border: 1px solid #3b82f6;
1943
- border-radius: 0.5rem;
1944
- background-color: white;
1945
- color: #3b82f6;
1946
- cursor: pointer;
1947
- transition: background-color 0.2s ease;
1948
- }
1949
- main .api-details-expanded .test-button .back-button svg {
1950
- stroke-width: 2;
1951
- }
1952
- main .api-details-expanded .test-button .back-button:hover {
1953
- background-color: #eff6ff;
1954
- }
1955
- main .api-details-expanded .test-button .disabled {
1956
- background: #f0f1f2;
1957
- color: #9ca1aa;
1958
- cursor: not-allowed;
1959
- padding: 0.375rem 1rem;
1960
- border-radius: 6px;
1961
- font-size: 14px;
1962
- border: 1px #b8bfca solid;
1963
- width: 7.56rem;
1964
- height: 2.75rem;
1965
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
1966
- }
1967
- main .api-details-expanded h3 {
1968
- color: #616874;
1969
- font-size: 1.125rem;
1970
- font-weight: 400;
1971
- letter-spacing: 0px;
1972
- line-height: 1.5rem;
1973
- margin-top: 1.5rem;
1974
- margin-bottom: 0.5rem;
1975
- }
1976
- main .api-details-expanded .url-box {
1977
- height: 1.75rem;
1978
- justify-content: space-between;
1979
- background-color: #edf1fb !important;
1980
- }
1981
- main .api-details-expanded .url-text {
1982
- color: #3b3f46;
1983
- font-size: 1.25rem;
1984
- letter-spacing: 0px;
1985
- line-height: 1.75rem;
1986
- }
1987
- main .api-details-expanded .method-label {
1988
- font-size: 0.924rem;
1989
- font-weight: 600;
1990
- padding: 0.125rem 0.5rem;
1991
- border-radius: 0.375rem;
1992
- text-transform: uppercase;
1993
- color: #3aaa35;
1994
- text-decoration: underline;
1995
- }
1996
- main .api-details-expanded .method-label.get {
1997
- color: #3a6cd1;
1998
- }
1999
- main .api-details-expanded .method-label.post {
2000
- color: #3aaa35;
2001
- }
2002
- main .api-details-expanded .method-label.put {
2003
- color: #faad14;
2004
- }
2005
- main .api-details-expanded .method-label.patch {
2006
- color: #58e2c2;
2007
- }
2008
- main .api-details-expanded .method-label.delete {
2009
- color: #da3f3f;
2010
- }
2011
- main .api-details-expanded .method-label.head {
2012
- color: #9461c9;
2013
- }
2014
- main .api-details-expanded .method-label.trace {
2015
- color: #ffa28f;
2016
- }
2017
- main .api-details-expanded .method-label.options {
2018
- color: #495d97;
2019
- }
2020
- main .api-details-expanded .url-box {
2021
- background-color: #f3f4f6;
2022
- padding: 0.375rem 0.75rem;
2023
- border-radius: 0.5rem;
2024
- display: flex;
2025
- align-items: center;
2026
- gap: 0.5rem;
2027
- font-size: 14px;
2028
- flex: 1;
2029
- height: 2.8rem;
2030
- margin-bottom: 1.5rem;
2031
- }
2032
- main .api-details-expanded .api-desc {
2033
- color: #6b7280;
2034
- margin: 1.5rem 0;
2035
- }
2036
- main .api-details-expanded .head-table-label {
2037
- color: #3b3f46 !important;
2038
- letter-spacing: 0px;
2039
- font-weight: 400 !important;
2040
- line-height: 1rem;
2041
- }
2042
- main .api-details-expanded .request-tabs {
2043
- display: flex;
2044
- gap: 0.5rem;
2045
- margin-bottom: 0.75rem;
2046
- }
2047
- main .api-details-expanded .tab {
2048
- background: white;
2049
- border: 1px solid #d1d3d8;
2050
- padding: 0.375rem 0.75rem;
2051
- border-radius: 6px;
2052
- cursor: pointer;
2053
- font-size: 0.875rem;
2054
- color: #000000;
2055
- display: flex;
2056
- align-items: center;
2057
- gap: 0.375rem;
2058
- }
2059
- main .api-details-expanded .tab {
2060
- background: white;
2061
- border: 1px solid #d1d3d8;
2062
- padding: 0.375rem 0.75rem;
2063
- border-radius: 6px;
2064
- cursor: pointer;
2065
- font-size: 0.875rem;
2066
- color: #000000;
2067
- display: flex;
2068
- align-items: center;
2069
- gap: 0.375rem;
2070
- }
2071
- main .api-details-expanded .tab.active {
2072
- background-color: #e5edff;
2073
- border-color: #4d75d9;
2074
- color: #000000;
2075
- font-weight: 400;
2076
- }
2077
- main .api-details-expanded .icon-left {
2078
- width: 0.875rem;
2079
- height: 0.875rem;
2080
- }
2081
- main .api-details-expanded .table-wrapper {
2082
- overflow-x: auto;
2083
- border: 1px solid #e5e7eb;
2084
- border-radius: 0.8rem;
2085
- background: white;
2086
- border: 1px #bbbec5 solid;
2087
- margin-bottom: 2rem;
2088
- }
2089
- main .api-details-expanded .param-table {
2090
- width: 100%;
2091
- border-collapse: collapse;
2092
- font-size: 0.875rem;
2093
- }
2094
- main .api-details-expanded .param-table .desc-cell {
2095
- position: relative;
2096
- max-width: 20rem;
2097
- padding-right: 1.5rem;
2098
- }
2099
- main .api-details-expanded .param-table .desc-text {
2100
- white-space: nowrap;
2101
- overflow: hidden;
2102
- text-overflow: ellipsis;
2103
- max-width: 90%;
2104
- }
2105
- main .api-details-expanded .param-table .desc-text.expanded {
2106
- white-space: normal;
2107
- }
2108
- main .api-details-expanded .param-table .desc-toggle {
2109
- position: absolute;
2110
- right: 0.5rem;
2111
- top: 50%;
2112
- transform: translateY(-50%);
2113
- background: none;
2114
- border: none;
2115
- cursor: pointer;
2116
- }
2117
- main .api-details-expanded .param-table .desc-toggle svg {
2118
- transition: transform 0.2s ease;
2119
- }
2120
- main .api-details-expanded .param-table .desc-toggle .rotated {
2121
- transform: rotate(180deg);
2122
- }
2123
- main .api-details-expanded .param-table th,
2124
- main .api-details-expanded .param-table td {
2125
- padding: 10px;
2126
- border-bottom: 1px solid #bbbec5;
2127
- text-align: left;
2128
- color: #3b3f46;
2129
- }
2130
- main .api-details-expanded .param-table th {
2131
- background: #edf1fb;
2132
- font-weight: 600;
2133
- }
2134
- main .api-details-expanded .response-status {
2135
- display: flex;
2136
- align-items: center;
2137
- justify-content: end;
2138
- gap: 0.375rem;
2139
- font-size: 0.875rem;
2140
- color: green;
2141
- margin-bottom: 0.75rem;
2142
- }
2143
- main .api-details-expanded .response-drop {
2144
- width: 10rem;
2145
- justify-content: end;
2146
- }
2147
- main .api-details-expanded .response-drop-test {
2148
- justify-content: end !important;
2149
- align-items: end !important;
2150
- align-content: end !important;
1904
+ .apiDocsAside .codeboxSection :global(.multiSelectGroup) .statusCodeOptionContainer .statusCodeOptionCircle {
1905
+ width: 0.625rem;
1906
+ min-width: 0.625rem;
1907
+ aspect-ratio: 1/1;
1908
+ border-radius: 100%;
2151
1909
  }
2152
- main .api-details-expanded .copy-icon {
2153
- cursor: pointer;
2154
- width: 1.5rem;
2155
- height: 1.5rem;
1910
+ .apiDocsAside :global(.multiSelectGroup .selectDisplay),
1911
+ .apiDocsAside :global(.multiSelectGroup) {
1912
+ width: 6.25rem !important;
1913
+ height: 1.5rem !important;
1914
+ }
1915
+ .apiDocsAside :global(.multiSelectGroup .selectDisplay .displayValueContainer .iconsContainer) {
1916
+ padding-right: 0.75rem !important;
2156
1917
  }.api-details-page {
2157
1918
  padding: 2rem;
2158
1919
  }
@@ -2404,4 +2165,243 @@ main .api-details-expanded .copy-icon {
2404
2165
  font-size: 0.875rem;
2405
2166
  color: #4d75d9;
2406
2167
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2509803922);
2168
+ }main {
2169
+ padding: 2rem;
2170
+ }
2171
+ main .api-details-expanded .api-title {
2172
+ font-size: 3rem;
2173
+ font-weight: 600;
2174
+ letter-spacing: -1px;
2175
+ line-height: 3.5rem;
2176
+ margin-bottom: 0.752rem;
2177
+ color: #4d75d9;
2178
+ }
2179
+ main .api-details-expanded .test-button {
2180
+ margin-top: 1.25rem;
2181
+ margin-bottom: 3.125rem;
2182
+ display: flex;
2183
+ align-items: center;
2184
+ justify-content: space-between;
2185
+ gap: 0.5rem;
2186
+ }
2187
+ main .api-details-expanded .test-button .back-button {
2188
+ display: inline-flex;
2189
+ align-items: center;
2190
+ justify-content: center;
2191
+ width: 2.75rem;
2192
+ height: 2.75rem;
2193
+ border: 1px solid #3b82f6;
2194
+ border-radius: 0.5rem;
2195
+ background-color: white;
2196
+ color: #3b82f6;
2197
+ cursor: pointer;
2198
+ transition: background-color 0.2s ease;
2199
+ }
2200
+ main .api-details-expanded .test-button .back-button svg {
2201
+ stroke-width: 2;
2202
+ }
2203
+ main .api-details-expanded .test-button .back-button:hover {
2204
+ background-color: #eff6ff;
2205
+ }
2206
+ main .api-details-expanded .test-button .disabled {
2207
+ background: #f0f1f2;
2208
+ color: #9ca1aa;
2209
+ cursor: not-allowed;
2210
+ padding: 0.375rem 1rem;
2211
+ border-radius: 6px;
2212
+ font-size: 14px;
2213
+ border: 1px #b8bfca solid;
2214
+ width: 7.56rem;
2215
+ height: 2.75rem;
2216
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
2217
+ }
2218
+ main .api-details-expanded h3 {
2219
+ color: #616874;
2220
+ font-size: 1.125rem;
2221
+ font-weight: 400;
2222
+ letter-spacing: 0px;
2223
+ line-height: 1.5rem;
2224
+ margin-top: 1.5rem;
2225
+ margin-bottom: 0.5rem;
2226
+ }
2227
+ main .api-details-expanded .url-box {
2228
+ height: 1.75rem;
2229
+ justify-content: space-between;
2230
+ background-color: #edf1fb !important;
2231
+ }
2232
+ main .api-details-expanded .url-text {
2233
+ color: #3b3f46;
2234
+ font-size: 1.25rem;
2235
+ letter-spacing: 0px;
2236
+ line-height: 1.75rem;
2237
+ }
2238
+ main .api-details-expanded .method-label {
2239
+ font-size: 0.924rem;
2240
+ font-weight: 600;
2241
+ padding: 0.125rem 0.5rem;
2242
+ border-radius: 0.375rem;
2243
+ text-transform: uppercase;
2244
+ color: #3aaa35;
2245
+ text-decoration: underline;
2246
+ }
2247
+ main .api-details-expanded .method-label.get {
2248
+ color: #3a6cd1;
2249
+ }
2250
+ main .api-details-expanded .method-label.post {
2251
+ color: #3aaa35;
2252
+ }
2253
+ main .api-details-expanded .method-label.put {
2254
+ color: #faad14;
2255
+ }
2256
+ main .api-details-expanded .method-label.patch {
2257
+ color: #58e2c2;
2258
+ }
2259
+ main .api-details-expanded .method-label.delete {
2260
+ color: #da3f3f;
2261
+ }
2262
+ main .api-details-expanded .method-label.head {
2263
+ color: #9461c9;
2264
+ }
2265
+ main .api-details-expanded .method-label.trace {
2266
+ color: #ffa28f;
2267
+ }
2268
+ main .api-details-expanded .method-label.options {
2269
+ color: #495d97;
2270
+ }
2271
+ main .api-details-expanded .url-box {
2272
+ background-color: #f3f4f6;
2273
+ padding: 0.375rem 0.75rem;
2274
+ border-radius: 0.5rem;
2275
+ display: flex;
2276
+ align-items: center;
2277
+ gap: 0.5rem;
2278
+ font-size: 14px;
2279
+ flex: 1;
2280
+ height: 2.8rem;
2281
+ margin-bottom: 1.5rem;
2282
+ }
2283
+ main .api-details-expanded .api-desc {
2284
+ color: #6b7280;
2285
+ margin: 1.5rem 0;
2286
+ }
2287
+ main .api-details-expanded .head-table-label {
2288
+ color: #3b3f46 !important;
2289
+ letter-spacing: 0px;
2290
+ font-weight: 400 !important;
2291
+ line-height: 1rem;
2292
+ }
2293
+ main .api-details-expanded .request-tabs {
2294
+ display: flex;
2295
+ gap: 0.5rem;
2296
+ margin-bottom: 0.75rem;
2297
+ }
2298
+ main .api-details-expanded .tab {
2299
+ background: white;
2300
+ border: 1px solid #d1d3d8;
2301
+ padding: 0.375rem 0.75rem;
2302
+ border-radius: 6px;
2303
+ cursor: pointer;
2304
+ font-size: 0.875rem;
2305
+ color: #000000;
2306
+ display: flex;
2307
+ align-items: center;
2308
+ gap: 0.375rem;
2309
+ }
2310
+ main .api-details-expanded .tab {
2311
+ background: white;
2312
+ border: 1px solid #d1d3d8;
2313
+ padding: 0.375rem 0.75rem;
2314
+ border-radius: 6px;
2315
+ cursor: pointer;
2316
+ font-size: 0.875rem;
2317
+ color: #000000;
2318
+ display: flex;
2319
+ align-items: center;
2320
+ gap: 0.375rem;
2321
+ }
2322
+ main .api-details-expanded .tab.active {
2323
+ background-color: #e5edff;
2324
+ border-color: #4d75d9;
2325
+ color: #000000;
2326
+ font-weight: 400;
2327
+ }
2328
+ main .api-details-expanded .icon-left {
2329
+ width: 0.875rem;
2330
+ height: 0.875rem;
2331
+ }
2332
+ main .api-details-expanded .table-wrapper {
2333
+ overflow-x: auto;
2334
+ border: 1px solid #e5e7eb;
2335
+ border-radius: 0.8rem;
2336
+ background: white;
2337
+ border: 1px #bbbec5 solid;
2338
+ margin-bottom: 2rem;
2339
+ }
2340
+ main .api-details-expanded .param-table {
2341
+ width: 100%;
2342
+ border-collapse: collapse;
2343
+ font-size: 0.875rem;
2344
+ }
2345
+ main .api-details-expanded .param-table .desc-cell {
2346
+ position: relative;
2347
+ max-width: 20rem;
2348
+ padding-right: 1.5rem;
2349
+ }
2350
+ main .api-details-expanded .param-table .desc-text {
2351
+ white-space: nowrap;
2352
+ overflow: hidden;
2353
+ text-overflow: ellipsis;
2354
+ max-width: 90%;
2355
+ }
2356
+ main .api-details-expanded .param-table .desc-text.expanded {
2357
+ white-space: normal;
2358
+ }
2359
+ main .api-details-expanded .param-table .desc-toggle {
2360
+ position: absolute;
2361
+ right: 0.5rem;
2362
+ top: 50%;
2363
+ transform: translateY(-50%);
2364
+ background: none;
2365
+ border: none;
2366
+ cursor: pointer;
2367
+ }
2368
+ main .api-details-expanded .param-table .desc-toggle svg {
2369
+ transition: transform 0.2s ease;
2370
+ }
2371
+ main .api-details-expanded .param-table .desc-toggle .rotated {
2372
+ transform: rotate(180deg);
2373
+ }
2374
+ main .api-details-expanded .param-table th,
2375
+ main .api-details-expanded .param-table td {
2376
+ padding: 10px;
2377
+ border-bottom: 1px solid #bbbec5;
2378
+ text-align: left;
2379
+ color: #3b3f46;
2380
+ }
2381
+ main .api-details-expanded .param-table th {
2382
+ background: #edf1fb;
2383
+ font-weight: 600;
2384
+ }
2385
+ main .api-details-expanded .response-status {
2386
+ display: flex;
2387
+ align-items: center;
2388
+ justify-content: end;
2389
+ gap: 0.375rem;
2390
+ font-size: 0.875rem;
2391
+ color: green;
2392
+ margin-bottom: 0.75rem;
2393
+ }
2394
+ main .api-details-expanded .response-drop {
2395
+ width: 10rem;
2396
+ justify-content: end;
2397
+ }
2398
+ main .api-details-expanded .response-drop-test {
2399
+ justify-content: end !important;
2400
+ align-items: end !important;
2401
+ align-content: end !important;
2402
+ }
2403
+ main .api-details-expanded .copy-icon {
2404
+ cursor: pointer;
2405
+ width: 1.5rem;
2406
+ height: 1.5rem;
2407
2407
  }