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

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 (42) 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/_virtual/index6.js +1 -1
  5. package/dist/node_modules/digitinary-ui/dist/index.js +1 -1
  6. package/dist/node_modules/digitinary-ui/dist/index.js.map +1 -1
  7. package/dist/node_modules/js-yaml/dist/js-yaml.mjs.js +3 -0
  8. package/dist/node_modules/js-yaml/dist/js-yaml.mjs.js.map +1 -0
  9. package/dist/node_modules/toposort/index.js +1 -1
  10. package/dist/node_modules/yup/index.esm.js +1 -1
  11. package/dist/src/components/InfoForm/InfoForm.js +1 -1
  12. package/dist/src/components/InfoForm/InfoForm.js.map +1 -1
  13. package/dist/src/components/JsonInput/JsonInput.js +2 -0
  14. package/dist/src/components/JsonInput/JsonInput.js.map +1 -0
  15. package/dist/src/components/JsonInput/style.module.scss.js +2 -0
  16. package/dist/src/components/JsonInput/style.module.scss.js.map +1 -0
  17. package/dist/src/components/MethodAccordion/MethodAccordion.js +1 -1
  18. package/dist/src/components/MethodAccordion/MethodAccordion.js.map +1 -1
  19. package/dist/src/components/table/table.js +1 -1
  20. package/dist/src/components/table/table.js.map +1 -1
  21. package/dist/src/components/table/tags-table.js +2 -0
  22. package/dist/src/components/table/tags-table.js.map +1 -0
  23. package/dist/src/constants/index.js +1 -1
  24. package/dist/src/constants/index.js.map +1 -1
  25. package/dist/src/helpers/layout.helper.js +1 -1
  26. package/dist/src/helpers/layout.helper.js.map +1 -1
  27. package/dist/src/layout/layout.js +1 -1
  28. package/dist/src/layout/layout.js.map +1 -1
  29. package/dist/src/layout/layout.module.css.js +1 -1
  30. package/dist/styles.css +694 -498
  31. package/dist/types/components/InfoForm/InfoForm.d.ts +3 -1
  32. package/dist/types/components/JsonInput/JsonInput.d.ts +13 -0
  33. package/dist/types/components/MethodAccordion/MethodAccordion.d.ts +1 -2
  34. package/dist/types/components/table/tags-table.d.ts +11 -0
  35. package/dist/types/constants/index.d.ts +18 -4
  36. package/dist/types/layout/layout.d.ts +1 -0
  37. package/dist/types/types/layout.type.d.ts +9 -1
  38. package/dist/types/types/openApi.d.ts +13 -1
  39. package/package.json +2 -2
  40. package/src/components/MethodAccordion/MethodAccordion.module.scss +41 -23
  41. package/src/components/MethodAccordion/MethodAccordion.tsx +3 -2
  42. package/src/components/table/table.tsx +3 -3
package/dist/styles.css CHANGED
@@ -1,117 +1,353 @@
1
- #common-dialog.dialog-content-wrapper {
1
+ :root {
2
+ --white: #fff;
3
+ --Gray-5: #f1f2f6;
4
+ --Gray-10: #ebecf2;
5
+ --Gray-20: #d8dae5;
6
+ --Gray-30: #babdcc;
7
+ --Gray-40: #9a9eb2;
8
+ --Gray-50: #828699;
9
+ --Gray-60: #696c80;
10
+ --Gray-100: #12131a;
11
+ --black: #000;
12
+ --primary-static: #4d75d8;
13
+ --primary-hover: #7c9bea;
14
+ --primary-active: #2c4fa4;
15
+ --primary-disabled: #9a9eb2;
16
+ --secondary-static: #40e0d0;
17
+ --secondary-hover: #9efcf2;
18
+ --secondary-active: #2fa599;
19
+ --error-static: #da3f3f;
20
+ --error-hover: #e75d5d;
21
+ --error-active: #bb3232;
22
+ --success-static: #3aaa35;
23
+ --success-hover: #5cda56;
24
+ --success-active: #2a8a25;
25
+ --info-static: #c6c6c6;
26
+ --info-hover: #e4e4e4;
27
+ --info-active: #979797;
28
+ --warning-static: #faad14;
29
+ --warning-hover: #f9be4a;
30
+ --warning-active: #db9711;
31
+ --action-static: #142452;
32
+ --action-hover: #21387d;
33
+ --action-active: #000000;
34
+ --color-info-primary: #3a6cd1;
35
+ --primary-font-color: #142452;
36
+ --placeholder-font-color: #babdcc;
37
+ --warning-font-color: #ce2828;
38
+ --alert-error: #da3f3f;
39
+ --alert-light-error: #f4c5c5;
40
+ --alert-success: #3aaa35;
41
+ --alert-light-success: #c4e5c2;
42
+ --alert-info: #8eaaf1;
43
+ --alert-light-info: #c4d3f1;
44
+ --alert-warning: #faad14;
45
+ --alert-light-warning: #fde6b8;
46
+ --border-focus: #3a6cd1;
47
+ --tooltip-background-color: #202f5b;
48
+ --text-color-primary: #142452;
49
+ --text-color-secondary: #ffff;
50
+ --text-color-neutral: #828699;
51
+ --text-color-tertiary: #808080;
52
+ --text-color-note: #242424;
53
+ --text-color-quaternary: #142452;
54
+ --text-color-disabled: #ffff;
55
+ --background-color-white-primary: #fff;
56
+ --background-color-light-primary: #8eaaf1;
57
+ --background-color-white-secondary: #fff;
58
+ --background-color-primary-dark: #142452;
59
+ --background-color-gray-5: #f1f2f6;
60
+ --background-color-gray-30: #ebecf2;
61
+ --background-color-tertiary-light: #2c4fa4;
62
+ --background-color-gray-10: #f1f2f6;
63
+ --background-color-gray-40: #ebecf2;
64
+ --background-color-light-blue: #dfe7f8;
65
+ --border-color-primary: #babdcc;
66
+ --border-color-secondary: #d8dae5;
67
+ --border-color-neutral: #ebecf2;
68
+ --border-color-tertiary: #ebecf2;
69
+ --border-color-gray: #ebecf2;
70
+ --border-color-hover: #142452;
71
+ --border-color-active: #3a6cd1;
72
+ --icon-color-main: #142452;
73
+ --icon-color-secondary: #000;
74
+ --icon-color-quaternary: #babdcc;
75
+ --icon-color-disabled: #9a9eb2;
76
+ --link-btn-primary-color: #3a6cd1;
77
+ --button-color-static: #4d75d8;
78
+ --button-color-hover: #7c9bea;
79
+ --button-color-active: #2c4fa4;
80
+ --alert-natural: #c4d3f1;
81
+ }
82
+
83
+ .tableSectionContainer .tableContainer {
84
+ max-width: 100%;
85
+ overflow-x: overlay;
86
+ }
87
+ .tableSectionContainer .tableContainer.tableContainer * {
88
+ font-family: "Cairo";
89
+ }
90
+ .tableSectionContainer .tableContainer .table {
91
+ width: 100%;
92
+ border-spacing: 0;
93
+ border: none;
94
+ border-right: 1px solid var(--border-color-neutral);
95
+ border-left: 1px solid var(--border-color-neutral);
96
+ }
97
+ .tableSectionContainer .tableContainer .table.borderRadiusTop {
98
+ border-top-left-radius: 0.625rem;
99
+ border-top-right-radius: 0.625rem;
100
+ }
101
+ .tableSectionContainer .tableContainer .table.borderRadiusBottom {
102
+ border-bottom-left-radius: 0.625rem;
103
+ border-bottom-right-radius: 0.625rem;
104
+ }
105
+ .tableSectionContainer .tableContainer .table .tableHead {
106
+ border: 1px solid var(--Gray-10);
107
+ margin: 0rem !important;
108
+ background-color: var(--background-color-header);
109
+ width: max-content;
110
+ min-width: 100%;
111
+ color: var(--Gray-50);
112
+ font-weight: 400;
113
+ }
114
+ .tableSectionContainer .tableContainer .table .tableHead .tableHeadCell {
115
+ border-bottom: 1px solid var(--border-color-neutral);
116
+ border-top: 1px solid var(--border-color-neutral);
117
+ font-style: normal;
118
+ font-size: 0.875rem;
119
+ padding: 0.75rem 1.875rem;
120
+ text-align: start;
121
+ white-space: nowrap;
122
+ color: inherit;
123
+ font-weight: inherit;
124
+ }
125
+ .tableSectionContainer .tableContainer .table .tableHead .tableHeadCell .sortIcon {
126
+ padding: 0rem 0.25rem;
127
+ height: 1.875rem;
128
+ cursor: pointer;
129
+ }
130
+ .tableSectionContainer .tableContainer .table .tableHead .headContainer {
131
+ display: flex;
132
+ flex-direction: row;
133
+ align-items: center;
134
+ text-overflow: ellipsis;
135
+ }
136
+ .tableSectionContainer .tableContainer .table .tableBody tr {
137
+ background-color: var(--background-color-white-secondary);
2
138
  overflow: visible !important;
3
- max-height: 100%;
4
- width: 22.1875rem;
5
139
  }
6
- #common-dialog.dialog-content-wrapper .dialog-content-root {
140
+ .tableSectionContainer .tableContainer .table .tableBody tr .tippy-content {
141
+ background-color: var(--border-color-hover);
142
+ color: var(--text-color-disabled);
143
+ border-radius: 5px;
144
+ font-size: 14px;
145
+ font-weight: 400;
146
+ line-height: 20px;
147
+ text-align: left;
148
+ }
149
+ .tableSectionContainer .tableContainer .table .tableBody tr .tippy-box[data-placement^=bottom] > .tippy-arrow:before {
150
+ color: var(--border-color-hover);
151
+ }
152
+ .tableSectionContainer .tableContainer .table .tableBody tr.rowSelected {
153
+ background-color: var(--background-color-gray-40);
154
+ }
155
+ .tableSectionContainer .tableContainer .table .tableBody tr td {
156
+ font-weight: 400;
157
+ font-size: 0.875rem;
158
+ text-align: start;
159
+ color: var(--text-color-primary);
160
+ border-bottom: 1px solid var(--border-color-gray);
161
+ width: max-content;
162
+ white-space: nowrap;
163
+ height: 3.75rem;
164
+ padding: 0.75rem 1.875rem;
7
165
  overflow: visible !important;
8
- border-radius: 0.625rem;
9
- max-height: 100%;
10
166
  }
11
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content {
12
- padding: 0 1.875rem !important;
167
+ .tableSectionContainer .tableContainer .table .tableBody tr td .tableData {
168
+ max-width: 100%;
169
+ width: fit-content;
170
+ white-space: nowrap;
171
+ text-overflow: ellipsis;
13
172
  overflow: visible !important;
14
- max-height: 100%;
15
173
  }
16
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog {
17
- position: relative;
174
+ .tableSectionContainer .tableContainer .table .tableBody tr:hover {
175
+ background-color: var(--background-color-gray-10);
18
176
  }
19
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .close-icon {
20
- position: absolute;
21
- z-index: 1;
22
- top: 1.5rem;
23
- right: 0;
24
- transform: translate(0.625rem, -0.625rem);
25
- cursor: pointer;
177
+ .tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow {
178
+ background-color: var(--background-color-white-secondary);
179
+ height: 4.375rem;
26
180
  }
27
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header {
181
+ .tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow:hover {
182
+ background-color: var(--background-color-white-secondary);
183
+ }
184
+ .tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow .fallbackContainer {
185
+ width: 100%;
186
+ height: 100%;
187
+ color: var(--text-color-quaternary);
188
+ }
189
+ .tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow .fallbackContainer .fallbackTextContainer {
28
190
  display: flex;
29
- padding-top: 0.5rem;
30
- position: relative;
191
+ flex-direction: row;
192
+ align-items: center;
193
+ justify-content: center;
194
+ width: 100%;
195
+ height: 100%;
31
196
  }
32
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon {
33
- margin-top: 1rem;
34
- margin-bottom: 1.5rem;
35
- margin-inline: auto;
197
+ .tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow .fallbackContainer .fallbackTextContainer .fallbackText {
198
+ font-style: normal;
199
+ font-weight: 400;
200
+ font-size: 0.875rem;
201
+ line-height: 1.25rem;
36
202
  }
37
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info path {
38
- stroke: #12131a;
203
+ .tableSectionContainer .tableContainer .table th,
204
+ .tableSectionContainer .tableContainer .table td {
205
+ text-align: left;
39
206
  }
40
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line {
41
- stroke: #12131a;
207
+ .tableSectionContainer .tableFooterContainer {
208
+ display: flex;
209
+ width: 100%;
210
+ height: auto;
42
211
  }
43
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line + path {
44
- fill: #12131a;
212
+ .tableSectionContainer .ascArrow {
213
+ height: 0.8125rem;
214
+ margin-bottom: 0.4375rem;
215
+ cursor: pointer;
45
216
  }
46
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning path {
47
- stroke: #faad14;
217
+ .tableSectionContainer .descArrow {
218
+ height: 0.8125rem;
219
+ margin-top: 0.4375rem;
220
+ cursor: pointer;
48
221
  }
49
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning line {
50
- stroke: #faad14;
222
+ .tableSectionContainer .defaultSortArrow {
223
+ height: 1.25rem;
224
+ cursor: pointer;
51
225
  }
52
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error path {
53
- stroke: #da3f3f;
226
+ .tableSectionContainer .ascArrow path,
227
+ .tableSectionContainer .descArrow path,
228
+ .tableSectionContainer .defaultSortArrow path {
229
+ fill: var(--Gray-50);
230
+ }.json-editor-container .json-editor-label {
231
+ font-size: 0.875rem;
232
+ font-weight: 600;
233
+ line-height: 1.25rem;
234
+ margin-bottom: 0.3125rem;
54
235
  }
55
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line {
56
- stroke: #da3f3f;
236
+ .json-editor-container .json-editor {
237
+ display: flex;
238
+ flex-direction: column;
239
+ background-color: #142452;
240
+ width: 100%;
241
+ border-radius: 0.3125rem;
242
+ margin-bottom: -0.5rem;
243
+ outline: 1px solid transparent;
244
+ position: relative;
57
245
  }
58
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line + path {
59
- fill: #da3f3f;
246
+ .json-editor-container .json-editor .actions-container {
247
+ width: 100%;
248
+ height: 5rem;
249
+ padding: 1.25rem;
250
+ border-radius: 0 0 0.3125rem 0.3125rem;
251
+ background: #101e47;
252
+ display: flex;
253
+ flex-direction: row;
254
+ gap: 1.25rem;
255
+ align-items: center;
60
256
  }
61
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title {
62
- font-size: 1.5rem;
63
- font-weight: 500;
64
- line-height: 1.875rem;
257
+ .json-editor-container .json-editor .actions-container .validate {
258
+ color: #fff;
65
259
  text-align: center;
66
- margin-bottom: 0.625rem;
260
+ font-size: 1rem;
261
+ font-style: normal;
262
+ font-weight: 600;
263
+ line-height: 1.25rem;
264
+ width: 8.75rem;
265
+ padding: 0.625rem 2.25rem;
266
+ background-color: rgba(240, 248, 255, 0);
267
+ border-radius: 0.3125rem;
268
+ border: 0.0625rem solid #4d75d8;
269
+ cursor: pointer;
270
+ }
271
+ .json-editor-container .json-editor .actions-container .validate:disabled {
272
+ color: #babdcc;
273
+ border-color: #a2a5b6;
274
+ }
275
+ .json-editor-container .json-editor .actions-container .beautify {
276
+ color: #fff;
277
+ text-align: center;
278
+ font-size: 1rem;
279
+ font-style: normal;
280
+ font-weight: 600;
281
+ line-height: 1.25rem;
282
+ width: 8.75rem;
283
+ padding: 0.625rem 2.25rem;
284
+ background-color: rgba(240, 248, 255, 0);
285
+ border-radius: 0.3125rem;
286
+ border: 1px solid #babdcc;
287
+ cursor: pointer;
288
+ }
289
+ .json-editor-container .json-editor .actions-container .beautify:disabled {
290
+ color: #a2a5b6;
291
+ border-color: #a2a5b6;
292
+ }
293
+ .json-editor-container .json-editor textarea {
294
+ width: 100%;
295
+ padding: 1.25rem;
296
+ font-size: 0.875rem;
297
+ font-style: normal;
298
+ font-weight: 400;
299
+ line-height: 1.25rem;
300
+ color: white;
301
+ height: 25rem;
302
+ background-color: #142452;
303
+ border: none;
304
+ resize: none;
305
+ border-radius: 0.3125rem;
67
306
  }
68
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.error-title {
69
- color: #da3f3f;
307
+ .json-editor-container .json-editor textarea:focus, .json-editor-container .json-editor textarea:focus-within, .json-editor-container .json-editor textarea:focus-visible .json-editor-container .json-editor textarea:active {
308
+ outline: none;
309
+ border: none;
70
310
  }
71
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.warning-title {
72
- color: #faad14;
311
+ .json-editor-container .json-editor textarea::-webkit-scrollbar {
312
+ width: 0.5rem;
73
313
  }
74
- #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-footer {
75
- display: flex;
76
- gap: 1.25rem;
77
- margin-top: 1.875rem;
78
- }.containerTitleDrawer {
79
- height: 64px;
80
- min-height: 64px;
81
- display: flex;
82
- flex-direction: row;
83
- justify-content: space-between;
84
- align-items: center;
85
- background-color: #f1f2f6;
86
- padding: 0 30px 0 30px;
87
- width: 100%;
314
+ .json-editor-container .json-editor textarea::-webkit-scrollbar-track {
315
+ background-color: #828699;
316
+ border: none;
317
+ border-color: transparent;
318
+ border-top-right-radius: 0.25rem;
319
+ border-top-left-radius: 0;
88
320
  }
89
- .containerTitleDrawer span {
90
- color: #12131a;
91
- font-weight: 600;
92
- font-size: 18px;
93
- line-height: 25px;
94
- letter-spacing: 0em;
321
+ .json-editor-container .json-editor textarea::-webkit-scrollbar-thumb {
322
+ background-color: #d8dae5;
323
+ border: none;
324
+ border-color: transparent;
325
+ border-radius: 0;
95
326
  }
96
- .containerTitleDrawer svg path {
97
- stroke: #000 !important;
327
+ .json-editor-container .json-editor.invalid {
328
+ outline: 1px solid #ce2828 !important;
98
329
  }
99
- .containerTitleDrawer .closeIcon {
100
- cursor: pointer;
330
+ .json-editor-container .error-message {
331
+ color: #ce2828;
332
+ font-size: 0.75rem;
333
+ line-height: 1.25rem;
334
+ margin-top: 0.625rem;
101
335
  }.methodAccordion {
102
336
  border: none !important;
103
337
  box-shadow: none !important;
104
338
  margin-bottom: 0 !important;
105
339
  }
106
- .methodAccordion :global(.summary) {
340
+ .methodAccordion :global(.accordion-header) {
107
341
  padding: 0 !important;
108
342
  margin: 1.25rem 1.875rem 0 1.875rem !important;
109
343
  height: 2.625rem;
344
+ border: none !important;
345
+ background-color: transparent !important;
110
346
  }
111
347
  .methodAccordion :global(.iconContainer .dropdownIcon) {
112
348
  display: none !important;
113
349
  }
114
- .methodAccordion :global(.details.show) {
350
+ .methodAccordion :global(.accordion-details.expanded) {
115
351
  border: none !important;
116
352
  padding: 0 !important;
117
353
  }
@@ -123,11 +359,13 @@
123
359
  }
124
360
  .methodAccordion .methodSummaryContainer .methodSummary {
125
361
  display: flex;
362
+ align-items: center;
126
363
  gap: 0.3125rem;
127
364
  background-color: #f8f9fb;
128
365
  width: 100%;
129
366
  padding: 0.3125rem;
130
367
  border-radius: 0.3125rem;
368
+ font-size: 0.875rem;
131
369
  }
132
370
  .methodAccordion .methodSummaryContainer .methodSummary .methodLabel {
133
371
  display: grid;
@@ -138,6 +376,10 @@
138
376
  border-radius: 0.1875rem;
139
377
  text-transform: capitalize;
140
378
  }
379
+ .methodAccordion .methodSummaryContainer .methodSummary .methodPath {
380
+ display: block;
381
+ line-height: 1.25rem !important;
382
+ }
141
383
  .methodAccordion .methodSummaryContainer .methodExpandArrowContainer {
142
384
  display: grid;
143
385
  place-content: center;
@@ -153,20 +395,18 @@
153
395
  .methodAccordion .methodSummaryContainer .methodExpandArrowContainer svg {
154
396
  transition: rotate 0.3s ease-in-out;
155
397
  }
398
+ .methodAccordion .methodSummaryContainer.readOnly .methodSummary {
399
+ background-color: #ebecf2;
400
+ }
401
+ .methodAccordion .methodSummaryContainer.readOnly .methodExpandArrowContainer {
402
+ background-color: #ebecf2;
403
+ }
156
404
  .methodAccordion .methodAccordionContent {
157
405
  display: flex;
158
406
  flex-direction: column;
159
407
  gap: 1.25rem;
160
408
  padding-inline: 1.875rem;
161
409
  }
162
- .methodAccordion .methodAccordionContent .divTest {
163
- background-color: red;
164
- height: 40px;
165
- width: 15px;
166
- }
167
- .methodAccordion .methodAccordionContent .divTest:focus {
168
- background-color: black;
169
- }
170
410
  .methodAccordion .methodAccordionContent .methodDesc {
171
411
  margin-top: 1.25rem;
172
412
  }
@@ -229,30 +469,41 @@
229
469
  }
230
470
  .methodAccordion .methodAccordionContent .requestAccordion,
231
471
  .methodAccordion .methodAccordionContent .responseAccordion {
232
- border-top: 1px solid #babdcc;
472
+ border: 1px solid #babdcc;
233
473
  border-radius: 0.3125rem !important;
234
474
  box-shadow: none !important;
235
475
  margin-bottom: 0 !important;
236
476
  cursor: default !important;
237
477
  }
238
- .methodAccordion .methodAccordionContent .requestAccordion :global(.summary),
239
- .methodAccordion .methodAccordionContent .responseAccordion :global(.summary) {
478
+ .methodAccordion .methodAccordionContent .requestAccordion :global(.accordion-header),
479
+ .methodAccordion .methodAccordionContent .responseAccordion :global(.accordion-header) {
480
+ display: flex;
481
+ align-items: center;
482
+ justify-content: space-between;
240
483
  margin: 0 !important;
241
- padding: 1rem !important;
242
- height: auto !important;
484
+ padding: 0 !important;
485
+ height: 4.0625rem !important;
486
+ border-radius: 0.3125rem !important;
487
+ background-color: white !important;
243
488
  }
244
- .methodAccordion .methodAccordionContent .requestAccordion :global(.details.show),
245
- .methodAccordion .methodAccordionContent .responseAccordion :global(.details.show) {
489
+ .methodAccordion .methodAccordionContent .requestAccordion :global(.accordion-details.expanded),
490
+ .methodAccordion .methodAccordionContent .responseAccordion :global(.accordion-details.expanded) {
246
491
  border-top: 1px solid #babdcc !important;
247
492
  padding: 1.25rem !important;
248
493
  padding: 0 !important;
249
494
  }
250
- .methodAccordion .methodAccordionContent .requestAccordion :global(.details.show .textArea .containerTextArea),
251
- .methodAccordion .methodAccordionContent .responseAccordion :global(.details.show .textArea .containerTextArea) {
495
+ .methodAccordion .methodAccordionContent .requestAccordion :global(.accordion-details.expanded) :global(.jsonField) div textarea,
496
+ .methodAccordion .methodAccordionContent .responseAccordion :global(.accordion-details.expanded) :global(.jsonField) div textarea {
497
+ border-top-right-radius: 0;
498
+ border-top-left-radius: 0;
499
+ height: 10rem;
500
+ }
501
+ .methodAccordion .methodAccordionContent .requestAccordion :global(.accordion-details.expanded .textArea .containerTextArea),
502
+ .methodAccordion .methodAccordionContent .responseAccordion :global(.accordion-details.expanded .textArea .containerTextArea) {
252
503
  display: flex;
253
504
  }
254
- .methodAccordion .methodAccordionContent .requestAccordion :global(.details.show .textArea .containerTextArea .inputField),
255
- .methodAccordion .methodAccordionContent .responseAccordion :global(.details.show .textArea .containerTextArea .inputField) {
505
+ .methodAccordion .methodAccordionContent .requestAccordion :global(.accordion-details.expanded .textArea .containerTextArea .inputField),
506
+ .methodAccordion .methodAccordionContent .responseAccordion :global(.accordion-details.expanded .textArea .containerTextArea .inputField) {
256
507
  height: 100%;
257
508
  padding: 1.25rem;
258
509
  }
@@ -260,12 +511,16 @@
260
511
  .methodAccordion .methodAccordionContent .requestAccordion .responseAccordionSummary,
261
512
  .methodAccordion .methodAccordionContent .responseAccordion .requestAccordionSummary,
262
513
  .methodAccordion .methodAccordionContent .responseAccordion .responseAccordionSummary {
514
+ width: 100%;
515
+ display: flex;
516
+ justify-content: space-between;
263
517
  font-weight: 700;
264
518
  font-size: 1.125rem;
265
519
  line-height: 1.5rem;
266
520
  display: flex;
267
521
  align-items: center;
268
522
  cursor: default !important;
523
+ margin-inline: 0.625rem 1.25rem;
269
524
  }
270
525
  .methodAccordion .methodAccordionContent .requestAccordion .responseAccordionSummary_title,
271
526
  .methodAccordion .methodAccordionContent .requestAccordion .requestAccordionSummary_title,
@@ -287,17 +542,17 @@
287
542
  .methodAccordion .methodAccordionContent .responseAccordion .requestAccordionSummary_title .expanded {
288
543
  rotate: 180deg;
289
544
  }
290
- .methodAccordion .methodAccordionContent .requestAccordion :global(.details) :global(.textArea .inputField),
291
- .methodAccordion .methodAccordionContent .responseAccordion :global(.details) :global(.textArea .inputField) {
545
+ .methodAccordion .methodAccordionContent .requestAccordion :global(.accordion-details) :global(.textArea .inputField),
546
+ .methodAccordion .methodAccordionContent .responseAccordion :global(.accordion-details) :global(.textArea .inputField) {
292
547
  padding: 0;
293
548
  border: none;
294
549
  }
295
- .methodAccordion .methodAccordionContent .requestAccordion :global(.summary .iconContainer .dropdownIcon),
296
- .methodAccordion .methodAccordionContent .responseAccordion :global(.summary .iconContainer .dropdownIcon) {
550
+ .methodAccordion .methodAccordionContent .requestAccordion :global(.accordion-header .iconContainer .dropdownIcon),
551
+ .methodAccordion .methodAccordionContent .responseAccordion :global(.accordion-header .iconContainer .dropdownIcon) {
297
552
  display: none !important;
298
553
  }
299
- .methodAccordion .methodAccordionContent .requestAccordion :global(.summary),
300
- .methodAccordion .methodAccordionContent .responseAccordion :global(.summary) {
554
+ .methodAccordion .methodAccordionContent .requestAccordion :global(.accordion-header),
555
+ .methodAccordion .methodAccordionContent .responseAccordion :global(.accordion-header) {
301
556
  cursor: default;
302
557
  }
303
558
  .methodAccordion .methodAccordionContent .responseAccordion .responseAccordionSummary {
@@ -318,7 +573,7 @@
318
573
  padding: 0;
319
574
  padding-left: 0.625rem;
320
575
  }
321
- .methodAccordion .methodAccordionContent .responseAccordion :global(.summary) {
576
+ .methodAccordion .methodAccordionContent .responseAccordion :global(.accordion-header) {
322
577
  overflow: visible;
323
578
  cursor: default;
324
579
  }
@@ -332,345 +587,238 @@
332
587
  width: 0.625rem;
333
588
  aspect-ratio: 1/1;
334
589
  border-radius: 100%;
335
- }
336
- .methodAccordion .methodAccordionContent .methodForm_submitBtn {
337
- height: 1.25rem !important;
338
- width: 4.25rem;
339
- }.tooltip-custom-wrapper {
590
+ }.containerTitleDrawer {
591
+ height: 64px;
592
+ min-height: 64px;
340
593
  display: flex;
594
+ flex-direction: row;
595
+ justify-content: space-between;
596
+ align-items: center;
597
+ background-color: #f1f2f6;
598
+ padding: 0 30px 0 30px;
599
+ width: 100%;
341
600
  }
342
-
343
- .tippy-box {
344
- background-color: #202f5b;
345
- font-size: 0.875rem;
346
- border-radius: 0.3125rem;
347
- width: max-content;
348
- max-width: 100%;
349
- overflow-wrap: break-word;
350
- word-break: break-word;
351
- position: relative;
352
- border: 1px solid #d8dae5;
353
- }
354
- .tippy-box.function .tippy-content {
355
- background-color: #fff !important;
356
- color: #000 !important;
357
- }
358
- .tippy-box[data-placement] > .tippy-arrow:before {
359
- color: #fff !important;
360
- }
361
- .tippy-box.info .tippy-arrow {
362
- color: #202f5b;
363
- }
364
- .tippy-box.success {
365
- border-radius: 1.875rem;
366
- background-color: #3aaa35;
367
- padding-inline: 0.625rem;
368
- }
369
- .tippy-box .tippy-content {
370
- text-align: justify;
371
- font-size: 0.875rem;
372
- line-height: 1.25rem;
373
- padding: 0.625rem;
374
- }
375
- .tippy-box .tippy-arrow {
376
- position: relative;
377
- width: 1rem;
378
- height: 1rem;
379
- }
380
- .tippy-box[data-placement^=top] .tippy-arrow:before {
381
- bottom: -0.4375rem;
382
- border-width: 0.5rem 0.5rem 0 !important;
383
- }
384
- .tippy-box[data-placement^=right] .tippy-arrow:before {
385
- left: -0.4375rem;
386
- border-width: 0.5rem 0.5rem 0.5rem 0 !important;
387
- }
388
- .tippy-box[data-placement^=bottom] .tippy-arrow:before {
389
- top: -0.4375rem;
390
- border-width: 0 0.5rem 0.5rem !important;
391
- }
392
- .tippy-box[data-placement^=left] .tippy-arrow:before {
393
- right: -0.4375rem;
394
- border-width: 0.5rem 0 0.5rem 0.5rem !important;
395
- }
396
- .tippy-box[data-placement^=bottom-start] .tippy-arrow {
397
- transform: translate(0.937rem, 0) !important;
398
- }
399
- .tippy-box[data-placement^=bottom-end] .tippy-arrow {
400
- margin-left: calc(100% - 1.937rem);
401
- transform: translate(0, 0) !important;
402
- }
403
- .tippy-box[data-placement^=top-start] .tippy-arrow {
404
- transform: translate(0.937rem, 0) !important;
405
- }
406
- .tippy-box[data-placement^=top-end] .tippy-arrow {
407
- transform: translate(0.937rem, 0) !important;
408
- }
409
- .tippy-box.arrow-with-border {
410
- border: 1px solid #d8dae5;
411
- }
412
- .tippy-box.arrow-with-border[data-placement] .tippy-arrow {
413
- top: 1px;
414
- background-color: white;
415
- z-index: 9999;
416
- height: 1px;
417
- }
418
- .tippy-box.arrow-with-border[data-placement] .tippy-arrow:before {
419
- width: 1rem;
420
- height: 1rem;
421
- background-color: white;
422
- transform: rotate(45deg);
423
- border: none;
424
- border-left: 1px solid #d8dae5 !important;
425
- border-top: 1px solid #d8dae5 !important;
426
- z-index: 20000000000;
427
- top: -0.6rem;
428
- transform-origin: center !important;
429
- }.apiInfoForm {
430
- display: grid;
431
- padding: 1.25rem 1.875rem;
432
- gap: 1.25rem;
433
- }
434
- .apiInfoForm .apiDocRow {
435
- display: grid;
436
- grid-template-columns: 1fr 1fr;
437
- gap: 1.25rem;
438
- }
439
- .apiInfoForm .apiInfoForm_tagsChips {
440
- margin-top: -1.25rem;
441
- }
442
- .apiInfoForm .apiInfoForm_submitBtn {
443
- height: 1.25rem !important;
444
- width: 4.25rem;
445
- }:root {
446
- --white: #fff;
447
- --Gray-5: #f1f2f6;
448
- --Gray-10: #ebecf2;
449
- --Gray-20: #d8dae5;
450
- --Gray-30: #babdcc;
451
- --Gray-40: #9a9eb2;
452
- --Gray-50: #828699;
453
- --Gray-60: #696c80;
454
- --Gray-100: #12131a;
455
- --black: #000;
456
- --primary-static: #4d75d8;
457
- --primary-hover: #7c9bea;
458
- --primary-active: #2c4fa4;
459
- --primary-disabled: #9a9eb2;
460
- --secondary-static: #40e0d0;
461
- --secondary-hover: #9efcf2;
462
- --secondary-active: #2fa599;
463
- --error-static: #da3f3f;
464
- --error-hover: #e75d5d;
465
- --error-active: #bb3232;
466
- --success-static: #3aaa35;
467
- --success-hover: #5cda56;
468
- --success-active: #2a8a25;
469
- --info-static: #c6c6c6;
470
- --info-hover: #e4e4e4;
471
- --info-active: #979797;
472
- --warning-static: #faad14;
473
- --warning-hover: #f9be4a;
474
- --warning-active: #db9711;
475
- --action-static: #142452;
476
- --action-hover: #21387d;
477
- --action-active: #000000;
478
- --color-info-primary: #3a6cd1;
479
- --primary-font-color: #142452;
480
- --placeholder-font-color: #babdcc;
481
- --warning-font-color: #ce2828;
482
- --alert-error: #da3f3f;
483
- --alert-light-error: #f4c5c5;
484
- --alert-success: #3aaa35;
485
- --alert-light-success: #c4e5c2;
486
- --alert-info: #8eaaf1;
487
- --alert-light-info: #c4d3f1;
488
- --alert-warning: #faad14;
489
- --alert-light-warning: #fde6b8;
490
- --border-focus: #3a6cd1;
491
- --tooltip-background-color: #202f5b;
492
- --text-color-primary: #142452;
493
- --text-color-secondary: #ffff;
494
- --text-color-neutral: #828699;
495
- --text-color-tertiary: #808080;
496
- --text-color-note: #242424;
497
- --text-color-quaternary: #142452;
498
- --text-color-disabled: #ffff;
499
- --background-color-white-primary: #fff;
500
- --background-color-light-primary: #8eaaf1;
501
- --background-color-white-secondary: #fff;
502
- --background-color-primary-dark: #142452;
503
- --background-color-gray-5: #f1f2f6;
504
- --background-color-gray-30: #ebecf2;
505
- --background-color-tertiary-light: #2c4fa4;
506
- --background-color-gray-10: #f1f2f6;
507
- --background-color-gray-40: #ebecf2;
508
- --background-color-light-blue: #dfe7f8;
509
- --border-color-primary: #babdcc;
510
- --border-color-secondary: #d8dae5;
511
- --border-color-neutral: #ebecf2;
512
- --border-color-tertiary: #ebecf2;
513
- --border-color-gray: #ebecf2;
514
- --border-color-hover: #142452;
515
- --border-color-active: #3a6cd1;
516
- --icon-color-main: #142452;
517
- --icon-color-secondary: #000;
518
- --icon-color-quaternary: #babdcc;
519
- --icon-color-disabled: #9a9eb2;
520
- --link-btn-primary-color: #3a6cd1;
521
- --button-color-static: #4d75d8;
522
- --button-color-hover: #7c9bea;
523
- --button-color-active: #2c4fa4;
524
- --alert-natural: #c4d3f1;
601
+ .containerTitleDrawer span {
602
+ color: #12131a;
603
+ font-weight: 600;
604
+ font-size: 18px;
605
+ line-height: 25px;
606
+ letter-spacing: 0em;
525
607
  }
526
-
527
- .tableSectionContainer .tableContainer {
528
- max-width: 100%;
529
- overflow-x: overlay;
608
+ .containerTitleDrawer svg path {
609
+ stroke: #000 !important;
530
610
  }
531
- .tableSectionContainer .tableContainer.tableContainer * {
532
- font-family: "Cairo";
611
+ .containerTitleDrawer .closeIcon {
612
+ cursor: pointer;
613
+ }.apiInfoForm {
614
+ display: grid;
615
+ padding: 1.25rem 1.875rem;
616
+ gap: 1.25rem;
533
617
  }
534
- .tableSectionContainer .tableContainer .table {
535
- width: 100%;
536
- border-spacing: 0;
537
- border: none;
538
- border-right: 1px solid var(--border-color-neutral);
539
- border-left: 1px solid var(--border-color-neutral);
618
+ .apiInfoForm .paramsTable .paramDescContainer {
619
+ display: flex;
540
620
  }
541
- .tableSectionContainer .tableContainer .table.borderRadiusTop {
542
- border-top-left-radius: 0.625rem;
543
- border-top-right-radius: 0.625rem;
621
+ .apiInfoForm .paramsTable .paramDescContainer .paramDescContainer_separator {
622
+ height: inherit;
623
+ width: 1px;
624
+ background-color: #d8dae5;
544
625
  }
545
- .tableSectionContainer .tableContainer .table.borderRadiusBottom {
546
- border-bottom-left-radius: 0.625rem;
547
- border-bottom-right-radius: 0.625rem;
626
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn) svg path {
627
+ stroke-width: 0.1;
548
628
  }
549
- .tableSectionContainer .tableContainer .table .tableHead {
550
- border: 1px solid var(--Gray-10);
551
- margin: 0rem !important;
552
- background-color: var(--background-color-header);
553
- width: max-content;
554
- min-width: 100%;
555
- color: var(--Gray-50);
556
- font-weight: 400;
629
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn {
630
+ padding: 0;
631
+ margin-right: 1.25rem;
557
632
  }
558
- .tableSectionContainer .tableContainer .table .tableHead .tableHeadCell {
559
- border-bottom: 1px solid var(--border-color-neutral);
560
- border-top: 1px solid var(--border-color-neutral);
561
- font-style: normal;
562
- font-size: 0.875rem;
563
- padding: 0.75rem 1.875rem;
564
- text-align: start;
565
- white-space: nowrap;
566
- color: inherit;
567
- font-weight: inherit;
633
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) {
634
+ display: flex;
635
+ align-items: center;
636
+ padding: 0;
637
+ color: #12131a;
568
638
  }
569
- .tableSectionContainer .tableContainer .table .tableHead .tableHeadCell .sortIcon {
570
- padding: 0rem 0.25rem;
571
- height: 1.875rem;
572
- cursor: pointer;
639
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
640
+ margin-block: auto;
573
641
  }
574
- .tableSectionContainer .tableContainer .table .tableHead .headContainer {
642
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).editDescBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg path {
643
+ fill: #12131a;
644
+ }
645
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn {
646
+ padding: 0;
647
+ }
648
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) {
649
+ margin-block: auto;
650
+ }
651
+ .apiInfoForm .paramsTable .paramDescContainer :global(.customBtn).deleteParamBtn :global(.btnContentWrapper) :global(.endBtnIcon) svg {
652
+ width: 1.125rem;
653
+ }
654
+ .apiInfoForm .paramsTable .editDescTooltipContent {
575
655
  display: flex;
576
- flex-direction: row;
577
- align-items: center;
578
- text-overflow: ellipsis;
656
+ flex-direction: column;
657
+ gap: 0.625rem;
658
+ padding-bottom: 0.625rem;
579
659
  }
580
- .tableSectionContainer .tableContainer .table .tableBody tr {
581
- background-color: var(--background-color-white-secondary);
582
- overflow: visible !important;
660
+ .apiInfoForm .paramsTable .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
661
+ margin-inline: 0.625rem;
583
662
  }
584
- .tableSectionContainer .tableContainer .table .tableBody tr .tippy-content {
585
- background-color: var(--border-color-hover);
586
- color: var(--text-color-disabled);
587
- border-radius: 5px;
588
- font-size: 14px;
589
- font-weight: 400;
590
- line-height: 20px;
591
- text-align: left;
663
+ .apiInfoForm .paramsTable .editDescTooltipContent .editDescTooltipContent_header {
664
+ font-weight: 600;
665
+ font-size: 0.875rem;
666
+ line-height: 1.25rem;
667
+ padding: 0.75rem 1.25rem;
668
+ border-bottom: 1px solid #d8dae5;
592
669
  }
593
- .tableSectionContainer .tableContainer .table .tableBody tr .tippy-box[data-placement^=bottom] > .tippy-arrow:before {
594
- color: var(--border-color-hover);
670
+ .apiInfoForm .paramsTable :global(.requiredParam) :global(.headContainer)::after {
671
+ content: "*";
672
+ color: red;
673
+ transform: translateX(0.125rem);
595
674
  }
596
- .tableSectionContainer .tableContainer .table .tableBody tr.rowSelected {
597
- background-color: var(--background-color-gray-40);
675
+ .apiInfoForm .apiDocRow {
676
+ display: grid;
677
+ grid-template-columns: 1fr 1fr;
678
+ gap: 1.25rem;
598
679
  }
599
- .tableSectionContainer .tableContainer .table .tableBody tr td {
600
- font-weight: 400;
680
+ .apiInfoForm .apiInfoForm_tagsChips {
681
+ margin-top: -1.25rem;
682
+ }
683
+ .apiInfoForm .editDescTooltipContent {
684
+ display: flex;
685
+ flex-direction: column;
686
+ gap: 0.625rem;
687
+ padding-bottom: 0.625rem;
688
+ }
689
+ .apiInfoForm .editDescTooltipContent > *:not(.editDescTooltipContent_header) {
690
+ margin-inline: 0.625rem;
691
+ }
692
+ .apiInfoForm .editDescTooltipContent .editDescTooltipContent_header {
693
+ font-weight: 600;
601
694
  font-size: 0.875rem;
602
- text-align: start;
603
- color: var(--text-color-primary);
604
- border-bottom: 1px solid var(--border-color-gray);
695
+ line-height: 1.25rem;
696
+ padding: 0.75rem 1.25rem;
697
+ border-bottom: 1px solid #d8dae5;
698
+ }
699
+ .apiInfoForm :global(.requiredParam) :global(.headContainer)::after {
700
+ content: "*";
701
+ color: red;
702
+ transform: translateX(0.125rem);
703
+ }p.apiName {
704
+ font-size: 40px;
705
+ line-height: 30px;
706
+ font-weight: 500;
707
+ }.chips-container {
708
+ width: 100%;
709
+ }
710
+ .chips-container .overflow-dropdown-div {
711
+ max-height: 4.25rem;
712
+ overflow: hidden;
713
+ }
714
+ .chips-container .overflow-dropdown-div .dropdown-list {
715
+ display: flex;
716
+ flex-wrap: wrap;
717
+ gap: 0.625rem;
718
+ margin-top: 0.625rem;
719
+ }
720
+ .chips-container .overflow-dropdown-div .dropdown-list .chip {
721
+ display: flex;
722
+ justify-content: center;
723
+ align-items: center;
724
+ background: #ebecf2;
725
+ border-radius: 3.125rem;
605
726
  width: max-content;
606
- white-space: nowrap;
607
- height: 3.75rem;
608
- padding: 0.75rem 1.875rem;
609
- overflow: visible !important;
727
+ height: 1.5rem;
728
+ overflow: hidden;
729
+ transition: all 0.4s ease-in-out;
730
+ padding-right: 0.9375rem;
731
+ cursor: default;
610
732
  }
611
- .tableSectionContainer .tableContainer .table .tableBody tr td .tableData {
612
- max-width: 100%;
613
- width: fit-content;
614
- white-space: nowrap;
615
- text-overflow: ellipsis;
616
- overflow: visible !important;
733
+ .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled):hover {
734
+ background: #d8dae5;
617
735
  }
618
- .tableSectionContainer .tableContainer .table .tableBody tr:hover {
619
- background-color: var(--background-color-gray-10);
736
+ .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled):active {
737
+ background: #696c80;
738
+ color: #fff;
620
739
  }
621
- .tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow {
622
- background-color: var(--background-color-white-secondary);
623
- height: 4.375rem;
740
+ .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled):active .chip-close-icon path {
741
+ stroke: #fff;
624
742
  }
625
- .tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow:hover {
626
- background-color: var(--background-color-white-secondary);
743
+ .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled) .chip-close-icon {
744
+ cursor: pointer;
627
745
  }
628
- .tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow .fallbackContainer {
629
- width: 100%;
746
+ .chips-container .overflow-dropdown-div .dropdown-list .chip.clickable {
747
+ cursor: pointer;
748
+ }
749
+ .chips-container .overflow-dropdown-div .dropdown-list .chip .chip-text {
750
+ display: flex;
751
+ align-items: center;
752
+ font-size: 0.95rem;
630
753
  height: 100%;
631
- color: var(--text-color-quaternary);
754
+ padding-left: 0.9375rem;
755
+ margin-top: -0.125rem;
632
756
  }
633
- .tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow .fallbackContainer .fallbackTextContainer {
757
+ .chips-container .overflow-dropdown-div .dropdown-list .chip .chip-close-icon {
758
+ display: block;
759
+ height: 0.75rem;
760
+ width: 0.75rem;
761
+ margin-block: auto;
762
+ margin-left: 0.625rem;
763
+ }
764
+ .chips-container .overflow-dropdown-div .dropdown-list .chip .chip-close-icon path {
765
+ stroke: #12131a;
766
+ }
767
+ .chips-container .dropdown-max-height {
768
+ max-height: -moz-fit-content;
769
+ max-height: fit-content !important;
770
+ }
771
+ .chips-container .dropdown-overflow {
772
+ overflow: visible !important;
773
+ }
774
+ .chips-container .show-btn {
634
775
  display: flex;
635
776
  flex-direction: row;
636
- align-items: center;
777
+ flex-wrap: nowrap;
637
778
  justify-content: center;
638
- width: 100%;
639
- height: 100%;
779
+ align-items: center;
780
+ width: auto;
781
+ height: 1.25rem;
782
+ cursor: pointer;
783
+ border: none;
784
+ margin-top: 0.625rem;
785
+ color: #9a9eb2;
786
+ background-color: transparent;
640
787
  }
641
- .tableSectionContainer .tableContainer .table .tableBody .fallbackTableRow .fallbackContainer .fallbackTextContainer .fallbackText {
642
- font-style: normal;
643
- font-weight: 400;
644
- font-size: 0.875rem;
645
- line-height: 1.25rem;
788
+ .chips-container .show-btn .show-btn-text-container {
789
+ flex: 1 1 auto;
646
790
  }
647
- .tableSectionContainer .tableContainer .table th,
648
- .tableSectionContainer .tableContainer .table td {
649
- text-align: left;
791
+ .chips-container .show-btn .show-btn-text-container .show-btn-text {
792
+ font-size: 0.75rem;
793
+ text-decoration-line: underline;
650
794
  }
651
- .tableSectionContainer .tableFooterContainer {
795
+ .chips-container .show-btn .show-btn-icon-container {
652
796
  display: flex;
653
- width: 100%;
654
- height: auto;
797
+ justify-content: center;
798
+ align-items: center;
799
+ height: 1.25rem;
800
+ width: 1.25rem;
801
+ margin-top: 0.1875rem;
802
+ margin-left: 0.125rem;
655
803
  }
656
- .tableSectionContainer .ascArrow {
657
- height: 0.8125rem;
658
- margin-bottom: 0.4375rem;
659
- cursor: pointer;
804
+ .chips-container .show-btn .show-btn-icon-container .show-btn-icon {
805
+ height: 1.25rem;
806
+ width: 1.25rem;
807
+ }
808
+ .chips-container .show-btn .show-btn-icon-container .show-btn-icon path {
809
+ fill: #9a9eb2;
660
810
  }
661
- .tableSectionContainer .descArrow {
662
- height: 0.8125rem;
663
- margin-top: 0.4375rem;
664
- cursor: pointer;
811
+ .chips-container .show-btn:hover {
812
+ color: #7c9bea;
665
813
  }
666
- .tableSectionContainer .defaultSortArrow {
667
- height: 1.25rem;
668
- cursor: pointer;
814
+ .chips-container .show-btn:hover .show-btn-icon-container .show-btn-icon path {
815
+ fill: #7c9bea;
669
816
  }
670
- .tableSectionContainer .ascArrow path,
671
- .tableSectionContainer .descArrow path,
672
- .tableSectionContainer .defaultSortArrow path {
673
- fill: var(--Gray-50);
817
+ .chips-container .show-btn:active {
818
+ color: #2c4fa4;
819
+ }
820
+ .chips-container .show-btn:active .show-btn-icon-container .show-btn-icon path {
821
+ fill: #2c4fa4;
674
822
  }:root {
675
823
  --white: #fff;
676
824
  --Gray-5: #f1f2f6;
@@ -776,123 +924,171 @@
776
924
  }
777
925
  .drawerItemContainer .color-red {
778
926
  color: var(--color-error);
779
- }.chips-container {
780
- width: 100%;
927
+ }#common-dialog.dialog-content-wrapper {
928
+ overflow: visible !important;
929
+ max-height: 100%;
930
+ width: 22.1875rem;
781
931
  }
782
- .chips-container .overflow-dropdown-div {
783
- max-height: 4.25rem;
784
- overflow: hidden;
932
+ #common-dialog.dialog-content-wrapper .dialog-content-root {
933
+ overflow: visible !important;
934
+ border-radius: 0.625rem;
935
+ max-height: 100%;
785
936
  }
786
- .chips-container .overflow-dropdown-div .dropdown-list {
787
- display: flex;
788
- flex-wrap: wrap;
789
- gap: 0.625rem;
790
- margin-top: 0.625rem;
937
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content {
938
+ padding: 0 1.875rem !important;
939
+ overflow: visible !important;
940
+ max-height: 100%;
791
941
  }
792
- .chips-container .overflow-dropdown-div .dropdown-list .chip {
942
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog {
943
+ position: relative;
944
+ }
945
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .close-icon {
946
+ position: absolute;
947
+ z-index: 1;
948
+ top: 1.5rem;
949
+ right: 0;
950
+ transform: translate(0.625rem, -0.625rem);
951
+ cursor: pointer;
952
+ }
953
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header {
793
954
  display: flex;
794
- justify-content: center;
795
- align-items: center;
796
- background: #ebecf2;
797
- border-radius: 3.125rem;
798
- width: max-content;
799
- height: 1.5rem;
800
- overflow: hidden;
801
- transition: all 0.4s ease-in-out;
802
- padding-right: 0.9375rem;
803
- cursor: default;
955
+ padding-top: 0.5rem;
956
+ position: relative;
804
957
  }
805
- .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled):hover {
806
- background: #d8dae5;
958
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon {
959
+ margin-top: 1rem;
960
+ margin-bottom: 1.5rem;
961
+ margin-inline: auto;
807
962
  }
808
- .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled):active {
809
- background: #696c80;
810
- color: #fff;
963
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info path {
964
+ stroke: #12131a;
811
965
  }
812
- .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled):active .chip-close-icon path {
813
- stroke: #fff;
966
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line {
967
+ stroke: #12131a;
814
968
  }
815
- .chips-container .overflow-dropdown-div .dropdown-list .chip:not(.disabled) .chip-close-icon {
816
- cursor: pointer;
969
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.info line + path {
970
+ fill: #12131a;
817
971
  }
818
- .chips-container .overflow-dropdown-div .dropdown-list .chip.clickable {
819
- cursor: pointer;
972
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning path {
973
+ stroke: #faad14;
820
974
  }
821
- .chips-container .overflow-dropdown-div .dropdown-list .chip .chip-text {
822
- display: flex;
823
- align-items: center;
824
- font-size: 0.95rem;
825
- height: 100%;
826
- padding-left: 0.9375rem;
827
- margin-top: -0.125rem;
975
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.warning line {
976
+ stroke: #faad14;
828
977
  }
829
- .chips-container .overflow-dropdown-div .dropdown-list .chip .chip-close-icon {
830
- display: block;
831
- height: 0.75rem;
832
- width: 0.75rem;
833
- margin-block: auto;
834
- margin-left: 0.625rem;
978
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error path {
979
+ stroke: #da3f3f;
835
980
  }
836
- .chips-container .overflow-dropdown-div .dropdown-list .chip .chip-close-icon path {
837
- stroke: #12131a;
981
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line {
982
+ stroke: #da3f3f;
838
983
  }
839
- .chips-container .dropdown-max-height {
840
- max-height: -moz-fit-content;
841
- max-height: fit-content !important;
984
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-header .icon.error line + path {
985
+ fill: #da3f3f;
842
986
  }
843
- .chips-container .dropdown-overflow {
844
- overflow: visible !important;
987
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title {
988
+ font-size: 1.5rem;
989
+ font-weight: 500;
990
+ line-height: 1.875rem;
991
+ text-align: center;
992
+ margin-bottom: 0.625rem;
845
993
  }
846
- .chips-container .show-btn {
994
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.error-title {
995
+ color: #da3f3f;
996
+ }
997
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-title.warning-title {
998
+ color: #faad14;
999
+ }
1000
+ #common-dialog.dialog-content-wrapper .dialog-content-root .dialog-content .common-dialog .confirmation-dialog-footer {
1001
+ display: flex;
1002
+ gap: 1.25rem;
1003
+ margin-top: 1.875rem;
1004
+ }.tooltip-custom-wrapper {
847
1005
  display: flex;
848
- flex-direction: row;
849
- flex-wrap: nowrap;
850
- justify-content: center;
851
- align-items: center;
852
- width: auto;
853
- height: 1.25rem;
854
- cursor: pointer;
855
- border: none;
856
- margin-top: 0.625rem;
857
- color: #9a9eb2;
858
- background-color: transparent;
859
1006
  }
860
- .chips-container .show-btn .show-btn-text-container {
861
- flex: 1 1 auto;
1007
+
1008
+ .tippy-box {
1009
+ background-color: #202f5b;
1010
+ font-size: 0.875rem;
1011
+ border-radius: 0.3125rem;
1012
+ width: max-content;
1013
+ max-width: 100%;
1014
+ overflow-wrap: break-word;
1015
+ word-break: break-word;
1016
+ position: relative;
1017
+ border: 1px solid #d8dae5;
862
1018
  }
863
- .chips-container .show-btn .show-btn-text-container .show-btn-text {
864
- font-size: 0.75rem;
865
- text-decoration-line: underline;
1019
+ .tippy-box.function .tippy-content {
1020
+ background-color: #fff !important;
1021
+ color: #000 !important;
866
1022
  }
867
- .chips-container .show-btn .show-btn-icon-container {
868
- display: flex;
869
- justify-content: center;
870
- align-items: center;
871
- height: 1.25rem;
872
- width: 1.25rem;
873
- margin-top: 0.1875rem;
874
- margin-left: 0.125rem;
1023
+ .tippy-box[data-placement] > .tippy-arrow:before {
1024
+ color: #fff !important;
875
1025
  }
876
- .chips-container .show-btn .show-btn-icon-container .show-btn-icon {
877
- height: 1.25rem;
878
- width: 1.25rem;
1026
+ .tippy-box.info .tippy-arrow {
1027
+ color: #202f5b;
879
1028
  }
880
- .chips-container .show-btn .show-btn-icon-container .show-btn-icon path {
881
- fill: #9a9eb2;
1029
+ .tippy-box.success {
1030
+ border-radius: 1.875rem;
1031
+ background-color: #3aaa35;
1032
+ padding-inline: 0.625rem;
882
1033
  }
883
- .chips-container .show-btn:hover {
884
- color: #7c9bea;
1034
+ .tippy-box .tippy-content {
1035
+ text-align: justify;
1036
+ font-size: 0.875rem;
1037
+ line-height: 1.25rem;
1038
+ padding: 0.625rem;
885
1039
  }
886
- .chips-container .show-btn:hover .show-btn-icon-container .show-btn-icon path {
887
- fill: #7c9bea;
1040
+ .tippy-box .tippy-arrow {
1041
+ position: relative;
1042
+ width: 1rem;
1043
+ height: 1rem;
888
1044
  }
889
- .chips-container .show-btn:active {
890
- color: #2c4fa4;
1045
+ .tippy-box[data-placement^=top] .tippy-arrow:before {
1046
+ bottom: -0.4375rem;
1047
+ border-width: 0.5rem 0.5rem 0 !important;
891
1048
  }
892
- .chips-container .show-btn:active .show-btn-icon-container .show-btn-icon path {
893
- fill: #2c4fa4;
894
- }p.apiName {
895
- font-size: 40px;
896
- line-height: 30px;
897
- font-weight: 500;
1049
+ .tippy-box[data-placement^=right] .tippy-arrow:before {
1050
+ left: -0.4375rem;
1051
+ border-width: 0.5rem 0.5rem 0.5rem 0 !important;
1052
+ }
1053
+ .tippy-box[data-placement^=bottom] .tippy-arrow:before {
1054
+ top: -0.4375rem;
1055
+ border-width: 0 0.5rem 0.5rem !important;
1056
+ }
1057
+ .tippy-box[data-placement^=left] .tippy-arrow:before {
1058
+ right: -0.4375rem;
1059
+ border-width: 0.5rem 0 0.5rem 0.5rem !important;
1060
+ }
1061
+ .tippy-box[data-placement^=bottom-start] .tippy-arrow {
1062
+ transform: translate(0.937rem, 0) !important;
1063
+ }
1064
+ .tippy-box[data-placement^=bottom-end] .tippy-arrow {
1065
+ margin-left: calc(100% - 1.937rem);
1066
+ transform: translate(0, 0) !important;
1067
+ }
1068
+ .tippy-box[data-placement^=top-start] .tippy-arrow {
1069
+ transform: translate(0.937rem, 0) !important;
1070
+ }
1071
+ .tippy-box[data-placement^=top-end] .tippy-arrow {
1072
+ transform: translate(0.937rem, 0) !important;
1073
+ }
1074
+ .tippy-box.arrow-with-border {
1075
+ border: 1px solid #d8dae5;
1076
+ }
1077
+ .tippy-box.arrow-with-border[data-placement] .tippy-arrow {
1078
+ top: 1px;
1079
+ background-color: white;
1080
+ z-index: 9999;
1081
+ height: 1px;
1082
+ }
1083
+ .tippy-box.arrow-with-border[data-placement] .tippy-arrow:before {
1084
+ width: 1rem;
1085
+ height: 1rem;
1086
+ background-color: white;
1087
+ transform: rotate(45deg);
1088
+ border: none;
1089
+ border-left: 1px solid #d8dae5 !important;
1090
+ border-top: 1px solid #d8dae5 !important;
1091
+ z-index: 20000000000;
1092
+ top: -0.6rem;
1093
+ transform-origin: center !important;
898
1094
  }