@ingestro/importer-react 4.0.1 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -19
- package/index.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
<!-- markdownlint-disable -->
|
|
2
2
|
<p align="center">
|
|
3
|
-
<a href="https://ingestro.com/" rel="noopener" target="_blank"><img width="150" src="https://general-upload.ingestro.com/
|
|
3
|
+
<a href="https://ingestro.com/" rel="noopener noreferrer" target="_blank"><img width="150" src="https://general-upload.ingestro.com/logo-ingestro-darkblue.svg" alt="Ingestro logo"></a>
|
|
4
4
|
</p>
|
|
5
5
|
|
|
6
|
-
<h1 align="center">@
|
|
6
|
+
<h1 align="center">@ingestro/importer-react</h1>
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](https://badge.fury.io/js/@ingestro%2Fimporter-react)
|
|
11
11
|
[](https://status.ingestro.com/)
|
|
12
12
|
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
15
|
> [!NOTE]
|
|
16
|
-
> The `@
|
|
17
|
-
> While you can continue using versions
|
|
18
|
-
> `@
|
|
16
|
+
> The `@ingestro/importer-react` package is the successor to our previous `@getnuvo/importer-react` package.
|
|
17
|
+
> While you can continue using versions 3.x of `@getnuvo/importer-react`, we recommend migrating to
|
|
18
|
+
> `@ingestro/importer-react` version 4.x to take advantage of the latest features and improvements.
|
|
19
19
|
|
|
20
|
-
#
|
|
20
|
+
# Ingestro Data Importer SDK
|
|
21
21
|
|
|
22
|
-
**
|
|
22
|
+
**Ingestro** leverages AI to simplify importing complex and messy files into your application.
|
|
23
23
|
|
|
24
|
-
Integrate the
|
|
24
|
+
Integrate the Ingestro Data Importer to offer your customers an intuitive and efficient data import experience.
|
|
25
25
|
|
|
26
26
|
## Features
|
|
27
27
|
|
|
@@ -34,22 +34,22 @@ Integrate the nuvo Data Importer to offer your customers an intuitive and effici
|
|
|
34
34
|
|
|
35
35
|
## Getting Started
|
|
36
36
|
|
|
37
|
-
Ensure you have signed up on our [User Platform](https://dashboard.ingestro.com/) and have access to your
|
|
37
|
+
Ensure you have signed up on our [User Platform](https://dashboard.ingestro.com/) and have access to your Ingestro license key.
|
|
38
38
|
|
|
39
39
|
### Installation
|
|
40
40
|
|
|
41
|
-
Add
|
|
41
|
+
Add Ingestro to your project:
|
|
42
42
|
|
|
43
43
|
**npm:**
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
npm install @
|
|
46
|
+
npm install @ingestro/importer-react
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
**yarn:**
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
|
-
yarn add @
|
|
52
|
+
yarn add @ingestro/importer-react
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
### Basic Implementation
|
|
@@ -58,7 +58,7 @@ Below is a basic example of integrating the `DataImporter` component into your R
|
|
|
58
58
|
|
|
59
59
|
```jsx
|
|
60
60
|
import * as React from 'react';
|
|
61
|
-
import { DataImporter } from '@
|
|
61
|
+
import { DataImporter } from '@ingestro/importer-react';
|
|
62
62
|
|
|
63
63
|
function App() {
|
|
64
64
|
return (
|
|
@@ -77,7 +77,7 @@ function App() {
|
|
|
77
77
|
},
|
|
78
78
|
],
|
|
79
79
|
}}
|
|
80
|
-
onResults={(results, errors, complete, logs) => {
|
|
80
|
+
onResults={(results, errors, complete, logs, block) => {
|
|
81
81
|
console.log('Imported Data:', results);
|
|
82
82
|
console.log('Errors:', errors);
|
|
83
83
|
console.log('Import Logs:', logs);
|
|
@@ -92,7 +92,7 @@ function App() {
|
|
|
92
92
|
|
|
93
93
|
In this example:
|
|
94
94
|
|
|
95
|
-
- **licenseKey**: Your unique
|
|
95
|
+
- **licenseKey**: Your unique Ingestro license key.
|
|
96
96
|
- **settings**: Configuration object for the importer.
|
|
97
97
|
- **identifier**: A unique string to identify the import instance.
|
|
98
98
|
- **columns**: Defines the target data model (TDM) with `label` and `key` for each column.
|
|
@@ -137,7 +137,7 @@ For implementation details, refer to the [Dynamic Import](https://docs.ingestro.
|
|
|
137
137
|
|
|
138
138
|
### Styling and Theming
|
|
139
139
|
|
|
140
|
-
Customize the appearance of the
|
|
140
|
+
Customize the appearance of the Ingestro importer to match your application's design. Modify themes, adjust display modes, and enable or disable specific features to create a seamless user experience.
|
|
141
141
|
|
|
142
142
|
Learn more about styling options in the [Styling](https://docs.ingestro.com/sdk/styling/) section.
|
|
143
143
|
|
|
@@ -159,9 +159,9 @@ Stay updated with the latest features, improvements, and bug fixes by reviewing
|
|
|
159
159
|
|
|
160
160
|
## Learn More
|
|
161
161
|
|
|
162
|
-
Explore how to get the most out of
|
|
162
|
+
Explore how to get the most out of Ingestro with real examples and detailed guides:
|
|
163
163
|
|
|
164
|
-
- Try it live on [CodeSandbox](https://codesandbox.io/p/
|
|
164
|
+
- Try it live on [CodeSandbox](https://codesandbox.io/p/devbox/gtzcrh) – test and tweak the importer in action.
|
|
165
165
|
- Visit our [Knowledge Base](https://dashboard.ingestro.com/knowledge-base) for deep dives into settings, data models, cleaning functions, and more.
|
|
166
166
|
|
|
167
167
|
## Support
|
package/index.js
CHANGED
|
@@ -95,8 +95,8 @@ import{a as W7,b as z7,c as q7,d as G7,e as K7,f as Y7,g as Z7,h as X7,i as J7,j
|
|
|
95
95
|
z-index: 10000 !important;
|
|
96
96
|
`,G=()=>{if(!R)if(s){let te=s();CQ(te)?(B(!0),te.then(()=>{B(!1),D(!1)}).catch(()=>{B(!1),D(!1)})):D(!1)}else D(!1),i()},re=vQ(()=>{if(m==="alert")return $?.alertPopup;if(m==="block")return $?.blockPopup;if(m==="readyToSubmit")return $?.reviewEntries?.submitModal},[$?.alertPopup,$?.blockPopup,$?.reviewEntries,m]),pe=v("w-20",f({"&&":V.getDialogConfirmTheme().icon,"&& path":{fill:V.getDialogConfirmTheme().icon?.fill,stroke:V.getDialogConfirmTheme().icon?.stroke}}),f({"&&&":re?.icon,"&&& path":{fill:re?.icon?.fill,stroke:re?.icon?.stroke}})),me=()=>E?E(pe):u&&m==="readyToSubmit"?co(W8,{className:v("w-40",f({"&&":K8(V.getDialogConfirmTheme().icon,["fill","stroke"]),"&& .nuvo__ready_submit_icon":{fill:V.getDialogConfirmTheme().icon?.fill,stroke:V.getDialogConfirmTheme().icon?.stroke}}),f({"&&&":K8(re?.icon,["fill","stroke"]),"&&& .nuvo__ready_submit_icon":{fill:re?.icon?.fill,stroke:re?.icon?.stroke}}))}):u&&I?co(j8,{className:pe}):co(U8,{className:pe});return co(Gc,{gravity:"middle",className:v("w-full !p-0 sm:max-w-xl",M),isOpen:P,onCloseModal:()=>{D(!1),l?.()},wrapperClassName:v(f`
|
|
97
97
|
z-index: 10000 !important;
|
|
98
|
-
`),disabledClickOutside:d,isShowCloseIcon:p,overlayStyled:f({"&&":V.getDialogConfirmTheme().overlay,"&&&":re?.overlay}),bodyStyled:f({"&&":V.getDialogConfirmTheme().root,"&&&":re?.root}),closeIconStyled:V.getDialogConfirmTheme().closeIcon,closeButtonClassName:f({"&&& line":re?.closeIcon}),children:Y8("div",{className:"w-full px-7 pb-8 pt-3",children:[co("div",{className:"flex justify-center pb-4",children:me()}),r&&co("p",{className:v("xss:pb-2 text-color-primary text-neutral-gray pb-1 text-center text-xl font-semibold",f({"&&":V.getDialogConfirmTheme().title,"&&&":re?.title}),T),dangerouslySetInnerHTML:{__html:r}}),t&&co("p",{className:v("xss:pb-7 text-color-secondary pb-2 text-center text-sm font-normal",f({"&&":V.getDialogConfirmTheme().description,"&&&":re?.description}),C),dangerouslySetInnerHTML:{__html:t}}),w||null,co("div",{className:v("xss:flex mt-2 flex-row justify-center sm:mt-0",y),children:co(Ue,{isShow:g&&H,message:co(Gt,{className:v("max-w-240 h-full w-full text-center text-xs",A),variant:O,children:b}),flip:!0,arrowClassName:"#545454",direction:"top",offset:{mainAxis:12},isShowArrow:!0,className:ue,render:({setReferenceElement:te})=>{let se={className:v("xss:mt-0 mt-3",{"w-full":!c},S,R?ne:"",R?"text-gray-260":""),type:"submit",loading:q,onClick:G,ref:k==="negative"?te:void 0,...k==="negative"?Y():{}},J={...k==="positive"?Y():{},className:v(`xss:mt-0 xss:mr-4 mt-3 mr-0 ${h&&ne}`,x),type:"button",variant:"secondary",onClick:()=>{h||(D(!1),a&&a())}},oe=n||"Ok";return Y8(SQ,{children:[co("span",{ref:k==="positive"?te:void 0,className:v(_),children:c&&co(ye,{...J,children:co("div",{className:v("leading-6",h&&"text-gray-260"),children:o||L("txt_cancel")})})}),m!=="warn"?co(ye,{...se,children:oe}):N?co(ye,{...se,children:oe}):null]})}})})]})})},Z8=xQ;import{jsx as TQ,jsxs as kQ}from"react/jsx-runtime";var ty=_Q({}),EQ=({children:r})=>{let[t,o]=X8(!1),[n,a]=X8(),i=IQ(s=>{a(s),o(!0)},[]);return MQ(()=>{t||a(void 0)},[t]),kQ(ty.Provider,{value:{isOpen:t,setOpenModal:o,showConfirmModal:i,type:n?.type,title:n?.title},children:[r,n&&TQ(Z8,{title:n.title,description:n.description,textPositiveButton:n.textPositiveButton,textNegativeButton:n.textNegativeButton,onClickPositiveButton:n.onClickPositiveButton,onClickNegativeButton:n.onClickNegativeButton,onClickNegativeButtonPromise:n.onClickNegativeButtonPromise,isShowPositiveButton:n.isShowPositiveButton,isShowIcon:n.isShowIcon,disabledClickOutside:n.disabledClickOutside,isShowCloseIcon:n.isShowCloseIcon,type:n.type,disabledPositiveButton:n.disabledPositiveButton,disabledNegativeButton:n.disabledNegativeButton,isPopper:n.isPopper,textPopper:n.textPopper,content:n.content,descriptionClassName:n.descriptionClassName,footerClassName:n.footerClassName,negativeButtonClassName:n.negativeButtonClassName,positiveButtonClassName:n.positiveButtonClassName,positiveButtonWrapperClassName:n.positiveButtonWrapperClassName,roundedIcon:n.roundedIcon,baseModalClassName:n.baseModalClassName,customIcon:n.customIcon,titleClassName:n.titleClassName,onCloseModal:n.onCloseModal,popperPosition:n.popperPosition,messageVariant:n.messageVariant,messageClassName:n.messageClassName})]})},J8=EQ;import{useCallback as UQ,useMemo as l9,useRef as jQ,useState as WQ}from"react";import{createContext as zQ}from"react";import{flatten as iy}from"lodash";var oy=class{constructor({similarity:t}){this.getValue=()=>this.similarity;this.similarity=t}},bn=oy;var Rh=class{constructor({sheetColumn:t,dataModel:o,similarity:n}){this.isMarkApplied=!1;this.getSimilarity=()=>this.similarity;this.getSheetColumn=()=>this.sheetColumn;this.getDataModel=()=>this.dataModel;this.markApplied=()=>{this.isMarkApplied=!0};this.unMarkApplied=()=>{this.isMarkApplied=!1};this.getMarkApplied=()=>this.isMarkApplied;this.isNull=()=>!1;this.sheetColumn=t,this.dataModel=o,this.similarity=n}},Oh=class extends Rh{constructor(){super({dataModel:new yo({description:"null",example:"null",key:"null",label:"null",type:"string",columnSize:1,optionMappingConfiguration:{layers:[],processingMode:"node",threshold:0}}),sheetColumn:new gh({sheet:new Yn({data:[[]],name:""}),columnKey:"",rows:[]}),similarity:new bn({similarity:0})});this.isNull=()=>!0}},Q8=Rh;import{maxBy as RQ,orderBy as OQ}from"lodash";var ny=class{constructor({sheetColumnDataModelSimilarities:t}){this.getMostSimilarityBySheetColumn=t=>{let o=[];for(let n=0;n<this.sheetColumnDataModelSimilarities.length;n++)this.sheetColumnDataModelSimilarities[n].getSheetColumn()===t&&o.push(this.sheetColumnDataModelSimilarities[n]);return RQ(o,n=>n.getSimilarity().getValue())};this.getSortedSheetColumnDataModelSimilarity=t=>{let o=this.sheetColumnDataModelSimilarities.filter(n=>n.getSimilarity().getValue()>=t&&!n.getMarkApplied());return OQ(o,n=>n.getSimilarity().getValue(),"desc")};this.markDataModel=t=>{this.sheetColumnDataModelSimilarities.filter(o=>o.getDataModel()===t).forEach(o=>{o.markApplied()})};this.markSheetColumn=t=>{this.sheetColumnDataModelSimilarities.filter(o=>o.getSheetColumn()===t).forEach(o=>{o.markApplied()})};this.clearMark=()=>{this.sheetColumnDataModelSimilarities.forEach(t=>{t.unMarkApplied()})};this.getSimilaritySheetColumn=(t,o)=>this.sheetColumnDataModelSimilarities.find(n=>n.getSheetColumn()===t&&n.getDataModel()===o);this.sheetColumnDataModelSimilarities=t}},Dh=ny;var Ph=class{constructor({sheetColumnOption:t,dataModelOption:o,similarity:n}){this.getSimilarity=()=>this.similarity;this.getSheetColumnOption=()=>this.sheetColumnOption;this.getDataModelOption=()=>this.dataModelOption;this.isNull=()=>!1;this.hash=()=>{let t=this.getDataModelOption().dataModel.getKey(),o=this.getDataModelOption().option,n=this.getSheetColumnOption().sheetColumn.getColumnKey(),a=this.getSheetColumnOption().option;return`${t}-${o}-${n}-${a}`};this.sheetColumnOption=t,this.dataModelOption=o,this.similarity=n}},Dp=class extends Ph{constructor(){super({sheetColumnOption:{option:"null",sheetColumn:new gh({columnKey:"",rows:[],sheet:new Yn({data:[[]],name:""})})},dataModelOption:{dataModel:new Mp({description:"null",example:"null",key:"null",options:[],type:"single-select",label:"null",columnSize:1,isMultiSelection:!1,optionMappingConfiguration:{layers:[],processingMode:"node",threshold:0}}),option:""},similarity:new bn({similarity:0})});this.isNull=()=>!0}},e9=Ph;import{orderBy as DQ}from"lodash";var ay=class r{constructor({sheetColumnDataModelOptionSimilarities:t,mapSheetColumnDataModelOptions:o}){this.mapSheetColumnDataModelOptions=[];this.getSheetColumnDataModelOptionSimilarities=t=>{let o=this.sheetColumnDataModelOptionSimilarities.filter(n=>n.getSimilarity().getValue()>=t);return DQ(o,n=>n.getSimilarity().getValue(),"desc")};this.getSimilaritySheetColumnOptions=(t,o)=>this.getSheetColumnDataModelOptionSimilarities(o.getOptionMappingConfiguration().threshold).filter(n=>n.getSheetColumnOption().sheetColumn===t&&n.getDataModelOption().dataModel===o);this.getSimilaritiesDataModelOption=(t,o,n)=>this.sheetColumnDataModelOptionSimilarities.filter(a=>a.getSheetColumnOption().sheetColumn===t&&a.getDataModelOption().dataModel.getKey()===o.getKey()&&a.getDataModelOption().option===n);this.getSimilaritiesDataModelBySheetColumn=(t,o)=>this.sheetColumnDataModelOptionSimilarities.filter(n=>n.getSheetColumnOption().sheetColumn===t&&n.getDataModelOption().dataModel.getKey()===o.getKey());this.getRawSheetColumnDataModelOptionSimilarities=()=>this.sheetColumnDataModelOptionSimilarities;this.isAlreadyMapping=(t,o)=>!!this.mapSheetColumnDataModelOptions.some(n=>n.sheetColumn.equal(t)&&o===n.dataModel);this.sheetColumnDataModelOptionSimilarities=t,this.mapSheetColumnDataModelOptions=o}merge(t){let o=t.getRawSheetColumnDataModelOptionSimilarities(),n=t.mapSheetColumnDataModelOptions;for(let a=0;a<this.sheetColumnDataModelOptionSimilarities.length;++a)o.find(s=>{let l=s.getDataModelOption(),c=s.getSheetColumnOption(),u=this.sheetColumnDataModelOptionSimilarities[a].getSheetColumnOption(),d=this.sheetColumnDataModelOptionSimilarities[a].getDataModelOption();return c.option===u.option&&c.sheetColumn.getColumnKey()===u.sheetColumn.getColumnKey()&&l.option===d.option&&l.dataModel.getKey()===d.dataModel.getKey()})||o.push(this.sheetColumnDataModelOptionSimilarities[a]);for(let a=0;a<this.mapSheetColumnDataModelOptions.length;++a)n.push(this.mapSheetColumnDataModelOptions[a]);return new r({sheetColumnDataModelOptionSimilarities:o,mapSheetColumnDataModelOptions:n})}},Pp=ay;var sy=class{constructor({calculateSimilarityResult:t,sheets:o,dataModels:n,options:a={}}){this.parseSheetOption=t=>["true","false"].includes(t)?JSON.parse(t):t;this.getSheetColumnDataModelSimilarityList=()=>{let t=this.calculateSimilarityResult.result.map(n=>n.suggestions.map(a=>{let i=this.dataModels.find(l=>{let c=l.getKey(),u=a.key;return this.options?.isAutoMapping===!0&&(c=ya(l.getKey()),u=ya(a.key)),!!(c===u||l.getAlternativeMatches().includes(a.key))}),s=[];for(let l=0;l<this.sheets.length;l++)this.sheets[l].getColumnsByKey(n.label,this.options?.isAutoMapping).forEach(u=>{s.push(u)});return s.map(l=>i&&l?new Q8({dataModel:i,sheetColumn:l,similarity:new bn({similarity:a.value})}):new Oh)})),o=[];return iy(iy(iy(t))).forEach(n=>{let a=!1;o.forEach((i,s)=>{!i.isNull()&&i.getDataModel()===n.getDataModel()&&i.getSheetColumn()===n.getSheetColumn()&&(a=!0,n.getSimilarity()>i.getSimilarity()&&(o[s]=n))}),a||o.push(n)}),new Dh({sheetColumnDataModelSimilarities:o})};this.generateSheetColumnDataModelOptionSimilarity=({sheetOption:t,dataModel:o,similarities:n,sheetColumn:a,sheetColumnDataModelOptionSimilaritiesHashMap:i})=>{let s={option:this.parseSheetOption(t),sheetColumn:a},l=Object.keys(n);for(let c=0;c<l.length;++c){let u=l[c],d=n[u],p=[];if(o&&s.sheetColumn&&o.isDropdown()){let m=[];if(o.getType()==="boolean")m=[u];else{let h=o.getOptions();u===""&&d>0&&m.push("");for(let g=0;g<h.length;++g){let b=h[g];b.label===u&&m.push(b.value)}}for(let h=0;h<m.length;++h){let g=m[h];g?.length>0||g.length===0&&d>0?p.push(new e9({dataModelOption:{dataModel:o,option:g},similarity:new bn({similarity:d}),sheetColumnOption:s})):p.push(new Dp)}}else p.push(new Dp);for(let m=0;m<p.length;++m){let h=!1,g=p[m];if(!g.isNull()){let b=i[g.hash()];b&&(h=!0,g.getSimilarity().getValue()>b.getSimilarity().getValue()&&(i[g.hash()]=g))}h||(i[g.hash()]=g)}}};this.getSheetColumnDataModelOptionSimilarityList=t=>{let o={},n=this.calculateSimilarityResult,a=[];for(let l=0;l<n.result.length;++l){let c=n.result[l],u=c.optionMappings,d;if(t)d=t;else for(let m=0;m<this.sheets.length;m++){let h=this.sheets[m].getColumn(c.label,this.options?.isAutoMapping);if(h){d=h;break}}let p=Object.keys(u);for(let m=0;m<p.length;++m){let h=p[m],g=u[h],b=this.dataModels.find(C=>{let y=C.getKey(),S=h;return this.options?.isAutoMapping===!0&&(y=ya(y),S=ya(S)),y===S});b&&d&&a.push({sheetColumn:d,dataModel:b});let w=Object.keys(g);for(let C=0;C<w.length;++C){let y=w[C],S=g[y];this.generateSheetColumnDataModelOptionSimilarity({sheetOption:y,similarities:S,dataModel:b,sheetColumnDataModelOptionSimilaritiesHashMap:o,sheetColumn:d})}}}let i=[],s=Object.keys(o);for(let l=0;l<s.length;++l){let c=s[l];o[c].isNull()||i.push(o[c])}return new Pp({sheetColumnDataModelOptionSimilarities:i,mapSheetColumnDataModelOptions:a})};this.calculateSimilarityResult=t,this.sheets=o,this.dataModels=n,this.options=a}static{this.mergeCalculateSimilarityResultOptions=(t,o)=>{let n={result:[...t.result]};for(let a=0;a<o.result.length;++a){let i=o.result[a],s;for(let l=0;l<n.result.length;++l)if(i.label===n.result[l].label){s=n.result[l];break}if(s){let l=Object.keys(s.optionMappings);for(let u=0;u<l.length;++u){let d=l[u];s.optionMappings[d]={...s.optionMappings[d],...i.optionMappings[d]??{}}}let c=Object.keys(i.optionMappings);for(let u=0;u<c.length;++u){let d=c[u];s.optionMappings[d]={...s.optionMappings[d]??{},...i.optionMappings[d]}}}}return n}}},wn=sy;var Ah=class{constructor(t,o){this.isUploadSheetData=t=>t.some(o=>o.getOptionMappingConfiguration().processingMode==="node");this.matchColumns=async(t,o,n)=>{let{processingMode:a,layers:i,threshold:s}=o;return a==="node"?this.backendMatchingRepository.matchColumns(t,{layers:i,threshold:s},n):this.browserMatchingRepository.matchColumns(t,{layers:i,threshold:s},n)};this.matchInitialOptions=async(t,o,n,a,i)=>{let s=t.getAllSheets(),l=t.getAllDataModels(),c=o.filter(g=>{let b=g.matchedDataModel?.dataModel;return!!b&&b.isDropdown()}),u=await Promise.all(c.map(async g=>{let b=g.matchedDataModel.dataModel,w={dataModel:b,sheetColumn:g.sheetColumn,sheets:s,dataModels:l,licenseKey:a,sessionId:i},C;return b.getOptionMappingConfiguration().processingMode==="node"?C=this.backendMatchingRepository:C=this.browserMatchingRepository,(await C.matchOption({...w,sheetColumn:w.sheetColumn})).calculateSimilarityResult})),p={result:[...[...n.result].map(g=>({...g,optionMappings:{}}))]};for(let g=0;g<u.length;++g)p=wn.mergeCalculateSimilarityResultOptions(p,u[g]);let h=new wn({calculateSimilarityResult:p,sheets:s,dataModels:l}).getSheetColumnDataModelOptionSimilarityList();return{calculateSimilarityResult:p,sheetColumnDataModelOptionSimilarityList:h}};this.matchOption=async({dataModel:t,sheetColumn:o,sheets:n,dataModels:a,licenseKey:i,processMode:s,sessionId:l})=>{let c={dataModel:t,sheetColumn:o,sheets:n,dataModels:a,licenseKey:i,sessionId:l};return s==="node"?this.backendMatchingRepository.matchOption(c):this.browserMatchingRepository.matchOption(c)};this.uploadData=async(t,o,n,a)=>n.some(i=>i.getOptionMappingConfiguration().processingMode==="node")?this.backendMatchingRepository.prepareData(t,o,a):Promise.resolve();this.clearData=(t,o)=>{this.isUploadSheetData(o)&&this.backendMatchingRepository.clearData(t)};this.complete=(t,o)=>{this.isUploadSheetData(o)&&this.backendMatchingRepository.complete(t)};this.browserMatchingRepository=t,this.backendMatchingRepository=o}};import{isNil as AQ}from"lodash";import{isNil as t9}from"lodash";var r9=/[,;|](?=['"`])/g,PQ=/[;]|[|]|,[ a-zA-Z]/g,_a=r=>t9(r)?!1:`${r}`.match(r9)?!0:!!`${r}`.match(PQ),Ia=r=>{if(t9(r))return[];let t=`${r}`.split(r9);if(t.length===1){t=[];let o=`${r}`.split(/[;]|[|]|, /g);for(let n=0;n<o.length;n++){let a=o[n];/,[a-zA-Z]/.test(a)?t=t.concat(a.split(",")):t.push(a)}}return t.map(o=>o.replace(/[\s\-_&+'"`]/g," ").trim())};var Ap=class r{constructor({spreadSheetList:t,dataModels:o,licenseKey:n}){this.getColumns=()=>{let t=this.dataModels,o=[];for(let n=0;n<t.length;n++){let a=r.mapDataModelToColumn(t[n]);a&&o.push(a)}return o};this.getInputHeaderRow=()=>{let t=[];return this.allSheets.forEach(o=>{o.getColumns().forEach(a=>{t.push(a.getColumnKey())})}),t};this.getAllSheets=()=>this.allSheets;this.getAllDataModels=()=>this.dataModels;this.getLicenseKey=()=>this.licenseKey;this.spreadSheetList=t,this.dataModels=o,this.allSheets=this.spreadSheetList.getSelectedSheets(),this.licenseKey=n}static{this.getDropdownOptions=t=>t.isCategoryType()?t.getOptions().map(n=>({label:n.label,value:n.value,alternativeMatches:n.alternativeMatches})):null}static{this.getOptionMappingConfiguration=t=>{if(t.isDropdown())return t.getOptionMappingConfiguration()}}static{this.getType=t=>{switch(t.getType()){case"boolean":return"boolean";case"single-select":case"country_code_alpha_2":case"country_code_alpha_3":case"currency_code":return"category";case"int":case"float":return"number";default:return"string"}}}static{this.mapDataModelToColumn=t=>({key:t.getKey(),label:t.getLabel(),description:t.getDescription(),isMultiple:t.getIsMultiSelection(),dropdownOptions:this.getDropdownOptions(t),columnType:this.getType(t).toUpperCase(),alternativeMatches:t.getAlternativeMatches(),optionMappingConfiguration:this.getOptionMappingConfiguration(t)})}static{this.parseValue=t=>AQ(t)?"":`${t}`}static{this.getInputJsonBySheetColumn=(t,o)=>{let n=[],a=t.getUniqueRows(),i=a.length,s={},l=t.getColumnKey(),c=0;for(let p=0;p<i;p++){let m=r.parseValue(a[p]);_a(m)&&o.getIsMultiSelection()?Ia(m).forEach(b=>{s[l]?s[l].push(b):s[l]=[b]}):(n[c]?n[c][l]=m:n[c]={[l]:m},c++)}let u=Object.keys(s),d=n.length;for(let p=0;p<u.length;p++){let m=u[p];s[m].forEach((g,b)=>{let w=d+b;n[w]?n[w][m]=g:n[w]={[m]:g}})}return[n]}}},Np=Ap;var ly=class{constructor(){this.matchColumns=async(t,o,n)=>{let a=t.getAllSheets(),i=t.getAllDataModels(),s=await this.matchColumnsTask(t,o,n),c=new wn({calculateSimilarityResult:s[0],sheets:a,dataModels:i}).getSheetColumnDataModelSimilarityList();return{calculateSimilarityResult:s[0],sheetColumnDataModelSimilarityList:c}};this.matchOption=async({dataModel:t,sheetColumn:o,sheets:n,dataModels:a,licenseKey:i,sessionId:s})=>{let c=(await this.matchOptionTask({dataModel:t,sheetColumn:o,sheets:n,licenseKey:i,sessionId:s}))[0];this.matchBoolean([c],n,a);let d=new wn({calculateSimilarityResult:c,sheets:n,dataModels:a}).getSheetColumnDataModelOptionSimilarityList(o);return{calculateSimilarityResult:c,sheetColumnDataModelOptionSimilarityList:d}};this.matchBoolean=(t,o,n)=>{t.forEach((a,i)=>{a.result.forEach(s=>{let c=o[i].getColumn(s.label);c&&n.filter(d=>d.getType()==="boolean").forEach(d=>{let p=c.getUniqueRows();for(let m=0;m<p.length;m++){let h=p[m],g=null,b=`${h}`.toLowerCase().trim();if(Vi().includes(b)?g={true:1}:Hi().includes(b)&&(g={false:1}),g){let w=s.optionMappings[d.getKey()]??{};s.optionMappings[d.getKey()]={...w,[`${h}`]:g}}}})})})}}},Nh=ly;import{flatten as NQ}from"lodash";var cy=class{constructor(t,o){this.fileName="";this.parseData=t=>{let o=[],n=0,a=NQ(t.map(i=>i.getColumns()));o[0]=[],a.forEach((i,s)=>{o[0][s]=i.getColumnKey(),i.getUniqueRows().length>n&&(n=i.getUniqueRows().length)});for(let i=0;i<n;++i){o[i+1]=[];for(let s=0;s<a.length;++s){let l=a[s].getUniqueRows()[i]??"";o[i+1][s]=l}}return o};this.initialize=()=>{this.fileName=""};this.upload=async(t,o,n)=>{this.initialize();let a=this.parseData(t),i=await this.uploadInputSheetAPI.createFile(o,n);return this.fileName=i.file_name,this.inputSheetClearer.add(this.fileName),this.uploadInputSheetAPI.uploadData(i.signed_url,a,n)};this.getFileName=()=>this.fileName;this.clearData=t=>{this.initialize(),this.inputSheetClearer.clear(t)};this.complete=t=>{let o=this.fileName;o&&(this.initialize(),this.inputSheetClearer.remove(o),this.uploadInputSheetAPI.clearFile(o,t).catch(()=>{}))};this.uploadInputSheetAPI=t,this.inputSheetClearer=o}},o9=cy;import LQ from"axios";var Ur=class{constructor(t,o={}){this.httpClient=LQ.create(o),this.sendApiKey=t.sendApiKey,this.setupInterceptors()}setupInterceptors(){this.httpClient.interceptors.request.use(t=>t,t=>Promise.reject(t)),this.httpClient.interceptors.response.use(t=>t,t=>Promise.reject(t))}getHttpClient(){return this.httpClient}async get(t,o,n){return(await this.httpClient.request({method:"GET",url:t,params:o,...n})).data}async post(t,o,n={}){return(await this.httpClient.request({method:"POST",url:t,data:o,...n})).data}async put(t,o,n={}){return(await this.httpClient.request({method:"PUT",url:t,data:o,...n})).data}async patch(t,o,n={}){return(await this.httpClient.request({method:"PATCH",url:t,data:o,...n})).data}async delete(t,o={}){return(await this.httpClient.request({method:"DELETE",url:t,...o})).data}},Ki=Ur;var vt={csv:"text/csv",xlsx:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",xls:"application/vnd.ms-excel",xml:"text/xml",json:"application/json",tsv_text:"text/tab-separated-values",tsv:".tsv",pdf:"application/pdf",xlsb:"application/vnd.ms-excel.sheet.binary.macroEnabled.12"},n9=[vt.csv,vt.tsv,vt.tsv_text,vt.json];var uy=class r{constructor(){this.framework="react";this.versionNumber="4.0.1";this.uploadedFiles={};this.frameworkVersion="1.0.0";this.eventStack={};this.reviewEntriesLog={};this.parseSession=!1;this.startSession={};this.reloadSession={};this.verifySession={};this.getMeta=()=>({version:this.getVersionNumber(),framework:this.getFrameWork(),origin:this.getOrigin(),framework_version:this.getFrameworkVersion()});this.setParseSession=()=>{this.parseSession=!0};this.getParseSession=()=>this.parseSession;this.clearParseSession=()=>{this.parseSession=!1};this.setStartSession=t=>{this.startSession[t]=!0};this.getStartSession=t=>this.startSession[t];this.clearStartSession=t=>{this.startSession[t]=void 0};this.setReloadSession=t=>{this.reloadSession[t]=!0};this.getReloadSession=t=>this.reloadSession[t];this.clearReloadSession=t=>{this.reloadSession[t]=void 0};this.setVerifySession=t=>{this.verifySession[t]=!0};this.getVerifySession=t=>this.verifySession[t];this.clearVerifySession=t=>{this.verifySession[t]=void 0}}static{this.eventMapping={"/":"upload","/select-sheet":"sheet_selection","/select-header":"header_selection","/match-column":"match_columns","/review-entries":"review_entries","/join-column":"join_sheets"}}static getInstance(){return r.instance||(r.instance=new r),r.instance}setFrameWork(t){this.framework=t}getFrameWork(){return this.framework}setOrigin(t){this.origin=t}getOrigin(){return this.origin??""}setVersionNumber(t){this.versionNumber=t}getVersionNumber(){return this.versionNumber}setFrameworkVersion(t){this.frameworkVersion=t}getFrameworkVersion(){return this.frameworkVersion}pushEventStack(t,o){this.eventStack[t]||(this.eventStack[t]=[]);let n=this.eventStack[t][this.eventStack[t].length-1];o.action==="end"&&(n?.eventType===`${r.eventMapping[o.step]||o.step}_end`||n?.eventType!==`${r.eventMapping[o.step]||o.step}_start`)||this.eventStack[t].length>0&&o.action==="start"&&n?.eventType.includes("_start")&&n?.eventType!==`${r.eventMapping[o.step]||o.step}_start`||(this.eventStack[t].push({eventType:`${r.eventMapping[o.step]||o.step}_${o.action}`,timestamp:new Date().toISOString()}),this.eventStack[t].length>1&&this.eventStack[t][this.eventStack[t].length-1].eventType===this.eventStack[t][this.eventStack[t].length-2].eventType&&this.eventStack[t].splice(this.eventStack[t].length-2,1))}removeEventStack(t,o){this.eventStack[t]=this.eventStack[t].filter(n=>n.eventType!==o)}getEventStack(t){return this.eventStack[t]}clearEventStack(t){this.eventStack[t]=[]}setUploadedFiles(t,o){this.uploadedFiles[t]||this.clearUploadedFilesStack(t),o.forEach(n=>this.uploadedFiles[t].push({fileSize:n.fileSize,fileType:this.mapSupportedType(n.type)}))}getUploadFiles(t){return this.uploadedFiles?.[t]||[]}clearUploadedFilesStack(t){this.uploadedFiles[t]=[]}setReviewEntriesLog(t,o){this.reviewEntriesLog[t]=o}getReviewEntriesLog(t){return this.reviewEntriesLog?.[t]||{}}setTotalCleanings(t,o){this.reviewEntriesLog[t].total_cleanings=o}clearReviewEntriesLog(t){this.reviewEntriesLog[t]={total_rows:0,total_error_rows:0,total_error_cells:0,total_columns:0,total_cleanings:0}}mapSupportedType(t){for(let[o,n]of Object.entries(vt))if(t===n)return o;return t}},Ce=uy;var dy=class extends Ur{constructor(){super(...arguments);this.createFile=async(o,n)=>this.post("/file/directory",{},{headers:{apikey:this.sendApiKey?qt:void 0,Authorization:o,originRequest:Ce.getInstance().getOrigin()},signal:n.signal});this.uploadData=async(o,n,a)=>this.put(o,n,{baseURL:"",signal:a.signal});this.clearFile=async(o,n)=>this.delete(`/file?file_name=${o}`,{headers:{apikey:this.sendApiKey?qt:void 0,Authorization:n,originRequest:Ce.getInstance().getOrigin()}})}},Lh=dy;var py=class{constructor(t){this.fileNames=[];this.remove=t=>{this.fileNames=this.fileNames.filter(o=>o!==t)};this.add=t=>{this.fileNames.push(t)};this.clear=async t=>{let o=[...this.fileNames];for(let n=0;n<o.length;++n){let a=o[n];this.remove(a),await this.uploadInputSheetAPI.clearFile(a,t).catch(()=>{})}};this.uploadInputSheetAPI=t}},a9=py;var my=class extends Nh{constructor(o,n,a={}){super();this.prepareData=async(o,n,a)=>{await this.uploadInputSheetRepository.upload(o,n,a)};this.clearData=o=>{this.uploadInputSheetRepository.clearData(o)};this.complete=o=>{this.uploadInputSheetRepository.complete(o)};this.matchColumnsTask=(o,n,a)=>{let i=o.getColumns().map(c=>({key:c.key,label:c.label,alternativeMatches:c.alternativeMatches})),s=o.getLicenseKey(),l=o.getInputHeaderRow();return this.nodeEngine.matchColumns(l,i,s,n,a)};this.matchOptionTask=({dataModel:o,sheets:n,sheetColumn:a,licenseKey:i,sessionId:s})=>{let l=Np.mapDataModelToColumn(o),c=[];for(let d=0;d<n.length;d++){let p=n[d];for(let m=0;m<p.getColumns().length;m++){let h=p.getColumns()[m];c.push(h)}}let u=c.findIndex(d=>d===a);return this.nodeEngine.matchOption(this.uploadInputSheetRepository.getFileName(),[{column:{dropdownOptions:l.dropdownOptions,isMultiSelect:l.isMultiple,key:l.key,label:l.label,optionMappingConfiguration:l.optionMappingConfiguration},column_index:u}],i,s)};this.nodeEngine=o;let i=new Lh(n,a),s=new a9(i);this.uploadInputSheetRepository=new o9(i,s)}},i9=my;import{flatten as HQ}from"lodash";import{createEndpoint as $Q,releaseProxy as FQ,wrap as VQ}from"comlink";var yn=({workerFile:r,hostWorkerUrl:t})=>{let o=null,n=null;return{init:async()=>{if(!o||!n)try{t?o=o=new Worker(t):o=r(),o&&await new Promise((l,c)=>{if(!o)return c();o.addEventListener("error",u=>{u.preventDefault(),o?.terminate(),n?.[$Q](),n=null,c(new Error("has something wrong with worker"))}),n=VQ(o),n.check().then(l).catch(c)})}catch{}},clear:()=>{n&&(n?.[FQ](),o?.terminate(),n=null)},getRemote:()=>n}};var Cn={IMPORT:"importWorkerBundle.js",HOOKS:"hooks.js",MATCHING:"matchingValues.js",ML:"ml.js",SEARCH_AND_REPLACE:"searchAndReplace.js",JAVASCRIPT:"javascript.js"};var xn=(...r)=>r.map((t,o)=>o===0?t.replace(/\/+$/,""):t.replace(/^\/+|\/+$/g,"")).join("/");var fy=({workersBaseUrl:r})=>{let t=r?xn(r,Cn.ML):"",{init:o,getRemote:n,clear:a}=yn({hostWorkerUrl:t,workerFile:()=>new Worker(new URL("workers/mapping/index.js",import.meta.url),{type:"module"})});return{init:o,clear:a,getOptionMappings:(...l)=>{let c=n();return c?c.getOptionMappings(...l):U7(...l)},getColumnMappings:(...l)=>{let c=n();return c?c.getColumnMappings(...l):j7(...l)}}};var $h=class{constructor({workersBaseUrl:t}){this.getColumnMappings=async(t,o,n)=>{let a=fy({workersBaseUrl:this.workersBaseUrl});return await a.init(),a.getColumnMappings(t,o,n).then(i=>(a.clear(),i)).catch(i=>(a.clear(),Promise.reject(i)))};this.getOptionMappings=async(t,o)=>{let n=fy({workersBaseUrl:this.workersBaseUrl});return await n.init(),n.getOptionMappings(t,o).then(a=>(n.clear(),a)).catch(a=>(n.clear(),Promise.reject(a)))};this.workersBaseUrl=t}};var Fh=class{constructor({workersBaseUrl:t}){this.matchColumns=async(t,o,n)=>{let a=await this.mappingEngine.getColumnMappings(t,o.map(i=>`${i}`),n);return this.parseColumnMappingResult(HQ(a))};this.matchOption=async(t,o)=>Promise.all(o.map(n=>this.matchOptionItem(t,n)));this.matchOptionItem=async(t,o)=>new Promise((n,a)=>{setTimeout(()=>{this.mappingEngine.getOptionMappings(t,o).then(i=>{let s={result:[{optionMappings:{[i.tdmColumnKey]:i.suggestions},label:i.inputColumn,suggestions:[{key:i.tdmColumnKey,value:1,isSameWord:!0}]}]};n(s)}).catch(i=>{a(i)})},100)});this.parseColumnMappingResult=t=>{let o=[];for(let n=0;n<t.length;n++){let a=t[n],i=[];for(let s=0;s<a.columnSuggestions.length;s++){let l=a.columnSuggestions[s];i.push({key:l.key,value:l.percentage})}o.push({label:a.inputColumnKey,suggestions:i,optionMappings:{}})}return[{result:o}]};this.mappingEngine=new $h({workersBaseUrl:t})}};import{flatten as BQ}from"lodash";var Vh=class extends Ur{constructor(){super(...arguments);this.matchColumns=async(o,n,a,i,s)=>{let l={apikey:this.sendApiKey?qt:void 0,authorization:a},c=await this.post("/execute/column",{tdmColumns:n,inputColumns:o,options:{columnMappingConfiguration:{layers:i.layers,threshold:i.threshold},product:"importer"},sessionId:s},{headers:l});return this.parseColumnMappingResult(c)};this.matchOption=async(o,n,a,i)=>{let s={apikey:this.sendApiKey?qt:void 0,authorization:a},l=await Promise.all(n.map(c=>this.post("/execute/option",{tdmColumn:{key:c.column.key,label:c.column.label,isMultiSelect:c.column.isMultiSelect,dropdownOptions:c.column.dropdownOptions},options:{product:"importer",fileName:o,columnIndex:c.column_index,headerRowIndex:0,optionMappingConfiguration:{layers:c.column.optionMappingConfiguration?.layers,threshold:c.column.optionMappingConfiguration?.threshold}},sessionId:i},{headers:s})));return this.parseOptionMappingResult(BQ(l))};this.parseColumnMappingResult=o=>{let n=[];for(let a=0;a<o.length;a++){let i=o[a],s=[],l=Object.keys(i.suggestions);for(let c=0;c<l.length;c++){let u=l[c],d=i.suggestions[u];s.push({key:u,value:d})}n.push({label:i.inputColumn,suggestions:s,optionMappings:{}})}return[{result:n}]}}parseOptionMappingResult(o){let n=[];for(let a=0;a<o.length;a++){let i=o[a];n.push({optionMappings:{[i.tdmColumnKey]:i.suggestions},label:i.inputColumn,suggestions:[{key:i.tdmColumnKey,value:1,isSameWord:!0}]})}return[{result:n}]}};var hy=class extends Nh{constructor(o){super();this.matchColumnsTask=(o,n)=>{let a=o.getColumns().map(s=>({...s,dropdownOptions:[]})),i=o.getInputHeaderRow();return this.browserEngine.matchColumns(a,i,n)};this.matchOptionTask=({dataModel:o,sheetColumn:n})=>{let a=Np.mapDataModelToColumn(o),i=Np.getInputJsonBySheetColumn(n,o);return this.browserEngine.matchOption(a,i)};this.browserEngine=o}},s9=hy;import{jsx as GQ}from"react/jsx-runtime";var gy=zQ({executing:!0,setExecuting:()=>{},abort:()=>{}}),qQ=({children:r})=>{let[t,o]=WQ(!0),{baseUrl:n,isSelfHosted:a,baseMappingUrl:i,workersBaseUrl:s}=ee(),l=jQ(new AbortController),c=l9(()=>new Fh({workersBaseUrl:s??""}),[s]),u=l9(()=>{let p=new s9(c),m=new Vh({sendApiKey:!a},{baseURL:i}),h=new i9(m,{sendApiKey:!a},{baseURL:n});return new Ah(p,h)},[n,a,c,i]),d=UQ(()=>{l.current.abort(),l.current=new AbortController},[l]);return GQ(gy.Provider,{value:{matchingStrategy:u,executing:t,setExecuting:o,abortController:l,abort:d},children:r})},c9=qQ;import"simplebar/dist/simplebar.min.css";var vy=document.createElement("style");vy.type="text/css";vy.appendChild(document.createTextNode(`.nuvo-tailwind .\\!container{width:100%!important}.nuvo-tailwind .container{width:100%}@media (min-width:375px){.nuvo-tailwind .\\!container{max-width:375px!important}.nuvo-tailwind .container{max-width:375px}}@media (min-width:412px){.nuvo-tailwind .\\!container{max-width:412px!important}.nuvo-tailwind .container{max-width:412px}}@media (min-width:468px){.nuvo-tailwind .\\!container{max-width:468px!important}.nuvo-tailwind .container{max-width:468px}}@media (min-width:640px){.nuvo-tailwind .\\!container{max-width:640px!important}.nuvo-tailwind .container{max-width:640px}}@media (min-width:740px){.nuvo-tailwind .\\!container{max-width:740px!important}.nuvo-tailwind .container{max-width:740px}}@media (min-width:768px){.nuvo-tailwind .\\!container{max-width:768px!important}.nuvo-tailwind .container{max-width:768px}}@media (min-width:820px){.nuvo-tailwind .\\!container{max-width:820px!important}.nuvo-tailwind .container{max-width:820px}}@media (min-width:885px){.nuvo-tailwind .\\!container{max-width:885px!important}.nuvo-tailwind .container{max-width:885px}}@media (min-width:990px){.nuvo-tailwind .\\!container{max-width:990px!important}.nuvo-tailwind .container{max-width:990px}}@media (min-width:1024px){.nuvo-tailwind .\\!container{max-width:1024px!important}.nuvo-tailwind .container{max-width:1024px}}@media (min-width:1190px){.nuvo-tailwind .\\!container{max-width:1190px!important}.nuvo-tailwind .container{max-width:1190px}}@media (min-width:1280px){.nuvo-tailwind .\\!container{max-width:1280px!important}.nuvo-tailwind .container{max-width:1280px}}@media (min-width:1440px){.nuvo-tailwind .\\!container{max-width:1440px!important}.nuvo-tailwind .container{max-width:1440px}}@media (min-width:1441px){.nuvo-tailwind .\\!container{max-width:1441px!important}.nuvo-tailwind .container{max-width:1441px}}@media (min-width:1536px){.nuvo-tailwind .\\!container{max-width:1536px!important}.nuvo-tailwind .container{max-width:1536px}}@media (min-width:1920px){.nuvo-tailwind .\\!container{max-width:1920px!important}.nuvo-tailwind .container{max-width:1920px}}.nuvo-tailwind *,.nuvo-tailwind :after,.nuvo-tailwind :before{border:0 solid #e5e7eb;box-sizing:border-box}
|
|
99
|
-
/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com*/.nuvo-tailwind :after,.nuvo-tailwind :before{--tw-content:""}.nuvo-tailwind :host,.nuvo-tailwind html{-webkit-text-size-adjust:100%;font-feature-settings:normal;-webkit-tap-highlight-color:transparent;font-family:Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}.nuvo-tailwind body{line-height:inherit;margin:0}.nuvo-tailwind hr{border-top-width:1px;color:inherit;height:0}.nuvo-tailwind abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.nuvo-tailwind h1,.nuvo-tailwind h2,.nuvo-tailwind h3,.nuvo-tailwind h4,.nuvo-tailwind h5,.nuvo-tailwind h6{font-size:inherit;font-weight:inherit}.nuvo-tailwind a{color:inherit;text-decoration:inherit}.nuvo-tailwind b,.nuvo-tailwind strong{font-weight:bolder}.nuvo-tailwind code,.nuvo-tailwind kbd,.nuvo-tailwind pre,.nuvo-tailwind samp{font-feature-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;font-variation-settings:normal}.nuvo-tailwind small{font-size:80%}.nuvo-tailwind sub,.nuvo-tailwind sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.nuvo-tailwind sub{bottom:-.25em}.nuvo-tailwind sup{top:-.5em}.nuvo-tailwind table{border-collapse:collapse;border-color:inherit;text-indent:0}.nuvo-tailwind button,.nuvo-tailwind input,.nuvo-tailwind optgroup,.nuvo-tailwind select,.nuvo-tailwind textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}.nuvo-tailwind button,.nuvo-tailwind select{text-transform:none}.nuvo-tailwind [type=button],.nuvo-tailwind [type=reset],.nuvo-tailwind [type=submit],.nuvo-tailwind button{-webkit-appearance:button;background-color:transparent;background-image:none}.nuvo-tailwind :-moz-focusring{outline:auto}.nuvo-tailwind :-moz-ui-invalid{box-shadow:none}.nuvo-tailwind progress{vertical-align:baseline}.nuvo-tailwind ::-webkit-inner-spin-button,.nuvo-tailwind ::-webkit-outer-spin-button{height:auto}.nuvo-tailwind [type=search]{-webkit-appearance:textfield;outline-offset:-2px}.nuvo-tailwind ::-webkit-search-decoration{-webkit-appearance:none}.nuvo-tailwind ::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}.nuvo-tailwind summary{display:list-item}.nuvo-tailwind blockquote,.nuvo-tailwind dd,.nuvo-tailwind dl,.nuvo-tailwind figure,.nuvo-tailwind h1,.nuvo-tailwind h2,.nuvo-tailwind h3,.nuvo-tailwind h4,.nuvo-tailwind h5,.nuvo-tailwind h6,.nuvo-tailwind hr,.nuvo-tailwind p,.nuvo-tailwind pre{margin:0}.nuvo-tailwind fieldset{margin:0;padding:0}.nuvo-tailwind legend{padding:0}.nuvo-tailwind menu,.nuvo-tailwind ol,.nuvo-tailwind ul{list-style:none;margin:0;padding:0}.nuvo-tailwind dialog{padding:0}.nuvo-tailwind textarea{resize:vertical}.nuvo-tailwind input::-moz-placeholder,.nuvo-tailwind textarea::-moz-placeholder{color:#9ca3af;opacity:1}.nuvo-tailwind input::placeholder,.nuvo-tailwind textarea::placeholder{color:#9ca3af;opacity:1}.nuvo-tailwind [role=button],.nuvo-tailwind button{cursor:pointer}.nuvo-tailwind :disabled{cursor:default}.nuvo-tailwind audio,.nuvo-tailwind canvas,.nuvo-tailwind embed,.nuvo-tailwind iframe,.nuvo-tailwind img,.nuvo-tailwind object,.nuvo-tailwind svg,.nuvo-tailwind video{display:block;vertical-align:middle}.nuvo-tailwind img,.nuvo-tailwind video{height:auto;max-width:100%}.nuvo-tailwind [hidden]{display:none}.nuvo-tailwind [multiple],.nuvo-tailwind [type=date],.nuvo-tailwind [type=datetime-local],.nuvo-tailwind [type=email],.nuvo-tailwind [type=month],.nuvo-tailwind [type=number],.nuvo-tailwind [type=password],.nuvo-tailwind [type=search],.nuvo-tailwind [type=tel],.nuvo-tailwind [type=text],.nuvo-tailwind [type=time],.nuvo-tailwind [type=url],.nuvo-tailwind [type=week],.nuvo-tailwind input:where(:not([type])),.nuvo-tailwind select,.nuvo-tailwind textarea{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem}.nuvo-tailwind [multiple]:focus,.nuvo-tailwind [type=date]:focus,.nuvo-tailwind [type=datetime-local]:focus,.nuvo-tailwind [type=email]:focus,.nuvo-tailwind [type=month]:focus,.nuvo-tailwind [type=number]:focus,.nuvo-tailwind [type=password]:focus,.nuvo-tailwind [type=search]:focus,.nuvo-tailwind [type=tel]:focus,.nuvo-tailwind [type=text]:focus,.nuvo-tailwind [type=time]:focus,.nuvo-tailwind [type=url]:focus,.nuvo-tailwind [type=week]:focus,.nuvo-tailwind input:where(:not([type])):focus,.nuvo-tailwind select:focus,.nuvo-tailwind textarea:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid transparent;outline-offset:2px}.nuvo-tailwind input::-moz-placeholder,.nuvo-tailwind textarea::-moz-placeholder{color:#6b7280;opacity:1}.nuvo-tailwind input::placeholder,.nuvo-tailwind textarea::placeholder{color:#6b7280;opacity:1}.nuvo-tailwind ::-webkit-datetime-edit-fields-wrapper{padding:0}.nuvo-tailwind ::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}.nuvo-tailwind ::-webkit-datetime-edit{display:inline-flex}.nuvo-tailwind ::-webkit-datetime-edit,.nuvo-tailwind ::-webkit-datetime-edit-day-field,.nuvo-tailwind ::-webkit-datetime-edit-hour-field,.nuvo-tailwind ::-webkit-datetime-edit-meridiem-field,.nuvo-tailwind ::-webkit-datetime-edit-millisecond-field,.nuvo-tailwind ::-webkit-datetime-edit-minute-field,.nuvo-tailwind ::-webkit-datetime-edit-month-field,.nuvo-tailwind ::-webkit-datetime-edit-second-field,.nuvo-tailwind ::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}.nuvo-tailwind select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}.nuvo-tailwind [multiple],.nuvo-tailwind [size]:where(select:not([size="1"])){background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}.nuvo-tailwind [type=checkbox],.nuvo-tailwind [type=radio]{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#2563eb;display:inline-block;flex-shrink:0;height:1rem;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem}.nuvo-tailwind [type=checkbox]{border-radius:0}.nuvo-tailwind [type=radio]{border-radius:100%}.nuvo-tailwind [type=checkbox]:focus,.nuvo-tailwind [type=radio]:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid transparent;outline-offset:2px}.nuvo-tailwind [type=checkbox]:checked,.nuvo-tailwind [type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}.nuvo-tailwind [type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}@media (forced-colors:active) {.nuvo-tailwind [type=checkbox]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.nuvo-tailwind [type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}@media (forced-colors:active) {.nuvo-tailwind [type=radio]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.nuvo-tailwind [type=checkbox]:checked:focus,.nuvo-tailwind [type=checkbox]:checked:hover,.nuvo-tailwind [type=radio]:checked:focus,.nuvo-tailwind [type=radio]:checked:hover{background-color:currentColor;border-color:transparent}.nuvo-tailwind [type=checkbox]:indeterminate{background-color:currentColor;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}@media (forced-colors:active) {.nuvo-tailwind [type=checkbox]:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.nuvo-tailwind [type=checkbox]:indeterminate:focus,.nuvo-tailwind [type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:transparent}.nuvo-tailwind [type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}.nuvo-tailwind [type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}.nuvo-tailwind *,.nuvo-tailwind :after,.nuvo-tailwind :before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.nuvo-tailwind ::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.nuvo-tailwind .pointer-events-none{pointer-events:none}.nuvo-tailwind .\\!pointer-events-auto{pointer-events:auto!important}.nuvo-tailwind .pointer-events-auto{pointer-events:auto}.nuvo-tailwind .visible{visibility:visible}.nuvo-tailwind .invisible{visibility:hidden}.nuvo-tailwind .static{position:static}.nuvo-tailwind .fixed{position:fixed}.nuvo-tailwind .absolute{position:absolute}.nuvo-tailwind .relative{position:relative}.nuvo-tailwind .sticky{position:sticky}.nuvo-tailwind .inset-0{inset:0}.nuvo-tailwind .inset-2{inset:.5rem}.nuvo-tailwind .-left-0{left:0}.nuvo-tailwind .-left-0\\.5{left:-.125rem}.nuvo-tailwind .-left-1{left:-.25rem}.nuvo-tailwind .-left-full{left:-100%}.nuvo-tailwind .-top-px{top:-1px}.nuvo-tailwind .bottom-0{bottom:0}.nuvo-tailwind .bottom-1{bottom:.25rem}.nuvo-tailwind .bottom-1\\.5{bottom:.375rem}.nuvo-tailwind .bottom-14{bottom:3.5rem}.nuvo-tailwind .bottom-20{bottom:5rem}.nuvo-tailwind .bottom-4{bottom:1rem}.nuvo-tailwind .bottom-8{bottom:2rem}.nuvo-tailwind .bottom-px{bottom:1px}.nuvo-tailwind .left-0{left:0}.nuvo-tailwind .left-1\\/2{left:50%}.nuvo-tailwind .left-3{left:.75rem}.nuvo-tailwind .left-6{left:1.5rem}.nuvo-tailwind .right-0{right:0}.nuvo-tailwind .right-2{right:.5rem}.nuvo-tailwind .right-3{right:.75rem}.nuvo-tailwind .right-8{right:2rem}.nuvo-tailwind .top-0{top:0}.nuvo-tailwind .top-1\\/2{top:50%}.nuvo-tailwind .top-3{top:.75rem}.nuvo-tailwind .top-7{top:1.75rem}.nuvo-tailwind .top-8{top:2rem}.nuvo-tailwind .top-px{top:1px}.nuvo-tailwind .\\!z-180{z-index:180!important}.nuvo-tailwind .z-10{z-index:10}.nuvo-tailwind .z-101{z-index:101}.nuvo-tailwind .z-103{z-index:103}.nuvo-tailwind .z-170{z-index:170}.nuvo-tailwind .z-180{z-index:180}.nuvo-tailwind .z-20{z-index:20}.nuvo-tailwind .z-30{z-index:30}.nuvo-tailwind .z-40{z-index:40}.nuvo-tailwind .z-50{z-index:50}.nuvo-tailwind .order-1{order:1}.nuvo-tailwind .order-2{order:2}.nuvo-tailwind .order-3{order:3}.nuvo-tailwind .\\!my-auto{margin-bottom:auto!important;margin-top:auto!important}.nuvo-tailwind .-mx-3{margin-left:-.75rem;margin-right:-.75rem}.nuvo-tailwind .mx-0{margin-left:0;margin-right:0}.nuvo-tailwind .mx-1{margin-left:.25rem;margin-right:.25rem}.nuvo-tailwind .mx-2{margin-left:.5rem;margin-right:.5rem}.nuvo-tailwind .mx-4{margin-left:1rem;margin-right:1rem}.nuvo-tailwind .mx-6{margin-left:1.5rem;margin-right:1.5rem}.nuvo-tailwind .mx-6\\.5{margin-left:26px;margin-right:26px}.nuvo-tailwind .mx-auto{margin-left:auto;margin-right:auto}.nuvo-tailwind .mx-px{margin-left:1px;margin-right:1px}.nuvo-tailwind .my-1{margin-bottom:.25rem;margin-top:.25rem}.nuvo-tailwind .my-2{margin-bottom:.5rem;margin-top:.5rem}.nuvo-tailwind .my-3{margin-bottom:.75rem;margin-top:.75rem}.nuvo-tailwind .my-4{margin-bottom:1rem;margin-top:1rem}.nuvo-tailwind .my-6{margin-bottom:1.5rem;margin-top:1.5rem}.nuvo-tailwind .my-8{margin-bottom:2rem;margin-top:2rem}.nuvo-tailwind .\\!-mt-0{margin-top:0!important}.nuvo-tailwind .\\!mb-0{margin-bottom:0!important}.nuvo-tailwind .\\!mb-3{margin-bottom:.75rem!important}.nuvo-tailwind .\\!ml-0{margin-left:0!important}.nuvo-tailwind .\\!ml-1{margin-left:.25rem!important}.nuvo-tailwind .\\!mr-0{margin-right:0!important}.nuvo-tailwind .\\!mr-2{margin-right:.5rem!important}.nuvo-tailwind .\\!mt-0{margin-top:0!important}.nuvo-tailwind .\\!mt-6{margin-top:1.5rem!important}.nuvo-tailwind .-mb-1{margin-bottom:-.25rem}.nuvo-tailwind .-ml-1{margin-left:-.25rem}.nuvo-tailwind .-ml-px{margin-left:-1px}.nuvo-tailwind .-mr-0{margin-right:0}.nuvo-tailwind .-mr-0\\.5{margin-right:-2px}.nuvo-tailwind .-mt-0{margin-top:0}.nuvo-tailwind .-mt-0\\.5{margin-top:-2px}.nuvo-tailwind .-mt-3{margin-top:-.75rem}.nuvo-tailwind .-mt-4{margin-top:-1rem}.nuvo-tailwind .-mt-7{margin-top:-1.75rem}.nuvo-tailwind .-mt-px{margin-top:-1px}.nuvo-tailwind .mb-0{margin-bottom:0}.nuvo-tailwind .mb-0\\.5{margin-bottom:2px}.nuvo-tailwind .mb-1{margin-bottom:.25rem}.nuvo-tailwind .mb-10{margin-bottom:2.5rem}.nuvo-tailwind .mb-2{margin-bottom:.5rem}.nuvo-tailwind .mb-3{margin-bottom:.75rem}.nuvo-tailwind .mb-4{margin-bottom:1rem}.nuvo-tailwind .mb-6{margin-bottom:1.5rem}.nuvo-tailwind .mb-7{margin-bottom:1.75rem}.nuvo-tailwind .mb-8{margin-bottom:2rem}.nuvo-tailwind .mb-px{margin-bottom:1px}.nuvo-tailwind .ml-0{margin-left:0}.nuvo-tailwind .ml-0\\.5{margin-left:2px}.nuvo-tailwind .ml-1{margin-left:.25rem}.nuvo-tailwind .ml-1\\.5{margin-left:6px}.nuvo-tailwind .ml-2{margin-left:.5rem}.nuvo-tailwind .ml-3{margin-left:.75rem}.nuvo-tailwind .ml-4{margin-left:1rem}.nuvo-tailwind .ml-5{margin-left:1.25rem}.nuvo-tailwind .ml-6{margin-left:1.5rem}.nuvo-tailwind .ml-auto{margin-left:auto}.nuvo-tailwind .ml-px{margin-left:1px}.nuvo-tailwind .mr-0{margin-right:0}.nuvo-tailwind .mr-0\\.5{margin-right:2px}.nuvo-tailwind .mr-1{margin-right:.25rem}.nuvo-tailwind .mr-1\\.5{margin-right:6px}.nuvo-tailwind .mr-2{margin-right:.5rem}.nuvo-tailwind .mr-3{margin-right:.75rem}.nuvo-tailwind .mr-4{margin-right:1rem}.nuvo-tailwind .mr-5{margin-right:1.25rem}.nuvo-tailwind .mr-6{margin-right:1.5rem}.nuvo-tailwind .mr-auto{margin-right:auto}.nuvo-tailwind .mt-0{margin-top:0}.nuvo-tailwind .mt-0\\.5{margin-top:2px}.nuvo-tailwind .mt-1{margin-top:.25rem}.nuvo-tailwind .mt-2{margin-top:.5rem}.nuvo-tailwind .mt-3{margin-top:.75rem}.nuvo-tailwind .mt-4{margin-top:1rem}.nuvo-tailwind .mt-5{margin-top:1.25rem}.nuvo-tailwind .mt-6{margin-top:1.5rem}.nuvo-tailwind .mt-8{margin-top:2rem}.nuvo-tailwind .mt-px{margin-top:1px}.nuvo-tailwind .\\!box-border{box-sizing:border-box!important}.nuvo-tailwind .box-border{box-sizing:border-box}.nuvo-tailwind .line-clamp-1{-webkit-line-clamp:1}.nuvo-tailwind .line-clamp-1,.nuvo-tailwind .line-clamp-2{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.nuvo-tailwind .line-clamp-2{-webkit-line-clamp:2}.nuvo-tailwind .line-clamp-4{-webkit-box-orient:vertical;-webkit-line-clamp:4;display:-webkit-box;overflow:hidden}.nuvo-tailwind .block{display:block}.nuvo-tailwind .\\!inline-block{display:inline-block!important}.nuvo-tailwind .inline-block{display:inline-block}.nuvo-tailwind .inline{display:inline}.nuvo-tailwind .flex{display:flex}.nuvo-tailwind .inline-flex{display:inline-flex}.nuvo-tailwind .table{display:table}.nuvo-tailwind .grid{display:grid}.nuvo-tailwind .contents{display:contents}.nuvo-tailwind .hidden{display:none}.nuvo-tailwind .\\!h-1{height:.25rem!important}.nuvo-tailwind .\\!h-4{height:1rem!important}.nuvo-tailwind .\\!h-8{height:2rem!important}.nuvo-tailwind .h-0{height:0}.nuvo-tailwind .h-10{height:2.5rem}.nuvo-tailwind .h-11{height:2.75rem}.nuvo-tailwind .h-12{height:3rem}.nuvo-tailwind .h-16{height:4rem}.nuvo-tailwind .h-2{height:.5rem}.nuvo-tailwind .h-2\\.5{height:11px}.nuvo-tailwind .h-250{height:250px}.nuvo-tailwind .h-26{height:26px}.nuvo-tailwind .h-3{height:.75rem}.nuvo-tailwind .h-38{height:38px}.nuvo-tailwind .h-4{height:1rem}.nuvo-tailwind .h-4\\.5{height:18px}.nuvo-tailwind .h-40{height:10rem}.nuvo-tailwind .h-5{height:1.25rem}.nuvo-tailwind .h-5\\.5{height:22px}.nuvo-tailwind .h-6{height:1.5rem}.nuvo-tailwind .h-60{height:15rem}.nuvo-tailwind .h-7{height:1.75rem}.nuvo-tailwind .h-79{height:79px}.nuvo-tailwind .h-8{height:2rem}.nuvo-tailwind .h-8\\.5{height:34px}.nuvo-tailwind .h-9{height:2.25rem}.nuvo-tailwind .h-auto{height:auto}.nuvo-tailwind .h-fit{height:-moz-fit-content;height:fit-content}.nuvo-tailwind .h-full{height:100%}.nuvo-tailwind .h-px{height:1px}.nuvo-tailwind .h-screen{height:100vh}.nuvo-tailwind .max-h-210{max-height:210px}.nuvo-tailwind .max-h-3\\/4{max-height:75%}.nuvo-tailwind .max-h-60{max-height:60px}.nuvo-tailwind .max-h-80{max-height:20rem}.nuvo-tailwind .max-h-full{max-height:100%}.nuvo-tailwind .\\!min-h-auto{min-height:auto!important}.nuvo-tailwind .min-h-0{min-height:0}.nuvo-tailwind .min-h-10{min-height:40px}.nuvo-tailwind .min-h-2{min-height:8px}.nuvo-tailwind .min-h-40{min-height:40px}.nuvo-tailwind .min-h-400{min-height:400px}.nuvo-tailwind .min-h-42{min-height:42px}.nuvo-tailwind .min-h-500{min-height:500px}.nuvo-tailwind .min-h-57{min-height:57px}.nuvo-tailwind .min-h-77{min-height:77px}.nuvo-tailwind .min-h-full{min-height:100%}.nuvo-tailwind .\\!w-1{width:.25rem!important}.nuvo-tailwind .\\!w-4{width:1rem!important}.nuvo-tailwind .\\!w-8{width:2rem!important}.nuvo-tailwind .\\!w-full{width:100%!important}.nuvo-tailwind .w-1{width:.25rem}.nuvo-tailwind .w-1\\/2{width:50%}.nuvo-tailwind .w-10{width:2.5rem}.nuvo-tailwind .w-12{width:3rem}.nuvo-tailwind .w-16{width:4rem}.nuvo-tailwind .w-2{width:.5rem}.nuvo-tailwind .w-2\\/4{width:50%}.nuvo-tailwind .w-20{width:5rem}.nuvo-tailwind .w-24{width:6rem}.nuvo-tailwind .w-3{width:.75rem}.nuvo-tailwind .w-3\\.5{width:.875rem}.nuvo-tailwind .w-3\\/5{width:60%}.nuvo-tailwind .w-340{width:340px}.nuvo-tailwind .w-4{width:1rem}.nuvo-tailwind .w-4\\.5{width:18px}.nuvo-tailwind .w-4\\/5{width:80%}.nuvo-tailwind .w-40{width:10rem}.nuvo-tailwind .w-400{width:400px}.nuvo-tailwind .w-44{width:11rem}.nuvo-tailwind .w-5{width:1.25rem}.nuvo-tailwind .w-50{width:182px}.nuvo-tailwind .w-52{width:13rem}.nuvo-tailwind .w-57{width:232px}.nuvo-tailwind .w-6{width:1.5rem}.nuvo-tailwind .w-72{width:18rem}.nuvo-tailwind .w-73{width:304px}.nuvo-tailwind .w-8{width:2rem}.nuvo-tailwind .w-81{width:335px}.nuvo-tailwind .w-9{width:2.25rem}.nuvo-tailwind .w-90{width:360px}.nuvo-tailwind .w-auto{width:auto}.nuvo-tailwind .w-fit{width:-moz-fit-content;width:fit-content}.nuvo-tailwind .w-full{width:100%}.nuvo-tailwind .w-max{width:-moz-max-content;width:max-content}.nuvo-tailwind .min-w-0{min-width:0}.nuvo-tailwind .min-w-2{min-width:8px}.nuvo-tailwind .min-w-204{min-width:204px}.nuvo-tailwind .min-w-240{min-width:240px}.nuvo-tailwind .min-w-50{min-width:182px}.nuvo-tailwind .min-w-52{min-width:200px}.nuvo-tailwind .\\!max-w-lg{max-width:32rem!important}.nuvo-tailwind .\\!max-w-none{max-width:none!important}.nuvo-tailwind .max-w-204{max-width:204px}.nuvo-tailwind .max-w-240{max-width:240px}.nuvo-tailwind .max-w-251{max-width:251px}.nuvo-tailwind .max-w-268{max-width:268px}.nuvo-tailwind .max-w-272{max-width:272px}.nuvo-tailwind .max-w-2xs{max-width:336px}.nuvo-tailwind .max-w-355{max-width:355px}.nuvo-tailwind .max-w-372{max-width:372px}.nuvo-tailwind .max-w-420{max-width:420px}.nuvo-tailwind .max-w-6xl{max-width:72rem}.nuvo-tailwind .max-w-full{max-width:100%}.nuvo-tailwind .max-w-md{max-width:28rem}.nuvo-tailwind .max-w-screen-3xl{max-width:1735px}.nuvo-tailwind .flex-1{flex:1 1 0%}.nuvo-tailwind .flex-auto{flex:1 1 auto}.nuvo-tailwind .flex-shrink{flex-shrink:1}.nuvo-tailwind .flex-shrink-0{flex-shrink:0}.nuvo-tailwind .flex-grow{flex-grow:1}.nuvo-tailwind .-translate-x-1\\/2{--tw-translate-x:-50%}.nuvo-tailwind .-translate-x-1\\/2,.nuvo-tailwind .-translate-y-1\\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.nuvo-tailwind .-translate-y-1\\/2{--tw-translate-y:-50%}.nuvo-tailwind .-rotate-90{--tw-rotate:-90deg}.nuvo-tailwind .-rotate-90,.nuvo-tailwind .rotate-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.nuvo-tailwind .rotate-0{--tw-rotate:0deg}.nuvo-tailwind .rotate-180{--tw-rotate:180deg}.nuvo-tailwind .rotate-180,.nuvo-tailwind .rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.nuvo-tailwind .rotate-90{--tw-rotate:90deg}.nuvo-tailwind .scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.nuvo-tailwind .scale-95,.nuvo-tailwind .transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.nuvo-tailwind .animate-fade{animation:fade .5s ease}@keyframes pulse{50%{opacity:.5}}.nuvo-tailwind .animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.nuvo-tailwind .\\!cursor-pointer{cursor:pointer!important}.nuvo-tailwind .cursor-auto{cursor:auto}.nuvo-tailwind .cursor-default{cursor:default}.nuvo-tailwind .cursor-move{cursor:move}.nuvo-tailwind .cursor-not-allowed{cursor:not-allowed}.nuvo-tailwind .cursor-pointer{cursor:pointer}.nuvo-tailwind .resize-y{resize:vertical}.nuvo-tailwind .resize{resize:both}.nuvo-tailwind .list-disc{list-style-type:disc}.nuvo-tailwind .grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.nuvo-tailwind .flex-row{flex-direction:row}.nuvo-tailwind .flex-col{flex-direction:column}.nuvo-tailwind .flex-wrap{flex-wrap:wrap}.nuvo-tailwind .flex-nowrap{flex-wrap:nowrap}.nuvo-tailwind .items-start{align-items:flex-start}.nuvo-tailwind .items-end{align-items:flex-end}.nuvo-tailwind .items-center{align-items:center}.nuvo-tailwind .\\!items-stretch{align-items:stretch!important}.nuvo-tailwind .items-stretch{align-items:stretch}.nuvo-tailwind .justify-start{justify-content:flex-start}.nuvo-tailwind .justify-end{justify-content:flex-end}.nuvo-tailwind .justify-center{justify-content:center}.nuvo-tailwind .justify-between{justify-content:space-between}.nuvo-tailwind .gap-1{gap:.25rem}.nuvo-tailwind .gap-2{gap:.5rem}.nuvo-tailwind .gap-4{gap:1rem}.nuvo-tailwind .gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.nuvo-tailwind .gap-y-3{row-gap:.75rem}.nuvo-tailwind .space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.nuvo-tailwind .space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.nuvo-tailwind .space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.nuvo-tailwind .space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.nuvo-tailwind .space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.nuvo-tailwind .space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.nuvo-tailwind .space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.nuvo-tailwind .space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.nuvo-tailwind .divide-y-1>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.nuvo-tailwind .overflow-auto{overflow:auto}.nuvo-tailwind .overflow-hidden{overflow:hidden}.nuvo-tailwind .overflow-visible{overflow:visible}.nuvo-tailwind .overflow-x-auto{overflow-x:auto}.nuvo-tailwind .overflow-y-auto{overflow-y:auto}.nuvo-tailwind .overflow-x-hidden{overflow-x:hidden}.nuvo-tailwind .overflow-y-hidden{overflow-y:hidden}.nuvo-tailwind .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nuvo-tailwind .whitespace-nowrap{white-space:nowrap}.nuvo-tailwind .whitespace-pre-line{white-space:pre-line}.nuvo-tailwind .break-words{overflow-wrap:break-word}.nuvo-tailwind .break-all{word-break:break-all}.nuvo-tailwind .\\!rounded-medium{border-radius:4px!important}.nuvo-tailwind .rounded{border-radius:3px}.nuvo-tailwind .rounded-2lg{border-radius:10px}.nuvo-tailwind .rounded-2xl{border-radius:1rem}.nuvo-tailwind .rounded-full{border-radius:9999px}.nuvo-tailwind .rounded-lg{border-radius:.5rem}.nuvo-tailwind .rounded-md{border-radius:.375rem}.nuvo-tailwind .rounded-medium{border-radius:4px}.nuvo-tailwind .rounded-b-lg{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.nuvo-tailwind .rounded-b-medium{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.nuvo-tailwind .rounded-t-medium{border-top-left-radius:4px;border-top-right-radius:4px}.nuvo-tailwind .rounded-bl-medium{border-bottom-left-radius:4px}.nuvo-tailwind .rounded-tl-medium{border-top-left-radius:4px}.nuvo-tailwind .\\!border-0{border-width:0!important}.nuvo-tailwind .\\!border-2{border-width:2px!important}.nuvo-tailwind .border{border-width:1px}.nuvo-tailwind .border-0{border-width:0}.nuvo-tailwind .border-1{border-width:1px}.nuvo-tailwind .border-2{border-width:2px}.nuvo-tailwind .border-b{border-bottom-width:1px}.nuvo-tailwind .border-b-0{border-bottom-width:0}.nuvo-tailwind .border-b-1{border-bottom-width:1px}.nuvo-tailwind .border-l-0{border-left-width:0}.nuvo-tailwind .border-l-4{border-left-width:4px}.nuvo-tailwind .border-r-0{border-right-width:0}.nuvo-tailwind .border-r-1{border-right-width:1px}.nuvo-tailwind .border-t-0{border-top-width:0}.nuvo-tailwind .border-t-1{border-top-width:1px}.nuvo-tailwind .border-dashed{border-style:dashed}.nuvo-tailwind .border-none{border-style:none}.nuvo-tailwind .border-blue-dark-50{--tw-border-opacity:1;border-color:rgb(239 243 249/var(--tw-border-opacity))}.nuvo-tailwind .border-blue-dark-800{--tw-border-opacity:1;border-color:rgb(40 64 103/var(--tw-border-opacity))}.nuvo-tailwind .border-blue-dark-900{--tw-border-opacity:1;border-color:rgb(22 35 56/var(--tw-border-opacity))}.nuvo-tailwind .border-blue-light-100{--tw-border-opacity:1;border-color:rgb(224 234 253/var(--tw-border-opacity))}.nuvo-tailwind .border-blue-light-50{--tw-border-opacity:1;border-color:rgb(245 248 254/var(--tw-border-opacity))}.nuvo-tailwind .border-danger{--tw-border-opacity:1;border-color:rgb(208 2 27/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-100{--tw-border-opacity:1;border-color:rgb(244 245 246/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-120{--tw-border-opacity:1;border-color:rgb(242 242 242/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-210{--tw-border-opacity:1;border-color:rgb(225 225 225/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-250{--tw-border-opacity:1;border-color:rgb(221 221 221/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-260{--tw-border-opacity:1;border-color:rgb(197 197 197/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-300{--tw-border-opacity:1;border-color:rgb(179 188 192/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-450{--tw-border-opacity:1;border-color:rgb(201 207 210/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-50{--tw-border-opacity:1;border-color:rgb(251 251 251/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-560{--tw-border-opacity:1;border-color:rgb(141 141 141/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-660{--tw-border-opacity:1;border-color:rgb(56 56 56/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-700{--tw-border-opacity:1;border-color:rgb(84 84 84/var(--tw-border-opacity))}.nuvo-tailwind .border-primary{--tw-border-opacity:1;border-color:rgb(13 39 55/var(--tw-border-opacity))}.nuvo-tailwind .border-red-510{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.nuvo-tailwind .border-salmon-500{--tw-border-opacity:1;border-color:rgb(237 112 112/var(--tw-border-opacity))}.nuvo-tailwind .border-transparent{border-color:transparent}.nuvo-tailwind .border-white{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.nuvo-tailwind .border-yellow-500{--tw-border-opacity:1;border-color:rgb(255 193 22/var(--tw-border-opacity))}.nuvo-tailwind .border-yellow-800{--tw-border-opacity:1;border-color:rgb(133 77 14/var(--tw-border-opacity))}.nuvo-tailwind .\\!bg-gray-120{--tw-bg-opacity:1!important;background-color:rgb(242 242 242/var(--tw-bg-opacity))!important}.nuvo-tailwind .\\!bg-transparent{background-color:transparent!important}.nuvo-tailwind .bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-dark-100{--tw-bg-opacity:1;background-color:rgb(208 219 237/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-dark-400{--tw-bg-opacity:1;background-color:rgb(115 148 200/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-dark-50{--tw-bg-opacity:1;background-color:rgb(239 243 249/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-dark-500{--tw-bg-opacity:1;background-color:rgb(84 124 188/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-dark-800{--tw-bg-opacity:1;background-color:rgb(40 64 103/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-light-100{--tw-bg-opacity:1;background-color:rgb(224 234 253/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-light-50{--tw-bg-opacity:1;background-color:rgb(245 248 254/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-light-500{--tw-bg-opacity:1;background-color:rgb(92 142 242/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-light-900{--tw-bg-opacity:1;background-color:rgb(8 37 97/var(--tw-bg-opacity))}.nuvo-tailwind .bg-danger-light{--tw-bg-opacity:1;background-color:rgb(250 229 232/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-100{--tw-bg-opacity:1;background-color:rgb(244 245 246/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-120{--tw-bg-opacity:1;background-color:rgb(242 242 242/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-150{--tw-bg-opacity:1;background-color:rgb(241 241 245/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-300{--tw-bg-opacity:1;background-color:rgb(179 188 192/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-450{--tw-bg-opacity:1;background-color:rgb(201 207 210/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-50{--tw-bg-opacity:1;background-color:rgb(251 251 251/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-560{--tw-bg-opacity:1;background-color:rgb(141 141 141/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-660{--tw-bg-opacity:1;background-color:rgb(56 56 56/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-700{--tw-bg-opacity:1;background-color:rgb(84 84 84/var(--tw-bg-opacity))}.nuvo-tailwind .bg-green-510{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity))}.nuvo-tailwind .bg-info-gray{--tw-bg-opacity:1;background-color:rgb(103 117 124/var(--tw-bg-opacity))}.nuvo-tailwind .bg-primary{--tw-bg-opacity:1;background-color:rgb(13 39 55/var(--tw-bg-opacity))}.nuvo-tailwind .bg-priority-bg{--tw-bg-opacity:1;background-color:rgb(249 249 249/var(--tw-bg-opacity))}.nuvo-tailwind .bg-red-510{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.nuvo-tailwind .bg-red-60{--tw-bg-opacity:1;background-color:rgb(252 242 243/var(--tw-bg-opacity))}.nuvo-tailwind .bg-salmon-100{--tw-bg-opacity:1;background-color:rgb(252 234 234/var(--tw-bg-opacity))}.nuvo-tailwind .bg-salmon-200{--tw-bg-opacity:1;background-color:rgb(250 212 212/var(--tw-bg-opacity))}.nuvo-tailwind .bg-salmon-500{--tw-bg-opacity:1;background-color:rgb(237 112 112/var(--tw-bg-opacity))}.nuvo-tailwind .bg-transparent{background-color:transparent}.nuvo-tailwind .bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.nuvo-tailwind .bg-yellow-200{--tw-bg-opacity:1;background-color:rgb(255 232 168/var(--tw-bg-opacity))}.nuvo-tailwind .bg-yellow-500{--tw-bg-opacity:1;background-color:rgb(255 193 22/var(--tw-bg-opacity))}.nuvo-tailwind .bg-opacity-40{--tw-bg-opacity:0.4}.nuvo-tailwind .bg-opacity-50{--tw-bg-opacity:0.5}.nuvo-tailwind .bg-opacity-60{--tw-bg-opacity:0.6}.nuvo-tailwind .bg-opacity-75{--tw-bg-opacity:0.75}.nuvo-tailwind .bg-contain{background-size:contain}.nuvo-tailwind .bg-center{background-position:50%}.nuvo-tailwind .bg-no-repeat{background-repeat:no-repeat}.nuvo-tailwind .object-contain{-o-object-fit:contain;object-fit:contain}.nuvo-tailwind .\\!p-0{padding:0!important}.nuvo-tailwind .p-1{padding:.25rem}.nuvo-tailwind .p-10{padding:2.5rem}.nuvo-tailwind .p-2{padding:.5rem}.nuvo-tailwind .p-2\\.5{padding:9.5px}.nuvo-tailwind .p-3{padding:.75rem}.nuvo-tailwind .p-4{padding:1rem}.nuvo-tailwind .p-6{padding:1.5rem}.nuvo-tailwind .p-8{padding:2rem}.nuvo-tailwind .\\!px-0{padding-left:0!important;padding-right:0!important}.nuvo-tailwind .\\!px-2{padding-left:.5rem!important;padding-right:.5rem!important}.nuvo-tailwind .\\!px-3{padding-left:.75rem!important;padding-right:.75rem!important}.nuvo-tailwind .\\!px-4{padding-left:1rem!important;padding-right:1rem!important}.nuvo-tailwind .\\!px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.nuvo-tailwind .\\!px-8{padding-left:2rem!important;padding-right:2rem!important}.nuvo-tailwind .px-0{padding-left:0;padding-right:0}.nuvo-tailwind .px-1{padding-left:.25rem;padding-right:.25rem}.nuvo-tailwind .px-1\\.5{padding-left:.375rem;padding-right:.375rem}.nuvo-tailwind .px-2{padding-left:.5rem;padding-right:.5rem}.nuvo-tailwind .px-2\\.5{padding-left:9.5px;padding-right:9.5px}.nuvo-tailwind .px-3{padding-left:.75rem;padding-right:.75rem}.nuvo-tailwind .px-4{padding-left:1rem;padding-right:1rem}.nuvo-tailwind .px-5{padding-left:1.25rem;padding-right:1.25rem}.nuvo-tailwind .px-6{padding-left:1.5rem;padding-right:1.5rem}.nuvo-tailwind .px-7{padding-left:1.75rem;padding-right:1.75rem}.nuvo-tailwind .px-8{padding-left:2rem;padding-right:2rem}.nuvo-tailwind .py-0{padding-bottom:0;padding-top:0}.nuvo-tailwind .py-0\\.5{padding-bottom:.125rem;padding-top:.125rem}.nuvo-tailwind .py-1{padding-bottom:.25rem;padding-top:.25rem}.nuvo-tailwind .py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.nuvo-tailwind .py-10px{padding-bottom:10px;padding-top:10px}.nuvo-tailwind .py-12{padding-bottom:3rem;padding-top:3rem}.nuvo-tailwind .py-2{padding-bottom:.5rem;padding-top:.5rem}.nuvo-tailwind .py-2\\.3{padding-bottom:6px;padding-top:6px}.nuvo-tailwind .py-2\\.5{padding-bottom:9.5px;padding-top:9.5px}.nuvo-tailwind .py-24{padding-bottom:6rem;padding-top:6rem}.nuvo-tailwind .py-3{padding-bottom:.75rem;padding-top:.75rem}.nuvo-tailwind .py-4{padding-bottom:1rem;padding-top:1rem}.nuvo-tailwind .py-5{padding-bottom:1.25rem;padding-top:1.25rem}.nuvo-tailwind .py-6{padding-bottom:1.5rem;padding-top:1.5rem}.nuvo-tailwind .py-7{padding-bottom:1.75rem;padding-top:1.75rem}.nuvo-tailwind .py-sm{padding-bottom:6px;padding-top:6px}.nuvo-tailwind .\\!pb-0{padding-bottom:0!important}.nuvo-tailwind .\\!pb-2{padding-bottom:.5rem!important}.nuvo-tailwind .\\!pb-3{padding-bottom:.75rem!important}.nuvo-tailwind .pb-0{padding-bottom:0}.nuvo-tailwind .pb-0\\.5{padding-bottom:.125rem}.nuvo-tailwind .pb-1{padding-bottom:.25rem}.nuvo-tailwind .pb-2{padding-bottom:.5rem}.nuvo-tailwind .pb-24{padding-bottom:6rem}.nuvo-tailwind .pb-3{padding-bottom:.75rem}.nuvo-tailwind .pb-32{padding-bottom:8rem}.nuvo-tailwind .pb-4{padding-bottom:1rem}.nuvo-tailwind .pb-4\\.5{padding-bottom:18px}.nuvo-tailwind .pb-6{padding-bottom:1.5rem}.nuvo-tailwind .pb-8{padding-bottom:2rem}.nuvo-tailwind .pl-0{padding-left:0}.nuvo-tailwind .pl-0\\.5{padding-left:.125rem}.nuvo-tailwind .pl-1{padding-left:.25rem}.nuvo-tailwind .pl-2{padding-left:.5rem}.nuvo-tailwind .pl-3{padding-left:.75rem}.nuvo-tailwind .pl-3\\.5{padding-left:.875rem}.nuvo-tailwind .pl-4{padding-left:1rem}.nuvo-tailwind .pl-4\\.5{padding-left:18px}.nuvo-tailwind .pl-8{padding-left:2rem}.nuvo-tailwind .pr-1{padding-right:.25rem}.nuvo-tailwind .pr-10{padding-right:2.5rem}.nuvo-tailwind .pr-12{padding-right:3rem}.nuvo-tailwind .pr-2{padding-right:.5rem}.nuvo-tailwind .pr-2\\.5{padding-right:9.5px}.nuvo-tailwind .pr-3{padding-right:.75rem}.nuvo-tailwind .pr-4{padding-right:1rem}.nuvo-tailwind .pr-5{padding-right:1.25rem}.nuvo-tailwind .pr-6{padding-right:1.5rem}.nuvo-tailwind .pr-7{padding-right:1.75rem}.nuvo-tailwind .pr-8{padding-right:2rem}.nuvo-tailwind .pt-0{padding-top:0}.nuvo-tailwind .pt-1{padding-top:.25rem}.nuvo-tailwind .pt-10{padding-top:2.5rem}.nuvo-tailwind .pt-2{padding-top:.5rem}.nuvo-tailwind .pt-22\\.5{padding-top:90px}.nuvo-tailwind .pt-3{padding-top:.75rem}.nuvo-tailwind .pt-4{padding-top:1rem}.nuvo-tailwind .pt-4\\.5{padding-top:18px}.nuvo-tailwind .pt-6{padding-top:1.5rem}.nuvo-tailwind .pt-8{padding-top:2rem}.nuvo-tailwind .text-left{text-align:left}.nuvo-tailwind .text-center{text-align:center}.nuvo-tailwind .text-right{text-align:right}.nuvo-tailwind .align-top{vertical-align:top}.nuvo-tailwind .align-middle{vertical-align:middle}.nuvo-tailwind .align-bottom{vertical-align:bottom}.nuvo-tailwind .\\!text-lg{font-size:1.125rem!important;line-height:1.75rem!important}.nuvo-tailwind .\\!text-sm{font-size:.875rem!important;line-height:1.25rem!important}.nuvo-tailwind .\\!text-xs{font-size:.75rem!important;line-height:1rem!important}.nuvo-tailwind .text-2\\.5xl{font-size:28px;line-height:34px}.nuvo-tailwind .text-2xl{font-size:1.5rem;line-height:2rem}.nuvo-tailwind .text-4\\.5xl{font-size:39px;line-height:47px}.nuvo-tailwind .text-base{font-size:16px;line-height:19px}.nuvo-tailwind .text-lg{font-size:1.125rem;line-height:1.75rem}.nuvo-tailwind .text-sbase{font-size:15px}.nuvo-tailwind .text-sm{font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .text-small{font-size:12px}.nuvo-tailwind .text-xl{font-size:1.25rem;line-height:1.75rem}.nuvo-tailwind .text-xs{font-size:.75rem;line-height:1rem}.nuvo-tailwind .text-xsmall{font-size:14px;line-height:17px}.nuvo-tailwind .text-xss{font-size:10px}.nuvo-tailwind .text-xssmall{font-size:13px;line-height:15px}.nuvo-tailwind .\\!font-normal{font-weight:400!important}.nuvo-tailwind .font-bold{font-weight:700}.nuvo-tailwind .font-light{font-weight:300}.nuvo-tailwind .font-medium{font-weight:500}.nuvo-tailwind .font-normal{font-weight:400}.nuvo-tailwind .font-semibold{font-weight:600}.nuvo-tailwind .uppercase{text-transform:uppercase}.nuvo-tailwind .lowercase{text-transform:lowercase}.nuvo-tailwind .capitalize{text-transform:capitalize}.nuvo-tailwind .italic{font-style:italic}.nuvo-tailwind .\\!leading-3{line-height:.75rem!important}.nuvo-tailwind .\\!leading-3\\.5{line-height:14px!important}.nuvo-tailwind .\\!leading-5{line-height:1.25rem!important}.nuvo-tailwind .\\!leading-5\\.5{line-height:17px!important}.nuvo-tailwind .leading-3{line-height:.75rem}.nuvo-tailwind .leading-3\\.5{line-height:14px}.nuvo-tailwind .leading-4{line-height:1rem}.nuvo-tailwind .leading-4\\.5{line-height:15px}.nuvo-tailwind .leading-5{line-height:1.25rem}.nuvo-tailwind .leading-5\\.5{line-height:17px}.nuvo-tailwind .leading-6{line-height:1.5rem}.nuvo-tailwind .leading-8{line-height:2rem}.nuvo-tailwind .leading-none{line-height:1}.nuvo-tailwind .tracking-wide{letter-spacing:.025em}.nuvo-tailwind .\\!text-gray-260{--tw-text-opacity:1!important;color:rgb(197 197 197/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-gray-50{--tw-text-opacity:1!important;color:rgb(251 251 251/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-gray-510{--tw-text-opacity:1!important;color:rgb(136 149 156/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-gray-560{--tw-text-opacity:1!important;color:rgb(141 141 141/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-neutral-600{--tw-text-opacity:1!important;color:rgb(113 113 113/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-neutral-gray{--tw-text-opacity:1!important;color:rgb(45 45 45/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-salmon-500{--tw-text-opacity:1!important;color:rgb(237 112 112/var(--tw-text-opacity))!important}.nuvo-tailwind .text-blue-dark-900{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity))}.nuvo-tailwind .text-blue-light-500{--tw-text-opacity:1;color:rgb(92 142 242/var(--tw-text-opacity))}.nuvo-tailwind .text-blue-light-600{--tw-text-opacity:1;color:rgb(53 115 239/var(--tw-text-opacity))}.nuvo-tailwind .text-danger{--tw-text-opacity:1;color:rgb(208 2 27/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-260{--tw-text-opacity:1;color:rgb(197 197 197/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-310{--tw-text-opacity:1;color:rgb(44 50 53/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-410{--tw-text-opacity:1;color:rgb(169 169 169/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-510{--tw-text-opacity:1;color:rgb(136 149 156/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-560{--tw-text-opacity:1;color:rgb(141 141 141/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-660{--tw-text-opacity:1;color:rgb(56 56 56/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-700{--tw-text-opacity:1;color:rgb(84 84 84/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-970{--tw-text-opacity:1;color:rgb(113 113 113/var(--tw-text-opacity))}.nuvo-tailwind .text-green-400{--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}.nuvo-tailwind .text-green-510{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.nuvo-tailwind .text-neutral-600{--tw-text-opacity:1;color:rgb(113 113 113/var(--tw-text-opacity))}.nuvo-tailwind .text-neutral-gray{--tw-text-opacity:1;color:rgb(45 45 45/var(--tw-text-opacity))}.nuvo-tailwind .text-primary{--tw-text-opacity:1;color:rgb(13 39 55/var(--tw-text-opacity))}.nuvo-tailwind .text-red-500,.nuvo-tailwind .text-red-510{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.nuvo-tailwind .text-salmon-50{--tw-text-opacity:1;color:rgb(254 248 248/var(--tw-text-opacity))}.nuvo-tailwind .text-salmon-500{--tw-text-opacity:1;color:rgb(237 112 112/var(--tw-text-opacity))}.nuvo-tailwind .text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.nuvo-tailwind .text-yellow-500{--tw-text-opacity:1;color:rgb(255 193 22/var(--tw-text-opacity))}.nuvo-tailwind .text-yellow-800{--tw-text-opacity:1;color:rgb(133 77 14/var(--tw-text-opacity))}.nuvo-tailwind .underline{text-decoration-line:underline}.nuvo-tailwind .placeholder-gray-410::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(169 169 169/var(--tw-placeholder-opacity))}.nuvo-tailwind .placeholder-gray-410::placeholder{--tw-placeholder-opacity:1;color:rgb(169 169 169/var(--tw-placeholder-opacity))}.nuvo-tailwind .placeholder-gray-560::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(141 141 141/var(--tw-placeholder-opacity))}.nuvo-tailwind .placeholder-gray-560::placeholder{--tw-placeholder-opacity:1;color:rgb(141 141 141/var(--tw-placeholder-opacity))}.nuvo-tailwind .\\!opacity-100{opacity:1!important}.nuvo-tailwind .opacity-0{opacity:0}.nuvo-tailwind .opacity-100{opacity:1}.nuvo-tailwind .opacity-20{opacity:.2}.nuvo-tailwind .opacity-40{opacity:.4}.nuvo-tailwind .opacity-50{opacity:.5}.nuvo-tailwind .shadow-card{--tw-shadow:0px 10px 20px rgba(33,75,134,.09);--tw-shadow-colored:0px 10px 20px var(--tw-shadow-color)}.nuvo-tailwind .shadow-card,.nuvo-tailwind .shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.nuvo-tailwind .shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.nuvo-tailwind .shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.nuvo-tailwind .shadow-none,.nuvo-tailwind .shadow-xl{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.nuvo-tailwind .shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color)}.nuvo-tailwind .outline-none{outline:2px solid transparent;outline-offset:2px}.nuvo-tailwind .outline{outline-style:solid}.nuvo-tailwind .ring-transparent{--tw-ring-color:transparent}.nuvo-tailwind .blur{--tw-blur:blur(8px)}.nuvo-tailwind .blur,.nuvo-tailwind .drop-shadow{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.nuvo-tailwind .drop-shadow{--tw-drop-shadow:drop-shadow(0 1px 2px rgba(0,0,0,.1)) drop-shadow(0 1px 1px rgba(0,0,0,.06))}.nuvo-tailwind .grayscale{--tw-grayscale:grayscale(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.nuvo-tailwind .\\!filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.nuvo-tailwind .filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.nuvo-tailwind .backdrop-filter{backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.nuvo-tailwind .transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .transition-width{transition-duration:.15s;transition-property:width;transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .duration-300{transition-duration:.3s}.nuvo-tailwind .ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .ease-linear{transition-timing-function:linear}.nuvo-tailwind .ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.nuvo-tailwind .will-change-auto{will-change:auto}.nuvo-tailwind .will-change-transform{will-change:transform}.nuvo-tailwind .last\\:rounded-b-medium:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.nuvo-tailwind .hover\\:border-blue-light-300:hover{--tw-border-opacity:1;border-color:rgb(163 191 248/var(--tw-border-opacity))}.nuvo-tailwind .hover\\:border-salmon-700:hover{--tw-border-opacity:1;border-color:rgb(186 23 23/var(--tw-border-opacity))}.nuvo-tailwind .hover\\:border-yellow-700:hover{--tw-border-opacity:1;border-color:rgb(161 98 7/var(--tw-border-opacity))}.nuvo-tailwind .hover\\:bg-blue-dark-50:hover{--tw-bg-opacity:1;background-color:rgb(239 243 249/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-blue-light-100:hover{--tw-bg-opacity:1;background-color:rgb(224 234 253/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-blue-light-200:hover{--tw-bg-opacity:1;background-color:rgb(194 213 250/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-blue-light-50:hover{--tw-bg-opacity:1;background-color:rgb(245 248 254/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-blue-light-700:hover{--tw-bg-opacity:1;background-color:rgb(17 82 213/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-blue-light-800:hover{--tw-bg-opacity:1;background-color:rgb(12 60 155/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-gray-110:hover{--tw-bg-opacity:1;background-color:rgb(245 245 245/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgb(251 251 251/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-gray-55:hover{--tw-bg-opacity:1;background-color:rgb(249 249 249/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:text-blue-dark-900:hover{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:text-blue-light-500:hover{--tw-text-opacity:1;color:rgb(92 142 242/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:text-blue-light-700:hover{--tw-text-opacity:1;color:rgb(17 82 213/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:text-gray-500:hover{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:text-gray-560:hover{--tw-text-opacity:1;color:rgb(141 141 141/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:text-gray-970:hover{--tw-text-opacity:1;color:rgb(113 113 113/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:opacity-100:hover{opacity:1}.nuvo-tailwind .focus\\:border-blue-dark-900:focus{--tw-border-opacity:1;border-color:rgb(22 35 56/var(--tw-border-opacity))}.nuvo-tailwind .focus\\:border-danger:focus{--tw-border-opacity:1;border-color:rgb(208 2 27/var(--tw-border-opacity))}.nuvo-tailwind .focus\\:border-primary:focus{--tw-border-opacity:1;border-color:rgb(13 39 55/var(--tw-border-opacity))}.nuvo-tailwind .focus\\:border-yellow-800:focus{--tw-border-opacity:1;border-color:rgb(133 77 14/var(--tw-border-opacity))}.nuvo-tailwind .focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.nuvo-tailwind .focus\\:ring-0:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.nuvo-tailwind .focus\\:ring-white:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.nuvo-tailwind .disabled\\:cursor-auto:disabled{cursor:auto}.nuvo-tailwind .disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.nuvo-tailwind .disabled\\:border-gray-260:disabled{--tw-border-opacity:1;border-color:rgb(197 197 197/var(--tw-border-opacity))}.nuvo-tailwind .disabled\\:border-gray-400:disabled{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}.nuvo-tailwind .disabled\\:bg-gray-120:disabled{--tw-bg-opacity:1;background-color:rgb(242 242 242/var(--tw-bg-opacity))}.nuvo-tailwind .disabled\\:bg-gray-50:disabled{--tw-bg-opacity:1;background-color:rgb(251 251 251/var(--tw-bg-opacity))}.nuvo-tailwind .disabled\\:bg-transparent:disabled{background-color:transparent}.nuvo-tailwind .disabled\\:text-gray-260:disabled{--tw-text-opacity:1;color:rgb(197 197 197/var(--tw-text-opacity))}.nuvo-tailwind .disabled\\:text-gray-560:disabled{--tw-text-opacity:1;color:rgb(141 141 141/var(--tw-text-opacity))}.nuvo-tailwind .disabled\\:opacity-70:disabled{opacity:.7}.nuvo-tailwind .disabled\\:opacity-75:disabled{opacity:.75}.nuvo-tailwind .disabled\\:opacity-80:disabled{opacity:.8}.nuvo-tailwind .group:hover .group-hover\\:visible{visibility:visible}.nuvo-tailwind :is(.dark .dark\\:bg-gray-700){--tw-bg-opacity:1;background-color:rgb(84 84 84/var(--tw-bg-opacity))}@media (min-width:640px){.nuvo-tailwind .sm\\:mt-0{margin-top:0}.nuvo-tailwind .sm\\:\\!max-w-440{max-width:440px!important}.nuvo-tailwind .sm\\:\\!max-w-480{max-width:480px!important}.nuvo-tailwind .sm\\:max-w-1{max-width:.25rem}.nuvo-tailwind .sm\\:max-w-1\\.7xl{max-width:640px}.nuvo-tailwind .sm\\:max-w-505{max-width:505px}.nuvo-tailwind .sm\\:max-w-xl{max-width:36rem}.nuvo-tailwind .sm\\:p-0{padding:0}.nuvo-tailwind .sm\\:align-middle{vertical-align:middle}}@media (min-width:768px){.nuvo-tailwind .md\\:mx-4{margin-left:1rem;margin-right:1rem}.nuvo-tailwind .md\\:mb-0{margin-bottom:0}.nuvo-tailwind .md\\:mt-0{margin-top:0}.nuvo-tailwind .md\\:block{display:block}.nuvo-tailwind .md\\:max-w-355{max-width:355px}.nuvo-tailwind .md\\:flex-wrap{flex-wrap:wrap}.nuvo-tailwind .md\\:px-3{padding-left:.75rem;padding-right:.75rem}.nuvo-tailwind .md\\:align-top{vertical-align:top}.nuvo-tailwind .md\\:align-middle{vertical-align:middle}.nuvo-tailwind .md\\:align-bottom{vertical-align:bottom}.nuvo-tailwind .md\\:text-sm{font-size:.875rem;line-height:1.25rem}}@media (min-width:1024px){.nuvo-tailwind .lg\\:-mx-8{margin-left:-2rem;margin-right:-2rem}.nuvo-tailwind .lg\\:flex{display:flex}.nuvo-tailwind .lg\\:min-w-50{min-width:182px}.nuvo-tailwind .lg\\:flex-row{flex-direction:row}.nuvo-tailwind .lg\\:flex-nowrap{flex-wrap:nowrap}.nuvo-tailwind .lg\\:items-center{align-items:center}.nuvo-tailwind .lg\\:justify-center{justify-content:center}.nuvo-tailwind .lg\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.nuvo-tailwind .lg\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.nuvo-tailwind .lg\\:\\!px-0{padding-left:0!important;padding-right:0!important}.nuvo-tailwind .lg\\:px-8{padding-left:2rem;padding-right:2rem}}@media (min-width:375px){.nuvo-tailwind .xss\\:mr-4{margin-right:1rem}.nuvo-tailwind .xss\\:mt-0{margin-top:0}.nuvo-tailwind .xss\\:flex{display:flex}.nuvo-tailwind .xss\\:pb-2{padding-bottom:.5rem}.nuvo-tailwind .xss\\:pb-7{padding-bottom:1.75rem}}@media (min-width:468px){.nuvo-tailwind .xsmd\\:w-auto{width:auto}}@media (min-width:740px){.nuvo-tailwind .xssmd\\:w-14{width:3.5rem}.nuvo-tailwind .xssmd\\:pl-4{padding-left:1rem}}@media (min-width:820px){.nuvo-tailwind .smmd\\:right-5{right:1.25rem}.nuvo-tailwind .smmd\\:top-7{top:1.75rem}.nuvo-tailwind .smmd\\:pr-14{padding-right:3.5rem}}@media (min-width:885px){.nuvo-tailwind .smd\\:order-1{order:1}.nuvo-tailwind .smd\\:flex-row{flex-direction:row}}@media (min-width:990px){.nuvo-tailwind .large\\:grid{display:grid}.nuvo-tailwind .large\\:min-w-100{min-width:400px}.nuvo-tailwind .large\\:pb-0{padding-bottom:0}.nuvo-tailwind .large\\:pb-10{padding-bottom:2.5rem}.nuvo-tailwind .large\\:pb-2{padding-bottom:.5rem}.nuvo-tailwind .large\\:pl-0{padding-left:0}.nuvo-tailwind .large\\:pt-0{padding-top:0}}@media (min-width:1190px){.nuvo-tailwind .mmd\\:right-7{right:1.75rem}.nuvo-tailwind .mmd\\:top-7{top:1.75rem}.nuvo-tailwind .mmd\\:mb-3{margin-bottom:.75rem}.nuvo-tailwind .mmd\\:pr-14{padding-right:3.5rem}}@media (min-width:1440px){.nuvo-tailwind .\\33xl\\:py-2{padding-bottom:.5rem;padding-top:.5rem}}@media (min-width:1441px){.nuvo-tailwind .min3xl\\:p-5{padding:1.25rem}}@media (min-width:1920px){.nuvo-tailwind .\\34xl\\:max-h-72{max-height:18rem}}.nuvo-tailwind *{-webkit-touch-callout:none;outline:none;scrollbar-color:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none}.nuvo-tailwind input,.nuvo-tailwind textarea{-webkit-user-select:text;-moz-user-select:text;user-select:text}.nuvo-tailwind .loader{animation:spin 1.2s linear infinite;border:16px solid rgba(92,142,242,.3);border-radius:50%;border-top-color:#5c8ef2;height:100px;margin:auto;position:relative;top:16px;width:100px}.nuvo-tailwind .loader:before{--rad:radial-gradient(circle 7.5px,#5c8ef2 99%,transparent 100%);background:var(--rad) left -17px top 0,var(--rad) right -17px top 0;background-size:224% 100%;content:"";height:19px;left:-4px;position:absolute;top:-4.9px;width:111%}@keyframes spin{to{transform:rotate(1turn)}}.nuvo-tailwind .circle-loader{border:3px solid;border-radius:50%;display:inline-block;height:20px;margin:auto;position:relative;width:20px}.nuvo-tailwind .animate-loader,.nuvo-tailwind .circle-loader{animation:spin 1.2s linear infinite}@keyframes progress{to{transform:translateX(100%)}}.nuvo-tailwind .translate-by-keyframe{animation:progress 1.5s linear forwards}`));document.head.appendChild(vy);var by=document.createElement("style");by.type="text/css";by.appendChild(document.createTextNode(".nuvo-tailwind .dropdown-scroll .simplebar-scrollbar{height:5px;top:0}.nuvo-tailwind .dropdown-scroll .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .dropdown-scroll .simplebar-track{background-color:#f4f4f4;border-radius:60px;pointer-events:auto}.nuvo-tailwind .dropdown-scroll .simplebar-track>.simplebar-scrollbar:before{background-color:#b9b9b9;border-radius:60px;opacity:1!important}.nuvo-tailwind .dropdown-scroll .simplebar-track.simplebar-vertical{bottom:8px;top:8px;transform:translateX(-3px);width:5px}.nuvo-tailwind .dropdown-scroll .simplebar-track.simplebar-vertical .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .dropdown-scroll .simplebar-track.simplebar-horizontal{height:5px;transform:translateY(5px)}.nuvo-tailwind .dropdown-scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar{height:5px;top:8px}.nuvo-tailwind .dropdown-scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{inset:0}"));document.head.appendChild(by);var wy=document.createElement("style");wy.type="text/css";wy.appendChild(document.createTextNode(".nuvo-tailwind #review-entries-table{height:100%}.nuvo-tailwind .handsontable:not(.htHorizontallyScrollableByWindow) .ht_master .wtHolder,.nuvo-tailwind .handsontable:not(.htVerticallyScrollableByWindow) .ht_master .wtHolder{background:inherit}.nuvo-tailwind .data-review .handsontable{color:var(--globals-text-color);font-family:var(--globals-font-family)}.nuvo-tailwind .data-review .handsontable:not(.htHorizontallyScrollableByWindow) .ht_master .wtHolder,.nuvo-tailwind .data-review .handsontable:not(.htVerticallyScrollableByWindow) .ht_master .wtHolder{background:inherit}.nuvo-tailwind .data-review .handsontable tbody tr th.ht__active_highlight,.nuvo-tailwind .data-review .handsontable tbody tr.ht__row_odd th.ht__active_highlight{box-shadow:inherit!important;color:inherit!important}.nuvo-tailwind .data-review .handsontable thead th .relative{height:100%;padding:0!important}.nuvo-tailwind .data-review .handsontable thead th .colHeader{display:flex;flex-direction:column;height:100%;width:100%}.nuvo-tailwind .data-review .handsontable thead th .colHeader .title-header{align-items:center;display:flex;flex:1 1 0%;justify-items:flex-start;position:relative;width:auto}.nuvo-tailwind .data-review .handsontable thead tr th:first-child{position:relative}.nuvo-tailwind .data-review .handsontable thead tr th:first-child:before{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(201 207 210/var(--tw-bg-opacity));border-top-width:1px;bottom:0;color:rgb(44 50 53/var(--tw-text-opacity));font-size:.875rem;font-weight:400;height:33px;left:0;line-height:1.25rem;line-height:2rem;position:absolute;right:0;text-align:center;z-index:10}.nuvo-tailwind .data-review .handsontable thead th .colHeader .example-header{border-top-width:1px;box-sizing:border-box;flex-shrink:0;height:33px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.nuvo-tailwind .data-review .handsontable .htAutocomplete{--tw-border-opacity:1;border-color:rgb(221 221 221/var(--tw-border-opacity));position:relative}.nuvo-tailwind .data-review .handsontable .htAutocompleteArrow{height:100%!important;max-height:28px;max-width:calc(100% - 16px);width:100%!important}.nuvo-tailwind .data-review .handsontable .htAutocompleteArrow,.nuvo-tailwind .data-review .handsontable .htAutocompleteArrow:hover{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity))}.nuvo-tailwind .data-review .handsontable td.ingestro-cell-error{--ht-row-cell-odd-background-color:#fff1f0;--ht-row-cell-even-background-color:#fff1f0}.nuvo-tailwind .data-review .handsontable td.ingestro-cell-warning{--ht-row-cell-odd-background-color:#fffbe6;--ht-row-cell-even-background-color:#fffbe6}.nuvo-tailwind .data-review .handsontable td.ingestro-cell-info{--ht-row-cell-odd-background-color:#f0f9ff;--ht-row-cell-even-background-color:#f0f9ff}.nuvo-tailwind .data-review .handsontable td.ingestro-cell-disabled{--ht-row-cell-odd-background-color:#fafafa;--ht-row-cell-even-background-color:#fafafa}.nuvo-tailwind .custom-dropdown-boolean-renderer,.nuvo-tailwind .custom-dropdown-renderer{padding-right:16px}.nuvo-tailwind .custom-dropdown-boolean-renderer-text-element,.nuvo-tailwind .custom-dropdown-renderer-text-element{background-color:transparent!important;padding-top:4px}.nuvo-tailwind .data-review .hide-arrow-btn{align-items:center;background-color:#fff;border:1px solid #f2f2f2;border-bottom-left-radius:4px;border-right-width:0;border-top-left-radius:4px;cursor:pointer;display:flex;height:12px;justify-content:center;position:absolute;right:0;top:50%;transform:translateY(-50%);width:12px}.nuvo-tailwind .data-review .hide-arrow-btn.hide-icon-left{left:0;right:auto;transform:translateY(-50%) rotate(180deg)}.nuvo-tailwind .data-review .handsontable td>div.custom-dropdown-boolean-renderer>.close-icon *,.nuvo-tailwind .data-review .handsontable td>div.custom-dropdown-renderer>.close-icon *{color:#c5c5c5}.nuvo-tailwind .data-review .handsontable td.default-cell.current.highlight>div>.arrow-down-icon,.nuvo-tailwind .data-review .handsontable td.error-cell.current.highlight>div>.arrow-down-icon,.nuvo-tailwind .data-review .handsontable td.info-cell.current.highlight>div>.arrow-down-icon,.nuvo-tailwind .data-review .handsontable td.warning-cell.current.highlight>div>.arrow-down-icon{padding-left:0!important}.nuvo-tailwind .data-review .handsontable td.disabled-cell #dropdown-arrow-icon svg{--tw-text-opacity:1;color:rgb(197 197 197/var(--tw-text-opacity))}.nuvo-tailwind .data-review .handsontable td.error-cell #dropdown-arrow-icon svg{--tw-text-opacity:1;color:rgb(237 112 112/var(--tw-text-opacity))}.nuvo-tailwind .data-review .handsontable td.warning-cell #dropdown-arrow-icon svg{--tw-text-opacity:1;color:rgb(255 193 22/var(--tw-text-opacity))}.nuvo-tailwind .data-review .handsontable td.default-cell #dropdown-arrow-icon,.nuvo-tailwind .data-review .handsontable td.default-cell #dropdown-arrow-icon svg{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity))}.nuvo-tailwind .data-review .handsontable .ht_clone_top_inline_start_corner{z-index:10}.nuvo-tailwind .data-review .ht_master.handsontable .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .data-review .ht_master.handsontable .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;width:.375rem!important}.nuvo-tailwind .data-review .ht_clone_inline_start .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .data-review .ht_master.handsontable .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .data-review::-webkit-scrollbar-thumb{background-clip:content-box;background-color:#818b99;border:0 solid transparent;border-radius:9px}.nuvo-tailwind .data-review .ht_clone_inline_start .wtHolder .wtHider{box-sizing:border-box!important;margin-bottom:2rem!important}.nuvo-tailwind .data-review.not_firefox .ht_clone_top,.nuvo-tailwind .data-review.not_firefox .ht_clone_top .wtHolder{width:100%!important}.nuvo-tailwind .data-review.not_firefox .add-space-scrollbar-w .ht_clone_top{width:calc(100% - 8px)!important}.nuvo-tailwind .data-review.not_firefox .ht_clone_inline_start.handsontable .wtHolder,.nuvo-tailwind .data-review.not_firefox .ht_clone_inline_start:not(.handsontableInputHolder){height:100%!important}.nuvo-tailwind .data-review.not_firefox .add-space-scrollbar-h .ht_clone_inline_start:not(.handsontableInputHolder){height:calc(100% - 8px)!important}.nuvo-tailwind .data-review .ht_clone_inline_start thead tr th,.nuvo-tailwind .data-review .ht_master thead tr th{border-top-width:0!important}.nuvo-tailwind .data-review .hide-border-last-column .ht_clone_top td:last-child,.nuvo-tailwind .data-review .hide-border-last-column .ht_clone_top th:last-child,.nuvo-tailwind .data-review div.hide-border-last-column .handsontable.ht_master tr td:last-child{border-right-color:transparent!important;border-right-width:0!important}.nuvo-tailwind .data-review .wtBorder.fill{background:#4b89ff!important}.nuvo-tailwind .data-review .ht_clone_inline_start th>div.relative{align-items:center;display:flex;height:100%;justify-content:center}.nuvo-tailwind .data-review .ht_clone_inline_start.handsontable td,.nuvo-tailwind .data-review .ht_master.handsontable td{padding:0 12px!important}.nuvo-tailwind .data-review .handsontable{--ht-cell-vertical-padding:0px;--ht-line-height:33px}@media only screen and (max-width:1440px){.nuvo-tailwind .data-review .handsontable{--ht-cell-vertical-padding:0px;--ht-line-height:23px}.nuvo-tailwind .data-review:not(.enable-example) .handsontable .htCore tr:first-child th{height:24px!important}.nuvo-tailwind .data-review .handsontable thead tr th:first-child:before{border-top-width:1px;height:23px!important;line-height:23px!important}.nuvo-tailwind .data-review .handsontable thead th .colHeader .example-header{height:23px!important;line-height:23px!important}.nuvo-tailwind .custom-dropdown-boolean-renderer-text-element,.nuvo-tailwind .custom-dropdown-renderer-text-element{padding-top:0}}@media only screen and (min-width:1441px){.nuvo-tailwind .data-review:not(.enable-example) .ht_clone_inline_start.ht_clone_left.handsontable tr th{height:34px!important}}.nuvo-tailwind .data-review .handsontable th .row-header-number{display:inline}.nuvo-tailwind .data-review .handsontable th .relative .rowHeader{width:100%}.nuvo-tailwind .data-review .nuvo-add-row-button{align-items:center;cursor:pointer;display:flex;justify-content:center;width:100%}.nuvo-tailwind .data-review .nuvo-add-row-button.nuvo-add-row-button-disabled{cursor:not-allowed}.nuvo-tailwind .data-review .nuvo-custom-add-column-button{cursor:pointer}.nuvo-tailwind .data-review .row-header-checkbox{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));box-shadow:none;cursor:pointer;display:none}.nuvo-tailwind .data-review .row-header-checkbox:checked{--tw-bg-opacity:1;background-color:rgb(8 37 97/var(--tw-bg-opacity))}.nuvo-tailwind .data-review .handsontable th.hover-row .row-header-number{display:none}.nuvo-tailwind .data-review .handsontable th.checked-row .row-header-checkbox,.nuvo-tailwind .data-review .handsontable th.hover-row .row-header-checkbox{display:block}.nuvo-tailwind .data-review .handsontable th.checked-row .row-header-number{display:none}.nuvo-tailwind .data-review .check-all-checkbox{--tw-bg-opacity:1;--tw-border-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));border-color:rgb(197 197 197/var(--tw-border-opacity));border-radius:4px;cursor:pointer;height:1rem!important;width:1rem!important}.nuvo-tailwind .data-review .check-all-checkbox:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);outline:2px solid transparent;outline-offset:2px}.nuvo-tailwind .data-review .check-all-checkbox{box-shadow:none!important}.nuvo-tailwind .data-review .check-all-checkbox:indeterminate{--tw-border-opacity:1;border-color:rgb(197 197 197/var(--tw-border-opacity))}.nuvo-tailwind .data-review .check-all-checkbox:indeterminate{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.nuvo-tailwind .data-review .check-all-checkbox:checked{--tw-bg-opacity:1;background-color:rgb(8 37 97/var(--tw-bg-opacity));border-color:transparent}.nuvo-tailwind .data-review .handsontable thead th .colHeader .context-menu-button{cursor:pointer}.nuvo-tailwind .data-review .handsontable .columnSorting:not(.indicatorDisabled).sortAction{max-width:100%!important;min-width:auto!important;padding-inline-end:0!important;padding-inline-start:0!important}.nuvo-tailwind .data-review .handsontable .columnSorting.sortAction:hover{cursor:auto;text-decoration:initial}.nuvo-tailwind .data-review .handsontable .columnSorting.sortAction #text-title:hover{cursor:var(--text-header-pointer);-webkit-text-decoration:var(--text-header-decoration);text-decoration:var(--text-header-decoration)}.nuvo-tailwind .data-review .handsontable .columnSorting.sortAction .sort-loader{display:none}.nuvo-tailwind .data-review .handsontable .sort-loading .columnSorting.sortAction .sort-loader{display:block}.nuvo-tailwind .data-review .handsontable .sort-loading .columnSorting.sortAction .context-menu-button{display:none}.nuvo-tailwind .data-review .handsontable .header-circle-loader{animation:spin 1.2s linear infinite;border-radius:50%;border-style:solid;border-width:3px;display:inline-block;flex-shrink:0;height:13px;margin-left:1px;position:relative;top:2px;width:13px}.nuvo-tailwind .data-review .ht_clone_inline_start .wtHolder .htCore{box-shadow:none}.nuvo-tailwind .filter-value-list-scroll .simplebar-scrollbar{height:5px;top:0}.nuvo-tailwind .filter-value-list-scroll .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .filter-value-list-scroll .simplebar-track{background-color:#f4f4f4;border-radius:60px;pointer-events:auto}.nuvo-tailwind .filter-value-list-scroll .simplebar-track>.simplebar-scrollbar:before{background-color:#b9b9b9;border-radius:60px;opacity:1!important}.nuvo-tailwind .filter-value-list-scroll .simplebar-track.simplebar-vertical{bottom:0;top:0;transform:translateX(-8px);width:4px}.nuvo-tailwind .filter-value-list-scroll .simplebar-track.simplebar-vertical .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .filter-value-list-scroll .simplebar-track.simplebar-horizontal{height:5px;transform:translateY(5px)}.nuvo-tailwind .filter-value-list-scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar{height:5px;top:0}.nuvo-tailwind .filter-value-list-scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track .simplebar-scrollbar{height:5px;top:0}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track{background-color:#f4f4f4;border-radius:60px;pointer-events:auto}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track>.simplebar-scrollbar:before{background-color:#b9b9b9;border-radius:60px;opacity:1!important}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track.simplebar-vertical{bottom:6px;top:6px;transform:translateX(-4px);width:5px}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track.simplebar-horizontal{height:5px;transform:translateY(5px)}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track.simplebar-horizontal .simplebar-scrollbar{height:5px;top:0}.nuvo-tailwind .context-menu-scroll>div .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{inset:0}"));document.head.appendChild(wy);var yy=document.createElement("style");yy.type="text/css";yy.appendChild(document.createTextNode(".nuvo-tailwind .handsontable{--tw-text-opacity:1;color:rgb(56 56 56/var(--tw-text-opacity));font-family:var(--globals-font-family)}.nuvo-tailwind .handsontable .htDimmed,.nuvo-tailwind .handsontable td.htDimmed{color:#162338}.nuvo-tailwind .ht_clone_top{z-index:20!important}.nuvo-tailwind .ht_clone_inline_start:not(.handsontableInputHolder){z-index:0!important}.nuvo-tailwind .ht_clone_top_inline_start_corner{z-index:20!important}.nuvo-tailwind .ht_clone_top .ht__highlight{--tw-bg-opacity:1!important;background-color:rgb(251 251 251/var(--tw-bg-opacity))!important}.nuvo-tailwind .ht_clone_top_inline_start_corner div.wtHolder .htCore,.nuvo-tailwind col.rowHeader{width:60px!important}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder .wtHider div.wtSpreader .htCore tbody tr th{align-items:center;display:flex;font-size:.875rem;justify-content:center;line-height:1.25rem}.nuvo-tailwind .spread-data-sheet .handsontable.wt-full-width .ht_master.handsontable .wtHider,.nuvo-tailwind .spread-data-sheet .handsontable.wt-full-width .ht_master.handsontable .wtHider .wtSpreader{width:100%!important}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder .wtHider div.wtSpreader .htCore tbody tr th div{align-items:center;display:flex;height:31px!important;justify-content:center;padding-bottom:0;padding-top:0;text-align:center}.nuvo-tailwind .ht_clone_inline_start .wtHolder table{box-shadow:2px 0 5px -2px hsla(0,0%,53%,.3)}.nuvo-tailwind .wtBorder.corner{display:none}.nuvo-tailwind thead th:first-child{--tw-bg-opacity:1;background-color:rgb(251 251 251/var(--tw-bg-opacity))}.nuvo-tailwind .handsontable td{border-color:#ddd;font-size:.875rem;line-height:1.25rem;overflow:hidden!important;padding:0!important;text-overflow:ellipsis!important;white-space:nowrap!important}.nuvo-tailwind .handsontable thead th:first-child{border-bottom:1px solid #ddd}.nuvo-tailwind .ht_clone_top th{--tw-border-opacity:1;border-color:rgb(221 221 221/var(--tw-border-opacity))}.nuvo-tailwind .ht_clone_top .wtHolder .wtHider .wtSpreader .htCore th:first-child,.nuvo-tailwind .ht_clone_top_inline_start_corner .wtHolder .wtHider .wtSpreader .htCore th{border-top:none!important}.nuvo-tailwind .ht_clone_top .wtHolder .wtHider .wtSpreader .htCore th:first-child,.nuvo-tailwind .ht_clone_top_inline_start_corner .wtHolder .wtHider .wtSpreader .htCore th:first-child{border-left:none!important;padding-top:1px}.nuvo-tailwind .ht_clone_top .wtHolder .wtHider .wtSpreader .htCore th{border-top:none!important}.nuvo-tailwind .ht_clone_inline_start .wtHolder .wtHider .htCore th{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));border-left:none!important;border-color:rgb(221 221 221/var(--tw-border-opacity))}.nuvo-tailwind .ht_master .wtHolder .wtHider .htCore th{border-left:none!important;padding-left:1px}.nuvo-tailwind td.default-cell.currentRow{--tw-bg-opacity:1!important;background-color:rgb(239 243 249/var(--tw-bg-opacity))!important}.nuvo-tailwind .spread-data-sheet #hot-display-license-info{display:none}.nuvo-tailwind .spread-data-sheet .handsontable{font-family:var(--globals-font-family)}.nuvo-tailwind .spread-data-sheet .handsontable td .ht-cell{padding:0 16px}.nuvo-tailwind .spread-data-sheet .handsontable td{align-items:center;border-color:#ddd;padding:0 16px!important;text-align:left!important}.nuvo-tailwind .spread-data-sheet .handsontable .hide-border-last-row .htCore tr:last-child td{border-bottom-width:0}.nuvo-tailwind .spread-data-sheet .handsontable .hide-border-last-row .ht_clone_inline_start tr:last-child th{border-bottom:transparent}.nuvo-tailwind .spread-data-sheet .handsontable .ht_master .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .spread-data-sheet .handsontable .ht_master .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;width:.25rem!important}.nuvo-tailwind .spread-data-sheet .handsontable .ht_master .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .spread-data-sheet ::-webkit-scrollbar-thumb{background-clip:content-box;background-color:#818b99;border:0 solid transparent;border-radius:9px}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;margin-right:.5rem!important}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder .wtHider{box-sizing:border-box!important;margin-bottom:2rem!important}.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder,.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .htCore,.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtHider,.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtSpreader,.nuvo-tailwind .spread-data-sheet.not_firefox .ht_clone_top{width:100%!important}.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top{width:calc(100% - 8px)!important}.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top .wtHolder{width:100%!important}.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable .ht_clone_inline_start,.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable .ht_clone_inline_start .wtHolder{height:100%!important}.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start,.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start .wtHolder{height:calc(100% - 4px)!important}.nuvo-tailwind .spread-data-sheet #hotInstance{height:100%}.nuvo-tailwind .spread-data-sheet #hotInstance .ht_clone_inline_start td,.nuvo-tailwind .spread-data-sheet #hotInstance .ht_clone_top_inline_start_corner{box-shadow:2px 0 5px -2px hsla(0,0%,53%,.3)}.nuvo-tailwind .spread-data-sheet .hide-border-last-column .ht_clone_top td:last-child,.nuvo-tailwind .spread-data-sheet .hide-border-last-column .ht_clone_top th:last-child,.nuvo-tailwind .spread-data-sheet div.hide-border-last-column .handsontable.ht_master tr td:last-child{border-right-color:transparent!important;border-right-width:0!important}.nuvo-tailwind .spread-data-sheet tr td.default-cell,.nuvo-tailwind .spread-data-sheet tr td.hover-row{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity));cursor:pointer;font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .spread-data-sheet.read-only tr td.default-cell{--tw-text-opacity:1;color:rgb(141 141 141/var(--tw-text-opacity))}.nuvo-tailwind .spread-data-sheet.read-only tr td{cursor:auto!important}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder .wtHider div.wtSpreader .htCore tbody tr th{text-indent:-1px}.nuvo-tailwind .spread-data-sheet .ht_left .wtHolder .wtSpreader,.nuvo-tailwind .spread-data-sheet .ht_master .wtHolder .wtSpreader table{width:100%}.nuvo-tailwind .spread-data-sheet tr .hover-row,.nuvo-tailwind .spread-data-sheet tr .hover-selected-row,.nuvo-tailwind .spread-data-sheet tr .selecting-row{cursor:pointer;font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .spread-data-sheet tr td div{box-sizing:border-box;padding-top:7px}.nuvo-tailwind .spread-data-sheet .handsontable tr td.selecting-row-and-hovering.selecting-row{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity));cursor:pointer}.nuvo-tailwind .sheet-preview .handsontable{font-family:var(--globals-font-family)}.nuvo-tailwind .sheet-preview .handsontable td .ht-cell{padding:0 16px}.nuvo-tailwind .sheet-preview .handsontable td{align-items:center;border-color:#ddd;padding:0 16px!important;text-align:left!important}.nuvo-tailwind .sheet-preview .handsontable .hide-border-last-row .htCore tr:last-child td{border-bottom-width:0}.nuvo-tailwind .sheet-preview .handsontable .hide-border-last-row .ht_clone_inline_start tr:last-child th{border-bottom:transparent}.nuvo-tailwind .sheet-preview .handsontable .ht_master .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .sheet-preview .handsontable .ht_master .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;width:.25rem!important}.nuvo-tailwind .sheet-preview .handsontable .ht_master .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .sheet-preview ::-webkit-scrollbar-thumb{background-clip:content-box;background-color:#818b99;border:0 solid transparent;border-radius:9px}.nuvo-tailwind .sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;margin-right:.5rem!important}.nuvo-tailwind .sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .sheet-preview .ht_clone_inline_start .wtHolder .wtHider{box-sizing:border-box!important;margin-bottom:2rem!important}.nuvo-tailwind .sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder,.nuvo-tailwind .sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .htCore,.nuvo-tailwind .sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtHider,.nuvo-tailwind .sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtSpreader,.nuvo-tailwind .sheet-preview.not_firefox .ht_clone_top{width:100%!important}.nuvo-tailwind .sheet-preview.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top{width:calc(100% - 8px)!important}.nuvo-tailwind .sheet-preview.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top .wtHolder{width:100%!important}.nuvo-tailwind .sheet-preview.not_firefox .handsontable .ht_clone_inline_start,.nuvo-tailwind .sheet-preview.not_firefox .handsontable .ht_clone_inline_start .wtHolder{height:100%!important}.nuvo-tailwind .sheet-preview.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start,.nuvo-tailwind .sheet-preview.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start .wtHolder{height:calc(100% - 4px)!important}.nuvo-tailwind .sheet-preview #hotInstance{height:100%}.nuvo-tailwind .sheet-preview #hotInstance .ht_clone_inline_start td,.nuvo-tailwind .sheet-preview #hotInstance .ht_clone_top_inline_start_corner{box-shadow:2px 0 5px -2px hsla(0,0%,53%,.3)}.nuvo-tailwind .sheet-preview .hide-border-last-column .ht_clone_top td:last-child,.nuvo-tailwind .sheet-preview .hide-border-last-column .ht_clone_top th:last-child,.nuvo-tailwind .sheet-preview div.hide-border-last-column .handsontable.ht_master tr td:last-child{border-right-color:transparent!important;border-right-width:0!important}.nuvo-tailwind .sheet-preview tr td.default-cell,.nuvo-tailwind .sheet-preview tr td.hover-row{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity));cursor:pointer;font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .sheet-preview.read-only tr td.default-cell{--tw-text-opacity:1;color:rgb(141 141 141/var(--tw-text-opacity))}.nuvo-tailwind .sheet-preview.read-only tr td{cursor:auto!important}.nuvo-tailwind .sheet-preview .ht_clone_inline_start .wtHolder .wtHider div.wtSpreader .htCore tbody tr th{text-indent:-1px}.nuvo-tailwind .sheet-preview .ht_left .wtHolder .wtSpreader,.nuvo-tailwind .sheet-preview .ht_master .wtHolder .wtSpreader table{width:100%}.nuvo-tailwind .sheet-preview tr .hover-row,.nuvo-tailwind .sheet-preview tr .hover-selected-row,.nuvo-tailwind .sheet-preview tr .selecting-row{cursor:pointer;font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .sheet-preview tr td div{box-sizing:border-box;padding-top:7px}.nuvo-tailwind .sheet-preview .handsontable tr td.selecting-row-and-hovering.selecting-row{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity));cursor:pointer}.nuvo-tailwind .sheet-preview .handsontable.wt-full-width .ht_master.handsontable .wtHider,.nuvo-tailwind .sheet-preview .handsontable.wt-full-width .ht_master.handsontable .wtHider .wtSpreader{width:100%!important}.nuvo-tailwind .join-sheet-preview #hot-display-license-info,.nuvo-tailwind .join-sheet-preview .handsontable .htBorders{display:none}.nuvo-tailwind .join-sheet-preview .handsontable{font-family:var(--globals-font-family)}.nuvo-tailwind .join-sheet-preview .handsontable td .ht-cell{padding:0 16px}.nuvo-tailwind .join-sheet-preview .handsontable td{align-items:center;border-color:#ddd;padding:0 16px!important;text-align:left!important}.nuvo-tailwind .join-sheet-preview .handsontable .hide-border-last-row .htCore tr:last-child td{border-bottom-width:0}.nuvo-tailwind .join-sheet-preview .handsontable .hide-border-last-row .ht_clone_inline_start tr:last-child th{border-bottom:transparent}.nuvo-tailwind .join-sheet-preview .handsontable .ht_master .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .join-sheet-preview .handsontable .ht_master .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;width:.25rem!important}.nuvo-tailwind .join-sheet-preview ::-webkit-scrollbar-thumb{background-clip:content-box;background-color:#818b99;border:0 solid transparent;border-radius:9px}.nuvo-tailwind .join-sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .join-sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;margin-right:.5rem!important}.nuvo-tailwind .join-sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .join-sheet-preview .ht_clone_inline_start .wtHolder .wtHider{box-sizing:border-box!important;margin-bottom:2rem!important}.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder,.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .htCore,.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtHider,.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtSpreader,.nuvo-tailwind .join-sheet-preview.not_firefox .ht_clone_top{width:100%!important}.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top{width:calc(100% - 8px)!important}.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top .wtHolder{width:100%!important}.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable .ht_clone_inline_start,.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable .ht_clone_inline_start .wtHolder{height:100%!important}.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start,.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start .wtHolder{height:calc(100% - 4px)!important}.nuvo-tailwind .join-sheet-preview #hotInstance{height:100%}.nuvo-tailwind .join-sheet-preview #hotInstance .ht_clone_inline_start td,.nuvo-tailwind .join-sheet-preview #hotInstance .ht_clone_top_inline_start_corner{box-shadow:2px 0 5px -2px hsla(0,0%,53%,.3)}.nuvo-tailwind .join-sheet-preview .hide-border-last-column .ht_clone_top td:last-child,.nuvo-tailwind .join-sheet-preview .hide-border-last-column .ht_clone_top th:last-child,.nuvo-tailwind .join-sheet-preview div.hide-border-last-column .handsontable.ht_master tr td:last-child{border-right-color:transparent!important;border-right-width:0!important}.nuvo-tailwind .join-sheet-preview tr td.default-cell{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity));font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .join-sheet-preview .ht_clone_inline_start .wtHolder .wtHider div.wtSpreader .htCore tbody tr th{text-indent:-1px}.nuvo-tailwind .join-sheet-preview .ht_left .wtHolder .wtSpreader,.nuvo-tailwind .join-sheet-preview .ht_master .wtHolder .wtSpreader table{width:100%}.nuvo-tailwind .join-sheet-preview tr td div{box-sizing:border-box;padding-top:7px}.nuvo-tailwind .join-sheet-preview .handsontable th .colHeader{width:100%}.nuvo-tailwind .join-sheet-preview .handsontable.wt-full-width .ht_master.handsontable .wtHider,.nuvo-tailwind .join-sheet-preview .handsontable.wt-full-width .ht_master.handsontable .wtHider .wtSpreader{width:100%!important}.nuvo-tailwind .join-sheet-preview .handsontable span.colHeader{line-height:1.2}.nuvo-tailwind .htFocusCatcher{padding:0}"));document.head.appendChild(yy);var Cy=document.createElement("style");Cy.type="text/css";Cy.appendChild(document.createTextNode('@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap");.nuvo-tailwind{--tw-text-opacity:1;color:rgb(66 66 66/var(--tw-text-opacity));color:var(--globals-text-color);font-family:var(--globals-font-family);font-size:16px;line-height:19px}.nuvo-tailwind .text-color-primary{color:var(--text-color-primary)}.nuvo-tailwind .text-color-secondary{color:var(--text-color-secondary)}.nuvo-tailwind [role=gridcell]{padding:0}.nuvo-tailwind [role=gridcell][aria-selected=true]>.cell-viewer{box-shadow:inset 0 0 0 2px var(--rdg-selection-color)}.nuvo-tailwind .nuvo-invisible{visibility:hidden}.nuvo-tailwind .caption{font-size:12px;line-height:1.43}.nuvo-ReactModal__Body--open{overflow:hidden}:root{--layer-overlay:300;--nuvo-white:#fff;--nuvo-neutral-900:#2d2d2d;--shadow-bottom:0px 7px 15px 0px rgba(27,80,113,.1)}.nuvo-popover{box-sizing:border-box}.nuvo-popover,.nuvo-popover__anchor{display:inline-flex;flex-direction:column}.nuvo-popover__anchor{background-color:transparent;border:0;outline:0;padding:0}.nuvo-popover__content{background-color:var(--nuvo-white);border-radius:4px;box-shadow:var(--shadow-bottom);color:var(--nuvo-neutral-900);outline:none;overflow-y:auto;padding:12px 16px;z-index:var(--layer-overlay)}'));document.head.appendChild(Cy);import"handsontable/styles/handsontable.css";import"handsontable/styles/ht-theme-classic.css";var xy=document.createElement("style");xy.type="text/css";xy.appendChild(document.createTextNode('.nuvo-tailwind .default-popper{--tw-text-opacity:1;border-radius:3px;border-width:1px;color:rgb(251 251 251/var(--tw-text-opacity));font-size:.75rem;line-height:1rem;opacity:0;padding-bottom:.75rem;padding-left:1rem;padding-right:1rem;padding-top:.75rem;pointer-events:none;z-index:170!important}.nuvo-tailwind .error-popper{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(237 112 112/var(--tw-bg-opacity));border-color:rgb(237 112 112/var(--tw-border-opacity))}.nuvo-tailwind .warning-popper{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(255 193 22/var(--tw-bg-opacity));border-color:rgb(255 193 22/var(--tw-border-opacity))}.nuvo-tailwind .multiple-popper{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(84 84 84/var(--tw-bg-opacity));border-color:rgb(84 84 84/var(--tw-border-opacity))}.nuvo-tailwind .disabled-popper{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(84 84 84/var(--tw-bg-opacity));border-color:rgb(84 84 84/var(--tw-border-opacity))}.nuvo-tailwind #arrow-message-info,.nuvo-tailwind #arrow-message-info:before{background:inherit;height:13px;position:absolute;width:13px}.nuvo-tailwind #arrow-message-info{visibility:hidden}.nuvo-tailwind #arrow-message-info:before{content:"";transform:rotate(45deg);visibility:visible}.nuvo-tailwind [overflow-hide]{opacity:0!important;pointer-events:none;visibility:hidden!important;z-index:100}.nuvo-tailwind [overflow-hide] #arrow{opacity:0;pointer-events:none;visibility:hidden}.nuvo-tailwind .remove-popper{--tw-text-opacity:1;border-radius:3px;border-width:1px;color:rgb(251 251 251/var(--tw-text-opacity));font-size:.75rem;line-height:1rem;opacity:0;padding:1rem;pointer-events:none;z-index:170!important}.nuvo-tailwind .remove-info-popper{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(40 64 103/var(--tw-bg-opacity));border-color:rgb(40 64 103/var(--tw-border-opacity))}'));document.head.appendChild(xy);var Sy=document.createElement("style");Sy.type="text/css";Sy.appendChild(document.createTextNode(".nuvo-tailwind #dropdown-scroll-element-id::-webkit-scrollbar-track{width:.25rem!important}.nuvo-tailwind #dropdown-scroll-element-id::-webkit-scrollbar-thumb{background-clip:content-box;background-color:#818b99;border:0 solid transparent;border-radius:9px}.nuvo-tailwind #dropdown-scroll-element-id::-webkit-scrollbar{height:.25rem!important;width:.25rem!important}.nuvo-tailwind #dropdown-scroll-element-id::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px}.nuvo-tailwind #dropdown-scroll-element-id::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}"));document.head.appendChild(Sy);import{createContext as JQ,useEffect as QQ,useMemo as eee,useState as tee}from"react";import{useContext as KQ}from"react";var Kt=()=>KQ(Xw);import{Subject as ree}from"rxjs";var _y=()=>{},Iy=class{constructor(t,o){this.onResultCallbackMapping={};this.getGeneralHooks=t=>{let o=this.hooksAPI.onCancel??_y,n=t?.trim()?.length>0?this.onResultCallbackMapping[t]:this.hooksAPI.onResults,a=this.hooksAPI.onEntryChange??_y,i=this.hooksAPI.onEntryInit??_y;return{onResults:n,onCancel:o,onEntryChange:a,onEntryInit:i}};this.hooksAPI=t,this.onResultCallbackMapping={[o]:t.onResults}}},u9=Iy;import{useContext as YQ,useMemo as ZQ}from"react";var XQ=()=>{let{onResults:r,onCancel:t,onEntryChange:o,onEntryInit:n,columnHooks:a}=mt(),i=YQ(My),s=ee(),l=ZQ(()=>new u9({onResults:r,onCancel:t,onEntryChange:o,onEntryInit:n,columnHooks:a},s.identifier),[r,t,o,n,a,s.identifier]);return{...i,hooksAPIMapper:l,getIdentifier:()=>s.identifier}},xo=XQ;import{jsx as nee,jsxs as aee}from"react/jsx-runtime";var My=JQ({setLoadingInitialValues:()=>{},loadingInitialValues:!0}),d9=({children:r})=>{let[t,o]=tee(!0),n=eee(()=>new ree,[]);return aee(My.Provider,{value:{cancelHookObservable:n,loadingInitialValues:t,setLoadingInitialValues:o},children:[nee(oee,{}),r]})},oee=()=>{let{cancelHookObservable:r,hooksAPIMapper:t,getIdentifier:o}=xo(),n=Kt(),{featureWhiteList:a}=Nt();return QQ(()=>{let i=r?.subscribe(()=>{t.getGeneralHooks(o()).onCancel()});return()=>{i?.unsubscribe()}},[r,t,o,n,a]),null};import{useCallback as C9}from"react";import y9 from"url-join";import{useNavigate as wee}from"react-router-dom";var vr="/upload-file",ir="/review-entries",Bt="/select-header",Tt="/match-column",br="/select-sheet",So="/join-column";import{createContext as uee,useMemo as dee,useState as h9,useCallback as g9}from"react";var Hh,iee=new Uint8Array(16);function Ey(){if(!Hh&&(Hh=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||typeof msCrypto<"u"&&typeof msCrypto.getRandomValues=="function"&&msCrypto.getRandomValues.bind(msCrypto),!Hh))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Hh(iee)}var p9=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function see(r){return typeof r=="string"&&p9.test(r)}var m9=see;var jr=[];for(Bh=0;Bh<256;++Bh)jr.push((Bh+256).toString(16).substr(1));var Bh;function lee(r){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,o=(jr[r[t+0]]+jr[r[t+1]]+jr[r[t+2]]+jr[r[t+3]]+"-"+jr[r[t+4]]+jr[r[t+5]]+"-"+jr[r[t+6]]+jr[r[t+7]]+"-"+jr[r[t+8]]+jr[r[t+9]]+"-"+jr[r[t+10]]+jr[r[t+11]]+jr[r[t+12]]+jr[r[t+13]]+jr[r[t+14]]+jr[r[t+15]]).toLowerCase();if(!m9(o))throw TypeError("Stringified UUID is invalid");return o}var f9=lee;function cee(r,t,o){r=r||{};var n=r.random||(r.rng||Ey)();if(n[6]=n[6]&15|64,n[8]=n[8]&63|128,t){o=o||0;for(var a=0;a<16;++a)t[o+a]=n[a];return t}return f9(n)}var Ty=cee;import{jsx as pee}from"react/jsx-runtime";var ky=uee({sessionId:"",generateNewSessionId:()=>{},setHasUploadedData:()=>{}}),v9=r=>{let t=g9(()=>Ty().replace(/-/g,""),[]),[o,n]=h9(t()),[a,i]=h9(!1),s=g9(()=>{a&&n(t())},[t,a]),l=dee(()=>({sessionId:o,generateNewSessionId:s,setHasUploadedData:i}),[o,s]);return pee(ky.Provider,{value:l,children:r.children})};import{useContext as mee}from"react";var fee=()=>mee(ky),wr=fee;import{createContext as hee}from"react";import{jsx as gee}from"react/jsx-runtime";var Ry=hee({isUseInRouter:!1}),b9=({isUseInRouter:r,children:t})=>gee(Ry.Provider,{value:{isUseInRouter:r},children:t});import{useContext as vee}from"react";var bee=()=>vee(Ry),w9=bee;var x9=()=>{let r=wee(),{isUseInRouter:t}=w9();return C9((n,a)=>{if(t){let i=window.location.pathname,s=`${window.location.hash}`.replace("#",""),l=window.location.hash,c=typeof n=="string"?n:n.pathname,u=l?y9(s,c):y9(i,c);return r({pathname:u},{...a,replace:!0})}else{let i=typeof n=="string"?n:n.pathname;return r({pathname:i},{...a,replace:!0})}},[r,t])},Kc=()=>{let r=x9(),{columns:t}=ee(),o=Kt(),{setHasUploadedData:n}=wr();return{navigateToReviewEntries:C9(()=>{r({pathname:ir},{state:{hideStepper:!0,columns:t,dataModels:o.getDataModels()}}),n(!0)},[t,o,r,n])}},Yt=x9;import{isEmpty as Ree,isNil as Oee}from"lodash";import{ErrorCode as _9}from"react-dropzone";var S9=r=>{let t;return{promise:new Promise((n,a)=>{t=()=>{a({isCancelled:!0})},r.then(i=>n(i)).catch(i=>a(i))}),cancel(){t()}}};import{isNil as Cee}from"lodash";import xee from"detect-file-encoding-and-language";var Sn=({workersBaseUrl:r})=>{let t=r?xn(r,Cn.IMPORT):"",{init:o,getRemote:n,clear:a}=yn({hostWorkerUrl:t,workerFile:()=>new Worker(new URL("workers/parseData/index.js",import.meta.url),{type:"module"})});return{init:o,clear:a,convertCsv2Sheet:(...g)=>{let b=n();return b?b.convertCsv2Sheet(...g):z7(...g)},convertExcel2Sheet:(...g)=>{let b=n();return b?b.convertExcel2Sheet(...g):X7(...g)},convertJson2Sheet:(...g)=>{let b=n();return b?b.convertJson2Sheet(...g):G7(...g)},convertXLS2Sheet:(...g)=>{let b=n();return b?b.convertXLS2Sheet(...g):K7(...g)},convertXML2Sheet:(...g)=>{let b=n();return b?b.convertXML2Sheet(...g):Y7(...g)},jsonParser:(...g)=>{let b=n();return b?b.jsonParser(...g):Promise.resolve(q7(...g))},parseDateFormat:(...g)=>{let b=n();if(b)return b.parseDateFormat(...g);let w=Q7(...g);return Promise.resolve(w)},convertPdf2Sheets:(...g)=>{let b=n();return b?b.convertPdf2Sheets(...g):Z7(...g)},parseValue:(...g)=>{let b=n();if(b)return b.parseValue(...g);let w=W7(...g);return Promise.resolve(w)}}};var Oy=async(r,t,o)=>{if(r.type===vt.csv||r.type===vt.tsv_text||r.type===vt.tsv||["tsv","csv"].includes(M9(r.name))){let n=await Tee(r);return t.convertCsv2Sheet(n,{...o,metaFile:{name:r.name,type:r.type===vt.xls?vt.csv:r.type,size:r.size}})}else return r.type===vt.xml?t.convertXML2Sheet(r,o):r.type===vt.json?t.convertJson2Sheet(r,o):r.type===vt.xls||r.type===vt.xlsb||M9(r.name)==="xlsb"?t.convertXLS2Sheet(r,o):r.type===vt.pdf?t.convertPdf2Sheets(r,{...o,stage:J7}):t.convertExcel2Sheet(r,o)},Uh=(r,t,o,n)=>{let a=Sn({workersBaseUrl:o});return n&&n(a),S9(a.init().then(()=>Promise.all(r.map(i=>Oy(i,a,t).then(s=>({...s,rawFile:i})))).finally(()=>{a.clear()})))},See=r=>r[0]?.errors[1]?.message?r[0]?.errors[1]?.message:r[0]?.errors[0]?.message,I9={"Too many files":"txt_too_many_files_error"},_ee=r=>I9[r]?I9[r]:r,jh=r=>{let t={};return r.forEach(o=>{o==="tsv"?(t[vt.tsv]=[],t[vt.tsv_text]=[]):o==="xls"?(t[vt.xls]=[],t[vt.xlsb]=[".xlsb"]):t[vt[o]]=[]}),t},E9=r=>{let n=0;return r.forEach(i=>{n=n+Math.round(i.type===vt.pdf?6:i.type===vt.csv||i.type===vt.json?1:Math.max(i.size)/1e6)}),n*2.5/2*10},Wh=(r,t,o,n,a)=>{if(t[0].errors.find(c=>c.code===_9.FileInvalidType)){r(n("txt_file_format_error",{fileTypes:a.join(", ")}),n("txt_title_upload_valid_file_error"));return}if(t[0].errors.find(c=>c.code===_9.FileTooLarge)){r(n("txt_upload_exceed_max_size_error",{sizeInMb:o}),n("txt_title_upload_exceed_max_size_error"));return}let l=See(t);r(n(_ee(l)),n("txt_title_too_many_files_error"))},T9=(r,t,o,n)=>{t===9003?r(o("txt_nested_file_error"),o("txt_import_error")):t===9001?r(o("txt_file_format_error",{fileTypes:n.join(", ")}),o("txt_title_error_invalid_format")):r(o("txt_file_error"),o("txt_import_error"))},zh=(r,t)=>({...Iee,...r?Mee:{},...t?Eee:{}}),Iee={transition:"border .24s ease-in-out"},Mee={borderColor:"#4B5563"},Eee={borderColor:"#D0021B"},Tee=r=>new Promise(async t=>{let o=await r.text();try{let a=((await xee(r)).encoding||"ascii").toLowerCase();if(a!=="utf-8"&&!Cee(a)){let i=await kee(r),s=new TextDecoder(a).decode(i);t(s)}else t(o)}catch{t(o)}}),kee=r=>new Promise((t,o)=>{let n=new FileReader;n.onload=a=>{let i=a?.target?.result;t(i)},n.onerror=()=>o({code:-1}),n.readAsArrayBuffer(r)}),M9=r=>r?.split(".")?.pop()?.toLowerCase()||"";var Yc=r=>r?.replace(/\.[^/.]+$/,"");var Ay=[[]],k9="";var Dy=class{constructor(t){this.dataStack={};this.parseRejectedData=t=>{let o=[];for(let n=0;n<t.length;++n){let a=t[n];o.push({fileName:a.filename,sheets:[]})}return o};this.parseData=t=>{let o=[];for(let n=0;n<t.length;++n){let a=t[n],i=[];if(n9.includes(a.type))i.push({sheetName:Yc(a.filename),data:a.data});else{let s=a.data;for(let l=0;l<s.length;++l){let c=s[l];i.push({sheetName:c?.sheetName??"",data:c?.data??[]})}}o.push({fileName:a.filename,sheets:i})}return o};this.throwError=(t,o)=>{let n={1101:"The component is not verified.",1100:"No component found.",1002:"This feature or this file type are not included in your subscription."};return o&&Ce.getInstance().setParseSession(),Promise.reject(new Error(`code: ${n[t]?t:-1}, message: ${n[t]??"Unexpected error"}`))};this.parseFiles=async(t,o,n)=>{let a=Sn({workersBaseUrl:n});await a.init();let i=[],s=[];return await Promise.all(t.map(async l=>Oy(l,a,o).then(c=>{i.push(c)}).catch(()=>{s.push({data:[],filename:l.name,fileSize:l.size,type:l.type})}))).finally(()=>{a.clear()}),{acceptedFiles:i,rejectedFiles:s}};this.getSessionKey=t=>{if(t&&this.importerSessionListener.listenStartCallbackStack[t])return t;{let o=Object.keys(this.importerSessionListener.listenStartCallbackStack);return o[o.length-1]}};this.getComponentData=t=>{let o=this.getSessionKey(t);return this.importerSessionListener.getConfigCallbackStack[o]?.()};this.onRetry=async t=>{let n;for(let a=1;a<=3;a++)try{return await t()}catch(i){if(n=i,a===3)throw n;await new Promise(s=>setTimeout(s,500*a))}throw n};this.uploadMethod=async({step:t,data:o,headerIndex:n,identifier:a})=>{let i=this.getSessionKey(a),s=this.getComponentData(i),l=s?.featureWhiteList.isDynamicImport();if(!s)return this.throwError(1100,i);if(!s?.isAuth)return this.throwError(1101,i);if(!l)return this.throwError(1002,i);this.dataStack[a??k9]={step:t,data:o,headerIndex:n}};this.startMethod=t=>{let o=t?.identifier,n=this.getSessionKey(o),a=this.getComponentData(n),i=0,s=5,l=500,c=()=>new Promise((d,p)=>{let m=()=>{i++,a=this.getComponentData(n),a?.isAuth===!0&&a.featureWhiteList.isDynamicImport()===!0?d():i>=s?p():setTimeout(m,l)};m()}),u=()=>{let d=this.dataStack?.[n];(Oee(o)||Ree(o))&&(d=this.dataStack?.[k9]),this.importerSessionListener.listenStartCallbackStack[n]?.({data:d?.data,headerIndex:d?.headerIndex,step:d?.step})};c().catch(()=>{}).finally(()=>u())};this.parseMethod=async({data:t,identifier:o})=>{let n=this.getSessionKey(o),a=this.getComponentData(n),i=a?.featureWhiteList.isDynamicImport(),s=a?.featureWhiteList.getInputTypes()??[];if(!a)return this.throwError(1100,n);if(!a?.isAuth)return this.throwError(1101,n);if(!i)return this.throwError(1002,n);let l=[],c=[],u=Array.from(t);for(let d=0;d<u.length;++d){let p=u[d],m=(Object.keys(vt).find(h=>vt[h]===p.type)??p.type)?.replace("_text","");s.includes(m)?l.push(p):c.push(p)}try{let d=await this.parseFiles(l,{licenseKey:a.licenseKey,framework:Ce.getInstance().getFrameWork(),sdkVersion:Ce.getInstance().getVersionNumber(),hasDateType:a.columnAPIMapper.hasDateType(),originRequest:Ce.getInstance().getOrigin()},a.workersBaseUrl??"");return Ce.getInstance().setParseSession(),{accepted:this.parseData(d?.acceptedFiles??[]),rejected:this.parseRejectedData([...d?.rejectedFiles??[],...c.map(p=>({filename:p.name,fileSize:p.size,data:[],type:p.type}))])}}catch(d){return this.throwError(d?.code,n)}};this.upload=async({step:t,data:o,headerIndex:n,identifier:a})=>this.onRetry(()=>this.uploadMethod({step:t,data:o,headerIndex:n,identifier:a}));this.start=t=>this.startMethod(t);this.parse=async({data:t,identifier:o})=>this.onRetry(()=>this.parseMethod({data:t,identifier:o}));this.verify=async t=>{let o=this.getSessionKey(t?.identifier),n=this.getComponentData(o);if(n?.isAuth)return n?.verifyTracking(o),Promise.resolve({verified:!0,identifier:o});let a=0,i=10,s=500,l=async()=>{for(;a<i;){if(!!this.getComponentData(this.getSessionKey(t?.identifier)))return!0;a++,await new Promise(u=>setTimeout(u,s))}return!1};try{if(!await l())return this.throwError(1100,this.getSessionKey(t?.identifier));let u=this.getSessionKey(t?.identifier),d=this.getComponentData(u);if(!d)return this.throwError(1100,this.getSessionKey(t?.identifier));d.verifyTracking(u);let{verifyLicenseKeyListener:p,verifyLicenseKey:m,isVerifyingLicenseKey:h,isAuth:g}=d;if(g)return Promise.resolve({verified:!0,identifier:u});if(h&&p)try{return new Promise((b,w)=>{p?.subscribe({next:C=>{b({verified:C,identifier:u})},error:C=>{w(new Error(`Failed to verify license key: ${C instanceof Error?C.message:String(C)}`))}})})}catch{return d?.verifyTracking(u),Promise.resolve({verified:!1,identifier:u})}if(!h&&!g&&m)try{let b=await m();return Promise.resolve({verified:!!b,identifier:u})}catch(b){throw new Error(`Failed to verify license key: ${b instanceof Error?b.message:String(b)}`)}return Promise.resolve({verified:!!g,identifier:u})}catch{let u=this.getSessionKey(t?.identifier);return this.getComponentData(u)?.verifyTracking(u),this.throwError(1100,this.getSessionKey(t?.identifier))}};this.reload=async t=>{let o=this.getSessionKey(t?.identifier),n=this.getComponentData(o);if(!n)return this.throwError(1100,o);let{reload:a}=n;a&&typeof a=="function"&&(await new Promise(i=>setTimeout(i,100)),a(o))};this.importerSessionListener=t;try{module?.hot}catch{}}},R9=Dy;var Ny=class{constructor(){this.listenStartCallbackStack={};this.getConfigCallbackStack={};this.listener=(t,o)=>{this.listenStartCallbackStack[t]=o};this.getCompDataCallbackListener=(t,o)=>{this.getConfigCallbackStack[t]=o}}},O9=Ny;var qh=new O9,Dee=new R9(qh);import{useCallback as ste,useEffect as U9}from"react";import{isNil as Zc,isArray as A9,isObject as N9,isString as L9,isEmpty as $ee}from"lodash";var Yi=class{constructor({sheetData:t,filename:o,type:n,sheetName:a,fileSize:i}){this.getSpreadSheet=({autoDetectedHeader:t})=>{let o=new Yn({name:this.sheetName,data:this.sheetData});t&&o.setHeaderByAutoDetection();let n=[o];return new ol({sheets:n,filename:this.filename,type:this.type,fileSize:this.fileSize})};this.sheetData=t,this.filename=o,this.type=n,this.sheetName=a,this.fileSize=i}},ll=class{constructor({multipleSheetData:t,filename:o,type:n,fileSize:a}){this.getSpreadSheet=({autoDetectedHeader:t})=>{let o=this.multipleSheetData.map(n=>{let a=new Yn({data:n.data,name:n.sheetName});return t&&a.setHeaderByAutoDetection(),a});return new ol({type:this.type,filename:this.filename,sheets:o,fileSize:this.fileSize})};this.multipleSheetData=t,this.filename=o,this.type=n,this.fileSize=a}};import{isArray as D9,isEqual as Pee,flatten as Aee}from"lodash";function Nee(r,t){let o=new Set(r);return t.filter(n=>o.has(n))}var P9=(r,t,o)=>{let n=Aee(r.map(i=>i.getColumns())).filter(i=>i.getColumnKey()===t);if(n.length>1){for(let i=0;i<n.length;i++){let s=n[i];if(Nee(s.getUniqueRows(),o).length===o.length)return s}return null}else return n[0]},Gh=(r,t)=>Pee(`${r}`,`${t}`),Ly=r=>D9(r)&&r.every(t=>D9(t));import{flatten as Lee}from"lodash";var $y=class{constructor({spreadSheets:t}){this.setJoinSheet=t=>{this.joinSheet=t};this.getJoinSheet=()=>this.joinSheet;this.removeJoinSheet=()=>{this.joinSheet=null};this.getSpreadSheets=()=>this.spreadSheets;this.getSelectedSpreadSheets=()=>this.spreadSheets.filter(t=>t.isSelected());this.getIsAllSheetsManualSelectHeader=()=>{let t=this.getSelectedSpreadSheets();for(let o=0;o<t.length;o++){let n=t[o].getSelectedSheets();for(let a=0;a<n.length;a++)if(!n[a].getIsManualSelectHeader())return!1}return!0};this.length=()=>this.spreadSheets.length;this.getAllSheets=()=>Lee(this.spreadSheets.map(o=>o.getSheets()));this.setSheet=t=>{for(let o=0;o<this.spreadSheets.length;o++){let n=this.spreadSheets[o];for(let a=0;a<n.getSheets().length;a++)n.getSheets()[a].getId()===t.getId()&&this.spreadSheets?.[o].getSheets()?.[a]?.setData(t.getData())}};this.getSelectedSheets=(t=!1)=>this.joinSheet&&!t?[this.joinSheet]:this.getAllSheets().filter(o=>o.isSelected());this.selectAllSheets=t=>{this.spreadSheets.forEach(o=>{o.selectAllSheet(t)})};this.addList=t=>{let o=t.getSpreadSheets();for(let n=0;n<o.length;n++)this.spreadSheets.push(o[n])};this.spreadSheets=t}},Zi=$y;var Fy=class{constructor({spreadSheetList:t}){this.currentSpreadSheetPosition=0;this.currentSheetPosition=0;this.goToBySheet=t=>{let o=this.originalSpreadSheetList.getSelectedSpreadSheets();for(let n=0;n<o.length;n++){let a=o[n].getSelectedSheets();for(let i=0;i<a.length;i++)if(a[i]===t)return this.currentSpreadSheetPosition=n,this.currentSheetPosition=i,a[i]}};this.getCurrentSpreadSheet=()=>this.originalSpreadSheetList.getSelectedSpreadSheets()[this.currentSpreadSheetPosition];this.getCurrentSheet=()=>this.getCurrentSpreadSheet().getSelectedSheets()[this.currentSheetPosition];this.next=()=>{let t=this.currentSheetPosition+1,n=this.originalSpreadSheetList.getSelectedSpreadSheets()[this.currentSpreadSheetPosition].getSelectedSheets().length;if(t>=n){let a=this.currentSpreadSheetPosition+1,i=this.originalSpreadSheetList.getSelectedSpreadSheets().length;return a>=i?!1:(this.currentSpreadSheetPosition=a,this.currentSheetPosition=0,this.getCurrentSheet().getIsManualSelectHeader()?this.next():!0)}else return this.currentSheetPosition=t,this.getCurrentSheet().getIsManualSelectHeader()?this.next():!0};this.goToLastSpreadSheet=()=>{this.currentSpreadSheetPosition=Math.max(this.originalSpreadSheetList.getSelectedSpreadSheets().length-1,0)};this.goToLastSheet=()=>{let t=this.getCurrentSpreadSheet();this.currentSheetPosition=Math.max(t.getSelectedSheets().length-1,0)};this.getSpreadSheetList=()=>this.updatedSpreadSheetList;this.setUpdatedSpreadSheetList=t=>{this.updatedSpreadSheetList=t};this.getOriginalSpreadSheetList=()=>this.originalSpreadSheetList;this.originalSpreadSheetList=t,this.updatedSpreadSheetList=t}},ti=Fy;var Kh=class{constructor(){this.handle=async({data:t,headerIndex:o,hasDateType:n,automaticHeaderDetection:a,workersBaseUrl:i})=>{let s,l=Sn({workersBaseUrl:i});await l.init();let c=Ly(t);if(c)s=t;else try{s=await l.jsonParser(JSON.stringify(t),{hasDateType:n})}catch{throw l.clear(),new Error("1000")}l.clear();let u=new Yi({sheetData:s,filename:"",type:"dynamic-import",sheetName:"",fileSize:0}),d;if(!c)d=u.getSpreadSheet({autoDetectedHeader:a??!1});else if(Zc(o))d=u.getSpreadSheet({autoDetectedHeader:!0});else{d=u.getSpreadSheet({autoDetectedHeader:!1});let h=d.getSheets()[0].getData();o>=0&&o<h.length?d.getSheets()[0].setHeaderRowIndex(o):d.getSheets()[0].setHeaderByAutoDetection()}let p=new Zi({spreadSheets:[d]});return p.selectAllSheets(!0),new ti({spreadSheetList:p})}}},Yh=class{constructor(t){this.generateMemorizeFindDataModel=()=>{let t={},o={},n=0;for(let a=0;a<this.dataModels.length;a++){let i=this.dataModels[a];t[i.getKey()]=i,i.isHidden()||(o[i.getKey()]=n,n++)}return a=>({dataModel:t[a],colIndex:o[a]??-1})};this.checkInvalidFormat=t=>!A9(t)||t.some(o=>!N9(o)&&!Zc(o));this.handle=({data:t})=>{let o=t;if(this.checkInvalidFormat(t))throw new Error("1000");let n=this.generateMemorizeFindDataModel(),a=[],i={};for(let s=0;s<o.length;++s){if(a[s]={},Zc(o[s]))continue;let l=Object.keys(o[s]);for(let c=0;c<l.length;++c){let u=l[c],d=n(u);if(!d.dataModel)throw new Error("1001");if(N9(o[s][u])&&!A9(o[s][u])){if(Zc(o[s][u].value)||(a[s][u]=io.parse(o[s][u].value,{dataModel:d.dataModel})),Zc(o[s][u].info))continue;d.colIndex>=0&&o[s][u].info?.forEach(p=>{let m={rowIndex:s,colIndex:d.colIndex,popover:{message:p.message,level:p.level||Ui}};(i[s]?.length??0)===0?i[s]=[m]:i[s].push(m)})}else Zc(o[s][u])||(a[s][u]=io.parse(o[s][u],{dataModel:d.dataModel}))}}return{dataInfos:i,parsedValues:a}};this.dataModels=t}},Zh=class{constructor(){this.handle=async({data:t,hasDateType:o,workersBaseUrl:n})=>{if(this.checkInvalidFormat(t))throw new Error("1000");let a=Sn({workersBaseUrl:n});await a.init();let i=[];for(let l of t){for(let u of l.sheets)if(!Ly(u.data))try{u.data=await a.jsonParser(JSON.stringify(u.data),{hasDateType:o})}catch{throw a.clear(),new Error("1000")}a.clear();let c=new ll({multipleSheetData:l.sheets,filename:l.fileName,type:"dynamic-import",fileSize:0});i.push(c.getSpreadSheet({autoDetectedHeader:!1}))}return new Zi({spreadSheets:i})}}checkInvalidFormat(t){if(!Array.isArray(t))return!0;for(let o of t){if(!L9(o?.fileName)||o.fileName.trim()===""||!Array.isArray(o?.sheets)||o.sheets.length===0)return!0;let n=[];for(let a of o.sheets)if(n.includes(a.sheetName)||(n.push(a.sheetName),!L9(a?.sheetName)||a?.sheetName.trim()===""||!Array.isArray(a?.data)||a.data.length===0||Array.isArray(a?.data[0])&&a.data[0].length===0||!Array.isArray(a?.data[0])&&$ee(a.data[0])))return!0}return!1}};import{useTranslation as lte}from"react-i18next";import{isNil as Fee,isObject as Vee,isArray as Hee,isEmpty as Bee}from"lodash";var Vy=class{static{this.checkIsEmpty=t=>Fee(t)||Bee(t)}static{this.isInValidObjectArray=t=>!Vee(t)&&!Hee(t)}},Xh=Vy;import{useContext as Uee}from"react";var jee=()=>Uee(Hy),Lt=jee;import{useCallback as Wee}from"react";import{useTranslation as zee}from"react-i18next";var qee=()=>{let{showConfirmModal:r}=ot(),{t}=zee(),{closePage:o}=Lt(),{cancelHookObservable:n}=xo();return{warnLicenseKeyIsInvalid:Wee(()=>{r({textNegativeButton:t("txt_close"),textPositiveButton:t("txt_back"),title:t("txt_invalid_license_key"),isShowIcon:!0,isShowPositiveButton:!1,description:t("txt_invalid_license_key_description"),onClickNegativeButton:()=>{n?.next(null),o()},onCloseModal(){n?.next(null)}})},[r,t,n,o])}},Xi=qee;import{isEmpty as cte}from"lodash";import{createContext as Zee,useMemo as F9,useRef as Xee,useState as $p}from"react";var Jh=(r,t)=>t.development_mode?t.is_verified&&r:t.is_verified&&!r;import{useEffect as Gee,useRef as By}from"react";var _o=r=>{let t=By(),o=By(!1),n=By(!1);o.current&&(n.current=!0),Gee(()=>{if(!o.current)return o.current=!0,t.current=r(),()=>{n.current&&t.current&&t.current()}},[])};var Uy=class{static mapDAOtoFeatureWhitelist(t,o){let n=new zc;return n.enableI18nOverrides(t.plan_detail.features.i18n),n.enableMultiFileUpload(t.plan_detail.features.multiple_file_upload),n.enableReuseMapping(t.plan_detail.features.remember_mapping),n.enableAutomaticMapping(t.plan_detail.features.automatic_mapping,t.plan),n.setStepHandler(t.plan_detail.features.step_handler??!1),t.plan_detail.upload_size_limit===0?n.setFileSizeUnlimited():n.setMaxFileSizeInMb(t.plan_detail.upload_size_limit),n.setInputTypes(t.plan_detail.features.input_types||[]),n.setDefaultLanguage(t.default_language??"en"),n.setDynamicImport(t.plan_detail.features.dynamic_import,t.plan),n.setCustomStyling(t.plan_detail.features.custom_style,t.plan),n.setEnableLogs(t.plan_detail.features.logs),n.setLoading(!1),n.setLocale(o||{}),n.setRowsLimit(t.plan_detail.sdk_rows_limit??void 0),n.setEnableSmartTable(t.plan_detail.features.smart_table||!1),n.setEnableCleaningAssistant(t.plan_detail.features.cleaning_assistant||!1),n.setEnableWatermark(t.plan_detail.features.watermark||!1),n.setEnableContextualEngine(t.plan_detail.features.contextual_engine||!1),n.setEnableNodeProcessing(t.plan_detail.features.node_processing||!1),n.setEnablePrompts(t.plan_detail.features.prompts||!1),n}static getEmptyFeatureWhitelist(){let t=new zc;return t.setLoading(!1),t}},Qh=Uy;var eg=class extends Ur{constructor(){super(...arguments);this.getLocales=async({language:o},n)=>this.get("/utils/locales",{language:o},{headers:{Authorization:n,apikey:this.sendApiKey?qt:void 0}})}};import{Subject as Jee}from"rxjs";var jy=class extends Ur{constructor(){super(...arguments);this.verifyLicenseKey=async({licenseKey:o,sessionId:n})=>this.post("/verify",{session_id:n,meta:Ce.getInstance().getMeta()},{headers:{apikey:this.sendApiKey?qt:void 0,Authorization:o}})}},$9=jy;import{useMemo as Kee}from"react";var Yee=()=>{let r=ee();return Kee(()=>({isDeveloperMode:r.developerMode??!1}),[r])},Ma=Yee;import{jsx as Qee}from"react/jsx-runtime";var Wy=Zee({isAuth:!1,isLoading:!1,htLicenseKey:"non-commercial-and-evaluation",isExpire:!1,verifyLicenseKey:void 0,verifyLicenseKeyListener:null,isVerifyingLicenseKey:!1}),V9=({licenseKey:r,children:t})=>{let o="non-commercial-and-evaluation",[n,a]=$p(!1),[i,s]=$p(!1),[l,c]=$p(!0),[u,d]=$p(o),{language:p,baseUrl:m,isSelfHosted:h}=ee(),[g,b]=$p(!0),{sessionId:w}=wr(),C=F9(()=>new $9({sendApiKey:!h},{baseURL:m}),[m,h]),y=F9(()=>new eg({sendApiKey:!h},{baseURL:m}),[m,h]),{setFeatureWhiteList:S}=Nt(),{isDeveloperMode:x}=Ma(),_=Xee(new Jee),I=async T=>{d(T?.ht_license_key?.trim()||o),a(Jh(x,T));let R;T.plan_detail.features.i18n&&p?R=p:R=T.default_language??"en";let k=await y.getLocales({language:R},r),O=Qh.mapDAOtoFeatureWhitelist(T,k);return S(O),c(!1),s(!(T.is_verified??!1)),!0},M=()=>{let T=Qh.getEmptyFeatureWhitelist();return S(T),c(!1),!1},E=async()=>{b(!0);try{let T=await C.verifyLicenseKey({licenseKey:r,sessionId:w});return b(!1),_.current?.next(Jh(x,T)),I(T)}catch{return _.current?.next(!1),b(!1),M()}};return _o(()=>{if(r&&r?.trim()?.length>0||h)return(async()=>{try{let R=await C.verifyLicenseKey({licenseKey:r,sessionId:w});_.current?.next(Jh(x,R)),b(!1),await I(R)}catch{_.current?.next(!1),b(!1),M()}})(),()=>{b(!1),c(!1)};{let T=Qh.getEmptyFeatureWhitelist();S(T),c(!1),b(!1),a(!1)}return()=>{}}),Qee(Wy.Provider,{value:{isAuth:n,isLoading:l,htLicenseKey:u,isExpire:i,verifyLicenseKey:E,isVerifyingLicenseKey:g,verifyLicenseKeyListener:_.current},children:t})};import{useContext as ete}from"react";var tte=()=>ete(Wy),Zt=tte;import{createContext as rte,useState as ote}from"react";import{jsx as nte}from"react/jsx-runtime";var zy=rte({reload:()=>{}}),H9=({children:r})=>{let[t,o]=ote(!1),n=a=>{Ce.getInstance().setReloadSession(a),o(!0),setTimeout(()=>{o(!1)},0)};return nte(zy.Provider,{value:{reload:n},children:t?null:r})};import{useContext as ate}from"react";var ite=()=>{let r=ate(zy);if(!r)throw new Error("useImporterSession must be used within an ImporterSessionManager");return r},B9=ite;var ute=({modal:r,isAuth:t,openModal:o,licenseKey:n})=>{let a=Yt(),i=Kt(),{columns:s,embedUploadArea:l=!1,dynamicImport:c,identifier:u}=ee(),{showConfirmModal:d}=ot(),{t:p}=lte(),{automaticHeaderDetection:m,workersBaseUrl:h}=ee(),{warnLicenseKeyIsInvalid:g}=Xi(),{featureWhiteList:b}=Nt(),{cancelHookObservable:w}=xo(),{verifyLicenseKeyListener:C,verifyLicenseKey:y,isVerifyingLicenseKey:S}=Zt(),{reload:x}=B9(),_=ste(async I=>x(I),[x]);return U9(()=>{qh.listener(u,async({data:I,headerIndex:M,step:E})=>{try{if(!t){g();return}if(!c)throw new Error("1002");if(Xh.checkIsEmpty(I)&&E!=="review"){r&&!l&&(o(),Ce.getInstance().setStartSession(u),a({pathname:vr}));return}if(Xh.isInValidObjectArray(I))throw new Error("1000");let T=E;if(["header","mapping","review","sheetSelection"].includes(T)||(T="header"),T==="review"){let R=new Yh(i.getDataModels()),{parsedValues:k,dataInfos:O}=R.handle({data:(cte(I)?Ay:I)??Ay});r&&o(),setTimeout(()=>{Ce.getInstance().setStartSession(u),a({pathname:ir},{state:{columns:s,dataModels:i.getDataModels(),dynamicValues:k,dynamicDataInfos:O,dynamicUploadStart:ir,hideStepper:!0}})})}else if(T==="sheetSelection"){let k=await new Zh().handle({data:I??[],hasDateType:i.hasDateType(),workersBaseUrl:h??""}),O=br;r&&o(),setTimeout(()=>{Ce.getInstance().setStartSession(u),a({pathname:O},{state:{spreadSheetList:k,dynamicUploadStart:O}})},220)}else{let k=await new Kh().handle({data:I??{},hasDateType:i.hasDateType(),headerIndex:M,automaticHeaderDetection:m,workersBaseUrl:h??""}),O=k?.getSpreadSheetList()?.getAllSheets()?.[0]?.getData();if(Xh.checkIsEmpty(O)){r&&!l&&(o(),Ce.getInstance().setStartSession(u),a({pathname:vr}));return}let A=T==="header"&&!m?Bt:Tt;r&&o(),setTimeout(()=>{Ce.getInstance().setStartSession(u),a({pathname:A},{state:{spreadSheetNavigate:k,dynamicUploadStart:A}})},220)}}catch(T){let R=()=>{switch(T.message){case"1000":return p("txt_error_dynamic_import_invalid_data_format");case"1001":return p("txt_error_dynamic_import_not_matched_tdm");case"1002":return p("txt_error_dynamic_import_no_support");default:return p("txt_error_dynamic_import_unknown")}};d({title:p("txt_default_title_error"),description:`<div>
|
|
98
|
+
`),disabledClickOutside:d,isShowCloseIcon:p,overlayStyled:f({"&&":V.getDialogConfirmTheme().overlay,"&&&":re?.overlay}),bodyStyled:f({"&&":V.getDialogConfirmTheme().root,"&&&":re?.root}),closeIconStyled:V.getDialogConfirmTheme().closeIcon,closeButtonClassName:f({"&&& line":re?.closeIcon}),children:Y8("div",{className:"w-full px-7 pb-8 pt-3",children:[co("div",{className:"flex justify-center pb-4",children:me()}),r&&co("p",{className:v("xss:pb-2 text-color-primary text-neutral-gray pb-1 text-center text-xl font-semibold",f({"&&":V.getDialogConfirmTheme().title,"&&&":re?.title}),T),dangerouslySetInnerHTML:{__html:r}}),t&&co("p",{className:v("xss:pb-7 text-color-secondary pb-2 text-center text-sm font-normal",f({"&&":V.getDialogConfirmTheme().description,"&&&":re?.description}),C),dangerouslySetInnerHTML:{__html:t}}),w||null,co("div",{className:v("xss:flex mt-2 flex-row justify-center sm:mt-0",y),children:co(Ue,{isShow:g&&H,message:co(Gt,{className:v("max-w-240 h-full w-full text-center text-xs",A),variant:O,children:b}),flip:!0,arrowClassName:"#545454",direction:"top",offset:{mainAxis:12},isShowArrow:!0,className:ue,render:({setReferenceElement:te})=>{let se={className:v("xss:mt-0 mt-3",{"w-full":!c},S,R?ne:"",R?"text-gray-260":""),type:"submit",loading:q,onClick:G,ref:k==="negative"?te:void 0,...k==="negative"?Y():{}},J={...k==="positive"?Y():{},className:v(`xss:mt-0 xss:mr-4 mt-3 mr-0 ${h&&ne}`,x),type:"button",variant:"secondary",onClick:()=>{h||(D(!1),a&&a())}},oe=n||"Ok";return Y8(SQ,{children:[co("span",{ref:k==="positive"?te:void 0,className:v(_),children:c&&co(ye,{...J,children:co("div",{className:v("leading-6",h&&"text-gray-260"),children:o||L("txt_cancel")})})}),m!=="warn"?co(ye,{...se,children:oe}):N?co(ye,{...se,children:oe}):null]})}})})]})})},Z8=xQ;import{jsx as TQ,jsxs as kQ}from"react/jsx-runtime";var ty=_Q({}),EQ=({children:r})=>{let[t,o]=X8(!1),[n,a]=X8(),i=IQ(s=>{a(s),o(!0)},[]);return MQ(()=>{t||a(void 0)},[t]),kQ(ty.Provider,{value:{isOpen:t,setOpenModal:o,showConfirmModal:i,type:n?.type,title:n?.title},children:[r,n&&TQ(Z8,{title:n.title,description:n.description,textPositiveButton:n.textPositiveButton,textNegativeButton:n.textNegativeButton,onClickPositiveButton:n.onClickPositiveButton,onClickNegativeButton:n.onClickNegativeButton,onClickNegativeButtonPromise:n.onClickNegativeButtonPromise,isShowPositiveButton:n.isShowPositiveButton,isShowIcon:n.isShowIcon,disabledClickOutside:n.disabledClickOutside,isShowCloseIcon:n.isShowCloseIcon,type:n.type,disabledPositiveButton:n.disabledPositiveButton,disabledNegativeButton:n.disabledNegativeButton,isPopper:n.isPopper,textPopper:n.textPopper,content:n.content,descriptionClassName:n.descriptionClassName,footerClassName:n.footerClassName,negativeButtonClassName:n.negativeButtonClassName,positiveButtonClassName:n.positiveButtonClassName,positiveButtonWrapperClassName:n.positiveButtonWrapperClassName,roundedIcon:n.roundedIcon,baseModalClassName:n.baseModalClassName,customIcon:n.customIcon,titleClassName:n.titleClassName,onCloseModal:n.onCloseModal,popperPosition:n.popperPosition,messageVariant:n.messageVariant,messageClassName:n.messageClassName})]})},J8=EQ;import{useCallback as UQ,useMemo as l9,useRef as jQ,useState as WQ}from"react";import{createContext as zQ}from"react";import{flatten as iy}from"lodash";var oy=class{constructor({similarity:t}){this.getValue=()=>this.similarity;this.similarity=t}},bn=oy;var Rh=class{constructor({sheetColumn:t,dataModel:o,similarity:n}){this.isMarkApplied=!1;this.getSimilarity=()=>this.similarity;this.getSheetColumn=()=>this.sheetColumn;this.getDataModel=()=>this.dataModel;this.markApplied=()=>{this.isMarkApplied=!0};this.unMarkApplied=()=>{this.isMarkApplied=!1};this.getMarkApplied=()=>this.isMarkApplied;this.isNull=()=>!1;this.sheetColumn=t,this.dataModel=o,this.similarity=n}},Oh=class extends Rh{constructor(){super({dataModel:new yo({description:"null",example:"null",key:"null",label:"null",type:"string",columnSize:1,optionMappingConfiguration:{layers:[],processingMode:"node",threshold:0}}),sheetColumn:new gh({sheet:new Yn({data:[[]],name:""}),columnKey:"",rows:[]}),similarity:new bn({similarity:0})});this.isNull=()=>!0}},Q8=Rh;import{maxBy as RQ,orderBy as OQ}from"lodash";var ny=class{constructor({sheetColumnDataModelSimilarities:t}){this.getMostSimilarityBySheetColumn=t=>{let o=[];for(let n=0;n<this.sheetColumnDataModelSimilarities.length;n++)this.sheetColumnDataModelSimilarities[n].getSheetColumn()===t&&o.push(this.sheetColumnDataModelSimilarities[n]);return RQ(o,n=>n.getSimilarity().getValue())};this.getSortedSheetColumnDataModelSimilarity=t=>{let o=this.sheetColumnDataModelSimilarities.filter(n=>n.getSimilarity().getValue()>=t&&!n.getMarkApplied());return OQ(o,n=>n.getSimilarity().getValue(),"desc")};this.markDataModel=t=>{this.sheetColumnDataModelSimilarities.filter(o=>o.getDataModel()===t).forEach(o=>{o.markApplied()})};this.markSheetColumn=t=>{this.sheetColumnDataModelSimilarities.filter(o=>o.getSheetColumn()===t).forEach(o=>{o.markApplied()})};this.clearMark=()=>{this.sheetColumnDataModelSimilarities.forEach(t=>{t.unMarkApplied()})};this.getSimilaritySheetColumn=(t,o)=>this.sheetColumnDataModelSimilarities.find(n=>n.getSheetColumn()===t&&n.getDataModel()===o);this.sheetColumnDataModelSimilarities=t}},Dh=ny;var Ph=class{constructor({sheetColumnOption:t,dataModelOption:o,similarity:n}){this.getSimilarity=()=>this.similarity;this.getSheetColumnOption=()=>this.sheetColumnOption;this.getDataModelOption=()=>this.dataModelOption;this.isNull=()=>!1;this.hash=()=>{let t=this.getDataModelOption().dataModel.getKey(),o=this.getDataModelOption().option,n=this.getSheetColumnOption().sheetColumn.getColumnKey(),a=this.getSheetColumnOption().option;return`${t}-${o}-${n}-${a}`};this.sheetColumnOption=t,this.dataModelOption=o,this.similarity=n}},Dp=class extends Ph{constructor(){super({sheetColumnOption:{option:"null",sheetColumn:new gh({columnKey:"",rows:[],sheet:new Yn({data:[[]],name:""})})},dataModelOption:{dataModel:new Mp({description:"null",example:"null",key:"null",options:[],type:"single-select",label:"null",columnSize:1,isMultiSelection:!1,optionMappingConfiguration:{layers:[],processingMode:"node",threshold:0}}),option:""},similarity:new bn({similarity:0})});this.isNull=()=>!0}},e9=Ph;import{orderBy as DQ}from"lodash";var ay=class r{constructor({sheetColumnDataModelOptionSimilarities:t,mapSheetColumnDataModelOptions:o}){this.mapSheetColumnDataModelOptions=[];this.getSheetColumnDataModelOptionSimilarities=t=>{let o=this.sheetColumnDataModelOptionSimilarities.filter(n=>n.getSimilarity().getValue()>=t);return DQ(o,n=>n.getSimilarity().getValue(),"desc")};this.getSimilaritySheetColumnOptions=(t,o)=>this.getSheetColumnDataModelOptionSimilarities(o.getOptionMappingConfiguration().threshold).filter(n=>n.getSheetColumnOption().sheetColumn===t&&n.getDataModelOption().dataModel===o);this.getSimilaritiesDataModelOption=(t,o,n)=>this.sheetColumnDataModelOptionSimilarities.filter(a=>a.getSheetColumnOption().sheetColumn===t&&a.getDataModelOption().dataModel.getKey()===o.getKey()&&a.getDataModelOption().option===n);this.getSimilaritiesDataModelBySheetColumn=(t,o)=>this.sheetColumnDataModelOptionSimilarities.filter(n=>n.getSheetColumnOption().sheetColumn===t&&n.getDataModelOption().dataModel.getKey()===o.getKey());this.getRawSheetColumnDataModelOptionSimilarities=()=>this.sheetColumnDataModelOptionSimilarities;this.isAlreadyMapping=(t,o)=>!!this.mapSheetColumnDataModelOptions.some(n=>n.sheetColumn.equal(t)&&o===n.dataModel);this.sheetColumnDataModelOptionSimilarities=t,this.mapSheetColumnDataModelOptions=o}merge(t){let o=t.getRawSheetColumnDataModelOptionSimilarities(),n=t.mapSheetColumnDataModelOptions;for(let a=0;a<this.sheetColumnDataModelOptionSimilarities.length;++a)o.find(s=>{let l=s.getDataModelOption(),c=s.getSheetColumnOption(),u=this.sheetColumnDataModelOptionSimilarities[a].getSheetColumnOption(),d=this.sheetColumnDataModelOptionSimilarities[a].getDataModelOption();return c.option===u.option&&c.sheetColumn.getColumnKey()===u.sheetColumn.getColumnKey()&&l.option===d.option&&l.dataModel.getKey()===d.dataModel.getKey()})||o.push(this.sheetColumnDataModelOptionSimilarities[a]);for(let a=0;a<this.mapSheetColumnDataModelOptions.length;++a)n.push(this.mapSheetColumnDataModelOptions[a]);return new r({sheetColumnDataModelOptionSimilarities:o,mapSheetColumnDataModelOptions:n})}},Pp=ay;var sy=class{constructor({calculateSimilarityResult:t,sheets:o,dataModels:n,options:a={}}){this.parseSheetOption=t=>["true","false"].includes(t)?JSON.parse(t):t;this.getSheetColumnDataModelSimilarityList=()=>{let t=this.calculateSimilarityResult.result.map(n=>n.suggestions.map(a=>{let i=this.dataModels.find(l=>{let c=l.getKey(),u=a.key;return this.options?.isAutoMapping===!0&&(c=ya(l.getKey()),u=ya(a.key)),!!(c===u||l.getAlternativeMatches().includes(a.key))}),s=[];for(let l=0;l<this.sheets.length;l++)this.sheets[l].getColumnsByKey(n.label,this.options?.isAutoMapping).forEach(u=>{s.push(u)});return s.map(l=>i&&l?new Q8({dataModel:i,sheetColumn:l,similarity:new bn({similarity:a.value})}):new Oh)})),o=[];return iy(iy(iy(t))).forEach(n=>{let a=!1;o.forEach((i,s)=>{!i.isNull()&&i.getDataModel()===n.getDataModel()&&i.getSheetColumn()===n.getSheetColumn()&&(a=!0,n.getSimilarity()>i.getSimilarity()&&(o[s]=n))}),a||o.push(n)}),new Dh({sheetColumnDataModelSimilarities:o})};this.generateSheetColumnDataModelOptionSimilarity=({sheetOption:t,dataModel:o,similarities:n,sheetColumn:a,sheetColumnDataModelOptionSimilaritiesHashMap:i})=>{let s={option:this.parseSheetOption(t),sheetColumn:a},l=Object.keys(n);for(let c=0;c<l.length;++c){let u=l[c],d=n[u],p=[];if(o&&s.sheetColumn&&o.isDropdown()){let m=[];if(o.getType()==="boolean")m=[u];else{let h=o.getOptions();u===""&&d>0&&m.push("");for(let g=0;g<h.length;++g){let b=h[g];b.label===u&&m.push(b.value)}}for(let h=0;h<m.length;++h){let g=m[h];g?.length>0||g.length===0&&d>0?p.push(new e9({dataModelOption:{dataModel:o,option:g},similarity:new bn({similarity:d}),sheetColumnOption:s})):p.push(new Dp)}}else p.push(new Dp);for(let m=0;m<p.length;++m){let h=!1,g=p[m];if(!g.isNull()){let b=i[g.hash()];b&&(h=!0,g.getSimilarity().getValue()>b.getSimilarity().getValue()&&(i[g.hash()]=g))}h||(i[g.hash()]=g)}}};this.getSheetColumnDataModelOptionSimilarityList=t=>{let o={},n=this.calculateSimilarityResult,a=[];for(let l=0;l<n.result.length;++l){let c=n.result[l],u=c.optionMappings,d;if(t)d=t;else for(let m=0;m<this.sheets.length;m++){let h=this.sheets[m].getColumn(c.label,this.options?.isAutoMapping);if(h){d=h;break}}let p=Object.keys(u);for(let m=0;m<p.length;++m){let h=p[m],g=u[h],b=this.dataModels.find(C=>{let y=C.getKey(),S=h;return this.options?.isAutoMapping===!0&&(y=ya(y),S=ya(S)),y===S});b&&d&&a.push({sheetColumn:d,dataModel:b});let w=Object.keys(g);for(let C=0;C<w.length;++C){let y=w[C],S=g[y];this.generateSheetColumnDataModelOptionSimilarity({sheetOption:y,similarities:S,dataModel:b,sheetColumnDataModelOptionSimilaritiesHashMap:o,sheetColumn:d})}}}let i=[],s=Object.keys(o);for(let l=0;l<s.length;++l){let c=s[l];o[c].isNull()||i.push(o[c])}return new Pp({sheetColumnDataModelOptionSimilarities:i,mapSheetColumnDataModelOptions:a})};this.calculateSimilarityResult=t,this.sheets=o,this.dataModels=n,this.options=a}static{this.mergeCalculateSimilarityResultOptions=(t,o)=>{let n={result:[...t.result]};for(let a=0;a<o.result.length;++a){let i=o.result[a],s;for(let l=0;l<n.result.length;++l)if(i.label===n.result[l].label){s=n.result[l];break}if(s){let l=Object.keys(s.optionMappings);for(let u=0;u<l.length;++u){let d=l[u];s.optionMappings[d]={...s.optionMappings[d],...i.optionMappings[d]??{}}}let c=Object.keys(i.optionMappings);for(let u=0;u<c.length;++u){let d=c[u];s.optionMappings[d]={...s.optionMappings[d]??{},...i.optionMappings[d]}}}}return n}}},wn=sy;var Ah=class{constructor(t,o){this.isUploadSheetData=t=>t.some(o=>o.getOptionMappingConfiguration().processingMode==="node");this.matchColumns=async(t,o,n)=>{let{processingMode:a,layers:i,threshold:s}=o;return a==="node"?this.backendMatchingRepository.matchColumns(t,{layers:i,threshold:s},n):this.browserMatchingRepository.matchColumns(t,{layers:i,threshold:s},n)};this.matchInitialOptions=async(t,o,n,a,i)=>{let s=t.getAllSheets(),l=t.getAllDataModels(),c=o.filter(g=>{let b=g.matchedDataModel?.dataModel;return!!b&&b.isDropdown()}),u=await Promise.all(c.map(async g=>{let b=g.matchedDataModel.dataModel,w={dataModel:b,sheetColumn:g.sheetColumn,sheets:s,dataModels:l,licenseKey:a,sessionId:i},C;return b.getOptionMappingConfiguration().processingMode==="node"?C=this.backendMatchingRepository:C=this.browserMatchingRepository,(await C.matchOption({...w,sheetColumn:w.sheetColumn})).calculateSimilarityResult})),p={result:[...[...n.result].map(g=>({...g,optionMappings:{}}))]};for(let g=0;g<u.length;++g)p=wn.mergeCalculateSimilarityResultOptions(p,u[g]);let h=new wn({calculateSimilarityResult:p,sheets:s,dataModels:l}).getSheetColumnDataModelOptionSimilarityList();return{calculateSimilarityResult:p,sheetColumnDataModelOptionSimilarityList:h}};this.matchOption=async({dataModel:t,sheetColumn:o,sheets:n,dataModels:a,licenseKey:i,processMode:s,sessionId:l})=>{let c={dataModel:t,sheetColumn:o,sheets:n,dataModels:a,licenseKey:i,sessionId:l};return s==="node"?this.backendMatchingRepository.matchOption(c):this.browserMatchingRepository.matchOption(c)};this.uploadData=async(t,o,n,a)=>n.some(i=>i.getOptionMappingConfiguration().processingMode==="node")?this.backendMatchingRepository.prepareData(t,o,a):Promise.resolve();this.clearData=(t,o)=>{this.isUploadSheetData(o)&&this.backendMatchingRepository.clearData(t)};this.complete=(t,o)=>{this.isUploadSheetData(o)&&this.backendMatchingRepository.complete(t)};this.browserMatchingRepository=t,this.backendMatchingRepository=o}};import{isNil as AQ}from"lodash";import{isNil as t9}from"lodash";var r9=/[,;|](?=['"`])/g,PQ=/[;]|[|]|,[ a-zA-Z]/g,_a=r=>t9(r)?!1:`${r}`.match(r9)?!0:!!`${r}`.match(PQ),Ia=r=>{if(t9(r))return[];let t=`${r}`.split(r9);if(t.length===1){t=[];let o=`${r}`.split(/[;]|[|]|, /g);for(let n=0;n<o.length;n++){let a=o[n];/,[a-zA-Z]/.test(a)?t=t.concat(a.split(",")):t.push(a)}}return t.map(o=>o.replace(/[\s\-_&+'"`]/g," ").trim())};var Ap=class r{constructor({spreadSheetList:t,dataModels:o,licenseKey:n}){this.getColumns=()=>{let t=this.dataModels,o=[];for(let n=0;n<t.length;n++){let a=r.mapDataModelToColumn(t[n]);a&&o.push(a)}return o};this.getInputHeaderRow=()=>{let t=[];return this.allSheets.forEach(o=>{o.getColumns().forEach(a=>{t.push(a.getColumnKey())})}),t};this.getAllSheets=()=>this.allSheets;this.getAllDataModels=()=>this.dataModels;this.getLicenseKey=()=>this.licenseKey;this.spreadSheetList=t,this.dataModels=o,this.allSheets=this.spreadSheetList.getSelectedSheets(),this.licenseKey=n}static{this.getDropdownOptions=t=>t.isCategoryType()?t.getOptions().map(n=>({label:n.label,value:n.value,alternativeMatches:n.alternativeMatches})):null}static{this.getOptionMappingConfiguration=t=>{if(t.isDropdown())return t.getOptionMappingConfiguration()}}static{this.getType=t=>{switch(t.getType()){case"boolean":return"boolean";case"single-select":case"country_code_alpha_2":case"country_code_alpha_3":case"currency_code":return"category";case"int":case"float":return"number";default:return"string"}}}static{this.mapDataModelToColumn=t=>({key:t.getKey(),label:t.getLabel(),description:t.getDescription(),isMultiple:t.getIsMultiSelection(),dropdownOptions:this.getDropdownOptions(t),columnType:this.getType(t).toUpperCase(),alternativeMatches:t.getAlternativeMatches(),optionMappingConfiguration:this.getOptionMappingConfiguration(t)})}static{this.parseValue=t=>AQ(t)?"":`${t}`}static{this.getInputJsonBySheetColumn=(t,o)=>{let n=[],a=t.getUniqueRows(),i=a.length,s={},l=t.getColumnKey(),c=0;for(let p=0;p<i;p++){let m=r.parseValue(a[p]);_a(m)&&o.getIsMultiSelection()?Ia(m).forEach(b=>{s[l]?s[l].push(b):s[l]=[b]}):(n[c]?n[c][l]=m:n[c]={[l]:m},c++)}let u=Object.keys(s),d=n.length;for(let p=0;p<u.length;p++){let m=u[p];s[m].forEach((g,b)=>{let w=d+b;n[w]?n[w][m]=g:n[w]={[m]:g}})}return[n]}}},Np=Ap;var ly=class{constructor(){this.matchColumns=async(t,o,n)=>{let a=t.getAllSheets(),i=t.getAllDataModels(),s=await this.matchColumnsTask(t,o,n),c=new wn({calculateSimilarityResult:s[0],sheets:a,dataModels:i}).getSheetColumnDataModelSimilarityList();return{calculateSimilarityResult:s[0],sheetColumnDataModelSimilarityList:c}};this.matchOption=async({dataModel:t,sheetColumn:o,sheets:n,dataModels:a,licenseKey:i,sessionId:s})=>{let c=(await this.matchOptionTask({dataModel:t,sheetColumn:o,sheets:n,licenseKey:i,sessionId:s}))[0];this.matchBoolean([c],n,a);let d=new wn({calculateSimilarityResult:c,sheets:n,dataModels:a}).getSheetColumnDataModelOptionSimilarityList(o);return{calculateSimilarityResult:c,sheetColumnDataModelOptionSimilarityList:d}};this.matchBoolean=(t,o,n)=>{t.forEach((a,i)=>{a.result.forEach(s=>{let c=o[i].getColumn(s.label);c&&n.filter(d=>d.getType()==="boolean").forEach(d=>{let p=c.getUniqueRows();for(let m=0;m<p.length;m++){let h=p[m],g=null,b=`${h}`.toLowerCase().trim();if(Vi().includes(b)?g={true:1}:Hi().includes(b)&&(g={false:1}),g){let w=s.optionMappings[d.getKey()]??{};s.optionMappings[d.getKey()]={...w,[`${h}`]:g}}}})})})}}},Nh=ly;import{flatten as NQ}from"lodash";var cy=class{constructor(t,o){this.fileName="";this.parseData=t=>{let o=[],n=0,a=NQ(t.map(i=>i.getColumns()));o[0]=[],a.forEach((i,s)=>{o[0][s]=i.getColumnKey(),i.getUniqueRows().length>n&&(n=i.getUniqueRows().length)});for(let i=0;i<n;++i){o[i+1]=[];for(let s=0;s<a.length;++s){let l=a[s].getUniqueRows()[i]??"";o[i+1][s]=l}}return o};this.initialize=()=>{this.fileName=""};this.upload=async(t,o,n)=>{this.initialize();let a=this.parseData(t),i=await this.uploadInputSheetAPI.createFile(o,n);return this.fileName=i.file_name,this.inputSheetClearer.add(this.fileName),this.uploadInputSheetAPI.uploadData(i.signed_url,a,n)};this.getFileName=()=>this.fileName;this.clearData=t=>{this.initialize(),this.inputSheetClearer.clear(t)};this.complete=t=>{let o=this.fileName;o&&(this.initialize(),this.inputSheetClearer.remove(o),this.uploadInputSheetAPI.clearFile(o,t).catch(()=>{}))};this.uploadInputSheetAPI=t,this.inputSheetClearer=o}},o9=cy;import LQ from"axios";var Ur=class{constructor(t,o={}){this.httpClient=LQ.create(o),this.sendApiKey=t.sendApiKey,this.setupInterceptors()}setupInterceptors(){this.httpClient.interceptors.request.use(t=>t,t=>Promise.reject(t)),this.httpClient.interceptors.response.use(t=>t,t=>Promise.reject(t))}getHttpClient(){return this.httpClient}async get(t,o,n){return(await this.httpClient.request({method:"GET",url:t,params:o,...n})).data}async post(t,o,n={}){return(await this.httpClient.request({method:"POST",url:t,data:o,...n})).data}async put(t,o,n={}){return(await this.httpClient.request({method:"PUT",url:t,data:o,...n})).data}async patch(t,o,n={}){return(await this.httpClient.request({method:"PATCH",url:t,data:o,...n})).data}async delete(t,o={}){return(await this.httpClient.request({method:"DELETE",url:t,...o})).data}},Ki=Ur;var vt={csv:"text/csv",xlsx:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",xls:"application/vnd.ms-excel",xml:"text/xml",json:"application/json",tsv_text:"text/tab-separated-values",tsv:".tsv",pdf:"application/pdf",xlsb:"application/vnd.ms-excel.sheet.binary.macroEnabled.12"},n9=[vt.csv,vt.tsv,vt.tsv_text,vt.json];var uy=class r{constructor(){this.framework="react";this.versionNumber="4.0.2";this.uploadedFiles={};this.frameworkVersion="1.0.0";this.eventStack={};this.reviewEntriesLog={};this.parseSession=!1;this.startSession={};this.reloadSession={};this.verifySession={};this.getMeta=()=>({version:this.getVersionNumber(),framework:this.getFrameWork(),origin:this.getOrigin(),framework_version:this.getFrameworkVersion()});this.setParseSession=()=>{this.parseSession=!0};this.getParseSession=()=>this.parseSession;this.clearParseSession=()=>{this.parseSession=!1};this.setStartSession=t=>{this.startSession[t]=!0};this.getStartSession=t=>this.startSession[t];this.clearStartSession=t=>{this.startSession[t]=void 0};this.setReloadSession=t=>{this.reloadSession[t]=!0};this.getReloadSession=t=>this.reloadSession[t];this.clearReloadSession=t=>{this.reloadSession[t]=void 0};this.setVerifySession=t=>{this.verifySession[t]=!0};this.getVerifySession=t=>this.verifySession[t];this.clearVerifySession=t=>{this.verifySession[t]=void 0}}static{this.eventMapping={"/":"upload","/select-sheet":"sheet_selection","/select-header":"header_selection","/match-column":"match_columns","/review-entries":"review_entries","/join-column":"join_sheets"}}static getInstance(){return r.instance||(r.instance=new r),r.instance}setFrameWork(t){this.framework=t}getFrameWork(){return this.framework}setOrigin(t){this.origin=t}getOrigin(){return this.origin??""}setVersionNumber(t){this.versionNumber=t}getVersionNumber(){return this.versionNumber}setFrameworkVersion(t){this.frameworkVersion=t}getFrameworkVersion(){return this.frameworkVersion}pushEventStack(t,o){this.eventStack[t]||(this.eventStack[t]=[]);let n=this.eventStack[t][this.eventStack[t].length-1];o.action==="end"&&(n?.eventType===`${r.eventMapping[o.step]||o.step}_end`||n?.eventType!==`${r.eventMapping[o.step]||o.step}_start`)||this.eventStack[t].length>0&&o.action==="start"&&n?.eventType.includes("_start")&&n?.eventType!==`${r.eventMapping[o.step]||o.step}_start`||(this.eventStack[t].push({eventType:`${r.eventMapping[o.step]||o.step}_${o.action}`,timestamp:new Date().toISOString()}),this.eventStack[t].length>1&&this.eventStack[t][this.eventStack[t].length-1].eventType===this.eventStack[t][this.eventStack[t].length-2].eventType&&this.eventStack[t].splice(this.eventStack[t].length-2,1))}removeEventStack(t,o){this.eventStack[t]=this.eventStack[t].filter(n=>n.eventType!==o)}getEventStack(t){return this.eventStack[t]}clearEventStack(t){this.eventStack[t]=[]}setUploadedFiles(t,o){this.uploadedFiles[t]||this.clearUploadedFilesStack(t),o.forEach(n=>this.uploadedFiles[t].push({fileSize:n.fileSize,fileType:this.mapSupportedType(n.type)}))}getUploadFiles(t){return this.uploadedFiles?.[t]||[]}clearUploadedFilesStack(t){this.uploadedFiles[t]=[]}setReviewEntriesLog(t,o){this.reviewEntriesLog[t]=o}getReviewEntriesLog(t){return this.reviewEntriesLog?.[t]||{}}setTotalCleanings(t,o){this.reviewEntriesLog[t].total_cleanings=o}clearReviewEntriesLog(t){this.reviewEntriesLog[t]={total_rows:0,total_error_rows:0,total_error_cells:0,total_columns:0,total_cleanings:0}}mapSupportedType(t){for(let[o,n]of Object.entries(vt))if(t===n)return o;return t}},Ce=uy;var dy=class extends Ur{constructor(){super(...arguments);this.createFile=async(o,n)=>this.post("/file/directory",{},{headers:{apikey:this.sendApiKey?qt:void 0,Authorization:o,originRequest:Ce.getInstance().getOrigin()},signal:n.signal});this.uploadData=async(o,n,a)=>this.put(o,n,{baseURL:"",signal:a.signal});this.clearFile=async(o,n)=>this.delete(`/file?file_name=${o}`,{headers:{apikey:this.sendApiKey?qt:void 0,Authorization:n,originRequest:Ce.getInstance().getOrigin()}})}},Lh=dy;var py=class{constructor(t){this.fileNames=[];this.remove=t=>{this.fileNames=this.fileNames.filter(o=>o!==t)};this.add=t=>{this.fileNames.push(t)};this.clear=async t=>{let o=[...this.fileNames];for(let n=0;n<o.length;++n){let a=o[n];this.remove(a),await this.uploadInputSheetAPI.clearFile(a,t).catch(()=>{})}};this.uploadInputSheetAPI=t}},a9=py;var my=class extends Nh{constructor(o,n,a={}){super();this.prepareData=async(o,n,a)=>{await this.uploadInputSheetRepository.upload(o,n,a)};this.clearData=o=>{this.uploadInputSheetRepository.clearData(o)};this.complete=o=>{this.uploadInputSheetRepository.complete(o)};this.matchColumnsTask=(o,n,a)=>{let i=o.getColumns().map(c=>({key:c.key,label:c.label,alternativeMatches:c.alternativeMatches})),s=o.getLicenseKey(),l=o.getInputHeaderRow();return this.nodeEngine.matchColumns(l,i,s,n,a)};this.matchOptionTask=({dataModel:o,sheets:n,sheetColumn:a,licenseKey:i,sessionId:s})=>{let l=Np.mapDataModelToColumn(o),c=[];for(let d=0;d<n.length;d++){let p=n[d];for(let m=0;m<p.getColumns().length;m++){let h=p.getColumns()[m];c.push(h)}}let u=c.findIndex(d=>d===a);return this.nodeEngine.matchOption(this.uploadInputSheetRepository.getFileName(),[{column:{dropdownOptions:l.dropdownOptions,isMultiSelect:l.isMultiple,key:l.key,label:l.label,optionMappingConfiguration:l.optionMappingConfiguration},column_index:u}],i,s)};this.nodeEngine=o;let i=new Lh(n,a),s=new a9(i);this.uploadInputSheetRepository=new o9(i,s)}},i9=my;import{flatten as HQ}from"lodash";import{createEndpoint as $Q,releaseProxy as FQ,wrap as VQ}from"comlink";var yn=({workerFile:r,hostWorkerUrl:t})=>{let o=null,n=null;return{init:async()=>{if(!o||!n)try{t?o=o=new Worker(t):o=r(),o&&await new Promise((l,c)=>{if(!o)return c();o.addEventListener("error",u=>{u.preventDefault(),o?.terminate(),n?.[$Q](),n=null,c(new Error("has something wrong with worker"))}),n=VQ(o),n.check().then(l).catch(c)})}catch{}},clear:()=>{n&&(n?.[FQ](),o?.terminate(),n=null)},getRemote:()=>n}};var Cn={IMPORT:"importWorkerBundle.js",HOOKS:"hooks.js",MATCHING:"matchingValues.js",ML:"ml.js",SEARCH_AND_REPLACE:"searchAndReplace.js",JAVASCRIPT:"javascript.js"};var xn=(...r)=>r.map((t,o)=>o===0?t.replace(/\/+$/,""):t.replace(/^\/+|\/+$/g,"")).join("/");var fy=({workersBaseUrl:r})=>{let t=r?xn(r,Cn.ML):"",{init:o,getRemote:n,clear:a}=yn({hostWorkerUrl:t,workerFile:()=>new Worker(new URL("workers/mapping/index.js",import.meta.url),{type:"module"})});return{init:o,clear:a,getOptionMappings:(...l)=>{let c=n();return c?c.getOptionMappings(...l):U7(...l)},getColumnMappings:(...l)=>{let c=n();return c?c.getColumnMappings(...l):j7(...l)}}};var $h=class{constructor({workersBaseUrl:t}){this.getColumnMappings=async(t,o,n)=>{let a=fy({workersBaseUrl:this.workersBaseUrl});return await a.init(),a.getColumnMappings(t,o,n).then(i=>(a.clear(),i)).catch(i=>(a.clear(),Promise.reject(i)))};this.getOptionMappings=async(t,o)=>{let n=fy({workersBaseUrl:this.workersBaseUrl});return await n.init(),n.getOptionMappings(t,o).then(a=>(n.clear(),a)).catch(a=>(n.clear(),Promise.reject(a)))};this.workersBaseUrl=t}};var Fh=class{constructor({workersBaseUrl:t}){this.matchColumns=async(t,o,n)=>{let a=await this.mappingEngine.getColumnMappings(t,o.map(i=>`${i}`),n);return this.parseColumnMappingResult(HQ(a))};this.matchOption=async(t,o)=>Promise.all(o.map(n=>this.matchOptionItem(t,n)));this.matchOptionItem=async(t,o)=>new Promise((n,a)=>{setTimeout(()=>{this.mappingEngine.getOptionMappings(t,o).then(i=>{let s={result:[{optionMappings:{[i.tdmColumnKey]:i.suggestions},label:i.inputColumn,suggestions:[{key:i.tdmColumnKey,value:1,isSameWord:!0}]}]};n(s)}).catch(i=>{a(i)})},100)});this.parseColumnMappingResult=t=>{let o=[];for(let n=0;n<t.length;n++){let a=t[n],i=[];for(let s=0;s<a.columnSuggestions.length;s++){let l=a.columnSuggestions[s];i.push({key:l.key,value:l.percentage})}o.push({label:a.inputColumnKey,suggestions:i,optionMappings:{}})}return[{result:o}]};this.mappingEngine=new $h({workersBaseUrl:t})}};import{flatten as BQ}from"lodash";var Vh=class extends Ur{constructor(){super(...arguments);this.matchColumns=async(o,n,a,i,s)=>{let l={apikey:this.sendApiKey?qt:void 0,authorization:a},c=await this.post("/execute/column",{tdmColumns:n,inputColumns:o,options:{columnMappingConfiguration:{layers:i.layers,threshold:i.threshold},product:"importer"},sessionId:s},{headers:l});return this.parseColumnMappingResult(c)};this.matchOption=async(o,n,a,i)=>{let s={apikey:this.sendApiKey?qt:void 0,authorization:a},l=await Promise.all(n.map(c=>this.post("/execute/option",{tdmColumn:{key:c.column.key,label:c.column.label,isMultiSelect:c.column.isMultiSelect,dropdownOptions:c.column.dropdownOptions},options:{product:"importer",fileName:o,columnIndex:c.column_index,headerRowIndex:0,optionMappingConfiguration:{layers:c.column.optionMappingConfiguration?.layers,threshold:c.column.optionMappingConfiguration?.threshold}},sessionId:i},{headers:s})));return this.parseOptionMappingResult(BQ(l))};this.parseColumnMappingResult=o=>{let n=[];for(let a=0;a<o.length;a++){let i=o[a],s=[],l=Object.keys(i.suggestions);for(let c=0;c<l.length;c++){let u=l[c],d=i.suggestions[u];s.push({key:u,value:d})}n.push({label:i.inputColumn,suggestions:s,optionMappings:{}})}return[{result:n}]}}parseOptionMappingResult(o){let n=[];for(let a=0;a<o.length;a++){let i=o[a];n.push({optionMappings:{[i.tdmColumnKey]:i.suggestions},label:i.inputColumn,suggestions:[{key:i.tdmColumnKey,value:1,isSameWord:!0}]})}return[{result:n}]}};var hy=class extends Nh{constructor(o){super();this.matchColumnsTask=(o,n)=>{let a=o.getColumns().map(s=>({...s,dropdownOptions:[]})),i=o.getInputHeaderRow();return this.browserEngine.matchColumns(a,i,n)};this.matchOptionTask=({dataModel:o,sheetColumn:n})=>{let a=Np.mapDataModelToColumn(o),i=Np.getInputJsonBySheetColumn(n,o);return this.browserEngine.matchOption(a,i)};this.browserEngine=o}},s9=hy;import{jsx as GQ}from"react/jsx-runtime";var gy=zQ({executing:!0,setExecuting:()=>{},abort:()=>{}}),qQ=({children:r})=>{let[t,o]=WQ(!0),{baseUrl:n,isSelfHosted:a,baseMappingUrl:i,workersBaseUrl:s}=ee(),l=jQ(new AbortController),c=l9(()=>new Fh({workersBaseUrl:s??""}),[s]),u=l9(()=>{let p=new s9(c),m=new Vh({sendApiKey:!a},{baseURL:i}),h=new i9(m,{sendApiKey:!a},{baseURL:n});return new Ah(p,h)},[n,a,c,i]),d=UQ(()=>{l.current.abort(),l.current=new AbortController},[l]);return GQ(gy.Provider,{value:{matchingStrategy:u,executing:t,setExecuting:o,abortController:l,abort:d},children:r})},c9=qQ;import"simplebar/dist/simplebar.min.css";var vy=document.createElement("style");vy.type="text/css";vy.appendChild(document.createTextNode(`.nuvo-tailwind .\\!container{width:100%!important}.nuvo-tailwind .container{width:100%}@media (min-width:375px){.nuvo-tailwind .\\!container{max-width:375px!important}.nuvo-tailwind .container{max-width:375px}}@media (min-width:412px){.nuvo-tailwind .\\!container{max-width:412px!important}.nuvo-tailwind .container{max-width:412px}}@media (min-width:468px){.nuvo-tailwind .\\!container{max-width:468px!important}.nuvo-tailwind .container{max-width:468px}}@media (min-width:640px){.nuvo-tailwind .\\!container{max-width:640px!important}.nuvo-tailwind .container{max-width:640px}}@media (min-width:740px){.nuvo-tailwind .\\!container{max-width:740px!important}.nuvo-tailwind .container{max-width:740px}}@media (min-width:768px){.nuvo-tailwind .\\!container{max-width:768px!important}.nuvo-tailwind .container{max-width:768px}}@media (min-width:820px){.nuvo-tailwind .\\!container{max-width:820px!important}.nuvo-tailwind .container{max-width:820px}}@media (min-width:885px){.nuvo-tailwind .\\!container{max-width:885px!important}.nuvo-tailwind .container{max-width:885px}}@media (min-width:990px){.nuvo-tailwind .\\!container{max-width:990px!important}.nuvo-tailwind .container{max-width:990px}}@media (min-width:1024px){.nuvo-tailwind .\\!container{max-width:1024px!important}.nuvo-tailwind .container{max-width:1024px}}@media (min-width:1190px){.nuvo-tailwind .\\!container{max-width:1190px!important}.nuvo-tailwind .container{max-width:1190px}}@media (min-width:1280px){.nuvo-tailwind .\\!container{max-width:1280px!important}.nuvo-tailwind .container{max-width:1280px}}@media (min-width:1440px){.nuvo-tailwind .\\!container{max-width:1440px!important}.nuvo-tailwind .container{max-width:1440px}}@media (min-width:1441px){.nuvo-tailwind .\\!container{max-width:1441px!important}.nuvo-tailwind .container{max-width:1441px}}@media (min-width:1536px){.nuvo-tailwind .\\!container{max-width:1536px!important}.nuvo-tailwind .container{max-width:1536px}}@media (min-width:1920px){.nuvo-tailwind .\\!container{max-width:1920px!important}.nuvo-tailwind .container{max-width:1920px}}.nuvo-tailwind *,.nuvo-tailwind :after,.nuvo-tailwind :before{border:0 solid #e5e7eb;box-sizing:border-box}
|
|
99
|
+
/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com*/.nuvo-tailwind :after,.nuvo-tailwind :before{--tw-content:""}.nuvo-tailwind :host,.nuvo-tailwind html{-webkit-text-size-adjust:100%;font-feature-settings:normal;-webkit-tap-highlight-color:transparent;font-family:Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}.nuvo-tailwind body{line-height:inherit;margin:0}.nuvo-tailwind hr{border-top-width:1px;color:inherit;height:0}.nuvo-tailwind abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.nuvo-tailwind h1,.nuvo-tailwind h2,.nuvo-tailwind h3,.nuvo-tailwind h4,.nuvo-tailwind h5,.nuvo-tailwind h6{font-size:inherit;font-weight:inherit}.nuvo-tailwind a{color:inherit;text-decoration:inherit}.nuvo-tailwind b,.nuvo-tailwind strong{font-weight:bolder}.nuvo-tailwind code,.nuvo-tailwind kbd,.nuvo-tailwind pre,.nuvo-tailwind samp{font-feature-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;font-variation-settings:normal}.nuvo-tailwind small{font-size:80%}.nuvo-tailwind sub,.nuvo-tailwind sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.nuvo-tailwind sub{bottom:-.25em}.nuvo-tailwind sup{top:-.5em}.nuvo-tailwind table{border-collapse:collapse;border-color:inherit;text-indent:0}.nuvo-tailwind button,.nuvo-tailwind input,.nuvo-tailwind optgroup,.nuvo-tailwind select,.nuvo-tailwind textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}.nuvo-tailwind button,.nuvo-tailwind select{text-transform:none}.nuvo-tailwind [type=button],.nuvo-tailwind [type=reset],.nuvo-tailwind [type=submit],.nuvo-tailwind button{-webkit-appearance:button;background-color:transparent;background-image:none}.nuvo-tailwind :-moz-focusring{outline:auto}.nuvo-tailwind :-moz-ui-invalid{box-shadow:none}.nuvo-tailwind progress{vertical-align:baseline}.nuvo-tailwind ::-webkit-inner-spin-button,.nuvo-tailwind ::-webkit-outer-spin-button{height:auto}.nuvo-tailwind [type=search]{-webkit-appearance:textfield;outline-offset:-2px}.nuvo-tailwind ::-webkit-search-decoration{-webkit-appearance:none}.nuvo-tailwind ::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}.nuvo-tailwind summary{display:list-item}.nuvo-tailwind blockquote,.nuvo-tailwind dd,.nuvo-tailwind dl,.nuvo-tailwind figure,.nuvo-tailwind h1,.nuvo-tailwind h2,.nuvo-tailwind h3,.nuvo-tailwind h4,.nuvo-tailwind h5,.nuvo-tailwind h6,.nuvo-tailwind hr,.nuvo-tailwind p,.nuvo-tailwind pre{margin:0}.nuvo-tailwind fieldset{margin:0;padding:0}.nuvo-tailwind legend{padding:0}.nuvo-tailwind menu,.nuvo-tailwind ol,.nuvo-tailwind ul{list-style:none;margin:0;padding:0}.nuvo-tailwind dialog{padding:0}.nuvo-tailwind textarea{resize:vertical}.nuvo-tailwind input::-moz-placeholder,.nuvo-tailwind textarea::-moz-placeholder{color:#9ca3af;opacity:1}.nuvo-tailwind input::placeholder,.nuvo-tailwind textarea::placeholder{color:#9ca3af;opacity:1}.nuvo-tailwind [role=button],.nuvo-tailwind button{cursor:pointer}.nuvo-tailwind :disabled{cursor:default}.nuvo-tailwind audio,.nuvo-tailwind canvas,.nuvo-tailwind embed,.nuvo-tailwind iframe,.nuvo-tailwind img,.nuvo-tailwind object,.nuvo-tailwind svg,.nuvo-tailwind video{display:block;vertical-align:middle}.nuvo-tailwind img,.nuvo-tailwind video{height:auto;max-width:100%}.nuvo-tailwind [hidden]{display:none}.nuvo-tailwind [multiple],.nuvo-tailwind [type=date],.nuvo-tailwind [type=datetime-local],.nuvo-tailwind [type=email],.nuvo-tailwind [type=month],.nuvo-tailwind [type=number],.nuvo-tailwind [type=password],.nuvo-tailwind [type=search],.nuvo-tailwind [type=tel],.nuvo-tailwind [type=text],.nuvo-tailwind [type=time],.nuvo-tailwind [type=url],.nuvo-tailwind [type=week],.nuvo-tailwind input:where(:not([type])),.nuvo-tailwind select,.nuvo-tailwind textarea{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem}.nuvo-tailwind [multiple]:focus,.nuvo-tailwind [type=date]:focus,.nuvo-tailwind [type=datetime-local]:focus,.nuvo-tailwind [type=email]:focus,.nuvo-tailwind [type=month]:focus,.nuvo-tailwind [type=number]:focus,.nuvo-tailwind [type=password]:focus,.nuvo-tailwind [type=search]:focus,.nuvo-tailwind [type=tel]:focus,.nuvo-tailwind [type=text]:focus,.nuvo-tailwind [type=time]:focus,.nuvo-tailwind [type=url]:focus,.nuvo-tailwind [type=week]:focus,.nuvo-tailwind input:where(:not([type])):focus,.nuvo-tailwind select:focus,.nuvo-tailwind textarea:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid transparent;outline-offset:2px}.nuvo-tailwind input::-moz-placeholder,.nuvo-tailwind textarea::-moz-placeholder{color:#6b7280;opacity:1}.nuvo-tailwind input::placeholder,.nuvo-tailwind textarea::placeholder{color:#6b7280;opacity:1}.nuvo-tailwind ::-webkit-datetime-edit-fields-wrapper{padding:0}.nuvo-tailwind ::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}.nuvo-tailwind ::-webkit-datetime-edit{display:inline-flex}.nuvo-tailwind ::-webkit-datetime-edit,.nuvo-tailwind ::-webkit-datetime-edit-day-field,.nuvo-tailwind ::-webkit-datetime-edit-hour-field,.nuvo-tailwind ::-webkit-datetime-edit-meridiem-field,.nuvo-tailwind ::-webkit-datetime-edit-millisecond-field,.nuvo-tailwind ::-webkit-datetime-edit-minute-field,.nuvo-tailwind ::-webkit-datetime-edit-month-field,.nuvo-tailwind ::-webkit-datetime-edit-second-field,.nuvo-tailwind ::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}.nuvo-tailwind select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}.nuvo-tailwind [multiple],.nuvo-tailwind [size]:where(select:not([size="1"])){background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}.nuvo-tailwind [type=checkbox],.nuvo-tailwind [type=radio]{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#2563eb;display:inline-block;flex-shrink:0;height:1rem;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem}.nuvo-tailwind [type=checkbox]{border-radius:0}.nuvo-tailwind [type=radio]{border-radius:100%}.nuvo-tailwind [type=checkbox]:focus,.nuvo-tailwind [type=radio]:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid transparent;outline-offset:2px}.nuvo-tailwind [type=checkbox]:checked,.nuvo-tailwind [type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}.nuvo-tailwind [type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}@media (forced-colors:active) {.nuvo-tailwind [type=checkbox]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.nuvo-tailwind [type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}@media (forced-colors:active) {.nuvo-tailwind [type=radio]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.nuvo-tailwind [type=checkbox]:checked:focus,.nuvo-tailwind [type=checkbox]:checked:hover,.nuvo-tailwind [type=radio]:checked:focus,.nuvo-tailwind [type=radio]:checked:hover{background-color:currentColor;border-color:transparent}.nuvo-tailwind [type=checkbox]:indeterminate{background-color:currentColor;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}@media (forced-colors:active) {.nuvo-tailwind [type=checkbox]:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}.nuvo-tailwind [type=checkbox]:indeterminate:focus,.nuvo-tailwind [type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:transparent}.nuvo-tailwind [type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}.nuvo-tailwind [type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}.nuvo-tailwind *,.nuvo-tailwind :after,.nuvo-tailwind :before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.nuvo-tailwind ::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.nuvo-tailwind .pointer-events-none{pointer-events:none}.nuvo-tailwind .\\!pointer-events-auto{pointer-events:auto!important}.nuvo-tailwind .pointer-events-auto{pointer-events:auto}.nuvo-tailwind .visible{visibility:visible}.nuvo-tailwind .invisible{visibility:hidden}.nuvo-tailwind .static{position:static}.nuvo-tailwind .fixed{position:fixed}.nuvo-tailwind .absolute{position:absolute}.nuvo-tailwind .relative{position:relative}.nuvo-tailwind .sticky{position:sticky}.nuvo-tailwind .inset-0{inset:0}.nuvo-tailwind .inset-2{inset:.5rem}.nuvo-tailwind .-left-0{left:0}.nuvo-tailwind .-left-0\\.5{left:-.125rem}.nuvo-tailwind .-left-1{left:-.25rem}.nuvo-tailwind .-left-full{left:-100%}.nuvo-tailwind .-top-px{top:-1px}.nuvo-tailwind .bottom-0{bottom:0}.nuvo-tailwind .bottom-1{bottom:.25rem}.nuvo-tailwind .bottom-1\\.5{bottom:.375rem}.nuvo-tailwind .bottom-14{bottom:3.5rem}.nuvo-tailwind .bottom-20{bottom:5rem}.nuvo-tailwind .bottom-4{bottom:1rem}.nuvo-tailwind .bottom-8{bottom:2rem}.nuvo-tailwind .bottom-px{bottom:1px}.nuvo-tailwind .left-0{left:0}.nuvo-tailwind .left-1\\/2{left:50%}.nuvo-tailwind .left-3{left:.75rem}.nuvo-tailwind .left-6{left:1.5rem}.nuvo-tailwind .right-0{right:0}.nuvo-tailwind .right-2{right:.5rem}.nuvo-tailwind .right-3{right:.75rem}.nuvo-tailwind .right-8{right:2rem}.nuvo-tailwind .top-0{top:0}.nuvo-tailwind .top-1\\/2{top:50%}.nuvo-tailwind .top-3{top:.75rem}.nuvo-tailwind .top-7{top:1.75rem}.nuvo-tailwind .top-8{top:2rem}.nuvo-tailwind .top-px{top:1px}.nuvo-tailwind .\\!z-180{z-index:180!important}.nuvo-tailwind .z-10{z-index:10}.nuvo-tailwind .z-101{z-index:101}.nuvo-tailwind .z-103{z-index:103}.nuvo-tailwind .z-170{z-index:170}.nuvo-tailwind .z-180{z-index:180}.nuvo-tailwind .z-20{z-index:20}.nuvo-tailwind .z-30{z-index:30}.nuvo-tailwind .z-40{z-index:40}.nuvo-tailwind .z-50{z-index:50}.nuvo-tailwind .order-1{order:1}.nuvo-tailwind .order-2{order:2}.nuvo-tailwind .order-3{order:3}.nuvo-tailwind .\\!my-auto{margin-bottom:auto!important;margin-top:auto!important}.nuvo-tailwind .-mx-3{margin-left:-.75rem;margin-right:-.75rem}.nuvo-tailwind .mx-0{margin-left:0;margin-right:0}.nuvo-tailwind .mx-1{margin-left:.25rem;margin-right:.25rem}.nuvo-tailwind .mx-2{margin-left:.5rem;margin-right:.5rem}.nuvo-tailwind .mx-4{margin-left:1rem;margin-right:1rem}.nuvo-tailwind .mx-6{margin-left:1.5rem;margin-right:1.5rem}.nuvo-tailwind .mx-6\\.5{margin-left:26px;margin-right:26px}.nuvo-tailwind .mx-auto{margin-left:auto;margin-right:auto}.nuvo-tailwind .mx-px{margin-left:1px;margin-right:1px}.nuvo-tailwind .my-1{margin-bottom:.25rem;margin-top:.25rem}.nuvo-tailwind .my-2{margin-bottom:.5rem;margin-top:.5rem}.nuvo-tailwind .my-3{margin-bottom:.75rem;margin-top:.75rem}.nuvo-tailwind .my-4{margin-bottom:1rem;margin-top:1rem}.nuvo-tailwind .my-6{margin-bottom:1.5rem;margin-top:1.5rem}.nuvo-tailwind .my-8{margin-bottom:2rem;margin-top:2rem}.nuvo-tailwind .\\!-mt-0{margin-top:0!important}.nuvo-tailwind .\\!mb-0{margin-bottom:0!important}.nuvo-tailwind .\\!mb-3{margin-bottom:.75rem!important}.nuvo-tailwind .\\!ml-0{margin-left:0!important}.nuvo-tailwind .\\!ml-1{margin-left:.25rem!important}.nuvo-tailwind .\\!mr-0{margin-right:0!important}.nuvo-tailwind .\\!mr-2{margin-right:.5rem!important}.nuvo-tailwind .\\!mt-0{margin-top:0!important}.nuvo-tailwind .\\!mt-6{margin-top:1.5rem!important}.nuvo-tailwind .-mb-1{margin-bottom:-.25rem}.nuvo-tailwind .-ml-1{margin-left:-.25rem}.nuvo-tailwind .-ml-px{margin-left:-1px}.nuvo-tailwind .-mr-0{margin-right:0}.nuvo-tailwind .-mr-0\\.5{margin-right:-2px}.nuvo-tailwind .-mt-0{margin-top:0}.nuvo-tailwind .-mt-0\\.5{margin-top:-2px}.nuvo-tailwind .-mt-3{margin-top:-.75rem}.nuvo-tailwind .-mt-4{margin-top:-1rem}.nuvo-tailwind .-mt-7{margin-top:-1.75rem}.nuvo-tailwind .-mt-px{margin-top:-1px}.nuvo-tailwind .mb-0{margin-bottom:0}.nuvo-tailwind .mb-0\\.5{margin-bottom:2px}.nuvo-tailwind .mb-1{margin-bottom:.25rem}.nuvo-tailwind .mb-10{margin-bottom:2.5rem}.nuvo-tailwind .mb-2{margin-bottom:.5rem}.nuvo-tailwind .mb-3{margin-bottom:.75rem}.nuvo-tailwind .mb-4{margin-bottom:1rem}.nuvo-tailwind .mb-6{margin-bottom:1.5rem}.nuvo-tailwind .mb-7{margin-bottom:1.75rem}.nuvo-tailwind .mb-8{margin-bottom:2rem}.nuvo-tailwind .mb-px{margin-bottom:1px}.nuvo-tailwind .ml-0{margin-left:0}.nuvo-tailwind .ml-0\\.5{margin-left:2px}.nuvo-tailwind .ml-1{margin-left:.25rem}.nuvo-tailwind .ml-1\\.5{margin-left:6px}.nuvo-tailwind .ml-2{margin-left:.5rem}.nuvo-tailwind .ml-3{margin-left:.75rem}.nuvo-tailwind .ml-4{margin-left:1rem}.nuvo-tailwind .ml-5{margin-left:1.25rem}.nuvo-tailwind .ml-6{margin-left:1.5rem}.nuvo-tailwind .ml-auto{margin-left:auto}.nuvo-tailwind .ml-px{margin-left:1px}.nuvo-tailwind .mr-0{margin-right:0}.nuvo-tailwind .mr-0\\.5{margin-right:2px}.nuvo-tailwind .mr-1{margin-right:.25rem}.nuvo-tailwind .mr-1\\.5{margin-right:6px}.nuvo-tailwind .mr-2{margin-right:.5rem}.nuvo-tailwind .mr-3{margin-right:.75rem}.nuvo-tailwind .mr-4{margin-right:1rem}.nuvo-tailwind .mr-5{margin-right:1.25rem}.nuvo-tailwind .mr-6{margin-right:1.5rem}.nuvo-tailwind .mr-auto{margin-right:auto}.nuvo-tailwind .mt-0{margin-top:0}.nuvo-tailwind .mt-0\\.5{margin-top:2px}.nuvo-tailwind .mt-1{margin-top:.25rem}.nuvo-tailwind .mt-2{margin-top:.5rem}.nuvo-tailwind .mt-3{margin-top:.75rem}.nuvo-tailwind .mt-4{margin-top:1rem}.nuvo-tailwind .mt-5{margin-top:1.25rem}.nuvo-tailwind .mt-6{margin-top:1.5rem}.nuvo-tailwind .mt-8{margin-top:2rem}.nuvo-tailwind .mt-px{margin-top:1px}.nuvo-tailwind .\\!box-border{box-sizing:border-box!important}.nuvo-tailwind .box-border{box-sizing:border-box}.nuvo-tailwind .line-clamp-1{-webkit-line-clamp:1}.nuvo-tailwind .line-clamp-1,.nuvo-tailwind .line-clamp-2{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.nuvo-tailwind .line-clamp-2{-webkit-line-clamp:2}.nuvo-tailwind .line-clamp-4{-webkit-box-orient:vertical;-webkit-line-clamp:4;display:-webkit-box;overflow:hidden}.nuvo-tailwind .block{display:block}.nuvo-tailwind .\\!inline-block{display:inline-block!important}.nuvo-tailwind .inline-block{display:inline-block}.nuvo-tailwind .inline{display:inline}.nuvo-tailwind .flex{display:flex}.nuvo-tailwind .inline-flex{display:inline-flex}.nuvo-tailwind .table{display:table}.nuvo-tailwind .grid{display:grid}.nuvo-tailwind .contents{display:contents}.nuvo-tailwind .hidden{display:none}.nuvo-tailwind .\\!h-1{height:.25rem!important}.nuvo-tailwind .\\!h-4{height:1rem!important}.nuvo-tailwind .\\!h-8{height:2rem!important}.nuvo-tailwind .h-0{height:0}.nuvo-tailwind .h-10{height:2.5rem}.nuvo-tailwind .h-11{height:2.75rem}.nuvo-tailwind .h-12{height:3rem}.nuvo-tailwind .h-16{height:4rem}.nuvo-tailwind .h-2{height:.5rem}.nuvo-tailwind .h-2\\.5{height:11px}.nuvo-tailwind .h-250{height:250px}.nuvo-tailwind .h-26{height:26px}.nuvo-tailwind .h-3{height:.75rem}.nuvo-tailwind .h-38{height:38px}.nuvo-tailwind .h-4{height:1rem}.nuvo-tailwind .h-4\\.5{height:18px}.nuvo-tailwind .h-40{height:10rem}.nuvo-tailwind .h-5{height:1.25rem}.nuvo-tailwind .h-5\\.5{height:22px}.nuvo-tailwind .h-6{height:1.5rem}.nuvo-tailwind .h-60{height:15rem}.nuvo-tailwind .h-7{height:1.75rem}.nuvo-tailwind .h-79{height:79px}.nuvo-tailwind .h-8{height:2rem}.nuvo-tailwind .h-8\\.5{height:34px}.nuvo-tailwind .h-9{height:2.25rem}.nuvo-tailwind .h-auto{height:auto}.nuvo-tailwind .h-fit{height:-moz-fit-content;height:fit-content}.nuvo-tailwind .h-full{height:100%}.nuvo-tailwind .h-px{height:1px}.nuvo-tailwind .h-screen{height:100vh}.nuvo-tailwind .max-h-210{max-height:210px}.nuvo-tailwind .max-h-3\\/4{max-height:75%}.nuvo-tailwind .max-h-60{max-height:60px}.nuvo-tailwind .max-h-80{max-height:20rem}.nuvo-tailwind .max-h-full{max-height:100%}.nuvo-tailwind .\\!min-h-auto{min-height:auto!important}.nuvo-tailwind .min-h-0{min-height:0}.nuvo-tailwind .min-h-10{min-height:40px}.nuvo-tailwind .min-h-2{min-height:8px}.nuvo-tailwind .min-h-40{min-height:40px}.nuvo-tailwind .min-h-400{min-height:400px}.nuvo-tailwind .min-h-42{min-height:42px}.nuvo-tailwind .min-h-500{min-height:500px}.nuvo-tailwind .min-h-57{min-height:57px}.nuvo-tailwind .min-h-77{min-height:77px}.nuvo-tailwind .min-h-full{min-height:100%}.nuvo-tailwind .\\!w-1{width:.25rem!important}.nuvo-tailwind .\\!w-4{width:1rem!important}.nuvo-tailwind .\\!w-8{width:2rem!important}.nuvo-tailwind .\\!w-full{width:100%!important}.nuvo-tailwind .w-1{width:.25rem}.nuvo-tailwind .w-1\\/2{width:50%}.nuvo-tailwind .w-10{width:2.5rem}.nuvo-tailwind .w-12{width:3rem}.nuvo-tailwind .w-16{width:4rem}.nuvo-tailwind .w-2{width:.5rem}.nuvo-tailwind .w-2\\/4{width:50%}.nuvo-tailwind .w-20{width:5rem}.nuvo-tailwind .w-24{width:6rem}.nuvo-tailwind .w-3{width:.75rem}.nuvo-tailwind .w-3\\.5{width:.875rem}.nuvo-tailwind .w-3\\/5{width:60%}.nuvo-tailwind .w-340{width:340px}.nuvo-tailwind .w-4{width:1rem}.nuvo-tailwind .w-4\\.5{width:18px}.nuvo-tailwind .w-4\\/5{width:80%}.nuvo-tailwind .w-40{width:10rem}.nuvo-tailwind .w-400{width:400px}.nuvo-tailwind .w-44{width:11rem}.nuvo-tailwind .w-5{width:1.25rem}.nuvo-tailwind .w-50{width:182px}.nuvo-tailwind .w-52{width:13rem}.nuvo-tailwind .w-57{width:232px}.nuvo-tailwind .w-6{width:1.5rem}.nuvo-tailwind .w-72{width:18rem}.nuvo-tailwind .w-73{width:304px}.nuvo-tailwind .w-8{width:2rem}.nuvo-tailwind .w-81{width:335px}.nuvo-tailwind .w-9{width:2.25rem}.nuvo-tailwind .w-90{width:360px}.nuvo-tailwind .w-auto{width:auto}.nuvo-tailwind .w-fit{width:-moz-fit-content;width:fit-content}.nuvo-tailwind .w-full{width:100%}.nuvo-tailwind .w-max{width:-moz-max-content;width:max-content}.nuvo-tailwind .min-w-0{min-width:0}.nuvo-tailwind .min-w-2{min-width:8px}.nuvo-tailwind .min-w-204{min-width:204px}.nuvo-tailwind .min-w-240{min-width:240px}.nuvo-tailwind .min-w-50{min-width:182px}.nuvo-tailwind .min-w-52{min-width:200px}.nuvo-tailwind .\\!max-w-lg{max-width:32rem!important}.nuvo-tailwind .\\!max-w-none{max-width:none!important}.nuvo-tailwind .max-w-204{max-width:204px}.nuvo-tailwind .max-w-240{max-width:240px}.nuvo-tailwind .max-w-251{max-width:251px}.nuvo-tailwind .max-w-268{max-width:268px}.nuvo-tailwind .max-w-272{max-width:272px}.nuvo-tailwind .max-w-2xs{max-width:336px}.nuvo-tailwind .max-w-355{max-width:355px}.nuvo-tailwind .max-w-372{max-width:372px}.nuvo-tailwind .max-w-420{max-width:420px}.nuvo-tailwind .max-w-6xl{max-width:72rem}.nuvo-tailwind .max-w-full{max-width:100%}.nuvo-tailwind .max-w-md{max-width:28rem}.nuvo-tailwind .max-w-screen-3xl{max-width:1735px}.nuvo-tailwind .flex-1{flex:1 1 0%}.nuvo-tailwind .flex-auto{flex:1 1 auto}.nuvo-tailwind .flex-shrink{flex-shrink:1}.nuvo-tailwind .flex-shrink-0{flex-shrink:0}.nuvo-tailwind .flex-grow{flex-grow:1}.nuvo-tailwind .-translate-x-1\\/2{--tw-translate-x:-50%}.nuvo-tailwind .-translate-x-1\\/2,.nuvo-tailwind .-translate-y-1\\/2{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.nuvo-tailwind .-translate-y-1\\/2{--tw-translate-y:-50%}.nuvo-tailwind .-rotate-90{--tw-rotate:-90deg}.nuvo-tailwind .-rotate-90,.nuvo-tailwind .rotate-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.nuvo-tailwind .rotate-0{--tw-rotate:0deg}.nuvo-tailwind .rotate-180{--tw-rotate:180deg}.nuvo-tailwind .rotate-180,.nuvo-tailwind .rotate-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.nuvo-tailwind .rotate-90{--tw-rotate:90deg}.nuvo-tailwind .scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.nuvo-tailwind .scale-95,.nuvo-tailwind .transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.nuvo-tailwind .animate-fade{animation:fade .5s ease}@keyframes pulse{50%{opacity:.5}}.nuvo-tailwind .animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.nuvo-tailwind .\\!cursor-pointer{cursor:pointer!important}.nuvo-tailwind .cursor-auto{cursor:auto}.nuvo-tailwind .cursor-default{cursor:default}.nuvo-tailwind .cursor-move{cursor:move}.nuvo-tailwind .cursor-not-allowed{cursor:not-allowed}.nuvo-tailwind .cursor-pointer{cursor:pointer}.nuvo-tailwind .resize-y{resize:vertical}.nuvo-tailwind .resize{resize:both}.nuvo-tailwind .list-disc{list-style-type:disc}.nuvo-tailwind .grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.nuvo-tailwind .flex-row{flex-direction:row}.nuvo-tailwind .flex-col{flex-direction:column}.nuvo-tailwind .flex-wrap{flex-wrap:wrap}.nuvo-tailwind .flex-nowrap{flex-wrap:nowrap}.nuvo-tailwind .items-start{align-items:flex-start}.nuvo-tailwind .items-end{align-items:flex-end}.nuvo-tailwind .items-center{align-items:center}.nuvo-tailwind .\\!items-stretch{align-items:stretch!important}.nuvo-tailwind .items-stretch{align-items:stretch}.nuvo-tailwind .justify-start{justify-content:flex-start}.nuvo-tailwind .justify-end{justify-content:flex-end}.nuvo-tailwind .justify-center{justify-content:center}.nuvo-tailwind .justify-between{justify-content:space-between}.nuvo-tailwind .gap-1{gap:.25rem}.nuvo-tailwind .gap-2{gap:.5rem}.nuvo-tailwind .gap-4{gap:1rem}.nuvo-tailwind .gap-x-8{-moz-column-gap:2rem;column-gap:2rem}.nuvo-tailwind .gap-y-3{row-gap:.75rem}.nuvo-tailwind .space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.nuvo-tailwind .space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.nuvo-tailwind .space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.nuvo-tailwind .space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.nuvo-tailwind .space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.25rem*var(--tw-space-y-reverse));margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)))}.nuvo-tailwind .space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.nuvo-tailwind .space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.nuvo-tailwind .space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.nuvo-tailwind .divide-y-1>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.nuvo-tailwind .overflow-auto{overflow:auto}.nuvo-tailwind .overflow-hidden{overflow:hidden}.nuvo-tailwind .overflow-visible{overflow:visible}.nuvo-tailwind .overflow-x-auto{overflow-x:auto}.nuvo-tailwind .overflow-y-auto{overflow-y:auto}.nuvo-tailwind .overflow-x-hidden{overflow-x:hidden}.nuvo-tailwind .overflow-y-hidden{overflow-y:hidden}.nuvo-tailwind .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nuvo-tailwind .whitespace-nowrap{white-space:nowrap}.nuvo-tailwind .whitespace-pre-line{white-space:pre-line}.nuvo-tailwind .break-words{overflow-wrap:break-word}.nuvo-tailwind .break-all{word-break:break-all}.nuvo-tailwind .\\!rounded-medium{border-radius:4px!important}.nuvo-tailwind .rounded{border-radius:3px}.nuvo-tailwind .rounded-2lg{border-radius:10px}.nuvo-tailwind .rounded-2xl{border-radius:1rem}.nuvo-tailwind .rounded-full{border-radius:9999px}.nuvo-tailwind .rounded-lg{border-radius:.5rem}.nuvo-tailwind .rounded-md{border-radius:.375rem}.nuvo-tailwind .rounded-medium{border-radius:4px}.nuvo-tailwind .rounded-b-lg{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.nuvo-tailwind .rounded-b-medium{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.nuvo-tailwind .rounded-t-medium{border-top-left-radius:4px;border-top-right-radius:4px}.nuvo-tailwind .rounded-bl-medium{border-bottom-left-radius:4px}.nuvo-tailwind .rounded-tl-medium{border-top-left-radius:4px}.nuvo-tailwind .\\!border-0{border-width:0!important}.nuvo-tailwind .\\!border-2{border-width:2px!important}.nuvo-tailwind .border{border-width:1px}.nuvo-tailwind .border-0{border-width:0}.nuvo-tailwind .border-1{border-width:1px}.nuvo-tailwind .border-2{border-width:2px}.nuvo-tailwind .border-b{border-bottom-width:1px}.nuvo-tailwind .border-b-0{border-bottom-width:0}.nuvo-tailwind .border-b-1{border-bottom-width:1px}.nuvo-tailwind .border-l-0{border-left-width:0}.nuvo-tailwind .border-l-4{border-left-width:4px}.nuvo-tailwind .border-r-0{border-right-width:0}.nuvo-tailwind .border-r-1{border-right-width:1px}.nuvo-tailwind .border-t-0{border-top-width:0}.nuvo-tailwind .border-t-1{border-top-width:1px}.nuvo-tailwind .border-dashed{border-style:dashed}.nuvo-tailwind .border-none{border-style:none}.nuvo-tailwind .border-blue-dark-50{--tw-border-opacity:1;border-color:rgb(239 243 249/var(--tw-border-opacity))}.nuvo-tailwind .border-blue-dark-800{--tw-border-opacity:1;border-color:rgb(40 64 103/var(--tw-border-opacity))}.nuvo-tailwind .border-blue-dark-900{--tw-border-opacity:1;border-color:rgb(22 35 56/var(--tw-border-opacity))}.nuvo-tailwind .border-blue-light-100{--tw-border-opacity:1;border-color:rgb(224 234 253/var(--tw-border-opacity))}.nuvo-tailwind .border-blue-light-50{--tw-border-opacity:1;border-color:rgb(245 248 254/var(--tw-border-opacity))}.nuvo-tailwind .border-danger{--tw-border-opacity:1;border-color:rgb(208 2 27/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-100{--tw-border-opacity:1;border-color:rgb(244 245 246/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-120{--tw-border-opacity:1;border-color:rgb(242 242 242/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-210{--tw-border-opacity:1;border-color:rgb(225 225 225/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-250{--tw-border-opacity:1;border-color:rgb(221 221 221/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-260{--tw-border-opacity:1;border-color:rgb(197 197 197/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-300{--tw-border-opacity:1;border-color:rgb(179 188 192/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-450{--tw-border-opacity:1;border-color:rgb(201 207 210/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-50{--tw-border-opacity:1;border-color:rgb(251 251 251/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-560{--tw-border-opacity:1;border-color:rgb(141 141 141/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-660{--tw-border-opacity:1;border-color:rgb(56 56 56/var(--tw-border-opacity))}.nuvo-tailwind .border-gray-700{--tw-border-opacity:1;border-color:rgb(84 84 84/var(--tw-border-opacity))}.nuvo-tailwind .border-primary{--tw-border-opacity:1;border-color:rgb(13 39 55/var(--tw-border-opacity))}.nuvo-tailwind .border-red-510{--tw-border-opacity:1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.nuvo-tailwind .border-salmon-500{--tw-border-opacity:1;border-color:rgb(237 112 112/var(--tw-border-opacity))}.nuvo-tailwind .border-transparent{border-color:transparent}.nuvo-tailwind .border-white{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.nuvo-tailwind .border-yellow-500{--tw-border-opacity:1;border-color:rgb(255 193 22/var(--tw-border-opacity))}.nuvo-tailwind .border-yellow-800{--tw-border-opacity:1;border-color:rgb(133 77 14/var(--tw-border-opacity))}.nuvo-tailwind .\\!bg-gray-120{--tw-bg-opacity:1!important;background-color:rgb(242 242 242/var(--tw-bg-opacity))!important}.nuvo-tailwind .\\!bg-transparent{background-color:transparent!important}.nuvo-tailwind .bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-dark-100{--tw-bg-opacity:1;background-color:rgb(208 219 237/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-dark-400{--tw-bg-opacity:1;background-color:rgb(115 148 200/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-dark-50{--tw-bg-opacity:1;background-color:rgb(239 243 249/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-dark-500{--tw-bg-opacity:1;background-color:rgb(84 124 188/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-dark-800{--tw-bg-opacity:1;background-color:rgb(40 64 103/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-light-100{--tw-bg-opacity:1;background-color:rgb(224 234 253/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-light-50{--tw-bg-opacity:1;background-color:rgb(245 248 254/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-light-500{--tw-bg-opacity:1;background-color:rgb(92 142 242/var(--tw-bg-opacity))}.nuvo-tailwind .bg-blue-light-900{--tw-bg-opacity:1;background-color:rgb(8 37 97/var(--tw-bg-opacity))}.nuvo-tailwind .bg-danger-light{--tw-bg-opacity:1;background-color:rgb(250 229 232/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-100{--tw-bg-opacity:1;background-color:rgb(244 245 246/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-120{--tw-bg-opacity:1;background-color:rgb(242 242 242/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-150{--tw-bg-opacity:1;background-color:rgb(241 241 245/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-300{--tw-bg-opacity:1;background-color:rgb(179 188 192/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-450{--tw-bg-opacity:1;background-color:rgb(201 207 210/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-50{--tw-bg-opacity:1;background-color:rgb(251 251 251/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-560{--tw-bg-opacity:1;background-color:rgb(141 141 141/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-660{--tw-bg-opacity:1;background-color:rgb(56 56 56/var(--tw-bg-opacity))}.nuvo-tailwind .bg-gray-700{--tw-bg-opacity:1;background-color:rgb(84 84 84/var(--tw-bg-opacity))}.nuvo-tailwind .bg-green-510{--tw-bg-opacity:1;background-color:rgb(16 185 129/var(--tw-bg-opacity))}.nuvo-tailwind .bg-info-gray{--tw-bg-opacity:1;background-color:rgb(103 117 124/var(--tw-bg-opacity))}.nuvo-tailwind .bg-primary{--tw-bg-opacity:1;background-color:rgb(13 39 55/var(--tw-bg-opacity))}.nuvo-tailwind .bg-priority-bg{--tw-bg-opacity:1;background-color:rgb(249 249 249/var(--tw-bg-opacity))}.nuvo-tailwind .bg-red-510{--tw-bg-opacity:1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.nuvo-tailwind .bg-red-60{--tw-bg-opacity:1;background-color:rgb(252 242 243/var(--tw-bg-opacity))}.nuvo-tailwind .bg-salmon-100{--tw-bg-opacity:1;background-color:rgb(252 234 234/var(--tw-bg-opacity))}.nuvo-tailwind .bg-salmon-200{--tw-bg-opacity:1;background-color:rgb(250 212 212/var(--tw-bg-opacity))}.nuvo-tailwind .bg-salmon-500{--tw-bg-opacity:1;background-color:rgb(237 112 112/var(--tw-bg-opacity))}.nuvo-tailwind .bg-transparent{background-color:transparent}.nuvo-tailwind .bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.nuvo-tailwind .bg-yellow-200{--tw-bg-opacity:1;background-color:rgb(255 232 168/var(--tw-bg-opacity))}.nuvo-tailwind .bg-yellow-500{--tw-bg-opacity:1;background-color:rgb(255 193 22/var(--tw-bg-opacity))}.nuvo-tailwind .bg-opacity-40{--tw-bg-opacity:0.4}.nuvo-tailwind .bg-opacity-50{--tw-bg-opacity:0.5}.nuvo-tailwind .bg-opacity-60{--tw-bg-opacity:0.6}.nuvo-tailwind .bg-opacity-75{--tw-bg-opacity:0.75}.nuvo-tailwind .bg-contain{background-size:contain}.nuvo-tailwind .bg-center{background-position:50%}.nuvo-tailwind .bg-no-repeat{background-repeat:no-repeat}.nuvo-tailwind .object-contain{-o-object-fit:contain;object-fit:contain}.nuvo-tailwind .\\!p-0{padding:0!important}.nuvo-tailwind .p-1{padding:.25rem}.nuvo-tailwind .p-10{padding:2.5rem}.nuvo-tailwind .p-2{padding:.5rem}.nuvo-tailwind .p-2\\.5{padding:9.5px}.nuvo-tailwind .p-3{padding:.75rem}.nuvo-tailwind .p-4{padding:1rem}.nuvo-tailwind .p-6{padding:1.5rem}.nuvo-tailwind .p-8{padding:2rem}.nuvo-tailwind .\\!px-0{padding-left:0!important;padding-right:0!important}.nuvo-tailwind .\\!px-2{padding-left:.5rem!important;padding-right:.5rem!important}.nuvo-tailwind .\\!px-3{padding-left:.75rem!important;padding-right:.75rem!important}.nuvo-tailwind .\\!px-4{padding-left:1rem!important;padding-right:1rem!important}.nuvo-tailwind .\\!px-6{padding-left:1.5rem!important;padding-right:1.5rem!important}.nuvo-tailwind .\\!px-8{padding-left:2rem!important;padding-right:2rem!important}.nuvo-tailwind .px-0{padding-left:0;padding-right:0}.nuvo-tailwind .px-1{padding-left:.25rem;padding-right:.25rem}.nuvo-tailwind .px-1\\.5{padding-left:.375rem;padding-right:.375rem}.nuvo-tailwind .px-2{padding-left:.5rem;padding-right:.5rem}.nuvo-tailwind .px-2\\.5{padding-left:9.5px;padding-right:9.5px}.nuvo-tailwind .px-3{padding-left:.75rem;padding-right:.75rem}.nuvo-tailwind .px-4{padding-left:1rem;padding-right:1rem}.nuvo-tailwind .px-5{padding-left:1.25rem;padding-right:1.25rem}.nuvo-tailwind .px-6{padding-left:1.5rem;padding-right:1.5rem}.nuvo-tailwind .px-7{padding-left:1.75rem;padding-right:1.75rem}.nuvo-tailwind .px-8{padding-left:2rem;padding-right:2rem}.nuvo-tailwind .py-0{padding-bottom:0;padding-top:0}.nuvo-tailwind .py-0\\.5{padding-bottom:.125rem;padding-top:.125rem}.nuvo-tailwind .py-1{padding-bottom:.25rem;padding-top:.25rem}.nuvo-tailwind .py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.nuvo-tailwind .py-10px{padding-bottom:10px;padding-top:10px}.nuvo-tailwind .py-12{padding-bottom:3rem;padding-top:3rem}.nuvo-tailwind .py-2{padding-bottom:.5rem;padding-top:.5rem}.nuvo-tailwind .py-2\\.3{padding-bottom:6px;padding-top:6px}.nuvo-tailwind .py-2\\.5{padding-bottom:9.5px;padding-top:9.5px}.nuvo-tailwind .py-24{padding-bottom:6rem;padding-top:6rem}.nuvo-tailwind .py-3{padding-bottom:.75rem;padding-top:.75rem}.nuvo-tailwind .py-4{padding-bottom:1rem;padding-top:1rem}.nuvo-tailwind .py-5{padding-bottom:1.25rem;padding-top:1.25rem}.nuvo-tailwind .py-6{padding-bottom:1.5rem;padding-top:1.5rem}.nuvo-tailwind .py-7{padding-bottom:1.75rem;padding-top:1.75rem}.nuvo-tailwind .py-sm{padding-bottom:6px;padding-top:6px}.nuvo-tailwind .\\!pb-0{padding-bottom:0!important}.nuvo-tailwind .\\!pb-2{padding-bottom:.5rem!important}.nuvo-tailwind .\\!pb-3{padding-bottom:.75rem!important}.nuvo-tailwind .pb-0{padding-bottom:0}.nuvo-tailwind .pb-0\\.5{padding-bottom:.125rem}.nuvo-tailwind .pb-1{padding-bottom:.25rem}.nuvo-tailwind .pb-2{padding-bottom:.5rem}.nuvo-tailwind .pb-24{padding-bottom:6rem}.nuvo-tailwind .pb-3{padding-bottom:.75rem}.nuvo-tailwind .pb-32{padding-bottom:8rem}.nuvo-tailwind .pb-4{padding-bottom:1rem}.nuvo-tailwind .pb-4\\.5{padding-bottom:18px}.nuvo-tailwind .pb-6{padding-bottom:1.5rem}.nuvo-tailwind .pb-8{padding-bottom:2rem}.nuvo-tailwind .pl-0{padding-left:0}.nuvo-tailwind .pl-0\\.5{padding-left:.125rem}.nuvo-tailwind .pl-1{padding-left:.25rem}.nuvo-tailwind .pl-2{padding-left:.5rem}.nuvo-tailwind .pl-3{padding-left:.75rem}.nuvo-tailwind .pl-3\\.5{padding-left:.875rem}.nuvo-tailwind .pl-4{padding-left:1rem}.nuvo-tailwind .pl-4\\.5{padding-left:18px}.nuvo-tailwind .pl-8{padding-left:2rem}.nuvo-tailwind .pr-1{padding-right:.25rem}.nuvo-tailwind .pr-10{padding-right:2.5rem}.nuvo-tailwind .pr-12{padding-right:3rem}.nuvo-tailwind .pr-2{padding-right:.5rem}.nuvo-tailwind .pr-2\\.5{padding-right:9.5px}.nuvo-tailwind .pr-3{padding-right:.75rem}.nuvo-tailwind .pr-4{padding-right:1rem}.nuvo-tailwind .pr-5{padding-right:1.25rem}.nuvo-tailwind .pr-6{padding-right:1.5rem}.nuvo-tailwind .pr-7{padding-right:1.75rem}.nuvo-tailwind .pr-8{padding-right:2rem}.nuvo-tailwind .pt-0{padding-top:0}.nuvo-tailwind .pt-1{padding-top:.25rem}.nuvo-tailwind .pt-10{padding-top:2.5rem}.nuvo-tailwind .pt-2{padding-top:.5rem}.nuvo-tailwind .pt-22\\.5{padding-top:90px}.nuvo-tailwind .pt-3{padding-top:.75rem}.nuvo-tailwind .pt-4{padding-top:1rem}.nuvo-tailwind .pt-4\\.5{padding-top:18px}.nuvo-tailwind .pt-6{padding-top:1.5rem}.nuvo-tailwind .pt-8{padding-top:2rem}.nuvo-tailwind .text-left{text-align:left}.nuvo-tailwind .text-center{text-align:center}.nuvo-tailwind .text-right{text-align:right}.nuvo-tailwind .align-top{vertical-align:top}.nuvo-tailwind .align-middle{vertical-align:middle}.nuvo-tailwind .align-bottom{vertical-align:bottom}.nuvo-tailwind .\\!text-lg{font-size:1.125rem!important;line-height:1.75rem!important}.nuvo-tailwind .\\!text-sm{font-size:.875rem!important;line-height:1.25rem!important}.nuvo-tailwind .\\!text-xs{font-size:.75rem!important;line-height:1rem!important}.nuvo-tailwind .text-2\\.5xl{font-size:28px;line-height:34px}.nuvo-tailwind .text-2xl{font-size:1.5rem;line-height:2rem}.nuvo-tailwind .text-4\\.5xl{font-size:39px;line-height:47px}.nuvo-tailwind .text-base{font-size:16px;line-height:19px}.nuvo-tailwind .text-lg{font-size:1.125rem;line-height:1.75rem}.nuvo-tailwind .text-sbase{font-size:15px}.nuvo-tailwind .text-sm{font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .text-small{font-size:12px}.nuvo-tailwind .text-xl{font-size:1.25rem;line-height:1.75rem}.nuvo-tailwind .text-xs{font-size:.75rem;line-height:1rem}.nuvo-tailwind .text-xsmall{font-size:14px;line-height:17px}.nuvo-tailwind .text-xss{font-size:10px}.nuvo-tailwind .text-xssmall{font-size:13px;line-height:15px}.nuvo-tailwind .\\!font-normal{font-weight:400!important}.nuvo-tailwind .font-bold{font-weight:700}.nuvo-tailwind .font-light{font-weight:300}.nuvo-tailwind .font-medium{font-weight:500}.nuvo-tailwind .font-normal{font-weight:400}.nuvo-tailwind .font-semibold{font-weight:600}.nuvo-tailwind .uppercase{text-transform:uppercase}.nuvo-tailwind .lowercase{text-transform:lowercase}.nuvo-tailwind .capitalize{text-transform:capitalize}.nuvo-tailwind .italic{font-style:italic}.nuvo-tailwind .\\!leading-3{line-height:.75rem!important}.nuvo-tailwind .\\!leading-3\\.5{line-height:14px!important}.nuvo-tailwind .\\!leading-5{line-height:1.25rem!important}.nuvo-tailwind .\\!leading-5\\.5{line-height:17px!important}.nuvo-tailwind .leading-3{line-height:.75rem}.nuvo-tailwind .leading-3\\.5{line-height:14px}.nuvo-tailwind .leading-4{line-height:1rem}.nuvo-tailwind .leading-4\\.5{line-height:15px}.nuvo-tailwind .leading-5{line-height:1.25rem}.nuvo-tailwind .leading-5\\.5{line-height:17px}.nuvo-tailwind .leading-6{line-height:1.5rem}.nuvo-tailwind .leading-8{line-height:2rem}.nuvo-tailwind .leading-none{line-height:1}.nuvo-tailwind .tracking-wide{letter-spacing:.025em}.nuvo-tailwind .\\!text-gray-260{--tw-text-opacity:1!important;color:rgb(197 197 197/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-gray-50{--tw-text-opacity:1!important;color:rgb(251 251 251/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-gray-510{--tw-text-opacity:1!important;color:rgb(136 149 156/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-gray-560{--tw-text-opacity:1!important;color:rgb(141 141 141/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-neutral-600{--tw-text-opacity:1!important;color:rgb(113 113 113/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-neutral-gray{--tw-text-opacity:1!important;color:rgb(45 45 45/var(--tw-text-opacity))!important}.nuvo-tailwind .\\!text-salmon-500{--tw-text-opacity:1!important;color:rgb(237 112 112/var(--tw-text-opacity))!important}.nuvo-tailwind .text-blue-dark-900{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity))}.nuvo-tailwind .text-blue-light-500{--tw-text-opacity:1;color:rgb(92 142 242/var(--tw-text-opacity))}.nuvo-tailwind .text-blue-light-600{--tw-text-opacity:1;color:rgb(53 115 239/var(--tw-text-opacity))}.nuvo-tailwind .text-danger{--tw-text-opacity:1;color:rgb(208 2 27/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-260{--tw-text-opacity:1;color:rgb(197 197 197/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-310{--tw-text-opacity:1;color:rgb(44 50 53/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-410{--tw-text-opacity:1;color:rgb(169 169 169/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-510{--tw-text-opacity:1;color:rgb(136 149 156/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-560{--tw-text-opacity:1;color:rgb(141 141 141/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-660{--tw-text-opacity:1;color:rgb(56 56 56/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-700{--tw-text-opacity:1;color:rgb(84 84 84/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.nuvo-tailwind .text-gray-970{--tw-text-opacity:1;color:rgb(113 113 113/var(--tw-text-opacity))}.nuvo-tailwind .text-green-400{--tw-text-opacity:1;color:rgb(52 211 153/var(--tw-text-opacity))}.nuvo-tailwind .text-green-510{--tw-text-opacity:1;color:rgb(16 185 129/var(--tw-text-opacity))}.nuvo-tailwind .text-neutral-600{--tw-text-opacity:1;color:rgb(113 113 113/var(--tw-text-opacity))}.nuvo-tailwind .text-neutral-gray{--tw-text-opacity:1;color:rgb(45 45 45/var(--tw-text-opacity))}.nuvo-tailwind .text-primary{--tw-text-opacity:1;color:rgb(13 39 55/var(--tw-text-opacity))}.nuvo-tailwind .text-red-500,.nuvo-tailwind .text-red-510{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.nuvo-tailwind .text-salmon-50{--tw-text-opacity:1;color:rgb(254 248 248/var(--tw-text-opacity))}.nuvo-tailwind .text-salmon-500{--tw-text-opacity:1;color:rgb(237 112 112/var(--tw-text-opacity))}.nuvo-tailwind .text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.nuvo-tailwind .text-yellow-500{--tw-text-opacity:1;color:rgb(255 193 22/var(--tw-text-opacity))}.nuvo-tailwind .text-yellow-800{--tw-text-opacity:1;color:rgb(133 77 14/var(--tw-text-opacity))}.nuvo-tailwind .underline{text-decoration-line:underline}.nuvo-tailwind .placeholder-gray-410::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(169 169 169/var(--tw-placeholder-opacity))}.nuvo-tailwind .placeholder-gray-410::placeholder{--tw-placeholder-opacity:1;color:rgb(169 169 169/var(--tw-placeholder-opacity))}.nuvo-tailwind .placeholder-gray-560::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(141 141 141/var(--tw-placeholder-opacity))}.nuvo-tailwind .placeholder-gray-560::placeholder{--tw-placeholder-opacity:1;color:rgb(141 141 141/var(--tw-placeholder-opacity))}.nuvo-tailwind .\\!opacity-100{opacity:1!important}.nuvo-tailwind .opacity-0{opacity:0}.nuvo-tailwind .opacity-100{opacity:1}.nuvo-tailwind .opacity-20{opacity:.2}.nuvo-tailwind .opacity-40{opacity:.4}.nuvo-tailwind .opacity-50{opacity:.5}.nuvo-tailwind .shadow-card{--tw-shadow:0px 10px 20px rgba(33,75,134,.09);--tw-shadow-colored:0px 10px 20px var(--tw-shadow-color)}.nuvo-tailwind .shadow-card,.nuvo-tailwind .shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.nuvo-tailwind .shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.nuvo-tailwind .shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.nuvo-tailwind .shadow-none,.nuvo-tailwind .shadow-xl{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.nuvo-tailwind .shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color)}.nuvo-tailwind .outline-none{outline:2px solid transparent;outline-offset:2px}.nuvo-tailwind .outline{outline-style:solid}.nuvo-tailwind .ring-transparent{--tw-ring-color:transparent}.nuvo-tailwind .blur{--tw-blur:blur(8px)}.nuvo-tailwind .blur,.nuvo-tailwind .drop-shadow{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.nuvo-tailwind .drop-shadow{--tw-drop-shadow:drop-shadow(0 1px 2px rgba(0,0,0,.1)) drop-shadow(0 1px 1px rgba(0,0,0,.06))}.nuvo-tailwind .grayscale{--tw-grayscale:grayscale(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.nuvo-tailwind .\\!filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)!important}.nuvo-tailwind .filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.nuvo-tailwind .backdrop-filter{backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.nuvo-tailwind .transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .transition-transform{transition-duration:.15s;transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .transition-width{transition-duration:.15s;transition-property:width;transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .duration-300{transition-duration:.3s}.nuvo-tailwind .ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.nuvo-tailwind .ease-linear{transition-timing-function:linear}.nuvo-tailwind .ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.nuvo-tailwind .will-change-auto{will-change:auto}.nuvo-tailwind .will-change-transform{will-change:transform}.nuvo-tailwind .last\\:rounded-b-medium:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.nuvo-tailwind .hover\\:border-blue-light-300:hover{--tw-border-opacity:1;border-color:rgb(163 191 248/var(--tw-border-opacity))}.nuvo-tailwind .hover\\:border-salmon-700:hover{--tw-border-opacity:1;border-color:rgb(186 23 23/var(--tw-border-opacity))}.nuvo-tailwind .hover\\:border-yellow-700:hover{--tw-border-opacity:1;border-color:rgb(161 98 7/var(--tw-border-opacity))}.nuvo-tailwind .hover\\:bg-blue-dark-50:hover{--tw-bg-opacity:1;background-color:rgb(239 243 249/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-blue-light-100:hover{--tw-bg-opacity:1;background-color:rgb(224 234 253/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-blue-light-200:hover{--tw-bg-opacity:1;background-color:rgb(194 213 250/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-blue-light-50:hover{--tw-bg-opacity:1;background-color:rgb(245 248 254/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-blue-light-700:hover{--tw-bg-opacity:1;background-color:rgb(17 82 213/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-blue-light-800:hover{--tw-bg-opacity:1;background-color:rgb(12 60 155/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-gray-110:hover{--tw-bg-opacity:1;background-color:rgb(245 245 245/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgb(251 251 251/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:bg-gray-55:hover{--tw-bg-opacity:1;background-color:rgb(249 249 249/var(--tw-bg-opacity))}.nuvo-tailwind .hover\\:text-blue-dark-900:hover{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:text-blue-light-500:hover{--tw-text-opacity:1;color:rgb(92 142 242/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:text-blue-light-700:hover{--tw-text-opacity:1;color:rgb(17 82 213/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:text-gray-500:hover{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:text-gray-560:hover{--tw-text-opacity:1;color:rgb(141 141 141/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:text-gray-970:hover{--tw-text-opacity:1;color:rgb(113 113 113/var(--tw-text-opacity))}.nuvo-tailwind .hover\\:opacity-100:hover{opacity:1}.nuvo-tailwind .focus\\:border-blue-dark-900:focus{--tw-border-opacity:1;border-color:rgb(22 35 56/var(--tw-border-opacity))}.nuvo-tailwind .focus\\:border-danger:focus{--tw-border-opacity:1;border-color:rgb(208 2 27/var(--tw-border-opacity))}.nuvo-tailwind .focus\\:border-primary:focus{--tw-border-opacity:1;border-color:rgb(13 39 55/var(--tw-border-opacity))}.nuvo-tailwind .focus\\:border-yellow-800:focus{--tw-border-opacity:1;border-color:rgb(133 77 14/var(--tw-border-opacity))}.nuvo-tailwind .focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.nuvo-tailwind .focus\\:ring-0:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.nuvo-tailwind .focus\\:ring-white:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.nuvo-tailwind .disabled\\:cursor-auto:disabled{cursor:auto}.nuvo-tailwind .disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.nuvo-tailwind .disabled\\:border-gray-260:disabled{--tw-border-opacity:1;border-color:rgb(197 197 197/var(--tw-border-opacity))}.nuvo-tailwind .disabled\\:border-gray-400:disabled{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}.nuvo-tailwind .disabled\\:bg-gray-120:disabled{--tw-bg-opacity:1;background-color:rgb(242 242 242/var(--tw-bg-opacity))}.nuvo-tailwind .disabled\\:bg-gray-50:disabled{--tw-bg-opacity:1;background-color:rgb(251 251 251/var(--tw-bg-opacity))}.nuvo-tailwind .disabled\\:bg-transparent:disabled{background-color:transparent}.nuvo-tailwind .disabled\\:text-gray-260:disabled{--tw-text-opacity:1;color:rgb(197 197 197/var(--tw-text-opacity))}.nuvo-tailwind .disabled\\:text-gray-560:disabled{--tw-text-opacity:1;color:rgb(141 141 141/var(--tw-text-opacity))}.nuvo-tailwind .disabled\\:opacity-70:disabled{opacity:.7}.nuvo-tailwind .disabled\\:opacity-75:disabled{opacity:.75}.nuvo-tailwind .disabled\\:opacity-80:disabled{opacity:.8}.nuvo-tailwind .group:hover .group-hover\\:visible{visibility:visible}.nuvo-tailwind :is(.dark .dark\\:bg-gray-700){--tw-bg-opacity:1;background-color:rgb(84 84 84/var(--tw-bg-opacity))}@media (min-width:640px){.nuvo-tailwind .sm\\:mt-0{margin-top:0}.nuvo-tailwind .sm\\:\\!max-w-440{max-width:440px!important}.nuvo-tailwind .sm\\:\\!max-w-480{max-width:480px!important}.nuvo-tailwind .sm\\:max-w-1{max-width:.25rem}.nuvo-tailwind .sm\\:max-w-1\\.7xl{max-width:640px}.nuvo-tailwind .sm\\:max-w-505{max-width:505px}.nuvo-tailwind .sm\\:max-w-xl{max-width:36rem}.nuvo-tailwind .sm\\:p-0{padding:0}.nuvo-tailwind .sm\\:align-middle{vertical-align:middle}}@media (min-width:768px){.nuvo-tailwind .md\\:mx-4{margin-left:1rem;margin-right:1rem}.nuvo-tailwind .md\\:mb-0{margin-bottom:0}.nuvo-tailwind .md\\:mt-0{margin-top:0}.nuvo-tailwind .md\\:block{display:block}.nuvo-tailwind .md\\:max-w-355{max-width:355px}.nuvo-tailwind .md\\:flex-wrap{flex-wrap:wrap}.nuvo-tailwind .md\\:px-3{padding-left:.75rem;padding-right:.75rem}.nuvo-tailwind .md\\:align-top{vertical-align:top}.nuvo-tailwind .md\\:align-middle{vertical-align:middle}.nuvo-tailwind .md\\:align-bottom{vertical-align:bottom}.nuvo-tailwind .md\\:text-sm{font-size:.875rem;line-height:1.25rem}}@media (min-width:1024px){.nuvo-tailwind .lg\\:-mx-8{margin-left:-2rem;margin-right:-2rem}.nuvo-tailwind .lg\\:flex{display:flex}.nuvo-tailwind .lg\\:min-w-50{min-width:182px}.nuvo-tailwind .lg\\:flex-row{flex-direction:row}.nuvo-tailwind .lg\\:flex-nowrap{flex-wrap:nowrap}.nuvo-tailwind .lg\\:items-center{align-items:center}.nuvo-tailwind .lg\\:justify-center{justify-content:center}.nuvo-tailwind .lg\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.nuvo-tailwind .lg\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.nuvo-tailwind .lg\\:\\!px-0{padding-left:0!important;padding-right:0!important}.nuvo-tailwind .lg\\:px-8{padding-left:2rem;padding-right:2rem}}@media (min-width:375px){.nuvo-tailwind .xss\\:mr-4{margin-right:1rem}.nuvo-tailwind .xss\\:mt-0{margin-top:0}.nuvo-tailwind .xss\\:flex{display:flex}.nuvo-tailwind .xss\\:pb-2{padding-bottom:.5rem}.nuvo-tailwind .xss\\:pb-7{padding-bottom:1.75rem}}@media (min-width:468px){.nuvo-tailwind .xsmd\\:w-auto{width:auto}}@media (min-width:740px){.nuvo-tailwind .xssmd\\:w-14{width:3.5rem}.nuvo-tailwind .xssmd\\:pl-4{padding-left:1rem}}@media (min-width:820px){.nuvo-tailwind .smmd\\:right-5{right:1.25rem}.nuvo-tailwind .smmd\\:top-7{top:1.75rem}.nuvo-tailwind .smmd\\:pr-14{padding-right:3.5rem}}@media (min-width:885px){.nuvo-tailwind .smd\\:order-1{order:1}.nuvo-tailwind .smd\\:flex-row{flex-direction:row}}@media (min-width:990px){.nuvo-tailwind .large\\:grid{display:grid}.nuvo-tailwind .large\\:min-w-100{min-width:400px}.nuvo-tailwind .large\\:pb-0{padding-bottom:0}.nuvo-tailwind .large\\:pb-10{padding-bottom:2.5rem}.nuvo-tailwind .large\\:pb-2{padding-bottom:.5rem}.nuvo-tailwind .large\\:pl-0{padding-left:0}.nuvo-tailwind .large\\:pt-0{padding-top:0}}@media (min-width:1190px){.nuvo-tailwind .mmd\\:right-7{right:1.75rem}.nuvo-tailwind .mmd\\:top-7{top:1.75rem}.nuvo-tailwind .mmd\\:mb-3{margin-bottom:.75rem}.nuvo-tailwind .mmd\\:pr-14{padding-right:3.5rem}}@media (min-width:1440px){.nuvo-tailwind .\\33xl\\:py-2{padding-bottom:.5rem;padding-top:.5rem}.nuvo-tailwind .\\33xl\\:pt-1{padding-top:.25rem}}@media (min-width:1441px){.nuvo-tailwind .min3xl\\:p-5{padding:1.25rem}}@media (min-width:1920px){.nuvo-tailwind .\\34xl\\:max-h-72{max-height:18rem}}.nuvo-tailwind *{-webkit-touch-callout:none;outline:none;scrollbar-color:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none}.nuvo-tailwind input,.nuvo-tailwind textarea{-webkit-user-select:text;-moz-user-select:text;user-select:text}.nuvo-tailwind .loader{animation:spin 1.2s linear infinite;border:16px solid rgba(92,142,242,.3);border-radius:50%;border-top-color:#5c8ef2;height:100px;margin:auto;position:relative;top:16px;width:100px}.nuvo-tailwind .loader:before{--rad:radial-gradient(circle 7.5px,#5c8ef2 99%,transparent 100%);background:var(--rad) left -17px top 0,var(--rad) right -17px top 0;background-size:224% 100%;content:"";height:19px;left:-4px;position:absolute;top:-4.9px;width:111%}@keyframes spin{to{transform:rotate(1turn)}}.nuvo-tailwind .circle-loader{border:3px solid;border-radius:50%;display:inline-block;height:20px;margin:auto;position:relative;width:20px}.nuvo-tailwind .animate-loader,.nuvo-tailwind .circle-loader{animation:spin 1.2s linear infinite}@keyframes progress{to{transform:translateX(100%)}}.nuvo-tailwind .translate-by-keyframe{animation:progress 1.5s linear forwards}`));document.head.appendChild(vy);var by=document.createElement("style");by.type="text/css";by.appendChild(document.createTextNode(".nuvo-tailwind .dropdown-scroll .simplebar-scrollbar{height:5px;top:0}.nuvo-tailwind .dropdown-scroll .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .dropdown-scroll .simplebar-track{background-color:#f4f4f4;border-radius:60px;pointer-events:auto}.nuvo-tailwind .dropdown-scroll .simplebar-track>.simplebar-scrollbar:before{background-color:#b9b9b9;border-radius:60px;opacity:1!important}.nuvo-tailwind .dropdown-scroll .simplebar-track.simplebar-vertical{bottom:8px;top:8px;transform:translateX(-3px);width:5px}.nuvo-tailwind .dropdown-scroll .simplebar-track.simplebar-vertical .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .dropdown-scroll .simplebar-track.simplebar-horizontal{height:5px;transform:translateY(5px)}.nuvo-tailwind .dropdown-scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar{height:5px;top:8px}.nuvo-tailwind .dropdown-scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{inset:0}"));document.head.appendChild(by);var wy=document.createElement("style");wy.type="text/css";wy.appendChild(document.createTextNode(".nuvo-tailwind #review-entries-table{height:100%}.nuvo-tailwind .handsontable:not(.htHorizontallyScrollableByWindow) .ht_master .wtHolder,.nuvo-tailwind .handsontable:not(.htVerticallyScrollableByWindow) .ht_master .wtHolder{background:inherit}.nuvo-tailwind .data-review .handsontable{color:var(--globals-text-color);font-family:var(--globals-font-family)}.nuvo-tailwind .data-review .handsontable:not(.htHorizontallyScrollableByWindow) .ht_master .wtHolder,.nuvo-tailwind .data-review .handsontable:not(.htVerticallyScrollableByWindow) .ht_master .wtHolder{background:inherit}.nuvo-tailwind .data-review .handsontable tbody tr th.ht__active_highlight,.nuvo-tailwind .data-review .handsontable tbody tr.ht__row_odd th.ht__active_highlight{box-shadow:inherit!important;color:inherit!important}.nuvo-tailwind .data-review .handsontable thead th .relative{height:100%;padding:0!important}.nuvo-tailwind .data-review .handsontable thead th .colHeader{display:flex;flex-direction:column;height:100%;width:100%}.nuvo-tailwind .data-review .handsontable thead th .colHeader .title-header{align-items:center;display:flex;flex:1 1 0%;justify-items:flex-start;position:relative;width:auto}.nuvo-tailwind .data-review .handsontable thead tr th:first-child{position:relative}.nuvo-tailwind .data-review .handsontable thead tr th:first-child:before{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(201 207 210/var(--tw-bg-opacity));border-top-width:1px;bottom:0;color:rgb(44 50 53/var(--tw-text-opacity));font-size:.875rem;font-weight:400;height:33px;left:0;line-height:1.25rem;line-height:2rem;position:absolute;right:0;text-align:center;z-index:10}.nuvo-tailwind .data-review .handsontable thead th .colHeader .example-header{border-top-width:1px;box-sizing:border-box;flex-shrink:0;height:33px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.nuvo-tailwind .data-review .handsontable .htAutocomplete{--tw-border-opacity:1;border-color:rgb(221 221 221/var(--tw-border-opacity));position:relative}.nuvo-tailwind .data-review .handsontable .htAutocompleteArrow{height:100%!important;max-height:28px;width:100%!important}.nuvo-tailwind .data-review .handsontable .htAutocompleteArrow,.nuvo-tailwind .data-review .handsontable .htAutocompleteArrow:hover{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity))}.nuvo-tailwind .data-review .handsontable td.ingestro-cell-error{--ht-row-cell-odd-background-color:#fff1f0;--ht-row-cell-even-background-color:#fff1f0}.nuvo-tailwind .data-review .handsontable td.ingestro-cell-warning{--ht-row-cell-odd-background-color:#fffbe6;--ht-row-cell-even-background-color:#fffbe6}.nuvo-tailwind .data-review .handsontable td.ingestro-cell-info{--ht-row-cell-odd-background-color:#f0f9ff;--ht-row-cell-even-background-color:#f0f9ff}.nuvo-tailwind .data-review .handsontable td.ingestro-cell-disabled{--ht-row-cell-odd-background-color:#fafafa;--ht-row-cell-even-background-color:#fafafa}.nuvo-tailwind .custom-dropdown-boolean-renderer,.nuvo-tailwind .custom-dropdown-renderer{padding-right:16px}.nuvo-tailwind .custom-dropdown-boolean-renderer-text-element,.nuvo-tailwind .custom-dropdown-renderer-text-element{background-color:transparent!important;padding-top:4px}.nuvo-tailwind .data-review .hide-arrow-btn{align-items:center;background-color:#fff;border:1px solid #f2f2f2;border-bottom-left-radius:4px;border-right-width:0;border-top-left-radius:4px;cursor:pointer;display:flex;height:12px;justify-content:center;position:absolute;right:0;top:50%;transform:translateY(-50%);width:12px}.nuvo-tailwind .data-review .hide-arrow-btn.hide-icon-left{left:0;right:auto;transform:translateY(-50%) rotate(180deg)}.nuvo-tailwind .data-review .handsontable td>div.custom-dropdown-boolean-renderer>.close-icon *,.nuvo-tailwind .data-review .handsontable td>div.custom-dropdown-renderer>.close-icon *{color:#c5c5c5}.nuvo-tailwind .data-review .handsontable td.default-cell.current.highlight>div>.arrow-down-icon,.nuvo-tailwind .data-review .handsontable td.error-cell.current.highlight>div>.arrow-down-icon,.nuvo-tailwind .data-review .handsontable td.info-cell.current.highlight>div>.arrow-down-icon,.nuvo-tailwind .data-review .handsontable td.warning-cell.current.highlight>div>.arrow-down-icon{padding-left:0!important}.nuvo-tailwind .data-review .handsontable td.disabled-cell #dropdown-arrow-icon svg{--tw-text-opacity:1;color:rgb(197 197 197/var(--tw-text-opacity))}.nuvo-tailwind .data-review .handsontable td.error-cell #dropdown-arrow-icon svg{--tw-text-opacity:1;color:rgb(237 112 112/var(--tw-text-opacity))}.nuvo-tailwind .data-review .handsontable td.warning-cell #dropdown-arrow-icon svg{--tw-text-opacity:1;color:rgb(255 193 22/var(--tw-text-opacity))}.nuvo-tailwind .data-review .handsontable td.default-cell #dropdown-arrow-icon,.nuvo-tailwind .data-review .handsontable td.default-cell #dropdown-arrow-icon svg{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity))}.nuvo-tailwind .data-review .handsontable .ht_clone_top_inline_start_corner{z-index:10}.nuvo-tailwind .data-review .ht_master.handsontable .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .data-review .ht_master.handsontable .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;width:.375rem!important}.nuvo-tailwind .data-review .ht_clone_inline_start .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .data-review .ht_master.handsontable .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .data-review::-webkit-scrollbar-thumb{background-clip:content-box;background-color:#818b99;border:0 solid transparent;border-radius:9px}.nuvo-tailwind .data-review .ht_clone_inline_start .wtHolder .wtHider{box-sizing:border-box!important;margin-bottom:2rem!important}.nuvo-tailwind .data-review.not_firefox .ht_clone_top,.nuvo-tailwind .data-review.not_firefox .ht_clone_top .wtHolder{width:100%!important}.nuvo-tailwind .data-review.not_firefox .add-space-scrollbar-w .ht_clone_top{width:calc(100% - 8px)!important}.nuvo-tailwind .data-review.not_firefox .ht_clone_inline_start.handsontable .wtHolder,.nuvo-tailwind .data-review.not_firefox .ht_clone_inline_start:not(.handsontableInputHolder){height:100%!important}.nuvo-tailwind .data-review.not_firefox .add-space-scrollbar-h .ht_clone_inline_start:not(.handsontableInputHolder){height:calc(100% - 8px)!important}.nuvo-tailwind .data-review .ht_clone_inline_start thead tr th,.nuvo-tailwind .data-review .ht_master thead tr th{border-top-width:0!important}.nuvo-tailwind .data-review .hide-border-last-column .ht_clone_top td:last-child,.nuvo-tailwind .data-review .hide-border-last-column .ht_clone_top th:last-child,.nuvo-tailwind .data-review div.hide-border-last-column .handsontable.ht_master tr td:last-child{border-right-color:transparent!important;border-right-width:0!important}.nuvo-tailwind .data-review .wtBorder.fill{background:#4b89ff!important}.nuvo-tailwind .data-review .ht_clone_inline_start th>div.relative{align-items:center;display:flex;height:100%;justify-content:center}.nuvo-tailwind .data-review .ht_clone_inline_start.handsontable td,.nuvo-tailwind .data-review .ht_master.handsontable td{padding:0 12px!important}.nuvo-tailwind .data-review .handsontable{--ht-cell-vertical-padding:0px;--ht-line-height:33px}@media only screen and (max-width:1440px){.nuvo-tailwind .data-review .handsontable{--ht-cell-vertical-padding:0px;--ht-line-height:23px}.nuvo-tailwind .data-review:not(.enable-example) .handsontable .htCore tr:first-child th{height:24px!important}.nuvo-tailwind .data-review .handsontable thead tr th:first-child:before{border-top-width:1px;height:23px!important;line-height:23px!important}.nuvo-tailwind .data-review .handsontable thead th .colHeader .example-header{height:23px!important;line-height:23px!important}.nuvo-tailwind .custom-dropdown-boolean-renderer-text-element,.nuvo-tailwind .custom-dropdown-renderer-text-element{padding-top:0}}@media only screen and (min-width:1441px){.nuvo-tailwind .data-review:not(.enable-example) .ht_clone_inline_start.ht_clone_left.handsontable tr th{height:34px!important}}.nuvo-tailwind .data-review .handsontable th .row-header-number{display:inline}.nuvo-tailwind .data-review .handsontable th .relative .rowHeader{width:100%}.nuvo-tailwind .data-review .nuvo-add-row-button{align-items:center;cursor:pointer;display:flex;justify-content:center;width:100%}.nuvo-tailwind .data-review .nuvo-add-row-button.nuvo-add-row-button-disabled{cursor:not-allowed}.nuvo-tailwind .data-review .nuvo-custom-add-column-button{cursor:pointer}.nuvo-tailwind .data-review .row-header-checkbox{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));box-shadow:none;cursor:pointer;display:none}.nuvo-tailwind .data-review .row-header-checkbox:checked{--tw-bg-opacity:1;background-color:rgb(8 37 97/var(--tw-bg-opacity))}.nuvo-tailwind .data-review .handsontable th.hover-row .row-header-number{display:none}.nuvo-tailwind .data-review .handsontable th.checked-row .row-header-checkbox,.nuvo-tailwind .data-review .handsontable th.hover-row .row-header-checkbox{display:block}.nuvo-tailwind .data-review .handsontable th.checked-row .row-header-number{display:none}.nuvo-tailwind .data-review .check-all-checkbox{--tw-bg-opacity:1;--tw-border-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));border-color:rgb(197 197 197/var(--tw-border-opacity));border-radius:4px;cursor:pointer;height:1rem!important;width:1rem!important}.nuvo-tailwind .data-review .check-all-checkbox:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);outline:2px solid transparent;outline-offset:2px}.nuvo-tailwind .data-review .check-all-checkbox{box-shadow:none!important}.nuvo-tailwind .data-review .check-all-checkbox:indeterminate{--tw-border-opacity:1;border-color:rgb(197 197 197/var(--tw-border-opacity))}.nuvo-tailwind .data-review .check-all-checkbox:indeterminate{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.nuvo-tailwind .data-review .check-all-checkbox:checked{--tw-bg-opacity:1;background-color:rgb(8 37 97/var(--tw-bg-opacity));border-color:transparent}.nuvo-tailwind .data-review .handsontable thead th .colHeader .context-menu-button{cursor:pointer}.nuvo-tailwind .data-review .handsontable .columnSorting:not(.indicatorDisabled).sortAction{max-width:100%!important;min-width:auto!important;padding-inline-end:0!important;padding-inline-start:0!important}.nuvo-tailwind .data-review .handsontable .columnSorting.sortAction:hover{cursor:auto;text-decoration:initial}.nuvo-tailwind .data-review .handsontable .columnSorting.sortAction #text-title:hover{cursor:var(--text-header-pointer);-webkit-text-decoration:var(--text-header-decoration);text-decoration:var(--text-header-decoration)}.nuvo-tailwind .data-review .handsontable .columnSorting.sortAction .sort-loader{display:none}.nuvo-tailwind .data-review .handsontable .sort-loading .columnSorting.sortAction .sort-loader{display:block}.nuvo-tailwind .data-review .handsontable .sort-loading .columnSorting.sortAction .context-menu-button{display:none}.nuvo-tailwind .data-review .handsontable .header-circle-loader{animation:spin 1.2s linear infinite;border-radius:50%;border-style:solid;border-width:3px;display:inline-block;flex-shrink:0;height:13px;margin-left:1px;position:relative;top:2px;width:13px}.nuvo-tailwind .data-review .ht_clone_inline_start .wtHolder .htCore{box-shadow:none}.nuvo-tailwind .filter-value-list-scroll .simplebar-scrollbar{height:5px;top:0}.nuvo-tailwind .filter-value-list-scroll .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .filter-value-list-scroll .simplebar-track{background-color:#f4f4f4;border-radius:60px;pointer-events:auto}.nuvo-tailwind .filter-value-list-scroll .simplebar-track>.simplebar-scrollbar:before{background-color:#b9b9b9;border-radius:60px;opacity:1!important}.nuvo-tailwind .filter-value-list-scroll .simplebar-track.simplebar-vertical{bottom:0;top:0;transform:translateX(-8px);width:4px}.nuvo-tailwind .filter-value-list-scroll .simplebar-track.simplebar-vertical .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .filter-value-list-scroll .simplebar-track.simplebar-horizontal{height:5px;transform:translateY(5px)}.nuvo-tailwind .filter-value-list-scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar{height:5px;top:0}.nuvo-tailwind .filter-value-list-scroll .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track .simplebar-scrollbar{height:5px;top:0}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track{background-color:#f4f4f4;border-radius:60px;pointer-events:auto}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track>.simplebar-scrollbar:before{background-color:#b9b9b9;border-radius:60px;opacity:1!important}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track.simplebar-vertical{bottom:6px;top:6px;transform:translateX(-4px);width:5px}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{inset:0}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track.simplebar-horizontal{height:5px;transform:translateY(5px)}.nuvo-tailwind .context-menu-scroll>div>.simplebar-track.simplebar-horizontal .simplebar-scrollbar{height:5px;top:0}.nuvo-tailwind .context-menu-scroll>div .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{inset:0}"));document.head.appendChild(wy);var yy=document.createElement("style");yy.type="text/css";yy.appendChild(document.createTextNode(".nuvo-tailwind .handsontable{--tw-text-opacity:1;color:rgb(56 56 56/var(--tw-text-opacity));font-family:var(--globals-font-family)}.nuvo-tailwind .handsontable .htDimmed,.nuvo-tailwind .handsontable td.htDimmed{color:#162338}.nuvo-tailwind .ht_clone_top{z-index:20!important}.nuvo-tailwind .ht_clone_inline_start:not(.handsontableInputHolder){z-index:0!important}.nuvo-tailwind .ht_clone_top_inline_start_corner{z-index:20!important}.nuvo-tailwind .ht_clone_top .ht__highlight{--tw-bg-opacity:1!important;background-color:rgb(251 251 251/var(--tw-bg-opacity))!important}.nuvo-tailwind .ht_clone_top_inline_start_corner div.wtHolder .htCore,.nuvo-tailwind col.rowHeader{width:60px!important}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder .wtHider div.wtSpreader .htCore tbody tr th{align-items:center;display:flex;font-size:.875rem;justify-content:center;line-height:1.25rem}.nuvo-tailwind .spread-data-sheet .handsontable.wt-full-width .ht_master.handsontable .wtHider,.nuvo-tailwind .spread-data-sheet .handsontable.wt-full-width .ht_master.handsontable .wtHider .wtSpreader{width:100%!important}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder .wtHider div.wtSpreader .htCore tbody tr th div{align-items:center;display:flex;height:31px!important;justify-content:center;padding-bottom:0;padding-top:0;text-align:center}.nuvo-tailwind .ht_clone_inline_start .wtHolder table{box-shadow:2px 0 5px -2px hsla(0,0%,53%,.3)}.nuvo-tailwind .wtBorder.corner{display:none}.nuvo-tailwind thead th:first-child{--tw-bg-opacity:1;background-color:rgb(251 251 251/var(--tw-bg-opacity))}.nuvo-tailwind .handsontable td{border-color:#ddd;font-size:.875rem;line-height:1.25rem;overflow:hidden!important;padding:0!important;text-overflow:ellipsis!important;white-space:nowrap!important}.nuvo-tailwind .handsontable thead th:first-child{border-bottom:1px solid #ddd}.nuvo-tailwind .ht_clone_top th{--tw-border-opacity:1;border-color:rgb(221 221 221/var(--tw-border-opacity))}.nuvo-tailwind .ht_clone_top .wtHolder .wtHider .wtSpreader .htCore th:first-child,.nuvo-tailwind .ht_clone_top_inline_start_corner .wtHolder .wtHider .wtSpreader .htCore th{border-top:none!important}.nuvo-tailwind .ht_clone_top .wtHolder .wtHider .wtSpreader .htCore th:first-child,.nuvo-tailwind .ht_clone_top_inline_start_corner .wtHolder .wtHider .wtSpreader .htCore th:first-child{border-left:none!important;padding-top:1px}.nuvo-tailwind .ht_clone_top .wtHolder .wtHider .wtSpreader .htCore th{border-top:none!important}.nuvo-tailwind .ht_clone_inline_start .wtHolder .wtHider .htCore th{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity));border-left:none!important;border-color:rgb(221 221 221/var(--tw-border-opacity))}.nuvo-tailwind .ht_master .wtHolder .wtHider .htCore th{border-left:none!important;padding-left:1px}.nuvo-tailwind td.default-cell.currentRow{--tw-bg-opacity:1!important;background-color:rgb(239 243 249/var(--tw-bg-opacity))!important}.nuvo-tailwind .spread-data-sheet #hot-display-license-info{display:none}.nuvo-tailwind .spread-data-sheet .handsontable{font-family:var(--globals-font-family)}.nuvo-tailwind .spread-data-sheet .handsontable td .ht-cell{padding:0 16px}.nuvo-tailwind .spread-data-sheet .handsontable td{align-items:center;border-color:#ddd;padding:0 16px!important;text-align:left!important}.nuvo-tailwind .spread-data-sheet .handsontable .hide-border-last-row .htCore tr:last-child td{border-bottom-width:0}.nuvo-tailwind .spread-data-sheet .handsontable .hide-border-last-row .ht_clone_inline_start tr:last-child th{border-bottom:transparent}.nuvo-tailwind .spread-data-sheet .handsontable .ht_master .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .spread-data-sheet .handsontable .ht_master .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;width:.25rem!important}.nuvo-tailwind .spread-data-sheet .handsontable .ht_master .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .spread-data-sheet ::-webkit-scrollbar-thumb{background-clip:content-box;background-color:#818b99;border:0 solid transparent;border-radius:9px}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;margin-right:.5rem!important}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder .wtHider{box-sizing:border-box!important;margin-bottom:2rem!important}.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder,.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .htCore,.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtHider,.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtSpreader,.nuvo-tailwind .spread-data-sheet.not_firefox .ht_clone_top{width:100%!important}.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top{width:calc(100% - 8px)!important}.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top .wtHolder{width:100%!important}.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable .ht_clone_inline_start,.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable .ht_clone_inline_start .wtHolder{height:100%!important}.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start,.nuvo-tailwind .spread-data-sheet.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start .wtHolder{height:calc(100% - 4px)!important}.nuvo-tailwind .spread-data-sheet #hotInstance{height:100%}.nuvo-tailwind .spread-data-sheet #hotInstance .ht_clone_inline_start td,.nuvo-tailwind .spread-data-sheet #hotInstance .ht_clone_top_inline_start_corner{box-shadow:2px 0 5px -2px hsla(0,0%,53%,.3)}.nuvo-tailwind .spread-data-sheet .hide-border-last-column .ht_clone_top td:last-child,.nuvo-tailwind .spread-data-sheet .hide-border-last-column .ht_clone_top th:last-child,.nuvo-tailwind .spread-data-sheet div.hide-border-last-column .handsontable.ht_master tr td:last-child{border-right-color:transparent!important;border-right-width:0!important}.nuvo-tailwind .spread-data-sheet tr td.default-cell,.nuvo-tailwind .spread-data-sheet tr td.hover-row{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity));cursor:pointer;font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .spread-data-sheet.read-only tr td.default-cell{--tw-text-opacity:1;color:rgb(141 141 141/var(--tw-text-opacity))}.nuvo-tailwind .spread-data-sheet.read-only tr td{cursor:auto!important}.nuvo-tailwind .spread-data-sheet .ht_clone_inline_start .wtHolder .wtHider div.wtSpreader .htCore tbody tr th{text-indent:-1px}.nuvo-tailwind .spread-data-sheet .ht_left .wtHolder .wtSpreader,.nuvo-tailwind .spread-data-sheet .ht_master .wtHolder .wtSpreader table{width:100%}.nuvo-tailwind .spread-data-sheet tr .hover-row,.nuvo-tailwind .spread-data-sheet tr .hover-selected-row,.nuvo-tailwind .spread-data-sheet tr .selecting-row{cursor:pointer;font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .spread-data-sheet tr td div{box-sizing:border-box;padding-top:7px}.nuvo-tailwind .spread-data-sheet .handsontable tr td.selecting-row-and-hovering.selecting-row{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity));cursor:pointer}.nuvo-tailwind .sheet-preview .handsontable{font-family:var(--globals-font-family)}.nuvo-tailwind .sheet-preview .handsontable td .ht-cell{padding:0 16px}.nuvo-tailwind .sheet-preview .handsontable td{align-items:center;border-color:#ddd;padding:0 16px!important;text-align:left!important}.nuvo-tailwind .sheet-preview .handsontable .hide-border-last-row .htCore tr:last-child td{border-bottom-width:0}.nuvo-tailwind .sheet-preview .handsontable .hide-border-last-row .ht_clone_inline_start tr:last-child th{border-bottom:transparent}.nuvo-tailwind .sheet-preview .handsontable .ht_master .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .sheet-preview .handsontable .ht_master .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;width:.25rem!important}.nuvo-tailwind .sheet-preview .handsontable .ht_master .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .sheet-preview ::-webkit-scrollbar-thumb{background-clip:content-box;background-color:#818b99;border:0 solid transparent;border-radius:9px}.nuvo-tailwind .sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;margin-right:.5rem!important}.nuvo-tailwind .sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .sheet-preview .ht_clone_inline_start .wtHolder .wtHider{box-sizing:border-box!important;margin-bottom:2rem!important}.nuvo-tailwind .sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder,.nuvo-tailwind .sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .htCore,.nuvo-tailwind .sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtHider,.nuvo-tailwind .sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtSpreader,.nuvo-tailwind .sheet-preview.not_firefox .ht_clone_top{width:100%!important}.nuvo-tailwind .sheet-preview.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top{width:calc(100% - 8px)!important}.nuvo-tailwind .sheet-preview.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top .wtHolder{width:100%!important}.nuvo-tailwind .sheet-preview.not_firefox .handsontable .ht_clone_inline_start,.nuvo-tailwind .sheet-preview.not_firefox .handsontable .ht_clone_inline_start .wtHolder{height:100%!important}.nuvo-tailwind .sheet-preview.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start,.nuvo-tailwind .sheet-preview.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start .wtHolder{height:calc(100% - 4px)!important}.nuvo-tailwind .sheet-preview #hotInstance{height:100%}.nuvo-tailwind .sheet-preview #hotInstance .ht_clone_inline_start td,.nuvo-tailwind .sheet-preview #hotInstance .ht_clone_top_inline_start_corner{box-shadow:2px 0 5px -2px hsla(0,0%,53%,.3)}.nuvo-tailwind .sheet-preview .hide-border-last-column .ht_clone_top td:last-child,.nuvo-tailwind .sheet-preview .hide-border-last-column .ht_clone_top th:last-child,.nuvo-tailwind .sheet-preview div.hide-border-last-column .handsontable.ht_master tr td:last-child{border-right-color:transparent!important;border-right-width:0!important}.nuvo-tailwind .sheet-preview tr td.default-cell,.nuvo-tailwind .sheet-preview tr td.hover-row{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity));cursor:pointer;font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .sheet-preview.read-only tr td.default-cell{--tw-text-opacity:1;color:rgb(141 141 141/var(--tw-text-opacity))}.nuvo-tailwind .sheet-preview.read-only tr td{cursor:auto!important}.nuvo-tailwind .sheet-preview .ht_clone_inline_start .wtHolder .wtHider div.wtSpreader .htCore tbody tr th{text-indent:-1px}.nuvo-tailwind .sheet-preview .ht_left .wtHolder .wtSpreader,.nuvo-tailwind .sheet-preview .ht_master .wtHolder .wtSpreader table{width:100%}.nuvo-tailwind .sheet-preview tr .hover-row,.nuvo-tailwind .sheet-preview tr .hover-selected-row,.nuvo-tailwind .sheet-preview tr .selecting-row{cursor:pointer;font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .sheet-preview tr td div{box-sizing:border-box;padding-top:7px}.nuvo-tailwind .sheet-preview .handsontable tr td.selecting-row-and-hovering.selecting-row{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity));cursor:pointer}.nuvo-tailwind .sheet-preview .handsontable.wt-full-width .ht_master.handsontable .wtHider,.nuvo-tailwind .sheet-preview .handsontable.wt-full-width .ht_master.handsontable .wtHider .wtSpreader{width:100%!important}.nuvo-tailwind .join-sheet-preview #hot-display-license-info,.nuvo-tailwind .join-sheet-preview .handsontable .htBorders{display:none}.nuvo-tailwind .join-sheet-preview .handsontable{font-family:var(--globals-font-family)}.nuvo-tailwind .join-sheet-preview .handsontable td .ht-cell{padding:0 16px}.nuvo-tailwind .join-sheet-preview .handsontable td{align-items:center;border-color:#ddd;padding:0 16px!important;text-align:left!important}.nuvo-tailwind .join-sheet-preview .handsontable .hide-border-last-row .htCore tr:last-child td{border-bottom-width:0}.nuvo-tailwind .join-sheet-preview .handsontable .hide-border-last-row .ht_clone_inline_start tr:last-child th{border-bottom:transparent}.nuvo-tailwind .join-sheet-preview .handsontable .ht_master .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .join-sheet-preview .handsontable .ht_master .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;width:.25rem!important}.nuvo-tailwind .join-sheet-preview ::-webkit-scrollbar-thumb{background-clip:content-box;background-color:#818b99;border:0 solid transparent;border-radius:9px}.nuvo-tailwind .join-sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar{height:.5rem!important;width:.5rem!important}.nuvo-tailwind .join-sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px;margin-right:.5rem!important}.nuvo-tailwind .join-sheet-preview .ht_clone_inline_start .wtHolder::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}.nuvo-tailwind .join-sheet-preview .ht_clone_inline_start .wtHolder .wtHider{box-sizing:border-box!important;margin-bottom:2rem!important}.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder,.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .htCore,.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtHider,.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.wt-full-width .ht_clone_top .wtHolder .wtSpreader,.nuvo-tailwind .join-sheet-preview.not_firefox .ht_clone_top{width:100%!important}.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top{width:calc(100% - 8px)!important}.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.add-space-scrollbar-w .ht_clone_top .wtHolder{width:100%!important}.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable .ht_clone_inline_start,.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable .ht_clone_inline_start .wtHolder{height:100%!important}.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start,.nuvo-tailwind .join-sheet-preview.not_firefox .handsontable.add-space-scrollbar-h .ht_clone_inline_start .wtHolder{height:calc(100% - 4px)!important}.nuvo-tailwind .join-sheet-preview #hotInstance{height:100%}.nuvo-tailwind .join-sheet-preview #hotInstance .ht_clone_inline_start td,.nuvo-tailwind .join-sheet-preview #hotInstance .ht_clone_top_inline_start_corner{box-shadow:2px 0 5px -2px hsla(0,0%,53%,.3)}.nuvo-tailwind .join-sheet-preview .hide-border-last-column .ht_clone_top td:last-child,.nuvo-tailwind .join-sheet-preview .hide-border-last-column .ht_clone_top th:last-child,.nuvo-tailwind .join-sheet-preview div.hide-border-last-column .handsontable.ht_master tr td:last-child{border-right-color:transparent!important;border-right-width:0!important}.nuvo-tailwind .join-sheet-preview tr td.default-cell{--tw-text-opacity:1;color:rgb(22 35 56/var(--tw-text-opacity));font-size:.875rem;line-height:1.25rem}.nuvo-tailwind .join-sheet-preview .ht_clone_inline_start .wtHolder .wtHider div.wtSpreader .htCore tbody tr th{text-indent:-1px}.nuvo-tailwind .join-sheet-preview .ht_left .wtHolder .wtSpreader,.nuvo-tailwind .join-sheet-preview .ht_master .wtHolder .wtSpreader table{width:100%}.nuvo-tailwind .join-sheet-preview tr td div{box-sizing:border-box;padding-top:7px}.nuvo-tailwind .join-sheet-preview .handsontable th .colHeader{width:100%}.nuvo-tailwind .join-sheet-preview .handsontable.wt-full-width .ht_master.handsontable .wtHider,.nuvo-tailwind .join-sheet-preview .handsontable.wt-full-width .ht_master.handsontable .wtHider .wtSpreader{width:100%!important}.nuvo-tailwind .join-sheet-preview .handsontable span.colHeader{line-height:1.2}.nuvo-tailwind .htFocusCatcher{padding:0}"));document.head.appendChild(yy);var Cy=document.createElement("style");Cy.type="text/css";Cy.appendChild(document.createTextNode('@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap");.nuvo-tailwind{--tw-text-opacity:1;color:rgb(66 66 66/var(--tw-text-opacity));color:var(--globals-text-color);font-family:var(--globals-font-family);font-size:16px;line-height:19px}.nuvo-tailwind .text-color-primary{color:var(--text-color-primary)}.nuvo-tailwind .text-color-secondary{color:var(--text-color-secondary)}.nuvo-tailwind [role=gridcell]{padding:0}.nuvo-tailwind [role=gridcell][aria-selected=true]>.cell-viewer{box-shadow:inset 0 0 0 2px var(--rdg-selection-color)}.nuvo-tailwind .nuvo-invisible{visibility:hidden}.nuvo-tailwind .caption{font-size:12px;line-height:1.43}.nuvo-ReactModal__Body--open{overflow:hidden}:root{--layer-overlay:300;--nuvo-white:#fff;--nuvo-neutral-900:#2d2d2d;--shadow-bottom:0px 7px 15px 0px rgba(27,80,113,.1)}.nuvo-popover{box-sizing:border-box}.nuvo-popover,.nuvo-popover__anchor{display:inline-flex;flex-direction:column}.nuvo-popover__anchor{background-color:transparent;border:0;outline:0;padding:0}.nuvo-popover__content{background-color:var(--nuvo-white);border-radius:4px;box-shadow:var(--shadow-bottom);color:var(--nuvo-neutral-900);outline:none;overflow-y:auto;padding:12px 16px;z-index:var(--layer-overlay)}'));document.head.appendChild(Cy);import"handsontable/styles/handsontable.css";import"handsontable/styles/ht-theme-classic.css";var xy=document.createElement("style");xy.type="text/css";xy.appendChild(document.createTextNode('.nuvo-tailwind .default-popper{--tw-text-opacity:1;border-radius:3px;border-width:1px;color:rgb(251 251 251/var(--tw-text-opacity));font-size:.75rem;line-height:1rem;opacity:0;padding-bottom:.75rem;padding-left:1rem;padding-right:1rem;padding-top:.75rem;pointer-events:none;z-index:170!important}.nuvo-tailwind .error-popper{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(237 112 112/var(--tw-bg-opacity));border-color:rgb(237 112 112/var(--tw-border-opacity))}.nuvo-tailwind .warning-popper{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(255 193 22/var(--tw-bg-opacity));border-color:rgb(255 193 22/var(--tw-border-opacity))}.nuvo-tailwind .multiple-popper{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(84 84 84/var(--tw-bg-opacity));border-color:rgb(84 84 84/var(--tw-border-opacity))}.nuvo-tailwind .disabled-popper{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(84 84 84/var(--tw-bg-opacity));border-color:rgb(84 84 84/var(--tw-border-opacity))}.nuvo-tailwind #arrow-message-info,.nuvo-tailwind #arrow-message-info:before{background:inherit;height:13px;position:absolute;width:13px}.nuvo-tailwind #arrow-message-info{visibility:hidden}.nuvo-tailwind #arrow-message-info:before{content:"";transform:rotate(45deg);visibility:visible}.nuvo-tailwind [overflow-hide]{opacity:0!important;pointer-events:none;visibility:hidden!important;z-index:100}.nuvo-tailwind [overflow-hide] #arrow{opacity:0;pointer-events:none;visibility:hidden}.nuvo-tailwind .remove-popper{--tw-text-opacity:1;border-radius:3px;border-width:1px;color:rgb(251 251 251/var(--tw-text-opacity));font-size:.75rem;line-height:1rem;opacity:0;padding:1rem;pointer-events:none;z-index:170!important}.nuvo-tailwind .remove-info-popper{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(40 64 103/var(--tw-bg-opacity));border-color:rgb(40 64 103/var(--tw-border-opacity))}'));document.head.appendChild(xy);var Sy=document.createElement("style");Sy.type="text/css";Sy.appendChild(document.createTextNode(".nuvo-tailwind #dropdown-scroll-element-id::-webkit-scrollbar-track{width:.25rem!important}.nuvo-tailwind #dropdown-scroll-element-id::-webkit-scrollbar-thumb{background-clip:content-box;background-color:#818b99;border:0 solid transparent;border-radius:9px}.nuvo-tailwind #dropdown-scroll-element-id::-webkit-scrollbar{height:.25rem!important;width:.25rem!important}.nuvo-tailwind #dropdown-scroll-element-id::-webkit-scrollbar-track{background-clip:padding-box;background-color:#dfe2e4;border-radius:4px}.nuvo-tailwind #dropdown-scroll-element-id::-webkit-scrollbar-thumb{--tw-bg-opacity:1!important;background-color:rgb(179 188 192/var(--tw-bg-opacity))!important;border-radius:4px}"));document.head.appendChild(Sy);import{createContext as JQ,useEffect as QQ,useMemo as eee,useState as tee}from"react";import{useContext as KQ}from"react";var Kt=()=>KQ(Xw);import{Subject as ree}from"rxjs";var _y=()=>{},Iy=class{constructor(t,o){this.onResultCallbackMapping={};this.getGeneralHooks=t=>{let o=this.hooksAPI.onCancel??_y,n=t?.trim()?.length>0?this.onResultCallbackMapping[t]:this.hooksAPI.onResults,a=this.hooksAPI.onEntryChange??_y,i=this.hooksAPI.onEntryInit??_y;return{onResults:n,onCancel:o,onEntryChange:a,onEntryInit:i}};this.hooksAPI=t,this.onResultCallbackMapping={[o]:t.onResults}}},u9=Iy;import{useContext as YQ,useMemo as ZQ}from"react";var XQ=()=>{let{onResults:r,onCancel:t,onEntryChange:o,onEntryInit:n,columnHooks:a}=mt(),i=YQ(My),s=ee(),l=ZQ(()=>new u9({onResults:r,onCancel:t,onEntryChange:o,onEntryInit:n,columnHooks:a},s.identifier),[r,t,o,n,a,s.identifier]);return{...i,hooksAPIMapper:l,getIdentifier:()=>s.identifier}},xo=XQ;import{jsx as nee,jsxs as aee}from"react/jsx-runtime";var My=JQ({setLoadingInitialValues:()=>{},loadingInitialValues:!0}),d9=({children:r})=>{let[t,o]=tee(!0),n=eee(()=>new ree,[]);return aee(My.Provider,{value:{cancelHookObservable:n,loadingInitialValues:t,setLoadingInitialValues:o},children:[nee(oee,{}),r]})},oee=()=>{let{cancelHookObservable:r,hooksAPIMapper:t,getIdentifier:o}=xo(),n=Kt(),{featureWhiteList:a}=Nt();return QQ(()=>{let i=r?.subscribe(()=>{t.getGeneralHooks(o()).onCancel()});return()=>{i?.unsubscribe()}},[r,t,o,n,a]),null};import{useCallback as C9}from"react";import y9 from"url-join";import{useNavigate as wee}from"react-router-dom";var vr="/upload-file",ir="/review-entries",Bt="/select-header",Tt="/match-column",br="/select-sheet",So="/join-column";import{createContext as uee,useMemo as dee,useState as h9,useCallback as g9}from"react";var Hh,iee=new Uint8Array(16);function Ey(){if(!Hh&&(Hh=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||typeof msCrypto<"u"&&typeof msCrypto.getRandomValues=="function"&&msCrypto.getRandomValues.bind(msCrypto),!Hh))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return Hh(iee)}var p9=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function see(r){return typeof r=="string"&&p9.test(r)}var m9=see;var jr=[];for(Bh=0;Bh<256;++Bh)jr.push((Bh+256).toString(16).substr(1));var Bh;function lee(r){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,o=(jr[r[t+0]]+jr[r[t+1]]+jr[r[t+2]]+jr[r[t+3]]+"-"+jr[r[t+4]]+jr[r[t+5]]+"-"+jr[r[t+6]]+jr[r[t+7]]+"-"+jr[r[t+8]]+jr[r[t+9]]+"-"+jr[r[t+10]]+jr[r[t+11]]+jr[r[t+12]]+jr[r[t+13]]+jr[r[t+14]]+jr[r[t+15]]).toLowerCase();if(!m9(o))throw TypeError("Stringified UUID is invalid");return o}var f9=lee;function cee(r,t,o){r=r||{};var n=r.random||(r.rng||Ey)();if(n[6]=n[6]&15|64,n[8]=n[8]&63|128,t){o=o||0;for(var a=0;a<16;++a)t[o+a]=n[a];return t}return f9(n)}var Ty=cee;import{jsx as pee}from"react/jsx-runtime";var ky=uee({sessionId:"",generateNewSessionId:()=>{},setHasUploadedData:()=>{}}),v9=r=>{let t=g9(()=>Ty().replace(/-/g,""),[]),[o,n]=h9(t()),[a,i]=h9(!1),s=g9(()=>{a&&n(t())},[t,a]),l=dee(()=>({sessionId:o,generateNewSessionId:s,setHasUploadedData:i}),[o,s]);return pee(ky.Provider,{value:l,children:r.children})};import{useContext as mee}from"react";var fee=()=>mee(ky),wr=fee;import{createContext as hee}from"react";import{jsx as gee}from"react/jsx-runtime";var Ry=hee({isUseInRouter:!1}),b9=({isUseInRouter:r,children:t})=>gee(Ry.Provider,{value:{isUseInRouter:r},children:t});import{useContext as vee}from"react";var bee=()=>vee(Ry),w9=bee;var x9=()=>{let r=wee(),{isUseInRouter:t}=w9();return C9((n,a)=>{if(t){let i=window.location.pathname,s=`${window.location.hash}`.replace("#",""),l=window.location.hash,c=typeof n=="string"?n:n.pathname,u=l?y9(s,c):y9(i,c);return r({pathname:u},{...a,replace:!0})}else{let i=typeof n=="string"?n:n.pathname;return r({pathname:i},{...a,replace:!0})}},[r,t])},Kc=()=>{let r=x9(),{columns:t}=ee(),o=Kt(),{setHasUploadedData:n}=wr();return{navigateToReviewEntries:C9(()=>{r({pathname:ir},{state:{hideStepper:!0,columns:t,dataModels:o.getDataModels()}}),n(!0)},[t,o,r,n])}},Yt=x9;import{isEmpty as Ree,isNil as Oee}from"lodash";import{ErrorCode as _9}from"react-dropzone";var S9=r=>{let t;return{promise:new Promise((n,a)=>{t=()=>{a({isCancelled:!0})},r.then(i=>n(i)).catch(i=>a(i))}),cancel(){t()}}};import{isNil as Cee}from"lodash";import xee from"detect-file-encoding-and-language";var Sn=({workersBaseUrl:r})=>{let t=r?xn(r,Cn.IMPORT):"",{init:o,getRemote:n,clear:a}=yn({hostWorkerUrl:t,workerFile:()=>new Worker(new URL("workers/parseData/index.js",import.meta.url),{type:"module"})});return{init:o,clear:a,convertCsv2Sheet:(...g)=>{let b=n();return b?b.convertCsv2Sheet(...g):z7(...g)},convertExcel2Sheet:(...g)=>{let b=n();return b?b.convertExcel2Sheet(...g):X7(...g)},convertJson2Sheet:(...g)=>{let b=n();return b?b.convertJson2Sheet(...g):G7(...g)},convertXLS2Sheet:(...g)=>{let b=n();return b?b.convertXLS2Sheet(...g):K7(...g)},convertXML2Sheet:(...g)=>{let b=n();return b?b.convertXML2Sheet(...g):Y7(...g)},jsonParser:(...g)=>{let b=n();return b?b.jsonParser(...g):Promise.resolve(q7(...g))},parseDateFormat:(...g)=>{let b=n();if(b)return b.parseDateFormat(...g);let w=Q7(...g);return Promise.resolve(w)},convertPdf2Sheets:(...g)=>{let b=n();return b?b.convertPdf2Sheets(...g):Z7(...g)},parseValue:(...g)=>{let b=n();if(b)return b.parseValue(...g);let w=W7(...g);return Promise.resolve(w)}}};var Oy=async(r,t,o)=>{if(r.type===vt.csv||r.type===vt.tsv_text||r.type===vt.tsv||["tsv","csv"].includes(M9(r.name))){let n=await Tee(r);return t.convertCsv2Sheet(n,{...o,metaFile:{name:r.name,type:r.type===vt.xls?vt.csv:r.type,size:r.size}})}else return r.type===vt.xml?t.convertXML2Sheet(r,o):r.type===vt.json?t.convertJson2Sheet(r,o):r.type===vt.xls||r.type===vt.xlsb||M9(r.name)==="xlsb"?t.convertXLS2Sheet(r,o):r.type===vt.pdf?t.convertPdf2Sheets(r,{...o,stage:J7}):t.convertExcel2Sheet(r,o)},Uh=(r,t,o,n)=>{let a=Sn({workersBaseUrl:o});return n&&n(a),S9(a.init().then(()=>Promise.all(r.map(i=>Oy(i,a,t).then(s=>({...s,rawFile:i})))).finally(()=>{a.clear()})))},See=r=>r[0]?.errors[1]?.message?r[0]?.errors[1]?.message:r[0]?.errors[0]?.message,I9={"Too many files":"txt_too_many_files_error"},_ee=r=>I9[r]?I9[r]:r,jh=r=>{let t={};return r.forEach(o=>{o==="tsv"?(t[vt.tsv]=[],t[vt.tsv_text]=[]):o==="xls"?(t[vt.xls]=[],t[vt.xlsb]=[".xlsb"]):t[vt[o]]=[]}),t},E9=r=>{let n=0;return r.forEach(i=>{n=n+Math.round(i.type===vt.pdf?6:i.type===vt.csv||i.type===vt.json?1:Math.max(i.size)/1e6)}),n*2.5/2*10},Wh=(r,t,o,n,a)=>{if(t[0].errors.find(c=>c.code===_9.FileInvalidType)){r(n("txt_file_format_error",{fileTypes:a.join(", ")}),n("txt_title_upload_valid_file_error"));return}if(t[0].errors.find(c=>c.code===_9.FileTooLarge)){r(n("txt_upload_exceed_max_size_error",{sizeInMb:o}),n("txt_title_upload_exceed_max_size_error"));return}let l=See(t);r(n(_ee(l)),n("txt_title_too_many_files_error"))},T9=(r,t,o,n)=>{t===9003?r(o("txt_nested_file_error"),o("txt_import_error")):t===9001?r(o("txt_file_format_error",{fileTypes:n.join(", ")}),o("txt_title_error_invalid_format")):r(o("txt_file_error"),o("txt_import_error"))},zh=(r,t)=>({...Iee,...r?Mee:{},...t?Eee:{}}),Iee={transition:"border .24s ease-in-out"},Mee={borderColor:"#4B5563"},Eee={borderColor:"#D0021B"},Tee=r=>new Promise(async t=>{let o=await r.text();try{let a=((await xee(r)).encoding||"ascii").toLowerCase();if(a!=="utf-8"&&!Cee(a)){let i=await kee(r),s=new TextDecoder(a).decode(i);t(s)}else t(o)}catch{t(o)}}),kee=r=>new Promise((t,o)=>{let n=new FileReader;n.onload=a=>{let i=a?.target?.result;t(i)},n.onerror=()=>o({code:-1}),n.readAsArrayBuffer(r)}),M9=r=>r?.split(".")?.pop()?.toLowerCase()||"";var Yc=r=>r?.replace(/\.[^/.]+$/,"");var Ay=[[]],k9="";var Dy=class{constructor(t){this.dataStack={};this.parseRejectedData=t=>{let o=[];for(let n=0;n<t.length;++n){let a=t[n];o.push({fileName:a.filename,sheets:[]})}return o};this.parseData=t=>{let o=[];for(let n=0;n<t.length;++n){let a=t[n],i=[];if(n9.includes(a.type))i.push({sheetName:Yc(a.filename),data:a.data});else{let s=a.data;for(let l=0;l<s.length;++l){let c=s[l];i.push({sheetName:c?.sheetName??"",data:c?.data??[]})}}o.push({fileName:a.filename,sheets:i})}return o};this.throwError=(t,o)=>{let n={1101:"The component is not verified.",1100:"No component found.",1002:"This feature or this file type are not included in your subscription."};return o&&Ce.getInstance().setParseSession(),Promise.reject(new Error(`code: ${n[t]?t:-1}, message: ${n[t]??"Unexpected error"}`))};this.parseFiles=async(t,o,n)=>{let a=Sn({workersBaseUrl:n});await a.init();let i=[],s=[];return await Promise.all(t.map(async l=>Oy(l,a,o).then(c=>{i.push(c)}).catch(()=>{s.push({data:[],filename:l.name,fileSize:l.size,type:l.type})}))).finally(()=>{a.clear()}),{acceptedFiles:i,rejectedFiles:s}};this.getSessionKey=t=>{if(t&&this.importerSessionListener.listenStartCallbackStack[t])return t;{let o=Object.keys(this.importerSessionListener.listenStartCallbackStack);return o[o.length-1]}};this.getComponentData=t=>{let o=this.getSessionKey(t);return this.importerSessionListener.getConfigCallbackStack[o]?.()};this.onRetry=async t=>{let n;for(let a=1;a<=3;a++)try{return await t()}catch(i){if(n=i,a===3)throw n;await new Promise(s=>setTimeout(s,500*a))}throw n};this.uploadMethod=async({step:t,data:o,headerIndex:n,identifier:a})=>{let i=this.getSessionKey(a),s=this.getComponentData(i),l=s?.featureWhiteList.isDynamicImport();if(!s)return this.throwError(1100,i);if(!s?.isAuth)return this.throwError(1101,i);if(!l)return this.throwError(1002,i);this.dataStack[a??k9]={step:t,data:o,headerIndex:n}};this.startMethod=t=>{let o=t?.identifier,n=this.getSessionKey(o),a=this.getComponentData(n),i=0,s=5,l=500,c=()=>new Promise((d,p)=>{let m=()=>{i++,a=this.getComponentData(n),a?.isAuth===!0&&a.featureWhiteList.isDynamicImport()===!0?d():i>=s?p():setTimeout(m,l)};m()}),u=()=>{let d=this.dataStack?.[n];(Oee(o)||Ree(o))&&(d=this.dataStack?.[k9]),this.importerSessionListener.listenStartCallbackStack[n]?.({data:d?.data,headerIndex:d?.headerIndex,step:d?.step})};c().catch(()=>{}).finally(()=>u())};this.parseMethod=async({data:t,identifier:o})=>{let n=this.getSessionKey(o),a=this.getComponentData(n),i=a?.featureWhiteList.isDynamicImport(),s=a?.featureWhiteList.getInputTypes()??[];if(!a)return this.throwError(1100,n);if(!a?.isAuth)return this.throwError(1101,n);if(!i)return this.throwError(1002,n);let l=[],c=[],u=Array.from(t);for(let d=0;d<u.length;++d){let p=u[d],m=(Object.keys(vt).find(h=>vt[h]===p.type)??p.type)?.replace("_text","");s.includes(m)?l.push(p):c.push(p)}try{let d=await this.parseFiles(l,{licenseKey:a.licenseKey,framework:Ce.getInstance().getFrameWork(),sdkVersion:Ce.getInstance().getVersionNumber(),hasDateType:a.columnAPIMapper.hasDateType(),originRequest:Ce.getInstance().getOrigin()},a.workersBaseUrl??"");return Ce.getInstance().setParseSession(),{accepted:this.parseData(d?.acceptedFiles??[]),rejected:this.parseRejectedData([...d?.rejectedFiles??[],...c.map(p=>({filename:p.name,fileSize:p.size,data:[],type:p.type}))])}}catch(d){return this.throwError(d?.code,n)}};this.upload=async({step:t,data:o,headerIndex:n,identifier:a})=>this.onRetry(()=>this.uploadMethod({step:t,data:o,headerIndex:n,identifier:a}));this.start=t=>this.startMethod(t);this.parse=async({data:t,identifier:o})=>this.onRetry(()=>this.parseMethod({data:t,identifier:o}));this.verify=async t=>{let o=this.getSessionKey(t?.identifier),n=this.getComponentData(o);if(n?.isAuth)return n?.verifyTracking(o),Promise.resolve({verified:!0,identifier:o});let a=0,i=10,s=500,l=async()=>{for(;a<i;){if(!!this.getComponentData(this.getSessionKey(t?.identifier)))return!0;a++,await new Promise(u=>setTimeout(u,s))}return!1};try{if(!await l())return this.throwError(1100,this.getSessionKey(t?.identifier));let u=this.getSessionKey(t?.identifier),d=this.getComponentData(u);if(!d)return this.throwError(1100,this.getSessionKey(t?.identifier));d.verifyTracking(u);let{verifyLicenseKeyListener:p,verifyLicenseKey:m,isVerifyingLicenseKey:h,isAuth:g}=d;if(g)return Promise.resolve({verified:!0,identifier:u});if(h&&p)try{return new Promise((b,w)=>{p?.subscribe({next:C=>{b({verified:C,identifier:u})},error:C=>{w(new Error(`Failed to verify license key: ${C instanceof Error?C.message:String(C)}`))}})})}catch{return d?.verifyTracking(u),Promise.resolve({verified:!1,identifier:u})}if(!h&&!g&&m)try{let b=await m();return Promise.resolve({verified:!!b,identifier:u})}catch(b){throw new Error(`Failed to verify license key: ${b instanceof Error?b.message:String(b)}`)}return Promise.resolve({verified:!!g,identifier:u})}catch{let u=this.getSessionKey(t?.identifier);return this.getComponentData(u)?.verifyTracking(u),this.throwError(1100,this.getSessionKey(t?.identifier))}};this.reload=async t=>{let o=this.getSessionKey(t?.identifier),n=this.getComponentData(o);if(!n)return this.throwError(1100,o);let{reload:a}=n;a&&typeof a=="function"&&(await new Promise(i=>setTimeout(i,100)),a(o))};this.importerSessionListener=t;try{module?.hot}catch{}}},R9=Dy;var Ny=class{constructor(){this.listenStartCallbackStack={};this.getConfigCallbackStack={};this.listener=(t,o)=>{this.listenStartCallbackStack[t]=o};this.getCompDataCallbackListener=(t,o)=>{this.getConfigCallbackStack[t]=o}}},O9=Ny;var qh=new O9,Dee=new R9(qh);import{useCallback as ste,useEffect as U9}from"react";import{isNil as Zc,isArray as A9,isObject as N9,isString as L9,isEmpty as $ee}from"lodash";var Yi=class{constructor({sheetData:t,filename:o,type:n,sheetName:a,fileSize:i}){this.getSpreadSheet=({autoDetectedHeader:t})=>{let o=new Yn({name:this.sheetName,data:this.sheetData});t&&o.setHeaderByAutoDetection();let n=[o];return new ol({sheets:n,filename:this.filename,type:this.type,fileSize:this.fileSize})};this.sheetData=t,this.filename=o,this.type=n,this.sheetName=a,this.fileSize=i}},ll=class{constructor({multipleSheetData:t,filename:o,type:n,fileSize:a}){this.getSpreadSheet=({autoDetectedHeader:t})=>{let o=this.multipleSheetData.map(n=>{let a=new Yn({data:n.data,name:n.sheetName});return t&&a.setHeaderByAutoDetection(),a});return new ol({type:this.type,filename:this.filename,sheets:o,fileSize:this.fileSize})};this.multipleSheetData=t,this.filename=o,this.type=n,this.fileSize=a}};import{isArray as D9,isEqual as Pee,flatten as Aee}from"lodash";function Nee(r,t){let o=new Set(r);return t.filter(n=>o.has(n))}var P9=(r,t,o)=>{let n=Aee(r.map(i=>i.getColumns())).filter(i=>i.getColumnKey()===t);if(n.length>1){for(let i=0;i<n.length;i++){let s=n[i];if(Nee(s.getUniqueRows(),o).length===o.length)return s}return null}else return n[0]},Gh=(r,t)=>Pee(`${r}`,`${t}`),Ly=r=>D9(r)&&r.every(t=>D9(t));import{flatten as Lee}from"lodash";var $y=class{constructor({spreadSheets:t}){this.setJoinSheet=t=>{this.joinSheet=t};this.getJoinSheet=()=>this.joinSheet;this.removeJoinSheet=()=>{this.joinSheet=null};this.getSpreadSheets=()=>this.spreadSheets;this.getSelectedSpreadSheets=()=>this.spreadSheets.filter(t=>t.isSelected());this.getIsAllSheetsManualSelectHeader=()=>{let t=this.getSelectedSpreadSheets();for(let o=0;o<t.length;o++){let n=t[o].getSelectedSheets();for(let a=0;a<n.length;a++)if(!n[a].getIsManualSelectHeader())return!1}return!0};this.length=()=>this.spreadSheets.length;this.getAllSheets=()=>Lee(this.spreadSheets.map(o=>o.getSheets()));this.setSheet=t=>{for(let o=0;o<this.spreadSheets.length;o++){let n=this.spreadSheets[o];for(let a=0;a<n.getSheets().length;a++)n.getSheets()[a].getId()===t.getId()&&this.spreadSheets?.[o].getSheets()?.[a]?.setData(t.getData())}};this.getSelectedSheets=(t=!1)=>this.joinSheet&&!t?[this.joinSheet]:this.getAllSheets().filter(o=>o.isSelected());this.selectAllSheets=t=>{this.spreadSheets.forEach(o=>{o.selectAllSheet(t)})};this.addList=t=>{let o=t.getSpreadSheets();for(let n=0;n<o.length;n++)this.spreadSheets.push(o[n])};this.spreadSheets=t}},Zi=$y;var Fy=class{constructor({spreadSheetList:t}){this.currentSpreadSheetPosition=0;this.currentSheetPosition=0;this.goToBySheet=t=>{let o=this.originalSpreadSheetList.getSelectedSpreadSheets();for(let n=0;n<o.length;n++){let a=o[n].getSelectedSheets();for(let i=0;i<a.length;i++)if(a[i]===t)return this.currentSpreadSheetPosition=n,this.currentSheetPosition=i,a[i]}};this.getCurrentSpreadSheet=()=>this.originalSpreadSheetList.getSelectedSpreadSheets()[this.currentSpreadSheetPosition];this.getCurrentSheet=()=>this.getCurrentSpreadSheet().getSelectedSheets()[this.currentSheetPosition];this.next=()=>{let t=this.currentSheetPosition+1,n=this.originalSpreadSheetList.getSelectedSpreadSheets()[this.currentSpreadSheetPosition].getSelectedSheets().length;if(t>=n){let a=this.currentSpreadSheetPosition+1,i=this.originalSpreadSheetList.getSelectedSpreadSheets().length;return a>=i?!1:(this.currentSpreadSheetPosition=a,this.currentSheetPosition=0,this.getCurrentSheet().getIsManualSelectHeader()?this.next():!0)}else return this.currentSheetPosition=t,this.getCurrentSheet().getIsManualSelectHeader()?this.next():!0};this.goToLastSpreadSheet=()=>{this.currentSpreadSheetPosition=Math.max(this.originalSpreadSheetList.getSelectedSpreadSheets().length-1,0)};this.goToLastSheet=()=>{let t=this.getCurrentSpreadSheet();this.currentSheetPosition=Math.max(t.getSelectedSheets().length-1,0)};this.getSpreadSheetList=()=>this.updatedSpreadSheetList;this.setUpdatedSpreadSheetList=t=>{this.updatedSpreadSheetList=t};this.getOriginalSpreadSheetList=()=>this.originalSpreadSheetList;this.originalSpreadSheetList=t,this.updatedSpreadSheetList=t}},ti=Fy;var Kh=class{constructor(){this.handle=async({data:t,headerIndex:o,hasDateType:n,automaticHeaderDetection:a,workersBaseUrl:i})=>{let s,l=Sn({workersBaseUrl:i});await l.init();let c=Ly(t);if(c)s=t;else try{s=await l.jsonParser(JSON.stringify(t),{hasDateType:n})}catch{throw l.clear(),new Error("1000")}l.clear();let u=new Yi({sheetData:s,filename:"",type:"dynamic-import",sheetName:"",fileSize:0}),d;if(!c)d=u.getSpreadSheet({autoDetectedHeader:a??!1});else if(Zc(o))d=u.getSpreadSheet({autoDetectedHeader:!0});else{d=u.getSpreadSheet({autoDetectedHeader:!1});let h=d.getSheets()[0].getData();o>=0&&o<h.length?d.getSheets()[0].setHeaderRowIndex(o):d.getSheets()[0].setHeaderByAutoDetection()}let p=new Zi({spreadSheets:[d]});return p.selectAllSheets(!0),new ti({spreadSheetList:p})}}},Yh=class{constructor(t){this.generateMemorizeFindDataModel=()=>{let t={},o={},n=0;for(let a=0;a<this.dataModels.length;a++){let i=this.dataModels[a];t[i.getKey()]=i,i.isHidden()||(o[i.getKey()]=n,n++)}return a=>({dataModel:t[a],colIndex:o[a]??-1})};this.checkInvalidFormat=t=>!A9(t)||t.some(o=>!N9(o)&&!Zc(o));this.handle=({data:t})=>{let o=t;if(this.checkInvalidFormat(t))throw new Error("1000");let n=this.generateMemorizeFindDataModel(),a=[],i={};for(let s=0;s<o.length;++s){if(a[s]={},Zc(o[s]))continue;let l=Object.keys(o[s]);for(let c=0;c<l.length;++c){let u=l[c],d=n(u);if(!d.dataModel)throw new Error("1001");if(N9(o[s][u])&&!A9(o[s][u])){if(Zc(o[s][u].value)||(a[s][u]=io.parse(o[s][u].value,{dataModel:d.dataModel})),Zc(o[s][u].info))continue;d.colIndex>=0&&o[s][u].info?.forEach(p=>{let m={rowIndex:s,colIndex:d.colIndex,popover:{message:p.message,level:p.level||Ui}};(i[s]?.length??0)===0?i[s]=[m]:i[s].push(m)})}else Zc(o[s][u])||(a[s][u]=io.parse(o[s][u],{dataModel:d.dataModel}))}}return{dataInfos:i,parsedValues:a}};this.dataModels=t}},Zh=class{constructor(){this.handle=async({data:t,hasDateType:o,workersBaseUrl:n})=>{if(this.checkInvalidFormat(t))throw new Error("1000");let a=Sn({workersBaseUrl:n});await a.init();let i=[];for(let l of t){for(let u of l.sheets)if(!Ly(u.data))try{u.data=await a.jsonParser(JSON.stringify(u.data),{hasDateType:o})}catch{throw a.clear(),new Error("1000")}a.clear();let c=new ll({multipleSheetData:l.sheets,filename:l.fileName,type:"dynamic-import",fileSize:0});i.push(c.getSpreadSheet({autoDetectedHeader:!1}))}return new Zi({spreadSheets:i})}}checkInvalidFormat(t){if(!Array.isArray(t))return!0;for(let o of t){if(!L9(o?.fileName)||o.fileName.trim()===""||!Array.isArray(o?.sheets)||o.sheets.length===0)return!0;let n=[];for(let a of o.sheets)if(n.includes(a.sheetName)||(n.push(a.sheetName),!L9(a?.sheetName)||a?.sheetName.trim()===""||!Array.isArray(a?.data)||a.data.length===0||Array.isArray(a?.data[0])&&a.data[0].length===0||!Array.isArray(a?.data[0])&&$ee(a.data[0])))return!0}return!1}};import{useTranslation as lte}from"react-i18next";import{isNil as Fee,isObject as Vee,isArray as Hee,isEmpty as Bee}from"lodash";var Vy=class{static{this.checkIsEmpty=t=>Fee(t)||Bee(t)}static{this.isInValidObjectArray=t=>!Vee(t)&&!Hee(t)}},Xh=Vy;import{useContext as Uee}from"react";var jee=()=>Uee(Hy),Lt=jee;import{useCallback as Wee}from"react";import{useTranslation as zee}from"react-i18next";var qee=()=>{let{showConfirmModal:r}=ot(),{t}=zee(),{closePage:o}=Lt(),{cancelHookObservable:n}=xo();return{warnLicenseKeyIsInvalid:Wee(()=>{r({textNegativeButton:t("txt_close"),textPositiveButton:t("txt_back"),title:t("txt_invalid_license_key"),isShowIcon:!0,isShowPositiveButton:!1,description:t("txt_invalid_license_key_description"),onClickNegativeButton:()=>{n?.next(null),o()},onCloseModal(){n?.next(null)}})},[r,t,n,o])}},Xi=qee;import{isEmpty as cte}from"lodash";import{createContext as Zee,useMemo as F9,useRef as Xee,useState as $p}from"react";var Jh=(r,t)=>t.development_mode?t.is_verified&&r:t.is_verified&&!r;import{useEffect as Gee,useRef as By}from"react";var _o=r=>{let t=By(),o=By(!1),n=By(!1);o.current&&(n.current=!0),Gee(()=>{if(!o.current)return o.current=!0,t.current=r(),()=>{n.current&&t.current&&t.current()}},[])};var Uy=class{static mapDAOtoFeatureWhitelist(t,o){let n=new zc;return n.enableI18nOverrides(t.plan_detail.features.i18n),n.enableMultiFileUpload(t.plan_detail.features.multiple_file_upload),n.enableReuseMapping(t.plan_detail.features.remember_mapping),n.enableAutomaticMapping(t.plan_detail.features.automatic_mapping,t.plan),n.setStepHandler(t.plan_detail.features.step_handler??!1),t.plan_detail.upload_size_limit===0?n.setFileSizeUnlimited():n.setMaxFileSizeInMb(t.plan_detail.upload_size_limit),n.setInputTypes(t.plan_detail.features.input_types||[]),n.setDefaultLanguage(t.default_language??"en"),n.setDynamicImport(t.plan_detail.features.dynamic_import,t.plan),n.setCustomStyling(t.plan_detail.features.custom_style,t.plan),n.setEnableLogs(t.plan_detail.features.logs),n.setLoading(!1),n.setLocale(o||{}),n.setRowsLimit(t.plan_detail.sdk_rows_limit??void 0),n.setEnableSmartTable(t.plan_detail.features.smart_table||!1),n.setEnableCleaningAssistant(t.plan_detail.features.cleaning_assistant||!1),n.setEnableWatermark(t.plan_detail.features.watermark||!1),n.setEnableContextualEngine(t.plan_detail.features.contextual_engine||!1),n.setEnableNodeProcessing(t.plan_detail.features.node_processing||!1),n.setEnablePrompts(t.plan_detail.features.prompts||!1),n}static getEmptyFeatureWhitelist(){let t=new zc;return t.setLoading(!1),t}},Qh=Uy;var eg=class extends Ur{constructor(){super(...arguments);this.getLocales=async({language:o},n)=>this.get("/utils/locales",{language:o},{headers:{Authorization:n,apikey:this.sendApiKey?qt:void 0}})}};import{Subject as Jee}from"rxjs";var jy=class extends Ur{constructor(){super(...arguments);this.verifyLicenseKey=async({licenseKey:o,sessionId:n})=>this.post("/verify",{session_id:n,meta:Ce.getInstance().getMeta()},{headers:{apikey:this.sendApiKey?qt:void 0,Authorization:o}})}},$9=jy;import{useMemo as Kee}from"react";var Yee=()=>{let r=ee();return Kee(()=>({isDeveloperMode:r.developerMode??!1}),[r])},Ma=Yee;import{jsx as Qee}from"react/jsx-runtime";var Wy=Zee({isAuth:!1,isLoading:!1,htLicenseKey:"non-commercial-and-evaluation",isExpire:!1,verifyLicenseKey:void 0,verifyLicenseKeyListener:null,isVerifyingLicenseKey:!1}),V9=({licenseKey:r,children:t})=>{let o="non-commercial-and-evaluation",[n,a]=$p(!1),[i,s]=$p(!1),[l,c]=$p(!0),[u,d]=$p(o),{language:p,baseUrl:m,isSelfHosted:h}=ee(),[g,b]=$p(!0),{sessionId:w}=wr(),C=F9(()=>new $9({sendApiKey:!h},{baseURL:m}),[m,h]),y=F9(()=>new eg({sendApiKey:!h},{baseURL:m}),[m,h]),{setFeatureWhiteList:S}=Nt(),{isDeveloperMode:x}=Ma(),_=Xee(new Jee),I=async T=>{d(T?.ht_license_key?.trim()||o),a(Jh(x,T));let R;T.plan_detail.features.i18n&&p?R=p:R=T.default_language??"en";let k=await y.getLocales({language:R},r),O=Qh.mapDAOtoFeatureWhitelist(T,k);return S(O),c(!1),s(!(T.is_verified??!1)),!0},M=()=>{let T=Qh.getEmptyFeatureWhitelist();return S(T),c(!1),!1},E=async()=>{b(!0);try{let T=await C.verifyLicenseKey({licenseKey:r,sessionId:w});return b(!1),_.current?.next(Jh(x,T)),I(T)}catch{return _.current?.next(!1),b(!1),M()}};return _o(()=>{if(r&&r?.trim()?.length>0||h)return(async()=>{try{let R=await C.verifyLicenseKey({licenseKey:r,sessionId:w});_.current?.next(Jh(x,R)),b(!1),await I(R)}catch{_.current?.next(!1),b(!1),M()}})(),()=>{b(!1),c(!1)};{let T=Qh.getEmptyFeatureWhitelist();S(T),c(!1),b(!1),a(!1)}return()=>{}}),Qee(Wy.Provider,{value:{isAuth:n,isLoading:l,htLicenseKey:u,isExpire:i,verifyLicenseKey:E,isVerifyingLicenseKey:g,verifyLicenseKeyListener:_.current},children:t})};import{useContext as ete}from"react";var tte=()=>ete(Wy),Zt=tte;import{createContext as rte,useState as ote}from"react";import{jsx as nte}from"react/jsx-runtime";var zy=rte({reload:()=>{}}),H9=({children:r})=>{let[t,o]=ote(!1),n=a=>{Ce.getInstance().setReloadSession(a),o(!0),setTimeout(()=>{o(!1)},0)};return nte(zy.Provider,{value:{reload:n},children:t?null:r})};import{useContext as ate}from"react";var ite=()=>{let r=ate(zy);if(!r)throw new Error("useImporterSession must be used within an ImporterSessionManager");return r},B9=ite;var ute=({modal:r,isAuth:t,openModal:o,licenseKey:n})=>{let a=Yt(),i=Kt(),{columns:s,embedUploadArea:l=!1,dynamicImport:c,identifier:u}=ee(),{showConfirmModal:d}=ot(),{t:p}=lte(),{automaticHeaderDetection:m,workersBaseUrl:h}=ee(),{warnLicenseKeyIsInvalid:g}=Xi(),{featureWhiteList:b}=Nt(),{cancelHookObservable:w}=xo(),{verifyLicenseKeyListener:C,verifyLicenseKey:y,isVerifyingLicenseKey:S}=Zt(),{reload:x}=B9(),_=ste(async I=>x(I),[x]);return U9(()=>{qh.listener(u,async({data:I,headerIndex:M,step:E})=>{try{if(!t){g();return}if(!c)throw new Error("1002");if(Xh.checkIsEmpty(I)&&E!=="review"){r&&!l&&(o(),Ce.getInstance().setStartSession(u),a({pathname:vr}));return}if(Xh.isInValidObjectArray(I))throw new Error("1000");let T=E;if(["header","mapping","review","sheetSelection"].includes(T)||(T="header"),T==="review"){let R=new Yh(i.getDataModels()),{parsedValues:k,dataInfos:O}=R.handle({data:(cte(I)?Ay:I)??Ay});r&&o(),setTimeout(()=>{Ce.getInstance().setStartSession(u),a({pathname:ir},{state:{columns:s,dataModels:i.getDataModels(),dynamicValues:k,dynamicDataInfos:O,dynamicUploadStart:ir,hideStepper:!0}})})}else if(T==="sheetSelection"){let k=await new Zh().handle({data:I??[],hasDateType:i.hasDateType(),workersBaseUrl:h??""}),O=br;r&&o(),setTimeout(()=>{Ce.getInstance().setStartSession(u),a({pathname:O},{state:{spreadSheetList:k,dynamicUploadStart:O}})},220)}else{let k=await new Kh().handle({data:I??{},hasDateType:i.hasDateType(),headerIndex:M,automaticHeaderDetection:m,workersBaseUrl:h??""}),O=k?.getSpreadSheetList()?.getAllSheets()?.[0]?.getData();if(Xh.checkIsEmpty(O)){r&&!l&&(o(),Ce.getInstance().setStartSession(u),a({pathname:vr}));return}let A=T==="header"&&!m?Bt:Tt;r&&o(),setTimeout(()=>{Ce.getInstance().setStartSession(u),a({pathname:A},{state:{spreadSheetNavigate:k,dynamicUploadStart:A}})},220)}}catch(T){let R=()=>{switch(T.message){case"1000":return p("txt_error_dynamic_import_invalid_data_format");case"1001":return p("txt_error_dynamic_import_not_matched_tdm");case"1002":return p("txt_error_dynamic_import_no_support");default:return p("txt_error_dynamic_import_unknown")}};d({title:p("txt_default_title_error"),description:`<div>
|
|
100
100
|
<p className="font-bold">
|
|
101
101
|
${R()}
|
|
102
102
|
</p>
|
|
@@ -422,7 +422,7 @@ import{a as W7,b as z7,c as q7,d as G7,e as K7,f as Y7,g as Z7,h as X7,i as J7,j
|
|
|
422
422
|
filter: drop-shadow(0px -13px 50px rgba(17, 48, 68, 0.08));
|
|
423
423
|
`),children:[Wk("div",{className:v("flex items-center justify-end space-x-4 py-6",s||"",y?"rounded-b-lg":"",f({"&&":C.getFooterTheme().root}),f({backgroundColor:C.getGlobalTheme().getBackgroundColor()})),children:[p?p(a,"xsmd:w-auto w-full"):us(Vg,{onClick:t,disabled:a,className:"xsmd:w-auto w-full"}),us(Ue,{isShow:D&&!!T,message:us(Gt,{className:v(f({"&&":d}),f`
|
|
424
424
|
max-width: 230px;
|
|
425
|
-
`),children:T}),isShowArrow:!0,arrowClassName:d?.backgroundColor,offset:{mainAxis:10,crossAxis:-3},direction:"top",render:({setReferenceElement:V})=>us("span",{ref:V,onMouseEnter:()=>I(!0),onMouseOut:()=>I(!1),children:us(ye,{disabled:n,onClick:()=>{w(),r?.(),(spe||lpe)&&I(H=>!H)},loading:h,className:v("xsmd:w-auto w-full disabled:opacity-70",l),textClassName:"pointer-events-none",children:o||b("txt_continue")})})})]}),us(gu,{id:`${M}-${x}`,viewMode:"footer",allowRender:S,identifier:x})]})}),[p,M,i,a,n,s,x,D,y,t,r,d,l,o,w,b,C,S,h,T]);return us("div",{ref:L,className:v(y?"pt-22.5":"",m),children:!y&&N.current?cpe($,N.current):$})},ds=upe;import{useTranslation as mpe}from"react-i18next";import{jsx as n2,jsxs as ppe}from"react/jsx-runtime";var dpe=({title:r,titleId:t,...o})=>ppe("svg",{width:16,height:17,viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":t,...o,children:[r?n2("title",{id:t,children:r}):null,n2("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.47124 3.36189C8.73159 3.62224 8.73159 4.04435 8.47124 4.3047L4.27598 8.49996L8.47124 12.6952C8.73159 12.9556 8.73159 13.3777 8.47124 13.638C8.21089 13.8984 7.78878 13.8984 7.52843 13.638L2.86177 8.97136C2.60142 8.71101 2.60142 8.2889 2.86177 8.02855L7.52843 3.36189C7.78878 3.10154 8.21089 3.10154 8.47124 3.36189Z",fill:"currentColor"}),n2("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.6665 8.50004C2.6665 8.13185 2.96498 7.83337 3.33317 7.83337H12.6665C13.0347 7.83337 13.3332 8.13185 13.3332 8.50004C13.3332 8.86823 13.0347 9.16671 12.6665 9.16671H3.33317C2.96498 9.16671 2.6665 8.86823 2.6665 8.50004Z",fill:"currentColor"})]});var t1=dpe;import{jsx as zk,jsxs as qk}from"react/jsx-runtime";var fpe=({onClick:r})=>{let{t}=mpe();return qk("div",{className:"flex flex-col items-end justify-between gap-1",children:[zk("p",{className:"leading-5.5 text-gray-560 text-xs",children:t("txt_did_you_expect_different_result")}),qk("button",{type:"button",className:"text-blue-light-500 leading-5.5 flex cursor-pointer gap-1 text-xs font-medium",onClick:r,"aria-label":t("txt_switch_manual_import_title"),children:[zk(t1,{}),t("txt_switch_manual_import_title")]})]})},Gk=fpe;import{jsx as Yk}from"react/jsx-runtime";var bpe=({onPositiveClick:r,onNegativeClick:t,positiveButtonText:o,validating:n=!1,className:a,errorCount:i={current:0},popoverInfoTheme:s,isDirectToReviewEntryFromContextualEngine:l,wrapperClassName:c,positiveLoading:u,getTotalError:d})=>{let{t:p}=hpe(),{completeImportAction:m}=ee(),[h,g]=vpe(0);gpe(()=>{if(m==="block"){let C=setInterval(()=>{g(i.current)},150);return()=>{clearTimeout(C)}}},[i,m]);let b=Kk(()=>h>0,[h]),w=Kk(()=>m==="block"&&b,[m,b]);return Yk(ds,{footerStyle:"px-8",className:a,positiveButtonText:o,disabledPositive:n||w,onPositiveClick:r,onNegativeClick:t,enablePopper:w,popoverInfoTheme:s,getPopperMessage:()=>{let C=d?.()??0;return p(C===1?"txt_invalid_data_behavior_block":"txt_invalid_data_behavior_block_more_error",{errorCount:vn(C)})},backButton:l?()=>Yk(Gk,{onClick:t}):void 0,wrapperClassName:c,positiveLoading:u})},Zk=bpe;import{useCallback as _t,useEffect as ta,useLayoutEffect as Nhe,useMemo as nn,useRef as $t,useState as ci}from"react";var a2=class{constructor(t){this.calculateColumnSize=()=>Math.round(150+70*this.dataModel.getColumnSize());this.getType=()=>{if(this.dataModel.isDropdown())return"dropdown";switch(this.dataModel.getType()){case"string":return"text";case"int":case"float":return"numeric";case"percentage":return"percentage";case"currency_eur":case"currency_usd":return"currency";case"time_hm":case"time_hms":case"time_hms_24":case"time_hm_24":return"time";case"datetime":case"date_dmy":case"date_iso":case"date_mdy":return"date";default:return"text"}};this.dataModel=t}},i2=a2;import{isArray as A1,isEmpty as kD,isNil as El}from"lodash";var uo={columnInfoElementId:"column-popper-info-element",cellPopperElementId:{root:"cell-popper-element-id",single:"cell-popper-single-element-id",multiple:"cell-popper-multiple-element-id"},popoverElementId:{parentElementId:"parent-element-id",columnInfoElementId:"columnInfoElementId",errorElementId:"errorElementId",warningElementId:"warningElementId",infoElementId:"infoElementId",multipleElementId:"multipleElementId"},tableWrapperId:"table-wrapper",tableScrollerId:"table-scroller",dropdownElementId:{parent:"dropdown-parent-element-id",scroll:"dropdown-scroll-element-id"}},Xk=8,Jk="nuvo-custom-add-column";import{arrow as wpe,autoUpdate as ype,computePosition as Cpe,detectOverflow as xpe,flip as Spe,hide as _pe,offset as Ipe,shift as Mpe}from"@floating-ui/react";var r1=class{constructor(){this.isRemoveScrollEvent=!1;this.defaultPaddingLeft=87;this.paddingLeftOffset=20;this.paddingLeft=57;this.cleanupAutoUpdate=null}async changeRootElement(t,o,n,a,i,s,l){let c;s?c=s.clientWidth:c=this.defaultPaddingLeft,this.paddingLeft!==c&&this.destroy(),this.paddingLeft=c,a&&(this.popperClassName=a),o.className=`${this.popperClassName} default-popper`,await this.initPopper(t,o,n,l??!1,i),this.show()}destroy(){this.hideByCss(),this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null)}clearInstance(){this.hideByCss(),this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null)}async initPopper(t,o,n,a,i){this.rootElement=t,this.popperElement=o,this.enableExamples=a,this.parentElement=n;let{paddingLeft:s,paddingLeftOffset:l}=this,c=document.querySelector("#arrow-message-info"),u=async()=>{Cpe(t,o,{placement:"left",strategy:"absolute",middleware:[Ipe({mainAxis:12,crossAxis:0}),Mpe(),wpe({element:c||null}),Spe({fallbackPlacements:["right","bottom","top"],boundary:n,padding:{top:this.rootElement.clientHeight*.3,left:s-l}}),_pe(),{name:"overflow-offset",async fn(d){let p=await xpe(d,{boundary:n,elementContext:"reference"}),m=a?-34:0,h=(s-l)*-1;return p.top>m||d.middlewareData.hide?.referenceHidden||(d.middlewareData.hide?.referenceHiddenOffsets?.left??0)>h?(d.elements.floating.style.opacity="0",c&&(c.style.opacity="0")):(d.elements.floating.style.opacity="1",c&&(c.style.opacity="1")),{}}}]}).then(({x:d,y:p,middlewareData:m,placement:h})=>{if(Object.assign(this.popperElement.style,{position:"absolute",left:`${d}px`,top:`${p}px`}),c){let g={position:"absolute",left:`${m.arrow?.x}px`,top:`${m.arrow?.y}px`},b=m.arrow?.x||0;h==="left"?(g.right=i?"0px":"-7px",g.left=""):h==="right"?(g.right="",g.left=i?"-13px":"-7px"):h==="top"?(g.top="",g.right="",g.bottom="-7px",g.left=i?`${b-7}px`:`${b-0}px`):h==="bottom"&&(g.top="-7px",g.right="",g.bottom="",g.left=i?`${b-7}px`:`${b-0}px`),Object.assign(c.style,g)}}).catch(d=>{console.error("Error in updatePosition:",d)})};this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.cleanupAutoUpdate=ype(t,o,u,{elementResize:!0,ancestorResize:!0,ancestorScroll:!0,animationFrame:!0,layoutShift:!0}),await u()}show(){this.popperElement.style.zIndex="50",this.popperElement.style.visibility="visible",this.popperElement.style.opacity="1"}hideByCss(){this.popperElement?.style&&(this.popperElement.style.opacity="0",this.popperElement.style.visibility="none")}};var s2=r=>{if(r?.length>1)return"multiple-popper";switch(r?.[0]?.level){case"error":return"error-popper";case"warning":return"warning-popper";case"disabled":return"disabled-popper";default:return"info-popper"}},o1=r=>{if(!r)return"default-cell";switch(r){case"error":return"error-cell ingestro-cell-error";case"warning":return"warning-cell ingestro-cell-warning";case"info":return"info-cell ingestro-cell-info";case"disabled":return"disabled-cell ingestro-cell-disabled";default:return"default-cell"}};import ux from"is-promise";import{useTranslation as Lhe}from"react-i18next";import{computePosition as Epe,flip as Tpe,detectOverflow as Qk,offset as kpe,autoUpdate as Rpe}from"@floating-ui/react";var n1=class{constructor({enableExamples:t,modal:o}){this.isEditing=!1;this.enableExamples=!1;this.defaultPaddingLeft=87;this.paddingLeft=this.defaultPaddingLeft;this.cleanupAutoUpdate=null;this.close=()=>{this.hide(),this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.dropdownElement&&(this.isEditing=!1,this.rootElement=null),this.removeEventListener()};this.hide=()=>{this.dropdownElement&&(this.dropdownElement.style.opacity="0",this.dropdownElement.style.visibility="hidden",this.dropdownElement.style.pointerEvents="none",this.dropdownElement.style.borderWidth="0")};this.onClickOutside=t=>{let n=t.target.classList;!n.contains("custom-dropdown-renderer")&&!n.contains("htAutocomplete")&&!n.contains("wtBorder")&&!n.contains("wtSpreader")&&!n.contains("custom-dropdown-boolean-renderer")&&!n.contains("dropdown-item")&&!n.contains("current")&&!n.contains("search-input")&&!n.contains("dropdown-sub-item")&&!n.contains("tick-path")&&!n.contains("dropdown-header")&&!n.contains("dropdown-editor-scroller")&&!n.contains("dropdown-sub-item-label")&&!n.contains("dropdown-sub-item-container")&&this.close()};this.enableExamples=t??!1,this.modal=o,o&&(this.rootModelElement=document.querySelector("#nuvo-root-modal-element"))}async initPopper(t,o,n){this.rootElement=t,this.dropdownElement=o;let{enableExamples:a,paddingLeft:i}=this;!this.modal&&!this.rootAppElement&&(this.rootAppElement=n?.closest("#nuvo-app-root-element"));let s=async()=>{Epe(t,o,{placement:"bottom",strategy:"fixed",middleware:[kpe({mainAxis:.5,crossAxis:0}),Tpe({fallbackPlacements:["top"],boundary:(this.modal?this.rootModelElement:this.rootAppElement)||void 0,padding:{bottom:90}}),{name:"overflow-offset",async fn(l){let c=await Qk(l,{boundary:n,elementContext:"reference"}),u=await Qk(l,{boundary:n}),d=a?-34:0,p=i*-1+32;return c.top>d||c.bottom>0||u.left>p||u.right>2?l.elements.floating.style.opacity="0":l.elements.floating.style.opacity="1",{}}}]}).then(({x:l,y:c})=>{Object.assign(this.dropdownElement.style,{position:"fixed",left:`${l}px`,top:`${c}px`})})};this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.cleanupAutoUpdate=Rpe(t,o,s,{elementResize:!0,ancestorResize:!0,ancestorScroll:!0,animationFrame:!0,layoutShift:!0}),await s()}async open(t,o,n,a){let i;if(a?i=a.clientWidth:i=this.defaultPaddingLeft,this.paddingLeft=i,this.removeEventListener(),t===this.rootElement){if(this.rootElement=t,o.hasAttribute("overflow-hide"))return o.removeAttribute("overflow-hide");this.close();return}o.style&&o.scrollTo(0,0),this.isEditing=!0,this.addEventListener(),this.dropdownElement=o,this.rootElement=t,await this.initPopper(t,o,n),this.show(this.rootElement,this.dropdownElement)}show(t,o){this.rootElement=t,this.dropdownElement=o,this.dropdownElement.style.borderWidth="1px",this.dropdownElement.style.opacity="1",this.dropdownElement.style.visibility="visible",this.dropdownElement.style.pointerEvents="auto"}clearInstance(){this.hide(),this.removeEventListener(),this.isEditing=!1,this.rootElement=null,this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null)}addEventListener(){window.addEventListener("click",this.onClickOutside)}removeEventListener(){window.removeEventListener("click",this.onClickOutside)}};import{useCallback as yl,useMemo as Ope,useRef as Cl}from"react";var a1=({currentValue:r,options:t,updateValue:o,isMultiSelect:n})=>{if(n){let i=r.filter(s=>s?t.some(l=>gn(l,s)):!1);return i.includes(o)?i=i.filter(s=>s!==o):i=[...i,o],i}else return o};var l2=class r{static{this.freezeColumns=[]}constructor(){if(r.instance)throw new Error("This class is singleton please use getInstance method instead \u{1F64F}")}static getInstance(){return this.instance===null&&(this.instance=new r),this.instance}static getFreezeColumns(){return this.freezeColumns}static removeByIndex(t){this.freezeColumns.splice(t,1)}static add(t){this.freezeColumns.push(t)}static update(t,o){for(let n=0;n<this.freezeColumns.length;++n)if(this.freezeColumns[n]===t){this.freezeColumns[n]=o;break}}static cleanUp(){this.freezeColumns=[]}},_r=l2;var eR=({hotInstance:r,dataModelRegistry:t,getColWidths:o,parentTableElement:n,dropdownElement:a,currentSelectingCoord:i,searchValueRef:s,enableExamples:l,htCloneLeftWtHolderElement:c,allColumnSetting:u,isCustomAddColumn:d,modal:p})=>{let m=Ope(()=>new n1({enableExamples:l,modal:p}),[l,p]),h=Cl(-1),g=Cl(),b=Cl(""),w=Cl(),C=Cl([]),y=Cl(-1),S=Cl(-1),x=yl(async(k,O,A)=>{let P=t.getDataModels(),D=A?.getValue(),L=o(),N=A.toPhysicalColumn(O),$=L[N],V=A.getCell(k,O,!0);if(w.current=P[N],b.current=D,!V||!n.current||!a.current||!c.current)return;a.current.style.width=`${$-3}px`,s.current="";let H=u.getFreezeColumns().includes(O);await m.open(V,a.current,n.current,H?void 0:c.current)},[t,n,a,s,m,c,u,o]),_=yl(()=>{m.close(),s.current=""},[m,s]),I=yl(({row:k,col:O,value:A})=>{r.current?.hotInstance?.setDataAtCell(k,O,A)},[r]),M=yl(k=>{clearTimeout(g.current);let O=t.getDataModels(),[A,P]=r.current?.hotInstance?.getSelected()?.[0]??[-1,-1];if(A<0||P<0||A===void 0||P===void 0||d(P))return;y.current=P,S.current=A;let D=r.current?.hotInstance?.toPhysicalColumn(P)??0;if(O[D].isDropdown()){let L=r.current?.hotInstance,N=L?.getCellMeta(A,P)?.dropdownOptions,$=m.isEditing;if($){if(k.key==="ArrowUp")return h.current>0&&h.current--,k?.stopImmediatePropagation(),k?.preventDefault(),!1;if(k.key==="ArrowDown")return h.current<(N?.length??0)-1&&h.current++,k?.stopImmediatePropagation(),k?.preventDefault(),!1;if(k?.key==="Enter"){if(h.current===-1||!N||N.length===0)return _();I({row:A,col:P,value:a1({currentValue:typeof b.current=="string"?[b.current]:b.current||[],isMultiSelect:w.current?.getIsMultiSelection()??!1,options:N,updateValue:N[h.current].value})}),_()}else(k?.key==="Escape"||k?.key==="ArrowLeft"||k?.key==="ArrowRight"||k.key==="Tab")&&_();h.current=0}else{let V=N?.findIndex(H=>H.value===r.current?.hotInstance?.getValue());if(h.current=V??-1,k?.key==="ArrowUp"||k?.key==="ArrowDown"||k?.key==="ArrowLeft"||k?.key==="ArrowRight"||k.key==="Tab"||k.key==="Shift")return;k?.key==="Enter"&&(k?.stopImmediatePropagation(),k?.preventDefault())}if(k?.key==="Enter"&&(g.current=setTimeout(()=>{let[V,H]=r.current?.hotInstance?.getSelected()?.[0]??[-1,-1];if(L?.getCellMeta(V,H)?.readOnly)return _();(V>=0||H>=0)&&x(V,H,L)},0),!$))return!1}else _()},[t,r,m,x,_,I,d]),E=yl((k,O,A,P)=>{if(clearTimeout(g.current),k<0||P<0||k===void 0||P===void 0||A===void 0)return;let D=t.getDataModels(),L=O,N=r.current?.hotInstance,$=_r.getFreezeColumns().findIndex(H=>H===D[P].getBaseKey());$!==-1&&(L=$);let V=D[P].getType();if(D[P].isCategoryType()&&(a.current?.classList.add("menu-single-select"),a.current?.classList.remove("menu-boolean-select")),V==="boolean"&&(a.current?.classList.add("menu-boolean-select"),a.current?.classList.remove("menu-single-select")),D[P].isDropdown()){if(N?.getCellMeta(k,L)?.readOnly)return _();let H=N?.getCellMeta(k,L)?.dropdownOptions;y.current=r.current?.hotInstance?.toVisualColumn(P)??P,S.current=k;let U=H?.findIndex(q=>q.value===r.current?.hotInstance?.getValue());h.current=U??-1,setTimeout(()=>{x(k,O,N)},0)}else _()},[t,x,r,a,_]),T=yl((k,O)=>{if(I({row:S.current,col:y.current,value:k.toString().length?k:null}),r.current?.hotInstance?.render(),O){let A=r.current?.hotInstance?.getValue();b.current=A}else _()},[r,y,S,_,I]),R=yl(()=>{if(m.isEditing){let k=r.current?.hotInstance?.getCell(i.current.row,i.current.col,!0);k&&a.current&&n.current?m.show(k,a.current):m.hide()}},[a,n,i,m,r]);return{currentEditingModelRef:w,currentEditingValueRef:b,onSelectOption:T,dropdownOptionsRef:C,openDropdown:E,handleBeforeKeyDown:M,currentSelectorRef:h,itemMenuPopper:m,handleDropdownMenuItem:R,setDropdownOptionValue:I,editRow:S,editCol:y}};import{useMediaQuery as $he}from"react-responsive";import{css as dx}from"@emotion/css";import{numericRenderer as Ppe,textRenderer as tR}from"handsontable/renderers";import Ape from"numbro";import Npe from"numbro/languages/de-DE";Ape.registerLanguage(Npe);function xl(r,t){return function(...n){let[a,i,s,l,c,u,d]=n,p=r(s,l);return i.className=p?`${i.className} ${o1(p)}`:`${i.className} default-cell`,d.mediaSize=t?.mediaSize,d.type==="numeric"?t?.numberFormat?(d.numberFormat=t?.numberFormat,tR.apply(this,n),i.innerHTML=rt.convertToFormat(u,{targetFormat:t.numberFormat,adornment:t.numberAdornment,symbol:t.symbol})):Ppe.apply(this,n):tR.apply(this,n),i}}import{isArray as oR,isNil as Lpe}from"lodash";var rR=(r,t)=>Lpe(t)?"":r.find(o=>gn(o,t))?.label??F7(t),$pe=(r,t)=>oR(t)?t.map(o=>rR(r,o)).join(", "):rR(r,t),Sl=class{constructor(t,o){this.arrowDownIcon='<svg width="12" height="12" viewBox="0 0 7 12" fill="currentColor" xmlns="http://www.w3.org/2000/svg" class="transform rotate-90"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.58579 6L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683417 0.292893 0.292893C0.683418 -0.0976305 1.31658 -0.0976305 1.70711 0.292893L6.70711 5.29289C7.09763 5.68342 7.09763 6.31658 6.70711 6.70711L1.70711 11.7071C1.31658 12.0976 0.683418 12.0976 0.292893 11.7071C-0.0976311 11.3166 -0.0976311 10.6834 0.292893 10.2929L4.58579 6Z" fill="currentColor" /></svg>';this.closeGrayIcon='<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="m12 4-8 8M4 4l8 8" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>';this.renderer=(...t)=>{let[o,n,a,i,s,l,c]=t,u=document.createElement("div"),d=document.createElement("div"),p=document.createElement("div"),m=c?.readOnly;d.className=`text-sm pointer-events-none ${this.classNameIdentifier}-text-element truncate`,u.className=`${this.classNameIdentifier} htAutocompleteArrow justify-between relative flex items-center !box-border ${m?"":"!cursor-pointer"} h-full`,p.className="arrow-down-icon w-3 h-3 absolute right-0 pt-1 transform pointer-events-none",p.id="dropdown-arrow-icon",p.innerHTML=this.arrowDownIcon,n.className=`${n.className} !box-border !px-0 relative ${m?"htDimmed":""}`;let h=c.dropdownOptions,g=$pe(h,l);d.innerText=`${g}`;let b=this.getCellMeta(a,i);if(n.className=b?`${n.className} ${o1(b)}`:`${n.className} default-cell text-blue-dark-900`,u.appendChild(d),u.appendChild(p),!m){let w=document.createElement("div");w.className="close-icon w-4 h-4 pt-1",w.innerHTML=this.closeGrayIcon,w.addEventListener("mousedown",C=>{o.setDataAtCell(a,i,null),o.render(),setTimeout(()=>c?.onClearEditor?.(),0),C.stopPropagation(),this.afterClearValue&&this.afterClearValue()},{passive:!0}),oR(l)?l.length>0&&u.appendChild(w):g&&u.appendChild(w)}n.id=`${i}-${a}`,n.replaceChildren(u)};this.getCellMeta=t,this.afterClearValue=o}};var am=class extends Sl{constructor(){super(...arguments);this.classNameIdentifier="custom-dropdown-boolean-renderer"}};function ps(r){let{className:t,columns:o,...n}=r,a={...n};return t&&(a.className=Array.isArray(t)?t.join(" "):t),Array.isArray(o)?a.columns=o.map(i=>{if(!i)return i;let{className:s,...l}=i;return{...l,...s&&{className:Array.isArray(s)?s.join(" "):s}}}):o!==void 0&&(a.columns=o),a}var im=class extends Sl{constructor(){super(...arguments);this.classNameIdentifier="custom-dropdown-renderer"}};import{TextEditor as Fpe}from"handsontable/editors";var tn=class extends Fpe{constructor(){super(...arguments);this.rowHeight=35;this.handleInputChange=o=>{this.recalculateLineHeight(this.rowHeight)}}createElements(){super.createElements(),this.TEXTAREA.className=`${this.getCellCustomStyle()}`}open(o){let n=this.cellProperties?.mediaSize;document.querySelector(".ht_master.handsontable.innerBorderLeft.innerBorderInlineStart")&&this.col===0?this.TEXTAREA.style.marginLeft="-1px":this.TEXTAREA.style.marginLeft="0px",n?this.TEXTAREA.style.lineHeight="1.6":(this.recalculateLineHeight(this.rowHeight,!0,!0),this.TEXTAREA.addEventListener("input",this.handleInputChange)),super.open(o)}close(){super.close(),this.TEXTAREA.removeEventListener("input",this.handleInputChange)}setValue(o){if(this.cellProperties?.type==="numeric"){if(this.cellProperties?.numberFormat==="eu"&&!isNaN(Number(o))){super.setValue(`${o}`?.replace(/\./g,","));return}super.setValue(o)}else super.setValue(o)}recalculateLineHeight(o,n,a){let i=this.getValue(),s="1.6",l="2",c=i.includes(`
|
|
425
|
+
`),children:T}),isShowArrow:!0,arrowClassName:d?.backgroundColor,offset:{mainAxis:10,crossAxis:-3},direction:"top",render:({setReferenceElement:V})=>us("span",{ref:V,onMouseEnter:()=>I(!0),onMouseOut:()=>I(!1),children:us(ye,{disabled:n,onClick:()=>{w(),r?.(),(spe||lpe)&&I(H=>!H)},loading:h,className:v("xsmd:w-auto w-full disabled:opacity-70",l),textClassName:"pointer-events-none",children:o||b("txt_continue")})})})]}),us(gu,{id:`${M}-${x}`,viewMode:"footer",allowRender:S,identifier:x})]})}),[p,M,i,a,n,s,x,D,y,t,r,d,l,o,w,b,C,S,h,T]);return us("div",{ref:L,className:v(y?"pt-22.5":"",m),children:!y&&N.current?cpe($,N.current):$})},ds=upe;import{useTranslation as mpe}from"react-i18next";import{jsx as n2,jsxs as ppe}from"react/jsx-runtime";var dpe=({title:r,titleId:t,...o})=>ppe("svg",{width:16,height:17,viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":t,...o,children:[r?n2("title",{id:t,children:r}):null,n2("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.47124 3.36189C8.73159 3.62224 8.73159 4.04435 8.47124 4.3047L4.27598 8.49996L8.47124 12.6952C8.73159 12.9556 8.73159 13.3777 8.47124 13.638C8.21089 13.8984 7.78878 13.8984 7.52843 13.638L2.86177 8.97136C2.60142 8.71101 2.60142 8.2889 2.86177 8.02855L7.52843 3.36189C7.78878 3.10154 8.21089 3.10154 8.47124 3.36189Z",fill:"currentColor"}),n2("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.6665 8.50004C2.6665 8.13185 2.96498 7.83337 3.33317 7.83337H12.6665C13.0347 7.83337 13.3332 8.13185 13.3332 8.50004C13.3332 8.86823 13.0347 9.16671 12.6665 9.16671H3.33317C2.96498 9.16671 2.6665 8.86823 2.6665 8.50004Z",fill:"currentColor"})]});var t1=dpe;import{jsx as zk,jsxs as qk}from"react/jsx-runtime";var fpe=({onClick:r})=>{let{t}=mpe();return qk("div",{className:"flex flex-col items-end justify-between gap-1",children:[zk("p",{className:"leading-5.5 text-gray-560 text-xs",children:t("txt_did_you_expect_different_result")}),qk("button",{type:"button",className:"text-blue-light-500 leading-5.5 flex cursor-pointer gap-1 text-xs font-medium",onClick:r,"aria-label":t("txt_switch_manual_import_title"),children:[zk(t1,{}),t("txt_switch_manual_import_title")]})]})},Gk=fpe;import{jsx as Yk}from"react/jsx-runtime";var bpe=({onPositiveClick:r,onNegativeClick:t,positiveButtonText:o,validating:n=!1,className:a,errorCount:i={current:0},popoverInfoTheme:s,isDirectToReviewEntryFromContextualEngine:l,wrapperClassName:c,positiveLoading:u,getTotalError:d})=>{let{t:p}=hpe(),{completeImportAction:m}=ee(),[h,g]=vpe(0);gpe(()=>{if(m==="block"){let C=setInterval(()=>{g(i.current)},150);return()=>{clearTimeout(C)}}},[i,m]);let b=Kk(()=>h>0,[h]),w=Kk(()=>m==="block"&&b,[m,b]);return Yk(ds,{footerStyle:"px-8",className:a,positiveButtonText:o,disabledPositive:n||w,onPositiveClick:r,onNegativeClick:t,enablePopper:w,popoverInfoTheme:s,getPopperMessage:()=>{let C=d?.()??0;return p(C===1?"txt_invalid_data_behavior_block":"txt_invalid_data_behavior_block_more_error",{errorCount:vn(C)})},backButton:l?()=>Yk(Gk,{onClick:t}):void 0,wrapperClassName:c,positiveLoading:u})},Zk=bpe;import{useCallback as _t,useEffect as ta,useLayoutEffect as Nhe,useMemo as nn,useRef as $t,useState as ci}from"react";var a2=class{constructor(t){this.calculateColumnSize=()=>Math.round(150+70*this.dataModel.getColumnSize());this.getType=()=>{if(this.dataModel.isDropdown())return"dropdown";switch(this.dataModel.getType()){case"string":return"text";case"int":case"float":return"numeric";case"percentage":return"percentage";case"currency_eur":case"currency_usd":return"currency";case"time_hm":case"time_hms":case"time_hms_24":case"time_hm_24":return"time";case"datetime":case"date_dmy":case"date_iso":case"date_mdy":return"date";default:return"text"}};this.dataModel=t}},i2=a2;import{isArray as A1,isEmpty as kD,isNil as El}from"lodash";var uo={columnInfoElementId:"column-popper-info-element",cellPopperElementId:{root:"cell-popper-element-id",single:"cell-popper-single-element-id",multiple:"cell-popper-multiple-element-id"},popoverElementId:{parentElementId:"parent-element-id",columnInfoElementId:"columnInfoElementId",errorElementId:"errorElementId",warningElementId:"warningElementId",infoElementId:"infoElementId",multipleElementId:"multipleElementId"},tableWrapperId:"table-wrapper",tableScrollerId:"table-scroller",dropdownElementId:{parent:"dropdown-parent-element-id",scroll:"dropdown-scroll-element-id"}},Xk=8,Jk="nuvo-custom-add-column";import{arrow as wpe,autoUpdate as ype,computePosition as Cpe,detectOverflow as xpe,flip as Spe,hide as _pe,offset as Ipe,shift as Mpe}from"@floating-ui/react";var r1=class{constructor(){this.isRemoveScrollEvent=!1;this.defaultPaddingLeft=87;this.paddingLeftOffset=20;this.paddingLeft=57;this.cleanupAutoUpdate=null}async changeRootElement(t,o,n,a,i,s,l){let c;s?c=s.clientWidth:c=this.defaultPaddingLeft,this.paddingLeft!==c&&this.destroy(),this.paddingLeft=c,a&&(this.popperClassName=a),o.className=`${this.popperClassName} default-popper`,await this.initPopper(t,o,n,l??!1,i),this.show()}destroy(){this.hideByCss(),this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null)}clearInstance(){this.hideByCss(),this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null)}async initPopper(t,o,n,a,i){this.rootElement=t,this.popperElement=o,this.enableExamples=a,this.parentElement=n;let{paddingLeft:s,paddingLeftOffset:l}=this,c=document.querySelector("#arrow-message-info"),u=async()=>{Cpe(t,o,{placement:"left",strategy:"absolute",middleware:[Ipe({mainAxis:12,crossAxis:0}),Mpe(),wpe({element:c||null}),Spe({fallbackPlacements:["right","bottom","top"],boundary:n,padding:{top:this.rootElement.clientHeight*.3,left:s-l}}),_pe(),{name:"overflow-offset",async fn(d){let p=await xpe(d,{boundary:n,elementContext:"reference"}),m=a?-34:0,h=(s-l)*-1;return p.top>m||d.middlewareData.hide?.referenceHidden||(d.middlewareData.hide?.referenceHiddenOffsets?.left??0)>h?(d.elements.floating.style.opacity="0",c&&(c.style.opacity="0")):(d.elements.floating.style.opacity="1",c&&(c.style.opacity="1")),{}}}]}).then(({x:d,y:p,middlewareData:m,placement:h})=>{if(Object.assign(this.popperElement.style,{position:"absolute",left:`${d}px`,top:`${p}px`}),c){let g={position:"absolute",left:`${m.arrow?.x}px`,top:`${m.arrow?.y}px`},b=m.arrow?.x||0;h==="left"?(g.right=i?"0px":"-7px",g.left=""):h==="right"?(g.right="",g.left=i?"-13px":"-7px"):h==="top"?(g.top="",g.right="",g.bottom="-7px",g.left=i?`${b-7}px`:`${b-0}px`):h==="bottom"&&(g.top="-7px",g.right="",g.bottom="",g.left=i?`${b-7}px`:`${b-0}px`),Object.assign(c.style,g)}}).catch(d=>{console.error("Error in updatePosition:",d)})};this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.cleanupAutoUpdate=ype(t,o,u,{elementResize:!0,ancestorResize:!0,ancestorScroll:!0,animationFrame:!0,layoutShift:!0}),await u()}show(){this.popperElement.style.zIndex="50",this.popperElement.style.visibility="visible",this.popperElement.style.opacity="1"}hideByCss(){this.popperElement?.style&&(this.popperElement.style.opacity="0",this.popperElement.style.visibility="none")}};var s2=r=>{if(r?.length>1)return"multiple-popper";switch(r?.[0]?.level){case"error":return"error-popper";case"warning":return"warning-popper";case"disabled":return"disabled-popper";default:return"info-popper"}},o1=r=>{if(!r)return"default-cell";switch(r){case"error":return"error-cell ingestro-cell-error";case"warning":return"warning-cell ingestro-cell-warning";case"info":return"info-cell ingestro-cell-info";case"disabled":return"disabled-cell ingestro-cell-disabled";default:return"default-cell"}};import ux from"is-promise";import{useTranslation as Lhe}from"react-i18next";import{computePosition as Epe,flip as Tpe,detectOverflow as Qk,offset as kpe,autoUpdate as Rpe}from"@floating-ui/react";var n1=class{constructor({enableExamples:t,modal:o}){this.isEditing=!1;this.enableExamples=!1;this.defaultPaddingLeft=87;this.paddingLeft=this.defaultPaddingLeft;this.cleanupAutoUpdate=null;this.close=()=>{this.hide(),this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.dropdownElement&&(this.isEditing=!1,this.rootElement=null),this.removeEventListener()};this.hide=()=>{this.dropdownElement&&(this.dropdownElement.style.opacity="0",this.dropdownElement.style.visibility="hidden",this.dropdownElement.style.pointerEvents="none",this.dropdownElement.style.borderWidth="0")};this.onClickOutside=t=>{let n=t.target.classList;!n.contains("custom-dropdown-renderer")&&!n.contains("htAutocomplete")&&!n.contains("wtBorder")&&!n.contains("wtSpreader")&&!n.contains("custom-dropdown-boolean-renderer")&&!n.contains("dropdown-item")&&!n.contains("current")&&!n.contains("search-input")&&!n.contains("dropdown-sub-item")&&!n.contains("tick-path")&&!n.contains("dropdown-header")&&!n.contains("dropdown-editor-scroller")&&!n.contains("dropdown-sub-item-label")&&!n.contains("dropdown-sub-item-container")&&this.close()};this.enableExamples=t??!1,this.modal=o,o&&(this.rootModelElement=document.querySelector("#nuvo-root-modal-element"))}async initPopper(t,o,n){this.rootElement=t,this.dropdownElement=o;let{enableExamples:a,paddingLeft:i}=this;!this.modal&&!this.rootAppElement&&(this.rootAppElement=n?.closest("#nuvo-app-root-element"));let s=async()=>{Epe(t,o,{placement:"bottom",strategy:"fixed",middleware:[kpe({mainAxis:.5,crossAxis:0}),Tpe({fallbackPlacements:["top"],boundary:(this.modal?this.rootModelElement:this.rootAppElement)||void 0,padding:{bottom:90}}),{name:"overflow-offset",async fn(l){let c=await Qk(l,{boundary:n,elementContext:"reference"}),u=await Qk(l,{boundary:n}),d=a?-34:0,p=i*-1+32;return c.top>d||c.bottom>0||u.left>p||u.right>2?l.elements.floating.style.opacity="0":l.elements.floating.style.opacity="1",{}}}]}).then(({x:l,y:c})=>{Object.assign(this.dropdownElement.style,{position:"fixed",left:`${l}px`,top:`${c}px`})})};this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.cleanupAutoUpdate=Rpe(t,o,s,{elementResize:!0,ancestorResize:!0,ancestorScroll:!0,animationFrame:!0,layoutShift:!0}),await s()}async open(t,o,n,a){let i;if(a?i=a.clientWidth:i=this.defaultPaddingLeft,this.paddingLeft=i,this.removeEventListener(),t===this.rootElement){if(this.rootElement=t,o.hasAttribute("overflow-hide"))return o.removeAttribute("overflow-hide");this.close();return}o.style&&o.scrollTo(0,0),this.isEditing=!0,this.addEventListener(),this.dropdownElement=o,this.rootElement=t,await this.initPopper(t,o,n),this.show(this.rootElement,this.dropdownElement)}show(t,o){this.rootElement=t,this.dropdownElement=o,this.dropdownElement.style.borderWidth="1px",this.dropdownElement.style.opacity="1",this.dropdownElement.style.visibility="visible",this.dropdownElement.style.pointerEvents="auto"}clearInstance(){this.hide(),this.removeEventListener(),this.isEditing=!1,this.rootElement=null,this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null)}addEventListener(){window.addEventListener("click",this.onClickOutside)}removeEventListener(){window.removeEventListener("click",this.onClickOutside)}};import{useCallback as yl,useMemo as Ope,useRef as Cl}from"react";var a1=({currentValue:r,options:t,updateValue:o,isMultiSelect:n})=>{if(n){let i=r.filter(s=>s?t.some(l=>gn(l,s)):!1);return i.includes(o)?i=i.filter(s=>s!==o):i=[...i,o],i}else return o};var l2=class r{static{this.freezeColumns=[]}constructor(){if(r.instance)throw new Error("This class is singleton please use getInstance method instead \u{1F64F}")}static getInstance(){return this.instance===null&&(this.instance=new r),this.instance}static getFreezeColumns(){return this.freezeColumns}static removeByIndex(t){this.freezeColumns.splice(t,1)}static add(t){this.freezeColumns.push(t)}static update(t,o){for(let n=0;n<this.freezeColumns.length;++n)if(this.freezeColumns[n]===t){this.freezeColumns[n]=o;break}}static cleanUp(){this.freezeColumns=[]}},_r=l2;var eR=({hotInstance:r,dataModelRegistry:t,getColWidths:o,parentTableElement:n,dropdownElement:a,currentSelectingCoord:i,searchValueRef:s,enableExamples:l,htCloneLeftWtHolderElement:c,allColumnSetting:u,isCustomAddColumn:d,modal:p})=>{let m=Ope(()=>new n1({enableExamples:l,modal:p}),[l,p]),h=Cl(-1),g=Cl(),b=Cl(""),w=Cl(),C=Cl([]),y=Cl(-1),S=Cl(-1),x=yl(async(k,O,A)=>{let P=t.getDataModels(),D=A?.getValue(),L=o(),N=A.toPhysicalColumn(O),$=L[N],V=A.getCell(k,O,!0);if(w.current=P[N],b.current=D,!V||!n.current||!a.current||!c.current)return;a.current.style.width=`${$-3}px`,s.current="";let H=u.getFreezeColumns().includes(O);await m.open(V,a.current,n.current,H?void 0:c.current)},[t,n,a,s,m,c,u,o]),_=yl(()=>{m.close(),s.current=""},[m,s]),I=yl(({row:k,col:O,value:A})=>{r.current?.hotInstance?.setDataAtCell(k,O,A)},[r]),M=yl(k=>{clearTimeout(g.current);let O=t.getDataModels(),[A,P]=r.current?.hotInstance?.getSelected()?.[0]??[-1,-1];if(A<0||P<0||A===void 0||P===void 0||d(P))return;y.current=P,S.current=A;let D=r.current?.hotInstance?.toPhysicalColumn(P)??0;if(O[D].isDropdown()){let L=r.current?.hotInstance,N=L?.getCellMeta(A,P)?.dropdownOptions,$=m.isEditing;if($){if(k.key==="ArrowUp")return h.current>0&&h.current--,k?.stopImmediatePropagation(),k?.preventDefault(),!1;if(k.key==="ArrowDown")return h.current<(N?.length??0)-1&&h.current++,k?.stopImmediatePropagation(),k?.preventDefault(),!1;if(k?.key==="Enter"){if(h.current===-1||!N||N.length===0)return _();I({row:A,col:P,value:a1({currentValue:typeof b.current=="string"?[b.current]:b.current||[],isMultiSelect:w.current?.getIsMultiSelection()??!1,options:N,updateValue:N[h.current].value})}),_()}else(k?.key==="Escape"||k?.key==="ArrowLeft"||k?.key==="ArrowRight"||k.key==="Tab")&&_();h.current=0}else{let V=N?.findIndex(H=>H.value===r.current?.hotInstance?.getValue());if(h.current=V??-1,k?.key==="ArrowUp"||k?.key==="ArrowDown"||k?.key==="ArrowLeft"||k?.key==="ArrowRight"||k.key==="Tab"||k.key==="Shift")return;k?.key==="Enter"&&(k?.stopImmediatePropagation(),k?.preventDefault())}if(k?.key==="Enter"&&(g.current=setTimeout(()=>{let[V,H]=r.current?.hotInstance?.getSelected()?.[0]??[-1,-1];if(L?.getCellMeta(V,H)?.readOnly)return _();(V>=0||H>=0)&&x(V,H,L)},0),!$))return!1}else _()},[t,r,m,x,_,I,d]),E=yl((k,O,A,P)=>{if(clearTimeout(g.current),k<0||P<0||k===void 0||P===void 0||A===void 0)return;let D=t.getDataModels(),L=O,N=r.current?.hotInstance,$=_r.getFreezeColumns().findIndex(H=>H===D[P].getBaseKey());$!==-1&&(L=$);let V=D[P].getType();if(D[P].isCategoryType()&&(a.current?.classList.add("menu-single-select"),a.current?.classList.remove("menu-boolean-select")),V==="boolean"&&(a.current?.classList.add("menu-boolean-select"),a.current?.classList.remove("menu-single-select")),D[P].isDropdown()){if(N?.getCellMeta(k,L)?.readOnly)return _();let H=N?.getCellMeta(k,L)?.dropdownOptions;y.current=r.current?.hotInstance?.toVisualColumn(P)??P,S.current=k;let U=H?.findIndex(q=>q.value===r.current?.hotInstance?.getValue());h.current=U??-1,setTimeout(()=>{x(k,O,N)},0)}else _()},[t,x,r,a,_]),T=yl((k,O)=>{if(I({row:S.current,col:y.current,value:k.toString().length?k:null}),r.current?.hotInstance?.render(),O){let A=r.current?.hotInstance?.getValue();b.current=A}else _()},[r,y,S,_,I]),R=yl(()=>{if(m.isEditing){let k=r.current?.hotInstance?.getCell(i.current.row,i.current.col,!0);k&&a.current&&n.current?m.show(k,a.current):m.hide()}},[a,n,i,m,r]);return{currentEditingModelRef:w,currentEditingValueRef:b,onSelectOption:T,dropdownOptionsRef:C,openDropdown:E,handleBeforeKeyDown:M,currentSelectorRef:h,itemMenuPopper:m,handleDropdownMenuItem:R,setDropdownOptionValue:I,editRow:S,editCol:y}};import{useMediaQuery as $he}from"react-responsive";import{css as dx}from"@emotion/css";import{numericRenderer as Ppe,textRenderer as tR}from"handsontable/renderers";import Ape from"numbro";import Npe from"numbro/languages/de-DE";Ape.registerLanguage(Npe);function xl(r,t){return function(...n){let[a,i,s,l,c,u,d]=n,p=r(s,l);return i.className=p?`${i.className} ${o1(p)}`:`${i.className} default-cell`,d.mediaSize=t?.mediaSize,d.type==="numeric"?t?.numberFormat?(d.numberFormat=t?.numberFormat,tR.apply(this,n),i.innerHTML=rt.convertToFormat(u,{targetFormat:t.numberFormat,adornment:t.numberAdornment,symbol:t.symbol})):Ppe.apply(this,n):tR.apply(this,n),i}}import{isArray as oR,isNil as Lpe}from"lodash";var rR=(r,t)=>Lpe(t)?"":r.find(o=>gn(o,t))?.label??F7(t),$pe=(r,t)=>oR(t)?t.map(o=>rR(r,o)).join(", "):rR(r,t),Sl=class{constructor(t,o){this.arrowDownIcon='<svg width="12" height="12" viewBox="0 0 7 12" fill="currentColor" xmlns="http://www.w3.org/2000/svg" class="transform rotate-90"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.58579 6L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683417 0.292893 0.292893C0.683418 -0.0976305 1.31658 -0.0976305 1.70711 0.292893L6.70711 5.29289C7.09763 5.68342 7.09763 6.31658 6.70711 6.70711L1.70711 11.7071C1.31658 12.0976 0.683418 12.0976 0.292893 11.7071C-0.0976311 11.3166 -0.0976311 10.6834 0.292893 10.2929L4.58579 6Z" fill="currentColor" /></svg>';this.closeGrayIcon='<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path d="m12 4-8 8M4 4l8 8" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>';this.renderer=(...t)=>{let[o,n,a,i,s,l,c]=t,u=document.createElement("div"),d=document.createElement("div"),p=document.createElement("div"),m=c?.readOnly;d.className=`text-sm pointer-events-none ${this.classNameIdentifier}-text-element truncate`,u.className=`${this.classNameIdentifier} htAutocompleteArrow justify-between relative flex items-center !box-border ${m?"":"!cursor-pointer"} h-full`,p.className="arrow-down-icon w-3 h-3 absolute right-0 transform pointer-events-none 3xl:pt-1",p.id="dropdown-arrow-icon",p.innerHTML=this.arrowDownIcon,n.className=`${n.className} !box-border !px-0 relative ${m?"htDimmed":""}`;let h=c.dropdownOptions,g=$pe(h,l);d.innerText=`${g}`;let b=this.getCellMeta(a,i);if(n.className=b?`${n.className} ${o1(b)}`:`${n.className} default-cell text-blue-dark-900`,u.appendChild(d),u.appendChild(p),!m){let w=document.createElement("div");w.className="close-icon w-4 h-4 3xl:pt-1",w.innerHTML=this.closeGrayIcon,w.addEventListener("mousedown",C=>{o.setDataAtCell(a,i,null),o.render(),setTimeout(()=>c?.onClearEditor?.(),0),C.stopPropagation(),this.afterClearValue&&this.afterClearValue()},{passive:!0}),oR(l)?l.length>0&&u.appendChild(w):g&&u.appendChild(w)}n.id=`${i}-${a}`,n.replaceChildren(u)};this.getCellMeta=t,this.afterClearValue=o}};var am=class extends Sl{constructor(){super(...arguments);this.classNameIdentifier="custom-dropdown-boolean-renderer"}};function ps(r){let{className:t,columns:o,...n}=r,a={...n};return t&&(a.className=Array.isArray(t)?t.join(" "):t),Array.isArray(o)?a.columns=o.map(i=>{if(!i)return i;let{className:s,...l}=i;return{...l,...s&&{className:Array.isArray(s)?s.join(" "):s}}}):o!==void 0&&(a.columns=o),a}var im=class extends Sl{constructor(){super(...arguments);this.classNameIdentifier="custom-dropdown-renderer"}};import{TextEditor as Fpe}from"handsontable/editors";var tn=class extends Fpe{constructor(){super(...arguments);this.rowHeight=35;this.handleInputChange=o=>{this.recalculateLineHeight(this.rowHeight)}}createElements(){super.createElements(),this.TEXTAREA.className=`${this.getCellCustomStyle()}`}open(o){let n=this.cellProperties?.mediaSize;document.querySelector(".ht_master.handsontable.innerBorderLeft.innerBorderInlineStart")&&this.col===0?this.TEXTAREA.style.marginLeft="-1px":this.TEXTAREA.style.marginLeft="0px",n?this.TEXTAREA.style.lineHeight="1.6":(this.recalculateLineHeight(this.rowHeight,!0,!0),this.TEXTAREA.addEventListener("input",this.handleInputChange)),super.open(o)}close(){super.close(),this.TEXTAREA.removeEventListener("input",this.handleInputChange)}setValue(o){if(this.cellProperties?.type==="numeric"){if(this.cellProperties?.numberFormat==="eu"&&!isNaN(Number(o))){super.setValue(`${o}`?.replace(/\./g,","));return}super.setValue(o)}else super.setValue(o)}recalculateLineHeight(o,n,a){let i=this.getValue(),s="1.6",l="2",c=i.includes(`
|
|
426
426
|
`);a&&(this.TEXTAREA.style.lineHeight=l),setTimeout(()=>{if(c){if(this.TEXTAREA.style.lineHeight===s)return;this.TEXTAREA.style.lineHeight=s,n&&this.refreshDimensions()}else if(this.TEXTAREA.scrollHeight>(o||this.TEXTAREA.clientHeight)){if(this.TEXTAREA.style.lineHeight===s)return;this.TEXTAREA.style.lineHeight=s,n&&this.refreshDimensions()}else{if(this.TEXTAREA.style.lineHeight===l)return;this.TEXTAREA.style.lineHeight=l}},0)}};var i1=class extends tn{getCellCustomStyle(){return"custom-percentage-editor"}};import{autoUpdate as Vpe,computePosition as Hpe,flip as Bpe,offset as Upe,shift as jpe}from"@floating-ui/react";var s1=class{constructor(){this.showEvents=["mouseenter"];this.hideEvents=["mouseleave"];this.isPopperContainerHovered=!1;this.cleanupAutoUpdate=null;this.hideCurrentRoot=()=>{this.rootElement&&this.popperElement&&this.hide(this.rootElement,this.popperElement),this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null)};this.onPopperContainerMouseEnter=()=>{this.isPopperContainerHovered=!0,this.show(this.rootElement,this.popperElement)};this.onPopperContainerMouseLeave=()=>{this.isPopperContainerHovered=!1,this.hide(this.rootElement,this.popperElement)}}async initPopper(t,o,n,a){if(this.rootElement=t,this.popperElement=o,!o)return;let i=async()=>{Hpe(t,o,{placement:a||"top",strategy:"fixed",middleware:[Upe({mainAxis:8,crossAxis:0}),jpe(),Bpe({fallbackPlacements:["top-end"]})]}).then(({x:s,y:l})=>{Object.assign(this.popperElement.style,{position:"fixed",left:`${s}px`,top:`${l}px`})})};this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.cleanupAutoUpdate=Vpe(t,o,i,{elementResize:!0,ancestorResize:!0,ancestorScroll:!0,animationFrame:!0,layoutShift:!0}),await i(),o.innerHTML="",o.innerHTML=n,this.show(t,o),this.popperElement.addEventListener("mouseenter",this.onPopperContainerMouseEnter),this.popperElement.addEventListener("mouseleave",this.onPopperContainerMouseLeave),this.showEvents.forEach(s=>{this.rootElement?.addEventListener(s,()=>this.show(t,o))}),this.hideEvents.forEach(s=>{this.rootElement?.addEventListener(s,()=>{setTimeout(()=>{this.isPopperContainerHovered||this.hide(t,o)},200)})})}async changeRootElement(t,o,n,a){this.rootElement=t,this.popperElement=o,this.removeEventListener(this.rootElement,this.popperElement),await this.initPopper(t,o,n,a)}removeEventListener(t,o){this.showEvents.forEach(n=>{this.rootElement?.removeEventListener(n,()=>this.show(t,o))}),this.hideEvents.forEach(n=>{this.rootElement?.removeEventListener(n,()=>this.hide(t,o))})}show(t,o){this.rootElement=t,this.popperElement=o,this.popperElement?.setAttribute("data-show",""),this.popperElement.style&&(this.popperElement.style.visibility="visible",this.popperElement.style.opacity="1",this.popperElement.style.pointerEvents="auto")}hide(t,o){this.rootElement=t,this.popperElement=o,this.popperElement?.removeAttribute("data-show"),this.popperElement?.removeEventListener("mouseenter",this.onPopperContainerMouseEnter),this.popperElement?.removeEventListener("mouseleave",this.onPopperContainerMouseLeave),this.popperElement.style&&(this.popperElement.style.visibility="hidden",this.popperElement.style.opacity="0",this.popperElement.style.pointerEvents="none")}};var l1=class extends tn{getCellCustomStyle(){return"custom-text-editor"}};import{BehaviorSubject as zpe}from"rxjs";import{BehaviorSubject as Wpe}from"rxjs";var c2=class{constructor(){this.referenceElement=null;this.contextMenuPopperObservable=()=>this._contextMenuPopperObservable;this.setReferenceElement=t=>{this.referenceElement=t,this.contextMenuPopperObservable().next(this)};this.getReferenceElement=()=>this.referenceElement;this._contextMenuPopperObservable=new Wpe(this)}},nR=c2;var u2=class r{constructor(){this.currentOpenMenu=null;this.disabled=!1;this.setTableContainer=t=>{this.tableContainer=t};this.getContextMenuPopper=()=>this.contextMenuPopper;this.closeMenu=()=>{this.currentOpenMenu=null,this._contextMenuObservable.next(this),this.clearAllSelectedClass()};this.contextMenuObservable=()=>this._contextMenuObservable;this.registerEventHeaderMenuButton=(t,o)=>{let n=t.querySelector(`.${r.menuButtonClassName}`);if(!n)return;let a=()=>{n.classList.add(r.selectedClassName)},i=()=>{n.classList.remove(r.selectedClassName)};t.addEventListener("click",()=>{this.closeMenu()}),n.addEventListener("click",s=>{this.disabled||(s.stopPropagation(),this.openMenu(o),this.contextMenuPopper.setReferenceElement(n),this.clearAllSelectedClass(),a())},!1),this.currentOpenMenu===o?(this.contextMenuPopper.setReferenceElement(n),a()):i()};this.getCurrentOpenMenu=()=>this.currentOpenMenu;this.setDisabled=t=>{this.disabled=t};this.clearAllSelectedClass=()=>{if(!this.tableContainer)return;this.tableContainer.querySelectorAll(`.${r.menuButtonClassName}`).forEach(o=>{o.classList.remove(r.selectedClassName)})};this.openMenu=t=>{if(t===this.currentOpenMenu){this.closeMenu();return}this.currentOpenMenu=t,this._contextMenuObservable.next(this)};this._contextMenuObservable=new zpe(this),this.contextMenuPopper=new nR}static{this.menuButtonClassName="context-menu-button"}static{this.selectedClassName="selected"}},c1=u2;var d2=class{constructor(){this.setHotInstance=t=>{this.hotInstance=t};this.hasMaximumHideColumn=t=>t.filter(n=>!n.hide).length===1;this.showHideColumns=(t,o,n)=>{let a=[...t],i=[];if(n)for(let l=o-1;l>=0&&t[l].hide;--l)i.push(l),a[l].hide=!1;else for(let l=o+1;l<t.length&&t[l].hide;++l)i.push(l),a[l].hide=!1;this.hotInstance?.getPlugin("hiddenColumns")?.showColumns(i),this.hotInstance?.render()}}static{this.hideButtonClassName="hide-arrow-btn"}static{this.hideButtonHoverClassName="hide-arrow-btn-hover"}static{this.hideIconLeftClassName="hide-icon-left"}static{this.hideIconRightClassName="hide-icon-right"}hideColumn(t,o,n){let a=[...n];a[t].hide=o;let i=this.hotInstance?.getPlugin("hiddenColumns"),s=this.hotInstance?.getPlugin("autoColumnSize");return o?i?.hideColumn(t):i?.showColumn(t),s?.calculateAllColumnsWidth(),this.hotInstance?.render(),window.dispatchEvent(new Event("resize")),a}displayShowColumnIcon(t){let o=[];for(let n=0;n<t.length;++n)n===0?t[n+1]?.hide?o[n]={iconR:!0}:o[n]={iconR:!1}:n===t.length-1?t[n-1]?.hide?o[n]={iconL:!0}:o[n]={iconL:!1}:t[n-1]?.hide&&t[n+1]?.hide?o[n]={iconL:!0,iconR:!0}:t[n-1]?.hide?o[n]={iconL:!0,iconR:!1}:t[n+1]?.hide?o[n]={iconL:!1,iconR:!0}:o[n]={iconL:!1,iconR:!1};return o}},er=d2;var p2=class r{constructor(){this.setHotInstance=t=>{this.hotInstance=t};this.registerOnSorting=t=>{this.onSorting=t};this.showLoading=t=>{let o=this.hotInstance;if(!o)return;let n=o.getCell(-1,t,!0);n&&n.classList.add(r.sortLoadingClassName)};this.sortColumn=(t,o)=>{let n=this.hotInstance;if(!n)return;let a=n.getPlugin("columnSorting");a&&(o===null?a.clearSort():n.batchRender(()=>{a.clearSort(),a.sort({column:t,sortOrder:o==="ASC"?"asc":"desc"})}),this.onSorting?.())}}static{this.sortLoadingClassName="sort-loading"}static{this.sortLoaderClassName="sort-loader"}},u1=p2;var qpe='<svg width="20" height="21" viewBox="0 0 20 21" class="!bg-transparent" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 19a8 8 0 1 0 0-17 8 8 0 0 0 0 17ZM10 14h0M10 7v3" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>',Gpe=`<svg width="20" height="20" class="dot-icon" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
427
427
|
<path d="M16.1634 11.6667C16.6236 11.6667 16.9967 11.2936 16.9967 10.8333C16.9967 10.3731 16.6236 10 16.1634 10C15.7032 10 15.3301 10.3731 15.3301 10.8333C15.3301 11.2936 15.7032 11.6667 16.1634 11.6667Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
428
428
|
<path d="M10.3302 11.6667C10.7904 11.6667 11.1635 11.2936 11.1635 10.8333C11.1635 10.3731 10.7904 10 10.3302 10C9.86992 10 9.49683 10.3731 9.49683 10.8333C9.49683 11.2936 9.86992 11.6667 10.3302 11.6667Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
@@ -1279,7 +1279,7 @@ import{a as W7,b as z7,c as q7,d as G7,e as K7,f as Y7,g as Z7,h as X7,i as J7,j
|
|
|
1279
1279
|
${m.getButtonTheme().exportExcel?.icon}
|
|
1280
1280
|
`)}),s?"":p("txt_export_as_excel")]})})})}),u?kx("div",{className:v("z-103 rounded-medium border-gray-120 w-44 border bg-white",f`
|
|
1281
1281
|
box-shadow: 0px 4px 16px 0px rgba(27, 80, 113, 0.08);
|
|
1282
|
-
`,f({"&&":m.getButtonTheme().exportExcel?.dropdown?.root})),style:w,ref:b.setFloating,children:[ys(Tx,{disabled:r,onClick:S,tooltipDisabledMessage:p("txt_unable_to_export"),className:v(f({"&&":m.getButtonTheme().exportExcel?.dropdown?.item,"&&&":r?m.getButtonTheme().exportExcel?.dropdown?.item?.[":disabled"]:""})),children:p("txt_export_all_rows")}),ys(Tx,{disabled:t,onClick:x,tooltipDisabledMessage:p("txt_unable_to_export"),className:v(f({"&&":m.getButtonTheme().exportExcel?.dropdown?.item,"&&&":t?m.getButtonTheme().exportExcel?.dropdown?.item?.[":disabled"]:""})),children:p("txt_export_error_rows")})]}):null]})},WP=$ve;import{useCallback as Rl,useEffect as Dx,useLayoutEffect as jve,useMemo as KP,useRef as Cs,useState as ui}from"react";var Rx=class{constructor(t){this.cleaningAIServices=t}async getSuggestions(t,o,n){return await this.cleaningAIServices.getSuggestions(t,o,n)}groupSuggestions(t,o,n,a,i){let s=[...t];if(!o)return s;let l={};for(let u=0;u<n.length;u++)l[n[u].getKey()]=n[u].getLabel();let c={};for(let u=0;u<t.length;u++)c[t[u].column]=u;return o.forEach(u=>{for(let d in u.data){c[d]===void 0&&(c[d]=s.length);let p=c[d];s[p]===void 0&&(s[p]={column:d,columnLabel:l[d],suggestions:[]});let m=n.findIndex(w=>w.getKey()===d),h=`${u.rowIndex}_${m}`,g={id:h,rowIndex:u.rowIndex,colIndex:m,column:d,initRowIndex:u.rowIndex,initColIndex:m,value:u.data[d].value,suggestion:u.data[d].suggestion,isDisabled:n[m]?.isDisabled()};s[p].suggestions.push(g),a.current===null&&(a.current=[]),a.current.findIndex(w=>w.id===h)<0&&a.current.push({id:h,key:d,value:u.data[d].value,error_message:i[h]||"",suggested_value:u.data[d].suggestion,status:"ignored"})}}),s}},zP=Rx;import{firstValueFrom as Bve}from"rxjs";import Vve from"axios";import{Observable as Hve}from"rxjs";var q1=class{constructor(t,o={}){this.getHttpClient=()=>this.httpClient;this.httpClient=Vve.create(o),this.sendApiKey=t.sendApiKey}observableRequest(t){let o=this.httpClient.request(t);return new Hve(n=>{o.then(a=>{n.next(a.data)}).catch(a=>{n.error(a)}).finally(()=>{n.complete()})})}get(t,o,n){let a={method:"GET",url:t,params:o,...n};return this.observableRequest(a)}post(t,o,n={}){let a={method:"POST",url:t,data:o,...n};return this.observableRequest(a)}put(t,o,n={}){let a={method:"PUT",url:t,data:o,...n};return this.observableRequest(a)}patch(t,o,n={}){let a={method:"PATCH",url:t,data:o,...n};return this.observableRequest(a)}delete(t,o={}){let n={method:"DELETE",url:t,...o};return this.observableRequest(n)}};var Ox=class extends q1{getSuggestions(t,o,n){let a={apikey:this.sendApiKey?"3n5E21bB0ZfpdrNOgWk8M3iDNkR1G3CB":void 0,Authorization:t,originRequest:o};return Bve(this.post("/cleaning-assistant",n,{headers:a}))}},qP=Ox;import{useTranslation as Wve}from"react-i18next";function GP(r,t){if(r===null||t===null)return!1;let o=r.getBoundingClientRect(),n=t.getBoundingClientRect();return!(o.right<n.left||o.left>n.right||o.bottom<n.top||o.top>n.bottom)}function G1(r,t,o,n){if(!r||!t)return;let a=`${t.initRowIndex}_${t.initColIndex}`,i=r.findIndex(s=>s.id===a);i>=0&&(r[i].status=o,n&&(r[i]={...r[i],...n}))}var YP=r=>{let{t}=Wve(),o=j(),n=Cs(!1),[a,i]=ui(!1),[s,l]=ui(!1),[c,u]=ui([]),d=Cs([]),[p,m]=ui(-1),[h,g]=ui([]),[b,w]=ui(!1),C=r.cleaningAssistantLogsRef,y=r.setTotalCleanings,S=Cs({}),x=Cs(r.dataModelRegistry.getDataModels()),_=Cs([]),I=Cs(""),[M,E]=ui(!1),[T,R]=ui(!1),k=Cs(void 0),O=Cs(0),[A,P]=ui(!1);Dx(()=>{if(A)return O.current>0?k.current=setInterval(()=>{O.current--,O.current===0&&(P(!1),clearInterval(O.current))},1e3):clearInterval(O.current),()=>{k.current!==void 0&&clearInterval(k.current)}},[A]);let D=Rl(()=>{E(!1);let G=r.validator.getError(),re=[],pe=[],me=5,te=r.hotInstance.current?.hotInstance;if(!te)return[];for(let X=0;X<G.length;X++){let ge=G[X]!==void 0&&G[X].every(fe=>fe===null);if(G[X]===void 0||ge){if(pe.length===me)continue;let fe=te.getDataAtRow(X),we={};for(let Fe=0;Fe<fe.length;Fe++){if(!x.current[Fe])continue;let He=x.current[Fe].getKey();we[He]=fe[Fe]}pe.push(we);continue}let z=te?.getSourceDataAtRow(X)??{};re.push({rowIndex:X,data:{}});let Te=re[re.length-1];for(let fe of x.current){let we=fe.getKey();Te.data[we]={value:z[we]}}for(let fe of G[X]){if(!fe||fe.colIndex<0)continue;let we=fe.colIndex,Fe=x.current[we].getKey(),He=Dn.getValidateMessage(t,fe,r.dataModelRegistry.getColumns(),r.baseColumns),yt=`${X}_${we}`;S.current[yt]=He,Te.data[Fe].info=[{message:He,level:"error"}]}}if(re.length===0)return[];let se=x.current.map(X=>({columnType:X.getType(),key:X.getKey(),validations:X.getValidators().map(ge=>ge.serialize()),label:X.getLabel(),description:X.getDescription(),dropdownOptions:X.isCategoryType()?X.getOptions().map(ge=>({label:ge.label,value:ge.value,type:ge.type})):[],outputFormat:X.getOutputFormat()})),J=0,oe=Math.min(500,1500),de=[];for(;re.length>0;){let X=re.splice(0,oe);if(de.push({error_data:X,data_model:se,clean_data:pe,session_id:r.sessionId,version:"4.0.1"}),J+=X.length,J>=1500){E(!0);break}oe=Math.min(oe*2,2e3)}return de},[r,t]),L=()=>{g(G=>G.length===0?c[p]?.suggestions||[]:[])},N=G=>{g(re=>{let pe=[...re],me=re.findIndex(te=>G.suggestion===te.suggestion);return me>=0?pe.splice(me,1):pe.push(G),pe})},$=KP(()=>c.reduce((G,re)=>G+=re.suggestions.length,0),[c]),V=Rl(()=>{i(!0)},[]),H=Rl(()=>{i(!1)},[]);jve(()=>{a&&!I.current&&setTimeout(()=>{let G=document.querySelector(".nuvo_cleaning-assistant-popover .nuvo-popover__content");if(!G)return;let re=window.getComputedStyle(G),pe=new WebKitCSSMatrix(re.transform);I.current=`translate(${pe.m41}px, ${pe.m42}px)`},100)},[a]);let U=KP(()=>new zP(new qP({sendApiKey:!r.isSelfHosted},{baseURL:r.cleaningAPIUrl})),[r.cleaningAPIUrl,r.isSelfHosted]),q=Rl(()=>{if(A)return Promise.resolve();let G=D();return w(!1),l(!0),!G||G.length===0?(setTimeout(()=>{l(!1)},500),Promise.resolve()):(u([]),d.current=[],m(-1),g([]),new Promise(re=>{let me=G.length,te=0;function se(J){J&&U.getSuggestions(r.licenseKey,r.origin,J).then(oe=>{oe.length>0&&(O.current=180,P(!0)),d.current=U.groupSuggestions(d.current,oe,x.current,C,S.current),u(d.current)}).catch(oe=>{console.log(oe)}).finally(()=>{if(te++,G.length>0){let oe=G.shift();se(oe)}else te===me&&(C.current&&y(C.current.length),l(!1),re())})}for(let J=0;J<8;J++){let oe=G.shift();se(oe)}}))},[C,D,r.licenseKey,r.origin,A,U,y]),B=()=>{m(-1),g([])},Y=Rl(G=>{let re=r.hotInstance.current?.hotInstance;if(re)try{let pe=re.toVisualRow(G.rowIndex),me=re.toVisualColumn(G.colIndex);re?.selectCell(pe,me,void 0,void 0,!1,!0),re?.scrollViewportTo({row:pe,col:me,horizontalSnap:"start",verticalSnap:"top"});let te=re.getCell(pe,me),se=document.querySelector(".nuvo_cleaning-assistant-popover .nuvo-popover__content");if(te&&se&&(se.style.transform=I.current,GP(se,te))){let J=window.getComputedStyle(se),oe=new WebKitCSSMatrix(J.transform),de=te.getBoundingClientRect(),X=se.getBoundingClientRect(),ge=Math.abs(oe.m41-(X.right-de.left));se.style.transform=`translate(${ge}px, ${oe.m42}px)`}}catch{}},[r.hotInstance]),ne=Rl((G,re)=>{u(pe=>{let me={};for(let J=0;J<G.length;J++)me[G[J].id]===void 0&&(me[G[J].id]=!0);g(J=>J.filter(oe=>!me[oe.id]));let te=[...pe],se=!1;for(let J=te.length-1;J>=0;J--){let oe=[];for(let de=0;de<te[J].suggestions.length;de++){let X=te[J].suggestions[de];me[X.id]||oe.push(X)}te[J].suggestions=te[J].suggestions.filter(de=>!me[de.id]),te[J].suggestions.length===0&&(te.splice(J,1),J===p&&(se=!0))}return se&&m(-1),d.current=te,re&&re(),te})},[p]),ue=Rl(G=>{let re=r.hotInstance.current?.hotInstance;if(!re)return;function pe(te,se){return new Promise(J=>{setTimeout(()=>{let oe=te.toVisualRow(se.rowIndex),de=te.toVisualColumn(se.colIndex);oe<0||de<0||(te?.setDataAtCell(oe,de,se.suggestion,"CLEANING_ASSISTANT"),G1(C.current,se,"applied"),te.render(),J())})})}G.length>1&&R(!0);let me=G.map(te=>pe(re,te));Promise.allSettled(me).then(()=>{re.render(),R(!1)})},[C,r.hotInstance]);return Dx(()=>{if(!r.cleaningAssistantEntryChangeObserverRef.current)return;let G=r.cleaningAssistantEntryChangeObserverRef.current.subscribe(re=>{re.actionType!=="create"&&re.sourceCols.forEach(pe=>{let me=x.current.findIndex(J=>J.getKey()===pe),te=`${re.rowIndex}_${me}`;for(let J=0;J<d.current.length;J++){let de=d.current[J].suggestions.find(ge=>ge.id===te),X=re.currentRowData[me];G1(C.current,de,"changed",{change_value:X})}d.current.findIndex(J=>J.suggestions.find(de=>de.id===te)!==void 0)>=0&&ne([{id:te}])})});return()=>{G.unsubscribe()}},[C,ne,r.cleaningAssistantEntryChangeObserverRef]),Dx(()=>{if(!r.cleaningAssistantRemoveRowObserverRef.current)return;let G=r.cleaningAssistantRemoveRowObserverRef.current.subscribe(({type:re,rows:pe})=>{let me=r.hotInstance.current?.hotInstance,te=d.current;if(me){if(re==="before"){let se=[];for(let J=0;J<te.length;J++)for(let oe=0;oe<te[J].suggestions.length;oe++){let de=te[J].suggestions[oe],X=0,ge="";for(let z=0;z<pe.length;z++){let Te=me.toPhysicalRow(pe[z]);de.rowIndex>Te?X++:de.rowIndex===Te&&(ge="d",se.push(de))}de.rowIndex-=X,de.id=`${de.rowIndex}_${de.colIndex}${ge}`}_.current=se}if(re==="after"){let se=[],J=r.validator.getError();for(let oe=0;oe<te.length;oe++)for(let de=0;de<te[oe].suggestions.length;de++){let X=te[oe].suggestions[de];J[X.rowIndex]&&!J[X.rowIndex][X.colIndex]&&se.push(X)}_.current=[..._.current,...se],_.current.forEach(oe=>{G1(C.current,oe,"deleted")}),ne(_.current,()=>{_.current=[]})}}});return()=>{G.unsubscribe()}},[C,q,ne,D,r.cleaningAssistantRemoveRowObserverRef,r.hotInstance,r.validator]),{...r,open:a,setOpen:i,loading:s,setLoading:l,onOpenPopover:V,onDismissPopover:H,getSuggestions:q,groups:c,setGroups:u,selectedGroupIndex:p,setSelectedGroupIndex:m,initialLoaded:n,count:$,selectedSuggestions:h,setSelectedSuggestions:g,onSelectAll:L,onSelectSuggestion:N,onFind:Y,onDismiss:ne,onApply:ue,onBackClick:B,theme:o,showErrorMessage:b,setShowErrorMessage:w,showRowLimitMessage:M,refreshDisabled:A,setRefreshDisabled:P,disableRefreshCountdownRef:O,isApplying:T}};import{createContext as zve}from"react";var Cr=zve({});var ZP=r=>{let t=r.theme.getCleaningAssistantTheme();return{rootClass:v(["nuvo_cleaning-assistant-popover",f`
|
|
1282
|
+
`,f({"&&":m.getButtonTheme().exportExcel?.dropdown?.root})),style:w,ref:b.setFloating,children:[ys(Tx,{disabled:r,onClick:S,tooltipDisabledMessage:p("txt_unable_to_export"),className:v(f({"&&":m.getButtonTheme().exportExcel?.dropdown?.item,"&&&":r?m.getButtonTheme().exportExcel?.dropdown?.item?.[":disabled"]:""})),children:p("txt_export_all_rows")}),ys(Tx,{disabled:t,onClick:x,tooltipDisabledMessage:p("txt_unable_to_export"),className:v(f({"&&":m.getButtonTheme().exportExcel?.dropdown?.item,"&&&":t?m.getButtonTheme().exportExcel?.dropdown?.item?.[":disabled"]:""})),children:p("txt_export_error_rows")})]}):null]})},WP=$ve;import{useCallback as Rl,useEffect as Dx,useLayoutEffect as jve,useMemo as KP,useRef as Cs,useState as ui}from"react";var Rx=class{constructor(t){this.cleaningAIServices=t}async getSuggestions(t,o,n){return await this.cleaningAIServices.getSuggestions(t,o,n)}groupSuggestions(t,o,n,a,i){let s=[...t];if(!o)return s;let l={};for(let u=0;u<n.length;u++)l[n[u].getKey()]=n[u].getLabel();let c={};for(let u=0;u<t.length;u++)c[t[u].column]=u;return o.forEach(u=>{for(let d in u.data){c[d]===void 0&&(c[d]=s.length);let p=c[d];s[p]===void 0&&(s[p]={column:d,columnLabel:l[d],suggestions:[]});let m=n.findIndex(w=>w.getKey()===d),h=`${u.rowIndex}_${m}`,g={id:h,rowIndex:u.rowIndex,colIndex:m,column:d,initRowIndex:u.rowIndex,initColIndex:m,value:u.data[d].value,suggestion:u.data[d].suggestion,isDisabled:n[m]?.isDisabled()};s[p].suggestions.push(g),a.current===null&&(a.current=[]),a.current.findIndex(w=>w.id===h)<0&&a.current.push({id:h,key:d,value:u.data[d].value,error_message:i[h]||"",suggested_value:u.data[d].suggestion,status:"ignored"})}}),s}},zP=Rx;import{firstValueFrom as Bve}from"rxjs";import Vve from"axios";import{Observable as Hve}from"rxjs";var q1=class{constructor(t,o={}){this.getHttpClient=()=>this.httpClient;this.httpClient=Vve.create(o),this.sendApiKey=t.sendApiKey}observableRequest(t){let o=this.httpClient.request(t);return new Hve(n=>{o.then(a=>{n.next(a.data)}).catch(a=>{n.error(a)}).finally(()=>{n.complete()})})}get(t,o,n){let a={method:"GET",url:t,params:o,...n};return this.observableRequest(a)}post(t,o,n={}){let a={method:"POST",url:t,data:o,...n};return this.observableRequest(a)}put(t,o,n={}){let a={method:"PUT",url:t,data:o,...n};return this.observableRequest(a)}patch(t,o,n={}){let a={method:"PATCH",url:t,data:o,...n};return this.observableRequest(a)}delete(t,o={}){let n={method:"DELETE",url:t,...o};return this.observableRequest(n)}};var Ox=class extends q1{getSuggestions(t,o,n){let a={apikey:this.sendApiKey?"3n5E21bB0ZfpdrNOgWk8M3iDNkR1G3CB":void 0,Authorization:t,originRequest:o};return Bve(this.post("/cleaning-assistant",n,{headers:a}))}},qP=Ox;import{useTranslation as Wve}from"react-i18next";function GP(r,t){if(r===null||t===null)return!1;let o=r.getBoundingClientRect(),n=t.getBoundingClientRect();return!(o.right<n.left||o.left>n.right||o.bottom<n.top||o.top>n.bottom)}function G1(r,t,o,n){if(!r||!t)return;let a=`${t.initRowIndex}_${t.initColIndex}`,i=r.findIndex(s=>s.id===a);i>=0&&(r[i].status=o,n&&(r[i]={...r[i],...n}))}var YP=r=>{let{t}=Wve(),o=j(),n=Cs(!1),[a,i]=ui(!1),[s,l]=ui(!1),[c,u]=ui([]),d=Cs([]),[p,m]=ui(-1),[h,g]=ui([]),[b,w]=ui(!1),C=r.cleaningAssistantLogsRef,y=r.setTotalCleanings,S=Cs({}),x=Cs(r.dataModelRegistry.getDataModels()),_=Cs([]),I=Cs(""),[M,E]=ui(!1),[T,R]=ui(!1),k=Cs(void 0),O=Cs(0),[A,P]=ui(!1);Dx(()=>{if(A)return O.current>0?k.current=setInterval(()=>{O.current--,O.current===0&&(P(!1),clearInterval(O.current))},1e3):clearInterval(O.current),()=>{k.current!==void 0&&clearInterval(k.current)}},[A]);let D=Rl(()=>{E(!1);let G=r.validator.getError(),re=[],pe=[],me=5,te=r.hotInstance.current?.hotInstance;if(!te)return[];for(let X=0;X<G.length;X++){let ge=G[X]!==void 0&&G[X].every(fe=>fe===null);if(G[X]===void 0||ge){if(pe.length===me)continue;let fe=te.getDataAtRow(X),we={};for(let Fe=0;Fe<fe.length;Fe++){if(!x.current[Fe])continue;let He=x.current[Fe].getKey();we[He]=fe[Fe]}pe.push(we);continue}let z=te?.getSourceDataAtRow(X)??{};re.push({rowIndex:X,data:{}});let Te=re[re.length-1];for(let fe of x.current){let we=fe.getKey();Te.data[we]={value:z[we]}}for(let fe of G[X]){if(!fe||fe.colIndex<0)continue;let we=fe.colIndex,Fe=x.current[we].getKey(),He=Dn.getValidateMessage(t,fe,r.dataModelRegistry.getColumns(),r.baseColumns),yt=`${X}_${we}`;S.current[yt]=He,Te.data[Fe].info=[{message:He,level:"error"}]}}if(re.length===0)return[];let se=x.current.map(X=>({columnType:X.getType(),key:X.getKey(),validations:X.getValidators().map(ge=>ge.serialize()),label:X.getLabel(),description:X.getDescription(),dropdownOptions:X.isCategoryType()?X.getOptions().map(ge=>({label:ge.label,value:ge.value,type:ge.type})):[],outputFormat:X.getOutputFormat()})),J=0,oe=Math.min(500,1500),de=[];for(;re.length>0;){let X=re.splice(0,oe);if(de.push({error_data:X,data_model:se,clean_data:pe,session_id:r.sessionId,version:"4.0.2"}),J+=X.length,J>=1500){E(!0);break}oe=Math.min(oe*2,2e3)}return de},[r,t]),L=()=>{g(G=>G.length===0?c[p]?.suggestions||[]:[])},N=G=>{g(re=>{let pe=[...re],me=re.findIndex(te=>G.suggestion===te.suggestion);return me>=0?pe.splice(me,1):pe.push(G),pe})},$=KP(()=>c.reduce((G,re)=>G+=re.suggestions.length,0),[c]),V=Rl(()=>{i(!0)},[]),H=Rl(()=>{i(!1)},[]);jve(()=>{a&&!I.current&&setTimeout(()=>{let G=document.querySelector(".nuvo_cleaning-assistant-popover .nuvo-popover__content");if(!G)return;let re=window.getComputedStyle(G),pe=new WebKitCSSMatrix(re.transform);I.current=`translate(${pe.m41}px, ${pe.m42}px)`},100)},[a]);let U=KP(()=>new zP(new qP({sendApiKey:!r.isSelfHosted},{baseURL:r.cleaningAPIUrl})),[r.cleaningAPIUrl,r.isSelfHosted]),q=Rl(()=>{if(A)return Promise.resolve();let G=D();return w(!1),l(!0),!G||G.length===0?(setTimeout(()=>{l(!1)},500),Promise.resolve()):(u([]),d.current=[],m(-1),g([]),new Promise(re=>{let me=G.length,te=0;function se(J){J&&U.getSuggestions(r.licenseKey,r.origin,J).then(oe=>{oe.length>0&&(O.current=180,P(!0)),d.current=U.groupSuggestions(d.current,oe,x.current,C,S.current),u(d.current)}).catch(oe=>{console.log(oe)}).finally(()=>{if(te++,G.length>0){let oe=G.shift();se(oe)}else te===me&&(C.current&&y(C.current.length),l(!1),re())})}for(let J=0;J<8;J++){let oe=G.shift();se(oe)}}))},[C,D,r.licenseKey,r.origin,A,U,y]),B=()=>{m(-1),g([])},Y=Rl(G=>{let re=r.hotInstance.current?.hotInstance;if(re)try{let pe=re.toVisualRow(G.rowIndex),me=re.toVisualColumn(G.colIndex);re?.selectCell(pe,me,void 0,void 0,!1,!0),re?.scrollViewportTo({row:pe,col:me,horizontalSnap:"start",verticalSnap:"top"});let te=re.getCell(pe,me),se=document.querySelector(".nuvo_cleaning-assistant-popover .nuvo-popover__content");if(te&&se&&(se.style.transform=I.current,GP(se,te))){let J=window.getComputedStyle(se),oe=new WebKitCSSMatrix(J.transform),de=te.getBoundingClientRect(),X=se.getBoundingClientRect(),ge=Math.abs(oe.m41-(X.right-de.left));se.style.transform=`translate(${ge}px, ${oe.m42}px)`}}catch{}},[r.hotInstance]),ne=Rl((G,re)=>{u(pe=>{let me={};for(let J=0;J<G.length;J++)me[G[J].id]===void 0&&(me[G[J].id]=!0);g(J=>J.filter(oe=>!me[oe.id]));let te=[...pe],se=!1;for(let J=te.length-1;J>=0;J--){let oe=[];for(let de=0;de<te[J].suggestions.length;de++){let X=te[J].suggestions[de];me[X.id]||oe.push(X)}te[J].suggestions=te[J].suggestions.filter(de=>!me[de.id]),te[J].suggestions.length===0&&(te.splice(J,1),J===p&&(se=!0))}return se&&m(-1),d.current=te,re&&re(),te})},[p]),ue=Rl(G=>{let re=r.hotInstance.current?.hotInstance;if(!re)return;function pe(te,se){return new Promise(J=>{setTimeout(()=>{let oe=te.toVisualRow(se.rowIndex),de=te.toVisualColumn(se.colIndex);oe<0||de<0||(te?.setDataAtCell(oe,de,se.suggestion,"CLEANING_ASSISTANT"),G1(C.current,se,"applied"),te.render(),J())})})}G.length>1&&R(!0);let me=G.map(te=>pe(re,te));Promise.allSettled(me).then(()=>{re.render(),R(!1)})},[C,r.hotInstance]);return Dx(()=>{if(!r.cleaningAssistantEntryChangeObserverRef.current)return;let G=r.cleaningAssistantEntryChangeObserverRef.current.subscribe(re=>{re.actionType!=="create"&&re.sourceCols.forEach(pe=>{let me=x.current.findIndex(J=>J.getKey()===pe),te=`${re.rowIndex}_${me}`;for(let J=0;J<d.current.length;J++){let de=d.current[J].suggestions.find(ge=>ge.id===te),X=re.currentRowData[me];G1(C.current,de,"changed",{change_value:X})}d.current.findIndex(J=>J.suggestions.find(de=>de.id===te)!==void 0)>=0&&ne([{id:te}])})});return()=>{G.unsubscribe()}},[C,ne,r.cleaningAssistantEntryChangeObserverRef]),Dx(()=>{if(!r.cleaningAssistantRemoveRowObserverRef.current)return;let G=r.cleaningAssistantRemoveRowObserverRef.current.subscribe(({type:re,rows:pe})=>{let me=r.hotInstance.current?.hotInstance,te=d.current;if(me){if(re==="before"){let se=[];for(let J=0;J<te.length;J++)for(let oe=0;oe<te[J].suggestions.length;oe++){let de=te[J].suggestions[oe],X=0,ge="";for(let z=0;z<pe.length;z++){let Te=me.toPhysicalRow(pe[z]);de.rowIndex>Te?X++:de.rowIndex===Te&&(ge="d",se.push(de))}de.rowIndex-=X,de.id=`${de.rowIndex}_${de.colIndex}${ge}`}_.current=se}if(re==="after"){let se=[],J=r.validator.getError();for(let oe=0;oe<te.length;oe++)for(let de=0;de<te[oe].suggestions.length;de++){let X=te[oe].suggestions[de];J[X.rowIndex]&&!J[X.rowIndex][X.colIndex]&&se.push(X)}_.current=[..._.current,...se],_.current.forEach(oe=>{G1(C.current,oe,"deleted")}),ne(_.current,()=>{_.current=[]})}}});return()=>{G.unsubscribe()}},[C,q,ne,D,r.cleaningAssistantRemoveRowObserverRef,r.hotInstance,r.validator]),{...r,open:a,setOpen:i,loading:s,setLoading:l,onOpenPopover:V,onDismissPopover:H,getSuggestions:q,groups:c,setGroups:u,selectedGroupIndex:p,setSelectedGroupIndex:m,initialLoaded:n,count:$,selectedSuggestions:h,setSelectedSuggestions:g,onSelectAll:L,onSelectSuggestion:N,onFind:Y,onDismiss:ne,onApply:ue,onBackClick:B,theme:o,showErrorMessage:b,setShowErrorMessage:w,showRowLimitMessage:M,refreshDisabled:A,setRefreshDisabled:P,disableRefreshCountdownRef:O,isApplying:T}};import{createContext as zve}from"react";var Cr=zve({});var ZP=r=>{let t=r.theme.getCleaningAssistantTheme();return{rootClass:v(["nuvo_cleaning-assistant-popover",f`
|
|
1283
1283
|
& .nuvo-popover__content {
|
|
1284
1284
|
padding: 0;
|
|
1285
1285
|
}
|
|
@@ -1924,7 +1924,7 @@ return ${ge}
|
|
|
1924
1924
|
&::before {
|
|
1925
1925
|
border: 1px solid ${"#ED7070"};
|
|
1926
1926
|
}
|
|
1927
|
-
`:"",i)})]})}),n.current):null};import{useCallback as JDt}from"react";import{useTranslation as QDt}from"react-i18next";var _G=()=>{let{t:r}=QDt();return{getValidateMessage:JDt((o,n,a)=>Dn.getValidateMessage(r,o,n,a),[r])}};import{jsx as rPt}from"react/jsx-runtime";var MG=({parentTableElementRef:r,errors:t,hoverIndex:o,columnIndex:n,outputData:a,columns:i,theme:s})=>{let l=IG([]),c=tPt(()=>new wb(!1,"default-popper"),[]),{getValidateMessage:u}=_G(),d=IG(null);return ePt(()=>{let p=t[o]?.[n],m=ms.isCellError(a[o]?.[0]),h=a[o]?.[0]?.errorMessage?.length>45,g=document.getElementById(`row-data-${o}`),b=()=>p?.validateMsg??u(p,i,i)??"",w=()=>a[o]?.[0]?.errorMessage,C=m&&h?[{level:"error",message:w()}]:p&&!m?[{level:"error",message:b()}]:[],y=g?.getElementsByTagName("span")[0];if(y&&y.scrollWidth>y.clientWidth?l.current=[{level:"info",message:y.textContent||""},...C]:l.current=C,l.current.length===0){setTimeout(()=>{c.destroy()},0);return}g&&l.current.length&&c.changeRootElement(g,d.current,r.current,yG(l.current),"#arrow-message-info-error","bottom",!0)},[t,o,n,u,i,c,a,r]),rPt(SG,{popperElementRef:d,container:r,stackedMessagePopper:c,popoverMessage:l,rootClassName:f({div:s.table?.popover}),arrowClassName:f({"&:before":s.table?.popover})})};import{createPortal as oPt}from"react-dom";import{useLayoutEffect as nPt,useMemo as aPt,useState as iPt}from"react";import{jsx as hc,jsxs as i6}from"react/jsx-runtime";var Cb=({actions:r,theme:t,icon:o,text:n,textClassName:a,className:i})=>{let{modal:s}=Pe(),[l,c]=iPt(null);nPt(()=>{let d=document.getElementById(Le.APP_ROOT);c(d);let p="",m="";return t?.root?.position!=="absolute"&&d?.style&&(p=d.style.overflow,m=d.style.position,d.style.overflow="hidden",d.style.position="relative",d.style.height="100%"),()=>{d?.style&&(d.style.overflow=p,d.style.position=m,d.style.height="auto")}},[t]);let u=aPt(()=>hc("div",{className:v(Mr,"absolute left-0 top-0 z-50 h-full w-full",i),children:i6("div",{role:"dialog","aria-modal":"true","aria-labelledby":"loading-title",className:v("inset-0 flex h-full flex-col items-center justify-center overflow-x-hidden bg-white bg-opacity-60 p-10 !opacity-100 transition-opacity duration-300 ease-out",f`
|
|
1927
|
+
`:"",i)})]})}),n.current):null};import{useCallback as JDt}from"react";import{useTranslation as QDt}from"react-i18next";var _G=()=>{let{t:r}=QDt();return{getValidateMessage:JDt((o,n,a)=>Dn.getValidateMessage(r,o,n,a),[r])}};import{jsx as rPt}from"react/jsx-runtime";var MG=({parentTableElementRef:r,errors:t,hoverIndex:o,columnIndex:n,outputData:a,columns:i,theme:s})=>{let l=IG([]),c=tPt(()=>new wb(!1,"default-popper"),[]),{getValidateMessage:u}=_G(),d=IG(null);return ePt(()=>{let p=t[o]?.[n],m=ms.isCellError(a[o]?.[0]),h=a[o]?.[0]?.errorMessage?.length>45,g=document.getElementById(`row-data-${o}`),b=()=>p?.validateMsg??u(p,i,i)??"",w=()=>a[o]?.[0]?.errorMessage,C=m&&h?[{level:"error",message:w()}]:p&&!m?[{level:"error",message:b()}]:[],y=g?.getElementsByTagName("span")[0];if(y&&y.scrollWidth>y.clientWidth?l.current=[{level:"info",message:y.textContent||""},...C]:l.current=C,l.current.length===0){setTimeout(()=>{c.destroy()},0);return}g&&l.current.length&&c.changeRootElement(g,d.current,r.current,yG(l.current),"#arrow-message-info-error","bottom",!0)},[t,o,n,u,i,c,a,r]),rPt(SG,{popperElementRef:d,container:r,stackedMessagePopper:c,popoverMessage:l,rootClassName:f({div:s.table?.popover}),arrowClassName:f({"&:before":s.table?.popover})})};import{createPortal as oPt}from"react-dom";import{useLayoutEffect as nPt,useMemo as aPt,useState as iPt}from"react";import{jsx as hc,jsxs as i6}from"react/jsx-runtime";var Cb=({actions:r,theme:t,icon:o,text:n,textClassName:a,className:i})=>{let{modal:s}=Pe(),[l,c]=iPt(null);nPt(()=>{let d=document.getElementById(Le.APP_ROOT);c(d);let p="",m="";return t?.root?.position!=="absolute"&&d?.style&&(p=d.style.overflow,m=d.style.position,d.style.overflow="hidden",d.style.position="relative",d.style.height="100%"),()=>{d?.style&&(d.style.overflow=p,d.style.position=m,s?d.style.height="auto":d.style.height="inherit")}},[s,t]);let u=aPt(()=>hc("div",{className:v(Mr,"absolute left-0 top-0 z-50 h-full w-full",i),children:i6("div",{role:"dialog","aria-modal":"true","aria-labelledby":"loading-title",className:v("inset-0 flex h-full flex-col items-center justify-center overflow-x-hidden bg-white bg-opacity-60 p-10 !opacity-100 transition-opacity duration-300 ease-out",f`
|
|
1928
1928
|
z-index: 10000;
|
|
1929
1929
|
backdrop-filter: blur(20px);
|
|
1930
1930
|
-webkit-backdrop-filter: blur(20px);
|