@ws-ui/http-handlers-editor 1.11.12-rc7 → 1.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Handler/index.d.ts +0 -21
- package/dist/Standalone/index.d.ts +2 -1
- package/dist/Standalone/style.css +1 -1
- package/dist/adapter/provider.d.ts +4 -7
- package/dist/adapter/reducer/adapter.d.ts +3 -1
- package/dist/adapter/redux/adapter.d.ts +2 -2
- package/dist/adapter/types.d.ts +19 -15
- package/dist/common.cjs.js.map +1 -1
- package/dist/common.es.js.map +1 -1
- package/dist/http-handlers-editor.css +1 -1
- package/dist/index.cjs.js +6 -53
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +1388 -11398
- package/dist/index.es.js.map +1 -1
- package/dist/json-schema.json +35 -0
- package/dist/json-schema.json.d.ts +38 -0
- package/package.json +6 -6
- package/dist/Provider/index.d.ts +0 -47
package/dist/Handler/index.d.ts
CHANGED
|
@@ -1,24 +1,3 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
import { HTTPHandler } from '../adapter';
|
|
3
|
-
export declare const SelectHTTP: ({ value, options, errorMessage, onChange, onBlur, "data-cy": dataCy, }: {
|
|
4
|
-
value: string;
|
|
5
|
-
onChange: (val: string) => void;
|
|
6
|
-
options: {
|
|
7
|
-
name: string;
|
|
8
|
-
}[];
|
|
9
|
-
errorMessage?: string;
|
|
10
|
-
onBlur?: () => void;
|
|
11
|
-
"data-cy"?: string;
|
|
12
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
export declare const MethodSelector: ({ value, options, onChange, errorMessage, onBlur, "data-cy": dataCy, }: {
|
|
14
|
-
value: string;
|
|
15
|
-
onChange: (val: string) => void;
|
|
16
|
-
options: {
|
|
17
|
-
name: string;
|
|
18
|
-
exposed: boolean;
|
|
19
|
-
}[];
|
|
20
|
-
errorMessage?: string;
|
|
21
|
-
onBlur?: () => void;
|
|
22
|
-
"data-cy"?: string;
|
|
23
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
24
3
|
export declare const Handler: FC<HTTPHandler>;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
|
-
import { HTTPHandler } from '../adapter';
|
|
2
|
+
import { HTTPHandler, TEditorHost } from '../adapter';
|
|
3
3
|
interface IStandaloneProps {
|
|
4
4
|
initialValue?: string | HTTPHandler[];
|
|
5
5
|
onChange?: (newValue: string) => void;
|
|
6
6
|
catalog?: datasources.IEnhancedCatalog | null;
|
|
7
|
+
host?: TEditorHost;
|
|
7
8
|
}
|
|
8
9
|
declare const StandaloneWithReducerAdapter: FC<IStandaloneProps>;
|
|
9
10
|
export { StandaloneWithReducerAdapter as Standalone };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.qodly-http-handlers-editor [data-simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.qodly-http-handlers-editor .simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.qodly-http-handlers-editor .simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;left:0;top:0;bottom:0;right:0;width:auto!important;height:auto!important;z-index:0}.qodly-http-handlers-editor .simplebar-offset{direction:inherit!important;box-sizing:inherit!important;resize:none!important;position:absolute;top:0;left:0;bottom:0;right:0;padding:0;margin:0;-webkit-overflow-scrolling:touch}.qodly-http-handlers-editor .simplebar-content-wrapper{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;max-width:100%;max-height:100%;overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.qodly-http-handlers-editor .simplebar-content-wrapper::-webkit-scrollbar,.qodly-http-handlers-editor .simplebar-hide-scrollbar::-webkit-scrollbar{display:none;width:0;height:0}.qodly-http-handlers-editor .simplebar-content:after,.qodly-http-handlers-editor .simplebar-content:before{content:" ";display:table}.qodly-http-handlers-editor .simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.qodly-http-handlers-editor .simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.qodly-http-handlers-editor .simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1}.qodly-http-handlers-editor .simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden}.qodly-http-handlers-editor [data-simplebar].simplebar-dragging,.qodly-http-handlers-editor [data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.qodly-http-handlers-editor [data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.qodly-http-handlers-editor .simplebar-scrollbar{position:absolute;left:0;right:0;min-height:10px}.qodly-http-handlers-editor .simplebar-scrollbar:before{position:absolute;content:"";background:#000;border-radius:7px;opacity:0;transition:opacity .2s linear .5s}.qodly-http-handlers-editor .simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition-delay:0s;transition-duration:0s}.qodly-http-handlers-editor .simplebar-track.simplebar-vertical{top:0;width:11px}.qodly-http-handlers-editor .simplebar-scrollbar:before{top:2px;bottom:2px;left:2px;right:2px}.qodly-http-handlers-editor .simplebar-track.simplebar-horizontal{left:0;height:11px}.qodly-http-handlers-editor .simplebar-track.simplebar-horizontal .simplebar-scrollbar{right:auto;left:0;top:0;bottom:0;min-height:0;min-width:10px;width:auto}.qodly-http-handlers-editor [data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{right:auto;left:0}.qodly-http-handlers-editor .simplebar-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:scrollbar!important}.qodly-http-handlers-editor .simplebar-dummy-scrollbar-size>div{width:200%;height:200%;margin:10px 0}.qodly-http-handlers-editor .simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}.qodly-http-handlers-editor .fd-tree-node{display:flex;flex-direction:row;padding-right:8px;padding-left:8px}.qodly-http-handlers-editor .fd-tree-node-content{display:flex;flex-direction:row;flex:1 1 0%}.qodly-http-handlers-editor .carousel .control-arrow,.qodly-http-handlers-editor .carousel.carousel-slider .control-arrow{transition:all .25s ease-in;opacity:.4;filter:alpha(opacity=40);position:absolute;z-index:2;top:20px;background:none;border:0;font-size:32px;cursor:pointer}.qodly-http-handlers-editor .carousel .control-arrow:focus,.qodly-http-handlers-editor .carousel .control-arrow:hover{opacity:1;filter:alpha(opacity=100)}.qodly-http-handlers-editor .carousel .control-arrow:before,.qodly-http-handlers-editor .carousel.carousel-slider .control-arrow:before{margin:0 5px;display:inline-block;border-top:8px solid transparent;border-bottom:8px solid transparent;content:""}.qodly-http-handlers-editor .carousel .control-disabled.control-arrow{opacity:0;filter:alpha(opacity=0);cursor:inherit;display:none}.qodly-http-handlers-editor .carousel .control-prev.control-arrow{left:0}.qodly-http-handlers-editor .carousel .control-prev.control-arrow:before{border-right:8px solid #fff}.qodly-http-handlers-editor .carousel .control-next.control-arrow{right:0}.qodly-http-handlers-editor .carousel .control-next.control-arrow:before{border-left:8px solid #fff}.qodly-http-handlers-editor .carousel-root{outline:none}.qodly-http-handlers-editor .carousel{position:relative;width:100%}.qodly-http-handlers-editor .carousel *{box-sizing:border-box}.qodly-http-handlers-editor .carousel img{width:100%;display:inline-block;pointer-events:none}.qodly-http-handlers-editor .carousel .carousel{position:relative}.qodly-http-handlers-editor .carousel .control-arrow{outline:0;border:0;background:none;top:50%;margin-top:-13px;font-size:18px}.qodly-http-handlers-editor .carousel .thumbs-wrapper{margin:20px;overflow:hidden}.qodly-http-handlers-editor .carousel .thumbs{transition:all .15s ease-in;transform:translateZ(0);position:relative;list-style:none;white-space:nowrap}.qodly-http-handlers-editor .carousel .thumb{transition:border .15s ease-in;display:inline-block;margin-right:6px;white-space:nowrap;overflow:hidden;border:3px solid #fff;padding:2px}.qodly-http-handlers-editor .carousel .thumb:focus{border:3px solid #ccc;outline:none}.qodly-http-handlers-editor .carousel .thumb.selected,.qodly-http-handlers-editor .carousel .thumb:hover{border:3px solid #333}.qodly-http-handlers-editor .carousel .thumb img{vertical-align:top}.qodly-http-handlers-editor .carousel.carousel-slider{position:relative;margin:0;overflow:hidden}.qodly-http-handlers-editor .carousel.carousel-slider .control-arrow{top:0;color:#fff;font-size:26px;bottom:0;margin-top:0;padding:5px}.qodly-http-handlers-editor .carousel.carousel-slider .control-arrow:hover{background:#0003}.qodly-http-handlers-editor .carousel .slider-wrapper{overflow:hidden;margin:auto;width:100%;transition:height .15s ease-in}.qodly-http-handlers-editor .carousel .slider-wrapper.axis-horizontal .slider{-ms-box-orient:horizontal;display:-moz-flex;display:flex}.qodly-http-handlers-editor .carousel .slider-wrapper.axis-horizontal .slider .slide{flex-direction:column;flex-flow:column}.qodly-http-handlers-editor .carousel .slider-wrapper.axis-vertical{-ms-box-orient:horizontal;display:-moz-flex;display:flex}.qodly-http-handlers-editor .carousel .slider-wrapper.axis-vertical .slider{flex-direction:column}.qodly-http-handlers-editor .carousel .slider{margin:0;padding:0;position:relative;list-style:none;width:100%}.qodly-http-handlers-editor .carousel .slider.animated{transition:all .35s ease-in-out}.qodly-http-handlers-editor .carousel .slide{min-width:100%;margin:0;position:relative;text-align:center}.qodly-http-handlers-editor .carousel .slide img{width:100%;vertical-align:top;border:0}.qodly-http-handlers-editor .carousel .slide iframe{display:inline-block;width:calc(100% - 80px);margin:0 40px 40px;border:0}.qodly-http-handlers-editor .carousel .slide .legend{transition:all .5s ease-in-out;position:absolute;bottom:40px;left:50%;margin-left:-45%;width:90%;border-radius:10px;background:#000;color:#fff;padding:10px;font-size:12px;text-align:center;opacity:.25;transition:opacity .35s ease-in-out}.qodly-http-handlers-editor .carousel .control-dots{position:absolute;bottom:0;margin:10px 0;padding:0;text-align:center;width:100%;z-index:1}@media (min-width:960px){.qodly-http-handlers-editor .carousel .control-dots{bottom:0}}.qodly-http-handlers-editor .carousel .control-dots .dot{transition:opacity .25s ease-in;opacity:.3;filter:alpha(opacity=30);box-shadow:1px 1px 2px #000000e6;background:#fff;border-radius:50%;width:8px;height:8px;cursor:pointer;display:inline-block;margin:0 8px}.qodly-http-handlers-editor .carousel .control-dots .dot.selected,.qodly-http-handlers-editor .carousel .control-dots .dot:hover{opacity:1;filter:alpha(opacity=100)}.qodly-http-handlers-editor .carousel .carousel-status{position:absolute;top:0;right:0;padding:5px;font-size:10px;text-shadow:1px 1px 1px rgba(0,0,0,.9);color:#fff}.qodly-http-handlers-editor .carousel:hover .slide .legend{opacity:1}.qodly-http-handlers-editor .base-checkbox-container{display:inline-flex;align-items:center;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.qodly-http-handlers-editor .base-checkbox-input:disabled+.base-checkbox-control,.qodly-http-handlers-editor .base-checkbox-input:disabled~.base-checkbox-label{cursor:not-allowed;opacity:.6}.qodly-http-handlers-editor .base-checkbox-input{position:absolute;opacity:0;height:0;width:0}.qodly-http-handlers-editor .base-checkbox-control{display:inline-flex;justify-content:center;align-items:center;width:1rem;height:1rem;border:1px solid #eaeaea;border-radius:2px;transition:all .15s ease-out}.qodly-http-handlers-editor .base-checkbox-label{margin-left:.5rem}.qodly-http-handlers-editor .base-checkbox-container:not([data-invalid=true]) .base-checkbox-input:checked+.base-checkbox-control,.qodly-http-handlers-editor .base-checkbox-container:not([data-invalid=true]) .base-checkbox-input:indeterminate+.base-checkbox-control{background-color:var(--ws-primary-dark);border-color:var(--ws-primary-light)}.qodly-http-handlers-editor .base-checkbox-container:not([data-invalid=true]) .base-checkbox-input:checked+.base-checkbox-control:hover,.qodly-http-handlers-editor .base-checkbox-container:not([data-invalid=true]) .base-checkbox-input:indeterminate+.base-checkbox-control:hover{border-color:var(--ws-primary-dark)}.qodly-http-handlers-editor .base-checkbox-input:disabled+.base-checkbox-control{background-color:var(--ws-grey-50);border-color:#eaeaea}.qodly-http-handlers-editor .base-checkbox-control .base-checkbox-icon{color:#fff;width:100%;height:100%;padding:1px}.qodly-http-handlers-editor .base-checkbox-input:disabled:checked+.base-checkbox-control .base-checkbox-icon,.qodly-http-handlers-editor .base-checkbox-input:disabled:indeterminate+.base-checkbox-control .base-checkbox-icon{color:#b3b3b3}.qodly-http-handlers-editor .base-checkbox-container[data-invalid=true] .base-checkbox-control{border-color:var(--ws-negative-400);box-shadow:0 0 0 1px var(--ws-negative-400)}.qodly-http-handlers-editor .base-checkbox-container[data-invalid=true] .base-checkbox-input:checked+.base-checkbox-control,.qodly-http-handlers-editor .base-checkbox-container[data-invalid=true] .base-checkbox-input:indeterminate+.base-checkbox-control{background-color:var(--ws-negative-400)}.qodly-http-handlers-editor .shrink-0{flex-shrink:0}.qodly-http-handlers-editor *,.qodly-http-handlers-editor :after,.qodly-http-handlers-editor :before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.qodly-http-handlers-editor ::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.qodly-http-handlers-editor *,.qodly-http-handlers-editor :after,.qodly-http-handlers-editor :before{box-sizing:border-box;border:0 solid #e5e7eb}.qodly-http-handlers-editor :after,.qodly-http-handlers-editor :before{--tw-content:""}.qodly-http-handlers-editor :host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}.qodly-http-handlers-editor hr{height:0;color:inherit;border-top-width:1px}.qodly-http-handlers-editor abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.qodly-http-handlers-editor h1,.qodly-http-handlers-editor h2,.qodly-http-handlers-editor h3,.qodly-http-handlers-editor h4,.qodly-http-handlers-editor h5,.qodly-http-handlers-editor h6{font-size:inherit;font-weight:inherit}.qodly-http-handlers-editor a{color:inherit;text-decoration:inherit}.qodly-http-handlers-editor b,.qodly-http-handlers-editor strong{font-weight:bolder}.qodly-http-handlers-editor code,.qodly-http-handlers-editor kbd,.qodly-http-handlers-editor pre,.qodly-http-handlers-editor samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}.qodly-http-handlers-editor small{font-size:80%}.qodly-http-handlers-editor sub,.qodly-http-handlers-editor sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.qodly-http-handlers-editor sub{bottom:-.25em}.qodly-http-handlers-editor sup{top:-.5em}.qodly-http-handlers-editor table{text-indent:0;border-color:inherit;border-collapse:collapse}.qodly-http-handlers-editor button,.qodly-http-handlers-editor input,.qodly-http-handlers-editor optgroup,.qodly-http-handlers-editor select,.qodly-http-handlers-editor textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}.qodly-http-handlers-editor button,.qodly-http-handlers-editor select{text-transform:none}.qodly-http-handlers-editor button,.qodly-http-handlers-editor input:where([type=button]),.qodly-http-handlers-editor input:where([type=reset]),.qodly-http-handlers-editor input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}.qodly-http-handlers-editor :-moz-focusring{outline:auto}.qodly-http-handlers-editor :-moz-ui-invalid{box-shadow:none}.qodly-http-handlers-editor progress{vertical-align:baseline}.qodly-http-handlers-editor ::-webkit-inner-spin-button,.qodly-http-handlers-editor ::-webkit-outer-spin-button{height:auto}.qodly-http-handlers-editor [type=search]{-webkit-appearance:textfield;outline-offset:-2px}.qodly-http-handlers-editor ::-webkit-search-decoration{-webkit-appearance:none}.qodly-http-handlers-editor ::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}.qodly-http-handlers-editor summary{display:list-item}.qodly-http-handlers-editor blockquote,.qodly-http-handlers-editor dd,.qodly-http-handlers-editor dl,.qodly-http-handlers-editor figure,.qodly-http-handlers-editor h1,.qodly-http-handlers-editor h2,.qodly-http-handlers-editor h3,.qodly-http-handlers-editor h4,.qodly-http-handlers-editor h5,.qodly-http-handlers-editor h6,.qodly-http-handlers-editor hr,.qodly-http-handlers-editor p,.qodly-http-handlers-editor pre{margin:0}.qodly-http-handlers-editor fieldset{margin:0;padding:0}.qodly-http-handlers-editor legend{padding:0}.qodly-http-handlers-editor menu,.qodly-http-handlers-editor ol,.qodly-http-handlers-editor ul{list-style:none;margin:0;padding:0}.qodly-http-handlers-editor dialog{padding:0}.qodly-http-handlers-editor textarea{resize:vertical}.qodly-http-handlers-editor input::-moz-placeholder,.qodly-http-handlers-editor textarea::-moz-placeholder{opacity:1;color:#9ca3af}.qodly-http-handlers-editor input::placeholder,.qodly-http-handlers-editor textarea::placeholder{opacity:1;color:#9ca3af}.qodly-http-handlers-editor [role=button],.qodly-http-handlers-editor button{cursor:pointer}.qodly-http-handlers-editor :disabled{cursor:default}.qodly-http-handlers-editor audio,.qodly-http-handlers-editor canvas,.qodly-http-handlers-editor embed,.qodly-http-handlers-editor iframe,.qodly-http-handlers-editor img,.qodly-http-handlers-editor object,.qodly-http-handlers-editor svg,.qodly-http-handlers-editor video{display:block;vertical-align:middle}.qodly-http-handlers-editor img,.qodly-http-handlers-editor video{max-width:100%;height:auto}.qodly-http-handlers-editor [hidden]:where(:not([hidden=until-found])){display:none}.qodly-http-handlers-editor{--ws-primary-50:#f2ddff;--ws-primary-100:#edd0ff;--ws-primary-300:#d0acef;--ws-primary-400:#c190ea;--ws-primary-600:#935ebf;--ws-primary-800:#563374;--ws-primary-900:#381e4f;--ws-primary-950:#29133c;--ws-positive-50:#ecf9f2;--ws-positive-100:#d9f2e6;--ws-positive-300:#8ed9b3;--ws-positive-400:#68cd99;--ws-positive-700:#28734d;--ws-positive-800:#28734d;--ws-positive-900:#0d261a;--ws-positive-950:#07130d;--ws-warning-50:#fff7e6;--ws-warning-100:#ffefcc;--ws-warning-300:#fed066;--ws-warning-400:#fdc133;--ws-warning-700:#986a00;--ws-warning-800:#654700;--ws-warning-900:#332300;--ws-warning-950:#191200;--ws-negative-50:#feeeee;--ws-negative-100:#fcdcdc;--ws-negative-300:#f69797;--ws-negative-400:#f37575;--ws-negative-700:#9a3232;--ws-negative-800:#6e2222;--ws-negative-900:#431212;--ws-negative-950:#2e0a0a;--ws-grey-300:#535353;--ws-grey-400:#484848;--ws-grey-600:#3f3f3f;--ws-palette-primary-200:#e0c7f5;--ws-palette-primary-500:#b174e5;--ws-palette-primary-700:#75499a;--ws-button-bg:var(--vscode-button-background,var(--theia-button-background,var(--ws-palette-primary-500)));--ws-button-fg:var(--vscode-button-foreground,var(--theia-button-foreground,var(--ws-palette-white)));--ws-primary-default:var(--ws-button-bg);--ws-button-text:var(--ws-button-fg);--ws-primary-hover:var(--vscode-button-hoverBackground,var(--theia-button-hoverBackground,var(--ws-palette-primary-700)));--ws-primary-light:var(--vscode-editorInfo-foreground,var(--theia-button-hoverBackground,var(--ws-palette-primary-200)));--ws-primary-dark:var(--vscode-editor-lineHighlightBackground,var(--theia-button-hoverBackground,var(--ws-palette-primary-700)));--ws-primary-200:var(--ws-primary-light);--ws-primary-500:var(--ws-primary-default);--ws-primary-700:var(--ws-primary-hover);--ws-palette-positive-200:#b3e6cc;--ws-palette-positive-500:#42c080;--ws-palette-positive-600:#359a66;--ws-positive-dark:var(--vscode-gitDecoration-addedResourceForeground,var(--ws-palette-positive-600));--ws-positive-hover:var(--ws-positive-dark);--ws-positive-bg:var(--ws-palette-positive-100);--ws-positive-light:var(--ws-palette-positive-200);--ws-positive-border:var(--ws-positive-500);--ws-positive-text:var(--ws-positive-500);--ws-positive-500:var(--vscode-testing-iconPassed,var(--ws-palette-positive-500));--ws-positive-200:var(--ws-positive-light);--ws-positive-600:var(--ws-positive-dark);--ws-palette-warning-200:#fee099;--ws-palette-warning-500:#fdb100;--ws-palette-warning-600:#ca8e00;--ws-warning-hover:var(--ws-warning-600);--ws-warning-text:var(--ws-warning-500);--ws-warning-border:var(--ws-warning-500);--ws-warning-500:var(--vscode-list-warningForeground,var(--ws-palette-warning-500));--ws-warning-bg:var(--vscode-inputValidation-warningBackground,var(--ws-palette-warning-500));--ws-warning-light:var(--vscode-inputValidation-warningBackground,var(--ws-palette-warning-200));--ws-warning-dark:var(--vscode-inputValidation-warningBackground,var(--ws-palette-warning-600));--ws-warning-200:var(--ws-warning-light);--ws-warning-600:var(--ws-warning-dark);--ws-palette-negative-200:#f9baba;--ws-palette-negative-500:#f05252;--ws-palette-negative-600:#c54242;--ws-negative-hover:var(--ws-negative-600);--ws-negative-text:var(--ws-negative-500);--ws-negative-500:var(--vscode-errorForeground,var(--ws-palette-negative-500));--ws-negative-light:var(--vscode-inputValidation-errorBackground,var(--ws-palette-negative-200));--ws-negative-dark:var(--vscode-inputValidation-errorBackground,var(--ws-palette-negative-600));--ws-negative-200:var(--ws-negative-light);--ws-negative-600:var(--ws-negative-dark);--ws-palette-white:#fff;--ws-palette-grey-50:#f1f5f9;--ws-palette-grey-100:#ccc;--ws-palette-grey-200:#888;--ws-palette-grey-300:#535353;--ws-palette-grey-400:#484848;--ws-palette-grey-500:#444;--ws-palette-grey-600:#3f3f3f;--ws-palette-grey-700:#393939;--ws-palette-grey-800:#383838;--ws-palette-grey-900:#262626;--ws-palette-grey-950:#151515;--ws-bg-default:var(--vscode-editor-background,var(--theia-editor-background,var(--ws-palette-white)));--ws-bg-foreground:var(--vscode-editor-foreground,var(--theia-panel-foreground,var(--ws-palette-grey-50)));--ws-grey-50:var(--ws-bg-foreground);--ws-grey-100:var(--vscode-panel-background,var(--theia-panel-background,var(--ws-palette-grey-100)));--ws-grey-200:var(--vscode-editor-background,var(--theia-editor-background,var(--ws-palette-grey-200)));--ws-grey-950:var(--vscode-panel-border,var(--theia-border-color,var(--ws-palette-grey-950)));--ws-grey-500:var(--vscode-descriptionForeground,var(--ws-palette-grey-500));--ws-grey-800:var(--vscode-descriptionForeground,var(--ws-palette-grey-800));--ws-card-bg:var(--vscode-editorGroupHeader-tabsBackground,var(--theia-editorGroupHeader-tabsBackground,var(--ws-palette-grey-900)));--ws-card-border:var(--vscode-editorGroupHeader-tabsBorder,var(--theia-editorGroupHeader-tabsBorder,var(--ws-palette-grey-50)));--ws-palette-input-bg:var(--ws-palette-grey-300);--ws-palette-input-border:var(--ws-palette-grey-300);--ws-palette-input-text:var(--ws-palette-grey-50);--ws-palette-input-placeholder:var(--ws-palette-grey-200);--ws-palette-input-focus-border:var(--ws-palette-grey-50);--ws-input-bg:var(--vscode-input-background,var(--vscode-editorWidget-background,var(--theia-input-background,var(--ws-palette-input-bg))));--ws-input-border:var(--vscode-input-border,var(--vscode-panel-border,var(--theia-input-border,var(--ws-palette-input-border))));--ws-input-text:var(--vscode-input-foreground,var(--vscode-editor-foreground,var(--theia-input-foreground,var(--ws-palette-input-text))));--ws-input-placeholder:var(--vscode-input-placeholderForeground,var(--vscode-editor-foreground,var(--theia-input-placeholderForeground,var(--ws-palette-input-placeholder))));--ws-input-focus-border:var(--vscode-focusBorder,var(--vscode-button-background,var(--theia-focusBorder,var(--ws-palette-primary-500))));--ws-select-bg:var(--vscode-dropdown-background,var(--vscode-editorWidget-background,var(--theia-dropdown-background,var(--ws-input-bg))));--ws-select-border:var(--vscode-dropdown-border,var(--vscode-panel-border,var(--theia-dropdown-border,var(--ws-input-border))));--ws-select-text:var(--vscode-dropdown-foreground,var(--vscode-editor-foreground,var(--theia-dropdown-foreground,var(--ws-input-text))));--ws-select-list-bg:var(--vscode-editorWidget-background,var(--theia-editorWidget-background,var(--ws-palette-grey-900)));--ws-input-option-hover-bg:var(--vscode-list-hoverBackground,var(--vscode-button-hoverBackground,var(--theia-list-hoverBackground,var(--ws-palette-primary-700))));--ws-input-option-active-bg:var(--vscode-list-activeSelectionBackground,var(--theia-list-activeSelectionBackground,var(--ws-palette-primary-500)));--ws-input-option-active-text:var(--vscode-list-activeSelectionForeground,var(--theia-list-activeSelectionForeground,var(--ws-palette-white)));--ws-input-error-border:var(--vscode-inputValidation-errorBorder,var(--theia-inputValidation-errorBorder,var(--ws-palette-negative-500)));--ws-input-error-bg:var(--vscode-inputValidation-errorBackground,var(--theia-inputValidation-errorBackground,var(--ws-palette-negative-200)));--ws-input-warning-border:var(--vscode-inputValidation-warningBorder,var(--theia-inputValidation-warningBorder,var(--ws-palette-warning-500)));--ws-input-warning-bg:var(--vscode-inputValidation-warningBackground,var(--theia-inputValidation-warningBackground,var(--ws-palette-warning-200)));--ws-input-info-bg:var(--vscode-panel-background,var(--theia-inputValidation-infoBackground,var(--ws-palette-primary-200)));--ws-input-message-bg:var(--vscode-editor-lineHighlightBackground,var(--theia-inputValidation-infoBackground,var(--ws-palette-primary-200)));--ws-input-message-text:var(--vscode-editorInfo-foreground,var(--vscode-editor-foreground,var(--theia-inputValidation-infoForeground,var(--ws-palette-primary-500))));--ws-inactive-text:var(--vscode-disabledForeground,var(--vscode-editor-foreground,var(--theia-disabled-foreground,var(--ws-palette-grey-200))));--ws-disable-bg:var(--vscode-button-disabledBackground,var(--theia-button-disabledBackground,var(--ws-palette-grey-300)));--ws-disable-input:var(--vscode-button-disabledBackground,var(--theia-button-disabledBackground,var(--ws-palette-grey-200)));--ws-text-muted:var(--vscode-descriptionForeground,var(--vscode-editor-foreground,var(--theia-descriptionForeground,var(--ws-palette-grey-100))));--ws-panel-0:var(--vscode-editor-background,var(--theia-editor-background,var(--ws-palette-grey-900)));--ws-panel-1:var(--vscode-sideBar-background,var(--theia-sideBar-background,var(--ws-palette-grey-700)));--ws-panel-2:var(--vscode-panel-background,var(--theia-panel-background,var(--ws-palette-grey-900)));--ws-panel-3:var(--vscode-editorGroupHeader-tabsBackground,var(--theia-editorGroupHeader-tabsBackground,var(--ws-palette-grey-900)));--ws-panel-4:var(--vscode-editorWidget-background,var(--theia-editorWidget-background,var(--ws-palette-grey-300)));--ws-panel-5:var(--vscode-editorWidget-background,var(--theia-editorWidget-background,var(--ws-palette-grey-950)));--ws-panel-border-subtle:var(--vscode-panel-border,var(--theia-border-color,var(--ws-palette-grey-100)));--ws-panel-border-strong:var(--vscode-contrastBorder,var(--theia-contrastBorder,var(--ws-palette-grey-300)));--ws-tab-bg-default:var(--vscode-editorGroupHeader-tabsBackground,var(--ws-palette-grey-900));--ws-tab-border:var(--vscode-tab-border,var(--ws-palette-grey-950));--ws-tab-active-bg:var(--vscode-tab-activeBackground,var(--ws-palette-grey-800));--ws-tab-active-fg:var(--vscode-tab-activeForeground,var(--ws-bg-foreground));--ws-tab-inactive-bg:var(--vscode-tab-inactiveBackground,var(--ws-palette-grey-900));--ws-tab-inactive-fg:var(--vscode-tab-inactiveForeground,var(--ws-palette-grey-200));--ws-tab-hover-bg:var(--vscode-tab-hoverBackground,var(--ws-palette-grey-700));--ws-panel-header-bg:var(--vscode-sideBarSectionHeader-background,var(--ws-palette-grey-800));--ws-panel-header-fg:var(--vscode-sideBarSectionHeader-foreground,var(--ws-bg-foreground));--ws-panel-bg:var(--vscode-panel-background,var(--ws-bg-default));--ws-panel-border:var(--vscode-panel-border,var(--ws-palette-grey-950));--ws-panel-title-active-border:var(--vscode-panelTitle-activeBorder,var(--ws-palette-primary-500));--ws-panel-title-active-fg:var(--vscode-panelTitle-activeForeground,var(--ws-bg-foreground));--ws-panel-title-inactive-fg:var(--vscode-panelTitle-inactiveForeground,var(--ws-palette-grey-100))}.qodly-http-handlers-editor .container{width:100%}@media (min-width:640px){.qodly-http-handlers-editor .container{max-width:640px}}@media (min-width:768px){.qodly-http-handlers-editor .container{max-width:768px}}@media (min-width:1024px){.qodly-http-handlers-editor .container{max-width:1024px}}@media (min-width:1280px){.qodly-http-handlers-editor .container{max-width:1280px}}@media (min-width:1536px){.qodly-http-handlers-editor .container{max-width:1536px}}.qodly-http-handlers-editor .prose{color:var(--tw-prose-body);max-width:65ch}.qodly-http-handlers-editor .prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.qodly-http-handlers-editor .prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.qodly-http-handlers-editor .prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);text-decoration:underline;font-weight:500}.qodly-http-handlers-editor .prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.qodly-http-handlers-editor .prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em}.qodly-http-handlers-editor .prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.qodly-http-handlers-editor .prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.qodly-http-handlers-editor .prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.qodly-http-handlers-editor .prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.qodly-http-handlers-editor .prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.qodly-http-handlers-editor .prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.qodly-http-handlers-editor .prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.qodly-http-handlers-editor .prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.qodly-http-handlers-editor .prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.qodly-http-handlers-editor .prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em}.qodly-http-handlers-editor .prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{font-weight:400;color:var(--tw-prose-counters)}.qodly-http-handlers-editor .prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.qodly-http-handlers-editor .prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.qodly-http-handlers-editor .prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.qodly-http-handlers-editor .prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-style:italic;color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em}.qodly-http-handlers-editor .prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.qodly-http-handlers-editor .prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.qodly-http-handlers-editor .prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.qodly-http-handlers-editor .prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:900;color:inherit}.qodly-http-handlers-editor .prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.qodly-http-handlers-editor .prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:800;color:inherit}.qodly-http-handlers-editor .prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.qodly-http-handlers-editor .prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.qodly-http-handlers-editor .prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.qodly-http-handlers-editor .prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.qodly-http-handlers-editor .prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.qodly-http-handlers-editor .prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-top:2em;margin-bottom:2em}.qodly-http-handlers-editor .prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.qodly-http-handlers-editor .prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-family:inherit;color:var(--tw-prose-kbd);box-shadow:0 0 0 1px var(--tw-prose-kbd-shadows),0 3px 0 var(--tw-prose-kbd-shadows);font-size:.875em;border-radius:.3125rem;padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;padding-inline-start:.375em}.qodly-http-handlers-editor .prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-weight:600;font-size:.875em}.qodly-http-handlers-editor .prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}.qodly-http-handlers-editor .prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.qodly-http-handlers-editor .prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.qodly-http-handlers-editor .prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.qodly-http-handlers-editor .prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding-top:.8571429em;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-inline-start:1.1428571em}.qodly-http-handlers-editor .prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.qodly-http-handlers-editor .prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}.qodly-http-handlers-editor .prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.qodly-http-handlers-editor .prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){width:100%;table-layout:auto;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.qodly-http-handlers-editor .prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.qodly-http-handlers-editor .prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;vertical-align:bottom;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em}.qodly-http-handlers-editor .prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.qodly-http-handlers-editor .prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.qodly-http-handlers-editor .prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.qodly-http-handlers-editor .prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.qodly-http-handlers-editor .prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.qodly-http-handlers-editor .prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.qodly-http-handlers-editor .prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.qodly-http-handlers-editor .prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.qodly-http-handlers-editor .prose{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:rgba(17,24,39,.1);--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:hsla(0,0%,100%,.1);--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.qodly-http-handlers-editor .prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.qodly-http-handlers-editor .prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.qodly-http-handlers-editor .prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.qodly-http-handlers-editor .prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.qodly-http-handlers-editor .prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.qodly-http-handlers-editor .prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.qodly-http-handlers-editor .prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.qodly-http-handlers-editor .prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.qodly-http-handlers-editor .prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.qodly-http-handlers-editor .prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.qodly-http-handlers-editor .prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.qodly-http-handlers-editor .prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.qodly-http-handlers-editor .prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.qodly-http-handlers-editor .prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.qodly-http-handlers-editor .prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.5714286em;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em}.qodly-http-handlers-editor .prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.qodly-http-handlers-editor .prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.qodly-http-handlers-editor .prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.qodly-http-handlers-editor .prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.qodly-http-handlers-editor .prose-sm{font-size:.875rem;line-height:1.7142857}.qodly-http-handlers-editor .prose-sm :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em}.qodly-http-handlers-editor .prose-sm :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-top:.8888889em;margin-bottom:.8888889em}.qodly-http-handlers-editor .prose-sm :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.3333333em;margin-bottom:1.3333333em;padding-inline-start:1.1111111em}.qodly-http-handlers-editor .prose-sm :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:2.1428571em;margin-top:0;margin-bottom:.8em;line-height:1.2}.qodly-http-handlers-editor .prose-sm :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.4285714em;margin-top:1.6em;margin-bottom:.8em;line-height:1.4}.qodly-http-handlers-editor .prose-sm :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;margin-top:1.5555556em;margin-bottom:.4444444em;line-height:1.5555556}.qodly-http-handlers-editor .prose-sm :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.4285714em;margin-bottom:.5714286em;line-height:1.4285714}.qodly-http-handlers-editor .prose-sm :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.qodly-http-handlers-editor .prose-sm :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.qodly-http-handlers-editor .prose-sm :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.qodly-http-handlers-editor .prose-sm :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.qodly-http-handlers-editor .prose-sm :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;border-radius:.3125rem;padding-top:.1428571em;padding-inline-end:.3571429em;padding-bottom:.1428571em;padding-inline-start:.3571429em}.qodly-http-handlers-editor .prose-sm :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em}.qodly-http-handlers-editor .prose-sm :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}.qodly-http-handlers-editor .prose-sm :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8888889em}.qodly-http-handlers-editor .prose-sm :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.6666667;margin-top:1.6666667em;margin-bottom:1.6666667em;border-radius:.25rem;padding-top:.6666667em;padding-inline-end:1em;padding-bottom:.6666667em;padding-inline-start:1em}.qodly-http-handlers-editor .prose-sm :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em;padding-inline-start:1.5714286em}.qodly-http-handlers-editor .prose-sm :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em;padding-inline-start:1.5714286em}.qodly-http-handlers-editor .prose-sm :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.2857143em;margin-bottom:.2857143em}.qodly-http-handlers-editor .prose-sm :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.4285714em}.qodly-http-handlers-editor .prose-sm :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.4285714em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5714286em;margin-bottom:.5714286em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5714286em;margin-bottom:.5714286em}.qodly-http-handlers-editor .prose-sm :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.2857143em;padding-inline-start:1.5714286em}.qodly-http-handlers-editor .prose-sm :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2.8571429em;margin-bottom:2.8571429em}.qodly-http-handlers-editor .prose-sm :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose-sm :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose-sm :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose-sm :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose-sm :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.qodly-http-handlers-editor .prose-sm :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:1em;padding-bottom:.6666667em;padding-inline-start:1em}.qodly-http-handlers-editor .prose-sm :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.qodly-http-handlers-editor .prose-sm :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.qodly-http-handlers-editor .prose-sm :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.6666667em;padding-inline-end:1em;padding-bottom:.6666667em;padding-inline-start:1em}.qodly-http-handlers-editor .prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.qodly-http-handlers-editor .prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.qodly-http-handlers-editor .prose-sm :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.qodly-http-handlers-editor .prose-sm :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.qodly-http-handlers-editor .prose-sm :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.qodly-http-handlers-editor .pointer-events-none{pointer-events:none}.qodly-http-handlers-editor .invisible{visibility:hidden}.qodly-http-handlers-editor .static{position:static}.qodly-http-handlers-editor .absolute{position:absolute}.qodly-http-handlers-editor .relative{position:relative}.qodly-http-handlers-editor .inset-0{top:0;right:0;bottom:0;left:0}.qodly-http-handlers-editor .left-1\/2{left:50%}.qodly-http-handlers-editor .right-1{right:.25rem}.qodly-http-handlers-editor .top-1{top:.25rem}.qodly-http-handlers-editor .top-1\/2{top:50%}.qodly-http-handlers-editor .isolate{isolation:isolate}.qodly-http-handlers-editor .z-0{z-index:0}.qodly-http-handlers-editor .z-10{z-index:10}.qodly-http-handlers-editor .z-20{z-index:20}.qodly-http-handlers-editor .z-\[1000\]{z-index:1000}.qodly-http-handlers-editor .z-\[1999\]{z-index:1999}.qodly-http-handlers-editor .mx-1{margin-left:.25rem;margin-right:.25rem}.qodly-http-handlers-editor .mx-auto{margin-left:auto;margin-right:auto}.qodly-http-handlers-editor .-mt-6{margin-top:-1.5rem}.qodly-http-handlers-editor .mb-1{margin-bottom:.25rem}.qodly-http-handlers-editor .mb-2{margin-bottom:.5rem}.qodly-http-handlers-editor .mb-3{margin-bottom:.75rem}.qodly-http-handlers-editor .mb-4{margin-bottom:1rem}.qodly-http-handlers-editor .ml-1{margin-left:.25rem}.qodly-http-handlers-editor .ml-auto{margin-left:auto}.qodly-http-handlers-editor .mr-1{margin-right:.25rem}.qodly-http-handlers-editor .mr-2{margin-right:.5rem}.qodly-http-handlers-editor .mr-3{margin-right:.75rem}.qodly-http-handlers-editor .mr-4{margin-right:1rem}.qodly-http-handlers-editor .mt-1{margin-top:.25rem}.qodly-http-handlers-editor .mt-3{margin-top:.75rem}.qodly-http-handlers-editor .mt-4{margin-top:1rem}.qodly-http-handlers-editor .mt-6{margin-top:1.5rem}.qodly-http-handlers-editor .mt-px{margin-top:1px}.qodly-http-handlers-editor .block{display:block}.qodly-http-handlers-editor .inline-block{display:inline-block}.qodly-http-handlers-editor .inline{display:inline}.qodly-http-handlers-editor .flex{display:flex}.qodly-http-handlers-editor .inline-flex{display:inline-flex}.qodly-http-handlers-editor .table{display:table}.qodly-http-handlers-editor .grid{display:grid}.qodly-http-handlers-editor .hidden{display:none}.qodly-http-handlers-editor .size-4{width:1rem;height:1rem}.qodly-http-handlers-editor .size-6{width:1.5rem;height:1.5rem}.qodly-http-handlers-editor .h-1\/2{height:50%}.qodly-http-handlers-editor .h-12{height:3rem}.qodly-http-handlers-editor .h-2\.5{height:.625rem}.qodly-http-handlers-editor .h-20{height:5rem}.qodly-http-handlers-editor .h-3{height:.75rem}.qodly-http-handlers-editor .h-3\.5{height:.875rem}.qodly-http-handlers-editor .h-4{height:1rem}.qodly-http-handlers-editor .h-5{height:1.25rem}.qodly-http-handlers-editor .h-6{height:1.5rem}.qodly-http-handlers-editor .h-60{height:15rem}.qodly-http-handlers-editor .h-8{height:2rem}.qodly-http-handlers-editor .h-9{height:2.25rem}.qodly-http-handlers-editor .h-full{height:100%}.qodly-http-handlers-editor .h-screen{height:100vh}.qodly-http-handlers-editor .max-h-\[10rem\]{max-height:10rem}.qodly-http-handlers-editor .min-h-\[10rem\]{min-height:10rem}.qodly-http-handlers-editor .w-1\/2{width:50%}.qodly-http-handlers-editor .w-10{width:2.5rem}.qodly-http-handlers-editor .w-12{width:3rem}.qodly-http-handlers-editor .w-2\.5{width:.625rem}.qodly-http-handlers-editor .w-20{width:5rem}.qodly-http-handlers-editor .w-3{width:.75rem}.qodly-http-handlers-editor .w-3\.5{width:.875rem}.qodly-http-handlers-editor .w-4{width:1rem}.qodly-http-handlers-editor .w-5{width:1.25rem}.qodly-http-handlers-editor .w-6{width:1.5rem}.qodly-http-handlers-editor .w-60{width:15rem}.qodly-http-handlers-editor .w-7{width:1.75rem}.qodly-http-handlers-editor .w-8{width:2rem}.qodly-http-handlers-editor .w-9{width:2.25rem}.qodly-http-handlers-editor .w-96{width:24rem}.qodly-http-handlers-editor .w-\[--width\]{width:var(--width)}.qodly-http-handlers-editor .w-full{width:100%}.qodly-http-handlers-editor .w-screen{width:100vw}.qodly-http-handlers-editor .min-w-0{min-width:0}.qodly-http-handlers-editor .min-w-\[1200px\]{min-width:1200px}.qodly-http-handlers-editor .max-w-sm{max-width:24rem}.qodly-http-handlers-editor .flex-1{flex:1 1 0%}.qodly-http-handlers-editor .flex-none{flex:none}.qodly-http-handlers-editor .flex-shrink-0,.qodly-http-handlers-editor .shrink-0{flex-shrink:0}.qodly-http-handlers-editor .-translate-x-1\/2{--tw-translate-x:-50%}.qodly-http-handlers-editor .-translate-x-1\/2,.qodly-http-handlers-editor .-translate-y-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .-translate-y-1\/2{--tw-translate-y:-50%}.qodly-http-handlers-editor .translate-x-0{--tw-translate-x:0px}.qodly-http-handlers-editor .translate-x-0,.qodly-http-handlers-editor .translate-x-2\.5{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .translate-x-2\.5{--tw-translate-x:.625rem}.qodly-http-handlers-editor .translate-x-3{--tw-translate-x:.75rem}.qodly-http-handlers-editor .translate-x-3,.qodly-http-handlers-editor .translate-x-\[0\.85rem\]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .translate-x-\[0\.85rem\]{--tw-translate-x:.85rem}.qodly-http-handlers-editor .-rotate-90{--tw-rotate:-90deg}.qodly-http-handlers-editor .-rotate-90,.qodly-http-handlers-editor .rotate-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .rotate-0{--tw-rotate:0deg}.qodly-http-handlers-editor .scale-100{--tw-scale-x:1;--tw-scale-y:1}.qodly-http-handlers-editor .scale-100,.qodly-http-handlers-editor .scale-95{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.qodly-http-handlers-editor .transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .cursor-pointer{cursor:pointer}.qodly-http-handlers-editor .select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.qodly-http-handlers-editor .list-disc{list-style-type:disc}.qodly-http-handlers-editor .flex-row{flex-direction:row}.qodly-http-handlers-editor .flex-col{flex-direction:column}.qodly-http-handlers-editor .place-content-center{place-content:center}.qodly-http-handlers-editor .content-center{align-content:center}.qodly-http-handlers-editor .items-start{align-items:flex-start}.qodly-http-handlers-editor .items-center{align-items:center}.qodly-http-handlers-editor .justify-start{justify-content:flex-start}.qodly-http-handlers-editor .justify-center{justify-content:center}.qodly-http-handlers-editor .justify-between{justify-content:space-between}.qodly-http-handlers-editor .gap-0\.5{gap:.125rem}.qodly-http-handlers-editor .gap-1{gap:.25rem}.qodly-http-handlers-editor .gap-2{gap:.5rem}.qodly-http-handlers-editor .gap-3{gap:.75rem}.qodly-http-handlers-editor .gap-4{gap:1rem}.qodly-http-handlers-editor .gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.qodly-http-handlers-editor .space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.qodly-http-handlers-editor .self-center{align-self:center}.qodly-http-handlers-editor .overflow-auto{overflow:auto}.qodly-http-handlers-editor .overflow-hidden{overflow:hidden}.qodly-http-handlers-editor .overflow-visible{overflow:visible}.qodly-http-handlers-editor .overflow-x-auto{overflow-x:auto}.qodly-http-handlers-editor .overflow-y-auto{overflow-y:auto}.qodly-http-handlers-editor .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.qodly-http-handlers-editor .text-ellipsis{text-overflow:ellipsis}.qodly-http-handlers-editor .whitespace-nowrap{white-space:nowrap}.qodly-http-handlers-editor .text-wrap{text-wrap:wrap}.qodly-http-handlers-editor .rounded{border-radius:4px}.qodly-http-handlers-editor .rounded-full{border-radius:9999px}.qodly-http-handlers-editor .rounded-lg{border-radius:.5rem}.qodly-http-handlers-editor .rounded-md{border-radius:.375rem}.qodly-http-handlers-editor .rounded-sm{border-radius:.125rem}.qodly-http-handlers-editor .rounded-b{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.qodly-http-handlers-editor .border{border-width:1px}.qodly-http-handlers-editor .border-2{border-width:2px}.qodly-http-handlers-editor .border-b{border-bottom-width:1px}.qodly-http-handlers-editor .border-t{border-top-width:1px}.qodly-http-handlers-editor .border-grey-50{border-color:var(--ws-grey-50)}.qodly-http-handlers-editor .border-primary-dark{border-color:var(--ws-primary-dark)}.qodly-http-handlers-editor .border-red-500{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity,1))}.qodly-http-handlers-editor .border-transparent{border-color:transparent}.qodly-http-handlers-editor .bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-fd-gray-default{--tw-bg-opacity:1;background-color:rgb(49 49 49/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-grey-200{background-color:var(--ws-grey-200)}.qodly-http-handlers-editor .bg-grey-300{background-color:var(--ws-grey-300)}.qodly-http-handlers-editor .bg-grey-600{background-color:var(--ws-grey-600)}.qodly-http-handlers-editor .bg-grey-900{background-color:var(--ws-grey-900)}.qodly-http-handlers-editor .bg-primary-dark{background-color:var(--ws-primary-dark)}.qodly-http-handlers-editor .bg-primary-hover{background-color:var(--ws-primary-hover)}.qodly-http-handlers-editor .bg-purple-200{--tw-bg-opacity:1;background-color:rgb(233 213 255/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-red-500{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-transparent{background-color:transparent}.qodly-http-handlers-editor .bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-opacity-80{--tw-bg-opacity:.8}.qodly-http-handlers-editor .stroke-body{stroke:var(--ws-bg-foreground)}.qodly-http-handlers-editor .stroke-current{stroke:currentColor}.qodly-http-handlers-editor .p-0\.5{padding:.125rem}.qodly-http-handlers-editor .p-1{padding:.25rem}.qodly-http-handlers-editor .p-2{padding:.5rem}.qodly-http-handlers-editor .p-6{padding:1.5rem}.qodly-http-handlers-editor .px-10{padding-left:2.5rem;padding-right:2.5rem}.qodly-http-handlers-editor .px-12{padding-left:3rem;padding-right:3rem}.qodly-http-handlers-editor .px-2{padding-left:.5rem;padding-right:.5rem}.qodly-http-handlers-editor .px-3{padding-left:.75rem;padding-right:.75rem}.qodly-http-handlers-editor .px-4{padding-left:1rem;padding-right:1rem}.qodly-http-handlers-editor .px-5{padding-left:1.25rem;padding-right:1.25rem}.qodly-http-handlers-editor .px-6{padding-left:1.5rem;padding-right:1.5rem}.qodly-http-handlers-editor .px-8{padding-left:2rem;padding-right:2rem}.qodly-http-handlers-editor .py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.qodly-http-handlers-editor .py-1{padding-top:.25rem;padding-bottom:.25rem}.qodly-http-handlers-editor .py-2{padding-top:.5rem;padding-bottom:.5rem}.qodly-http-handlers-editor .py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.qodly-http-handlers-editor .py-3{padding-top:.75rem;padding-bottom:.75rem}.qodly-http-handlers-editor .py-6{padding-top:1.5rem;padding-bottom:1.5rem}.qodly-http-handlers-editor .pb-8{padding-bottom:2rem}.qodly-http-handlers-editor .pl-2{padding-left:.5rem}.qodly-http-handlers-editor .pl-6{padding-left:1.5rem}.qodly-http-handlers-editor .pr-1{padding-right:.25rem}.qodly-http-handlers-editor .pt-0\.5{padding-top:.125rem}.qodly-http-handlers-editor .pt-1{padding-top:.25rem}.qodly-http-handlers-editor .text-left{text-align:left}.qodly-http-handlers-editor .text-center{text-align:center}.qodly-http-handlers-editor .font-poppins{font-family:Twemoji Country Flags,Poppins,sans-serif}.qodly-http-handlers-editor .text-2xl{font-size:1.5rem;line-height:2rem}.qodly-http-handlers-editor .text-\[12px\]{font-size:12px}.qodly-http-handlers-editor .text-base{font-size:1rem;line-height:1.5rem}.qodly-http-handlers-editor .text-lg{font-size:1.125rem;line-height:1.75rem}.qodly-http-handlers-editor .text-s{font-size:.75rem}.qodly-http-handlers-editor .text-sm{font-size:.875rem;line-height:1.25rem}.qodly-http-handlers-editor .text-xs{font-size:.65rem}.qodly-http-handlers-editor .text-xxs{font-size:.55rem}.qodly-http-handlers-editor .font-bold{font-weight:700}.qodly-http-handlers-editor .font-extralight{font-weight:200}.qodly-http-handlers-editor .font-medium{font-weight:500}.qodly-http-handlers-editor .font-semibold{font-weight:600}.qodly-http-handlers-editor .font-thin{font-weight:100}.qodly-http-handlers-editor .capitalize{text-transform:capitalize}.qodly-http-handlers-editor .italic{font-style:italic}.qodly-http-handlers-editor .leading-6{line-height:1.5rem}.qodly-http-handlers-editor .text-body{color:var(--ws-bg-foreground)}.qodly-http-handlers-editor .text-fd-gray-mild{--tw-text-opacity:1;color:rgb(179 179 179/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-gray-100{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-green-500{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-grey-100{color:var(--ws-grey-100)}.qodly-http-handlers-editor .text-grey-200{color:var(--ws-grey-200)}.qodly-http-handlers-editor .text-grey-50{color:var(--ws-grey-50)}.qodly-http-handlers-editor .text-inactive-text{color:var(--ws-inactive-text)}.qodly-http-handlers-editor .text-muted{color:var(--ws-text-muted)}.qodly-http-handlers-editor .text-primary{color:var(--ws-primary-default)}.qodly-http-handlers-editor .text-primary-dark{color:var(--ws-primary-dark)}.qodly-http-handlers-editor .text-purple-900{--tw-text-opacity:1;color:rgb(88 28 135/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-warning{color:var(--ws-warning-500)}.qodly-http-handlers-editor .text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-yellow-300{--tw-text-opacity:1;color:rgb(253 224 71/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-yellow-400{--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-yellow-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .opacity-0{opacity:0}.qodly-http-handlers-editor .opacity-10{opacity:.1}.qodly-http-handlers-editor .opacity-100{opacity:1}.qodly-http-handlers-editor .shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color)}.qodly-http-handlers-editor .shadow-2xl,.qodly-http-handlers-editor .shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.qodly-http-handlers-editor .shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.qodly-http-handlers-editor .shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.qodly-http-handlers-editor .outline{outline-style:solid}.qodly-http-handlers-editor .ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.qodly-http-handlers-editor .filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.qodly-http-handlers-editor .transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.qodly-http-handlers-editor .transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.qodly-http-handlers-editor .duration-200{transition-duration:.2s}.qodly-http-handlers-editor .duration-300{transition-duration:.3s}.qodly-http-handlers-editor .ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.qodly-http-handlers-editor .ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.qodly-http-handlers-editor .ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.qodly-http-handlers-editor .odd\:bg-white\/5:nth-child(odd){background-color:#ffffff0d}.qodly-http-handlers-editor .hover\:border-primary-hover:hover{border-color:var(--ws-primary-hover)}.qodly-http-handlers-editor .hover\:bg-grey-50:hover{background-color:var(--ws-grey-50)}.qodly-http-handlers-editor .hover\:bg-primary-hover:hover{background-color:var(--ws-primary-hover)}.qodly-http-handlers-editor .hover\:bg-red-400:hover{--tw-bg-opacity:1;background-color:rgb(248 113 113/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .hover\:bg-transparent:hover{background-color:transparent}.qodly-http-handlers-editor .hover\:text-primary-dark:hover{color:var(--ws-primary-dark)}.qodly-http-handlers-editor .focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.qodly-http-handlers-editor .focus\:ring-red-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(239 68 68/var(--tw-ring-opacity,1))}.qodly-http-handlers-editor .focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.qodly-http-handlers-editor .focus-visible\:ring-white:focus-visible{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity,1))}.qodly-http-handlers-editor .focus-visible\:ring-opacity-75:focus-visible{--tw-ring-opacity:.75}.qodly-http-handlers-editor .group:hover .group-hover\:block{display:block}
|
|
1
|
+
.qodly-http-handlers-editor [data-simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.qodly-http-handlers-editor .simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.qodly-http-handlers-editor .simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;left:0;top:0;bottom:0;right:0;width:auto!important;height:auto!important;z-index:0}.qodly-http-handlers-editor .simplebar-offset{direction:inherit!important;box-sizing:inherit!important;resize:none!important;position:absolute;top:0;left:0;bottom:0;right:0;padding:0;margin:0;-webkit-overflow-scrolling:touch}.qodly-http-handlers-editor .simplebar-content-wrapper{direction:inherit;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;max-width:100%;max-height:100%;scrollbar-width:none;-ms-overflow-style:none}.qodly-http-handlers-editor .simplebar-content-wrapper::-webkit-scrollbar,.qodly-http-handlers-editor .simplebar-hide-scrollbar::-webkit-scrollbar{display:none;width:0;height:0}.qodly-http-handlers-editor .simplebar-content:after,.qodly-http-handlers-editor .simplebar-content:before{content:" ";display:table}.qodly-http-handlers-editor .simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.qodly-http-handlers-editor .simplebar-height-auto-observer-wrapper{box-sizing:inherit!important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.qodly-http-handlers-editor .simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1}.qodly-http-handlers-editor .simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden}.qodly-http-handlers-editor [data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-moz-user-select:none;user-select:none;-webkit-user-select:none}.qodly-http-handlers-editor [data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.qodly-http-handlers-editor .simplebar-scrollbar{position:absolute;left:0;right:0;min-height:10px}.qodly-http-handlers-editor .simplebar-scrollbar:before{position:absolute;content:"";background:#000;border-radius:7px;left:2px;right:2px;opacity:0;transition:opacity .2s linear}.qodly-http-handlers-editor .simplebar-scrollbar.simplebar-visible:before{opacity:.5;transition:opacity 0s linear}.qodly-http-handlers-editor .simplebar-track.simplebar-vertical{top:0;width:11px}.qodly-http-handlers-editor .simplebar-track.simplebar-vertical .simplebar-scrollbar:before{top:2px;bottom:2px}.qodly-http-handlers-editor .simplebar-track.simplebar-horizontal{left:0;height:11px}.qodly-http-handlers-editor .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{height:100%;left:2px;right:2px}.qodly-http-handlers-editor .simplebar-track.simplebar-horizontal .simplebar-scrollbar{right:auto;left:0;top:2px;height:7px;min-height:0;min-width:10px;width:auto}.qodly-http-handlers-editor [data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{right:auto;left:0}.qodly-http-handlers-editor .hs-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll}.qodly-http-handlers-editor .simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none}.qodly-http-handlers-editor .fd-tree-node{display:flex;flex-direction:row;padding-right:8px;padding-left:8px}.qodly-http-handlers-editor .fd-tree-node-content{display:flex;flex-direction:row;flex:1 1 0%}.qodly-http-handlers-editor .carousel .control-arrow,.qodly-http-handlers-editor .carousel.carousel-slider .control-arrow{transition:all .25s ease-in;opacity:.4;filter:alpha(opacity=40);position:absolute;z-index:2;top:20px;background:none;border:0;font-size:32px;cursor:pointer}.qodly-http-handlers-editor .carousel .control-arrow:focus,.qodly-http-handlers-editor .carousel .control-arrow:hover{opacity:1;filter:alpha(opacity=100)}.qodly-http-handlers-editor .carousel .control-arrow:before,.qodly-http-handlers-editor .carousel.carousel-slider .control-arrow:before{margin:0 5px;display:inline-block;border-top:8px solid transparent;border-bottom:8px solid transparent;content:""}.qodly-http-handlers-editor .carousel .control-disabled.control-arrow{opacity:0;filter:alpha(opacity=0);cursor:inherit;display:none}.qodly-http-handlers-editor .carousel .control-prev.control-arrow{left:0}.qodly-http-handlers-editor .carousel .control-prev.control-arrow:before{border-right:8px solid #fff}.qodly-http-handlers-editor .carousel .control-next.control-arrow{right:0}.qodly-http-handlers-editor .carousel .control-next.control-arrow:before{border-left:8px solid #fff}.qodly-http-handlers-editor .carousel-root{outline:none}.qodly-http-handlers-editor .carousel{position:relative;width:100%}.qodly-http-handlers-editor .carousel *{box-sizing:border-box}.qodly-http-handlers-editor .carousel img{width:100%;display:inline-block;pointer-events:none}.qodly-http-handlers-editor .carousel .carousel{position:relative}.qodly-http-handlers-editor .carousel .control-arrow{outline:0;border:0;background:none;top:50%;margin-top:-13px;font-size:18px}.qodly-http-handlers-editor .carousel .thumbs-wrapper{margin:20px;overflow:hidden}.qodly-http-handlers-editor .carousel .thumbs{transition:all .15s ease-in;transform:translateZ(0);position:relative;list-style:none;white-space:nowrap}.qodly-http-handlers-editor .carousel .thumb{transition:border .15s ease-in;display:inline-block;margin-right:6px;white-space:nowrap;overflow:hidden;border:3px solid #fff;padding:2px}.qodly-http-handlers-editor .carousel .thumb:focus{border:3px solid #ccc;outline:none}.qodly-http-handlers-editor .carousel .thumb.selected,.qodly-http-handlers-editor .carousel .thumb:hover{border:3px solid #333}.qodly-http-handlers-editor .carousel .thumb img{vertical-align:top}.qodly-http-handlers-editor .carousel.carousel-slider{position:relative;margin:0;overflow:hidden}.qodly-http-handlers-editor .carousel.carousel-slider .control-arrow{top:0;color:#fff;font-size:26px;bottom:0;margin-top:0;padding:5px}.qodly-http-handlers-editor .carousel.carousel-slider .control-arrow:hover{background:#0003}.qodly-http-handlers-editor .carousel .slider-wrapper{overflow:hidden;margin:auto;width:100%;transition:height .15s ease-in}.qodly-http-handlers-editor .carousel .slider-wrapper.axis-horizontal .slider{-ms-box-orient:horizontal;display:-moz-flex;display:flex}.qodly-http-handlers-editor .carousel .slider-wrapper.axis-horizontal .slider .slide{flex-direction:column;flex-flow:column}.qodly-http-handlers-editor .carousel .slider-wrapper.axis-vertical{-ms-box-orient:horizontal;display:-moz-flex;display:flex}.qodly-http-handlers-editor .carousel .slider-wrapper.axis-vertical .slider{flex-direction:column}.qodly-http-handlers-editor .carousel .slider{margin:0;padding:0;position:relative;list-style:none;width:100%}.qodly-http-handlers-editor .carousel .slider.animated{transition:all .35s ease-in-out}.qodly-http-handlers-editor .carousel .slide{min-width:100%;margin:0;position:relative;text-align:center}.qodly-http-handlers-editor .carousel .slide img{width:100%;vertical-align:top;border:0}.qodly-http-handlers-editor .carousel .slide iframe{display:inline-block;width:calc(100% - 80px);margin:0 40px 40px;border:0}.qodly-http-handlers-editor .carousel .slide .legend{transition:all .5s ease-in-out;position:absolute;bottom:40px;left:50%;margin-left:-45%;width:90%;border-radius:10px;background:#000;color:#fff;padding:10px;font-size:12px;text-align:center;opacity:.25;transition:opacity .35s ease-in-out}.qodly-http-handlers-editor .carousel .control-dots{position:absolute;bottom:0;margin:10px 0;padding:0;text-align:center;width:100%;z-index:1}@media(min-width:960px){.qodly-http-handlers-editor .carousel .control-dots{bottom:0}}.qodly-http-handlers-editor .carousel .control-dots .dot{transition:opacity .25s ease-in;opacity:.3;filter:alpha(opacity=30);box-shadow:1px 1px 2px #000000e6;background:#fff;border-radius:50%;width:8px;height:8px;cursor:pointer;display:inline-block;margin:0 8px}.qodly-http-handlers-editor .carousel .control-dots .dot.selected,.qodly-http-handlers-editor .carousel .control-dots .dot:hover{opacity:1;filter:alpha(opacity=100)}.qodly-http-handlers-editor .carousel .carousel-status{position:absolute;top:0;right:0;padding:5px;font-size:10px;text-shadow:1px 1px 1px rgba(0,0,0,.9);color:#fff}.qodly-http-handlers-editor .carousel:hover .slide .legend{opacity:1}.qodly-http-handlers-editor .base-checkbox-container{display:inline-flex;align-items:center;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.qodly-http-handlers-editor .base-checkbox-input:disabled+.base-checkbox-control,.qodly-http-handlers-editor .base-checkbox-input:disabled~.base-checkbox-label{cursor:not-allowed;opacity:.6}.qodly-http-handlers-editor .base-checkbox-input{position:absolute;opacity:0;height:0;width:0}.qodly-http-handlers-editor .base-checkbox-control{display:inline-flex;justify-content:center;align-items:center;width:1rem;height:1rem;border:1px solid #eaeaea;border-radius:2px;transition:all .15s ease-out}.qodly-http-handlers-editor .base-checkbox-label{margin-left:.5rem}.qodly-http-handlers-editor .base-checkbox-container:not([data-invalid=true]) .base-checkbox-input:checked+.base-checkbox-control,.qodly-http-handlers-editor .base-checkbox-container:not([data-invalid=true]) .base-checkbox-input:indeterminate+.base-checkbox-control{background-color:#b174e5;border-color:#e8c3ff}.qodly-http-handlers-editor .base-checkbox-container:not([data-invalid=true]) .base-checkbox-input:checked+.base-checkbox-control:hover,.qodly-http-handlers-editor .base-checkbox-container:not([data-invalid=true]) .base-checkbox-input:indeterminate+.base-checkbox-control:hover{border-color:#b174e5}.qodly-http-handlers-editor .base-checkbox-input:disabled+.base-checkbox-control{background-color:#f1f5f9;border-color:#eaeaea}.qodly-http-handlers-editor .base-checkbox-control .base-checkbox-icon{color:#fff;width:100%;height:100%;padding:1px}.qodly-http-handlers-editor .base-checkbox-input:disabled:checked+.base-checkbox-control .base-checkbox-icon,.qodly-http-handlers-editor .base-checkbox-input:disabled:indeterminate+.base-checkbox-control .base-checkbox-icon{color:#b3b3b3}.qodly-http-handlers-editor .base-checkbox-container[data-invalid=true] .base-checkbox-control{border-color:#c54242;box-shadow:0 0 0 1px #c54242}.qodly-http-handlers-editor .base-checkbox-container[data-invalid=true] .base-checkbox-input:checked+.base-checkbox-control,.qodly-http-handlers-editor .base-checkbox-container[data-invalid=true] .base-checkbox-input:indeterminate+.base-checkbox-control{background-color:#c54242}.qodly-http-handlers-editor .shrink-0{flex-shrink:0}.qodly-http-handlers-editor *,.qodly-http-handlers-editor :after,.qodly-http-handlers-editor :before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.qodly-http-handlers-editor ::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.qodly-http-handlers-editor *,.qodly-http-handlers-editor :after,.qodly-http-handlers-editor :before{box-sizing:border-box;border:0 solid #e5e7eb}.qodly-http-handlers-editor :after,.qodly-http-handlers-editor :before{--tw-content:""}.qodly-http-handlers-editor :host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}.qodly-http-handlers-editor hr{height:0;color:inherit;border-top-width:1px}.qodly-http-handlers-editor abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.qodly-http-handlers-editor h1,.qodly-http-handlers-editor h2,.qodly-http-handlers-editor h3,.qodly-http-handlers-editor h4,.qodly-http-handlers-editor h5,.qodly-http-handlers-editor h6{font-size:inherit;font-weight:inherit}.qodly-http-handlers-editor a{color:inherit;text-decoration:inherit}.qodly-http-handlers-editor b,.qodly-http-handlers-editor strong{font-weight:bolder}.qodly-http-handlers-editor code,.qodly-http-handlers-editor kbd,.qodly-http-handlers-editor pre,.qodly-http-handlers-editor samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}.qodly-http-handlers-editor small{font-size:80%}.qodly-http-handlers-editor sub,.qodly-http-handlers-editor sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.qodly-http-handlers-editor sub{bottom:-.25em}.qodly-http-handlers-editor sup{top:-.5em}.qodly-http-handlers-editor table{text-indent:0;border-color:inherit;border-collapse:collapse}.qodly-http-handlers-editor button,.qodly-http-handlers-editor input,.qodly-http-handlers-editor optgroup,.qodly-http-handlers-editor select,.qodly-http-handlers-editor textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}.qodly-http-handlers-editor button,.qodly-http-handlers-editor select{text-transform:none}.qodly-http-handlers-editor button,.qodly-http-handlers-editor input:where([type=button]),.qodly-http-handlers-editor input:where([type=reset]),.qodly-http-handlers-editor input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}.qodly-http-handlers-editor :-moz-focusring{outline:auto}.qodly-http-handlers-editor :-moz-ui-invalid{box-shadow:none}.qodly-http-handlers-editor progress{vertical-align:baseline}.qodly-http-handlers-editor ::-webkit-inner-spin-button,.qodly-http-handlers-editor ::-webkit-outer-spin-button{height:auto}.qodly-http-handlers-editor [type=search]{-webkit-appearance:textfield;outline-offset:-2px}.qodly-http-handlers-editor ::-webkit-search-decoration{-webkit-appearance:none}.qodly-http-handlers-editor ::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}.qodly-http-handlers-editor summary{display:list-item}.qodly-http-handlers-editor blockquote,.qodly-http-handlers-editor dd,.qodly-http-handlers-editor dl,.qodly-http-handlers-editor figure,.qodly-http-handlers-editor h1,.qodly-http-handlers-editor h2,.qodly-http-handlers-editor h3,.qodly-http-handlers-editor h4,.qodly-http-handlers-editor h5,.qodly-http-handlers-editor h6,.qodly-http-handlers-editor hr,.qodly-http-handlers-editor p,.qodly-http-handlers-editor pre{margin:0}.qodly-http-handlers-editor fieldset{margin:0;padding:0}.qodly-http-handlers-editor legend{padding:0}.qodly-http-handlers-editor menu,.qodly-http-handlers-editor ol,.qodly-http-handlers-editor ul{list-style:none;margin:0;padding:0}.qodly-http-handlers-editor dialog{padding:0}.qodly-http-handlers-editor textarea{resize:vertical}.qodly-http-handlers-editor input::-moz-placeholder,.qodly-http-handlers-editor textarea::-moz-placeholder{opacity:1;color:#9ca3af}.qodly-http-handlers-editor input::placeholder,.qodly-http-handlers-editor textarea::placeholder{opacity:1;color:#9ca3af}.qodly-http-handlers-editor [role=button],.qodly-http-handlers-editor button{cursor:pointer}.qodly-http-handlers-editor :disabled{cursor:default}.qodly-http-handlers-editor audio,.qodly-http-handlers-editor canvas,.qodly-http-handlers-editor embed,.qodly-http-handlers-editor iframe,.qodly-http-handlers-editor img,.qodly-http-handlers-editor object,.qodly-http-handlers-editor svg,.qodly-http-handlers-editor video{display:block;vertical-align:middle}.qodly-http-handlers-editor img,.qodly-http-handlers-editor video{max-width:100%;height:auto}.qodly-http-handlers-editor [hidden]:where(:not([hidden=until-found])){display:none}.qodly-http-handlers-editor .container{width:100%}@media(min-width:640px){.qodly-http-handlers-editor .container{max-width:640px}}@media(min-width:768px){.qodly-http-handlers-editor .container{max-width:768px}}@media(min-width:1024px){.qodly-http-handlers-editor .container{max-width:1024px}}@media(min-width:1280px){.qodly-http-handlers-editor .container{max-width:1280px}}@media(min-width:1536px){.qodly-http-handlers-editor .container{max-width:1536px}}.qodly-http-handlers-editor .prose{color:var(--tw-prose-body);max-width:65ch}.qodly-http-handlers-editor .prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.qodly-http-handlers-editor .prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.qodly-http-handlers-editor .prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);text-decoration:underline;font-weight:500}.qodly-http-handlers-editor .prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.qodly-http-handlers-editor .prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em}.qodly-http-handlers-editor .prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.qodly-http-handlers-editor .prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.qodly-http-handlers-editor .prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.qodly-http-handlers-editor .prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.qodly-http-handlers-editor .prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.qodly-http-handlers-editor .prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.qodly-http-handlers-editor .prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.qodly-http-handlers-editor .prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.qodly-http-handlers-editor .prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.qodly-http-handlers-editor .prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em}.qodly-http-handlers-editor .prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{font-weight:400;color:var(--tw-prose-counters)}.qodly-http-handlers-editor .prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.qodly-http-handlers-editor .prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.qodly-http-handlers-editor .prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.qodly-http-handlers-editor .prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-style:italic;color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em}.qodly-http-handlers-editor .prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.qodly-http-handlers-editor .prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.qodly-http-handlers-editor .prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.qodly-http-handlers-editor .prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:900;color:inherit}.qodly-http-handlers-editor .prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.qodly-http-handlers-editor .prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:800;color:inherit}.qodly-http-handlers-editor .prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.qodly-http-handlers-editor .prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.qodly-http-handlers-editor .prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.qodly-http-handlers-editor .prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.qodly-http-handlers-editor .prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.qodly-http-handlers-editor .prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-top:2em;margin-bottom:2em}.qodly-http-handlers-editor .prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.qodly-http-handlers-editor .prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-family:inherit;color:var(--tw-prose-kbd);box-shadow:0 0 0 1px var(--tw-prose-kbd-shadows),0 3px 0 var(--tw-prose-kbd-shadows);font-size:.875em;border-radius:.3125rem;padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;padding-inline-start:.375em}.qodly-http-handlers-editor .prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-weight:600;font-size:.875em}.qodly-http-handlers-editor .prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}.qodly-http-handlers-editor .prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.qodly-http-handlers-editor .prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.qodly-http-handlers-editor .prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.qodly-http-handlers-editor .prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.qodly-http-handlers-editor .prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding-top:.8571429em;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-inline-start:1.1428571em}.qodly-http-handlers-editor .prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.qodly-http-handlers-editor .prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}.qodly-http-handlers-editor .prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.qodly-http-handlers-editor .prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){width:100%;table-layout:auto;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.qodly-http-handlers-editor .prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.qodly-http-handlers-editor .prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;vertical-align:bottom;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em}.qodly-http-handlers-editor .prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.qodly-http-handlers-editor .prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.qodly-http-handlers-editor .prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.qodly-http-handlers-editor .prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.qodly-http-handlers-editor .prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.qodly-http-handlers-editor .prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.qodly-http-handlers-editor .prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.qodly-http-handlers-editor .prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.qodly-http-handlers-editor .prose{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-kbd:#111827;--tw-prose-kbd-shadows:rgba(17,24,39,.1);--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:hsla(0,0%,100%,.1);--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}.qodly-http-handlers-editor .prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.qodly-http-handlers-editor .prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.qodly-http-handlers-editor .prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.qodly-http-handlers-editor .prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.qodly-http-handlers-editor .prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.qodly-http-handlers-editor .prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.qodly-http-handlers-editor .prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.qodly-http-handlers-editor .prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.qodly-http-handlers-editor .prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.qodly-http-handlers-editor .prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.qodly-http-handlers-editor .prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.qodly-http-handlers-editor .prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.qodly-http-handlers-editor .prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.qodly-http-handlers-editor .prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.qodly-http-handlers-editor .prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.5714286em;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em}.qodly-http-handlers-editor .prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.qodly-http-handlers-editor .prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.qodly-http-handlers-editor .prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.qodly-http-handlers-editor .prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.qodly-http-handlers-editor .prose-sm{font-size:.875rem;line-height:1.7142857}.qodly-http-handlers-editor .prose-sm :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em}.qodly-http-handlers-editor .prose-sm :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-top:.8888889em;margin-bottom:.8888889em}.qodly-http-handlers-editor .prose-sm :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.3333333em;margin-bottom:1.3333333em;padding-inline-start:1.1111111em;color:#ccc}.qodly-http-handlers-editor .prose-sm :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:2.1428571em;margin-top:0;margin-bottom:.8em;line-height:1.2;color:#fff}.qodly-http-handlers-editor .prose-sm :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.4285714em;margin-top:1.6em;margin-bottom:.8em;line-height:1.4;color:#fff}.qodly-http-handlers-editor .prose-sm :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;margin-bottom:.4444444em;line-height:1.5555556;color:#fff;margin-top:0}.qodly-http-handlers-editor .prose-sm :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.4285714em;margin-bottom:.5714286em;line-height:1.4285714;color:#fff}.qodly-http-handlers-editor .prose-sm :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:5px;margin-bottom:5px}.qodly-http-handlers-editor .prose-sm :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.qodly-http-handlers-editor .prose-sm :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.qodly-http-handlers-editor .prose-sm :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.qodly-http-handlers-editor .prose-sm :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;border-radius:.3125rem;padding-top:.1428571em;padding-inline-end:.3571429em;padding-bottom:.1428571em;padding-inline-start:.3571429em}.qodly-http-handlers-editor .prose-sm :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em}.qodly-http-handlers-editor .prose-sm :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}.qodly-http-handlers-editor .prose-sm :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8888889em}.qodly-http-handlers-editor .prose-sm :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.6666667;margin-top:1.6666667em;margin-bottom:1.6666667em;border-radius:.25rem;padding-top:.6666667em;padding-inline-end:1em;padding-bottom:.6666667em;padding-inline-start:1em}.qodly-http-handlers-editor .prose-sm :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em;padding-inline-start:1.5714286em}.qodly-http-handlers-editor .prose-sm :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em;padding-inline-start:1.5714286em}.qodly-http-handlers-editor .prose-sm :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.2857143em;margin-bottom:.2857143em}.qodly-http-handlers-editor .prose-sm :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.4285714em}.qodly-http-handlers-editor .prose-sm :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.4285714em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5714286em;margin-bottom:.5714286em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5714286em;margin-bottom:.5714286em}.qodly-http-handlers-editor .prose-sm :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em;margin-bottom:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}.qodly-http-handlers-editor .prose-sm :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.2857143em;padding-inline-start:1.5714286em}.qodly-http-handlers-editor .prose-sm :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2.8571429em;margin-bottom:2.8571429em}.qodly-http-handlers-editor .prose-sm :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose-sm :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose-sm :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose-sm :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose-sm :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.5}.qodly-http-handlers-editor .prose-sm :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:1em;padding-bottom:.6666667em;padding-inline-start:1em}.qodly-http-handlers-editor .prose-sm :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.qodly-http-handlers-editor .prose-sm :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.qodly-http-handlers-editor .prose-sm :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.6666667em;padding-inline-end:1em;padding-bottom:.6666667em;padding-inline-start:1em}.qodly-http-handlers-editor .prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.qodly-http-handlers-editor .prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.qodly-http-handlers-editor .prose-sm :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.7142857em;margin-bottom:1.7142857em}.qodly-http-handlers-editor .prose-sm :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.qodly-http-handlers-editor .prose-sm :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.qodly-http-handlers-editor .prose-sm :where(.prose-sm>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.qodly-http-handlers-editor .prose-sm :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:#ccc}.qodly-http-handlers-editor .prose-sm :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:#bfdbfe}.qodly-http-handlers-editor .pointer-events-none{pointer-events:none}.qodly-http-handlers-editor .pointer-events-auto{pointer-events:auto}.qodly-http-handlers-editor .invisible{visibility:hidden}.qodly-http-handlers-editor .static{position:static}.qodly-http-handlers-editor .fixed{position:fixed}.qodly-http-handlers-editor .absolute{position:absolute}.qodly-http-handlers-editor .relative{position:relative}.qodly-http-handlers-editor .inset-0{top:0;right:0;bottom:0;left:0}.qodly-http-handlers-editor .inset-x-0{left:0;right:0}.qodly-http-handlers-editor .inset-x-4{left:1rem;right:1rem}.qodly-http-handlers-editor .inset-y-0{top:0;bottom:0}.qodly-http-handlers-editor .bottom-4{bottom:1rem}.qodly-http-handlers-editor .left-1{left:.25rem}.qodly-http-handlers-editor .left-1\/2{left:50%}.qodly-http-handlers-editor .right-0{right:0}.qodly-http-handlers-editor .right-1{right:.25rem}.qodly-http-handlers-editor .right-6{right:1.5rem}.qodly-http-handlers-editor .top-1{top:.25rem}.qodly-http-handlers-editor .top-1\/2{top:50%}.qodly-http-handlers-editor .top-4{top:1rem}.qodly-http-handlers-editor .top-\[25px\]{top:25px}.qodly-http-handlers-editor .isolate{isolation:isolate}.qodly-http-handlers-editor .z-0{z-index:0}.qodly-http-handlers-editor .z-10{z-index:10}.qodly-http-handlers-editor .z-20{z-index:20}.qodly-http-handlers-editor .z-50{z-index:50}.qodly-http-handlers-editor .z-\[1000\]{z-index:1000}.qodly-http-handlers-editor .z-\[1999\]{z-index:1999}.qodly-http-handlers-editor .z-\[1\]{z-index:1}.qodly-http-handlers-editor .z-\[2147483647\]{z-index:2147483647}.qodly-http-handlers-editor .mx-1{margin-left:.25rem;margin-right:.25rem}.qodly-http-handlers-editor .mx-auto{margin-left:auto;margin-right:auto}.qodly-http-handlers-editor .-mt-6{margin-top:-1.5rem}.qodly-http-handlers-editor .mb-1{margin-bottom:.25rem}.qodly-http-handlers-editor .mb-2{margin-bottom:.5rem}.qodly-http-handlers-editor .mb-3{margin-bottom:.75rem}.qodly-http-handlers-editor .mb-4{margin-bottom:1rem}.qodly-http-handlers-editor .ml-1{margin-left:.25rem}.qodly-http-handlers-editor .ml-2{margin-left:.5rem}.qodly-http-handlers-editor .ml-auto{margin-left:auto}.qodly-http-handlers-editor .mr-1{margin-right:.25rem}.qodly-http-handlers-editor .mr-2{margin-right:.5rem}.qodly-http-handlers-editor .mr-3{margin-right:.75rem}.qodly-http-handlers-editor .mr-4{margin-right:1rem}.qodly-http-handlers-editor .mt-1{margin-top:.25rem}.qodly-http-handlers-editor .mt-3{margin-top:.75rem}.qodly-http-handlers-editor .mt-4{margin-top:1rem}.qodly-http-handlers-editor .mt-6{margin-top:1.5rem}.qodly-http-handlers-editor .mt-px{margin-top:1px}.qodly-http-handlers-editor .block{display:block}.qodly-http-handlers-editor .inline-block{display:inline-block}.qodly-http-handlers-editor .inline{display:inline}.qodly-http-handlers-editor .flex{display:flex}.qodly-http-handlers-editor .inline-flex{display:inline-flex}.qodly-http-handlers-editor .table{display:table}.qodly-http-handlers-editor .grid{display:grid}.qodly-http-handlers-editor .hidden{display:none}.qodly-http-handlers-editor .size-4{width:1rem;height:1rem}.qodly-http-handlers-editor .size-6{width:1.5rem;height:1.5rem}.qodly-http-handlers-editor .h-1\/2{height:50%}.qodly-http-handlers-editor .h-12{height:3rem}.qodly-http-handlers-editor .h-2{height:.5rem}.qodly-http-handlers-editor .h-2\.5{height:.625rem}.qodly-http-handlers-editor .h-20{height:5rem}.qodly-http-handlers-editor .h-3{height:.75rem}.qodly-http-handlers-editor .h-3\.5{height:.875rem}.qodly-http-handlers-editor .h-4{height:1rem}.qodly-http-handlers-editor .h-4\.5{height:1.125rem}.qodly-http-handlers-editor .h-5{height:1.25rem}.qodly-http-handlers-editor .h-6{height:1.5rem}.qodly-http-handlers-editor .h-60{height:15rem}.qodly-http-handlers-editor .h-7{height:1.75rem}.qodly-http-handlers-editor .h-8{height:2rem}.qodly-http-handlers-editor .h-9{height:2.25rem}.qodly-http-handlers-editor .h-full{height:100%}.qodly-http-handlers-editor .h-screen{height:100vh}.qodly-http-handlers-editor .max-h-60{max-height:15rem}.qodly-http-handlers-editor .max-h-\[10rem\]{max-height:10rem}.qodly-http-handlers-editor .min-h-\[10rem\]{min-height:10rem}.qodly-http-handlers-editor .w-1\/2{width:50%}.qodly-http-handlers-editor .w-10{width:2.5rem}.qodly-http-handlers-editor .w-12{width:3rem}.qodly-http-handlers-editor .w-16{width:4rem}.qodly-http-handlers-editor .w-2\.5{width:.625rem}.qodly-http-handlers-editor .w-20{width:5rem}.qodly-http-handlers-editor .w-3{width:.75rem}.qodly-http-handlers-editor .w-3\.5{width:.875rem}.qodly-http-handlers-editor .w-4{width:1rem}.qodly-http-handlers-editor .w-40{width:10rem}.qodly-http-handlers-editor .w-5{width:1.25rem}.qodly-http-handlers-editor .w-6{width:1.5rem}.qodly-http-handlers-editor .w-60{width:15rem}.qodly-http-handlers-editor .w-7{width:1.75rem}.qodly-http-handlers-editor .w-8{width:2rem}.qodly-http-handlers-editor .w-80{width:20rem}.qodly-http-handlers-editor .w-9{width:2.25rem}.qodly-http-handlers-editor .w-96{width:24rem}.qodly-http-handlers-editor .w-\[--width\]{width:var(--width)}.qodly-http-handlers-editor .w-\[1px\]{width:1px}.qodly-http-handlers-editor .w-full{width:100%}.qodly-http-handlers-editor .w-screen{width:100vw}.qodly-http-handlers-editor .min-w-0{min-width:0}.qodly-http-handlers-editor .min-w-\[1200px\]{min-width:1200px}.qodly-http-handlers-editor .max-w-\[240px\]{max-width:240px}.qodly-http-handlers-editor .max-w-sm{max-width:24rem}.qodly-http-handlers-editor .flex-1{flex:1 1 0%}.qodly-http-handlers-editor .flex-none{flex:none}.qodly-http-handlers-editor .flex-shrink-0,.qodly-http-handlers-editor .shrink-0{flex-shrink:0}.qodly-http-handlers-editor .flex-grow{flex-grow:1}.qodly-http-handlers-editor .-translate-x-1\/2{--tw-translate-x:-50%}.qodly-http-handlers-editor .-translate-x-1\/2,.qodly-http-handlers-editor .-translate-y-1\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .-translate-y-1\/2{--tw-translate-y:-50%}.qodly-http-handlers-editor .translate-x-0{--tw-translate-x:0px}.qodly-http-handlers-editor .translate-x-0,.qodly-http-handlers-editor .translate-x-2\.5{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .translate-x-2\.5{--tw-translate-x:.625rem}.qodly-http-handlers-editor .translate-x-3{--tw-translate-x:.75rem}.qodly-http-handlers-editor .translate-x-3,.qodly-http-handlers-editor .translate-x-\[0\.85rem\]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .translate-x-\[0\.85rem\]{--tw-translate-x:.85rem}.qodly-http-handlers-editor .-rotate-90{--tw-rotate:-90deg}.qodly-http-handlers-editor .-rotate-90,.qodly-http-handlers-editor .rotate-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .rotate-0{--tw-rotate:0deg}.qodly-http-handlers-editor .scale-100{--tw-scale-x:1;--tw-scale-y:1}.qodly-http-handlers-editor .scale-100,.qodly-http-handlers-editor .scale-95{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.qodly-http-handlers-editor .transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.qodly-http-handlers-editor .cursor-default{cursor:default}.qodly-http-handlers-editor .cursor-not-allowed{cursor:not-allowed}.qodly-http-handlers-editor .cursor-pointer{cursor:pointer}.qodly-http-handlers-editor .select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.qodly-http-handlers-editor .resize{resize:both}.qodly-http-handlers-editor .list-disc{list-style-type:disc}.qodly-http-handlers-editor .flex-row{flex-direction:row}.qodly-http-handlers-editor .flex-col{flex-direction:column}.qodly-http-handlers-editor .place-content-center{place-content:center}.qodly-http-handlers-editor .content-center{align-content:center}.qodly-http-handlers-editor .items-start{align-items:flex-start}.qodly-http-handlers-editor .items-center{align-items:center}.qodly-http-handlers-editor .justify-start{justify-content:flex-start}.qodly-http-handlers-editor .justify-center{justify-content:center}.qodly-http-handlers-editor .justify-between{justify-content:space-between}.qodly-http-handlers-editor .gap-0\.5{gap:.125rem}.qodly-http-handlers-editor .gap-1{gap:.25rem}.qodly-http-handlers-editor .gap-2{gap:.5rem}.qodly-http-handlers-editor .gap-3{gap:.75rem}.qodly-http-handlers-editor .gap-4{gap:1rem}.qodly-http-handlers-editor .gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.qodly-http-handlers-editor .gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.qodly-http-handlers-editor .space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.qodly-http-handlers-editor .self-center{align-self:center}.qodly-http-handlers-editor .overflow-auto{overflow:auto}.qodly-http-handlers-editor .overflow-hidden{overflow:hidden}.qodly-http-handlers-editor .overflow-visible{overflow:visible}.qodly-http-handlers-editor .overflow-x-auto{overflow-x:auto}.qodly-http-handlers-editor .overflow-y-auto{overflow-y:auto}.qodly-http-handlers-editor .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.qodly-http-handlers-editor .text-ellipsis{text-overflow:ellipsis}.qodly-http-handlers-editor .whitespace-nowrap{white-space:nowrap}.qodly-http-handlers-editor .text-wrap{text-wrap:wrap}.qodly-http-handlers-editor .rounded{border-radius:4px}.qodly-http-handlers-editor .rounded-full{border-radius:9999px}.qodly-http-handlers-editor .rounded-lg{border-radius:.5rem}.qodly-http-handlers-editor .rounded-md{border-radius:.375rem}.qodly-http-handlers-editor .rounded-sm{border-radius:.125rem}.qodly-http-handlers-editor .rounded-b{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.qodly-http-handlers-editor .rounded-b-none{border-bottom-right-radius:0;border-bottom-left-radius:0}.qodly-http-handlers-editor .rounded-b-sm{border-bottom-right-radius:.125rem;border-bottom-left-radius:.125rem}.qodly-http-handlers-editor .border{border-width:.5px}.qodly-http-handlers-editor .border-2{border-width:2px}.qodly-http-handlers-editor .border-b{border-bottom-width:.5px}.qodly-http-handlers-editor .border-t{border-top-width:.5px}.qodly-http-handlers-editor .border-none{border-style:none}.qodly-http-handlers-editor .border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity,1))}.qodly-http-handlers-editor .border-gray-400{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity,1))}.qodly-http-handlers-editor .border-grey-50{--tw-border-opacity:1;border-color:rgb(241 245 249/var(--tw-border-opacity,1))}.qodly-http-handlers-editor .border-grey-900{--tw-border-opacity:1;border-color:rgb(38 38 38/var(--tw-border-opacity,1))}.qodly-http-handlers-editor .border-primary-dark{--tw-border-opacity:1;border-color:rgb(177 116 229/var(--tw-border-opacity,1))}.qodly-http-handlers-editor .border-red-500{--tw-border-opacity:1;border-color:rgb(206 81 81/var(--tw-border-opacity,1))}.qodly-http-handlers-editor .border-transparent{border-color:transparent}.qodly-http-handlers-editor .border-white{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity,1))}.qodly-http-handlers-editor .\!bg-red-300{--tw-bg-opacity:1!important;background-color:rgb(252 165 165/var(--tw-bg-opacity,1))!important}.qodly-http-handlers-editor .\!bg-yellow-100{--tw-bg-opacity:1!important;background-color:rgb(254 249 195/var(--tw-bg-opacity,1))!important}.qodly-http-handlers-editor .bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-blue-500{--tw-bg-opacity:1;background-color:rgb(59 130 246/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-fd-gray-default{--tw-bg-opacity:1;background-color:rgb(49 49 49/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-green-500{--tw-bg-opacity:1;background-color:rgb(34 197 94/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-grey-200{--tw-bg-opacity:1;background-color:rgb(136 136 136/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-grey-300{--tw-bg-opacity:1;background-color:rgb(83 83 83/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-grey-50{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-grey-600{--tw-bg-opacity:1;background-color:rgb(63 63 63/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-grey-700{--tw-bg-opacity:1;background-color:rgb(57 57 57/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-grey-800{--tw-bg-opacity:1;background-color:rgb(56 56 56/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-grey-900{--tw-bg-opacity:1;background-color:rgb(38 38 38/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-indigo-500{--tw-bg-opacity:1;background-color:rgb(99 102 241/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-primary-dark{--tw-bg-opacity:1;background-color:rgb(177 116 229/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-primary-hover{--tw-bg-opacity:1;background-color:rgb(117 73 154/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-primary-light,.qodly-http-handlers-editor .bg-purple-200{--tw-bg-opacity:1;background-color:rgb(232 195 255/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-purple-800{--tw-bg-opacity:1;background-color:rgb(146 95 190/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-red-200{--tw-bg-opacity:1;background-color:rgb(254 202 202/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-red-400{--tw-bg-opacity:1;background-color:rgb(240 82 82/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-red-500{--tw-bg-opacity:1;background-color:rgb(206 81 81/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-transparent{background-color:transparent}.qodly-http-handlers-editor .bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-yellow-400{--tw-bg-opacity:1;background-color:rgb(250 204 21/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .bg-opacity-40{--tw-bg-opacity:.4}.qodly-http-handlers-editor .bg-opacity-80{--tw-bg-opacity:.8}.qodly-http-handlers-editor .stroke-current{stroke:currentColor}.qodly-http-handlers-editor .p-0\.5{padding:.125rem}.qodly-http-handlers-editor .p-1{padding:.25rem}.qodly-http-handlers-editor .p-2{padding:.5rem}.qodly-http-handlers-editor .p-6{padding:1.5rem}.qodly-http-handlers-editor .p-px{padding:1px}.qodly-http-handlers-editor .px-0\.5{padding-left:.125rem;padding-right:.125rem}.qodly-http-handlers-editor .px-1{padding-left:.25rem;padding-right:.25rem}.qodly-http-handlers-editor .px-10{padding-left:2.5rem;padding-right:2.5rem}.qodly-http-handlers-editor .px-12{padding-left:3rem;padding-right:3rem}.qodly-http-handlers-editor .px-2{padding-left:.5rem;padding-right:.5rem}.qodly-http-handlers-editor .px-3{padding-left:.75rem;padding-right:.75rem}.qodly-http-handlers-editor .px-4{padding-left:1rem;padding-right:1rem}.qodly-http-handlers-editor .px-5{padding-left:1.25rem;padding-right:1.25rem}.qodly-http-handlers-editor .px-6{padding-left:1.5rem;padding-right:1.5rem}.qodly-http-handlers-editor .px-8{padding-left:2rem;padding-right:2rem}.qodly-http-handlers-editor .py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.qodly-http-handlers-editor .py-1{padding-top:.25rem;padding-bottom:.25rem}.qodly-http-handlers-editor .py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.qodly-http-handlers-editor .py-2{padding-top:.5rem;padding-bottom:.5rem}.qodly-http-handlers-editor .py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.qodly-http-handlers-editor .py-3{padding-top:.75rem;padding-bottom:.75rem}.qodly-http-handlers-editor .py-6{padding-top:1.5rem;padding-bottom:1.5rem}.qodly-http-handlers-editor .pb-0{padding-bottom:0}.qodly-http-handlers-editor .pb-0\.5{padding-bottom:.125rem}.qodly-http-handlers-editor .pb-8{padding-bottom:2rem}.qodly-http-handlers-editor .pl-1{padding-left:.25rem}.qodly-http-handlers-editor .pl-1\.5{padding-left:.375rem}.qodly-http-handlers-editor .pl-2{padding-left:.5rem}.qodly-http-handlers-editor .pl-3{padding-left:.75rem}.qodly-http-handlers-editor .pl-6{padding-left:1.5rem}.qodly-http-handlers-editor .pr-1{padding-right:.25rem}.qodly-http-handlers-editor .pr-2{padding-right:.5rem}.qodly-http-handlers-editor .pt-0\.5{padding-top:.125rem}.qodly-http-handlers-editor .pt-1{padding-top:.25rem}.qodly-http-handlers-editor .text-left{text-align:left}.qodly-http-handlers-editor .text-center{text-align:center}.qodly-http-handlers-editor .font-poppins{font-family:Poppins,sans-serif}.qodly-http-handlers-editor .text-2xl{font-size:1.5rem;line-height:2rem}.qodly-http-handlers-editor .text-4xl{font-size:2.25rem;line-height:2.5rem}.qodly-http-handlers-editor .text-\[12px\]{font-size:12px}.qodly-http-handlers-editor .text-base{font-size:1rem;line-height:1.5rem}.qodly-http-handlers-editor .text-lg{font-size:1.125rem;line-height:1.75rem}.qodly-http-handlers-editor .text-s{font-size:.75rem}.qodly-http-handlers-editor .text-sm{font-size:.875rem;line-height:1.25rem}.qodly-http-handlers-editor .text-xs{font-size:.65rem}.qodly-http-handlers-editor .text-xxs{font-size:.55rem}.qodly-http-handlers-editor .font-bold{font-weight:700}.qodly-http-handlers-editor .font-extralight{font-weight:200}.qodly-http-handlers-editor .font-medium{font-weight:500}.qodly-http-handlers-editor .font-normal{font-weight:400}.qodly-http-handlers-editor .font-semibold{font-weight:600}.qodly-http-handlers-editor .font-thin{font-weight:100}.qodly-http-handlers-editor .uppercase{text-transform:uppercase}.qodly-http-handlers-editor .capitalize{text-transform:capitalize}.qodly-http-handlers-editor .italic{font-style:italic}.qodly-http-handlers-editor .leading-6{line-height:1.5rem}.qodly-http-handlers-editor .\!text-red-400{--tw-text-opacity:1!important;color:rgb(240 82 82/var(--tw-text-opacity,1))!important}.qodly-http-handlers-editor .\!text-yellow-500{--tw-text-opacity:1!important;color:rgb(234 179 8/var(--tw-text-opacity,1))!important}.qodly-http-handlers-editor .text-fd-gray-lighter{--tw-text-opacity:1;color:rgb(234 234 234/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-fd-gray-mild{--tw-text-opacity:1;color:rgb(179 179 179/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-gray-100{--tw-text-opacity:1;color:rgb(243 244 246/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-gray-50{--tw-text-opacity:1;color:rgb(249 250 251/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-green-500{--tw-text-opacity:1;color:rgb(34 197 94/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-grey-100{--tw-text-opacity:1;color:rgb(204 204 204/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-grey-200{--tw-text-opacity:1;color:rgb(136 136 136/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-grey-50{--tw-text-opacity:1;color:rgb(241 245 249/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-primary{--tw-text-opacity:1;color:rgb(187 11 209/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-primary-dark{--tw-text-opacity:1;color:rgb(177 116 229/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-purple-900{--tw-text-opacity:1;color:rgb(187 11 209/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-red-400{--tw-text-opacity:1;color:rgb(240 82 82/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-red-500{--tw-text-opacity:1;color:rgb(206 81 81/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-red-600{--tw-text-opacity:1;color:rgb(251 115 115/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-yellow-300{--tw-text-opacity:1;color:rgb(253 224 71/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-yellow-400{--tw-text-opacity:1;color:rgb(250 204 21/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .text-yellow-500{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .placeholder-grey-200::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(136 136 136/var(--tw-placeholder-opacity,1))}.qodly-http-handlers-editor .placeholder-grey-200::placeholder{--tw-placeholder-opacity:1;color:rgb(136 136 136/var(--tw-placeholder-opacity,1))}.qodly-http-handlers-editor .opacity-0{opacity:0}.qodly-http-handlers-editor .opacity-10{opacity:.1}.qodly-http-handlers-editor .opacity-100{opacity:1}.qodly-http-handlers-editor .opacity-50{opacity:.5}.qodly-http-handlers-editor .shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.qodly-http-handlers-editor .shadow,.qodly-http-handlers-editor .shadow-2xl{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.qodly-http-handlers-editor .shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color)}.qodly-http-handlers-editor .shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.qodly-http-handlers-editor .shadow-lg,.qodly-http-handlers-editor .shadow-md{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.qodly-http-handlers-editor .shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.qodly-http-handlers-editor .shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.qodly-http-handlers-editor .shadow-sm,.qodly-http-handlers-editor .shadow-xl{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.qodly-http-handlers-editor .shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color)}.qodly-http-handlers-editor .outline-none{outline:2px solid transparent;outline-offset:2px}.qodly-http-handlers-editor .ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)}.qodly-http-handlers-editor .ring-0,.qodly-http-handlers-editor .ring-1{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.qodly-http-handlers-editor .ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.qodly-http-handlers-editor .ring-primary-dark{--tw-ring-opacity:1;--tw-ring-color:rgb(177 116 229/var(--tw-ring-opacity,1))}.qodly-http-handlers-editor .ring-red-400{--tw-ring-opacity:1;--tw-ring-color:rgb(240 82 82/var(--tw-ring-opacity,1))}.qodly-http-handlers-editor .ring-red-600{--tw-ring-opacity:1;--tw-ring-color:rgb(251 115 115/var(--tw-ring-opacity,1))}.qodly-http-handlers-editor .ring-yellow-500{--tw-ring-opacity:1;--tw-ring-color:rgb(234 179 8/var(--tw-ring-opacity,1))}.qodly-http-handlers-editor .filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.qodly-http-handlers-editor .transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.qodly-http-handlers-editor .transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.qodly-http-handlers-editor .duration-100{transition-duration:.1s}.qodly-http-handlers-editor .duration-200{transition-duration:.2s}.qodly-http-handlers-editor .duration-300{transition-duration:.3s}.qodly-http-handlers-editor .ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.qodly-http-handlers-editor .ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.qodly-http-handlers-editor .ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.qodly-http-handlers-editor .odd\:bg-grey-500:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(68 68 68/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .focus-within\:outline-none:focus-within{outline:2px solid transparent;outline-offset:2px}.qodly-http-handlers-editor .focus-within\:ring-1:focus-within{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.qodly-http-handlers-editor .focus-within\:ring-\[1px\]:focus-within{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.qodly-http-handlers-editor .focus-within\:ring-primary-dark:focus-within{--tw-ring-opacity:1;--tw-ring-color:rgb(177 116 229/var(--tw-ring-opacity,1))}.qodly-http-handlers-editor .hover\:border-primary-hover:hover{--tw-border-opacity:1;border-color:rgb(117 73 154/var(--tw-border-opacity,1))}.qodly-http-handlers-editor .hover\:border-white:hover{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity,1))}.qodly-http-handlers-editor .hover\:bg-gray-400\/30:hover{background-color:#9ca3af4d}.qodly-http-handlers-editor .hover\:bg-grey-50:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .hover\:bg-primary-hover:hover{--tw-bg-opacity:1;background-color:rgb(117 73 154/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .hover\:bg-purple-800:hover{--tw-bg-opacity:1;background-color:rgb(146 95 190/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .hover\:bg-red-400:hover{--tw-bg-opacity:1;background-color:rgb(240 82 82/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .hover\:bg-red-400\/30:hover{background-color:#f052524d}.qodly-http-handlers-editor .hover\:bg-white:hover{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.qodly-http-handlers-editor .hover\:font-bold:hover{font-weight:700}.qodly-http-handlers-editor .hover\:text-primary-dark:hover{--tw-text-opacity:1;color:rgb(177 116 229/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.qodly-http-handlers-editor .focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.qodly-http-handlers-editor .focus\:ring-0:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.qodly-http-handlers-editor .focus\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.qodly-http-handlers-editor .focus\:ring-primary-dark:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(177 116 229/var(--tw-ring-opacity,1))}.qodly-http-handlers-editor .focus\:ring-red-400:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(240 82 82/var(--tw-ring-opacity,1))}.qodly-http-handlers-editor .focus\:ring-red-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(206 81 81/var(--tw-ring-opacity,1))}.qodly-http-handlers-editor .focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.qodly-http-handlers-editor .focus-visible\:ring-white:focus-visible{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity,1))}.qodly-http-handlers-editor .focus-visible\:ring-opacity-75:focus-visible{--tw-ring-opacity:.75}.qodly-http-handlers-editor .active\:outline-none:active{outline:2px solid transparent;outline-offset:2px}.qodly-http-handlers-editor .disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.qodly-http-handlers-editor .disabled\:opacity-30:disabled{opacity:.3}.qodly-http-handlers-editor .disabled\:opacity-50:disabled{opacity:.5}.qodly-http-handlers-editor .group:hover .group-hover\:block{display:block}@media(min-width:640px){.qodly-http-handlers-editor .sm\:text-s{font-size:.75rem}}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { FC
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { IAdapterProviderProps, TUseAdapter } from '@ws-ui/shared';
|
|
2
3
|
import { IEditorStateAdapter } from './types';
|
|
3
|
-
export
|
|
4
|
-
|
|
5
|
-
adapter: IEditorStateAdapter;
|
|
6
|
-
}
|
|
7
|
-
export declare const EditorStateAdapterProvider: FC<IEditorStateAdapterProviderProps>;
|
|
8
|
-
export declare function useEditorStateAdapter(): IEditorStateAdapter;
|
|
4
|
+
export declare const EditorStateAdapterProvider: FC<IAdapterProviderProps<IEditorStateAdapter>>;
|
|
5
|
+
export declare const useEditorStateAdapter: TUseAdapter<IEditorStateAdapter>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Dispatch, FC, ReactNode } from 'react';
|
|
2
2
|
import { IModal, ModalCloseReason } from '@ws-ui/shared';
|
|
3
|
-
import { IEditorStateAdapter, HTTPHandler } from '../types';
|
|
3
|
+
import { IEditorStateAdapter, HTTPHandler, TEditorHost } from '../types';
|
|
4
4
|
interface IModalsState {
|
|
5
5
|
list: IModal[];
|
|
6
6
|
}
|
|
@@ -59,6 +59,7 @@ type ReducerAction = {
|
|
|
59
59
|
export declare function handlerReducer(state: IReducerState, action: ReducerAction): IReducerState;
|
|
60
60
|
interface IExternalData {
|
|
61
61
|
catalog?: datasources.IEnhancedCatalog | null;
|
|
62
|
+
host?: TEditorHost;
|
|
62
63
|
}
|
|
63
64
|
interface IReducerValue {
|
|
64
65
|
state: IReducerState;
|
|
@@ -68,6 +69,7 @@ interface IReducerValue {
|
|
|
68
69
|
export interface IReducerAdapterProps extends IExternalData {
|
|
69
70
|
children: ReactNode;
|
|
70
71
|
content?: string | HTTPHandler[];
|
|
72
|
+
host?: TEditorHost;
|
|
71
73
|
}
|
|
72
74
|
export declare const EditorStateContext: import('react').Context<IReducerValue | null>;
|
|
73
75
|
export declare const getDefaultInitialState: (content: HTTPHandler[]) => IReducerState;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { IEditorStateAdapter } from '../types';
|
|
2
|
-
export declare function useReduxAdapter(path: string): IEditorStateAdapter;
|
|
1
|
+
import { IEditorStateAdapter, HTTPHandler } from '../types';
|
|
2
|
+
export declare function useReduxAdapter(path: string, initialContent?: HTTPHandler[]): IEditorStateAdapter;
|
package/dist/adapter/types.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { IEditor, IOpenModalPayload, IOpenModalReturnValue } from '@ws-ui/shared';
|
|
1
|
+
import { IEditor, IOpenModalPayload, IOpenModalReturnValue, TEditorAdapter } from '@ws-ui/shared';
|
|
2
2
|
export type HTTPVerb = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
3
|
+
export type TEditorHost = 'web' | 'vscode';
|
|
3
4
|
export type HTTPHandler = {
|
|
4
5
|
id: string;
|
|
5
6
|
class: string;
|
|
@@ -10,21 +11,24 @@ export type HTTPHandler = {
|
|
|
10
11
|
isExpanded: boolean;
|
|
11
12
|
asRegex?: boolean;
|
|
12
13
|
};
|
|
13
|
-
|
|
14
|
+
type TEditorStateGetters = {
|
|
14
15
|
getHandlers(): HTTPHandler[];
|
|
15
16
|
getEditingHandlerId(): string | null;
|
|
16
17
|
getNewlyCreatedHandlerId(): string | null;
|
|
17
18
|
getCatalog(): datasources.IEnhancedCatalog | null;
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
19
|
+
getHost(): TEditorHost;
|
|
20
|
+
};
|
|
21
|
+
type TEditorStateActions = {
|
|
22
|
+
updateHandlers(handlers: HTTPHandler[]): void;
|
|
23
|
+
addHandler(payload: Omit<HTTPHandler, 'id'>): void;
|
|
24
|
+
updateHandler(id: string, payload: Partial<HTTPHandler>): void;
|
|
25
|
+
deleteHandler(id: string): void;
|
|
26
|
+
toggleExpanded(id: string): void;
|
|
27
|
+
duplicateHandler(id: string): void;
|
|
28
|
+
toggleAllExpanded(value: boolean): void;
|
|
29
|
+
setEditingHandler(id: string | null): void;
|
|
30
|
+
openModal(config: IOpenModalPayload): Promise<IOpenModalReturnValue>;
|
|
31
|
+
switchEditor?(editor: IEditor): void;
|
|
32
|
+
};
|
|
33
|
+
export type IEditorStateAdapter = TEditorAdapter<TEditorStateGetters, TEditorStateActions>;
|
|
34
|
+
export {};
|
package/dist/common.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.cjs.js","sources":["../src/common.ts"],"sourcesContent":["export const HTTP_HANDLERS_EDITOR_SCOPE_CLASS = 'qodly-http-handlers-editor';\
|
|
1
|
+
{"version":3,"file":"common.cjs.js","sources":["../src/common.ts"],"sourcesContent":["export const HTTP_HANDLERS_EDITOR_SCOPE_CLASS = 'qodly-http-handlers-editor';\n"],"names":["HTTP_HANDLERS_EDITOR_SCOPE_CLASS"],"mappings":"gFAAO,MAAMA,EAAmC"}
|
package/dist/common.es.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.es.js","sources":["../src/common.ts"],"sourcesContent":["export const HTTP_HANDLERS_EDITOR_SCOPE_CLASS = 'qodly-http-handlers-editor';\
|
|
1
|
+
{"version":3,"file":"common.es.js","sources":["../src/common.ts"],"sourcesContent":["export const HTTP_HANDLERS_EDITOR_SCOPE_CLASS = 'qodly-http-handlers-editor';\n"],"names":["HTTP_HANDLERS_EDITOR_SCOPE_CLASS"],"mappings":"AAAO,MAAMA,IAAmC;"}
|