@digi-frontend/dgate-api-documentation 1.0.53 → 1.0.55

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 (31) hide show
  1. package/dist/_virtual/index3.js +1 -1
  2. package/dist/_virtual/index4.js +1 -1
  3. package/dist/_virtual/index5.js +1 -1
  4. package/dist/node_modules/toposort/index.js +1 -1
  5. package/dist/node_modules/yup/index.esm.js +1 -1
  6. package/dist/src/components/MethodAccordion/MethodAccordion.js +1 -1
  7. package/dist/src/components/MethodAccordion/MethodAccordion.js.map +1 -1
  8. package/dist/src/helpers/docs.helper.js.map +1 -1
  9. package/dist/src/layout/docsComponents/DocsContent/DocsContent.js.map +1 -1
  10. package/dist/src/layout/docsComponents/DocsContent/EndpointPage/index.js.map +1 -1
  11. package/dist/src/layout/docsComponents/DocsContent/TagPage/index.js +1 -1
  12. package/dist/src/layout/docsComponents/DocsContent/TagPage/index.js.map +1 -1
  13. package/dist/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.js +1 -1
  14. package/dist/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.js.map +1 -1
  15. package/dist/src/layout/docsLayout.js +1 -1
  16. package/dist/src/layout/docsLayout.js.map +1 -1
  17. package/dist/styles.css +482 -482
  18. package/dist/types/layout/docsComponents/DocsContent/DocsContent.d.ts +5 -0
  19. package/dist/types/layout/docsComponents/DocsContent/EndpointPage/index.d.ts +2 -1
  20. package/dist/types/layout/docsComponents/DocsContent/TagPage/index.d.ts +6 -5
  21. package/dist/types/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.d.ts +4 -2
  22. package/dist/types/layout/docsLayout.d.ts +4 -3
  23. package/package.json +3 -1
  24. package/rollup.config.js +2 -2
  25. package/src/components/MethodAccordion/MethodAccordion.tsx +5 -3
  26. package/src/helpers/docs.helper.ts +1 -0
  27. package/src/layout/docsComponents/DocsContent/DocsContent.tsx +6 -4
  28. package/src/layout/docsComponents/DocsContent/EndpointPage/index.tsx +13 -11
  29. package/src/layout/docsComponents/DocsContent/TagPage/index.tsx +58 -4
  30. package/src/layout/docsComponents/DocsSideMenuTree/DocsSideMenuTree.tsx +11 -33
  31. package/src/layout/docsLayout.tsx +99 -21
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,218 +508,77 @@
367
508
  }
368
509
  .methodAccordion.readOnly .methodSummaryContainer .methodExpandArrowContainer {
369
510
  background-color: #ebecf2;
370
- }.containerTitleDrawer {
371
- height: 64px;
372
- min-height: 64px;
511
+ }.tooltip-custom-wrapper {
373
512
  display: flex;
374
- flex-direction: row;
375
- justify-content: space-between;
376
- align-items: center;
377
- background-color: #f1f2f6;
378
- padding: 0 30px 0 30px;
379
- width: 100%;
380
- }
381
- .containerTitleDrawer span {
382
- color: #12131a;
383
- font-weight: 600;
384
- font-size: 18px;
385
- line-height: 25px;
386
- letter-spacing: 0em;
387
513
  }
388
- .containerTitleDrawer svg path {
389
- stroke: #000 !important;
514
+
515
+ [data-tippy-root] {
516
+ z-index: 2 !important;
390
517
  }
391
- .containerTitleDrawer .closeIcon {
392
- cursor: pointer;
393
- }.apiInfoForm {
394
- display: grid;
395
- padding: 1.25rem 1.875rem;
396
- gap: 1.25rem;
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;
397
530
  }
398
- .apiInfoForm .paramsTable .paramDescContainer {
399
- display: flex;
531
+ .tippy-box.function .tippy-content {
532
+ background-color: #fff !important;
533
+ color: #000 !important;
400
534
  }
401
- .apiInfoForm .paramsTable .paramDescContainer .paramDescContainer_separator {
402
- height: inherit;
403
- width: 1px;
404
- background-color: #d8dae5;
535
+ .tippy-box.function[data-placement] > .tippy-arrow:before {
536
+ color: #fff !important;
405
537
  }
406
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn) svg path {
407
- stroke-width: 0.1;
538
+ .tippy-box.info .tippy-arrow {
539
+ color: #202f5b;
408
540
  }
409
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn {
410
- padding: 0;
411
- margin-right: 1.25rem;
541
+ .tippy-box.success {
542
+ border-radius: 1.875rem;
543
+ background-color: #3aaa35;
544
+ padding-inline: 0.625rem;
412
545
  }
413
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) {
414
- display: flex;
415
- align-items: center;
416
- padding: 0;
546
+ .tippy-box .tippy-content {
547
+ text-align: justify;
417
548
  font-size: 0.875rem;
549
+ line-height: 1.25rem;
550
+ padding: 0.625rem;
418
551
  }
419
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
420
- margin-block: auto;
552
+ .tippy-box .tippy-arrow {
553
+ position: relative;
554
+ width: 1rem;
555
+ height: 1rem;
421
556
  }
422
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg path {
423
- fill: #12131a;
557
+ .tippy-box[data-placement^=top] .tippy-arrow:before {
558
+ bottom: -0.4375rem;
559
+ border-width: 0.5rem 0.5rem 0 !important;
424
560
  }
425
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn {
426
- padding: 0;
427
- border-width: 0 !important;
561
+ .tippy-box[data-placement^=right] .tippy-arrow:before {
562
+ left: -0.4375rem;
563
+ border-width: 0.5rem 0.5rem 0.5rem 0 !important;
428
564
  }
429
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
430
- margin-block: auto;
565
+ .tippy-box[data-placement^=bottom] .tippy-arrow:before {
566
+ top: -0.4375rem;
567
+ border-width: 0 0.5rem 0.5rem !important;
431
568
  }
432
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg {
433
- width: 1.125rem;
569
+ .tippy-box[data-placement^=left] .tippy-arrow:before {
570
+ right: -0.4375rem;
571
+ border-width: 0.5rem 0 0.5rem 0.5rem !important;
434
572
  }
435
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) {
436
- margin-block: auto;
573
+ .tippy-box[data-placement^=bottom-start] .tippy-arrow {
574
+ transform: translate(0.937rem, 0) !important;
437
575
  }
438
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg {
439
- width: 1.125rem;
576
+ .tippy-box[data-placement^=bottom-end] .tippy-arrow {
577
+ margin-left: calc(100% - 1.937rem);
578
+ transform: translate(0, 0) !important;
440
579
  }
441
- .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn):not(:global(.disabled)):global(.success) :global(.endBtnIcon) svg path {
442
- fill: #3aaa35;
443
- }
444
- .apiInfoForm .paramsTable .externalDocsLink {
445
- font-size: 0.875rem;
446
- line-height: 1.25rem;
447
- cursor: pointer;
448
- align-self: center;
449
- margin-right: 2rem;
450
- }
451
- .apiInfoForm .paramsTable .editExternalDocs {
452
- display: flex;
453
- align-items: center;
454
- padding-right: 0.625rem;
455
- }
456
- .apiInfoForm .paramsTable .editExternalDocs svg {
457
- cursor: pointer;
458
- }
459
- .apiInfoForm .paramsTable .editExternalDocs svg path {
460
- fill: #12131a;
461
- }
462
- .apiInfoForm .paramsTable .editDescTooltipContent {
463
- display: flex;
464
- flex-direction: column;
465
- gap: 0.625rem;
466
- padding-bottom: 0.625rem;
467
- }
468
- .apiInfoForm .paramsTable .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
469
- margin-inline: 0.625rem;
470
- }
471
- .apiInfoForm .paramsTable .editDescTooltipContent .editDescTooltipContent_header {
472
- font-weight: 600;
473
- font-size: 0.875rem;
474
- line-height: 1.25rem;
475
- padding: 0.75rem 1.25rem;
476
- border-bottom: 1px solid #d8dae5;
477
- }
478
- .apiInfoForm .paramsTable :global(.requiredParam) :global(.headContainer)::after {
479
- content: "*";
480
- color: red;
481
- transform: translateX(0.125rem);
482
- }
483
- .apiInfoForm .apiDocRow {
484
- display: grid;
485
- grid-template-columns: 1fr 1fr;
486
- gap: 1.25rem;
487
- }
488
- .apiInfoForm .apiInfoForm_tagsChips {
489
- margin-top: -1.25rem;
490
- }
491
- .apiInfoForm .editDescTooltipContent {
492
- display: flex;
493
- flex-direction: column;
494
- gap: 0.625rem;
495
- padding-bottom: 0.625rem;
496
- }
497
- .apiInfoForm .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
498
- margin-inline: 0.625rem;
499
- }
500
- .apiInfoForm .editDescTooltipContent .editDescTooltipContent_header {
501
- font-weight: 600;
502
- font-size: 0.875rem;
503
- line-height: 1.25rem;
504
- padding: 0.75rem 1.25rem;
505
- border-bottom: 1px solid #d8dae5;
506
- }
507
- .apiInfoForm :global(.requiredParam) :global(.headContainer)::after {
508
- content: "*";
509
- color: red;
510
- transform: translateX(0.125rem);
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;
580
+ .tippy-box[data-placement^=top-start] .tippy-arrow {
581
+ transform: translate(0.937rem, 0) !important;
582
582
  }
583
583
  .tippy-box[data-placement^=top-end] .tippy-arrow {
584
584
  transform: translate(0.937rem, 0) !important;
@@ -1104,6 +1104,111 @@
1104
1104
  --alert-natural: #c4d3f1;
1105
1105
  }
1106
1106
 
1107
+ .drawerItemContainer {
1108
+ display: flex;
1109
+ flex-direction: column;
1110
+ }
1111
+ .drawerItemContainer .title {
1112
+ color: #000;
1113
+ font-weight: 600;
1114
+ font-size: 24px;
1115
+ line-height: 35px;
1116
+ margin-bottom: 3px;
1117
+ margin-top: 1.5rem;
1118
+ }
1119
+ .drawerItemContainer .text {
1120
+ color: #000;
1121
+ font-weight: 400;
1122
+ font-size: 24px;
1123
+ line-height: 25px;
1124
+ }
1125
+ .drawerItemContainer .color-green {
1126
+ color: var(--color-success);
1127
+ }
1128
+ .drawerItemContainer .color-red {
1129
+ color: var(--color-error);
1130
+ }:root {
1131
+ --white: #fff;
1132
+ --Gray-5: #f1f2f6;
1133
+ --Gray-10: #ebecf2;
1134
+ --Gray-20: #d8dae5;
1135
+ --Gray-30: #babdcc;
1136
+ --Gray-40: #9a9eb2;
1137
+ --Gray-50: #828699;
1138
+ --Gray-60: #696c80;
1139
+ --Gray-100: #12131a;
1140
+ --black: #000;
1141
+ --primary-static: #4d75d8;
1142
+ --primary-hover: #7c9bea;
1143
+ --primary-active: #2c4fa4;
1144
+ --primary-disabled: #9a9eb2;
1145
+ --secondary-static: #40e0d0;
1146
+ --secondary-hover: #9efcf2;
1147
+ --secondary-active: #2fa599;
1148
+ --error-static: #da3f3f;
1149
+ --error-hover: #e75d5d;
1150
+ --error-active: #bb3232;
1151
+ --success-static: #3aaa35;
1152
+ --success-hover: #5cda56;
1153
+ --success-active: #2a8a25;
1154
+ --info-static: #c6c6c6;
1155
+ --info-hover: #e4e4e4;
1156
+ --info-active: #979797;
1157
+ --warning-static: #faad14;
1158
+ --warning-hover: #f9be4a;
1159
+ --warning-active: #db9711;
1160
+ --action-static: #142452;
1161
+ --action-hover: #21387d;
1162
+ --action-active: #000000;
1163
+ --color-info-primary: #3a6cd1;
1164
+ --primary-font-color: #142452;
1165
+ --placeholder-font-color: #babdcc;
1166
+ --warning-font-color: #ce2828;
1167
+ --alert-error: #da3f3f;
1168
+ --alert-light-error: #f4c5c5;
1169
+ --alert-success: #3aaa35;
1170
+ --alert-light-success: #c4e5c2;
1171
+ --alert-info: #8eaaf1;
1172
+ --alert-light-info: #c4d3f1;
1173
+ --alert-warning: #faad14;
1174
+ --alert-light-warning: #fde6b8;
1175
+ --border-focus: #3a6cd1;
1176
+ --tooltip-background-color: #202f5b;
1177
+ --text-color-primary: #142452;
1178
+ --text-color-secondary: #ffff;
1179
+ --text-color-neutral: #828699;
1180
+ --text-color-tertiary: #808080;
1181
+ --text-color-note: #242424;
1182
+ --text-color-quaternary: #142452;
1183
+ --text-color-disabled: #ffff;
1184
+ --background-color-white-primary: #fff;
1185
+ --background-color-light-primary: #8eaaf1;
1186
+ --background-color-white-secondary: #fff;
1187
+ --background-color-primary-dark: #142452;
1188
+ --background-color-gray-5: #f1f2f6;
1189
+ --background-color-gray-30: #ebecf2;
1190
+ --background-color-tertiary-light: #2c4fa4;
1191
+ --background-color-gray-10: #f1f2f6;
1192
+ --background-color-gray-40: #ebecf2;
1193
+ --background-color-light-blue: #dfe7f8;
1194
+ --border-color-primary: #babdcc;
1195
+ --border-color-secondary: #d8dae5;
1196
+ --border-color-neutral: #ebecf2;
1197
+ --border-color-tertiary: #ebecf2;
1198
+ --border-color-gray: #ebecf2;
1199
+ --border-color-hover: #142452;
1200
+ --border-color-active: #3a6cd1;
1201
+ --icon-color-main: #142452;
1202
+ --icon-color-secondary: #000;
1203
+ --icon-color-quaternary: #babdcc;
1204
+ --icon-color-disabled: #9a9eb2;
1205
+ --link-btn-primary-color: #3a6cd1;
1206
+ --button-color-static: #4d75d8;
1207
+ --button-color-hover: #7c9bea;
1208
+ --button-color-active: #2c4fa4;
1209
+ --alert-natural: #c4d3f1;
1210
+ }
1211
+
1107
1212
  #EnumButton {
1108
1213
  display: flex;
1109
1214
  justify-content: center;
@@ -1291,111 +1396,160 @@ div.endBtnIcon {
1291
1396
  .tableSectionContainer .descArrow path,
1292
1397
  .tableSectionContainer .defaultSortArrow path {
1293
1398
  fill: var(--Gray-50);
1294
- }:root {
1295
- --white: #fff;
1296
- --Gray-5: #f1f2f6;
1297
- --Gray-10: #ebecf2;
1298
- --Gray-20: #d8dae5;
1299
- --Gray-30: #babdcc;
1300
- --Gray-40: #9a9eb2;
1301
- --Gray-50: #828699;
1302
- --Gray-60: #696c80;
1303
- --Gray-100: #12131a;
1304
- --black: #000;
1305
- --primary-static: #4d75d8;
1306
- --primary-hover: #7c9bea;
1307
- --primary-active: #2c4fa4;
1308
- --primary-disabled: #9a9eb2;
1309
- --secondary-static: #40e0d0;
1310
- --secondary-hover: #9efcf2;
1311
- --secondary-active: #2fa599;
1312
- --error-static: #da3f3f;
1313
- --error-hover: #e75d5d;
1314
- --error-active: #bb3232;
1315
- --success-static: #3aaa35;
1316
- --success-hover: #5cda56;
1317
- --success-active: #2a8a25;
1318
- --info-static: #c6c6c6;
1319
- --info-hover: #e4e4e4;
1320
- --info-active: #979797;
1321
- --warning-static: #faad14;
1322
- --warning-hover: #f9be4a;
1323
- --warning-active: #db9711;
1324
- --action-static: #142452;
1325
- --action-hover: #21387d;
1326
- --action-active: #000000;
1327
- --color-info-primary: #3a6cd1;
1328
- --primary-font-color: #142452;
1329
- --placeholder-font-color: #babdcc;
1330
- --warning-font-color: #ce2828;
1331
- --alert-error: #da3f3f;
1332
- --alert-light-error: #f4c5c5;
1333
- --alert-success: #3aaa35;
1334
- --alert-light-success: #c4e5c2;
1335
- --alert-info: #8eaaf1;
1336
- --alert-light-info: #c4d3f1;
1337
- --alert-warning: #faad14;
1338
- --alert-light-warning: #fde6b8;
1339
- --border-focus: #3a6cd1;
1340
- --tooltip-background-color: #202f5b;
1341
- --text-color-primary: #142452;
1342
- --text-color-secondary: #ffff;
1343
- --text-color-neutral: #828699;
1344
- --text-color-tertiary: #808080;
1345
- --text-color-note: #242424;
1346
- --text-color-quaternary: #142452;
1347
- --text-color-disabled: #ffff;
1348
- --background-color-white-primary: #fff;
1349
- --background-color-light-primary: #8eaaf1;
1350
- --background-color-white-secondary: #fff;
1351
- --background-color-primary-dark: #142452;
1352
- --background-color-gray-5: #f1f2f6;
1353
- --background-color-gray-30: #ebecf2;
1354
- --background-color-tertiary-light: #2c4fa4;
1355
- --background-color-gray-10: #f1f2f6;
1356
- --background-color-gray-40: #ebecf2;
1357
- --background-color-light-blue: #dfe7f8;
1358
- --border-color-primary: #babdcc;
1359
- --border-color-secondary: #d8dae5;
1360
- --border-color-neutral: #ebecf2;
1361
- --border-color-tertiary: #ebecf2;
1362
- --border-color-gray: #ebecf2;
1363
- --border-color-hover: #142452;
1364
- --border-color-active: #3a6cd1;
1365
- --icon-color-main: #142452;
1366
- --icon-color-secondary: #000;
1367
- --icon-color-quaternary: #babdcc;
1368
- --icon-color-disabled: #9a9eb2;
1369
- --link-btn-primary-color: #3a6cd1;
1370
- --button-color-static: #4d75d8;
1371
- --button-color-hover: #7c9bea;
1372
- --button-color-active: #2c4fa4;
1373
- --alert-natural: #c4d3f1;
1399
+ }.api-docs-api-tree {
1400
+ width: 100%;
1401
+ max-width: 12.5rem;
1402
+ padding: 3rem 1.25rem;
1403
+ box-sizing: border-box;
1374
1404
  }
1375
-
1376
- .drawerItemContainer {
1405
+ .api-docs-api-tree > * {
1406
+ box-sizing: border-box;
1407
+ }
1408
+ .api-docs-api-tree__section-header {
1377
1409
  display: flex;
1378
- flex-direction: column;
1410
+ align-items: center;
1411
+ gap: 0.25rem;
1412
+ padding-inline: 0.5rem;
1413
+ cursor: pointer;
1414
+ user-select: none;
1415
+ height: 2.5rem;
1379
1416
  }
1380
- .drawerItemContainer .title {
1381
- color: #000;
1382
- font-weight: 600;
1383
- font-size: 24px;
1384
- line-height: 35px;
1385
- margin-bottom: 3px;
1386
- margin-top: 1.5rem;
1417
+ .api-docs-api-tree__section-header:hover {
1418
+ background-color: #f3f4f6;
1387
1419
  }
1388
- .drawerItemContainer .text {
1420
+ .api-docs-api-tree__section-header svg:first-child path {
1421
+ stroke: #bbbec5;
1422
+ }
1423
+ .api-docs-api-tree__section-title {
1424
+ font-size: 0.75rem;
1425
+ line-height: 0.875rem;
1426
+ font-weight: 500;
1389
1427
  color: #000;
1428
+ margin-left: 0.25rem;
1429
+ }
1430
+ .api-docs-api-tree__section__overview {
1431
+ display: flex;
1432
+ align-items: center;
1433
+ gap: 0.5rem;
1434
+ padding: 0.5rem 1.75rem;
1435
+ border-radius: 0.25rem;
1436
+ cursor: pointer;
1437
+ }
1438
+ .api-docs-api-tree__section__overview:hover {
1439
+ background-color: #f3f4f6;
1440
+ }
1441
+ .api-docs-api-tree__section__overview span {
1442
+ font-size: 0.75rem;
1443
+ line-height: 0.875rem;
1444
+ color: #000000;
1445
+ }
1446
+ .api-docs-api-tree__section__overview[data-active=true] {
1447
+ background-color: #f0f1f2;
1448
+ }
1449
+ .api-docs-api-tree__section__endpoints {
1450
+ display: flex;
1451
+ align-items: center;
1452
+ height: 1.5rem;
1453
+ gap: 0.5rem;
1454
+ border-radius: 0.25rem;
1455
+ padding-inline: 1.75rem;
1456
+ cursor: pointer;
1457
+ }
1458
+ .api-docs-api-tree__section__endpoints span {
1459
+ font-size: 0.75rem;
1460
+ line-height: 0.875rem;
1461
+ color: #000000;
1462
+ }
1463
+ .api-docs-api-tree__section__endpoints[data-active=true] {
1464
+ background-color: #f0f1f2;
1465
+ }
1466
+ .api-docs-api-tree__section[data-active=true] .api-docs-api-tree__section-title {
1467
+ color: #616874;
1468
+ }
1469
+ .api-docs-api-tree__endpoints {
1470
+ display: flex;
1471
+ flex-direction: column;
1472
+ align-items: start;
1473
+ gap: 0.5rem;
1474
+ border-radius: 0.25rem;
1475
+ cursor: pointer;
1476
+ }
1477
+ .api-docs-api-tree__endpoints span {
1478
+ font-size: 0.75rem;
1479
+ line-height: 0.875rem;
1480
+ color: #000000;
1481
+ }
1482
+ .api-docs-api-tree__endpoints[data-active=true] {
1483
+ background-color: #f0f1f2;
1484
+ }
1485
+ .api-docs-api-tree__subsection-header {
1486
+ height: 2rem;
1487
+ display: flex;
1488
+ align-items: center;
1489
+ gap: 0.875rem;
1490
+ padding-inline: 0.5rem;
1491
+ cursor: pointer;
1492
+ user-select: none;
1493
+ }
1494
+ .api-docs-api-tree__subsection-header svg {
1495
+ color: #6b7280;
1496
+ }
1497
+ .api-docs-api-tree__subsection-title {
1498
+ font-size: 0.75rem;
1499
+ line-height: 0.875rem;
1500
+ color: #616874;
1501
+ }
1502
+ .api-docs-api-tree__endpoint {
1503
+ display: flex;
1504
+ align-items: center;
1505
+ gap: 0.25rem;
1506
+ padding: 0.5rem 0.75rem;
1507
+ text-transform: capitalize;
1508
+ width: 100%;
1509
+ cursor: pointer;
1510
+ }
1511
+ .api-docs-api-tree__endpoint[data-active=true] {
1512
+ background-color: #f0f1f2;
1513
+ }
1514
+ .api-docs-api-tree__endpoint:hover {
1515
+ background-color: #f3f4f6;
1516
+ }
1517
+ .api-docs-api-tree__endpoint-method {
1518
+ font-size: 0.75rem;
1519
+ line-height: 0.875rem;
1390
1520
  font-weight: 400;
1391
- font-size: 24px;
1392
- line-height: 25px;
1521
+ text-align: start;
1393
1522
  }
1394
- .drawerItemContainer .color-green {
1395
- color: var(--color-success);
1523
+ .api-docs-api-tree__endpoint-name {
1524
+ font-size: 0.75rem;
1525
+ line-height: 0.875rem;
1526
+ color: #3b3f46;
1527
+ display: -webkit-box;
1528
+ -webkit-box-orient: vertical;
1529
+ -webkit-line-clamp: 1;
1530
+ overflow: hidden;
1531
+ text-overflow: ellipsis;
1396
1532
  }
1397
- .drawerItemContainer .color-red {
1398
- color: var(--color-error);
1533
+ .api-docs-api-tree__endpoint--get .api-docs-api-tree__endpoint-method {
1534
+ color: #3a6cd1;
1535
+ }
1536
+ .api-docs-api-tree__endpoint--post .api-docs-api-tree__endpoint-method {
1537
+ color: #3aaa35;
1538
+ }
1539
+ .api-docs-api-tree__endpoint--put .api-docs-api-tree__endpoint-method {
1540
+ color: #faad14;
1541
+ }
1542
+ .api-docs-api-tree__endpoint--delete .api-docs-api-tree__endpoint-method {
1543
+ color: #da3f3f;
1544
+ }
1545
+ .api-docs-api-tree__endpoint--option .api-docs-api-tree__endpoint-method {
1546
+ color: #495d97;
1547
+ }
1548
+ .api-docs-api-tree__endpoint--head .api-docs-api-tree__endpoint-method {
1549
+ color: #9461c9;
1550
+ }
1551
+ .api-docs-api-tree__endpoint--patch .api-docs-api-tree__endpoint-method {
1552
+ color: #58e2c2;
1399
1553
  }.api_docs_header {
1400
1554
  height: 2.625rem;
1401
1555
  background-color: #f0f1f2;
@@ -1635,196 +1789,6 @@ div.endBtnIcon {
1635
1789
  opacity: 1 !important;
1636
1790
  backdrop-filter: blur(0.5rem);
1637
1791
  background-color: rgba(0, 0, 0, 0.281) !important;
1638
- }.api-docs-api-tree {
1639
- width: 100%;
1640
- max-width: 12.5rem;
1641
- padding: 3rem 1.25rem;
1642
- box-sizing: border-box;
1643
- }
1644
- .api-docs-api-tree > * {
1645
- box-sizing: border-box;
1646
- }
1647
- .api-docs-api-tree__section-header {
1648
- display: flex;
1649
- align-items: center;
1650
- gap: 0.25rem;
1651
- padding-inline: 0.5rem;
1652
- cursor: pointer;
1653
- user-select: none;
1654
- height: 2.5rem;
1655
- }
1656
- .api-docs-api-tree__section-header:hover {
1657
- background-color: #f3f4f6;
1658
- }
1659
- .api-docs-api-tree__section-header svg:first-child path {
1660
- stroke: #bbbec5;
1661
- }
1662
- .api-docs-api-tree__section-title {
1663
- font-size: 0.75rem;
1664
- line-height: 0.875rem;
1665
- font-weight: 500;
1666
- color: #000;
1667
- margin-left: 0.25rem;
1668
- }
1669
- .api-docs-api-tree__section__overview {
1670
- display: flex;
1671
- align-items: center;
1672
- gap: 0.5rem;
1673
- padding: 0.5rem 1.75rem;
1674
- border-radius: 0.25rem;
1675
- cursor: pointer;
1676
- }
1677
- .api-docs-api-tree__section__overview:hover {
1678
- background-color: #f3f4f6;
1679
- }
1680
- .api-docs-api-tree__section__overview span {
1681
- font-size: 0.75rem;
1682
- line-height: 0.875rem;
1683
- color: #000000;
1684
- }
1685
- .api-docs-api-tree__section__overview[data-active=true] {
1686
- background-color: #f0f1f2;
1687
- }
1688
- .api-docs-api-tree__section__endpoints {
1689
- display: flex;
1690
- align-items: center;
1691
- height: 1.5rem;
1692
- gap: 0.5rem;
1693
- border-radius: 0.25rem;
1694
- padding-inline: 1.75rem;
1695
- cursor: pointer;
1696
- }
1697
- .api-docs-api-tree__section__endpoints span {
1698
- font-size: 0.75rem;
1699
- line-height: 0.875rem;
1700
- color: #000000;
1701
- }
1702
- .api-docs-api-tree__section__endpoints[data-active=true] {
1703
- background-color: #f0f1f2;
1704
- }
1705
- .api-docs-api-tree__section[data-active=true] .api-docs-api-tree__section-title {
1706
- color: #616874;
1707
- }
1708
- .api-docs-api-tree__endpoints {
1709
- display: flex;
1710
- flex-direction: column;
1711
- align-items: start;
1712
- gap: 0.5rem;
1713
- border-radius: 0.25rem;
1714
- cursor: pointer;
1715
- }
1716
- .api-docs-api-tree__endpoints span {
1717
- font-size: 0.75rem;
1718
- line-height: 0.875rem;
1719
- color: #000000;
1720
- }
1721
- .api-docs-api-tree__endpoints[data-active=true] {
1722
- background-color: #f0f1f2;
1723
- }
1724
- .api-docs-api-tree__subsection-header {
1725
- height: 2rem;
1726
- display: flex;
1727
- align-items: center;
1728
- gap: 0.875rem;
1729
- padding-inline: 0.5rem;
1730
- cursor: pointer;
1731
- user-select: none;
1732
- }
1733
- .api-docs-api-tree__subsection-header svg {
1734
- color: #6b7280;
1735
- }
1736
- .api-docs-api-tree__subsection-title {
1737
- font-size: 0.75rem;
1738
- line-height: 0.875rem;
1739
- color: #616874;
1740
- }
1741
- .api-docs-api-tree__endpoint {
1742
- display: flex;
1743
- align-items: center;
1744
- gap: 0.25rem;
1745
- padding: 0.5rem 0.75rem;
1746
- text-transform: capitalize;
1747
- width: 100%;
1748
- cursor: pointer;
1749
- }
1750
- .api-docs-api-tree__endpoint[data-active=true] {
1751
- background-color: #f0f1f2;
1752
- }
1753
- .api-docs-api-tree__endpoint:hover {
1754
- background-color: #f3f4f6;
1755
- }
1756
- .api-docs-api-tree__endpoint-method {
1757
- font-size: 0.75rem;
1758
- line-height: 0.875rem;
1759
- font-weight: 400;
1760
- text-align: start;
1761
- }
1762
- .api-docs-api-tree__endpoint-name {
1763
- font-size: 0.75rem;
1764
- line-height: 0.875rem;
1765
- color: #3b3f46;
1766
- display: -webkit-box;
1767
- -webkit-box-orient: vertical;
1768
- -webkit-line-clamp: 1;
1769
- overflow: hidden;
1770
- text-overflow: ellipsis;
1771
- }
1772
- .api-docs-api-tree__endpoint--get .api-docs-api-tree__endpoint-method {
1773
- color: #3a6cd1;
1774
- }
1775
- .api-docs-api-tree__endpoint--post .api-docs-api-tree__endpoint-method {
1776
- color: #3aaa35;
1777
- }
1778
- .api-docs-api-tree__endpoint--put .api-docs-api-tree__endpoint-method {
1779
- color: #faad14;
1780
- }
1781
- .api-docs-api-tree__endpoint--delete .api-docs-api-tree__endpoint-method {
1782
- color: #da3f3f;
1783
- }
1784
- .api-docs-api-tree__endpoint--option .api-docs-api-tree__endpoint-method {
1785
- color: #495d97;
1786
- }
1787
- .api-docs-api-tree__endpoint--head .api-docs-api-tree__endpoint-method {
1788
- color: #9461c9;
1789
- }
1790
- .api-docs-api-tree__endpoint--patch .api-docs-api-tree__endpoint-method {
1791
- color: #58e2c2;
1792
- }.codebox {
1793
- border-radius: 0.25rem;
1794
- overflow: hidden;
1795
- }
1796
- .codebox_header {
1797
- display: flex;
1798
- align-items: center;
1799
- gap: 0.25rem;
1800
- padding-left: 0.5rem;
1801
- height: 1.75rem;
1802
- border: 1px solid #bbbec5;
1803
- border-top-right-radius: 0.25rem;
1804
- border-top-left-radius: 0.25rem;
1805
- }
1806
- .codebox_header_themeToggle {
1807
- width: 0.75rem;
1808
- min-width: 0.75rem;
1809
- aspect-ratio: 1/1;
1810
- border: 1px solid transparent;
1811
- border-radius: 100%;
1812
- cursor: pointer;
1813
- }
1814
- .codebox_header_themeToggle_dark {
1815
- background-color: #455162;
1816
- border-color: #6b7280;
1817
- }
1818
- .codebox_header_themeToggle_light {
1819
- background-color: #edf1fb;
1820
- border-color: #6b7280;
1821
- }
1822
- .codebox_header_copyIcon {
1823
- cursor: pointer;
1824
- }
1825
- .codebox :global(.custom-code-line),
1826
- .codebox :global(.custom-code-line span) {
1827
- font-family: "Cascadia Code", sans-serif;
1828
1792
  }.apiDocsAside {
1829
1793
  width: 22.5rem;
1830
1794
  padding: 3rem 1.5rem;
@@ -1911,6 +1875,42 @@ div.endBtnIcon {
1911
1875
  }
1912
1876
  .apiDocsAside :global(.multiSelectGroup .selectDisplay .displayValueContainer .iconsContainer) {
1913
1877
  padding-right: 0.75rem;
1878
+ }.codebox {
1879
+ border-radius: 0.25rem;
1880
+ overflow: hidden;
1881
+ }
1882
+ .codebox_header {
1883
+ display: flex;
1884
+ align-items: center;
1885
+ gap: 0.25rem;
1886
+ padding-left: 0.5rem;
1887
+ height: 1.75rem;
1888
+ border: 1px solid #bbbec5;
1889
+ border-top-right-radius: 0.25rem;
1890
+ border-top-left-radius: 0.25rem;
1891
+ }
1892
+ .codebox_header_themeToggle {
1893
+ width: 0.75rem;
1894
+ min-width: 0.75rem;
1895
+ aspect-ratio: 1/1;
1896
+ border: 1px solid transparent;
1897
+ border-radius: 100%;
1898
+ cursor: pointer;
1899
+ }
1900
+ .codebox_header_themeToggle_dark {
1901
+ background-color: #455162;
1902
+ border-color: #6b7280;
1903
+ }
1904
+ .codebox_header_themeToggle_light {
1905
+ background-color: #edf1fb;
1906
+ border-color: #6b7280;
1907
+ }
1908
+ .codebox_header_copyIcon {
1909
+ cursor: pointer;
1910
+ }
1911
+ .codebox :global(.custom-code-line),
1912
+ .codebox :global(.custom-code-line span) {
1913
+ font-family: "Cascadia Code", sans-serif;
1914
1914
  }.api-details-page {
1915
1915
  padding: 2rem;
1916
1916
  }