infinity-forge 10.3.7 → 10.4.0
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/client/client.d.ts +1 -1
- package/dist/infinity-forge.css +0 -4
- package/dist/system/hooks/locales/ibge/use-load-cities-by-uf/hook.d.ts +1 -1
- package/dist/system/hooks/locales/ibge/use-load-cities-by-uf/hook.js +1 -1
- package/dist/system/hooks/locales/ibge/use-load-cities-by-uf/hook.js.map +1 -1
- package/dist/system/hooks/locales/use-load-cities/index.d.ts +1 -1
- package/dist/system/hooks/locales/use-load-cities/index.js +1 -1
- package/dist/system/hooks/locales/use-load-cities/index.js.map +1 -1
- package/dist/system/hooks/menu/use-load-menu.d.ts +2 -2
- package/dist/system/hooks/menu/use-load-menu.js +1 -1
- package/dist/system/hooks/menu/use-load-menu.js.map +1 -1
- package/dist/system/hooks/notifications/use-load-all/index.d.ts +1 -1
- package/dist/system/hooks/notifications/use-load-all/index.js +1 -1
- package/dist/system/hooks/notifications/use-load-all/index.js.map +1 -1
- package/dist/system/hooks/notifications/use-load-no-read/index.d.ts +1 -1
- package/dist/system/hooks/notifications/use-load-no-read/index.js +1 -1
- package/dist/system/hooks/notifications/use-load-no-read/index.js.map +1 -1
- package/dist/system/hooks/ui/use-table/components/table/tr/children-tr/index.js +1 -1
- package/dist/system/hooks/ui/use-table/components/table/tr/children-tr/index.js.map +1 -1
- package/dist/system/hooks/ui/use-table/interfaces.d.ts +3 -3
- package/dist/test/index.js.map +1 -1
- package/dist/ui/atena/presentation/dynamic-elements/pages/blog/components/categorias/index.js.map +1 -1
- package/dist/ui/atena/presentation/dynamic-sections/context.d.ts +2 -2
- package/dist/ui/atena/presentation/dynamic-sections/context.js +1 -1
- package/dist/ui/atena/presentation/dynamic-sections/context.js.map +1 -1
- package/dist/ui/codie-dynamic/client/client.d.ts +1 -1
- package/dist/ui/codie-dynamic/components/directory-filter/categories-carousel/index.js +1 -1
- package/dist/ui/codie-dynamic/components/directory-filter/categories-carousel/index.js.map +1 -1
- package/dist/ui/codie-dynamic/components/directory-filter/hooks/use-dynamic-filter.js +2 -2
- package/dist/ui/codie-dynamic/components/directory-filter/hooks/use-dynamic-filter.js.map +1 -1
- package/dist/ui/codie-dynamic/components/directory-filter/source-filter-header/index.d.ts +2 -2
- package/dist/ui/codie-dynamic/components/directory-filter/source-filter-header/index.js +2 -2
- package/dist/ui/codie-dynamic/components/directory-filter/source-filter-header/index.js.map +1 -1
- package/dist/ui/components/form/handler/dynamic_form_handler/component.js +1 -1
- package/dist/ui/components/form/handler/dynamic_form_handler/component.js.map +1 -1
- package/dist/ui/contexts/i18n/context.js +1 -1
- package/dist/ui/contexts/i18n/context.js.map +1 -1
- package/dist/ui/hooks/use-query/index.d.ts +3 -2
- package/dist/ui/hooks/use-query/index.js +3 -2
- package/dist/ui/hooks/use-query/index.js.map +1 -1
- package/dist/ui/hooks/use-query/use-query/context.d.ts +12 -0
- package/dist/ui/hooks/use-query/use-query/context.js +90 -0
- package/dist/ui/hooks/use-query/use-query/context.js.map +1 -0
- package/dist/ui/hooks/use-query/use-query/index.d.ts +12 -0
- package/dist/ui/hooks/use-query/use-query/index.js +183 -0
- package/dist/ui/hooks/use-query/use-query/index.js.map +1 -0
- package/dist/ui/hooks/use-query/use-query/types.d.ts +53 -0
- package/dist/ui/hooks/use-query/{interfaces.js → use-query/types.js} +1 -1
- package/dist/ui/hooks/use-query/use-query/types.js.map +1 -0
- package/dist/ui/hooks/use-query/use-query/use-mutation.d.ts +2 -0
- package/dist/ui/hooks/use-query/use-query/use-mutation.js +19 -0
- package/dist/ui/hooks/use-query/use-query/use-mutation.js.map +1 -0
- package/dist/ui/hooks/use-swagger/client/index.d.ts +2 -2
- package/dist/ui/hooks/use-swagger/client/index.js +1 -1
- package/dist/ui/hooks/use-swagger/client/index.js.map +1 -1
- package/package.json +2 -1
- package/dist/ui/hooks/use-query/hook.d.ts +0 -9
- package/dist/ui/hooks/use-query/hook.js +0 -123
- package/dist/ui/hooks/use-query/hook.js.map +0 -1
- package/dist/ui/hooks/use-query/interfaces.d.ts +0 -32
- package/dist/ui/hooks/use-query/interfaces.js.map +0 -1
package/dist/client/client.d.ts
CHANGED
|
@@ -10,6 +10,6 @@ export declare const client: <Url extends keyof Swagger, Method extends keyof Sw
|
|
|
10
10
|
url: Url;
|
|
11
11
|
method: Method;
|
|
12
12
|
body?: import("../ui/index.js").DeepPartial<Omit<Swagger[Url][Method], "result">>;
|
|
13
|
-
} & Partial<Omit<import("../ui/index.js").
|
|
13
|
+
} & Partial<Omit<import("../ui/index.js").useQueryProps<any>, "queryFn">>) => Required<import("../ui/hooks/use-query/use-query/types.js").QueryState<Awaited<Swagger[Url][Method] extends {
|
|
14
14
|
result: infer R;
|
|
15
15
|
} ? R : never>>>;
|
package/dist/infinity-forge.css
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
1
|
a{text-decoration:unset}html{font-size:10px!important}a,address,b,h1,h2,h3,h4,h5,i,label,li,p,span,strong,td,time{margin-bottom:0;text-rendering:optimizeLegibility!important}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}[class*=-extraBold]{font-weight:800}[class*=-bold]{font-weight:700}[class*=-semibold]{font-weight:600}[class*=-medium]{font-weight:500}[class*=-regular]{font-weight:400}[class*=-light]{font-weight:300}[class*=font-80]{font-size:8rem}[class*=font-72]{font-size:7.2rem}[class*=font-70]{font-size:7rem}[class*=font-64]{font-size:6.4rem}[class*=font-50]{font-size:5rem}[class*=font-48]{font-size:4.8rem}[class*=font-40]{font-size:4rem}[class*=font-36]{font-size:3.6rem}[class*=font-32]{font-size:3.2rem}[class*=font-24]{font-size:2.4rem}[class*=font-20]{font-size:2rem}[class*=font-18]{font-size:1.8rem}[class*=font-16]{font-size:1.6rem}[class*=font-15]{font-size:1.5rem}[class*=font-14]{font-size:1.4rem}[class*=font-13]{font-size:1.3rem}[class*=font-12]{font-size:1.2rem}@media only screen and (max-width:1600px){[class*=font-80]{font-size:6rem}[class*=font-72]{font-size:5.8rem}[class*=font-70]{font-size:5.5rem}[class*=font-64]{font-size:6rem}[class*=font-50]{font-size:4.8rem}[class*=font-48]{font-size:4.4rem}[class*=font-40]{font-size:3.8rem}[class*=font-32]{font-size:3rem}[class*=font-24]{font-size:2.3rem}[class*=font-20]{font-size:1.9rem}[class*=font-18]{font-size:1.7rem}[class*=font-16]{font-size:1.55rem}}@media only screen and (max-width:1400px){[class*=font-80]{font-size:5.4rem}[class*=font-72]{font-size:5.2rem}[class*=font-70]{font-size:4.9rem}[class*=font-64]{font-size:5.6rem}[class*=font-50]{font-size:4.6rem}[class*=font-48]{font-size:4.2rem}[class*=font-40]{font-size:3.6rem}[class*=font-32]{font-size:2.8rem}[class*=font-24]{font-size:2rem}[class*=font-20]{font-size:1.8rem}[class*=font-18]{font-size:1.65rem}[class*=font-16]{font-size:1.5rem}[class*=font-13]{font-size:1.25rem}}@media only screen and (max-width:1200px){[class*=font-80]{font-size:5.5rem}[class*=font-72]{font-size:4.8rem}[class*=font-70]{font-size:4.6rem}[class*=font-64]{font-size:5.2rem}[class*=font-50]{font-size:4.2rem}[class*=font-48]{font-size:4rem}[class*=font-40]{font-size:3.2rem}[class*=font-32]{font-size:2.4rem}[class*=font-24]{font-size:1.9rem}[class*=font-20]{font-size:1.75rem}[class*=font-18]{font-size:1.6rem}[class*=font-16]{font-size:1.45rem}[class*=font-13]{font-size:1.2rem}}@media only screen and (max-width:1024px){[class*=font-80]{font-size:5.2rem}[class*=font-72]{font-size:4.5rem}[class*=font-70]{font-size:4.3rem}[class*=font-64]{font-size:4.4rem}[class*=font-50]{font-size:4rem}[class*=font-48]{font-size:3.8rem}[class*=font-40]{font-size:3rem}[class*=font-32]{font-size:2.2rem}[class*=font-24]{font-size:1.8rem}[class*=font-20]{font-size:1.7rem}[class*=font-18]{font-size:1.55rem}[class*=font-16]{font-size:1.35rem}[class*=font-14]{font-size:1.3rem}}@media only screen and (max-width:900px){[class*=font-80]{font-size:5rem}[class*=font-72]{font-size:3.8rem}[class*=font-70]{font-size:3.6rem}[class*=font-64]{font-size:3.8rem}[class*=font-48]{font-size:3.6rem}[class*=font-40]{font-size:2.8rem}[class*=font-32]{font-size:2rem}}@media only screen and (max-width:768px){[class*=font-80]{font-size:4.5rem}[class*=font-72]{font-size:3.5rem}[class*=font-70]{font-size:3rem}[class*=font-64]{font-size:3.4rem}[class*=font-50]{font-size:3.8rem}[class*=font-48]{font-size:3.4rem}[class*=font-40]{font-size:2.6rem}[class*=font-32]{font-size:1.9rem}[class*=font-24]{font-size:1.7rem}[class*=font-20]{font-size:1.65rem}[class*=font-18]{font-size:1.5rem}[class*=font-16]{font-size:1.35rem}[class*=font-13]{font-size:1.15rem}}@media only screen and (max-width:650px){[class*=font-80]{font-size:4rem}[class*=font-64]{font-size:3.2rem}[class*=font-50]{font-size:3.5rem}[class*=font-48]{font-size:3.2rem}[class*=font-40]{font-size:2.5rem}[class*=font-32]{font-size:1.8rem}[class*=font-24]{font-size:1.65rem}[class*=font-18]{font-size:1.4rem}[class*=font-16]{font-size:1.3rem}}@media only screen and (max-width:500px){[class*=font-80]{font-size:3.5rem}[class*=font-64]{font-size:2.8rem}[class*=font-50]{font-size:3rem}[class*=font-48]{font-size:2.8rem}[class*=font-40]{font-size:2.3rem}[class*=font-24]{font-size:1.6rem}[class*=font-18]{font-size:1.25rem}[class*=font-14],[class*=font-16]{font-size:1.2rem}}@media only screen and (max-width:390px){[class*=font-72],[class*=font-80]{font-size:3rem}[class*=font-64]{font-size:2.6rem}[class*=font-50]{font-size:2.8rem}[class*=font-48]{font-size:2.6rem}[class*=font-40]{font-size:2.1rem}[class*=font-32]{font-size:1.7rem}[class*=font-24]{font-size:1.4rem}[class*=font-18]{font-size:1.2rem}}*,:after,:before{box-sizing:border-box}html{font-family:Roboto,sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#fff;color:#212529;font-family:Roboto,sans-serif,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus{outline:none!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#007bff;text-decoration:none;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-bottom:1rem;margin-top:0;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{border-style:none;vertical-align:middle}svg:not(:root){overflow:hidden}[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{border-collapse:collapse}caption{caption-side:bottom;color:#868e96;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{display:list-item}template{display:none}[hidden]{display:none!important}ul,ul li{list-style-type:none;padding-left:0}@keyframes placeHolderShimmer{0%{background-position:0 0}to{background-position:100vw 0}}ol li:is([data-list=bullet]):before{content:"•"!important}
|
|
2
|
-
a{text-decoration:unset}html{font-size:10px!important}a,address,b,h1,h2,h3,h4,h5,i,label,li,p,span,strong,td,time{margin-bottom:0;text-rendering:optimizeLegibility!important}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}[class*=-extraBold]{font-weight:800}[class*=-bold]{font-weight:700}[class*=-semibold]{font-weight:600}[class*=-medium]{font-weight:500}[class*=-regular]{font-weight:400}[class*=-light]{font-weight:300}[class*=font-80]{font-size:8rem}[class*=font-72]{font-size:7.2rem}[class*=font-70]{font-size:7rem}[class*=font-64]{font-size:6.4rem}[class*=font-50]{font-size:5rem}[class*=font-48]{font-size:4.8rem}[class*=font-40]{font-size:4rem}[class*=font-36]{font-size:3.6rem}[class*=font-32]{font-size:3.2rem}[class*=font-24]{font-size:2.4rem}[class*=font-20]{font-size:2rem}[class*=font-18]{font-size:1.8rem}[class*=font-16]{font-size:1.6rem}[class*=font-15]{font-size:1.5rem}[class*=font-14]{font-size:1.4rem}[class*=font-13]{font-size:1.3rem}[class*=font-12]{font-size:1.2rem}@media only screen and (max-width:1600px){[class*=font-80]{font-size:6rem}[class*=font-72]{font-size:5.8rem}[class*=font-70]{font-size:5.5rem}[class*=font-64]{font-size:6rem}[class*=font-50]{font-size:4.8rem}[class*=font-48]{font-size:4.4rem}[class*=font-40]{font-size:3.8rem}[class*=font-32]{font-size:3rem}[class*=font-24]{font-size:2.3rem}[class*=font-20]{font-size:1.9rem}[class*=font-18]{font-size:1.7rem}[class*=font-16]{font-size:1.55rem}}@media only screen and (max-width:1400px){[class*=font-80]{font-size:5.4rem}[class*=font-72]{font-size:5.2rem}[class*=font-70]{font-size:4.9rem}[class*=font-64]{font-size:5.6rem}[class*=font-50]{font-size:4.6rem}[class*=font-48]{font-size:4.2rem}[class*=font-40]{font-size:3.6rem}[class*=font-32]{font-size:2.8rem}[class*=font-24]{font-size:2rem}[class*=font-20]{font-size:1.8rem}[class*=font-18]{font-size:1.65rem}[class*=font-16]{font-size:1.5rem}[class*=font-13]{font-size:1.25rem}}@media only screen and (max-width:1200px){[class*=font-80]{font-size:5.5rem}[class*=font-72]{font-size:4.8rem}[class*=font-70]{font-size:4.6rem}[class*=font-64]{font-size:5.2rem}[class*=font-50]{font-size:4.2rem}[class*=font-48]{font-size:4rem}[class*=font-40]{font-size:3.2rem}[class*=font-32]{font-size:2.4rem}[class*=font-24]{font-size:1.9rem}[class*=font-20]{font-size:1.75rem}[class*=font-18]{font-size:1.6rem}[class*=font-16]{font-size:1.45rem}[class*=font-13]{font-size:1.2rem}}@media only screen and (max-width:1024px){[class*=font-80]{font-size:5.2rem}[class*=font-72]{font-size:4.5rem}[class*=font-70]{font-size:4.3rem}[class*=font-64]{font-size:4.4rem}[class*=font-50]{font-size:4rem}[class*=font-48]{font-size:3.8rem}[class*=font-40]{font-size:3rem}[class*=font-32]{font-size:2.2rem}[class*=font-24]{font-size:1.8rem}[class*=font-20]{font-size:1.7rem}[class*=font-18]{font-size:1.55rem}[class*=font-16]{font-size:1.35rem}[class*=font-14]{font-size:1.3rem}}@media only screen and (max-width:900px){[class*=font-80]{font-size:5rem}[class*=font-72]{font-size:3.8rem}[class*=font-70]{font-size:3.6rem}[class*=font-64]{font-size:3.8rem}[class*=font-48]{font-size:3.6rem}[class*=font-40]{font-size:2.8rem}[class*=font-32]{font-size:2rem}}@media only screen and (max-width:768px){[class*=font-80]{font-size:4.5rem}[class*=font-72]{font-size:3.5rem}[class*=font-70]{font-size:3rem}[class*=font-64]{font-size:3.4rem}[class*=font-50]{font-size:3.8rem}[class*=font-48]{font-size:3.4rem}[class*=font-40]{font-size:2.6rem}[class*=font-32]{font-size:1.9rem}[class*=font-24]{font-size:1.7rem}[class*=font-20]{font-size:1.65rem}[class*=font-18]{font-size:1.5rem}[class*=font-16]{font-size:1.35rem}[class*=font-13]{font-size:1.15rem}}@media only screen and (max-width:650px){[class*=font-80]{font-size:4rem}[class*=font-64]{font-size:3.2rem}[class*=font-50]{font-size:3.5rem}[class*=font-48]{font-size:3.2rem}[class*=font-40]{font-size:2.5rem}[class*=font-32]{font-size:1.8rem}[class*=font-24]{font-size:1.65rem}[class*=font-18]{font-size:1.4rem}[class*=font-16]{font-size:1.3rem}}@media only screen and (max-width:500px){[class*=font-80]{font-size:3.5rem}[class*=font-64]{font-size:2.8rem}[class*=font-50]{font-size:3rem}[class*=font-48]{font-size:2.8rem}[class*=font-40]{font-size:2.3rem}[class*=font-24]{font-size:1.6rem}[class*=font-18]{font-size:1.25rem}[class*=font-14],[class*=font-16]{font-size:1.2rem}}@media only screen and (max-width:390px){[class*=font-72],[class*=font-80]{font-size:3rem}[class*=font-64]{font-size:2.6rem}[class*=font-50]{font-size:2.8rem}[class*=font-48]{font-size:2.6rem}[class*=font-40]{font-size:2.1rem}[class*=font-32]{font-size:1.7rem}[class*=font-24]{font-size:1.4rem}[class*=font-18]{font-size:1.2rem}}*,:after,:before{box-sizing:border-box}html{font-family:Roboto,sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#fff;color:#212529;font-family:Roboto,sans-serif,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus{outline:none!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#007bff;text-decoration:none;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-bottom:1rem;margin-top:0;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{border-style:none;vertical-align:middle}svg:not(:root){overflow:hidden}[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{border-collapse:collapse}caption{caption-side:bottom;color:#868e96;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{display:list-item}template{display:none}[hidden]{display:none!important}ul,ul li{list-style-type:none;padding-left:0}@keyframes placeHolderShimmer{0%{background-position:0 0}to{background-position:100vw 0}}ol li:is([data-list=bullet]):before{content:"•"!important}
|
|
3
|
-
.ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{height:1px;left:-100000px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;height:100%;line-height:1.42;outline:none;overflow-y:auto;padding:12px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6,.ql-editor ol,.ql-editor p,.ql-editor pre,.ql-editor ul{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;margin:0;padding:0}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:"\2022"}.ql-editor ul[data-checked=false],.ql-editor ul[data-checked=true]{pointer-events:none}.ql-editor ul[data-checked=false]>li *,.ql-editor ul[data-checked=true]>li *{pointer-events:all}.ql-editor ul[data-checked=false]>li:before,.ql-editor ul[data-checked=true]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:"\2611"}.ql-editor ul[data-checked=false]>li:before{content:"\2610"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-increment:list-0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li:before{content:counter(list-0,decimal) ". "}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) ". "}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) ". "}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) ". "}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) ". "}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) ". "}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) ". "}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) ". "}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) ". "}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) ". "}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-snow .ql-toolbar:after,.ql-snow.ql-toolbar:after{clear:both;content:"";display:table}.ql-snow .ql-toolbar button,.ql-snow.ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-snow .ql-toolbar button svg,.ql-snow.ql-toolbar button svg{float:left;height:100%}.ql-snow .ql-toolbar button:active:hover,.ql-snow.ql-toolbar button:active:hover{outline:none}.ql-snow .ql-toolbar input.ql-image[type=file],.ql-snow.ql-toolbar input.ql-image[type=file]{display:none}.ql-snow .ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar button.ql-active,.ql-snow .ql-toolbar button:focus,.ql-snow .ql-toolbar button:hover,.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar button.ql-active,.ql-snow.ql-toolbar button:focus,.ql-snow.ql-toolbar button:hover{color:#06c}.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill{fill:#06c}.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter{stroke:#06c}.ql-snow,.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:"";display:table}.ql-snow .ql-stroke{fill:none;stroke:#444;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#444;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-stroke.ql-thin,.ql-snow .ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor pre{margin-bottom:5px;margin-top:5px;padding:5px 10px;white-space:pre-wrap}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#444;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-snow .ql-picker-label:before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#ccc;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;padding:2px 4px;width:24px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{margin-top:-9px;position:absolute;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""]):before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-item:before,.ql-snow .ql-picker.ql-header .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]:before{content:"Heading 1"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]:before{content:"Heading 2"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]:before{content:"Heading 3"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]:before{content:"Heading 4"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]:before{content:"Heading 5"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]:before{content:"Heading 6"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-item:before,.ql-snow .ql-picker.ql-font .ql-picker-label:before{content:"Sans Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before{content:"Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before{content:"Monospace"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-item:before,.ql-snow .ql-picker.ql-size .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before{content:"Small"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before{content:"Large"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before{content:"Huge"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-toolbar.ql-snow{border:1px solid #ccc;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:8px}.ql-toolbar.ql-snow .ql-formats{margin-right:15px}.ql-toolbar.ql-snow .ql-picker-label{border:1px solid transparent}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:0 2px 8px rgba(0,0,0,.2)}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#ccc}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow+.ql-container.ql-snow{border-top:0}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ddd;color:#444;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip:before{content:"Visit URL:";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{border:1px solid #ccc;display:none;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action:after{border-right:1px solid #ccc;content:"Edit";margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove:before{content:"Remove";margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0;content:"Save";padding-right:0}.ql-snow .ql-tooltip[data-mode=link]:before{content:"Enter link:"}.ql-snow .ql-tooltip[data-mode=formula]:before{content:"Enter formula:"}.ql-snow .ql-tooltip[data-mode=video]:before{content:"Enter video:"}.ql-snow a{color:#06c}.ql-container.ql-snow{border:1px solid #ccc}.ql-align-center{text-align:center}.ql-align-justify{text-align:justify}.ql-align-right{text-align:right}
|
|
4
|
-
*,:after,:before{box-sizing:border-box}a,button{cursor:pointer;outline:unset!important}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}.row{display:flex;gap:15px}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#fff;color:#212529;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus{outline:none!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#007bff;text-decoration:none;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-bottom:1rem;margin-top:0;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{border-style:none;vertical-align:middle}svg:not(:root){overflow:hidden}[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{border-collapse:collapse}caption{caption-side:bottom;color:#868e96;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{display:list-item}template{display:none}[hidden]{display:none!important}ul,ul li{list-style-type:none;padding-left:0}@keyframes placeHolderShimmer{0%{background-position:0 0}to{background-position:100vw 0}}#__next{position:relative;z-index:1}
|
|
5
|
-
|
|
6
2
|
.ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{height:1px;left:-100000px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;height:100%;line-height:1.42;outline:none;overflow-y:auto;padding:12px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6,.ql-editor ol,.ql-editor p,.ql-editor pre,.ql-editor ul{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;margin:0;padding:0}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:"\2022"}.ql-editor ul[data-checked=false],.ql-editor ul[data-checked=true]{pointer-events:none}.ql-editor ul[data-checked=false]>li *,.ql-editor ul[data-checked=true]>li *{pointer-events:all}.ql-editor ul[data-checked=false]>li:before,.ql-editor ul[data-checked=true]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:"\2611"}.ql-editor ul[data-checked=false]>li:before{content:"\2610"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-increment:list-0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li:before{content:counter(list-0,decimal) ". "}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) ". "}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) ". "}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) ". "}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) ". "}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) ". "}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) ". "}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) ". "}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) ". "}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) ". "}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-snow .ql-toolbar:after,.ql-snow.ql-toolbar:after{clear:both;content:"";display:table}.ql-snow .ql-toolbar button,.ql-snow.ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-snow .ql-toolbar button svg,.ql-snow.ql-toolbar button svg{float:left;height:100%}.ql-snow .ql-toolbar button:active:hover,.ql-snow.ql-toolbar button:active:hover{outline:none}.ql-snow .ql-toolbar input.ql-image[type=file],.ql-snow.ql-toolbar input.ql-image[type=file]{display:none}.ql-snow .ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar button.ql-active,.ql-snow .ql-toolbar button:focus,.ql-snow .ql-toolbar button:hover,.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar button.ql-active,.ql-snow.ql-toolbar button:focus,.ql-snow.ql-toolbar button:hover{color:#06c}.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill{fill:#06c}.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter{stroke:#06c}.ql-snow,.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:"";display:table}.ql-snow .ql-stroke{fill:none;stroke:#444;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#444;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-stroke.ql-thin,.ql-snow .ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor pre{margin-bottom:5px;margin-top:5px;padding:5px 10px;white-space:pre-wrap}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#444;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-snow .ql-picker-label:before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#ccc;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;padding:2px 4px;width:24px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{margin-top:-9px;position:absolute;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""]):before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-item:before,.ql-snow .ql-picker.ql-header .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]:before{content:"Heading 1"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]:before{content:"Heading 2"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]:before{content:"Heading 3"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]:before{content:"Heading 4"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]:before{content:"Heading 5"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]:before{content:"Heading 6"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-item:before,.ql-snow .ql-picker.ql-font .ql-picker-label:before{content:"Sans Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before{content:"Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before{content:"Monospace"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-item:before,.ql-snow .ql-picker.ql-size .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before{content:"Small"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before{content:"Large"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before{content:"Huge"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-toolbar.ql-snow{border:1px solid #ccc;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:8px}.ql-toolbar.ql-snow .ql-formats{margin-right:15px}.ql-toolbar.ql-snow .ql-picker-label{border:1px solid transparent}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:0 2px 8px rgba(0,0,0,.2)}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#ccc}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow+.ql-container.ql-snow{border-top:0}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ddd;color:#444;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip:before{content:"Visit URL:";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{border:1px solid #ccc;display:none;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action:after{border-right:1px solid #ccc;content:"Edit";margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove:before{content:"Remove";margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0;content:"Save";padding-right:0}.ql-snow .ql-tooltip[data-mode=link]:before{content:"Enter link:"}.ql-snow .ql-tooltip[data-mode=formula]:before{content:"Enter formula:"}.ql-snow .ql-tooltip[data-mode=video]:before{content:"Enter video:"}.ql-snow a{color:#06c}.ql-container.ql-snow{border:1px solid #ccc}.ql-align-center{text-align:center}.ql-align-justify{text-align:justify}.ql-align-right{text-align:right}
|
|
7
3
|
*,:after,:before{box-sizing:border-box}a,button{cursor:pointer;outline:unset!important}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}.row{display:flex;gap:15px}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{background-color:#fff;color:#212529;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1rem;font-weight:400;line-height:1.5;margin:0;text-align:left}[tabindex="-1"]:focus{outline:none!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;margin-top:0}p{margin-bottom:1rem;margin-top:0}abbr[data-original-title],abbr[title]{border-bottom:0;cursor:help;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{background-color:transparent;color:#007bff;text-decoration:none;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-bottom:1rem;margin-top:0;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{border-style:none;vertical-align:middle}svg:not(:root){overflow:hidden}[role=button],a,area,button,input:not([type=range]),label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{border-collapse:collapse}caption{caption-side:bottom;color:#868e96;padding-bottom:.75rem;padding-top:.75rem;text-align:left}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{border:0;margin:0;min-width:0;padding:0}legend{color:inherit;display:block;font-size:1.5rem;line-height:inherit;margin-bottom:.5rem;max-width:100%;padding:0;white-space:normal;width:100%}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:none;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}output{display:inline-block}summary{display:list-item}template{display:none}[hidden]{display:none!important}ul,ul li{list-style-type:none;padding-left:0}@keyframes placeHolderShimmer{0%{background-position:0 0}to{background-position:100vw 0}}#__next{position:relative;z-index:1}
|
|
@@ -2,7 +2,7 @@ import { Option } from '../../../../../ui/index.js';
|
|
|
2
2
|
import { CitieIBGE } from './interfaces.js';
|
|
3
3
|
export declare function useLoadCities({ uf }: {
|
|
4
4
|
uf: string;
|
|
5
|
-
}): Required<import("../../../../../ui/
|
|
5
|
+
}): Required<import("../../../../../ui/hooks/use-query/use-query/types.js").QueryState<{
|
|
6
6
|
citiesIBGE: CitieIBGE[];
|
|
7
7
|
options: Option[];
|
|
8
8
|
}>>;
|
|
@@ -41,7 +41,7 @@ var ui_1 = require("../../../../../ui/index.js");
|
|
|
41
41
|
function useLoadCities(_a) {
|
|
42
42
|
var _this = this;
|
|
43
43
|
var uf = _a.uf;
|
|
44
|
-
return (0, ui_1.
|
|
44
|
+
return (0, ui_1.useQuery)({
|
|
45
45
|
queryFn: function () { return __awaiter(_this, void 0, void 0, function () {
|
|
46
46
|
var citiesIBGE, _a;
|
|
47
47
|
return __generator(this, function (_b) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hook.js","sourceRoot":"","sources":["../../../../../../src/system/hooks/locales/ibge/use-load-cities-by-uf/hook.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,sCAiBC;AArBD,
|
|
1
|
+
{"version":3,"file":"hook.js","sourceRoot":"","sources":["../../../../../../src/system/hooks/locales/ibge/use-load-cities-by-uf/hook.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,sCAiBC;AArBD,2BAA4C;AAI5C,SAAgB,aAAa,CAAC,EAAsB;IAApD,iBAiBC;QAjB+B,EAAE,QAAA;IAChC,OAAO,IAAA,aAAQ,EAAC;QACd,OAAO,EAAE;;;;;;wBAEc,qBAAM,IAAA,QAAG,EAC1B,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,8BAAuB,EAAE,gBAAa,EAAE,EAC9D,0CAA0C,CAC3C,EAAA;;wBAHK,UAAU,GAAG,SAGlB;wBAED,sBAAO,EAAE,UAAU,YAAA,EAAE,OAAO,EAAE,UAAU,CAAC,GAAG,CAAC,UAAC,KAAK,IAAK,OAAA,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,IAAI,EAAE,CAAC,EAA1C,CAA0C,CAAa,EAAE,EAAA;;;wBAEjH,sBAAO,EAAE,UAAU,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,EAAA;;;;aAEzC;QACD,QAAQ,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC;QACxB,OAAO,EAAE,CAAC,CAAC,EAAE;KACd,CAAC,CAAA;AACJ,CAAC"}
|
|
@@ -40,7 +40,7 @@ exports.useLoadStates = useLoadStates;
|
|
|
40
40
|
var ui_1 = require("../../../../ui/index.js");
|
|
41
41
|
function useLoadStates() {
|
|
42
42
|
var _this = this;
|
|
43
|
-
return (0, ui_1.
|
|
43
|
+
return (0, ui_1.useQuery)({
|
|
44
44
|
queryFn: function () { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
45
45
|
return [2 /*return*/, ui_1.statesBrazil];
|
|
46
46
|
}); }); },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/system/hooks/locales/use-load-cities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,sCAKC;AAPD,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/system/hooks/locales/use-load-cities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,sCAKC;AAPD,2BAA6C;AAE7C,SAAgB,aAAa;IAA7B,iBAKC;IAJC,OAAO,IAAA,aAAQ,EAAC;QACd,OAAO,EAAE;YAAY,sBAAA,iBAAY,EAAA;iBAAA;QACjC,QAAQ,EAAE,CAAC,QAAQ,CAAC;KACrB,CAAC,CAAA;AACJ,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { List,
|
|
1
|
+
import { List, useQueryProps } from '../../../ui/index.js';
|
|
2
2
|
export type Menu = {
|
|
3
3
|
id: number;
|
|
4
4
|
order: number;
|
|
@@ -8,4 +8,4 @@ export type Menu = {
|
|
|
8
8
|
items?: Menu[];
|
|
9
9
|
role?: string[];
|
|
10
10
|
};
|
|
11
|
-
export declare function useLoadMenu(props: Partial<Pick<
|
|
11
|
+
export declare function useLoadMenu(props: Partial<Pick<useQueryProps<any>, "enabled">>): Required<import("../../../ui/hooks/use-query/use-query/types.js").QueryState<List<Menu>>>;
|
|
@@ -43,7 +43,7 @@ function useLoadMenu(props) {
|
|
|
43
43
|
var _this = this;
|
|
44
44
|
var _a;
|
|
45
45
|
var InjectedRemotes = (0, system_1.useInfraInjection)().InjectedRemotes;
|
|
46
|
-
return (0, ui_1.
|
|
46
|
+
return (0, ui_1.useQuery)({
|
|
47
47
|
queryKey: ['RemoteMenu', JSON.stringify(((_a = InjectedRemotes === null || InjectedRemotes === void 0 ? void 0 : InjectedRemotes.menu) === null || _a === void 0 ? void 0 : _a.menu) || {})],
|
|
48
48
|
queryFn: function () { return __awaiter(_this, void 0, void 0, function () {
|
|
49
49
|
var menu, response;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-load-menu.js","sourceRoot":"","sources":["../../../../src/system/hooks/menu/use-load-menu.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAcA,kCA0BC;AAxCD,
|
|
1
|
+
{"version":3,"file":"use-load-menu.js","sourceRoot":"","sources":["../../../../src/system/hooks/menu/use-load-menu.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAcA,kCA0BC;AAxCD,2BAAyD;AAEzD,mCAA4C;AAY5C,SAAgB,WAAW,CAAC,KAAmD;IAA/E,iBA0BC;;IAzBS,IAAA,eAAe,GAAK,IAAA,0BAAiB,GAAE,gBAAxB,CAAwB;IAE/C,OAAO,IAAA,aAAQ,EAAC;QACd,QAAQ,EAAE,CAAC,YAAY,EAAE,IAAI,CAAC,SAAS,CAAC,CAAA,MAAA,eAAe,aAAf,eAAe,uBAAf,eAAe,CAAE,IAAI,0CAAE,IAAI,KAAI,EAAE,CAAC,CAAC;QAC3E,OAAO,EAAE;;;;;;wBAEP,IAAI,MAAA,eAAe,aAAf,eAAe,uBAAf,eAAe,CAAE,IAAI,0CAAE,IAAI,EAAE,CAAC;4BAChC,sBAAO,MAAA,eAAe,aAAf,eAAe,uBAAf,eAAe,CAAE,IAAI,0CAAE,IAAI,EAAA;wBACpC,CAAC;6BAEE,CAAA,MAAA,eAAe,aAAf,eAAe,uBAAf,eAAe,CAAE,IAAI,0CAAE,OAAO,CAAA,EAA9B,wBAA8B;wBACjB,qBAAM,CAAA,MAAA,eAAe,aAAf,eAAe,uBAAf,eAAe,CAAE,IAAI,0CAAE,OAAO,EAAE,CAAA,EAAA;;wBAA9C,IAAI,GAAI,SAAsC;wBAEpD,sBAAO,IAAI,EAAA;4BAGI,qBAAM,IAAA,QAAG,EAAC;4BACzB,GAAG,EAAE,MAAM;4BACX,MAAM,EAAE,KAAK;yBACd,CAAC,EAAA;;wBAHI,QAAQ,GAAG,SAGf;wBAEF,sBAAO,QAAsB,EAAA;;;aAC9B;QACD,OAAO,EAAE,OAAO,CAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,OAAO,CAAA,KAAK,WAAW,CAAC,CAAC,CAAC,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,OAAO,CAAC,CAAC,CAAC,IAAI;KACvE,CAAC,CAAA;AACJ,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { INotification } from '../../../../system/index.js';
|
|
2
|
-
export declare function useLoadAllNotifications(): Required<import("../../../../ui/
|
|
2
|
+
export declare function useLoadAllNotifications(): Required<import("../../../../ui/hooks/use-query/use-query/types.js").QueryState<INotification[]>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/system/hooks/notifications/use-load-all/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,0DA8BC;AAjCD,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/system/hooks/notifications/use-load-all/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,0DA8BC;AAjCD,2BAAoC;AACpC,mCAA2D;AAE3D,SAAgB,uBAAuB;;IAC/B,IAAA,KAAsC,IAAA,0BAAiB,GAAE,EAAvD,cAAc,oBAAA,EAAE,eAAe,qBAAwB,CAAA;IAE/D,IAAM,QAAQ,GAAG,MAAA,cAAc,aAAd,cAAc,uBAAd,cAAc,CAAE,YAAY,0CAAE,MAAM,CAAA;IAErD,SAAe,OAAO;;;;;;;;wBAElB,IAAI,KAAK,CAAC,OAAO,CAAC,eAAe,CAAC,aAAa,CAAC,YAAY,CAAC,EAAE,CAAC;4BAC9D,sBAAQ,MAAA,eAAe,aAAf,eAAe,uBAAf,eAAe,CAAE,aAAa,0CAAE,YAAY,EAAA;wBACtD,CAAC;wBAEiB,qBAAM,IAAA,QAAG,EAAC;gCAC1B,GAAG,EAAE,eAAe;gCACpB,MAAM,EAAE,KAAK;gCACb,IAAI,EAAE,EAAE,QAAQ,EAAE,mBAAmB,EAAE;6BACxC,CAAC,EAAA;;wBAJI,QAAQ,GAAG,CAAC,SAIhB,CAED;wBAED,sBAAO,QAAQ,CAAC,IAAI,EAAA;;;wBAEpB,sBAAO,EAAE,EAAA;;;;;KAEZ;IAED,OAAO,IAAA,aAAQ,EAAC;QACd,QAAQ,EAAE,CAAC,sBAAsB,CAAC;QAClC,OAAO,EAAE,OAAO;QAChB,OAAO,EAAE,QAAQ;KAClB,CAAC,CAAA;AACJ,CAAC"}
|
|
@@ -40,7 +40,7 @@ exports.useLoadNoReadNotifications = useLoadNoReadNotifications;
|
|
|
40
40
|
var ui_1 = require("../../../../ui/index.js");
|
|
41
41
|
function useLoadNoReadNotifications() {
|
|
42
42
|
var _this = this;
|
|
43
|
-
return (0, ui_1.
|
|
43
|
+
return (0, ui_1.useQuery)({
|
|
44
44
|
queryFn: function () { return __awaiter(_this, void 0, void 0, function () {
|
|
45
45
|
var response;
|
|
46
46
|
return __generator(this, function (_a) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/system/hooks/notifications/use-load-no-read/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,gEAYC;AAdD,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/system/hooks/notifications/use-load-no-read/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,gEAYC;AAdD,2BAAoC;AAEpC,SAAgB,0BAA0B;IAA1C,iBAYC;IAXC,OAAO,IAAA,aAAQ,EAAC;QACd,OAAO,EAAE;;;;4BACW,qBAAM,IAAA,QAAG,EAAC;4BAC1B,GAAG,EAAE,0BAA0B;4BAC/B,MAAM,EAAE,KAAK;yBACd,CAAC,EAAA;;wBAHI,QAAQ,GAAG,CAAC,SAGhB,CAAuB;wBAEzB,sBAAO,QAAQ,EAAA;;;aAChB;QACD,QAAQ,EAAE,CAAC,yBAAyB,CAAC;KACtC,CAAC,CAAA;AACJ,CAAC"}
|
|
@@ -93,7 +93,7 @@ function ChildrenTr(_a) {
|
|
|
93
93
|
var childrenKey = childrens.childrenKey, columns = childrens.columns, getChildrenData = childrens.getChildrenData;
|
|
94
94
|
var tableItem = (0, formik_1.getIn)(table, childrenKey);
|
|
95
95
|
var instance = (getChildrenData === null || getChildrenData === void 0 ? void 0 : getChildrenData({ tableIsLoading: loadingTable, tableData: tableItems })) || {};
|
|
96
|
-
var _c = (0, ui_1.
|
|
96
|
+
var _c = (0, ui_1.useQuery)(__assign(__assign({}, instance), { enabled: typeof instance.enabled === "boolean" ? instance.enabled : instance ? true : false, queryKey: [((_b = instance === null || instance === void 0 ? void 0 : instance.querykey) === null || _b === void 0 ? void 0 : _b.call(instance, { tableItem: tableItem })) || JSON.stringify(tableItem)], queryFn: function () { return __awaiter(_this, void 0, void 0, function () {
|
|
97
97
|
var response, _a;
|
|
98
98
|
return __generator(this, function (_b) {
|
|
99
99
|
switch (_b.label) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../src/system/hooks/ui/use-table/components/table/tr/children-tr/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAOA,gCAgDC;;AAvDD,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../src/system/hooks/ui/use-table/components/table/tr/children-tr/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAOA,gCAgDC;;AAvDD,2BAA+B;AAE/B,mDAAgD;AAEhD,0CAA6B;AAC7B,iCAA8B;AAE9B,SAAgB,UAAU,CAAC,EAU1B;IAVD,iBAgDC;;QA/CC,SAAS,eAAA,EACT,KAAK,WAAA,EACL,YAAY,kBAAA,EACZ,UAAU,gBAAA;IAOF,IAAA,WAAW,GAA+B,SAAS,YAAxC,EAAE,OAAO,GAAsB,SAAS,QAA/B,EAAE,eAAe,GAAK,SAAS,gBAAd,CAAc;IAE3D,IAAM,SAAS,GAAG,IAAA,cAAK,EAAC,KAAK,EAAE,WAAqB,CAAC,CAAC;IAEtD,IAAM,QAAQ,GAAG,CAAA,eAAe,aAAf,eAAe,uBAAf,eAAe,CAAG,EAAE,cAAc,EAAE,YAAY,EAAE,SAAS,EAAE,UAAU,EAAE,CAAC,KAAI,EAAE,CAAA;IAE3F,IAAA,KAAuB,IAAA,aAAQ,wBAChC,QAAQ,KACX,OAAO,EAAE,OAAO,QAAQ,CAAC,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,EAC3F,QAAQ,EAAE,CAAC,CAAA,MAAA,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,QAAQ,yDAAG,EAAE,SAAS,WAAA,EAAE,CAAC,KAAI,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,EAC5E,OAAO,EAAE;;;;;;wBAEY,qBAAM,QAAQ,CAAC,OAAO,CAAC,EAAE,SAAS,WAAA,EAAE,CAAC,EAAA;;wBAAhD,QAAQ,GAAG,SAAqC;wBAEtD,sBAAO,QAAQ,IAAI,SAAS,EAAA;;;wBAE5B,sBAAO,SAAS,EAAA;;;;aAEnB,IACD,EAbM,IAAI,UAAA,EAAE,UAAU,gBAatB,CAAA;IAEF,IAAM,IAAI,GAAG,CAAC,IAAI,IAAI,SAAS,CAAU,CAAA;IAEjC,IAAA,KAAK,GAAK,IAAA,oBAAQ,EAAC;QACzB,oBAAoB,EAAE,EAAE,OAAO,SAAA,EAAE;QACjC,OAAO,EAAE,EAAE,SAAS,EAAE,UAAU,EAAE,YAAY,EAAE,2BAA2B,EAAE,SAAS,EAAE,IAAI,EAAE;KAC/F,CAAC,MAHW,CAGX;IAEF,IAAI,CAAA,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAE,aAAa,KAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC,EAAE,CAAC;QAC7D,OAAO,kDAAK,CAAA;IACd,CAAC;IAED,OAAO,CACL,uBAAC,CAAC,CAAC,EAAE,IAAC,SAAS,EAAC,aAAa,YAC3B,+BAAI,OAAO,EAAE,EAAE,YAAG,KAAK,GAAM,GACxB,CACR,CAAA;AACH,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { IconsNames, DynamicFormHandlerProps,
|
|
2
|
+
import { IconsNames, DynamicFormHandlerProps, PaginationModel, useQueryProps, ModalProps } from '../../../../ui/index.js';
|
|
3
3
|
import { Filter } from './components/table/filters/index.js';
|
|
4
4
|
import { ExportTable } from './components/table/interfaces.js';
|
|
5
5
|
interface Column<T = any> {
|
|
@@ -66,7 +66,7 @@ type QueryTable<M = any> = {
|
|
|
66
66
|
queryKeyParams?: string;
|
|
67
67
|
dynamicFiltersFromApi?: boolean;
|
|
68
68
|
debugMode?: boolean;
|
|
69
|
-
options?:
|
|
69
|
+
options?: any;
|
|
70
70
|
customRemote?: (params: any) => any;
|
|
71
71
|
};
|
|
72
72
|
type TableActionCreate<T = any> = {
|
|
@@ -120,7 +120,7 @@ type ChildrenTable<T = any> = {
|
|
|
120
120
|
queryFn?: ({ tableItem }: {
|
|
121
121
|
tableItem: T;
|
|
122
122
|
}) => Promise<any>;
|
|
123
|
-
} & Omit<
|
|
123
|
+
} & Omit<useQueryProps<T>, 'queryKey' | 'queryFn'>;
|
|
124
124
|
childrens?: ChildrenTable<T>;
|
|
125
125
|
};
|
|
126
126
|
type ColumnsConfiguration<T = any> = {
|
package/dist/test/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/test/index.tsx"],"names":[],"mappings":";;AAEA,wGAsBC;;AAxBD,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/test/index.tsx"],"names":[],"mappings":";;AAEA,wGAsBC;;AAxBD,2BAAgC;AAEhC,SAAgB,8CAA8C;IACrD,IAAA,kBAAkB,GAAI,IAAA,cAAS,GAAE,mBAAf,CAAe;IACxC,OAAO,CACL,2DACC,uBAAC,kBAAkB,IACd,OAAO,EAAE;gBACP;oBACE,aAAa,EAAE;wBACb,MAAM,EAAE,IAAI;wBACZ,KAAK,EAAE,WAAW;wBAClB,aAAa,EAAE,CAAC,sBAAsB,CAAC;qBACxC;iBACF;gBACD;oBACE,OAAO,EAAE;wBACP,MAAM,EAAE,IAAI;qBACb;iBACF;aACF,GACD,GACH,CACJ,CAAA;AACH,CAAC"}
|
package/dist/ui/atena/presentation/dynamic-elements/pages/blog/components/categorias/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../src/ui/atena/presentation/dynamic-elements/pages/blog/components/categorias/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQA,gCA6BC;;AArCD,mDAA4B;AAC5B,sCAAuC;AAEvC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../src/ui/atena/presentation/dynamic-elements/pages/blog/components/categorias/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQA,gCA6BC;;AArCD,mDAA4B;AAC5B,sCAAuC;AAEvC,2BAAgD;AAEhD,2CAA8B;AAG9B,SAAgB,UAAU;IAChB,IAAA,IAAI,GAAK,IAAA,eAAU,EAAC,EAAE,GAAG,EAAE,YAAY,EAAE,CAAC,KAAtC,CAAsC;IAElD,IAAM,MAAM,GAAG,IAAA,kBAAS,GAAE,CAAA;IAE1B,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QAC/B,OAAO,kDAAK,CAAA;IACd,CAAC;IAED,OAAO,CACL,wBAAC,CAAC,CAAC,GAAG,eACJ,+BAAI,SAAS,EAAC,cAAc,2BAAgB,EAE3C,IAAI,CAAC,GAAG,CAAC,UAAC,IAAI;gBACb,IAAI,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM;oBAAE,OAAO,IAAI,CAAA;gBAE1C,OAAO,CACL,uBAAC,cAAI,IAEH,IAAI,EAAE,gCAAyB,IAAI,CAAC,GAAG,CAAE,EACzC,KAAK,EAAE,EAAE,UAAU,EAAE,MAAM,CAAC,KAAK,CAAC,QAAQ,KAAK,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,EAAE,EAC7E,SAAS,EAAC,sBAAsB,YAE/B,IAAI,CAAC,MAAM,IALP,IAAI,CAAC,EAAE,CAMP,CACR,CAAA;YACH,CAAC,CAAC,IACI,CACT,CAAA;AACH,CAAC"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DynamicSection, DynamicPageProps } from '../../../../ui/index.js';
|
|
2
2
|
export type AtenaContext = {
|
|
3
3
|
roles?: string[];
|
|
4
4
|
isEditMode: boolean;
|
|
5
5
|
hasPermission: boolean;
|
|
6
6
|
atenaPagePathname?: string;
|
|
7
7
|
sections: DynamicSection[];
|
|
8
|
-
mutate: (params?:
|
|
8
|
+
mutate: (params?: any) => void;
|
|
9
9
|
dynamictSectionPathname?: {
|
|
10
10
|
page: string;
|
|
11
11
|
};
|
|
@@ -58,7 +58,7 @@ function AtenaProvider(_a) {
|
|
|
58
58
|
var hasPermission = roles && roles.length > 0 ? roles.includes(roleUser) : !!user;
|
|
59
59
|
var isEditMode = router.isReady && (router.query.editMode === 'true' || router.query.editMode === 'false') && hasPermission;
|
|
60
60
|
var dynamictSectionPathname = ui_1.getPathnameRef === null || ui_1.getPathnameRef === void 0 ? void 0 : (0, ui_1.getPathnameRef)({ router: router });
|
|
61
|
-
var _e = (0, ui_1.
|
|
61
|
+
var _e = (0, ui_1.useQuery)({
|
|
62
62
|
queryKey: ['RemoteDynamicSection_loadAll' + (dynamictSectionPathname === null || dynamictSectionPathname === void 0 ? void 0 : dynamictSectionPathname.page)],
|
|
63
63
|
queryFn: function () { return __awaiter(_this, void 0, void 0, function () {
|
|
64
64
|
var response;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"context.js","sourceRoot":"","sources":["../../../../../src/ui/atena/presentation/dynamic-sections/context.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8FS,sCAAa;AAAE,4BAAQ;;AA9FhC,+BAAiD;AAEjD,sCAAuC;AAEvC,mCAAuC;AACvC,
|
|
1
|
+
{"version":3,"file":"context.js","sourceRoot":"","sources":["../../../../../src/ui/atena/presentation/dynamic-sections/context.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8FS,sCAAa;AAAE,4BAAQ;;AA9FhC,+BAAiD;AAEjD,sCAAuC;AAEvC,mCAAuC;AACvC,2BAAqG;AAyBrG,IAAM,YAAY,GAAG,IAAA,qBAAa,EAAe;IAC/C,QAAQ,EAAE,EAAE;IACZ,MAAM,EAAE,cAAO,CAAC;IAChB,UAAU,EAAE,KAAK;IACjB,KAAK,EAAE,EAAE;IACT,aAAa,EAAE,KAAK;CACrB,CAAC,CAAA;AAEF,SAAS,aAAa,CAAC,EAMF;IANrB,iBAkDC;QAjDC,QAAQ,cAAA,EACR,aAAU,EAAV,KAAK,mBAAG,EAAE,KAAA,EACV,gBAAa,EAAb,QAAQ,mBAAG,EAAE,KAAA,EACb,WAAW,iBAAA,EACX,IAAI,UAAA;IAEJ,IAAM,MAAM,GAAG,IAAA,kBAAS,GAAE,CAAA;IACpB,IAAA,KAAqB,IAAA,qBAAY,GAAE,EAAjC,IAAI,UAAA,EAAE,QAAQ,cAAmB,CAAA;IAEzC,IAAM,aAAa,GAAG,KAAK,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAA;IAEnF,IAAM,UAAU,GACd,MAAM,CAAC,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,KAAK,MAAM,IAAI,MAAM,CAAC,KAAK,CAAC,QAAQ,KAAK,OAAO,CAAC,IAAI,aAAa,CAAA;IAE5G,IAAM,uBAAuB,GAAG,mBAAc,aAAd,mBAAc,2BAAd,mBAAc,EAAG,EAAE,MAAM,QAAA,EAAE,CAAC,CAAA;IAEtD,IAAA,KAA+B,IAAA,aAAQ,EAAC;QAC5C,QAAQ,EAAE,CAAC,8BAA8B,IAAG,uBAAuB,aAAvB,uBAAuB,uBAAvB,uBAAuB,CAAE,IAAI,CAAA,CAAC;QAC1E,OAAO,EAAE;;;;4BACU,qBAAM,IAAA,QAAG,EAAC;4BACzB,GAAG,EAAE,SAAS;4BACd,MAAM,EAAE,KAAK;4BACb,IAAI,EAAE,EAAE,IAAI,EAAE,uBAAuB,aAAvB,uBAAuB,uBAAvB,uBAAuB,CAAE,IAAI,EAAE;4BAC7C,OAAO,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE;yBAC5B,CAAC,EAAA;;wBALI,QAAQ,GAAG,SAKf;wBAEF,sBAAO,QAA4B,EAAA;;;aACpC;QACD,OAAO,EAAE,aAAa;KACvB,CAAC,EAbM,IAAI,UAAA,EAAE,UAAU,gBAAA,EAAE,MAAM,YAa9B,CAAA;IAEF,IAAM,eAAe,GAAG,UAAU,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAA;IAE9F,OAAO,CACL,wBAAC,YAAY,CAAC,QAAQ,IACpB,KAAK,EAAE;YACL,aAAa,eAAA;YACb,UAAU,YAAA;YACV,wBAAwB,EAAE,IAAI;YAC9B,QAAQ,EAAE,eAAe;YACzB,MAAM,QAAA;YACN,iBAAiB,EAAE,WAAW;SAC/B,aAEA,UAAU,IAAI,UAAU,IAAI,IAAI,IAAI,uBAAC,kBAAa,IAAC,KAAK,EAAC,MAAM,EAAC,IAAI,EAAE,EAAE,EAAE,UAAU,SAAG,EAEvF,QAAQ,IACa,CACzB,CAAA;AACH,CAAC;AAED,SAAS,QAAQ;IACf,OAAO,IAAA,kBAAU,EAAC,YAAY,CAAC,CAAA;AACjC,CAAC"}
|
|
@@ -11,6 +11,6 @@ export declare const useCodieDynamicSwagger: <Url extends keyof Swagger, Method
|
|
|
11
11
|
url: Url;
|
|
12
12
|
method: Method;
|
|
13
13
|
body?: import("../../hooks/use-swagger/client/index.js").DeepPartial<Omit<Swagger[Url][Method], "result">>;
|
|
14
|
-
} & Partial<Omit<import("../../index.js").
|
|
14
|
+
} & Partial<Omit<import("../../index.js").useQueryProps<any>, "queryFn">>) => Required<import("../../hooks/use-query/use-query/types.js").QueryState<Awaited<Swagger[Url][Method] extends {
|
|
15
15
|
result: infer R;
|
|
16
16
|
} ? R : never>>>;
|
|
@@ -81,7 +81,7 @@ var S = __importStar(require("./styles.js"));
|
|
|
81
81
|
function CategoriesCarousel(_a) {
|
|
82
82
|
var _this = this;
|
|
83
83
|
var EntityKey = _a.EntityKey;
|
|
84
|
-
var data = (0, ui_1.
|
|
84
|
+
var data = (0, ui_1.useQuery)({
|
|
85
85
|
queryKey: [EntityKey, "Categorias"],
|
|
86
86
|
queryFn: function () { return __awaiter(_this, void 0, void 0, function () {
|
|
87
87
|
var response;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/ui/codie-dynamic/components/directory-filter/categories-carousel/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQA,gDA4CC;;AApDD,mDAA4B;AAE5B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/ui/codie-dynamic/components/directory-filter/categories-carousel/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQA,gDA4CC;;AApDD,mDAA4B;AAE5B,2BAAoF;AAEpF,qDAAkD;AAElD,0CAA6B;AAE7B,SAAgB,kBAAkB,CAAC,EAAoC;IAAvE,iBA4CC;QA5CoC,SAAS,eAAA;IACpC,IAAA,IAAI,GAAK,IAAA,aAAQ,EAAC;QACxB,QAAQ,EAAE,CAAC,SAAS,EAAE,YAAY,CAAC;QACnC,OAAO,EAAE;;;;4BACU,qBAAM,IAAA,QAAG,EAAC;4BACzB,GAAG,EAAE,uCAAuC;4BAC5C,MAAM,EAAE,KAAK;4BACb,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,SAAS,WAAA,EAAE,EAAE;yBAChC,CAAC,EAAA;;wBAJI,QAAQ,GAAG,SAIf;wBAEF,sBAAO,QAAQ,EAAA;;;aAChB;KACF,CAAC,KAXU,CAWV;IAEI,IAAA,KAA2B,IAAA,gBAAW,EAAC;QAC3C,EAAE,EAAE,qBAAqB;QACzB,SAAS,EAAE,IAAI;QACf,KAAK,EAAE,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,KAAK,KAAI,EAAE;QACxB,MAAM,EAAE,gCAAc;KACvB,CAAC,EALM,QAAQ,cAAA,EAAE,IAAI,UAAA,EAAE,IAAI,UAK1B,CAAA;IAEF,SAAS,IAAI,CAAC,KAAK;;QACjB,OAAO,CACL,wBAAC,cAAI,IAAC,IAAI,EAAE,EAAE,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE,WAAW,EAAE,CAAC,KAAK,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,EAAE,EAAE,SAAS,EAAC,MAAM,aAC5F,gCAAK,SAAS,EAAC,MAAM,EAAC,uBAAuB,EAAE,EAAE,MAAM,EAAE,MAAA,IAAA,cAAS,EAAC,KAAK,CAAC,WAAW,CAAC,0CAAE,GAAG,EAAE,GAAI,EAEhG,8BAAG,SAAS,EAAC,cAAc,YAAE,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,MAAM,GAAK,IAC1C,CACR,CAAA;IACH,CAAC;IAED,OAAO,CACL,uBAAC,UAAK,IAAC,IAAI,EAAC,oBAAoB,YAC9B,uBAAC,CAAC,CAAC,kBAAkB,cACnB,wBAAC,cAAS,eACR,uBAAC,IAAI,IAAC,QAAQ,EAAE,uBAAC,SAAI,IAAC,IAAI,EAAC,iBAAiB,GAAG,GAAI,EAEnD,uBAAC,QAAQ,KAAG,EAEZ,uBAAC,IAAI,IAAC,QAAQ,EAAE,uBAAC,SAAI,IAAC,IAAI,EAAC,iBAAiB,GAAG,GAAI,IACzC,GACS,GACjB,CACT,CAAA;AACH,CAAC"}
|
|
@@ -45,9 +45,9 @@ function useDynamicFilter(_a) {
|
|
|
45
45
|
var route = _a.route;
|
|
46
46
|
var router = (0, router_1.useRouter)();
|
|
47
47
|
var activeRoute = ((_b = router === null || router === void 0 ? void 0 : router.query) === null || _b === void 0 ? void 0 : _b.category) || route || 'gastronomia';
|
|
48
|
-
var data = (0, ui_1.
|
|
48
|
+
var data = (0, ui_1.useQuery)({
|
|
49
49
|
queryKey: ['Filters', router.query.category],
|
|
50
|
-
enabled:
|
|
50
|
+
enabled: !!activeRoute,
|
|
51
51
|
queryFn: function () { return __awaiter(_this, void 0, void 0, function () {
|
|
52
52
|
var response;
|
|
53
53
|
return __generator(this, function (_a) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-dynamic-filter.js","sourceRoot":"","sources":["../../../../../../src/ui/codie-dynamic/components/directory-filter/hooks/use-dynamic-filter.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,4CAyCC;AA7CD,sCAAuC;AAEvC,
|
|
1
|
+
{"version":3,"file":"use-dynamic-filter.js","sourceRoot":"","sources":["../../../../../../src/ui/codie-dynamic/components/directory-filter/hooks/use-dynamic-filter.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,4CAyCC;AA7CD,sCAAuC;AAEvC,2BAAkE;AAElE,SAAgB,gBAAgB,CAAC,EAA4B;IAA7D,iBAyCC;;QAzCkC,KAAK,WAAA;IACtC,IAAM,MAAM,GAAG,IAAA,kBAAS,GAAE,CAAA;IAC1B,IAAM,WAAW,GAAG,CAAA,MAAA,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,KAAK,0CAAE,QAAQ,KAAI,KAAK,IAAI,aAAa,CAAA;IAE7D,IAAA,IAAI,GAAK,IAAA,aAAQ,EAAC;QACxB,QAAQ,EAAE,CAAC,SAAS,EAAE,MAAM,CAAC,KAAK,CAAC,QAAQ,CAAC;QAC5C,OAAO,EAAE,CAAC,CAAC,WAAW;QACtB,OAAO,EAAE;;;;4BACU,qBAAM,IAAA,QAAG,EAAC;4BACzB,MAAM,EAAE,MAAM;4BACd,GAAG,EAAE,2BAA2B;4BAChC,IAAI,EAAE;gCACJ,MAAM,EAAE,CAAC,WAAI,WAAW,CAAE,CAAC;gCAC3B,YAAY,EAAE,CAAC,WAAW,CAAC;6BAC5B;yBACF,CAAC,EAAA;;wBAPI,QAAQ,GAAG,SAOf;wBAEF,sBAAO,QAKJ,EAAA;;;aACJ;KACF,CAAC,KApBU,CAoBV;IAEF,IAAM,aAAa,GAAG,IAAA,uBAAkB,EAAC,MAAM,CAAC,KAAK,CAAC,aAAa,CAAC,CAAA;IAEpE,SAAS,qBAAqB,CAAC,iBAAiB;QAC9C,IAAI,CAAC,iBAAiB;YAAE,OAAO,EAAE,CAAA;QAEjC,IAAM,gBAAgB,GAAG,KAAK,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAA;QAE9G,IAAM,aAAa,GAAG,gBAAgB,aAAhB,gBAAgB,uBAAhB,gBAAgB,CAAE,MAAM,CAAC,UAAC,MAAM;;YACpD,OAAO,CAAA,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,UAAU,KAAI,CAAA,MAAA,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,UAAU,0CAAE,MAAM,IAAG,CAAC,CAAA;QAC7D,CAAC,CAAC,CAAA;QAEF,OAAO,IAAA,aAAQ,EAAC,aAAa,CAAC,CAAA;IAChC,CAAC;IAED,OAAO,EAAE,aAAa,eAAA,EAAE,IAAI,MAAA,EAAE,qBAAqB,uBAAA,EAAE,CAAA;AACvD,CAAC"}
|
|
@@ -19,5 +19,5 @@ export type SourceFilterHeaderType = {
|
|
|
19
19
|
}>;
|
|
20
20
|
};
|
|
21
21
|
export declare function SourceFilterHeader({ filters }: SourceFilterHeaderType): import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
export declare function useLocales(): Required<import("
|
|
23
|
-
export declare function useCategories(): Required<import("
|
|
22
|
+
export declare function useLocales(): Required<import("../../../../hooks/use-query/use-query/types.js").QueryState<any>>;
|
|
23
|
+
export declare function useCategories(): Required<import("../../../../hooks/use-query/use-query/types.js").QueryState<any>>;
|
|
@@ -157,7 +157,7 @@ function SourceFilterHeader(_a) {
|
|
|
157
157
|
}
|
|
158
158
|
function useLocales() {
|
|
159
159
|
var _this = this;
|
|
160
|
-
return (0, ui_1.
|
|
160
|
+
return (0, ui_1.useQuery)({
|
|
161
161
|
queryKey: ['Locales'],
|
|
162
162
|
queryFn: function () { return __awaiter(_this, void 0, void 0, function () {
|
|
163
163
|
var response;
|
|
@@ -177,7 +177,7 @@ function useLocales() {
|
|
|
177
177
|
}
|
|
178
178
|
function useCategories() {
|
|
179
179
|
var _this = this;
|
|
180
|
-
return (0, ui_1.
|
|
180
|
+
return (0, ui_1.useQuery)({
|
|
181
181
|
queryKey: ['Categories'],
|
|
182
182
|
queryFn: function () { return __awaiter(_this, void 0, void 0, function () {
|
|
183
183
|
var response;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/ui/codie-dynamic/components/directory-filter/source-filter-header/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwBA,gDAgJC;AAED,gCAYC;AAED,sCAgBC;;AAxMD,+BAAgC;AAEhC,sCAAuC;AAEvC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/ui/codie-dynamic/components/directory-filter/source-filter-header/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwBA,gDAgJC;AAED,gCAYC;AAED,sCAgBC;;AAxMD,+BAAgC;AAEhC,sCAAuC;AAEvC,2BAA+F;AAE/F,kCAA2C;AAC3C,iDAA8C;AAE9C,0CAA6B;AAe7B,SAAgB,kBAAkB,CAAC,EAAmC;IAAtE,iBAgJC;;QAhJoC,OAAO,aAAA;IAC1C,IAAM,MAAM,GAAG,IAAA,kBAAS,GAAE,CAAA;IAE1B,IAAM,OAAO,GAAG,UAAU,EAAE,CAAA;IAC5B,IAAM,UAAU,GAAG,aAAa,EAAE,CAAA;IAElC,IAAM,iBAAiB,GAAG,MAAA,OAAO,CAAC,IAAI,CAAC,UAAC,MAAM,IAAK,OAAA,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,aAAa,EAArB,CAAqB,CAAC,0CAAE,aAAa,CAAA;IAElF,IAAA,KAAiD,IAAA,wBAAgB,EAAC,EAAE,KAAK,EAAE,iBAAiB,aAAjB,iBAAiB,uBAAjB,iBAAiB,CAAE,KAAK,EAAE,CAAC,EAApG,IAAI,UAAA,EAAE,aAAa,mBAAA,EAAE,qBAAqB,2BAA0D,CAAA;IAE5G,OAAO,CACL,uBAAC,UAAK,IAAC,IAAI,EAAC,QAAQ,YAClB,uBAAC,CAAC,CAAC,kBAAkB,IAAC,SAAS,EAAC,8BAA8B,YAC5D,uBAAC,gBAAW,IACV,SAAS,QACT,MAAM,EAAE;oBACN,GAAG,EAAE,UAAU;iBAChB,EACD,QAAQ,EAAE,UAAO,QAAQ;;;wBACvB,YAAO,CAAC,GAAG,CAAC,QAAe,EAAE;4BAC3B,KAAK,EAAE,EAAE,EAAE,EAAE,QAAQ,CAAC,EAAE,EAAE,UAAU,EAAE,QAAQ,CAAC,UAAU,EAAE;yBAC5D,CAAC,CAAA;wBAEE,KAAK,GAAG,QAAQ,CAAA;wBAEpB,IAAI,iBAAiB,aAAjB,iBAAiB,uBAAjB,iBAAiB,CAAE,MAAM,EAAE,CAAC;4BACxB,mBAAmB,GAAG,qBAAqB,CAAC,CAAA,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,aAAa,KAAI,EAAE,CAAC,CAAA;4BAEhF,KAAK,CAAC,aAAa,GAAG,mBAAmB,CAAA;wBAC3C,CAAC;wBAED,MAAM,CAAC,IAAI,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,KAAK,OAAA,EAAE,CAAC,CAAA;;;qBAC3C,EACD,mBAAmB,EAAE,KAAK,EAC1B,WAAW,wBAAO,MAAM,CAAC,KAAK,KAAE,aAAa,eAAA,KAC7C,iBAAiB,EAAE,UAAC,WAAW;;oBAC7B,IAAM,aAAa,GAAG,YAAO,CAAC,GAAG,CAAC,QAAe,CAAQ,CAAA;oBAEzD,6BACK,WAAW,KACd,EAAE,EAAE,CAAA,MAAA,MAAM,CAAC,KAAK,0CAAE,EAAE,MAAI,MAAA,aAAa,aAAb,aAAa,uBAAb,aAAa,CAAE,KAAK,0CAAE,EAAE,CAAA,EAChD,UAAU,EAAE,CAAA,MAAA,MAAM,CAAC,KAAK,0CAAE,UAAU,MAAI,MAAA,aAAa,aAAb,aAAa,uBAAb,aAAa,CAAE,KAAK,0CAAE,UAAU,CAAA,IACzE;gBACH,CAAC,YAEA,OAAO,CAAC,GAAG,CAAC,UAAC,MAAM,EAAE,KAAK;;oBACzB,IAAI,MAAM,CAAC,OAAO,EAAE,CAAC;wBACnB,OAAO,CACL,wBAAC,gBAAQ,eACP,uBAAC,WAAM,IACL,IAAI,EAAC,IAAI,EACT,KAAK,EAAC,QAAQ,EACd,WAAW,EAAC,mBAAmB,EAC/B,YAAY,QACZ,OAAO,EACL,CAAA,MAAC,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,IAAY,0CAAE,GAAG,CAAC,UAAC,IAAI,IAAK,OAAA,CAAC;wCACrC,KAAK,EAAE,IAAI,CAAC,KAAK;wCACjB,KAAK,EAAE,IAAI,CAAC,KAAK;qCAClB,CAAC,EAHoC,CAGpC,CAAC,KAAI,EAAE,GAEX,EACF,uBAAC,4BAAY,IAAC,OAAO,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,IAAI,GAAI,KAb3B,kBAAW,KAAK,CAAE,CActB,CACZ,CAAA;oBACH,CAAC;oBAED,IAAI,MAAA,MAAM,CAAC,QAAQ,0CAAE,MAAM,EAAE,CAAC;wBAC5B,OAAO,CACL,uBAAC,WAAM,IAEL,IAAI,EAAC,UAAU,EACf,KAAK,EAAC,6BAAwB,EAC9B,WAAW,EAAC,uBAAuB,EACnC,YAAY,QACZ,OAAO,EACL,CAAA,MAAA,MAAC,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,IAAY,0CAAE,KAAK,0CAAE,GAAG,CAAC,UAAC,IAAI,IAAK,OAAA,CAAC;gCAC/C,KAAK,EAAE,IAAI,CAAC,MAAM,IAAI,EAAE;gCACxB,KAAK,EAAE,IAAI,CAAC,GAAG,IAAI,EAAE;6BACtB,CAAC,EAH8C,CAG9C,CAAC,KAAI,EAAE,IATN,mBAAY,KAAK,CAAE,CAWxB,CACH,CAAA;oBACH,CAAC;oBAED,IAAI,MAAA,MAAM,CAAC,aAAa,0CAAE,MAAM,EAAE,CAAC;wBACjC,OAAO,CACL,uBAAC,gBAAQ,cACN,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CACD,MAAM,CAAC,UAAC,CAAC,gBAAK,OAAA,MAAA,MAAA,MAAM,CAAC,aAAa,0CAAE,aAAa,0CAAE,QAAQ,CAAC,CAAC,aAAD,CAAC,uBAAD,CAAC,CAAE,SAAS,CAAC,CAAA,EAAA,EAC1E,GAAG,CAAC,UAAC,CAAC,EAAE,CAAC;;gCAAK,OAAA,CACb,4CACE,gCAAK,KAAK,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,YAC7B,uBAAC,UAAK,IACJ,QAAQ,QACR,IAAI,EAAE,wBAAiB,CAAC,aAAU,EAClC,sBAAsB,EAAE;oDACtB,KAAK,EAAE,CAAC,aAAD,CAAC,uBAAD,CAAC,CAAE,WAAW;iDACtB,GACD,GACE,EACN,gCAAK,KAAK,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,YAC7B,uBAAC,UAAK,IACJ,QAAQ,QACR,IAAI,EAAE,wBAAiB,CAAC,eAAY,EACpC,sBAAsB,EAAE;oDACtB,KAAK,EAAE,CAAC,aAAD,CAAC,uBAAD,CAAC,CAAE,SAAS;iDACpB,GACD,GACE,EAEN,uBAAC,WAAM,IACL,IAAI,EAAE,wBAAiB,CAAC,iBAAc,EACtC,UAAU,QACV,KAAK,EAAE,CAAC,aAAD,CAAC,uBAAD,CAAC,CAAE,KAAK,EACf,WAAW,EAAC,WAAW,EACvB,OAAO,EACL,CAAA,MAAA,CAAC,aAAD,CAAC,uBAAD,CAAC,CAAE,KAAK,0CAAE,GAAG,CAAC,UAAC,IAAI,IAAK,OAAA,CAAC;gDACvB,KAAK,EAAE,IAAI,CAAC,IAAI,IAAI,EAAE;gDACtB,KAAK,EAAE,IAAI,CAAC,GAAG,IAAI,EAAE;6CACtB,CAAC,EAHsB,CAGtB,CAAC,KAAI,EAAE,GAEX,KA/BM,UAAG,CAAC,aAAD,CAAC,uBAAD,CAAC,CAAE,SAAS,cAAI,CAAC,CAAE,CAgC1B,CACP,CAAA;6BAAA,CAAC,IArCS,wBAAiB,KAAK,CAAE,CAsC5B,CACZ,CAAA;oBACH,CAAC;oBAED,IAAI,MAAA,MAAM,CAAC,cAAc,0CAAE,UAAU,EAAE,CAAC;wBACtC,OAAO,CACL,uBAAC,UAAK,IAAiC,KAAK,EAAC,UAAU,EAAC,IAAI,EAAC,QAAQ,EAAC,WAAW,EAAC,gBAAgB,IAAtF,yBAAkB,KAAK,CAAE,CAAgE,CACtG,CAAA;oBACH,CAAC;oBAED,IAAI,MAAM,CAAC,eAAe,EAAE,CAAC;wBAC3B,OAAO,MAAM,CAAC,eAAe,EAAE,CAAA;oBACjC,CAAC;oBAED,OAAO,IAAI,CAAA;gBACb,CAAC,CAAC,GACU,GACO,GACjB,CACT,CAAA;AACH,CAAC;AAED,SAAgB,UAAU;IAA1B,iBAYC;IAXC,OAAO,IAAA,aAAQ,EAAC;QACd,QAAQ,EAAE,CAAC,SAAS,CAAC;QACrB,OAAO,EAAE;;;;4BACU,qBAAM,IAAA,QAAG,EAAC;4BACzB,GAAG,EAAE,qCAAqC;4BAC1C,MAAM,EAAE,KAAK;yBACd,CAAC,EAAA;;wBAHI,QAAQ,GAAG,SAGf;wBAEF,sBAAO,QAAQ,EAAA;;;aAChB;KACF,CAAC,CAAA;AACJ,CAAC;AAED,SAAgB,aAAa;IAA7B,iBAgBC;IAfC,OAAO,IAAA,aAAQ,EAAC;QACd,QAAQ,EAAE,CAAC,YAAY,CAAC;QACxB,OAAO,EAAE;;;;4BACU,qBAAM,IAAA,QAAG,EAAC;4BACzB,GAAG,EAAE,sCAAsC;4BAC3C,MAAM,EAAE,KAAK;4BACb,IAAI,EAAE;gCACJ,SAAS,EAAE,WAAW;gCACtB,QAAQ,EAAE,IAAI;6BACf;yBACF,CAAC,EAAA;;wBAPI,QAAQ,GAAG,SAOf;wBAEF,sBAAO,QAAQ,EAAA;;;aAChB;KACF,CAAC,CAAA;AACJ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../../../src/ui/components/form/handler/dynamic_form_handler/component.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQA,gDA8CC;;AAtDD,
|
|
1
|
+
{"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../../../src/ui/components/form/handler/dynamic_form_handler/component.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQA,gDA8CC;;AAtDD,2BAA0D;AAI1D,iEAA6D;AAE7D,0CAA6B;AAE7B,SAAgB,kBAAkB,CAAC,KAA8B;IAAjE,iBA8CC;IA7CC,IAAM,QAAQ,GAAG,KAAK,CAAC,UAAU,IAAI,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,KAAK,CAAC,UAAU,CAAC,GAAG,CAAC,KAAK,CAAC,SAAS,CAAC,CAAA;IAElG,SAAe,OAAO;;;;gBACpB,sBAAO,MAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,UAAU,0CAAE,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC,EAAA;;;KACnD;IAEK,IAAA,KAA0C,IAAA,aAAQ,EAAC;QACvD,OAAO,EAAE,OAAO;QAChB,QAAQ,EAAE,CAAC,QAAQ,CAAC;QACpB,OAAO,EAAE,CAAC,CAAC,QAAQ;KACpB,CAAC,EAJM,IAAI,UAAA,EAAE,SAAS,eAAA,EAAE,MAAM,YAAA,EAAE,UAAU,gBAIzC,CAAA;IAEF,IAAI,CAAC,SAAS,IAAI,UAAU,CAAC,IAAI,KAAK,CAAC,UAAU,EAAE,CAAC;QAClD,OAAO,uBAAC,iBAAY,IAAC,IAAI,EAAE,EAAE,EAAE,KAAK,EAAC,MAAM,GAAG,CAAA;IAChD,CAAC;IAED,OAAO,CACL,wBAAC,CAAC,CAAC,iBAAiB,eAClB,iCAAK,SAAS,EAAC,QAAQ,aACpB,KAAK,CAAC,KAAK,IAAI,+BAAI,SAAS,EAAC,cAAc,YAAE,KAAK,CAAC,KAAK,GAAM,EAC9D,KAAK,CAAC,QAAQ,IAAI,iCAAM,SAAS,EAAC,iBAAiB,YAAE,KAAK,CAAC,QAAQ,GAAQ,IACxE,EAEN,wBAAC,gBAAW,eACL,KAAa,IAClB,mBAAmB,EAAE,KAAK,EAC1B,QAAQ,EAAE,UAAO,IAAI;;;;oCACF,qBAAM,KAAK,CAAC,QAAQ,CAAC,IAAI,EAAE,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC,EAAA;;gCAAjE,QAAQ,GAAG,SAAsD;gCAEvE,QAAQ,IAAI,MAAM,EAAE,CAAA;gCAEpB,sBAAO,QAAQ,EAAA;;;qBAChB,EACD,WAAW,EACT,KAAK,CAAC,sBAAsB;oBAC1B,CAAC,uBAAM,CAAC,CAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,SAAS,KAAI,EAAE,CAAC,GAAK,CAAC,KAAK,CAAC,WAAW,IAAI,EAAE,CAAC,EAC7D,CAAC,uBAAM,IAAI,GAAK,CAAC,KAAK,CAAC,WAAW,IAAI,EAAE,CAAC,CAAE,aAG/C,uBAAC,2CAAmB,IAAC,MAAM,EAAE,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,QAAQ,EAAE,SAAS,EAAE,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,SAAS,GAAI,EAErG,CAAA,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,QAAQ,KAAI,KAAK,CAAC,QAAQ,KACtB,IACM,CACvB,CAAA;AACH,CAAC"}
|
|
@@ -72,7 +72,7 @@ function I18nProvider(props) {
|
|
|
72
72
|
function changeLanguage(locale, path) {
|
|
73
73
|
router.push({ pathname: pathname, query: query }, path || asPath, { locale: locale });
|
|
74
74
|
}
|
|
75
|
-
var _c = (0, ui_1.
|
|
75
|
+
var _c = (0, ui_1.useQuery)({
|
|
76
76
|
queryKey: ['words'],
|
|
77
77
|
queryFn: function () { return __awaiter(_this, void 0, void 0, function () {
|
|
78
78
|
var response;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"context.js","sourceRoot":"","sources":["../../../../src/ui/contexts/i18n/context.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuES,oCAAY;AAAE,0BAAO;;AAvE9B,+BAA4D;AAE5D,sCAAuC;AAEvC,mCAAqD;AACrD,
|
|
1
|
+
{"version":3,"file":"context.js","sourceRoot":"","sources":["../../../../src/ui/contexts/i18n/context.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export * from "./
|
|
2
|
-
export * from "./
|
|
1
|
+
export * from "./use-query/index.js";
|
|
2
|
+
export * from "./use-query/use-mutation.js";
|
|
3
|
+
export * from "./use-query/context.js";
|
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
18
|
-
__exportStar(require("./
|
|
17
|
+
__exportStar(require("./use-query/index.js"), exports);
|
|
18
|
+
__exportStar(require("./use-query/use-mutation.js"), exports);
|
|
19
|
+
__exportStar(require("./use-query/context.js"), exports);
|
|
19
20
|
//# sourceMappingURL=index.js.map
|