@ingestro/importer-angular 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 +23 -23
- package/fesm2022/index.mjs +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://
|
|
3
|
+
<a href="https://ingestro.com/" rel="noopener noreferrer" target="_blank"><img width="150" src="https://docs.ingestro.com/img/Ingestro-logo-dark.svg" alt="Ingestro logo"></a>
|
|
4
4
|
</p>
|
|
5
5
|
|
|
6
|
-
<h1 align="center">@
|
|
6
|
+
<h1 align="center">@ingestro/importer-angular</h1>
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](https://badge.fury.io/js/@ingestro%2Fimporter-angular)
|
|
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-angular` package is the successor to our previous `@getnuvo/importer-angular` package.
|
|
17
|
+
> While you can continue using versions 3.x of `@getnuvo/importer-angular`, we recommend migrating to
|
|
18
|
+
> `@ingestro/importer-angular` 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
|
|
|
@@ -35,32 +35,32 @@ Integrate the nuvo Data Importer to offer your customers an intuitive and effici
|
|
|
35
35
|
|
|
36
36
|
## Getting Started
|
|
37
37
|
|
|
38
|
-
Ensure you have signed up on our [User Platform](https://dashboard.ingestro.com/) and have access to your
|
|
38
|
+
Ensure you have signed up on our [User Platform](https://dashboard.ingestro.com/) and have access to your Ingestro license key.
|
|
39
39
|
|
|
40
40
|
### Installation
|
|
41
41
|
|
|
42
|
-
Add
|
|
42
|
+
Add Ingestro to your project:
|
|
43
43
|
|
|
44
44
|
**npm:**
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npm install @
|
|
47
|
+
npm install @ingestro/importer-angular
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
**yarn:**
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
yarn add @
|
|
53
|
+
yarn add @ingestro/importer-angular
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
### Basic Implementation
|
|
57
57
|
|
|
58
|
-
Below is a basic example of integrating the
|
|
58
|
+
Below is a basic example of integrating the `<data-importer>` component into your Angular application:
|
|
59
59
|
|
|
60
|
-
Add the
|
|
60
|
+
Add the DataImporter module to module file
|
|
61
61
|
|
|
62
62
|
```ts
|
|
63
|
-
import { DataImporterModule } from '@
|
|
63
|
+
import { DataImporterModule } from '@ingestro/importer-angular';
|
|
64
64
|
|
|
65
65
|
@NgModule({
|
|
66
66
|
declarations: [AppComponent],
|
|
@@ -71,10 +71,10 @@ import { DataImporterModule } from '@getnuvo/importer-angular';
|
|
|
71
71
|
export class AppModule {}
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
Add the
|
|
74
|
+
Add the Ingestro component in the HTML file.
|
|
75
75
|
|
|
76
76
|
```html
|
|
77
|
-
<
|
|
77
|
+
<data-importer
|
|
78
78
|
[licenseKey]="licenseKey"
|
|
79
79
|
[settings]="settings"
|
|
80
80
|
[onResults]="onResults.bind(this)"
|
|
@@ -105,7 +105,7 @@ export class AppComponent implements OnInit {
|
|
|
105
105
|
};
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
-
onResults(results, errors, complete, logs) {
|
|
108
|
+
onResults(results, errors, complete, logs, block) {
|
|
109
109
|
console.log('Imported Data:', results);
|
|
110
110
|
console.log('Errors:', errors);
|
|
111
111
|
console.log('Import Logs:', logs);
|
|
@@ -116,7 +116,7 @@ export class AppComponent implements OnInit {
|
|
|
116
116
|
|
|
117
117
|
In this example:
|
|
118
118
|
|
|
119
|
-
- **licenseKey**: Your unique
|
|
119
|
+
- **licenseKey**: Your unique Ingestro license key.
|
|
120
120
|
- **settings**: Configuration object for the importer.
|
|
121
121
|
- **identifier**: A unique string to identify the import instance.
|
|
122
122
|
- **columns**: Defines the target data model (TDM) with `label` and `key` for each column.
|
|
@@ -161,7 +161,7 @@ For implementation details, refer to the [Dynamic Import](https://docs.ingestro.
|
|
|
161
161
|
|
|
162
162
|
### Styling and Theming
|
|
163
163
|
|
|
164
|
-
Customize the appearance of the
|
|
164
|
+
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.
|
|
165
165
|
|
|
166
166
|
Learn more about styling options in the [Styling](https://docs.ingestro.com/sdk/styling/) section.
|
|
167
167
|
|
|
@@ -183,9 +183,9 @@ Stay updated with the latest features, improvements, and bug fixes by reviewing
|
|
|
183
183
|
|
|
184
184
|
## Learn More
|
|
185
185
|
|
|
186
|
-
Explore how to get the most out of
|
|
186
|
+
Explore how to get the most out of Ingestro with real examples and detailed guides:
|
|
187
187
|
|
|
188
|
-
- Try it live on [CodeSandbox](https://codesandbox.io/p/
|
|
188
|
+
- Try it live on [CodeSandbox](https://codesandbox.io/p/sandbox/importer-v4-angular-npm-gvpxwg) – test and tweak the importer in action.
|
|
189
189
|
- Visit our [Knowledge Base](https://dashboard.ingestro.com/knowledge-base) for deep dives into settings, data models, cleaning functions, and more.
|
|
190
190
|
|
|
191
191
|
## Support
|
package/fesm2022/index.mjs
CHANGED
|
@@ -11546,8 +11546,8 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
11546
11546
|
z-index: 10000 !important;
|
|
11547
11547
|
`,N=()=>{if(!M)if(s){let U=s();Dd(U)?(re(!0),U.then(()=>{re(!1),T(!1);}).catch(()=>{re(!1),T(!1);})):T(!1);}else T(!1),o();},F=(0,i2e.useMemo)(()=>{if(h==="alert")return P?.alertPopup;if(h==="block")return P?.blockPopup;if(h==="readyToSubmit")return P?.reviewEntries?.submitModal},[P?.alertPopup,P?.blockPopup,P?.reviewEntries,h]),Z=he("w-20",se({"&&":O.getDialogConfirmTheme().icon,"&& path":{fill:O.getDialogConfirmTheme().icon?.fill,stroke:O.getDialogConfirmTheme().icon?.stroke}}),se({"&&&":F?.icon,"&&& path":{fill:F?.icon?.fill,stroke:F?.icon?.stroke}})),j=()=>k?k(Z):c&&h==="readyToSubmit"?(0,Rp.jsx)(JHi,{className:he("w-40",se({"&&":(0,c8t.omit)(O.getDialogConfirmTheme().icon,["fill","stroke"]),"&& .nuvo__ready_submit_icon":{fill:O.getDialogConfirmTheme().icon?.fill,stroke:O.getDialogConfirmTheme().icon?.stroke}}),se({"&&&":(0,c8t.omit)(F?.icon,["fill","stroke"]),"&&& .nuvo__ready_submit_icon":{fill:F?.icon?.fill,stroke:F?.icon?.stroke}}))}):c&&_?(0,Rp.jsx)(ZHi,{className:Z}):(0,Rp.jsx)(YHi,{className:Z});return (0,Rp.jsx)(T9t,{gravity:"middle",className:he("w-full !p-0 sm:max-w-xl",x),isOpen:S,onCloseModal:()=>{T(!1),a?.();},wrapperClassName:he(se`
|
|
11548
11548
|
z-index: 10000 !important;
|
|
11549
|
-
`),disabledClickOutside:u,isShowCloseIcon:d,overlayStyled:se({"&&":O.getDialogConfirmTheme().overlay,"&&&":F?.overlay}),bodyStyled:se({"&&":O.getDialogConfirmTheme().root,"&&&":F?.root}),closeIconStyled:O.getDialogConfirmTheme().closeIcon,closeButtonClassName:se({"&&& line":F?.closeIcon}),children:(0,Rp.jsxs)("div",{className:"w-full px-7 pb-8 pt-3",children:[(0,Rp.jsx)("div",{className:"flex justify-center pb-4",children:j()}),n&&(0,Rp.jsx)("p",{className:he("xss:pb-2 text-color-primary text-neutral-gray pb-1 text-center text-xl font-semibold",se({"&&":O.getDialogConfirmTheme().title,"&&&":F?.title}),A),dangerouslySetInnerHTML:{__html:n}}),e&&(0,Rp.jsx)("p",{className:he("xss:pb-7 text-color-secondary pb-2 text-center text-sm font-normal",se({"&&":O.getDialogConfirmTheme().description,"&&&":F?.description}),b),dangerouslySetInnerHTML:{__html:e}}),g||null,(0,Rp.jsx)("div",{className:he("xss:flex mt-2 flex-row justify-center sm:mt-0",v),children:(0,Rp.jsx)(kd,{isShow:p&&q,message:(0,Rp.jsx)(hS,{className:he("max-w-240 h-full w-full text-center text-xs",W),variant:D,children:m}),flip:!0,arrowClassName:"#545454",direction:"top",offset:{mainAxis:12},isShowArrow:!0,className:B,render:({setReferenceElement:U})=>{let Y={className:he("xss:mt-0 mt-3",{"w-full":!l},w,M?G:"",M?"text-gray-260":""),type:"submit",loading:J,onClick:N,ref:I==="negative"?U:void 0,...I==="negative"?X():{}},ee={...I==="positive"?X():{},className:he(`xss:mt-0 xss:mr-4 mt-3 mr-0 ${f&&G}`,y),type:"button",variant:"secondary",onClick:()=>{f||(T(!1),i&&i());}},ie=r||"Ok";return (0,Rp.jsxs)(Rp.Fragment,{children:[(0,Rp.jsx)("span",{ref:I==="positive"?U:void 0,className:he(C),children:l&&(0,Rp.jsx)(Ao,{...ee,children:(0,Rp.jsx)("div",{className:he("leading-6",f&&"text-gray-260"),children:t||L("txt_cancel")})})}),h!=="warn"?(0,Rp.jsx)(Ao,{...Y,children:ie}):R?(0,Rp.jsx)(Ao,{...Y,children:ie}):null]})}})})]})})},sWi=oWi,Vtr=(0,zN.createContext)({}),aWi=({children:n})=>{let[e,t]=(0,zN.useState)(!1),[r,i]=(0,zN.useState)(),o=(0,zN.useCallback)(s=>{i(s),t(!0);},[]);return (0,zN.useEffect)(()=>{e||i(void 0);},[e]),(0,OQe.jsxs)(Vtr.Provider,{value:{isOpen:e,setOpenModal:t,showConfirmModal:o,type:r?.type,title:r?.title},children:[n,r&&(0,OQe.jsx)(sWi,{title:r.title,description:r.description,textPositiveButton:r.textPositiveButton,textNegativeButton:r.textNegativeButton,onClickPositiveButton:r.onClickPositiveButton,onClickNegativeButton:r.onClickNegativeButton,onClickNegativeButtonPromise:r.onClickNegativeButtonPromise,isShowPositiveButton:r.isShowPositiveButton,isShowIcon:r.isShowIcon,disabledClickOutside:r.disabledClickOutside,isShowCloseIcon:r.isShowCloseIcon,type:r.type,disabledPositiveButton:r.disabledPositiveButton,disabledNegativeButton:r.disabledNegativeButton,isPopper:r.isPopper,textPopper:r.textPopper,content:r.content,descriptionClassName:r.descriptionClassName,footerClassName:r.footerClassName,negativeButtonClassName:r.negativeButtonClassName,positiveButtonClassName:r.positiveButtonClassName,positiveButtonWrapperClassName:r.positiveButtonWrapperClassName,roundedIcon:r.roundedIcon,baseModalClassName:r.baseModalClassName,customIcon:r.customIcon,titleClassName:r.titleClassName,onCloseModal:r.onCloseModal,popperPosition:r.popperPosition,messageVariant:r.messageVariant,messageClassName:r.messageClassName})]})},lWi=aWi,cWi=class{constructor({similarity:n}){this.getValue=()=>this.similarity,this.similarity=n;}},gq=cWi,jtr=class{constructor({sheetColumn:n,dataModel:e,similarity:t}){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=n,this.dataModel=e,this.similarity=t;}},uWi=class extends jtr{constructor(){super({dataModel:new Qm({description:"null",example:"null",key:"null",label:"null",type:"string",columnSize:1,optionMappingConfiguration:{layers:[],processingMode:"node",threshold:0}}),sheetColumn:new aH({sheet:new aA({data:[[]],name:""}),columnKey:"",rows:[]}),similarity:new gq({similarity:0})}),this.isNull=()=>!0;}},dWi=jtr,hWi=class{constructor({sheetColumnDataModelSimilarities:n}){this.getMostSimilarityBySheetColumn=e=>{let t=[];for(let r=0;r<this.sheetColumnDataModelSimilarities.length;r++)this.sheetColumnDataModelSimilarities[r].getSheetColumn()===e&&t.push(this.sheetColumnDataModelSimilarities[r]);return (0,PQe.maxBy)(t,r=>r.getSimilarity().getValue())},this.getSortedSheetColumnDataModelSimilarity=e=>{let t=this.sheetColumnDataModelSimilarities.filter(r=>r.getSimilarity().getValue()>=e&&!r.getMarkApplied());return (0,PQe.orderBy)(t,r=>r.getSimilarity().getValue(),"desc")},this.markDataModel=e=>{this.sheetColumnDataModelSimilarities.filter(t=>t.getDataModel()===e).forEach(t=>{t.markApplied();});},this.markSheetColumn=e=>{this.sheetColumnDataModelSimilarities.filter(t=>t.getSheetColumn()===e).forEach(t=>{t.markApplied();});},this.clearMark=()=>{this.sheetColumnDataModelSimilarities.forEach(e=>{e.unMarkApplied();});},this.getSimilaritySheetColumn=(e,t)=>this.sheetColumnDataModelSimilarities.find(r=>r.getSheetColumn()===e&&r.getDataModel()===t),this.sheetColumnDataModelSimilarities=n;}},Utr=hWi,$tr=class{constructor({sheetColumnOption:n,dataModelOption:e,similarity:t}){this.getSimilarity=()=>this.similarity,this.getSheetColumnOption=()=>this.sheetColumnOption,this.getDataModelOption=()=>this.dataModelOption,this.isNull=()=>!1,this.hash=()=>{let r=this.getDataModelOption().dataModel.getKey(),i=this.getDataModelOption().option,o=this.getSheetColumnOption().sheetColumn.getColumnKey(),s=this.getSheetColumnOption().option;return `${r}-${i}-${o}-${s}`},this.sheetColumnOption=n,this.dataModelOption=e,this.similarity=t;}},SKn=class extends $tr{constructor(){super({sheetColumnOption:{option:"null",sheetColumn:new aH({columnKey:"",rows:[],sheet:new aA({data:[[]],name:""})})},dataModelOption:{dataModel:new iO({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 gq({similarity:0})}),this.isNull=()=>!0;}},fWi=$tr,pWi=class Gtr{constructor({sheetColumnDataModelOptionSimilarities:e,mapSheetColumnDataModelOptions:t}){this.mapSheetColumnDataModelOptions=[],this.getSheetColumnDataModelOptionSimilarities=r=>{let i=this.sheetColumnDataModelOptionSimilarities.filter(o=>o.getSimilarity().getValue()>=r);return (0,qtr.orderBy)(i,o=>o.getSimilarity().getValue(),"desc")},this.getSimilaritySheetColumnOptions=(r,i)=>this.getSheetColumnDataModelOptionSimilarities(i.getOptionMappingConfiguration().threshold).filter(o=>o.getSheetColumnOption().sheetColumn===r&&o.getDataModelOption().dataModel===i),this.getSimilaritiesDataModelOption=(r,i,o)=>this.sheetColumnDataModelOptionSimilarities.filter(s=>s.getSheetColumnOption().sheetColumn===r&&s.getDataModelOption().dataModel.getKey()===i.getKey()&&s.getDataModelOption().option===o),this.getSimilaritiesDataModelBySheetColumn=(r,i)=>this.sheetColumnDataModelOptionSimilarities.filter(o=>o.getSheetColumnOption().sheetColumn===r&&o.getDataModelOption().dataModel.getKey()===i.getKey()),this.getRawSheetColumnDataModelOptionSimilarities=()=>this.sheetColumnDataModelOptionSimilarities,this.isAlreadyMapping=(r,i)=>!!this.mapSheetColumnDataModelOptions.some(o=>o.sheetColumn.equal(r)&&i===o.dataModel),this.sheetColumnDataModelOptionSimilarities=e,this.mapSheetColumnDataModelOptions=t;}merge(e){let t=e.getRawSheetColumnDataModelOptionSimilarities(),r=e.mapSheetColumnDataModelOptions;for(let i=0;i<this.sheetColumnDataModelOptionSimilarities.length;++i)t.find(o=>{let s=o.getDataModelOption(),a=o.getSheetColumnOption(),l=this.sheetColumnDataModelOptionSimilarities[i].getSheetColumnOption(),c=this.sheetColumnDataModelOptionSimilarities[i].getDataModelOption();return a.option===l.option&&a.sheetColumn.getColumnKey()===l.sheetColumn.getColumnKey()&&s.option===c.option&&s.dataModel.getKey()===c.dataModel.getKey()})||t.push(this.sheetColumnDataModelOptionSimilarities[i]);for(let i=0;i<this.mapSheetColumnDataModelOptions.length;++i)r.push(this.mapSheetColumnDataModelOptions[i]);return new Gtr({sheetColumnDataModelOptionSimilarities:t,mapSheetColumnDataModelOptions:r})}},u8t=pWi,REe,mWi=(REe=class{constructor({calculateSimilarityResult:e,sheets:t,dataModels:r,options:i={}}){this.parseSheetOption=o=>["true","false"].includes(o)?JSON.parse(o):o,this.getSheetColumnDataModelSimilarityList=()=>{let o=this.calculateSimilarityResult.result.map(a=>a.suggestions.map(l=>{let c=this.dataModels.find(d=>{let h=d.getKey(),f=l.key;return this.options?.isAutoMapping===!0&&(h=jp(d.getKey()),f=jp(l.key)),!!(h===f||d.getAlternativeMatches().includes(l.key))}),u=[];for(let d=0;d<this.sheets.length;d++)this.sheets[d].getColumnsByKey(a.label,this.options?.isAutoMapping).forEach(h=>{u.push(h);});return u.map(d=>c&&d?new dWi({dataModel:c,sheetColumn:d,similarity:new gq({similarity:l.value})}):new uWi)})),s=[];return (0,gZe.flatten)((0,gZe.flatten)((0,gZe.flatten)(o))).forEach(a=>{let l=!1;s.forEach((c,u)=>{!c.isNull()&&c.getDataModel()===a.getDataModel()&&c.getSheetColumn()===a.getSheetColumn()&&(l=!0,a.getSimilarity()>c.getSimilarity()&&(s[u]=a));}),l||s.push(a);}),new Utr({sheetColumnDataModelSimilarities:s})},this.generateSheetColumnDataModelOptionSimilarity=({sheetOption:o,dataModel:s,similarities:a,sheetColumn:l,sheetColumnDataModelOptionSimilaritiesHashMap:c})=>{let u={option:this.parseSheetOption(o),sheetColumn:l},d=Object.keys(a);for(let h=0;h<d.length;++h){let f=d[h],p=a[f],m=[];if(s&&u.sheetColumn&&s.isDropdown()){let g=[];if(s.getType()==="boolean")g=[f];else {let b=s.getOptions();f===""&&p>0&&g.push("");for(let v=0;v<b.length;++v){let w=b[v];w.label===f&&g.push(w.value);}}for(let b=0;b<g.length;++b){let v=g[b];v?.length>0||v.length===0&&p>0?m.push(new fWi({dataModelOption:{dataModel:s,option:v},similarity:new gq({similarity:p}),sheetColumnOption:u})):m.push(new SKn);}}else m.push(new SKn);for(let g=0;g<m.length;++g){let b=!1,v=m[g];if(!v.isNull()){let w=c[v.hash()];w&&(b=!0,v.getSimilarity().getValue()>w.getSimilarity().getValue()&&(c[v.hash()]=v));}b||(c[v.hash()]=v);}}},this.getSheetColumnDataModelOptionSimilarityList=o=>{let s={},a=this.calculateSimilarityResult,l=[];for(let d=0;d<a.result.length;++d){let h=a.result[d],f=h.optionMappings,p;if(o)p=o;else for(let g=0;g<this.sheets.length;g++){let b=this.sheets[g].getColumn(h.label,this.options?.isAutoMapping);if(b){p=b;break}}let m=Object.keys(f);for(let g=0;g<m.length;++g){let b=m[g],v=f[b],w=this.dataModels.find(C=>{let _=C.getKey(),x=b;return this.options?.isAutoMapping===!0&&(_=jp(_),x=jp(x)),_===x});w&&p&&l.push({sheetColumn:p,dataModel:w});let y=Object.keys(v);for(let C=0;C<y.length;++C){let _=y[C],x=v[_];this.generateSheetColumnDataModelOptionSimilarity({sheetOption:_,similarities:x,dataModel:w,sheetColumnDataModelOptionSimilaritiesHashMap:s,sheetColumn:p});}}}let c=[],u=Object.keys(s);for(let d=0;d<u.length;++d){let h=u[d];s[h].isNull()||c.push(s[h]);}return new u8t({sheetColumnDataModelOptionSimilarities:c,mapSheetColumnDataModelOptions:l})},this.calculateSimilarityResult=e,this.sheets=t,this.dataModels=r,this.options=i;}},REe.mergeCalculateSimilarityResultOptions=(e,t)=>{let r={result:[...e.result]};for(let i=0;i<t.result.length;++i){let o=t.result[i],s;for(let a=0;a<r.result.length;++a)if(o.label===r.result[a].label){s=r.result[a];break}if(s){let a=Object.keys(s.optionMappings);for(let c=0;c<a.length;++c){let u=a[c];s.optionMappings[u]={...s.optionMappings[u],...o.optionMappings[u]??{}};}let l=Object.keys(o.optionMappings);for(let c=0;c<l.length;++c){let u=l[c];s.optionMappings[u]={...s.optionMappings[u]??{},...o.optionMappings[u]};}}}return r},REe),bq=mWi,gWi=class{constructor(n,e){this.isUploadSheetData=t=>t.some(r=>r.getOptionMappingConfiguration().processingMode==="node"),this.matchColumns=async(t,r,i)=>{let{processingMode:o,layers:s,threshold:a}=r;return o==="node"?this.backendMatchingRepository.matchColumns(t,{layers:s,threshold:a},i):this.browserMatchingRepository.matchColumns(t,{layers:s,threshold:a},i)},this.matchInitialOptions=async(t,r,i,o,s)=>{let a=t.getAllSheets(),l=t.getAllDataModels(),c=r.filter(f=>{let p=f.matchedDataModel?.dataModel;return !!p&&p.isDropdown()}),u=await Promise.all(c.map(async f=>{let p=f.matchedDataModel.dataModel,m={dataModel:p,sheetColumn:f.sheetColumn,sheets:a,dataModels:l,licenseKey:o,sessionId:s},g;return p.getOptionMappingConfiguration().processingMode==="node"?g=this.backendMatchingRepository:g=this.browserMatchingRepository,(await g.matchOption({...m,sheetColumn:m.sheetColumn})).calculateSimilarityResult})),d={result:[...[...i.result].map(f=>({...f,optionMappings:{}}))]};for(let f=0;f<u.length;++f)d=bq.mergeCalculateSimilarityResultOptions(d,u[f]);let h=new bq({calculateSimilarityResult:d,sheets:a,dataModels:l}).getSheetColumnDataModelOptionSimilarityList();return {calculateSimilarityResult:d,sheetColumnDataModelOptionSimilarityList:h}},this.matchOption=async({dataModel:t,sheetColumn:r,sheets:i,dataModels:o,licenseKey:s,processMode:a,sessionId:l})=>{let c={dataModel:t,sheetColumn:r,sheets:i,dataModels:o,licenseKey:s,sessionId:l};return a==="node"?this.backendMatchingRepository.matchOption(c):this.browserMatchingRepository.matchOption(c)},this.uploadData=async(t,r,i,o)=>i.some(s=>s.getOptionMappingConfiguration().processingMode==="node")?this.backendMatchingRepository.prepareData(t,r,o):Promise.resolve(),this.clearData=(t,r)=>{this.isUploadSheetData(r)&&this.backendMatchingRepository.clearData(t);},this.complete=(t,r)=>{this.isUploadSheetData(r)&&this.backendMatchingRepository.complete(t);},this.browserMatchingRepository=n,this.backendMatchingRepository=e;}},Ytr=/[,;|](?=['"`])/g,bWi=/[;]|[|]|,[ a-zA-Z]/g,Vse=n=>(0,I9t.isNil)(n)?!1:`${n}`.match(Ytr)?!0:!!`${n}`.match(bWi),zse=n=>{if((0,I9t.isNil)(n))return [];let e=`${n}`.split(Ytr);if(e.length===1){e=[];let t=`${n}`.split(/[;]|[|]|, /g);for(let r=0;r<t.length;r++){let i=t[r];/,[a-zA-Z]/.test(i)?e=e.concat(i.split(",")):e.push(i);}}return e.map(t=>t.replace(/[\s\-_&+'"`]/g," ").trim())},Xw,Xtr=(Xw=class{constructor({spreadSheetList:e,dataModels:t,licenseKey:r}){this.getColumns=()=>{let i=this.dataModels,o=[];for(let s=0;s<i.length;s++){let a=Xw.mapDataModelToColumn(i[s]);a&&o.push(a);}return o},this.getInputHeaderRow=()=>{let i=[];return this.allSheets.forEach(o=>{o.getColumns().forEach(s=>{i.push(s.getColumnKey());});}),i},this.getAllSheets=()=>this.allSheets,this.getAllDataModels=()=>this.dataModels,this.getLicenseKey=()=>this.licenseKey,this.spreadSheetList=e,this.dataModels=t,this.allSheets=this.spreadSheetList.getSelectedSheets(),this.licenseKey=r;}},Xw.getDropdownOptions=e=>e.isCategoryType()?e.getOptions().map(t=>({label:t.label,value:t.value,alternativeMatches:t.alternativeMatches})):null,Xw.getOptionMappingConfiguration=e=>{if(e.isDropdown())return e.getOptionMappingConfiguration()},Xw.getType=e=>{switch(e.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"}},Xw.mapDataModelToColumn=e=>({key:e.getKey(),label:e.getLabel(),description:e.getDescription(),isMultiple:e.getIsMultiSelection(),dropdownOptions:Xw.getDropdownOptions(e),columnType:Xw.getType(e).toUpperCase(),alternativeMatches:e.getAlternativeMatches(),optionMappingConfiguration:Xw.getOptionMappingConfiguration(e)}),Xw.parseValue=e=>(0,Ktr.isNil)(e)?"":`${e}`,Xw.getInputJsonBySheetColumn=(e,t)=>{let r=[],i=e.getUniqueRows(),o=i.length,s={},a=e.getColumnKey(),l=0;for(let d=0;d<o;d++){let h=Xw.parseValue(i[d]);Vse(h)&&t.getIsMultiSelection()?zse(h).forEach(f=>{s[a]?s[a].push(f):s[a]=[f];}):(r[l]?r[l][a]=h:r[l]={[a]:h},l++);}let c=Object.keys(s),u=r.length;for(let d=0;d<c.length;d++){let h=c[d];s[h].forEach((f,p)=>{let m=u+p;r[m]?r[m][h]=f:r[m]={[h]:f};});}return [r]},Xw),d8t=Xtr,vWi=class{constructor(){this.matchColumns=async(n,e,t)=>{let r=n.getAllSheets(),i=n.getAllDataModels(),o=await this.matchColumnsTask(n,e,t),s=new bq({calculateSimilarityResult:o[0],sheets:r,dataModels:i}).getSheetColumnDataModelSimilarityList();return {calculateSimilarityResult:o[0],sheetColumnDataModelSimilarityList:s}},this.matchOption=async({dataModel:n,sheetColumn:e,sheets:t,dataModels:r,licenseKey:i,sessionId:o})=>{let s=(await this.matchOptionTask({dataModel:n,sheetColumn:e,sheets:t,licenseKey:i,sessionId:o}))[0];this.matchBoolean([s],t,r);let a=new bq({calculateSimilarityResult:s,sheets:t,dataModels:r}).getSheetColumnDataModelOptionSimilarityList(e);return {calculateSimilarityResult:s,sheetColumnDataModelOptionSimilarityList:a}},this.matchBoolean=(n,e,t)=>{n.forEach((r,i)=>{r.result.forEach(o=>{let s=e[i].getColumn(o.label);s&&t.filter(a=>a.getType()==="boolean").forEach(a=>{let l=s.getUniqueRows();for(let c=0;c<l.length;c++){let u=l[c],d=null,h=`${u}`.toLowerCase().trim();if(nH().includes(h)?d={true:1}:rH().includes(h)&&(d={false:1}),d){let f=o.optionMappings[a.getKey()]??{};o.optionMappings[a.getKey()]={...f,[`${u}`]:d};}}});});});};}},Ztr=vWi,wWi=class{constructor(n,e){this.fileName="",this.parseData=t=>{let r=[],i=0,o=(0,Qtr.flatten)(t.map(s=>s.getColumns()));r[0]=[],o.forEach((s,a)=>{r[0][a]=s.getColumnKey(),s.getUniqueRows().length>i&&(i=s.getUniqueRows().length);});for(let s=0;s<i;++s){r[s+1]=[];for(let a=0;a<o.length;++a){let l=o[a].getUniqueRows()[s]??"";r[s+1][a]=l;}}return r},this.initialize=()=>{this.fileName="";},this.upload=async(t,r,i)=>{this.initialize();let o=this.parseData(t),s=await this.uploadInputSheetAPI.createFile(r,i);return this.fileName=s.file_name,this.inputSheetClearer.add(this.fileName),this.uploadInputSheetAPI.uploadData(s.signed_url,o,i)},this.getFileName=()=>this.fileName,this.clearData=t=>{this.initialize(),this.inputSheetClearer.clear(t);},this.complete=t=>{let r=this.fileName;r&&(this.initialize(),this.inputSheetClearer.remove(r),this.uploadInputSheetAPI.clearFile(r,t).catch(()=>{}));},this.uploadInputSheetAPI=n,this.inputSheetClearer=e;}},yWi=wWi,CF=class{constructor(n,e={}){this.httpClient=QM.create(e),this.sendApiKey=n.sendApiKey,this.setupInterceptors();}setupInterceptors(){this.httpClient.interceptors.request.use(n=>n,n=>Promise.reject(n)),this.httpClient.interceptors.response.use(n=>n,n=>Promise.reject(n));}getHttpClient(){return this.httpClient}async get(n,e,t){return (await this.httpClient.request({method:"GET",url:n,params:e,...t})).data}async post(n,e,t={}){return (await this.httpClient.request({method:"POST",url:n,data:e,...t})).data}async put(n,e,t={}){return (await this.httpClient.request({method:"PUT",url:n,data:e,...t})).data}async patch(n,e,t={}){return (await this.httpClient.request({method:"PATCH",url:n,data:e,...t})).data}async delete(n,e={}){return (await this.httpClient.request({method:"DELETE",url:n,...e})).data}},FQe=CF,Bc={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"},_Wi=[Bc.csv,Bc.tsv,Bc.tsv_text,Bc.json],$C,xWi=($C=class{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=e=>{this.startSession[e]=!0;},this.getStartSession=e=>this.startSession[e],this.clearStartSession=e=>{this.startSession[e]=void 0;},this.setReloadSession=e=>{this.reloadSession[e]=!0;},this.getReloadSession=e=>this.reloadSession[e],this.clearReloadSession=e=>{this.reloadSession[e]=void 0;},this.setVerifySession=e=>{this.verifySession[e]=!0;},this.getVerifySession=e=>this.verifySession[e],this.clearVerifySession=e=>{this.verifySession[e]=void 0;};}static getInstance(){return $C.instance||($C.instance=new $C),$C.instance}setFrameWork(e){this.framework=e;}getFrameWork(){return this.framework}setOrigin(e){this.origin=e;}getOrigin(){return this.origin??""}setVersionNumber(e){this.versionNumber=e;}getVersionNumber(){return this.versionNumber}setFrameworkVersion(e){this.frameworkVersion=e;}getFrameworkVersion(){return this.frameworkVersion}pushEventStack(e,t){this.eventStack[e]||(this.eventStack[e]=[]);let r=this.eventStack[e][this.eventStack[e].length-1];t.action==="end"&&(r?.eventType===`${$C.eventMapping[t.step]||t.step}_end`||r?.eventType!==`${$C.eventMapping[t.step]||t.step}_start`)||this.eventStack[e].length>0&&t.action==="start"&&r?.eventType.includes("_start")&&r?.eventType!==`${$C.eventMapping[t.step]||t.step}_start`||(this.eventStack[e].push({eventType:`${$C.eventMapping[t.step]||t.step}_${t.action}`,timestamp:new Date().toISOString()}),this.eventStack[e].length>1&&this.eventStack[e][this.eventStack[e].length-1].eventType===this.eventStack[e][this.eventStack[e].length-2].eventType&&this.eventStack[e].splice(this.eventStack[e].length-2,1));}removeEventStack(e,t){this.eventStack[e]=this.eventStack[e].filter(r=>r.eventType!==t);}getEventStack(e){return this.eventStack[e]}clearEventStack(e){this.eventStack[e]=[];}setUploadedFiles(e,t){this.uploadedFiles[e]||this.clearUploadedFilesStack(e),t.forEach(r=>this.uploadedFiles[e].push({fileSize:r.fileSize,fileType:this.mapSupportedType(r.type)}));}getUploadFiles(e){return this.uploadedFiles?.[e]||[]}clearUploadedFilesStack(e){this.uploadedFiles[e]=[];}setReviewEntriesLog(e,t){this.reviewEntriesLog[e]=t;}getReviewEntriesLog(e){return this.reviewEntriesLog?.[e]||{}}setTotalCleanings(e,t){this.reviewEntriesLog[e].total_cleanings=t;}clearReviewEntriesLog(e){this.reviewEntriesLog[e]={total_rows:0,total_error_rows:0,total_error_cells:0,total_columns:0,total_cleanings:0};}mapSupportedType(e){for(let[t,r]of Object.entries(Bc))if(e===r)return t;return e}},$C.eventMapping={"/":"upload","/select-sheet":"sheet_selection","/select-header":"header_selection","/match-column":"match_columns","/review-entries":"review_entries","/join-column":"join_sheets"},$C),Zi=xWi,CWi=class extends CF{constructor(){super(...arguments),this.createFile=async(n,e)=>this.post("/file/directory",{},{headers:{apikey:this.sendApiKey?iy:void 0,Authorization:n,originRequest:Zi.getInstance().getOrigin()},signal:e.signal}),this.uploadData=async(n,e,t)=>this.put(n,e,{baseURL:"",signal:t.signal}),this.clearFile=async(n,e)=>this.delete(`/file?file_name=${n}`,{headers:{apikey:this.sendApiKey?iy:void 0,Authorization:e,originRequest:Zi.getInstance().getOrigin()}});}},Jtr=CWi,SWi=class{constructor(n){this.fileNames=[],this.remove=e=>{this.fileNames=this.fileNames.filter(t=>t!==e);},this.add=e=>{this.fileNames.push(e);},this.clear=async e=>{let t=[...this.fileNames];for(let r=0;r<t.length;++r){let i=t[r];this.remove(i),await this.uploadInputSheetAPI.clearFile(i,e).catch(()=>{});}},this.uploadInputSheetAPI=n;}},EWi=SWi,kWi=class extends Ztr{constructor(n,e,t={}){super(),this.prepareData=async(o,s,a)=>{await this.uploadInputSheetRepository.upload(o,s,a);},this.clearData=o=>{this.uploadInputSheetRepository.clearData(o);},this.complete=o=>{this.uploadInputSheetRepository.complete(o);},this.matchColumnsTask=(o,s,a)=>{let l=o.getColumns().map(d=>({key:d.key,label:d.label,alternativeMatches:d.alternativeMatches})),c=o.getLicenseKey(),u=o.getInputHeaderRow();return this.nodeEngine.matchColumns(u,l,c,s,a)},this.matchOptionTask=({dataModel:o,sheets:s,sheetColumn:a,licenseKey:l,sessionId:c})=>{let u=d8t.mapDataModelToColumn(o),d=[];for(let f=0;f<s.length;f++){let p=s[f];for(let m=0;m<p.getColumns().length;m++){let g=p.getColumns()[m];d.push(g);}}let h=d.findIndex(f=>f===a);return this.nodeEngine.matchOption(this.uploadInputSheetRepository.getFileName(),[{column:{dropdownOptions:u.dropdownOptions,isMultiSelect:u.isMultiple,key:u.key,label:u.label,optionMappingConfiguration:u.optionMappingConfiguration},column_index:h}],l,c)},this.nodeEngine=n;let r=new Jtr(e,t),i=new EWi(r);this.uploadInputSheetRepository=new yWi(r,i);}},TWi=kWi,ele=({workerFile:n,hostWorkerUrl:e})=>{let t=null,r=null;return {init:async()=>{if(!t||!r)try{e?t=t=new Worker(e):t=n(),t&&await new Promise((i,o)=>{if(!t)return o();t.addEventListener("error",s=>{s.preventDefault(),t?.terminate(),r?.[dat](),r=null,o(new Error("has something wrong with worker"));}),r=fat(t),r.check().then(i).catch(o);});}catch{}},clear:()=>{r&&(r?.[hat](),t?.terminate(),r=null);},getRemote:()=>r}},tle={IMPORT:"importWorkerBundle.js",HOOKS:"hooks.js",MATCHING:"matchingValues.js",ML:"ml.js",SEARCH_AND_REPLACE:"searchAndReplace.js",JAVASCRIPT:"javascript.js"},nle=(...n)=>n.map((e,t)=>t===0?e.replace(/\/+$/,""):e.replace(/^\/+|\/+$/g,"")).join("/"),EKn=({workersBaseUrl:n})=>{let e=n?nle(n,tle.ML):"",{init:t,getRemote:r,clear:i}=ele({hostWorkerUrl:e,workerFile:()=>new Worker(new URL("workers/mapping/index.js",import.meta.url),{type:"module"})});return {init:t,clear:i,getOptionMappings:(...o)=>{let s=r();return s?s.getOptionMappings(...o):WXt(...o)},getColumnMappings:(...o)=>{let s=r();return s?s.getColumnMappings(...o):VXt(...o)}}},IWi=class{constructor({workersBaseUrl:n}){this.getColumnMappings=async(e,t,r)=>{let i=EKn({workersBaseUrl:this.workersBaseUrl});return await i.init(),i.getColumnMappings(e,t,r).then(o=>(i.clear(),o)).catch(o=>(i.clear(),Promise.reject(o)))},this.getOptionMappings=async(e,t)=>{let r=EKn({workersBaseUrl:this.workersBaseUrl});return await r.init(),r.getOptionMappings(e,t).then(i=>(r.clear(),i)).catch(i=>(r.clear(),Promise.reject(i)))},this.workersBaseUrl=n;}},LWi=class{constructor({workersBaseUrl:n}){this.matchColumns=async(e,t,r)=>{let i=await this.mappingEngine.getColumnMappings(e,t.map(o=>`${o}`),r);return this.parseColumnMappingResult((0,enr.flatten)(i))},this.matchOption=async(e,t)=>Promise.all(t.map(r=>this.matchOptionItem(e,r))),this.matchOptionItem=async(e,t)=>new Promise((r,i)=>{setTimeout(()=>{this.mappingEngine.getOptionMappings(e,t).then(o=>{let s={result:[{optionMappings:{[o.tdmColumnKey]:o.suggestions},label:o.inputColumn,suggestions:[{key:o.tdmColumnKey,value:1,isSameWord:!0}]}]};r(s);}).catch(o=>{i(o);});},100);}),this.parseColumnMappingResult=e=>{let t=[];for(let r=0;r<e.length;r++){let i=e[r],o=[];for(let s=0;s<i.columnSuggestions.length;s++){let a=i.columnSuggestions[s];o.push({key:a.key,value:a.percentage});}t.push({label:i.inputColumnKey,suggestions:o,optionMappings:{}});}return [{result:t}]},this.mappingEngine=new IWi({workersBaseUrl:n});}},RWi=class extends CF{constructor(){super(...arguments),this.matchColumns=async(n,e,t,r,i)=>{let o={apikey:this.sendApiKey?iy:void 0,authorization:t},s=await this.post("/execute/column",{tdmColumns:e,inputColumns:n,options:{columnMappingConfiguration:{layers:r.layers,threshold:r.threshold},product:"importer"},sessionId:i},{headers:o});return this.parseColumnMappingResult(s)},this.matchOption=async(n,e,t,r)=>{let i={apikey:this.sendApiKey?iy:void 0,authorization:t},o=await Promise.all(e.map(s=>this.post("/execute/option",{tdmColumn:{key:s.column.key,label:s.column.label,isMultiSelect:s.column.isMultiSelect,dropdownOptions:s.column.dropdownOptions},options:{product:"importer",fileName:n,columnIndex:s.column_index,headerRowIndex:0,optionMappingConfiguration:{layers:s.column.optionMappingConfiguration?.layers,threshold:s.column.optionMappingConfiguration?.threshold}},sessionId:r},{headers:i})));return this.parseOptionMappingResult((0,tnr.flatten)(o))},this.parseColumnMappingResult=n=>{let e=[];for(let t=0;t<n.length;t++){let r=n[t],i=[],o=Object.keys(r.suggestions);for(let s=0;s<o.length;s++){let a=o[s],l=r.suggestions[a];i.push({key:a,value:l});}e.push({label:r.inputColumn,suggestions:i,optionMappings:{}});}return [{result:e}]};}parseOptionMappingResult(n){let e=[];for(let t=0;t<n.length;t++){let r=n[t];e.push({optionMappings:{[r.tdmColumnKey]:r.suggestions},label:r.inputColumn,suggestions:[{key:r.tdmColumnKey,value:1,isSameWord:!0}]});}return [{result:e}]}},MWi=class extends Ztr{constructor(n){super(),this.matchColumnsTask=(e,t)=>{let r=e.getColumns().map(o=>({...o,dropdownOptions:[]})),i=e.getInputHeaderRow();return this.browserEngine.matchColumns(r,i,t)},this.matchOptionTask=({dataModel:e,sheetColumn:t})=>{let r=d8t.mapDataModelToColumn(e),i=d8t.getInputJsonBySheetColumn(t,e);return this.browserEngine.matchOption(r,i)},this.browserEngine=n;}},AWi=MWi,rnr=(0,ztr.createContext)({executing:!0,setExecuting:()=>{},abort:()=>{}}),DWi=({children:n})=>{let[e,t]=(0,jN.useState)(!0),{baseUrl:r,isSelfHosted:i,baseMappingUrl:o,workersBaseUrl:s}=ti(),a=(0,jN.useRef)(new AbortController),l=(0,jN.useMemo)(()=>new LWi({workersBaseUrl:s??""}),[s]),c=(0,jN.useMemo)(()=>{let d=new AWi(l),h=new RWi({sendApiKey:!i},{baseURL:o}),f=new TWi(h,{sendApiKey:!i},{baseURL:r});return new gWi(d,f)},[r,i,l,o]),u=(0,jN.useCallback)(()=>{a.current.abort(),a.current=new AbortController;},[a]);return (0,nnr.jsx)(rnr.Provider,{value:{matchingStrategy:c,executing:e,setExecuting:t,abortController:a,abort:u},children:n})},NWi=DWi,L9t=document.createElement("style");L9t.type="text/css";L9t.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}
|
|
11550
|
-
/*! 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(L9t);var R9t=document.createElement("style");R9t.type="text/css";R9t.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(R9t);var M9t=document.createElement("style");M9t.type="text/css";M9t.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(M9t);var A9t=document.createElement("style");A9t.type="text/css";A9t.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(A9t);var D9t=document.createElement("style");D9t.type="text/css";D9t.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(D9t);var N9t=document.createElement("style");N9t.type="text/css";N9t.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(N9t);var O9t=document.createElement("style");O9t.type="text/css";O9t.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(O9t);var fS=()=>(0,inr.useContext)(Ctr),wOt=()=>{},OWi=class{constructor(n,e){this.onResultCallbackMapping={},this.getGeneralHooks=t=>{let r=this.hooksAPI.onCancel??wOt,i=t?.trim()?.length>0?this.onResultCallbackMapping[t]:this.hooksAPI.onResults,o=this.hooksAPI.onEntryChange??wOt,s=this.hooksAPI.onEntryInit??wOt;return {onResults:i,onCancel:r,onEntryChange:o,onEntryInit:s}},this.hooksAPI=n,this.onResultCallbackMapping={[e]:n.onResults};}},PWi=OWi,FWi=()=>{let{onResults:n,onCancel:e,onEntryChange:t,onEntryInit:r,columnHooks:i}=Og(),o=(0,BQe.useContext)(onr),s=ti(),a=(0,BQe.useMemo)(()=>new PWi({onResults:n,onCancel:e,onEntryChange:t,onEntryInit:r,columnHooks:i},s.identifier),[n,e,t,r,i,s.identifier]);return {...o,hooksAPIMapper:a,getIdentifier:()=>s.identifier}},Yq=FWi,onr=(0,SF.createContext)({setLoadingInitialValues:()=>{},loadingInitialValues:!0}),BWi=({children:n})=>{let[e,t]=(0,SF.useState)(!0),r=(0,SF.useMemo)(()=>new Kg,[]);return (0,HQe.jsxs)(onr.Provider,{value:{cancelHookObservable:r,loadingInitialValues:e,setLoadingInitialValues:t},children:[(0,HQe.jsx)(HWi,{}),n]})},HWi=()=>{let{cancelHookObservable:n,hooksAPIMapper:e,getIdentifier:t}=Yq(),r=fS(),{featureWhiteList:i}=oy();return (0,SF.useEffect)(()=>{let o=n?.subscribe(()=>{e.getGeneralHooks(t()).onCancel();});return ()=>{o?.unsubscribe();}},[n,e,t,r,i]),null},cS="/upload-file",Z_="/review-entries",F0="/select-header",zm="/match-column",tS="/select-sheet",nF="/join-column",HXe,WWi=new Uint8Array(16);function VWi(){if(!HXe&&(HXe=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||typeof msCrypto<"u"&&typeof msCrypto.getRandomValues=="function"&&msCrypto.getRandomValues.bind(msCrypto),!HXe))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return HXe(WWi)}var zWi=/^(?:[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 jWi(n){return typeof n=="string"&&zWi.test(n)}var UWi=jWi,Ab=[];for(WXe=0;WXe<256;++WXe)Ab.push((WXe+256).toString(16).substr(1));var WXe;function $Wi(n){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,t=(Ab[n[e+0]]+Ab[n[e+1]]+Ab[n[e+2]]+Ab[n[e+3]]+"-"+Ab[n[e+4]]+Ab[n[e+5]]+"-"+Ab[n[e+6]]+Ab[n[e+7]]+"-"+Ab[n[e+8]]+Ab[n[e+9]]+"-"+Ab[n[e+10]]+Ab[n[e+11]]+Ab[n[e+12]]+Ab[n[e+13]]+Ab[n[e+14]]+Ab[n[e+15]]).toLowerCase();if(!UWi(t))throw TypeError("Stringified UUID is invalid");return t}var qWi=$Wi;function GWi(n,e,t){n=n||{};var r=n.random||(n.rng||VWi)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,e){t=t||0;for(var i=0;i<16;++i)e[t+i]=r[i];return e}return qWi(r)}var KWi=GWi,anr=(0,pM.createContext)({sessionId:"",generateNewSessionId:()=>{},setHasUploadedData:()=>{}}),YWi=n=>{let e=(0,pM.useCallback)(()=>KWi().replace(/-/g,""),[]),[t,r]=(0,pM.useState)(e()),[i,o]=(0,pM.useState)(!1),s=(0,pM.useCallback)(()=>{i&&r(e());},[e,i]),a=(0,pM.useMemo)(()=>({sessionId:t,generateNewSessionId:s,setHasUploadedData:o}),[t,s]);return (0,snr.jsx)(anr.Provider,{value:a,children:n.children})},XWi=()=>(0,lnr.useContext)(anr),XI=XWi,dnr=(0,cnr.createContext)({isUseInRouter:!1}),ZWi=({isUseInRouter:n,children:e})=>(0,unr.jsx)(dnr.Provider,{value:{isUseInRouter:n},children:e}),QWi=()=>(0,hnr.useContext)(dnr),JWi=QWi,fnr=()=>{let n=Ult(),{isUseInRouter:e}=JWi();return (0,P9t.useCallback)((t,r)=>{if(e){let i=window.location.pathname,o=`${window.location.hash}`.replace("#",""),s=window.location.hash,a=typeof t=="string"?t:t.pathname,l=s?x3e(o,a):x3e(i,a);return n({pathname:l},{...r,replace:!0})}else {let i=typeof t=="string"?t:t.pathname;return n({pathname:i},{...r,replace:!0})}},[n,e])},F9t=()=>{let n=fnr(),{columns:e}=ti(),t=fS(),{setHasUploadedData:r}=XI();return {navigateToReviewEntries:(0,P9t.useCallback)(()=>{n({pathname:Z_},{state:{hideStepper:!0,columns:e,dataModels:t.getDataModels()}}),r(!0);},[e,t,n,r])}},pS=fnr,eVi=n=>{let e;return {promise:new Promise((t,r)=>{e=()=>{r({isCancelled:!0});},n.then(i=>t(i)).catch(i=>r(i));}),cancel(){e();}}},vq=({workersBaseUrl:n})=>{let e=n?nle(n,tle.IMPORT):"",{init:t,getRemote:r,clear:i}=ele({hostWorkerUrl:e,workerFile:()=>new Worker(new URL("workers/parseData/index.js",import.meta.url),{type:"module"})});return {init:t,clear:i,convertCsv2Sheet:(...o)=>{let s=r();return s?s.convertCsv2Sheet(...o):IXt(...o)},convertExcel2Sheet:(...o)=>{let s=r();return s?s.convertExcel2Sheet(...o):AXt(...o)},convertJson2Sheet:(...o)=>{let s=r();return s?s.convertJson2Sheet(...o):LXt(...o)},convertXLS2Sheet:(...o)=>{let s=r();return s?s.convertXLS2Sheet(...o):eat(...o)},convertXML2Sheet:(...o)=>{let s=r();return s?s.convertXML2Sheet(...o):RXt(...o)},jsonParser:(...o)=>{let s=r();return s?s.jsonParser(...o):Promise.resolve($Le(...o))},parseDateFormat:(...o)=>{let s=r();if(s)return s.parseDateFormat(...o);let a=NXt(...o);return Promise.resolve(a)},convertPdf2Sheets:(...o)=>{let s=r();return s?s.convertPdf2Sheets(...o):MXt(...o)},parseValue:(...o)=>{let s=r();if(s)return s.parseValue(...o);let a=G6(...o);return Promise.resolve(a)}}},gnr=async(n,e,t)=>{if(n.type===Bc.csv||n.type===Bc.tsv_text||n.type===Bc.tsv||["tsv","csv"].includes(TKn(n.name))){let r=await lVi(n);return e.convertCsv2Sheet(r,{...t,metaFile:{name:n.name,type:n.type===Bc.xls?Bc.csv:n.type,size:n.size}})}else return n.type===Bc.xml?e.convertXML2Sheet(n,t):n.type===Bc.json?e.convertJson2Sheet(n,t):n.type===Bc.xls||n.type===Bc.xlsb||TKn(n.name)==="xlsb"?e.convertXLS2Sheet(n,t):n.type===Bc.pdf?e.convertPdf2Sheets(n,{...t,stage:DXt}):e.convertExcel2Sheet(n,t)},bnr=(n,e,t,r)=>{let i=vq({workersBaseUrl:t});return r&&r(i),eVi(i.init().then(()=>Promise.all(n.map(o=>gnr(o,i,e).then(s=>({...s,rawFile:o})))).finally(()=>{i.clear();})))},tVi=n=>n[0]?.errors[1]?.message?n[0]?.errors[1]?.message:n[0]?.errors[0]?.message,kKn={"Too many files":"txt_too_many_files_error"},nVi=n=>kKn[n]?kKn[n]:n,vnr=n=>{let e={};return n.forEach(t=>{t==="tsv"?(e[Bc.tsv]=[],e[Bc.tsv_text]=[]):t==="xls"?(e[Bc.xls]=[],e[Bc.xlsb]=[".xlsb"]):e[Bc[t]]=[];}),e},rVi=n=>{let e=0;return n.forEach(t=>{e=e+Math.round(t.type===Bc.pdf?6:t.type===Bc.csv||t.type===Bc.json?1:Math.max(t.size)/1e6);}),e*2.5/2*10},wnr=(n,e,t,r,i)=>{if(e[0].errors.find(s=>s.code===R3e.FileInvalidType)){n(r("txt_file_format_error",{fileTypes:i.join(", ")}),r("txt_title_upload_valid_file_error"));return}if(e[0].errors.find(s=>s.code===R3e.FileTooLarge)){n(r("txt_upload_exceed_max_size_error",{sizeInMb:t}),r("txt_title_upload_exceed_max_size_error"));return}let o=tVi(e);n(r(nVi(o)),r("txt_title_too_many_files_error"));},iVi=(n,e,t,r)=>{e===9003?n(t("txt_nested_file_error"),t("txt_import_error")):e===9001?n(t("txt_file_format_error",{fileTypes:r.join(", ")}),t("txt_title_error_invalid_format")):n(t("txt_file_error"),t("txt_import_error"));},ynr=(n,e)=>({...oVi,...n?sVi:{},...e?aVi:{}}),oVi={transition:"border .24s ease-in-out"},sVi={borderColor:"#4B5563"},aVi={borderColor:"#D0021B"},lVi=n=>new Promise(async e=>{let t=await n.text();try{let r=((await(0,mnr.default)(n)).encoding||"ascii").toLowerCase();if(r!=="utf-8"&&!(0,pnr.isNil)(r)){let i=await cVi(n),o=new TextDecoder(r).decode(i);e(o);}else e(t);}catch{e(t);}}),cVi=n=>new Promise((e,t)=>{let r=new FileReader;r.onload=i=>{let o=i?.target?.result;e(o);},r.onerror=()=>t({code:-1}),r.readAsArrayBuffer(n);}),TKn=n=>n?.split(".")?.pop()?.toLowerCase()||"",bZe=n=>n?.replace(/\.[^/.]+$/,""),IKn=[[]],LKn="",uVi=class{constructor(n){this.dataStack={},this.parseRejectedData=e=>{let t=[];for(let r=0;r<e.length;++r){let i=e[r];t.push({fileName:i.filename,sheets:[]});}return t},this.parseData=e=>{let t=[];for(let r=0;r<e.length;++r){let i=e[r],o=[];if(_Wi.includes(i.type))o.push({sheetName:bZe(i.filename),data:i.data});else {let s=i.data;for(let a=0;a<s.length;++a){let l=s[a];o.push({sheetName:l?.sheetName??"",data:l?.data??[]});}}t.push({fileName:i.filename,sheets:o});}return t},this.throwError=(e,t)=>{let r={1101:"The component is not verified.",1100:"No component found.",1002:"This feature or this file type are not included in your subscription."};return t&&Zi.getInstance().setParseSession(),Promise.reject(new Error(`code: ${r[e]?e:-1}, message: ${r[e]??"Unexpected error"}`))},this.parseFiles=async(e,t,r)=>{let i=vq({workersBaseUrl:r});await i.init();let o=[],s=[];return await Promise.all(e.map(async a=>gnr(a,i,t).then(l=>{o.push(l);}).catch(()=>{s.push({data:[],filename:a.name,fileSize:a.size,type:a.type});}))).finally(()=>{i.clear();}),{acceptedFiles:o,rejectedFiles:s}},this.getSessionKey=e=>{if(e&&this.importerSessionListener.listenStartCallbackStack[e])return e;{let t=Object.keys(this.importerSessionListener.listenStartCallbackStack);return t[t.length-1]}},this.getComponentData=e=>{let t=this.getSessionKey(e);return this.importerSessionListener.getConfigCallbackStack[t]?.()},this.onRetry=async e=>{let t;for(let r=1;r<=3;r++)try{return await e()}catch(i){if(t=i,r===3)throw t;await new Promise(o=>setTimeout(o,500*r));}throw t},this.uploadMethod=async({step:e,data:t,headerIndex:r,identifier:i})=>{let o=this.getSessionKey(i),s=this.getComponentData(o),a=s?.featureWhiteList.isDynamicImport();if(!s)return this.throwError(1100,o);if(!s?.isAuth)return this.throwError(1101,o);if(!a)return this.throwError(1002,o);this.dataStack[i??LKn]={step:e,data:t,headerIndex:r};},this.startMethod=e=>{let t=e?.identifier,r=this.getSessionKey(t),i=this.getComponentData(r),o=0,s=5,a=500,l=()=>new Promise((u,d)=>{let h=()=>{o++,i=this.getComponentData(r),i?.isAuth===!0&&i.featureWhiteList.isDynamicImport()===!0?u():o>=s?d():setTimeout(h,a);};h();}),c=()=>{let u=this.dataStack?.[r];((0,WQe.isNil)(t)||(0,WQe.isEmpty)(t))&&(u=this.dataStack?.[LKn]),this.importerSessionListener.listenStartCallbackStack[r]?.({data:u?.data,headerIndex:u?.headerIndex,step:u?.step});};l().catch(()=>{}).finally(()=>c());},this.parseMethod=async({data:e,identifier:t})=>{let r=this.getSessionKey(t),i=this.getComponentData(r),o=i?.featureWhiteList.isDynamicImport(),s=i?.featureWhiteList.getInputTypes()??[];if(!i)return this.throwError(1100,r);if(!i?.isAuth)return this.throwError(1101,r);if(!o)return this.throwError(1002,r);let a=[],l=[],c=Array.from(e);for(let u=0;u<c.length;++u){let d=c[u],h=(Object.keys(Bc).find(f=>Bc[f]===d.type)??d.type)?.replace("_text","");s.includes(h)?a.push(d):l.push(d);}try{let u=await this.parseFiles(a,{licenseKey:i.licenseKey,framework:Zi.getInstance().getFrameWork(),sdkVersion:Zi.getInstance().getVersionNumber(),hasDateType:i.columnAPIMapper.hasDateType(),originRequest:Zi.getInstance().getOrigin()},i.workersBaseUrl??"");return Zi.getInstance().setParseSession(),{accepted:this.parseData(u?.acceptedFiles??[]),rejected:this.parseRejectedData([...u?.rejectedFiles??[],...l.map(d=>({filename:d.name,fileSize:d.size,data:[],type:d.type}))])}}catch(u){return this.throwError(u?.code,r)}},this.upload=async({step:e,data:t,headerIndex:r,identifier:i})=>this.onRetry(()=>this.uploadMethod({step:e,data:t,headerIndex:r,identifier:i})),this.start=e=>this.startMethod(e),this.parse=async({data:e,identifier:t})=>this.onRetry(()=>this.parseMethod({data:e,identifier:t})),this.verify=async e=>{let t=this.getSessionKey(e?.identifier),r=this.getComponentData(t);if(r?.isAuth)return r?.verifyTracking(t),Promise.resolve({verified:!0,identifier:t});let i=0,o=10,s=500,a=async()=>{for(;i<o;){if(this.getComponentData(this.getSessionKey(e?.identifier)))return !0;i++,await new Promise(l=>setTimeout(l,s));}return !1};try{if(!await a())return this.throwError(1100,this.getSessionKey(e?.identifier));let l=this.getSessionKey(e?.identifier),c=this.getComponentData(l);if(!c)return this.throwError(1100,this.getSessionKey(e?.identifier));c.verifyTracking(l);let{verifyLicenseKeyListener:u,verifyLicenseKey:d,isVerifyingLicenseKey:h,isAuth:f}=c;if(f)return Promise.resolve({verified:!0,identifier:l});if(h&&u)try{return new Promise((p,m)=>{u?.subscribe({next:g=>{p({verified:g,identifier:l});},error:g=>{m(new Error(`Failed to verify license key: ${g instanceof Error?g.message:String(g)}`));}});})}catch{return c?.verifyTracking(l),Promise.resolve({verified:!1,identifier:l})}if(!h&&!f&&d)try{let p=await d();return Promise.resolve({verified:!!p,identifier:l})}catch(p){throw new Error(`Failed to verify license key: ${p instanceof Error?p.message:String(p)}`)}return Promise.resolve({verified:!!f,identifier:l})}catch{let l=this.getSessionKey(e?.identifier);return this.getComponentData(l)?.verifyTracking(l),this.throwError(1100,this.getSessionKey(e?.identifier))}},this.reload=async e=>{let t=this.getSessionKey(e?.identifier),r=this.getComponentData(t);if(!r)return this.throwError(1100,t);let{reload:i}=r;i&&typeof i=="function"&&(await new Promise(o=>setTimeout(o,100)),i(t));},this.importerSessionListener=n;try{module?.hot;}catch{}}},dVi=uVi,hVi=class{constructor(){this.listenStartCallbackStack={},this.getConfigCallbackStack={},this.listener=(n,e)=>{this.listenStartCallbackStack[n]=e;},this.getCompDataCallbackListener=(n,e)=>{this.getConfigCallbackStack[n]=e;};}},fVi=hVi,h8t=new fVi,pVi=new dVi(h8t),vZe=class{constructor({sheetData:n,filename:e,type:t,sheetName:r,fileSize:i}){this.getSpreadSheet=({autoDetectedHeader:o})=>{let s=new aA({name:this.sheetName,data:this.sheetData});o&&s.setHeaderByAutoDetection();let a=[s];return new lH({sheets:a,filename:this.filename,type:this.type,fileSize:this.fileSize})},this.sheetData=n,this.filename=e,this.type=t,this.sheetName=r,this.fileSize=i;}},f8t=class{constructor({multipleSheetData:n,filename:e,type:t,fileSize:r}){this.getSpreadSheet=({autoDetectedHeader:i})=>{let o=this.multipleSheetData.map(s=>{let a=new aA({data:s.data,name:s.sheetName});return i&&a.setHeaderByAutoDetection(),a});return new lH({type:this.type,filename:this.filename,sheets:o,fileSize:this.fileSize})},this.multipleSheetData=n,this.filename=e,this.type=t,this.fileSize=r;}};function mVi(n,e){let t=new Set(n);return e.filter(r=>t.has(r))}var gVi=(n,e,t)=>{let r=(0,wq.flatten)(n.map(i=>i.getColumns())).filter(i=>i.getColumnKey()===e);if(r.length>1){for(let i=0;i<r.length;i++){let o=r[i];if(mVi(o.getUniqueRows(),t).length===t.length)return o}return null}else return r[0]},_nr=(n,e)=>(0,wq.isEqual)(`${n}`,`${e}`),xnr=n=>(0,wq.isArray)(n)&&n.every(e=>(0,wq.isArray)(e)),bVi=class{constructor({spreadSheets:n}){this.setJoinSheet=e=>{this.joinSheet=e;},this.getJoinSheet=()=>this.joinSheet,this.removeJoinSheet=()=>{this.joinSheet=null;},this.getSpreadSheets=()=>this.spreadSheets,this.getSelectedSpreadSheets=()=>this.spreadSheets.filter(e=>e.isSelected()),this.getIsAllSheetsManualSelectHeader=()=>{let e=this.getSelectedSpreadSheets();for(let t=0;t<e.length;t++){let r=e[t].getSelectedSheets();for(let i=0;i<r.length;i++)if(!r[i].getIsManualSelectHeader())return !1}return !0},this.length=()=>this.spreadSheets.length,this.getAllSheets=()=>(0,Cnr.flatten)(this.spreadSheets.map(e=>e.getSheets())),this.setSheet=e=>{for(let t=0;t<this.spreadSheets.length;t++){let r=this.spreadSheets[t];for(let i=0;i<r.getSheets().length;i++)r.getSheets()[i].getId()===e.getId()&&this.spreadSheets?.[t].getSheets()?.[i]?.setData(e.getData());}},this.getSelectedSheets=(e=!1)=>this.joinSheet&&!e?[this.joinSheet]:this.getAllSheets().filter(t=>t.isSelected()),this.selectAllSheets=e=>{this.spreadSheets.forEach(t=>{t.selectAllSheet(e);});},this.addList=e=>{let t=e.getSpreadSheets();for(let r=0;r<t.length;r++)this.spreadSheets.push(t[r]);},this.spreadSheets=n;}},l2e=bVi,vVi=class{constructor({spreadSheetList:n}){this.currentSpreadSheetPosition=0,this.currentSheetPosition=0,this.goToBySheet=e=>{let t=this.originalSpreadSheetList.getSelectedSpreadSheets();for(let r=0;r<t.length;r++){let i=t[r].getSelectedSheets();for(let o=0;o<i.length;o++)if(i[o]===e)return this.currentSpreadSheetPosition=r,this.currentSheetPosition=o,i[o]}},this.getCurrentSpreadSheet=()=>this.originalSpreadSheetList.getSelectedSpreadSheets()[this.currentSpreadSheetPosition],this.getCurrentSheet=()=>this.getCurrentSpreadSheet().getSelectedSheets()[this.currentSheetPosition],this.next=()=>{let e=this.currentSheetPosition+1,t=this.originalSpreadSheetList.getSelectedSpreadSheets()[this.currentSpreadSheetPosition].getSelectedSheets().length;if(e>=t){let r=this.currentSpreadSheetPosition+1,i=this.originalSpreadSheetList.getSelectedSpreadSheets().length;return r>=i?!1:(this.currentSpreadSheetPosition=r,this.currentSheetPosition=0,this.getCurrentSheet().getIsManualSelectHeader()?this.next():!0)}else return this.currentSheetPosition=e,this.getCurrentSheet().getIsManualSelectHeader()?this.next():!0},this.goToLastSpreadSheet=()=>{this.currentSpreadSheetPosition=Math.max(this.originalSpreadSheetList.getSelectedSpreadSheets().length-1,0);},this.goToLastSheet=()=>{let e=this.getCurrentSpreadSheet();this.currentSheetPosition=Math.max(e.getSelectedSheets().length-1,0);},this.getSpreadSheetList=()=>this.updatedSpreadSheetList,this.setUpdatedSpreadSheetList=e=>{this.updatedSpreadSheetList=e;},this.getOriginalSpreadSheetList=()=>this.originalSpreadSheetList,this.originalSpreadSheetList=n,this.updatedSpreadSheetList=n;}},jse=vVi,wVi=class{constructor(){this.handle=async({data:n,headerIndex:e,hasDateType:t,automaticHeaderDetection:r,workersBaseUrl:i})=>{let o,s=vq({workersBaseUrl:i});await s.init();let a=xnr(n);if(a)o=n;else try{o=await s.jsonParser(JSON.stringify(n),{hasDateType:t});}catch{throw s.clear(),new Error("1000")}s.clear();let l=new vZe({sheetData:o,filename:"",type:"dynamic-import",sheetName:"",fileSize:0}),c;if(!a)c=l.getSpreadSheet({autoDetectedHeader:r??!1});else if((0,O0.isNil)(e))c=l.getSpreadSheet({autoDetectedHeader:!0});else {c=l.getSpreadSheet({autoDetectedHeader:!1});let d=c.getSheets()[0].getData();e>=0&&e<d.length?c.getSheets()[0].setHeaderRowIndex(e):c.getSheets()[0].setHeaderByAutoDetection();}let u=new l2e({spreadSheets:[c]});return u.selectAllSheets(!0),new jse({spreadSheetList:u})};}},yVi=class{constructor(n){this.generateMemorizeFindDataModel=()=>{let e={},t={},r=0;for(let i=0;i<this.dataModels.length;i++){let o=this.dataModels[i];e[o.getKey()]=o,o.isHidden()||(t[o.getKey()]=r,r++);}return i=>({dataModel:e[i],colIndex:t[i]??-1})},this.checkInvalidFormat=e=>!(0,O0.isArray)(e)||e.some(t=>!(0,O0.isObject)(t)&&!(0,O0.isNil)(t)),this.handle=({data:e})=>{let t=e;if(this.checkInvalidFormat(e))throw new Error("1000");let r=this.generateMemorizeFindDataModel(),i=[],o={};for(let s=0;s<t.length;++s){if(i[s]={},(0,O0.isNil)(t[s]))continue;let a=Object.keys(t[s]);for(let l=0;l<a.length;++l){let c=a[l],u=r(c);if(!u.dataModel)throw new Error("1001");if((0,O0.isObject)(t[s][c])&&!(0,O0.isArray)(t[s][c])){if((0,O0.isNil)(t[s][c].value)||(i[s][c]=cv.parse(t[s][c].value,{dataModel:u.dataModel})),(0,O0.isNil)(t[s][c].info))continue;u.colIndex>=0&&t[s][c].info?.forEach(d=>{let h={rowIndex:s,colIndex:u.colIndex,popover:{message:d.message,level:d.level||iY}};(o[s]?.length??0)===0?o[s]=[h]:o[s].push(h);});}else (0,O0.isNil)(t[s][c])||(i[s][c]=cv.parse(t[s][c],{dataModel:u.dataModel}));}}return {dataInfos:o,parsedValues:i}},this.dataModels=n;}},_Vi=class{constructor(){this.handle=async({data:n,hasDateType:e,workersBaseUrl:t})=>{if(this.checkInvalidFormat(n))throw new Error("1000");let r=vq({workersBaseUrl:t});await r.init();let i=[];for(let o of n){for(let a of o.sheets)if(!xnr(a.data))try{a.data=await r.jsonParser(JSON.stringify(a.data),{hasDateType:e});}catch{throw r.clear(),new Error("1000")}r.clear();let s=new f8t({multipleSheetData:o.sheets,filename:o.fileName,type:"dynamic-import",fileSize:0});i.push(s.getSpreadSheet({autoDetectedHeader:!1}));}return new l2e({spreadSheets:i})};}checkInvalidFormat(n){if(!Array.isArray(n))return !0;for(let e of n){if(!(0,O0.isString)(e?.fileName)||e.fileName.trim()===""||!Array.isArray(e?.sheets)||e.sheets.length===0)return !0;let t=[];for(let r of e.sheets)if(t.includes(r.sheetName)||(t.push(r.sheetName),!(0,O0.isString)(r?.sheetName)||r?.sheetName.trim()===""||!Array.isArray(r?.data)||r.data.length===0||Array.isArray(r?.data[0])&&r.data[0].length===0||!Array.isArray(r?.data[0])&&(0,O0.isEmpty)(r.data[0])))return !0}return !1}},Qae,xVi=(Qae=class{},Qae.checkIsEmpty=e=>(0,EF.isNil)(e)||(0,EF.isEmpty)(e),Qae.isInValidObjectArray=e=>!(0,EF.isObject)(e)&&!(0,EF.isArray)(e),Qae),yOt=xVi,CVi=()=>(0,Snr.useContext)(vfr),sy=CVi,SVi=()=>{let{showConfirmModal:n}=Dp(),{t:e}=pt(),{closePage:t}=sy(),{cancelHookObservable:r}=Yq();return {warnLicenseKeyIsInvalid:(0,Enr.useCallback)(()=>{n({textNegativeButton:e("txt_close"),textPositiveButton:e("txt_back"),title:e("txt_invalid_license_key"),isShowIcon:!0,isShowPositiveButton:!1,description:e("txt_invalid_license_key_description"),onClickNegativeButton:()=>{r?.next(null),t();},onCloseModal(){r?.next(null);}});},[n,e,r,t])}},VQe=SVi,_Ot=(n,e)=>e.development_mode?e.is_verified&&n:e.is_verified&&!n,Xq=n=>{let e=(0,Use.useRef)(),t=(0,Use.useRef)(!1),r=(0,Use.useRef)(!1);t.current&&(r.current=!0),(0,Use.useEffect)(()=>{if(!t.current)return t.current=!0,e.current=n(),()=>{r.current&&e.current&&e.current();}},[]);},EVi=class{static mapDAOtoFeatureWhitelist(n,e){let t=new qZe;return t.enableI18nOverrides(n.plan_detail.features.i18n),t.enableMultiFileUpload(n.plan_detail.features.multiple_file_upload),t.enableReuseMapping(n.plan_detail.features.remember_mapping),t.enableAutomaticMapping(n.plan_detail.features.automatic_mapping,n.plan),t.setStepHandler(n.plan_detail.features.step_handler??!1),n.plan_detail.upload_size_limit===0?t.setFileSizeUnlimited():t.setMaxFileSizeInMb(n.plan_detail.upload_size_limit),t.setInputTypes(n.plan_detail.features.input_types||[]),t.setDefaultLanguage(n.default_language??"en"),t.setDynamicImport(n.plan_detail.features.dynamic_import,n.plan),t.setCustomStyling(n.plan_detail.features.custom_style,n.plan),t.setEnableLogs(n.plan_detail.features.logs),t.setLoading(!1),t.setLocale(e||{}),t.setRowsLimit(n.plan_detail.sdk_rows_limit??void 0),t.setEnableSmartTable(n.plan_detail.features.smart_table||!1),t.setEnableCleaningAssistant(n.plan_detail.features.cleaning_assistant||!1),t.setEnableWatermark(n.plan_detail.features.watermark||!1),t.setEnableContextualEngine(n.plan_detail.features.contextual_engine||!1),t.setEnableNodeProcessing(n.plan_detail.features.node_processing||!1),t.setEnablePrompts(n.plan_detail.features.prompts||!1),t}static getEmptyFeatureWhitelist(){let n=new qZe;return n.setLoading(!1),n}},xOt=EVi,kVi=class extends CF{constructor(){super(...arguments),this.getLocales=async({language:n},e)=>this.get("/utils/locales",{language:n},{headers:{Authorization:e,apikey:this.sendApiKey?iy:void 0}});}},TVi=class extends CF{constructor(){super(...arguments),this.verifyLicenseKey=async({licenseKey:n,sessionId:e})=>this.post("/verify",{session_id:e,meta:Zi.getInstance().getMeta()},{headers:{apikey:this.sendApiKey?iy:void 0,Authorization:n}});}},IVi=TVi,LVi=()=>{let n=ti();return (0,Tnr.useMemo)(()=>({isDeveloperMode:n.developerMode??!1}),[n])},BEe=LVi,Lnr=(0,JC.createContext)({isAuth:!1,isLoading:!1,htLicenseKey:"non-commercial-and-evaluation",isExpire:!1,verifyLicenseKey:void 0,verifyLicenseKeyListener:null,isVerifyingLicenseKey:!1}),RVi=({licenseKey:n,children:e})=>{let t="non-commercial-and-evaluation",[r,i]=(0,JC.useState)(!1),[o,s]=(0,JC.useState)(!1),[a,l]=(0,JC.useState)(!0),[c,u]=(0,JC.useState)(t),{language:d,baseUrl:h,isSelfHosted:f}=ti(),[p,m]=(0,JC.useState)(!0),{sessionId:g}=XI(),b=(0,JC.useMemo)(()=>new IVi({sendApiKey:!f},{baseURL:h}),[h,f]),v=(0,JC.useMemo)(()=>new kVi({sendApiKey:!f},{baseURL:h}),[h,f]),{setFeatureWhiteList:w}=oy(),{isDeveloperMode:y}=BEe(),C=(0,JC.useRef)(new Kg),_=async A=>{u(A?.ht_license_key?.trim()||t),i(_Ot(y,A));let M;A.plan_detail.features.i18n&&d?M=d:M=A.default_language??"en";let I=await v.getLocales({language:M},n),D=xOt.mapDAOtoFeatureWhitelist(A,I);return w(D),l(!1),s(!(A.is_verified??!1)),!0},x=()=>{let A=xOt.getEmptyFeatureWhitelist();return w(A),l(!1),!1},k=async()=>{m(!0);try{let A=await b.verifyLicenseKey({licenseKey:n,sessionId:g});return m(!1),C.current?.next(_Ot(y,A)),_(A)}catch{return C.current?.next(!1),m(!1),x()}};return Xq(()=>{if(n&&n?.trim()?.length>0||f)return (async()=>{try{let A=await b.verifyLicenseKey({licenseKey:n,sessionId:g});C.current?.next(_Ot(y,A)),m(!1),await _(A);}catch{C.current?.next(!1),m(!1),x();}})(),()=>{m(!1),l(!1);};{let A=xOt.getEmptyFeatureWhitelist();w(A),l(!1),m(!1),i(!1);}return ()=>{}}),(0,Inr.jsx)(Lnr.Provider,{value:{isAuth:r,isLoading:a,htLicenseKey:c,isExpire:o,verifyLicenseKey:k,isVerifyingLicenseKey:p,verifyLicenseKeyListener:C.current},children:e})},MVi=()=>(0,Rnr.useContext)(Lnr),mS=MVi,Anr=(0,zQe.createContext)({reload:()=>{}}),AVi=({children:n})=>{let[e,t]=(0,zQe.useState)(!1),r=i=>{Zi.getInstance().setReloadSession(i),t(!0),setTimeout(()=>{t(!1);},0);};return (0,Mnr.jsx)(Anr.Provider,{value:{reload:r},children:e?null:n})},DVi=()=>{let n=(0,Dnr.useContext)(Anr);if(!n)throw new Error("useImporterSession must be used within an ImporterSessionManager");return n},NVi=DVi,OVi=({modal:n,isAuth:e,openModal:t,licenseKey:r})=>{let i=pS(),o=fS(),{columns:s,embedUploadArea:a=!1,dynamicImport:l,identifier:c}=ti(),{showConfirmModal:u}=Dp(),{t:d}=pt(),{automaticHeaderDetection:h,workersBaseUrl:f}=ti(),{warnLicenseKeyIsInvalid:p}=VQe(),{featureWhiteList:m}=oy(),{cancelHookObservable:g}=Yq(),{verifyLicenseKeyListener:b,verifyLicenseKey:v,isVerifyingLicenseKey:w}=mS(),{reload:y}=NVi(),C=(0,a2e.useCallback)(async _=>y(_),[y]);return (0,a2e.useEffect)(()=>{h8t.listener(c,async({data:_,headerIndex:x,step:k})=>{try{if(!e){p();return}if(!l)throw new Error("1002");if(yOt.checkIsEmpty(_)&&k!=="review"){n&&!a&&(t(),Zi.getInstance().setStartSession(c),i({pathname:cS}));return}if(yOt.isInValidObjectArray(_))throw new Error("1000");let A=k;if(["header","mapping","review","sheetSelection"].includes(A)||(A="header"),A==="review"){let M=new yVi(o.getDataModels()),{parsedValues:I,dataInfos:D}=M.handle({data:((0,knr.isEmpty)(_)?IKn:_)??IKn});n&&t(),setTimeout(()=>{Zi.getInstance().setStartSession(c),i({pathname:Z_},{state:{columns:s,dataModels:o.getDataModels(),dynamicValues:I,dynamicDataInfos:D,dynamicUploadStart:Z_,hideStepper:!0}});});}else if(A==="sheetSelection"){let M=await new _Vi().handle({data:_??[],hasDateType:o.hasDateType(),workersBaseUrl:f??""}),I=tS;n&&t(),setTimeout(()=>{Zi.getInstance().setStartSession(c),i({pathname:I},{state:{spreadSheetList:M,dynamicUploadStart:I}});},220);}else {let M=await new wVi().handle({data:_??{},hasDateType:o.hasDateType(),headerIndex:x,automaticHeaderDetection:h,workersBaseUrl:f??""}),I=M?.getSpreadSheetList()?.getAllSheets()?.[0]?.getData();if(yOt.checkIsEmpty(I)){n&&!a&&(t(),Zi.getInstance().setStartSession(c),i({pathname:cS}));return}let D=A==="header"&&!h?F0:zm;n&&t(),setTimeout(()=>{Zi.getInstance().setStartSession(c),i({pathname:D},{state:{spreadSheetNavigate:M,dynamicUploadStart:D}});},220);}}catch(A){let M=()=>{switch(A.message){case "1000":return d("txt_error_dynamic_import_invalid_data_format");case "1001":return d("txt_error_dynamic_import_not_matched_tdm");case "1002":return d("txt_error_dynamic_import_no_support");default:return d("txt_error_dynamic_import_unknown")}};u({title:d("txt_default_title_error"),description:`<div>
|
|
11549
|
+
`),disabledClickOutside:u,isShowCloseIcon:d,overlayStyled:se({"&&":O.getDialogConfirmTheme().overlay,"&&&":F?.overlay}),bodyStyled:se({"&&":O.getDialogConfirmTheme().root,"&&&":F?.root}),closeIconStyled:O.getDialogConfirmTheme().closeIcon,closeButtonClassName:se({"&&& line":F?.closeIcon}),children:(0,Rp.jsxs)("div",{className:"w-full px-7 pb-8 pt-3",children:[(0,Rp.jsx)("div",{className:"flex justify-center pb-4",children:j()}),n&&(0,Rp.jsx)("p",{className:he("xss:pb-2 text-color-primary text-neutral-gray pb-1 text-center text-xl font-semibold",se({"&&":O.getDialogConfirmTheme().title,"&&&":F?.title}),A),dangerouslySetInnerHTML:{__html:n}}),e&&(0,Rp.jsx)("p",{className:he("xss:pb-7 text-color-secondary pb-2 text-center text-sm font-normal",se({"&&":O.getDialogConfirmTheme().description,"&&&":F?.description}),b),dangerouslySetInnerHTML:{__html:e}}),g||null,(0,Rp.jsx)("div",{className:he("xss:flex mt-2 flex-row justify-center sm:mt-0",v),children:(0,Rp.jsx)(kd,{isShow:p&&q,message:(0,Rp.jsx)(hS,{className:he("max-w-240 h-full w-full text-center text-xs",W),variant:D,children:m}),flip:!0,arrowClassName:"#545454",direction:"top",offset:{mainAxis:12},isShowArrow:!0,className:B,render:({setReferenceElement:U})=>{let Y={className:he("xss:mt-0 mt-3",{"w-full":!l},w,M?G:"",M?"text-gray-260":""),type:"submit",loading:J,onClick:N,ref:I==="negative"?U:void 0,...I==="negative"?X():{}},ee={...I==="positive"?X():{},className:he(`xss:mt-0 xss:mr-4 mt-3 mr-0 ${f&&G}`,y),type:"button",variant:"secondary",onClick:()=>{f||(T(!1),i&&i());}},ie=r||"Ok";return (0,Rp.jsxs)(Rp.Fragment,{children:[(0,Rp.jsx)("span",{ref:I==="positive"?U:void 0,className:he(C),children:l&&(0,Rp.jsx)(Ao,{...ee,children:(0,Rp.jsx)("div",{className:he("leading-6",f&&"text-gray-260"),children:t||L("txt_cancel")})})}),h!=="warn"?(0,Rp.jsx)(Ao,{...Y,children:ie}):R?(0,Rp.jsx)(Ao,{...Y,children:ie}):null]})}})})]})})},sWi=oWi,Vtr=(0,zN.createContext)({}),aWi=({children:n})=>{let[e,t]=(0,zN.useState)(!1),[r,i]=(0,zN.useState)(),o=(0,zN.useCallback)(s=>{i(s),t(!0);},[]);return (0,zN.useEffect)(()=>{e||i(void 0);},[e]),(0,OQe.jsxs)(Vtr.Provider,{value:{isOpen:e,setOpenModal:t,showConfirmModal:o,type:r?.type,title:r?.title},children:[n,r&&(0,OQe.jsx)(sWi,{title:r.title,description:r.description,textPositiveButton:r.textPositiveButton,textNegativeButton:r.textNegativeButton,onClickPositiveButton:r.onClickPositiveButton,onClickNegativeButton:r.onClickNegativeButton,onClickNegativeButtonPromise:r.onClickNegativeButtonPromise,isShowPositiveButton:r.isShowPositiveButton,isShowIcon:r.isShowIcon,disabledClickOutside:r.disabledClickOutside,isShowCloseIcon:r.isShowCloseIcon,type:r.type,disabledPositiveButton:r.disabledPositiveButton,disabledNegativeButton:r.disabledNegativeButton,isPopper:r.isPopper,textPopper:r.textPopper,content:r.content,descriptionClassName:r.descriptionClassName,footerClassName:r.footerClassName,negativeButtonClassName:r.negativeButtonClassName,positiveButtonClassName:r.positiveButtonClassName,positiveButtonWrapperClassName:r.positiveButtonWrapperClassName,roundedIcon:r.roundedIcon,baseModalClassName:r.baseModalClassName,customIcon:r.customIcon,titleClassName:r.titleClassName,onCloseModal:r.onCloseModal,popperPosition:r.popperPosition,messageVariant:r.messageVariant,messageClassName:r.messageClassName})]})},lWi=aWi,cWi=class{constructor({similarity:n}){this.getValue=()=>this.similarity,this.similarity=n;}},gq=cWi,jtr=class{constructor({sheetColumn:n,dataModel:e,similarity:t}){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=n,this.dataModel=e,this.similarity=t;}},uWi=class extends jtr{constructor(){super({dataModel:new Qm({description:"null",example:"null",key:"null",label:"null",type:"string",columnSize:1,optionMappingConfiguration:{layers:[],processingMode:"node",threshold:0}}),sheetColumn:new aH({sheet:new aA({data:[[]],name:""}),columnKey:"",rows:[]}),similarity:new gq({similarity:0})}),this.isNull=()=>!0;}},dWi=jtr,hWi=class{constructor({sheetColumnDataModelSimilarities:n}){this.getMostSimilarityBySheetColumn=e=>{let t=[];for(let r=0;r<this.sheetColumnDataModelSimilarities.length;r++)this.sheetColumnDataModelSimilarities[r].getSheetColumn()===e&&t.push(this.sheetColumnDataModelSimilarities[r]);return (0,PQe.maxBy)(t,r=>r.getSimilarity().getValue())},this.getSortedSheetColumnDataModelSimilarity=e=>{let t=this.sheetColumnDataModelSimilarities.filter(r=>r.getSimilarity().getValue()>=e&&!r.getMarkApplied());return (0,PQe.orderBy)(t,r=>r.getSimilarity().getValue(),"desc")},this.markDataModel=e=>{this.sheetColumnDataModelSimilarities.filter(t=>t.getDataModel()===e).forEach(t=>{t.markApplied();});},this.markSheetColumn=e=>{this.sheetColumnDataModelSimilarities.filter(t=>t.getSheetColumn()===e).forEach(t=>{t.markApplied();});},this.clearMark=()=>{this.sheetColumnDataModelSimilarities.forEach(e=>{e.unMarkApplied();});},this.getSimilaritySheetColumn=(e,t)=>this.sheetColumnDataModelSimilarities.find(r=>r.getSheetColumn()===e&&r.getDataModel()===t),this.sheetColumnDataModelSimilarities=n;}},Utr=hWi,$tr=class{constructor({sheetColumnOption:n,dataModelOption:e,similarity:t}){this.getSimilarity=()=>this.similarity,this.getSheetColumnOption=()=>this.sheetColumnOption,this.getDataModelOption=()=>this.dataModelOption,this.isNull=()=>!1,this.hash=()=>{let r=this.getDataModelOption().dataModel.getKey(),i=this.getDataModelOption().option,o=this.getSheetColumnOption().sheetColumn.getColumnKey(),s=this.getSheetColumnOption().option;return `${r}-${i}-${o}-${s}`},this.sheetColumnOption=n,this.dataModelOption=e,this.similarity=t;}},SKn=class extends $tr{constructor(){super({sheetColumnOption:{option:"null",sheetColumn:new aH({columnKey:"",rows:[],sheet:new aA({data:[[]],name:""})})},dataModelOption:{dataModel:new iO({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 gq({similarity:0})}),this.isNull=()=>!0;}},fWi=$tr,pWi=class Gtr{constructor({sheetColumnDataModelOptionSimilarities:e,mapSheetColumnDataModelOptions:t}){this.mapSheetColumnDataModelOptions=[],this.getSheetColumnDataModelOptionSimilarities=r=>{let i=this.sheetColumnDataModelOptionSimilarities.filter(o=>o.getSimilarity().getValue()>=r);return (0,qtr.orderBy)(i,o=>o.getSimilarity().getValue(),"desc")},this.getSimilaritySheetColumnOptions=(r,i)=>this.getSheetColumnDataModelOptionSimilarities(i.getOptionMappingConfiguration().threshold).filter(o=>o.getSheetColumnOption().sheetColumn===r&&o.getDataModelOption().dataModel===i),this.getSimilaritiesDataModelOption=(r,i,o)=>this.sheetColumnDataModelOptionSimilarities.filter(s=>s.getSheetColumnOption().sheetColumn===r&&s.getDataModelOption().dataModel.getKey()===i.getKey()&&s.getDataModelOption().option===o),this.getSimilaritiesDataModelBySheetColumn=(r,i)=>this.sheetColumnDataModelOptionSimilarities.filter(o=>o.getSheetColumnOption().sheetColumn===r&&o.getDataModelOption().dataModel.getKey()===i.getKey()),this.getRawSheetColumnDataModelOptionSimilarities=()=>this.sheetColumnDataModelOptionSimilarities,this.isAlreadyMapping=(r,i)=>!!this.mapSheetColumnDataModelOptions.some(o=>o.sheetColumn.equal(r)&&i===o.dataModel),this.sheetColumnDataModelOptionSimilarities=e,this.mapSheetColumnDataModelOptions=t;}merge(e){let t=e.getRawSheetColumnDataModelOptionSimilarities(),r=e.mapSheetColumnDataModelOptions;for(let i=0;i<this.sheetColumnDataModelOptionSimilarities.length;++i)t.find(o=>{let s=o.getDataModelOption(),a=o.getSheetColumnOption(),l=this.sheetColumnDataModelOptionSimilarities[i].getSheetColumnOption(),c=this.sheetColumnDataModelOptionSimilarities[i].getDataModelOption();return a.option===l.option&&a.sheetColumn.getColumnKey()===l.sheetColumn.getColumnKey()&&s.option===c.option&&s.dataModel.getKey()===c.dataModel.getKey()})||t.push(this.sheetColumnDataModelOptionSimilarities[i]);for(let i=0;i<this.mapSheetColumnDataModelOptions.length;++i)r.push(this.mapSheetColumnDataModelOptions[i]);return new Gtr({sheetColumnDataModelOptionSimilarities:t,mapSheetColumnDataModelOptions:r})}},u8t=pWi,REe,mWi=(REe=class{constructor({calculateSimilarityResult:e,sheets:t,dataModels:r,options:i={}}){this.parseSheetOption=o=>["true","false"].includes(o)?JSON.parse(o):o,this.getSheetColumnDataModelSimilarityList=()=>{let o=this.calculateSimilarityResult.result.map(a=>a.suggestions.map(l=>{let c=this.dataModels.find(d=>{let h=d.getKey(),f=l.key;return this.options?.isAutoMapping===!0&&(h=jp(d.getKey()),f=jp(l.key)),!!(h===f||d.getAlternativeMatches().includes(l.key))}),u=[];for(let d=0;d<this.sheets.length;d++)this.sheets[d].getColumnsByKey(a.label,this.options?.isAutoMapping).forEach(h=>{u.push(h);});return u.map(d=>c&&d?new dWi({dataModel:c,sheetColumn:d,similarity:new gq({similarity:l.value})}):new uWi)})),s=[];return (0,gZe.flatten)((0,gZe.flatten)((0,gZe.flatten)(o))).forEach(a=>{let l=!1;s.forEach((c,u)=>{!c.isNull()&&c.getDataModel()===a.getDataModel()&&c.getSheetColumn()===a.getSheetColumn()&&(l=!0,a.getSimilarity()>c.getSimilarity()&&(s[u]=a));}),l||s.push(a);}),new Utr({sheetColumnDataModelSimilarities:s})},this.generateSheetColumnDataModelOptionSimilarity=({sheetOption:o,dataModel:s,similarities:a,sheetColumn:l,sheetColumnDataModelOptionSimilaritiesHashMap:c})=>{let u={option:this.parseSheetOption(o),sheetColumn:l},d=Object.keys(a);for(let h=0;h<d.length;++h){let f=d[h],p=a[f],m=[];if(s&&u.sheetColumn&&s.isDropdown()){let g=[];if(s.getType()==="boolean")g=[f];else {let b=s.getOptions();f===""&&p>0&&g.push("");for(let v=0;v<b.length;++v){let w=b[v];w.label===f&&g.push(w.value);}}for(let b=0;b<g.length;++b){let v=g[b];v?.length>0||v.length===0&&p>0?m.push(new fWi({dataModelOption:{dataModel:s,option:v},similarity:new gq({similarity:p}),sheetColumnOption:u})):m.push(new SKn);}}else m.push(new SKn);for(let g=0;g<m.length;++g){let b=!1,v=m[g];if(!v.isNull()){let w=c[v.hash()];w&&(b=!0,v.getSimilarity().getValue()>w.getSimilarity().getValue()&&(c[v.hash()]=v));}b||(c[v.hash()]=v);}}},this.getSheetColumnDataModelOptionSimilarityList=o=>{let s={},a=this.calculateSimilarityResult,l=[];for(let d=0;d<a.result.length;++d){let h=a.result[d],f=h.optionMappings,p;if(o)p=o;else for(let g=0;g<this.sheets.length;g++){let b=this.sheets[g].getColumn(h.label,this.options?.isAutoMapping);if(b){p=b;break}}let m=Object.keys(f);for(let g=0;g<m.length;++g){let b=m[g],v=f[b],w=this.dataModels.find(C=>{let _=C.getKey(),x=b;return this.options?.isAutoMapping===!0&&(_=jp(_),x=jp(x)),_===x});w&&p&&l.push({sheetColumn:p,dataModel:w});let y=Object.keys(v);for(let C=0;C<y.length;++C){let _=y[C],x=v[_];this.generateSheetColumnDataModelOptionSimilarity({sheetOption:_,similarities:x,dataModel:w,sheetColumnDataModelOptionSimilaritiesHashMap:s,sheetColumn:p});}}}let c=[],u=Object.keys(s);for(let d=0;d<u.length;++d){let h=u[d];s[h].isNull()||c.push(s[h]);}return new u8t({sheetColumnDataModelOptionSimilarities:c,mapSheetColumnDataModelOptions:l})},this.calculateSimilarityResult=e,this.sheets=t,this.dataModels=r,this.options=i;}},REe.mergeCalculateSimilarityResultOptions=(e,t)=>{let r={result:[...e.result]};for(let i=0;i<t.result.length;++i){let o=t.result[i],s;for(let a=0;a<r.result.length;++a)if(o.label===r.result[a].label){s=r.result[a];break}if(s){let a=Object.keys(s.optionMappings);for(let c=0;c<a.length;++c){let u=a[c];s.optionMappings[u]={...s.optionMappings[u],...o.optionMappings[u]??{}};}let l=Object.keys(o.optionMappings);for(let c=0;c<l.length;++c){let u=l[c];s.optionMappings[u]={...s.optionMappings[u]??{},...o.optionMappings[u]};}}}return r},REe),bq=mWi,gWi=class{constructor(n,e){this.isUploadSheetData=t=>t.some(r=>r.getOptionMappingConfiguration().processingMode==="node"),this.matchColumns=async(t,r,i)=>{let{processingMode:o,layers:s,threshold:a}=r;return o==="node"?this.backendMatchingRepository.matchColumns(t,{layers:s,threshold:a},i):this.browserMatchingRepository.matchColumns(t,{layers:s,threshold:a},i)},this.matchInitialOptions=async(t,r,i,o,s)=>{let a=t.getAllSheets(),l=t.getAllDataModels(),c=r.filter(f=>{let p=f.matchedDataModel?.dataModel;return !!p&&p.isDropdown()}),u=await Promise.all(c.map(async f=>{let p=f.matchedDataModel.dataModel,m={dataModel:p,sheetColumn:f.sheetColumn,sheets:a,dataModels:l,licenseKey:o,sessionId:s},g;return p.getOptionMappingConfiguration().processingMode==="node"?g=this.backendMatchingRepository:g=this.browserMatchingRepository,(await g.matchOption({...m,sheetColumn:m.sheetColumn})).calculateSimilarityResult})),d={result:[...[...i.result].map(f=>({...f,optionMappings:{}}))]};for(let f=0;f<u.length;++f)d=bq.mergeCalculateSimilarityResultOptions(d,u[f]);let h=new bq({calculateSimilarityResult:d,sheets:a,dataModels:l}).getSheetColumnDataModelOptionSimilarityList();return {calculateSimilarityResult:d,sheetColumnDataModelOptionSimilarityList:h}},this.matchOption=async({dataModel:t,sheetColumn:r,sheets:i,dataModels:o,licenseKey:s,processMode:a,sessionId:l})=>{let c={dataModel:t,sheetColumn:r,sheets:i,dataModels:o,licenseKey:s,sessionId:l};return a==="node"?this.backendMatchingRepository.matchOption(c):this.browserMatchingRepository.matchOption(c)},this.uploadData=async(t,r,i,o)=>i.some(s=>s.getOptionMappingConfiguration().processingMode==="node")?this.backendMatchingRepository.prepareData(t,r,o):Promise.resolve(),this.clearData=(t,r)=>{this.isUploadSheetData(r)&&this.backendMatchingRepository.clearData(t);},this.complete=(t,r)=>{this.isUploadSheetData(r)&&this.backendMatchingRepository.complete(t);},this.browserMatchingRepository=n,this.backendMatchingRepository=e;}},Ytr=/[,;|](?=['"`])/g,bWi=/[;]|[|]|,[ a-zA-Z]/g,Vse=n=>(0,I9t.isNil)(n)?!1:`${n}`.match(Ytr)?!0:!!`${n}`.match(bWi),zse=n=>{if((0,I9t.isNil)(n))return [];let e=`${n}`.split(Ytr);if(e.length===1){e=[];let t=`${n}`.split(/[;]|[|]|, /g);for(let r=0;r<t.length;r++){let i=t[r];/,[a-zA-Z]/.test(i)?e=e.concat(i.split(",")):e.push(i);}}return e.map(t=>t.replace(/[\s\-_&+'"`]/g," ").trim())},Xw,Xtr=(Xw=class{constructor({spreadSheetList:e,dataModels:t,licenseKey:r}){this.getColumns=()=>{let i=this.dataModels,o=[];for(let s=0;s<i.length;s++){let a=Xw.mapDataModelToColumn(i[s]);a&&o.push(a);}return o},this.getInputHeaderRow=()=>{let i=[];return this.allSheets.forEach(o=>{o.getColumns().forEach(s=>{i.push(s.getColumnKey());});}),i},this.getAllSheets=()=>this.allSheets,this.getAllDataModels=()=>this.dataModels,this.getLicenseKey=()=>this.licenseKey,this.spreadSheetList=e,this.dataModels=t,this.allSheets=this.spreadSheetList.getSelectedSheets(),this.licenseKey=r;}},Xw.getDropdownOptions=e=>e.isCategoryType()?e.getOptions().map(t=>({label:t.label,value:t.value,alternativeMatches:t.alternativeMatches})):null,Xw.getOptionMappingConfiguration=e=>{if(e.isDropdown())return e.getOptionMappingConfiguration()},Xw.getType=e=>{switch(e.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"}},Xw.mapDataModelToColumn=e=>({key:e.getKey(),label:e.getLabel(),description:e.getDescription(),isMultiple:e.getIsMultiSelection(),dropdownOptions:Xw.getDropdownOptions(e),columnType:Xw.getType(e).toUpperCase(),alternativeMatches:e.getAlternativeMatches(),optionMappingConfiguration:Xw.getOptionMappingConfiguration(e)}),Xw.parseValue=e=>(0,Ktr.isNil)(e)?"":`${e}`,Xw.getInputJsonBySheetColumn=(e,t)=>{let r=[],i=e.getUniqueRows(),o=i.length,s={},a=e.getColumnKey(),l=0;for(let d=0;d<o;d++){let h=Xw.parseValue(i[d]);Vse(h)&&t.getIsMultiSelection()?zse(h).forEach(f=>{s[a]?s[a].push(f):s[a]=[f];}):(r[l]?r[l][a]=h:r[l]={[a]:h},l++);}let c=Object.keys(s),u=r.length;for(let d=0;d<c.length;d++){let h=c[d];s[h].forEach((f,p)=>{let m=u+p;r[m]?r[m][h]=f:r[m]={[h]:f};});}return [r]},Xw),d8t=Xtr,vWi=class{constructor(){this.matchColumns=async(n,e,t)=>{let r=n.getAllSheets(),i=n.getAllDataModels(),o=await this.matchColumnsTask(n,e,t),s=new bq({calculateSimilarityResult:o[0],sheets:r,dataModels:i}).getSheetColumnDataModelSimilarityList();return {calculateSimilarityResult:o[0],sheetColumnDataModelSimilarityList:s}},this.matchOption=async({dataModel:n,sheetColumn:e,sheets:t,dataModels:r,licenseKey:i,sessionId:o})=>{let s=(await this.matchOptionTask({dataModel:n,sheetColumn:e,sheets:t,licenseKey:i,sessionId:o}))[0];this.matchBoolean([s],t,r);let a=new bq({calculateSimilarityResult:s,sheets:t,dataModels:r}).getSheetColumnDataModelOptionSimilarityList(e);return {calculateSimilarityResult:s,sheetColumnDataModelOptionSimilarityList:a}},this.matchBoolean=(n,e,t)=>{n.forEach((r,i)=>{r.result.forEach(o=>{let s=e[i].getColumn(o.label);s&&t.filter(a=>a.getType()==="boolean").forEach(a=>{let l=s.getUniqueRows();for(let c=0;c<l.length;c++){let u=l[c],d=null,h=`${u}`.toLowerCase().trim();if(nH().includes(h)?d={true:1}:rH().includes(h)&&(d={false:1}),d){let f=o.optionMappings[a.getKey()]??{};o.optionMappings[a.getKey()]={...f,[`${u}`]:d};}}});});});};}},Ztr=vWi,wWi=class{constructor(n,e){this.fileName="",this.parseData=t=>{let r=[],i=0,o=(0,Qtr.flatten)(t.map(s=>s.getColumns()));r[0]=[],o.forEach((s,a)=>{r[0][a]=s.getColumnKey(),s.getUniqueRows().length>i&&(i=s.getUniqueRows().length);});for(let s=0;s<i;++s){r[s+1]=[];for(let a=0;a<o.length;++a){let l=o[a].getUniqueRows()[s]??"";r[s+1][a]=l;}}return r},this.initialize=()=>{this.fileName="";},this.upload=async(t,r,i)=>{this.initialize();let o=this.parseData(t),s=await this.uploadInputSheetAPI.createFile(r,i);return this.fileName=s.file_name,this.inputSheetClearer.add(this.fileName),this.uploadInputSheetAPI.uploadData(s.signed_url,o,i)},this.getFileName=()=>this.fileName,this.clearData=t=>{this.initialize(),this.inputSheetClearer.clear(t);},this.complete=t=>{let r=this.fileName;r&&(this.initialize(),this.inputSheetClearer.remove(r),this.uploadInputSheetAPI.clearFile(r,t).catch(()=>{}));},this.uploadInputSheetAPI=n,this.inputSheetClearer=e;}},yWi=wWi,CF=class{constructor(n,e={}){this.httpClient=QM.create(e),this.sendApiKey=n.sendApiKey,this.setupInterceptors();}setupInterceptors(){this.httpClient.interceptors.request.use(n=>n,n=>Promise.reject(n)),this.httpClient.interceptors.response.use(n=>n,n=>Promise.reject(n));}getHttpClient(){return this.httpClient}async get(n,e,t){return (await this.httpClient.request({method:"GET",url:n,params:e,...t})).data}async post(n,e,t={}){return (await this.httpClient.request({method:"POST",url:n,data:e,...t})).data}async put(n,e,t={}){return (await this.httpClient.request({method:"PUT",url:n,data:e,...t})).data}async patch(n,e,t={}){return (await this.httpClient.request({method:"PATCH",url:n,data:e,...t})).data}async delete(n,e={}){return (await this.httpClient.request({method:"DELETE",url:n,...e})).data}},FQe=CF,Bc={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"},_Wi=[Bc.csv,Bc.tsv,Bc.tsv_text,Bc.json],$C,xWi=($C=class{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=e=>{this.startSession[e]=!0;},this.getStartSession=e=>this.startSession[e],this.clearStartSession=e=>{this.startSession[e]=void 0;},this.setReloadSession=e=>{this.reloadSession[e]=!0;},this.getReloadSession=e=>this.reloadSession[e],this.clearReloadSession=e=>{this.reloadSession[e]=void 0;},this.setVerifySession=e=>{this.verifySession[e]=!0;},this.getVerifySession=e=>this.verifySession[e],this.clearVerifySession=e=>{this.verifySession[e]=void 0;};}static getInstance(){return $C.instance||($C.instance=new $C),$C.instance}setFrameWork(e){this.framework=e;}getFrameWork(){return this.framework}setOrigin(e){this.origin=e;}getOrigin(){return this.origin??""}setVersionNumber(e){this.versionNumber=e;}getVersionNumber(){return this.versionNumber}setFrameworkVersion(e){this.frameworkVersion=e;}getFrameworkVersion(){return this.frameworkVersion}pushEventStack(e,t){this.eventStack[e]||(this.eventStack[e]=[]);let r=this.eventStack[e][this.eventStack[e].length-1];t.action==="end"&&(r?.eventType===`${$C.eventMapping[t.step]||t.step}_end`||r?.eventType!==`${$C.eventMapping[t.step]||t.step}_start`)||this.eventStack[e].length>0&&t.action==="start"&&r?.eventType.includes("_start")&&r?.eventType!==`${$C.eventMapping[t.step]||t.step}_start`||(this.eventStack[e].push({eventType:`${$C.eventMapping[t.step]||t.step}_${t.action}`,timestamp:new Date().toISOString()}),this.eventStack[e].length>1&&this.eventStack[e][this.eventStack[e].length-1].eventType===this.eventStack[e][this.eventStack[e].length-2].eventType&&this.eventStack[e].splice(this.eventStack[e].length-2,1));}removeEventStack(e,t){this.eventStack[e]=this.eventStack[e].filter(r=>r.eventType!==t);}getEventStack(e){return this.eventStack[e]}clearEventStack(e){this.eventStack[e]=[];}setUploadedFiles(e,t){this.uploadedFiles[e]||this.clearUploadedFilesStack(e),t.forEach(r=>this.uploadedFiles[e].push({fileSize:r.fileSize,fileType:this.mapSupportedType(r.type)}));}getUploadFiles(e){return this.uploadedFiles?.[e]||[]}clearUploadedFilesStack(e){this.uploadedFiles[e]=[];}setReviewEntriesLog(e,t){this.reviewEntriesLog[e]=t;}getReviewEntriesLog(e){return this.reviewEntriesLog?.[e]||{}}setTotalCleanings(e,t){this.reviewEntriesLog[e].total_cleanings=t;}clearReviewEntriesLog(e){this.reviewEntriesLog[e]={total_rows:0,total_error_rows:0,total_error_cells:0,total_columns:0,total_cleanings:0};}mapSupportedType(e){for(let[t,r]of Object.entries(Bc))if(e===r)return t;return e}},$C.eventMapping={"/":"upload","/select-sheet":"sheet_selection","/select-header":"header_selection","/match-column":"match_columns","/review-entries":"review_entries","/join-column":"join_sheets"},$C),Zi=xWi,CWi=class extends CF{constructor(){super(...arguments),this.createFile=async(n,e)=>this.post("/file/directory",{},{headers:{apikey:this.sendApiKey?iy:void 0,Authorization:n,originRequest:Zi.getInstance().getOrigin()},signal:e.signal}),this.uploadData=async(n,e,t)=>this.put(n,e,{baseURL:"",signal:t.signal}),this.clearFile=async(n,e)=>this.delete(`/file?file_name=${n}`,{headers:{apikey:this.sendApiKey?iy:void 0,Authorization:e,originRequest:Zi.getInstance().getOrigin()}});}},Jtr=CWi,SWi=class{constructor(n){this.fileNames=[],this.remove=e=>{this.fileNames=this.fileNames.filter(t=>t!==e);},this.add=e=>{this.fileNames.push(e);},this.clear=async e=>{let t=[...this.fileNames];for(let r=0;r<t.length;++r){let i=t[r];this.remove(i),await this.uploadInputSheetAPI.clearFile(i,e).catch(()=>{});}},this.uploadInputSheetAPI=n;}},EWi=SWi,kWi=class extends Ztr{constructor(n,e,t={}){super(),this.prepareData=async(o,s,a)=>{await this.uploadInputSheetRepository.upload(o,s,a);},this.clearData=o=>{this.uploadInputSheetRepository.clearData(o);},this.complete=o=>{this.uploadInputSheetRepository.complete(o);},this.matchColumnsTask=(o,s,a)=>{let l=o.getColumns().map(d=>({key:d.key,label:d.label,alternativeMatches:d.alternativeMatches})),c=o.getLicenseKey(),u=o.getInputHeaderRow();return this.nodeEngine.matchColumns(u,l,c,s,a)},this.matchOptionTask=({dataModel:o,sheets:s,sheetColumn:a,licenseKey:l,sessionId:c})=>{let u=d8t.mapDataModelToColumn(o),d=[];for(let f=0;f<s.length;f++){let p=s[f];for(let m=0;m<p.getColumns().length;m++){let g=p.getColumns()[m];d.push(g);}}let h=d.findIndex(f=>f===a);return this.nodeEngine.matchOption(this.uploadInputSheetRepository.getFileName(),[{column:{dropdownOptions:u.dropdownOptions,isMultiSelect:u.isMultiple,key:u.key,label:u.label,optionMappingConfiguration:u.optionMappingConfiguration},column_index:h}],l,c)},this.nodeEngine=n;let r=new Jtr(e,t),i=new EWi(r);this.uploadInputSheetRepository=new yWi(r,i);}},TWi=kWi,ele=({workerFile:n,hostWorkerUrl:e})=>{let t=null,r=null;return {init:async()=>{if(!t||!r)try{e?t=t=new Worker(e):t=n(),t&&await new Promise((i,o)=>{if(!t)return o();t.addEventListener("error",s=>{s.preventDefault(),t?.terminate(),r?.[dat](),r=null,o(new Error("has something wrong with worker"));}),r=fat(t),r.check().then(i).catch(o);});}catch{}},clear:()=>{r&&(r?.[hat](),t?.terminate(),r=null);},getRemote:()=>r}},tle={IMPORT:"importWorkerBundle.js",HOOKS:"hooks.js",MATCHING:"matchingValues.js",ML:"ml.js",SEARCH_AND_REPLACE:"searchAndReplace.js",JAVASCRIPT:"javascript.js"},nle=(...n)=>n.map((e,t)=>t===0?e.replace(/\/+$/,""):e.replace(/^\/+|\/+$/g,"")).join("/"),EKn=({workersBaseUrl:n})=>{let e=n?nle(n,tle.ML):"",{init:t,getRemote:r,clear:i}=ele({hostWorkerUrl:e,workerFile:()=>new Worker(new URL("workers/mapping/index.js",import.meta.url),{type:"module"})});return {init:t,clear:i,getOptionMappings:(...o)=>{let s=r();return s?s.getOptionMappings(...o):WXt(...o)},getColumnMappings:(...o)=>{let s=r();return s?s.getColumnMappings(...o):VXt(...o)}}},IWi=class{constructor({workersBaseUrl:n}){this.getColumnMappings=async(e,t,r)=>{let i=EKn({workersBaseUrl:this.workersBaseUrl});return await i.init(),i.getColumnMappings(e,t,r).then(o=>(i.clear(),o)).catch(o=>(i.clear(),Promise.reject(o)))},this.getOptionMappings=async(e,t)=>{let r=EKn({workersBaseUrl:this.workersBaseUrl});return await r.init(),r.getOptionMappings(e,t).then(i=>(r.clear(),i)).catch(i=>(r.clear(),Promise.reject(i)))},this.workersBaseUrl=n;}},LWi=class{constructor({workersBaseUrl:n}){this.matchColumns=async(e,t,r)=>{let i=await this.mappingEngine.getColumnMappings(e,t.map(o=>`${o}`),r);return this.parseColumnMappingResult((0,enr.flatten)(i))},this.matchOption=async(e,t)=>Promise.all(t.map(r=>this.matchOptionItem(e,r))),this.matchOptionItem=async(e,t)=>new Promise((r,i)=>{setTimeout(()=>{this.mappingEngine.getOptionMappings(e,t).then(o=>{let s={result:[{optionMappings:{[o.tdmColumnKey]:o.suggestions},label:o.inputColumn,suggestions:[{key:o.tdmColumnKey,value:1,isSameWord:!0}]}]};r(s);}).catch(o=>{i(o);});},100);}),this.parseColumnMappingResult=e=>{let t=[];for(let r=0;r<e.length;r++){let i=e[r],o=[];for(let s=0;s<i.columnSuggestions.length;s++){let a=i.columnSuggestions[s];o.push({key:a.key,value:a.percentage});}t.push({label:i.inputColumnKey,suggestions:o,optionMappings:{}});}return [{result:t}]},this.mappingEngine=new IWi({workersBaseUrl:n});}},RWi=class extends CF{constructor(){super(...arguments),this.matchColumns=async(n,e,t,r,i)=>{let o={apikey:this.sendApiKey?iy:void 0,authorization:t},s=await this.post("/execute/column",{tdmColumns:e,inputColumns:n,options:{columnMappingConfiguration:{layers:r.layers,threshold:r.threshold},product:"importer"},sessionId:i},{headers:o});return this.parseColumnMappingResult(s)},this.matchOption=async(n,e,t,r)=>{let i={apikey:this.sendApiKey?iy:void 0,authorization:t},o=await Promise.all(e.map(s=>this.post("/execute/option",{tdmColumn:{key:s.column.key,label:s.column.label,isMultiSelect:s.column.isMultiSelect,dropdownOptions:s.column.dropdownOptions},options:{product:"importer",fileName:n,columnIndex:s.column_index,headerRowIndex:0,optionMappingConfiguration:{layers:s.column.optionMappingConfiguration?.layers,threshold:s.column.optionMappingConfiguration?.threshold}},sessionId:r},{headers:i})));return this.parseOptionMappingResult((0,tnr.flatten)(o))},this.parseColumnMappingResult=n=>{let e=[];for(let t=0;t<n.length;t++){let r=n[t],i=[],o=Object.keys(r.suggestions);for(let s=0;s<o.length;s++){let a=o[s],l=r.suggestions[a];i.push({key:a,value:l});}e.push({label:r.inputColumn,suggestions:i,optionMappings:{}});}return [{result:e}]};}parseOptionMappingResult(n){let e=[];for(let t=0;t<n.length;t++){let r=n[t];e.push({optionMappings:{[r.tdmColumnKey]:r.suggestions},label:r.inputColumn,suggestions:[{key:r.tdmColumnKey,value:1,isSameWord:!0}]});}return [{result:e}]}},MWi=class extends Ztr{constructor(n){super(),this.matchColumnsTask=(e,t)=>{let r=e.getColumns().map(o=>({...o,dropdownOptions:[]})),i=e.getInputHeaderRow();return this.browserEngine.matchColumns(r,i,t)},this.matchOptionTask=({dataModel:e,sheetColumn:t})=>{let r=d8t.mapDataModelToColumn(e),i=d8t.getInputJsonBySheetColumn(t,e);return this.browserEngine.matchOption(r,i)},this.browserEngine=n;}},AWi=MWi,rnr=(0,ztr.createContext)({executing:!0,setExecuting:()=>{},abort:()=>{}}),DWi=({children:n})=>{let[e,t]=(0,jN.useState)(!0),{baseUrl:r,isSelfHosted:i,baseMappingUrl:o,workersBaseUrl:s}=ti(),a=(0,jN.useRef)(new AbortController),l=(0,jN.useMemo)(()=>new LWi({workersBaseUrl:s??""}),[s]),c=(0,jN.useMemo)(()=>{let d=new AWi(l),h=new RWi({sendApiKey:!i},{baseURL:o}),f=new TWi(h,{sendApiKey:!i},{baseURL:r});return new gWi(d,f)},[r,i,l,o]),u=(0,jN.useCallback)(()=>{a.current.abort(),a.current=new AbortController;},[a]);return (0,nnr.jsx)(rnr.Provider,{value:{matchingStrategy:c,executing:e,setExecuting:t,abortController:a,abort:u},children:n})},NWi=DWi,L9t=document.createElement("style");L9t.type="text/css";L9t.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}
|
|
11550
|
+
/*! 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(L9t);var R9t=document.createElement("style");R9t.type="text/css";R9t.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(R9t);var M9t=document.createElement("style");M9t.type="text/css";M9t.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(M9t);var A9t=document.createElement("style");A9t.type="text/css";A9t.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(A9t);var D9t=document.createElement("style");D9t.type="text/css";D9t.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(D9t);var N9t=document.createElement("style");N9t.type="text/css";N9t.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(N9t);var O9t=document.createElement("style");O9t.type="text/css";O9t.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(O9t);var fS=()=>(0,inr.useContext)(Ctr),wOt=()=>{},OWi=class{constructor(n,e){this.onResultCallbackMapping={},this.getGeneralHooks=t=>{let r=this.hooksAPI.onCancel??wOt,i=t?.trim()?.length>0?this.onResultCallbackMapping[t]:this.hooksAPI.onResults,o=this.hooksAPI.onEntryChange??wOt,s=this.hooksAPI.onEntryInit??wOt;return {onResults:i,onCancel:r,onEntryChange:o,onEntryInit:s}},this.hooksAPI=n,this.onResultCallbackMapping={[e]:n.onResults};}},PWi=OWi,FWi=()=>{let{onResults:n,onCancel:e,onEntryChange:t,onEntryInit:r,columnHooks:i}=Og(),o=(0,BQe.useContext)(onr),s=ti(),a=(0,BQe.useMemo)(()=>new PWi({onResults:n,onCancel:e,onEntryChange:t,onEntryInit:r,columnHooks:i},s.identifier),[n,e,t,r,i,s.identifier]);return {...o,hooksAPIMapper:a,getIdentifier:()=>s.identifier}},Yq=FWi,onr=(0,SF.createContext)({setLoadingInitialValues:()=>{},loadingInitialValues:!0}),BWi=({children:n})=>{let[e,t]=(0,SF.useState)(!0),r=(0,SF.useMemo)(()=>new Kg,[]);return (0,HQe.jsxs)(onr.Provider,{value:{cancelHookObservable:r,loadingInitialValues:e,setLoadingInitialValues:t},children:[(0,HQe.jsx)(HWi,{}),n]})},HWi=()=>{let{cancelHookObservable:n,hooksAPIMapper:e,getIdentifier:t}=Yq(),r=fS(),{featureWhiteList:i}=oy();return (0,SF.useEffect)(()=>{let o=n?.subscribe(()=>{e.getGeneralHooks(t()).onCancel();});return ()=>{o?.unsubscribe();}},[n,e,t,r,i]),null},cS="/upload-file",Z_="/review-entries",F0="/select-header",zm="/match-column",tS="/select-sheet",nF="/join-column",HXe,WWi=new Uint8Array(16);function VWi(){if(!HXe&&(HXe=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||typeof msCrypto<"u"&&typeof msCrypto.getRandomValues=="function"&&msCrypto.getRandomValues.bind(msCrypto),!HXe))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return HXe(WWi)}var zWi=/^(?:[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 jWi(n){return typeof n=="string"&&zWi.test(n)}var UWi=jWi,Ab=[];for(WXe=0;WXe<256;++WXe)Ab.push((WXe+256).toString(16).substr(1));var WXe;function $Wi(n){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,t=(Ab[n[e+0]]+Ab[n[e+1]]+Ab[n[e+2]]+Ab[n[e+3]]+"-"+Ab[n[e+4]]+Ab[n[e+5]]+"-"+Ab[n[e+6]]+Ab[n[e+7]]+"-"+Ab[n[e+8]]+Ab[n[e+9]]+"-"+Ab[n[e+10]]+Ab[n[e+11]]+Ab[n[e+12]]+Ab[n[e+13]]+Ab[n[e+14]]+Ab[n[e+15]]).toLowerCase();if(!UWi(t))throw TypeError("Stringified UUID is invalid");return t}var qWi=$Wi;function GWi(n,e,t){n=n||{};var r=n.random||(n.rng||VWi)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,e){t=t||0;for(var i=0;i<16;++i)e[t+i]=r[i];return e}return qWi(r)}var KWi=GWi,anr=(0,pM.createContext)({sessionId:"",generateNewSessionId:()=>{},setHasUploadedData:()=>{}}),YWi=n=>{let e=(0,pM.useCallback)(()=>KWi().replace(/-/g,""),[]),[t,r]=(0,pM.useState)(e()),[i,o]=(0,pM.useState)(!1),s=(0,pM.useCallback)(()=>{i&&r(e());},[e,i]),a=(0,pM.useMemo)(()=>({sessionId:t,generateNewSessionId:s,setHasUploadedData:o}),[t,s]);return (0,snr.jsx)(anr.Provider,{value:a,children:n.children})},XWi=()=>(0,lnr.useContext)(anr),XI=XWi,dnr=(0,cnr.createContext)({isUseInRouter:!1}),ZWi=({isUseInRouter:n,children:e})=>(0,unr.jsx)(dnr.Provider,{value:{isUseInRouter:n},children:e}),QWi=()=>(0,hnr.useContext)(dnr),JWi=QWi,fnr=()=>{let n=Ult(),{isUseInRouter:e}=JWi();return (0,P9t.useCallback)((t,r)=>{if(e){let i=window.location.pathname,o=`${window.location.hash}`.replace("#",""),s=window.location.hash,a=typeof t=="string"?t:t.pathname,l=s?x3e(o,a):x3e(i,a);return n({pathname:l},{...r,replace:!0})}else {let i=typeof t=="string"?t:t.pathname;return n({pathname:i},{...r,replace:!0})}},[n,e])},F9t=()=>{let n=fnr(),{columns:e}=ti(),t=fS(),{setHasUploadedData:r}=XI();return {navigateToReviewEntries:(0,P9t.useCallback)(()=>{n({pathname:Z_},{state:{hideStepper:!0,columns:e,dataModels:t.getDataModels()}}),r(!0);},[e,t,n,r])}},pS=fnr,eVi=n=>{let e;return {promise:new Promise((t,r)=>{e=()=>{r({isCancelled:!0});},n.then(i=>t(i)).catch(i=>r(i));}),cancel(){e();}}},vq=({workersBaseUrl:n})=>{let e=n?nle(n,tle.IMPORT):"",{init:t,getRemote:r,clear:i}=ele({hostWorkerUrl:e,workerFile:()=>new Worker(new URL("workers/parseData/index.js",import.meta.url),{type:"module"})});return {init:t,clear:i,convertCsv2Sheet:(...o)=>{let s=r();return s?s.convertCsv2Sheet(...o):IXt(...o)},convertExcel2Sheet:(...o)=>{let s=r();return s?s.convertExcel2Sheet(...o):AXt(...o)},convertJson2Sheet:(...o)=>{let s=r();return s?s.convertJson2Sheet(...o):LXt(...o)},convertXLS2Sheet:(...o)=>{let s=r();return s?s.convertXLS2Sheet(...o):eat(...o)},convertXML2Sheet:(...o)=>{let s=r();return s?s.convertXML2Sheet(...o):RXt(...o)},jsonParser:(...o)=>{let s=r();return s?s.jsonParser(...o):Promise.resolve($Le(...o))},parseDateFormat:(...o)=>{let s=r();if(s)return s.parseDateFormat(...o);let a=NXt(...o);return Promise.resolve(a)},convertPdf2Sheets:(...o)=>{let s=r();return s?s.convertPdf2Sheets(...o):MXt(...o)},parseValue:(...o)=>{let s=r();if(s)return s.parseValue(...o);let a=G6(...o);return Promise.resolve(a)}}},gnr=async(n,e,t)=>{if(n.type===Bc.csv||n.type===Bc.tsv_text||n.type===Bc.tsv||["tsv","csv"].includes(TKn(n.name))){let r=await lVi(n);return e.convertCsv2Sheet(r,{...t,metaFile:{name:n.name,type:n.type===Bc.xls?Bc.csv:n.type,size:n.size}})}else return n.type===Bc.xml?e.convertXML2Sheet(n,t):n.type===Bc.json?e.convertJson2Sheet(n,t):n.type===Bc.xls||n.type===Bc.xlsb||TKn(n.name)==="xlsb"?e.convertXLS2Sheet(n,t):n.type===Bc.pdf?e.convertPdf2Sheets(n,{...t,stage:DXt}):e.convertExcel2Sheet(n,t)},bnr=(n,e,t,r)=>{let i=vq({workersBaseUrl:t});return r&&r(i),eVi(i.init().then(()=>Promise.all(n.map(o=>gnr(o,i,e).then(s=>({...s,rawFile:o})))).finally(()=>{i.clear();})))},tVi=n=>n[0]?.errors[1]?.message?n[0]?.errors[1]?.message:n[0]?.errors[0]?.message,kKn={"Too many files":"txt_too_many_files_error"},nVi=n=>kKn[n]?kKn[n]:n,vnr=n=>{let e={};return n.forEach(t=>{t==="tsv"?(e[Bc.tsv]=[],e[Bc.tsv_text]=[]):t==="xls"?(e[Bc.xls]=[],e[Bc.xlsb]=[".xlsb"]):e[Bc[t]]=[];}),e},rVi=n=>{let e=0;return n.forEach(t=>{e=e+Math.round(t.type===Bc.pdf?6:t.type===Bc.csv||t.type===Bc.json?1:Math.max(t.size)/1e6);}),e*2.5/2*10},wnr=(n,e,t,r,i)=>{if(e[0].errors.find(s=>s.code===R3e.FileInvalidType)){n(r("txt_file_format_error",{fileTypes:i.join(", ")}),r("txt_title_upload_valid_file_error"));return}if(e[0].errors.find(s=>s.code===R3e.FileTooLarge)){n(r("txt_upload_exceed_max_size_error",{sizeInMb:t}),r("txt_title_upload_exceed_max_size_error"));return}let o=tVi(e);n(r(nVi(o)),r("txt_title_too_many_files_error"));},iVi=(n,e,t,r)=>{e===9003?n(t("txt_nested_file_error"),t("txt_import_error")):e===9001?n(t("txt_file_format_error",{fileTypes:r.join(", ")}),t("txt_title_error_invalid_format")):n(t("txt_file_error"),t("txt_import_error"));},ynr=(n,e)=>({...oVi,...n?sVi:{},...e?aVi:{}}),oVi={transition:"border .24s ease-in-out"},sVi={borderColor:"#4B5563"},aVi={borderColor:"#D0021B"},lVi=n=>new Promise(async e=>{let t=await n.text();try{let r=((await(0,mnr.default)(n)).encoding||"ascii").toLowerCase();if(r!=="utf-8"&&!(0,pnr.isNil)(r)){let i=await cVi(n),o=new TextDecoder(r).decode(i);e(o);}else e(t);}catch{e(t);}}),cVi=n=>new Promise((e,t)=>{let r=new FileReader;r.onload=i=>{let o=i?.target?.result;e(o);},r.onerror=()=>t({code:-1}),r.readAsArrayBuffer(n);}),TKn=n=>n?.split(".")?.pop()?.toLowerCase()||"",bZe=n=>n?.replace(/\.[^/.]+$/,""),IKn=[[]],LKn="",uVi=class{constructor(n){this.dataStack={},this.parseRejectedData=e=>{let t=[];for(let r=0;r<e.length;++r){let i=e[r];t.push({fileName:i.filename,sheets:[]});}return t},this.parseData=e=>{let t=[];for(let r=0;r<e.length;++r){let i=e[r],o=[];if(_Wi.includes(i.type))o.push({sheetName:bZe(i.filename),data:i.data});else {let s=i.data;for(let a=0;a<s.length;++a){let l=s[a];o.push({sheetName:l?.sheetName??"",data:l?.data??[]});}}t.push({fileName:i.filename,sheets:o});}return t},this.throwError=(e,t)=>{let r={1101:"The component is not verified.",1100:"No component found.",1002:"This feature or this file type are not included in your subscription."};return t&&Zi.getInstance().setParseSession(),Promise.reject(new Error(`code: ${r[e]?e:-1}, message: ${r[e]??"Unexpected error"}`))},this.parseFiles=async(e,t,r)=>{let i=vq({workersBaseUrl:r});await i.init();let o=[],s=[];return await Promise.all(e.map(async a=>gnr(a,i,t).then(l=>{o.push(l);}).catch(()=>{s.push({data:[],filename:a.name,fileSize:a.size,type:a.type});}))).finally(()=>{i.clear();}),{acceptedFiles:o,rejectedFiles:s}},this.getSessionKey=e=>{if(e&&this.importerSessionListener.listenStartCallbackStack[e])return e;{let t=Object.keys(this.importerSessionListener.listenStartCallbackStack);return t[t.length-1]}},this.getComponentData=e=>{let t=this.getSessionKey(e);return this.importerSessionListener.getConfigCallbackStack[t]?.()},this.onRetry=async e=>{let t;for(let r=1;r<=3;r++)try{return await e()}catch(i){if(t=i,r===3)throw t;await new Promise(o=>setTimeout(o,500*r));}throw t},this.uploadMethod=async({step:e,data:t,headerIndex:r,identifier:i})=>{let o=this.getSessionKey(i),s=this.getComponentData(o),a=s?.featureWhiteList.isDynamicImport();if(!s)return this.throwError(1100,o);if(!s?.isAuth)return this.throwError(1101,o);if(!a)return this.throwError(1002,o);this.dataStack[i??LKn]={step:e,data:t,headerIndex:r};},this.startMethod=e=>{let t=e?.identifier,r=this.getSessionKey(t),i=this.getComponentData(r),o=0,s=5,a=500,l=()=>new Promise((u,d)=>{let h=()=>{o++,i=this.getComponentData(r),i?.isAuth===!0&&i.featureWhiteList.isDynamicImport()===!0?u():o>=s?d():setTimeout(h,a);};h();}),c=()=>{let u=this.dataStack?.[r];((0,WQe.isNil)(t)||(0,WQe.isEmpty)(t))&&(u=this.dataStack?.[LKn]),this.importerSessionListener.listenStartCallbackStack[r]?.({data:u?.data,headerIndex:u?.headerIndex,step:u?.step});};l().catch(()=>{}).finally(()=>c());},this.parseMethod=async({data:e,identifier:t})=>{let r=this.getSessionKey(t),i=this.getComponentData(r),o=i?.featureWhiteList.isDynamicImport(),s=i?.featureWhiteList.getInputTypes()??[];if(!i)return this.throwError(1100,r);if(!i?.isAuth)return this.throwError(1101,r);if(!o)return this.throwError(1002,r);let a=[],l=[],c=Array.from(e);for(let u=0;u<c.length;++u){let d=c[u],h=(Object.keys(Bc).find(f=>Bc[f]===d.type)??d.type)?.replace("_text","");s.includes(h)?a.push(d):l.push(d);}try{let u=await this.parseFiles(a,{licenseKey:i.licenseKey,framework:Zi.getInstance().getFrameWork(),sdkVersion:Zi.getInstance().getVersionNumber(),hasDateType:i.columnAPIMapper.hasDateType(),originRequest:Zi.getInstance().getOrigin()},i.workersBaseUrl??"");return Zi.getInstance().setParseSession(),{accepted:this.parseData(u?.acceptedFiles??[]),rejected:this.parseRejectedData([...u?.rejectedFiles??[],...l.map(d=>({filename:d.name,fileSize:d.size,data:[],type:d.type}))])}}catch(u){return this.throwError(u?.code,r)}},this.upload=async({step:e,data:t,headerIndex:r,identifier:i})=>this.onRetry(()=>this.uploadMethod({step:e,data:t,headerIndex:r,identifier:i})),this.start=e=>this.startMethod(e),this.parse=async({data:e,identifier:t})=>this.onRetry(()=>this.parseMethod({data:e,identifier:t})),this.verify=async e=>{let t=this.getSessionKey(e?.identifier),r=this.getComponentData(t);if(r?.isAuth)return r?.verifyTracking(t),Promise.resolve({verified:!0,identifier:t});let i=0,o=10,s=500,a=async()=>{for(;i<o;){if(this.getComponentData(this.getSessionKey(e?.identifier)))return !0;i++,await new Promise(l=>setTimeout(l,s));}return !1};try{if(!await a())return this.throwError(1100,this.getSessionKey(e?.identifier));let l=this.getSessionKey(e?.identifier),c=this.getComponentData(l);if(!c)return this.throwError(1100,this.getSessionKey(e?.identifier));c.verifyTracking(l);let{verifyLicenseKeyListener:u,verifyLicenseKey:d,isVerifyingLicenseKey:h,isAuth:f}=c;if(f)return Promise.resolve({verified:!0,identifier:l});if(h&&u)try{return new Promise((p,m)=>{u?.subscribe({next:g=>{p({verified:g,identifier:l});},error:g=>{m(new Error(`Failed to verify license key: ${g instanceof Error?g.message:String(g)}`));}});})}catch{return c?.verifyTracking(l),Promise.resolve({verified:!1,identifier:l})}if(!h&&!f&&d)try{let p=await d();return Promise.resolve({verified:!!p,identifier:l})}catch(p){throw new Error(`Failed to verify license key: ${p instanceof Error?p.message:String(p)}`)}return Promise.resolve({verified:!!f,identifier:l})}catch{let l=this.getSessionKey(e?.identifier);return this.getComponentData(l)?.verifyTracking(l),this.throwError(1100,this.getSessionKey(e?.identifier))}},this.reload=async e=>{let t=this.getSessionKey(e?.identifier),r=this.getComponentData(t);if(!r)return this.throwError(1100,t);let{reload:i}=r;i&&typeof i=="function"&&(await new Promise(o=>setTimeout(o,100)),i(t));},this.importerSessionListener=n;try{module?.hot;}catch{}}},dVi=uVi,hVi=class{constructor(){this.listenStartCallbackStack={},this.getConfigCallbackStack={},this.listener=(n,e)=>{this.listenStartCallbackStack[n]=e;},this.getCompDataCallbackListener=(n,e)=>{this.getConfigCallbackStack[n]=e;};}},fVi=hVi,h8t=new fVi,pVi=new dVi(h8t),vZe=class{constructor({sheetData:n,filename:e,type:t,sheetName:r,fileSize:i}){this.getSpreadSheet=({autoDetectedHeader:o})=>{let s=new aA({name:this.sheetName,data:this.sheetData});o&&s.setHeaderByAutoDetection();let a=[s];return new lH({sheets:a,filename:this.filename,type:this.type,fileSize:this.fileSize})},this.sheetData=n,this.filename=e,this.type=t,this.sheetName=r,this.fileSize=i;}},f8t=class{constructor({multipleSheetData:n,filename:e,type:t,fileSize:r}){this.getSpreadSheet=({autoDetectedHeader:i})=>{let o=this.multipleSheetData.map(s=>{let a=new aA({data:s.data,name:s.sheetName});return i&&a.setHeaderByAutoDetection(),a});return new lH({type:this.type,filename:this.filename,sheets:o,fileSize:this.fileSize})},this.multipleSheetData=n,this.filename=e,this.type=t,this.fileSize=r;}};function mVi(n,e){let t=new Set(n);return e.filter(r=>t.has(r))}var gVi=(n,e,t)=>{let r=(0,wq.flatten)(n.map(i=>i.getColumns())).filter(i=>i.getColumnKey()===e);if(r.length>1){for(let i=0;i<r.length;i++){let o=r[i];if(mVi(o.getUniqueRows(),t).length===t.length)return o}return null}else return r[0]},_nr=(n,e)=>(0,wq.isEqual)(`${n}`,`${e}`),xnr=n=>(0,wq.isArray)(n)&&n.every(e=>(0,wq.isArray)(e)),bVi=class{constructor({spreadSheets:n}){this.setJoinSheet=e=>{this.joinSheet=e;},this.getJoinSheet=()=>this.joinSheet,this.removeJoinSheet=()=>{this.joinSheet=null;},this.getSpreadSheets=()=>this.spreadSheets,this.getSelectedSpreadSheets=()=>this.spreadSheets.filter(e=>e.isSelected()),this.getIsAllSheetsManualSelectHeader=()=>{let e=this.getSelectedSpreadSheets();for(let t=0;t<e.length;t++){let r=e[t].getSelectedSheets();for(let i=0;i<r.length;i++)if(!r[i].getIsManualSelectHeader())return !1}return !0},this.length=()=>this.spreadSheets.length,this.getAllSheets=()=>(0,Cnr.flatten)(this.spreadSheets.map(e=>e.getSheets())),this.setSheet=e=>{for(let t=0;t<this.spreadSheets.length;t++){let r=this.spreadSheets[t];for(let i=0;i<r.getSheets().length;i++)r.getSheets()[i].getId()===e.getId()&&this.spreadSheets?.[t].getSheets()?.[i]?.setData(e.getData());}},this.getSelectedSheets=(e=!1)=>this.joinSheet&&!e?[this.joinSheet]:this.getAllSheets().filter(t=>t.isSelected()),this.selectAllSheets=e=>{this.spreadSheets.forEach(t=>{t.selectAllSheet(e);});},this.addList=e=>{let t=e.getSpreadSheets();for(let r=0;r<t.length;r++)this.spreadSheets.push(t[r]);},this.spreadSheets=n;}},l2e=bVi,vVi=class{constructor({spreadSheetList:n}){this.currentSpreadSheetPosition=0,this.currentSheetPosition=0,this.goToBySheet=e=>{let t=this.originalSpreadSheetList.getSelectedSpreadSheets();for(let r=0;r<t.length;r++){let i=t[r].getSelectedSheets();for(let o=0;o<i.length;o++)if(i[o]===e)return this.currentSpreadSheetPosition=r,this.currentSheetPosition=o,i[o]}},this.getCurrentSpreadSheet=()=>this.originalSpreadSheetList.getSelectedSpreadSheets()[this.currentSpreadSheetPosition],this.getCurrentSheet=()=>this.getCurrentSpreadSheet().getSelectedSheets()[this.currentSheetPosition],this.next=()=>{let e=this.currentSheetPosition+1,t=this.originalSpreadSheetList.getSelectedSpreadSheets()[this.currentSpreadSheetPosition].getSelectedSheets().length;if(e>=t){let r=this.currentSpreadSheetPosition+1,i=this.originalSpreadSheetList.getSelectedSpreadSheets().length;return r>=i?!1:(this.currentSpreadSheetPosition=r,this.currentSheetPosition=0,this.getCurrentSheet().getIsManualSelectHeader()?this.next():!0)}else return this.currentSheetPosition=e,this.getCurrentSheet().getIsManualSelectHeader()?this.next():!0},this.goToLastSpreadSheet=()=>{this.currentSpreadSheetPosition=Math.max(this.originalSpreadSheetList.getSelectedSpreadSheets().length-1,0);},this.goToLastSheet=()=>{let e=this.getCurrentSpreadSheet();this.currentSheetPosition=Math.max(e.getSelectedSheets().length-1,0);},this.getSpreadSheetList=()=>this.updatedSpreadSheetList,this.setUpdatedSpreadSheetList=e=>{this.updatedSpreadSheetList=e;},this.getOriginalSpreadSheetList=()=>this.originalSpreadSheetList,this.originalSpreadSheetList=n,this.updatedSpreadSheetList=n;}},jse=vVi,wVi=class{constructor(){this.handle=async({data:n,headerIndex:e,hasDateType:t,automaticHeaderDetection:r,workersBaseUrl:i})=>{let o,s=vq({workersBaseUrl:i});await s.init();let a=xnr(n);if(a)o=n;else try{o=await s.jsonParser(JSON.stringify(n),{hasDateType:t});}catch{throw s.clear(),new Error("1000")}s.clear();let l=new vZe({sheetData:o,filename:"",type:"dynamic-import",sheetName:"",fileSize:0}),c;if(!a)c=l.getSpreadSheet({autoDetectedHeader:r??!1});else if((0,O0.isNil)(e))c=l.getSpreadSheet({autoDetectedHeader:!0});else {c=l.getSpreadSheet({autoDetectedHeader:!1});let d=c.getSheets()[0].getData();e>=0&&e<d.length?c.getSheets()[0].setHeaderRowIndex(e):c.getSheets()[0].setHeaderByAutoDetection();}let u=new l2e({spreadSheets:[c]});return u.selectAllSheets(!0),new jse({spreadSheetList:u})};}},yVi=class{constructor(n){this.generateMemorizeFindDataModel=()=>{let e={},t={},r=0;for(let i=0;i<this.dataModels.length;i++){let o=this.dataModels[i];e[o.getKey()]=o,o.isHidden()||(t[o.getKey()]=r,r++);}return i=>({dataModel:e[i],colIndex:t[i]??-1})},this.checkInvalidFormat=e=>!(0,O0.isArray)(e)||e.some(t=>!(0,O0.isObject)(t)&&!(0,O0.isNil)(t)),this.handle=({data:e})=>{let t=e;if(this.checkInvalidFormat(e))throw new Error("1000");let r=this.generateMemorizeFindDataModel(),i=[],o={};for(let s=0;s<t.length;++s){if(i[s]={},(0,O0.isNil)(t[s]))continue;let a=Object.keys(t[s]);for(let l=0;l<a.length;++l){let c=a[l],u=r(c);if(!u.dataModel)throw new Error("1001");if((0,O0.isObject)(t[s][c])&&!(0,O0.isArray)(t[s][c])){if((0,O0.isNil)(t[s][c].value)||(i[s][c]=cv.parse(t[s][c].value,{dataModel:u.dataModel})),(0,O0.isNil)(t[s][c].info))continue;u.colIndex>=0&&t[s][c].info?.forEach(d=>{let h={rowIndex:s,colIndex:u.colIndex,popover:{message:d.message,level:d.level||iY}};(o[s]?.length??0)===0?o[s]=[h]:o[s].push(h);});}else (0,O0.isNil)(t[s][c])||(i[s][c]=cv.parse(t[s][c],{dataModel:u.dataModel}));}}return {dataInfos:o,parsedValues:i}},this.dataModels=n;}},_Vi=class{constructor(){this.handle=async({data:n,hasDateType:e,workersBaseUrl:t})=>{if(this.checkInvalidFormat(n))throw new Error("1000");let r=vq({workersBaseUrl:t});await r.init();let i=[];for(let o of n){for(let a of o.sheets)if(!xnr(a.data))try{a.data=await r.jsonParser(JSON.stringify(a.data),{hasDateType:e});}catch{throw r.clear(),new Error("1000")}r.clear();let s=new f8t({multipleSheetData:o.sheets,filename:o.fileName,type:"dynamic-import",fileSize:0});i.push(s.getSpreadSheet({autoDetectedHeader:!1}));}return new l2e({spreadSheets:i})};}checkInvalidFormat(n){if(!Array.isArray(n))return !0;for(let e of n){if(!(0,O0.isString)(e?.fileName)||e.fileName.trim()===""||!Array.isArray(e?.sheets)||e.sheets.length===0)return !0;let t=[];for(let r of e.sheets)if(t.includes(r.sheetName)||(t.push(r.sheetName),!(0,O0.isString)(r?.sheetName)||r?.sheetName.trim()===""||!Array.isArray(r?.data)||r.data.length===0||Array.isArray(r?.data[0])&&r.data[0].length===0||!Array.isArray(r?.data[0])&&(0,O0.isEmpty)(r.data[0])))return !0}return !1}},Qae,xVi=(Qae=class{},Qae.checkIsEmpty=e=>(0,EF.isNil)(e)||(0,EF.isEmpty)(e),Qae.isInValidObjectArray=e=>!(0,EF.isObject)(e)&&!(0,EF.isArray)(e),Qae),yOt=xVi,CVi=()=>(0,Snr.useContext)(vfr),sy=CVi,SVi=()=>{let{showConfirmModal:n}=Dp(),{t:e}=pt(),{closePage:t}=sy(),{cancelHookObservable:r}=Yq();return {warnLicenseKeyIsInvalid:(0,Enr.useCallback)(()=>{n({textNegativeButton:e("txt_close"),textPositiveButton:e("txt_back"),title:e("txt_invalid_license_key"),isShowIcon:!0,isShowPositiveButton:!1,description:e("txt_invalid_license_key_description"),onClickNegativeButton:()=>{r?.next(null),t();},onCloseModal(){r?.next(null);}});},[n,e,r,t])}},VQe=SVi,_Ot=(n,e)=>e.development_mode?e.is_verified&&n:e.is_verified&&!n,Xq=n=>{let e=(0,Use.useRef)(),t=(0,Use.useRef)(!1),r=(0,Use.useRef)(!1);t.current&&(r.current=!0),(0,Use.useEffect)(()=>{if(!t.current)return t.current=!0,e.current=n(),()=>{r.current&&e.current&&e.current();}},[]);},EVi=class{static mapDAOtoFeatureWhitelist(n,e){let t=new qZe;return t.enableI18nOverrides(n.plan_detail.features.i18n),t.enableMultiFileUpload(n.plan_detail.features.multiple_file_upload),t.enableReuseMapping(n.plan_detail.features.remember_mapping),t.enableAutomaticMapping(n.plan_detail.features.automatic_mapping,n.plan),t.setStepHandler(n.plan_detail.features.step_handler??!1),n.plan_detail.upload_size_limit===0?t.setFileSizeUnlimited():t.setMaxFileSizeInMb(n.plan_detail.upload_size_limit),t.setInputTypes(n.plan_detail.features.input_types||[]),t.setDefaultLanguage(n.default_language??"en"),t.setDynamicImport(n.plan_detail.features.dynamic_import,n.plan),t.setCustomStyling(n.plan_detail.features.custom_style,n.plan),t.setEnableLogs(n.plan_detail.features.logs),t.setLoading(!1),t.setLocale(e||{}),t.setRowsLimit(n.plan_detail.sdk_rows_limit??void 0),t.setEnableSmartTable(n.plan_detail.features.smart_table||!1),t.setEnableCleaningAssistant(n.plan_detail.features.cleaning_assistant||!1),t.setEnableWatermark(n.plan_detail.features.watermark||!1),t.setEnableContextualEngine(n.plan_detail.features.contextual_engine||!1),t.setEnableNodeProcessing(n.plan_detail.features.node_processing||!1),t.setEnablePrompts(n.plan_detail.features.prompts||!1),t}static getEmptyFeatureWhitelist(){let n=new qZe;return n.setLoading(!1),n}},xOt=EVi,kVi=class extends CF{constructor(){super(...arguments),this.getLocales=async({language:n},e)=>this.get("/utils/locales",{language:n},{headers:{Authorization:e,apikey:this.sendApiKey?iy:void 0}});}},TVi=class extends CF{constructor(){super(...arguments),this.verifyLicenseKey=async({licenseKey:n,sessionId:e})=>this.post("/verify",{session_id:e,meta:Zi.getInstance().getMeta()},{headers:{apikey:this.sendApiKey?iy:void 0,Authorization:n}});}},IVi=TVi,LVi=()=>{let n=ti();return (0,Tnr.useMemo)(()=>({isDeveloperMode:n.developerMode??!1}),[n])},BEe=LVi,Lnr=(0,JC.createContext)({isAuth:!1,isLoading:!1,htLicenseKey:"non-commercial-and-evaluation",isExpire:!1,verifyLicenseKey:void 0,verifyLicenseKeyListener:null,isVerifyingLicenseKey:!1}),RVi=({licenseKey:n,children:e})=>{let t="non-commercial-and-evaluation",[r,i]=(0,JC.useState)(!1),[o,s]=(0,JC.useState)(!1),[a,l]=(0,JC.useState)(!0),[c,u]=(0,JC.useState)(t),{language:d,baseUrl:h,isSelfHosted:f}=ti(),[p,m]=(0,JC.useState)(!0),{sessionId:g}=XI(),b=(0,JC.useMemo)(()=>new IVi({sendApiKey:!f},{baseURL:h}),[h,f]),v=(0,JC.useMemo)(()=>new kVi({sendApiKey:!f},{baseURL:h}),[h,f]),{setFeatureWhiteList:w}=oy(),{isDeveloperMode:y}=BEe(),C=(0,JC.useRef)(new Kg),_=async A=>{u(A?.ht_license_key?.trim()||t),i(_Ot(y,A));let M;A.plan_detail.features.i18n&&d?M=d:M=A.default_language??"en";let I=await v.getLocales({language:M},n),D=xOt.mapDAOtoFeatureWhitelist(A,I);return w(D),l(!1),s(!(A.is_verified??!1)),!0},x=()=>{let A=xOt.getEmptyFeatureWhitelist();return w(A),l(!1),!1},k=async()=>{m(!0);try{let A=await b.verifyLicenseKey({licenseKey:n,sessionId:g});return m(!1),C.current?.next(_Ot(y,A)),_(A)}catch{return C.current?.next(!1),m(!1),x()}};return Xq(()=>{if(n&&n?.trim()?.length>0||f)return (async()=>{try{let A=await b.verifyLicenseKey({licenseKey:n,sessionId:g});C.current?.next(_Ot(y,A)),m(!1),await _(A);}catch{C.current?.next(!1),m(!1),x();}})(),()=>{m(!1),l(!1);};{let A=xOt.getEmptyFeatureWhitelist();w(A),l(!1),m(!1),i(!1);}return ()=>{}}),(0,Inr.jsx)(Lnr.Provider,{value:{isAuth:r,isLoading:a,htLicenseKey:c,isExpire:o,verifyLicenseKey:k,isVerifyingLicenseKey:p,verifyLicenseKeyListener:C.current},children:e})},MVi=()=>(0,Rnr.useContext)(Lnr),mS=MVi,Anr=(0,zQe.createContext)({reload:()=>{}}),AVi=({children:n})=>{let[e,t]=(0,zQe.useState)(!1),r=i=>{Zi.getInstance().setReloadSession(i),t(!0),setTimeout(()=>{t(!1);},0);};return (0,Mnr.jsx)(Anr.Provider,{value:{reload:r},children:e?null:n})},DVi=()=>{let n=(0,Dnr.useContext)(Anr);if(!n)throw new Error("useImporterSession must be used within an ImporterSessionManager");return n},NVi=DVi,OVi=({modal:n,isAuth:e,openModal:t,licenseKey:r})=>{let i=pS(),o=fS(),{columns:s,embedUploadArea:a=!1,dynamicImport:l,identifier:c}=ti(),{showConfirmModal:u}=Dp(),{t:d}=pt(),{automaticHeaderDetection:h,workersBaseUrl:f}=ti(),{warnLicenseKeyIsInvalid:p}=VQe(),{featureWhiteList:m}=oy(),{cancelHookObservable:g}=Yq(),{verifyLicenseKeyListener:b,verifyLicenseKey:v,isVerifyingLicenseKey:w}=mS(),{reload:y}=NVi(),C=(0,a2e.useCallback)(async _=>y(_),[y]);return (0,a2e.useEffect)(()=>{h8t.listener(c,async({data:_,headerIndex:x,step:k})=>{try{if(!e){p();return}if(!l)throw new Error("1002");if(yOt.checkIsEmpty(_)&&k!=="review"){n&&!a&&(t(),Zi.getInstance().setStartSession(c),i({pathname:cS}));return}if(yOt.isInValidObjectArray(_))throw new Error("1000");let A=k;if(["header","mapping","review","sheetSelection"].includes(A)||(A="header"),A==="review"){let M=new yVi(o.getDataModels()),{parsedValues:I,dataInfos:D}=M.handle({data:((0,knr.isEmpty)(_)?IKn:_)??IKn});n&&t(),setTimeout(()=>{Zi.getInstance().setStartSession(c),i({pathname:Z_},{state:{columns:s,dataModels:o.getDataModels(),dynamicValues:I,dynamicDataInfos:D,dynamicUploadStart:Z_,hideStepper:!0}});});}else if(A==="sheetSelection"){let M=await new _Vi().handle({data:_??[],hasDateType:o.hasDateType(),workersBaseUrl:f??""}),I=tS;n&&t(),setTimeout(()=>{Zi.getInstance().setStartSession(c),i({pathname:I},{state:{spreadSheetList:M,dynamicUploadStart:I}});},220);}else {let M=await new wVi().handle({data:_??{},hasDateType:o.hasDateType(),headerIndex:x,automaticHeaderDetection:h,workersBaseUrl:f??""}),I=M?.getSpreadSheetList()?.getAllSheets()?.[0]?.getData();if(yOt.checkIsEmpty(I)){n&&!a&&(t(),Zi.getInstance().setStartSession(c),i({pathname:cS}));return}let D=A==="header"&&!h?F0:zm;n&&t(),setTimeout(()=>{Zi.getInstance().setStartSession(c),i({pathname:D},{state:{spreadSheetNavigate:M,dynamicUploadStart:D}});},220);}}catch(A){let M=()=>{switch(A.message){case "1000":return d("txt_error_dynamic_import_invalid_data_format");case "1001":return d("txt_error_dynamic_import_not_matched_tdm");case "1002":return d("txt_error_dynamic_import_no_support");default:return d("txt_error_dynamic_import_unknown")}};u({title:d("txt_default_title_error"),description:`<div>
|
|
11551
11551
|
<p className="font-bold">
|
|
11552
11552
|
${M()}
|
|
11553
11553
|
</p>
|
|
@@ -11873,7 +11873,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
11873
11873
|
filter: drop-shadow(0px -13px 50px rgba(17, 48, 68, 0.08));
|
|
11874
11874
|
`),children:[(0,BE.jsxs)("div",{className:he("flex items-center justify-end space-x-4 py-6",s||"",v?"rounded-b-lg":"",se({"&&":b.getFooterTheme().root}),se({backgroundColor:b.getGlobalTheme().getBackgroundColor()})),children:[d?d(i,"xsmd:w-auto w-full"):(0,BE.jsx)(Lir,{onClick:e,disabled:i,className:"xsmd:w-auto w-full"}),(0,BE.jsx)(kd,{isShow:T&&!!A,message:(0,BE.jsx)(hS,{className:he(se({"&&":u}),se`
|
|
11875
11875
|
max-width: 230px;
|
|
11876
|
-
`),children:A}),isShowArrow:!0,arrowClassName:u?.backgroundColor,offset:{mainAxis:10,crossAxis:-3},direction:"top",render:({setReferenceElement:O})=>(0,BE.jsx)("span",{ref:O,onMouseEnter:()=>_(!0),onMouseOut:()=>_(!1),children:(0,BE.jsx)(Ao,{disabled:r,onClick:()=>{g(),n?.(),(xJe.isMobile||xJe.isTablet)&&_(q=>!q);},loading:f,className:he("xsmd:w-auto w-full disabled:opacity-70",a),textClassName:"pointer-events-none",children:t||m("txt_continue")})})})]}),(0,BE.jsx)(G9t,{id:`${x}-${y}`,viewMode:"footer",allowRender:w,identifier:y})]})}),[d,x,o,i,r,s,y,T,v,e,n,u,a,t,g,m,b,w,f,A]);return (0,BE.jsx)("div",{ref:L,className:he(v?"pt-22.5":"",h),children:!v&&R.current?(0,oor.createPortal)(P,R.current):P})},CJe=uKi,dKi=({title:n,titleId:e,...t})=>(0,dae.jsxs)("svg",{width:16,height:17,viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":e,...t,children:[n?(0,dae.jsx)("title",{id:e,children:n}):null,(0,dae.jsx)("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"}),(0,dae.jsx)("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"})]}),sor=dKi,hKi=({onClick:n})=>{let{t:e}=pt();return (0,Vae.jsxs)("div",{className:"flex flex-col items-end justify-between gap-1",children:[(0,Vae.jsx)("p",{className:"leading-5.5 text-gray-560 text-xs",children:e("txt_did_you_expect_different_result")}),(0,Vae.jsxs)("button",{type:"button",className:"text-blue-light-500 leading-5.5 flex cursor-pointer gap-1 text-xs font-medium",onClick:n,"aria-label":e("txt_switch_manual_import_title"),children:[(0,Vae.jsx)(sor,{}),e("txt_switch_manual_import_title")]})]})},fKi=hKi,pKi=({onPositiveClick:n,onNegativeClick:e,positiveButtonText:t,validating:r=!1,className:i,errorCount:o={current:0},popoverInfoTheme:s,isDirectToReviewEntryFromContextualEngine:a,wrapperClassName:l,positiveLoading:c,getTotalError:u})=>{let{t:d}=pt(),{completeImportAction:h}=ti(),[f,p]=(0,kq.useState)(0);(0,kq.useEffect)(()=>{if(h==="block"){let b=setInterval(()=>{p(o.current);},150);return ()=>{clearTimeout(b);}}},[o,h]);let m=(0,kq.useMemo)(()=>f>0,[f]),g=(0,kq.useMemo)(()=>h==="block"&&m,[h,m]);return (0,Y8t.jsx)(CJe,{footerStyle:"px-8",className:i,positiveButtonText:t,disabledPositive:r||g,onPositiveClick:n,onNegativeClick:e,enablePopper:g,popoverInfoTheme:s,getPopperMessage:()=>{let b=u?.()??0;return d(b===1?"txt_invalid_data_behavior_block":"txt_invalid_data_behavior_block_more_error",{errorCount:rO(b)})},backButton:a?()=>(0,Y8t.jsx)(fKi,{onClick:e}):void 0,wrapperClassName:l,positiveLoading:c})},mKi=pKi,gKi=class{constructor(n){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=n;}},FKn=gKi,lM={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"}},bKi=8,vKi="nuvo-custom-add-column",wKi=class{constructor(){this.isRemoveScrollEvent=!1,this.defaultPaddingLeft=87,this.paddingLeftOffset=20,this.paddingLeft=57,this.cleanupAutoUpdate=null;}async changeRootElement(n,e,t,r,i,o,s){let a;o?a=o.clientWidth:a=this.defaultPaddingLeft,this.paddingLeft!==a&&this.destroy(),this.paddingLeft=a,r&&(this.popperClassName=r),e.className=`${this.popperClassName} default-popper`,await this.initPopper(n,e,t,s??!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(n,e,t,r,i){this.rootElement=n,this.popperElement=e,this.enableExamples=r,this.parentElement=t;let{paddingLeft:o,paddingLeftOffset:s}=this,a=document.querySelector("#arrow-message-info"),l=async()=>{a2(n,e,{placement:"left",strategy:"absolute",middleware:[La({mainAxis:12,crossAxis:0}),ju(),kH({element:a||null}),hl({fallbackPlacements:["right","bottom","top"],boundary:t,padding:{top:this.rootElement.clientHeight*.3,left:o-s}}),V1(),{name:"overflow-offset",async fn(c){let u=await jL(c,{boundary:t,elementContext:"reference"}),d=r?-34:0,h=(o-s)*-1;return u.top>d||c.middlewareData.hide?.referenceHidden||(c.middlewareData.hide?.referenceHiddenOffsets?.left??0)>h?(c.elements.floating.style.opacity="0",a&&(a.style.opacity="0")):(c.elements.floating.style.opacity="1",a&&(a.style.opacity="1")),{}}}]}).then(({x:c,y:u,middlewareData:d,placement:h})=>{if(Object.assign(this.popperElement.style,{position:"absolute",left:`${c}px`,top:`${u}px`}),a){let f={position:"absolute",left:`${d.arrow?.x}px`,top:`${d.arrow?.y}px`},p=d.arrow?.x||0;h==="left"?(f.right=i?"0px":"-7px",f.left=""):h==="right"?(f.right="",f.left=i?"-13px":"-7px"):h==="top"?(f.top="",f.right="",f.bottom="-7px",f.left=i?`${p-7}px`:`${p-0}px`):h==="bottom"&&(f.top="-7px",f.right="",f.bottom="",f.left=i?`${p-7}px`:`${p-0}px`),Object.assign(a.style,f);}}).catch(c=>{console.error("Error in updatePosition:",c);});};this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.cleanupAutoUpdate=Ia(n,e,l,{elementResize:!0,ancestorResize:!0,ancestorScroll:!0,animationFrame:!0,layoutShift:!0}),await l();}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");}},BKn=n=>{if(n?.length>1)return "multiple-popper";switch(n?.[0]?.level){case "error":return "error-popper";case "warning":return "warning-popper";case "disabled":return "disabled-popper";default:return "info-popper"}},aor=n=>{if(!n)return "default-cell";switch(n){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"}},yKi=class{constructor({enableExamples:n,modal:e}){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 r=t.target.classList;!r.contains("custom-dropdown-renderer")&&!r.contains("htAutocomplete")&&!r.contains("wtBorder")&&!r.contains("wtSpreader")&&!r.contains("custom-dropdown-boolean-renderer")&&!r.contains("dropdown-item")&&!r.contains("current")&&!r.contains("search-input")&&!r.contains("dropdown-sub-item")&&!r.contains("tick-path")&&!r.contains("dropdown-header")&&!r.contains("dropdown-editor-scroller")&&!r.contains("dropdown-sub-item-label")&&!r.contains("dropdown-sub-item-container")&&this.close();},this.enableExamples=n??!1,this.modal=e,e&&(this.rootModelElement=document.querySelector("#nuvo-root-modal-element"));}async initPopper(n,e,t){this.rootElement=n,this.dropdownElement=e;let{enableExamples:r,paddingLeft:i}=this;!this.modal&&!this.rootAppElement&&(this.rootAppElement=t?.closest("#nuvo-app-root-element"));let o=async()=>{a2(n,e,{placement:"bottom",strategy:"fixed",middleware:[La({mainAxis:.5,crossAxis:0}),hl({fallbackPlacements:["top"],boundary:(this.modal?this.rootModelElement:this.rootAppElement)||void 0,padding:{bottom:90}}),{name:"overflow-offset",async fn(s){let a=await jL(s,{boundary:t,elementContext:"reference"}),l=await jL(s,{boundary:t}),c=r?-34:0,u=i*-1+32;return a.top>c||a.bottom>0||l.left>u||l.right>2?s.elements.floating.style.opacity="0":s.elements.floating.style.opacity="1",{}}}]}).then(({x:s,y:a})=>{Object.assign(this.dropdownElement.style,{position:"fixed",left:`${s}px`,top:`${a}px`});});};this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.cleanupAutoUpdate=Ia(n,e,o,{elementResize:!0,ancestorResize:!0,ancestorScroll:!0,animationFrame:!0,layoutShift:!0}),await o();}async open(n,e,t,r){let i;if(r?i=r.clientWidth:i=this.defaultPaddingLeft,this.paddingLeft=i,this.removeEventListener(),n===this.rootElement){if(this.rootElement=n,e.hasAttribute("overflow-hide"))return e.removeAttribute("overflow-hide");this.close();return}e.style&&e.scrollTo(0,0),this.isEditing=!0,this.addEventListener(),this.dropdownElement=e,this.rootElement=n,await this.initPopper(n,e,t),this.show(this.rootElement,this.dropdownElement);}show(n,e){this.rootElement=n,this.dropdownElement=e,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);}},lor=({currentValue:n,options:e,updateValue:t,isMultiSelect:r})=>{if(r){let i=n.filter(o=>o?e.some(s=>ML(s,o)):!1);return i.includes(t)?i=i.filter(o=>o!==t):i=[...i,t],i}else return t},fq,_Ki=(fq=class{constructor(){if(fq.instance)throw new Error("This class is singleton please use getInstance method instead \u{1F64F}")}static getInstance(){return this.instance===null&&(this.instance=new fq),this.instance}static getFreezeColumns(){return this.freezeColumns}static removeByIndex(e){this.freezeColumns.splice(e,1);}static add(e){this.freezeColumns.push(e);}static update(e,t){for(let r=0;r<this.freezeColumns.length;++r)if(this.freezeColumns[r]===e){this.freezeColumns[r]=t;break}}static cleanUp(){this.freezeColumns=[];}},fq.freezeColumns=[],fq),h1=_Ki,xKi=({hotInstance:n,dataModelRegistry:e,getColWidths:t,parentTableElement:r,dropdownElement:i,currentSelectingCoord:o,searchValueRef:s,enableExamples:a,htCloneLeftWtHolderElement:l,allColumnSetting:c,isCustomAddColumn:u,modal:d})=>{let h=(0,N0.useMemo)(()=>new yKi({enableExamples:a,modal:d}),[a,d]),f=(0,N0.useRef)(-1),p=(0,N0.useRef)(),m=(0,N0.useRef)(""),g=(0,N0.useRef)(),b=(0,N0.useRef)([]),v=(0,N0.useRef)(-1),w=(0,N0.useRef)(-1),y=(0,N0.useCallback)(async(I,D,W)=>{let S=e.getDataModels(),T=W?.getValue(),L=t(),R=W.toPhysicalColumn(D),P=L[R],O=W.getCell(I,D,!0);if(g.current=S[R],m.current=T,!O||!r.current||!i.current||!l.current)return;i.current.style.width=`${P-3}px`,s.current="";let q=c.getFreezeColumns().includes(D);await h.open(O,i.current,r.current,q?void 0:l.current);},[e,r,i,s,h,l,c,t]),C=(0,N0.useCallback)(()=>{h.close(),s.current="";},[h,s]),_=(0,N0.useCallback)(({row:I,col:D,value:W})=>{n.current?.hotInstance?.setDataAtCell(I,D,W);},[n]),x=(0,N0.useCallback)(I=>{clearTimeout(p.current);let D=e.getDataModels(),[W,S]=n.current?.hotInstance?.getSelected()?.[0]??[-1,-1];if(W<0||S<0||W===void 0||S===void 0||u(S))return;v.current=S,w.current=W;let T=n.current?.hotInstance?.toPhysicalColumn(S)??0;if(D[T].isDropdown()){let L=n.current?.hotInstance,R=L?.getCellMeta(W,S)?.dropdownOptions,P=h.isEditing;if(P){if(I.key==="ArrowUp")return f.current>0&&f.current--,I?.stopImmediatePropagation(),I?.preventDefault(),!1;if(I.key==="ArrowDown")return f.current<(R?.length??0)-1&&f.current++,I?.stopImmediatePropagation(),I?.preventDefault(),!1;if(I?.key==="Enter"){if(f.current===-1||!R||R.length===0)return C();_({row:W,col:S,value:lor({currentValue:typeof m.current=="string"?[m.current]:m.current||[],isMultiSelect:g.current?.getIsMultiSelection()??!1,options:R,updateValue:R[f.current].value})}),C();}else (I?.key==="Escape"||I?.key==="ArrowLeft"||I?.key==="ArrowRight"||I.key==="Tab")&&C();f.current=0;}else {let O=R?.findIndex(q=>q.value===n.current?.hotInstance?.getValue());if(f.current=O??-1,I?.key==="ArrowUp"||I?.key==="ArrowDown"||I?.key==="ArrowLeft"||I?.key==="ArrowRight"||I.key==="Tab"||I.key==="Shift")return;I?.key==="Enter"&&(I?.stopImmediatePropagation(),I?.preventDefault());}if(I?.key==="Enter"&&(p.current=setTimeout(()=>{let[O,q]=n.current?.hotInstance?.getSelected()?.[0]??[-1,-1];if(L?.getCellMeta(O,q)?.readOnly)return C();(O>=0||q>=0)&&y(O,q,L);},0),!P))return !1}else C();},[e,n,h,y,C,_,u]),k=(0,N0.useCallback)((I,D,W,S)=>{if(clearTimeout(p.current),I<0||S<0||I===void 0||S===void 0||W===void 0)return;let T=e.getDataModels(),L=D,R=n.current?.hotInstance,P=h1.getFreezeColumns().findIndex(q=>q===T[S].getBaseKey());P!==-1&&(L=P);let O=T[S].getType();if(T[S].isCategoryType()&&(i.current?.classList.add("menu-single-select"),i.current?.classList.remove("menu-boolean-select")),O==="boolean"&&(i.current?.classList.add("menu-boolean-select"),i.current?.classList.remove("menu-single-select")),T[S].isDropdown()){if(R?.getCellMeta(I,L)?.readOnly)return C();let q=R?.getCellMeta(I,L)?.dropdownOptions;v.current=n.current?.hotInstance?.toVisualColumn(S)??S,w.current=I;let Q=q?.findIndex(J=>J.value===n.current?.hotInstance?.getValue());f.current=Q??-1,setTimeout(()=>{y(I,D,R);},0);}else C();},[e,y,n,i,C]),A=(0,N0.useCallback)((I,D)=>{if(_({row:w.current,col:v.current,value:I.toString().length?I:null}),n.current?.hotInstance?.render(),D){let W=n.current?.hotInstance?.getValue();m.current=W;}else C();},[n,v,w,C,_]),M=(0,N0.useCallback)(()=>{if(h.isEditing){let I=n.current?.hotInstance?.getCell(o.current.row,o.current.col,!0);I&&i.current&&r.current?h.show(I,i.current):h.hide();}},[i,r,o,h,n]);return {currentEditingModelRef:g,currentEditingValueRef:m,onSelectOption:A,dropdownOptionsRef:b,openDropdown:k,handleBeforeKeyDown:x,currentSelectorRef:f,itemMenuPopper:h,handleDropdownMenuItem:M,setDropdownOptionValue:_,editRow:w,editCol:v}};uor.default.registerLanguage(dor.default);function Goe(n,e){return function(...t){let[r,i,o,s,a,l,c]=t,u=n(o,s);return i.className=u?`${i.className} ${aor(u)}`:`${i.className} default-cell`,c.mediaSize=e?.mediaSize,c.type==="numeric"?e?.numberFormat?(c.numberFormat=e?.numberFormat,Fd.apply(this,t),i.innerHTML=Ta.convertToFormat(l,{targetFormat:e.numberFormat,adornment:e.numberAdornment,symbol:e.symbol})):UO.apply(this,t):Fd.apply(this,t),i}}var HKn=(n,e)=>(0,WEe.isNil)(e)?"":n.find(t=>ML(t,e))?.label??XXt(e),CKi=(n,e)=>(0,WEe.isArray)(e)?e.map(t=>HKn(n,t)).join(", "):HKn(n,e),hor=class{constructor(n,e){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[r,i,o,s,a,l,c]=t,u=document.createElement("div"),d=document.createElement("div"),h=document.createElement("div"),f=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 ${f?"":"!cursor-pointer"} h-full`,h.className="arrow-down-icon w-3 h-3 absolute right-0 pt-1 transform pointer-events-none",h.id="dropdown-arrow-icon",h.innerHTML=this.arrowDownIcon,i.className=`${i.className} !box-border !px-0 relative ${f?"htDimmed":""}`;let p=c.dropdownOptions,m=CKi(p,l);d.innerText=`${m}`;let g=this.getCellMeta(o,s);if(i.className=g?`${i.className} ${aor(g)}`:`${i.className} default-cell text-blue-dark-900`,u.appendChild(d),u.appendChild(h),!f){let b=document.createElement("div");b.className="close-icon w-4 h-4 pt-1",b.innerHTML=this.closeGrayIcon,b.addEventListener("mousedown",v=>{r.setDataAtCell(o,s,null),r.render(),setTimeout(()=>c?.onClearEditor?.(),0),v.stopPropagation(),this.afterClearValue&&this.afterClearValue();},{passive:!0}),(0,WEe.isArray)(l)?l.length>0&&u.appendChild(b):m&&u.appendChild(b);}i.id=`${s}-${o}`,i.replaceChildren(u);},this.getCellMeta=n,this.afterClearValue=e;}},SKi=class extends hor{constructor(){super(...arguments),this.classNameIdentifier="custom-dropdown-boolean-renderer";}};function SJe(n){let{className:e,columns:t,...r}=n,i={...r};return e&&(i.className=Array.isArray(e)?e.join(" "):e),Array.isArray(t)?i.columns=t.map(o=>{if(!o)return o;let{className:s,...a}=o;return {...a,...s&&{className:Array.isArray(s)?s.join(" "):s}}}):t!==void 0&&(i.columns=t),i}var EKi=class extends hor{constructor(){super(...arguments),this.classNameIdentifier="custom-dropdown-renderer";}},VEe=class extends rg{constructor(){super(...arguments),this.rowHeight=35,this.handleInputChange=n=>{this.recalculateLineHeight(this.rowHeight);};}createElements(){super.createElements(),this.TEXTAREA.className=`${this.getCellCustomStyle()}`;}open(n){let e=this.cellProperties?.mediaSize;document.querySelector(".ht_master.handsontable.innerBorderLeft.innerBorderInlineStart")&&this.col===0?this.TEXTAREA.style.marginLeft="-1px":this.TEXTAREA.style.marginLeft="0px",e?this.TEXTAREA.style.lineHeight="1.6":(this.recalculateLineHeight(this.rowHeight,!0,!0),this.TEXTAREA.addEventListener("input",this.handleInputChange)),super.open(n);}close(){super.close(),this.TEXTAREA.removeEventListener("input",this.handleInputChange);}setValue(n){if(this.cellProperties?.type==="numeric"){if(this.cellProperties?.numberFormat==="eu"&&!isNaN(Number(n))){super.setValue(`${n}`?.replace(/\./g,","));return}super.setValue(n);}else super.setValue(n);}recalculateLineHeight(n,e,t){let r=this.getValue(),i="1.6",o="2",s=r.includes(`
|
|
11876
|
+
`),children:A}),isShowArrow:!0,arrowClassName:u?.backgroundColor,offset:{mainAxis:10,crossAxis:-3},direction:"top",render:({setReferenceElement:O})=>(0,BE.jsx)("span",{ref:O,onMouseEnter:()=>_(!0),onMouseOut:()=>_(!1),children:(0,BE.jsx)(Ao,{disabled:r,onClick:()=>{g(),n?.(),(xJe.isMobile||xJe.isTablet)&&_(q=>!q);},loading:f,className:he("xsmd:w-auto w-full disabled:opacity-70",a),textClassName:"pointer-events-none",children:t||m("txt_continue")})})})]}),(0,BE.jsx)(G9t,{id:`${x}-${y}`,viewMode:"footer",allowRender:w,identifier:y})]})}),[d,x,o,i,r,s,y,T,v,e,n,u,a,t,g,m,b,w,f,A]);return (0,BE.jsx)("div",{ref:L,className:he(v?"pt-22.5":"",h),children:!v&&R.current?(0,oor.createPortal)(P,R.current):P})},CJe=uKi,dKi=({title:n,titleId:e,...t})=>(0,dae.jsxs)("svg",{width:16,height:17,viewBox:"0 0 16 17",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":e,...t,children:[n?(0,dae.jsx)("title",{id:e,children:n}):null,(0,dae.jsx)("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"}),(0,dae.jsx)("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"})]}),sor=dKi,hKi=({onClick:n})=>{let{t:e}=pt();return (0,Vae.jsxs)("div",{className:"flex flex-col items-end justify-between gap-1",children:[(0,Vae.jsx)("p",{className:"leading-5.5 text-gray-560 text-xs",children:e("txt_did_you_expect_different_result")}),(0,Vae.jsxs)("button",{type:"button",className:"text-blue-light-500 leading-5.5 flex cursor-pointer gap-1 text-xs font-medium",onClick:n,"aria-label":e("txt_switch_manual_import_title"),children:[(0,Vae.jsx)(sor,{}),e("txt_switch_manual_import_title")]})]})},fKi=hKi,pKi=({onPositiveClick:n,onNegativeClick:e,positiveButtonText:t,validating:r=!1,className:i,errorCount:o={current:0},popoverInfoTheme:s,isDirectToReviewEntryFromContextualEngine:a,wrapperClassName:l,positiveLoading:c,getTotalError:u})=>{let{t:d}=pt(),{completeImportAction:h}=ti(),[f,p]=(0,kq.useState)(0);(0,kq.useEffect)(()=>{if(h==="block"){let b=setInterval(()=>{p(o.current);},150);return ()=>{clearTimeout(b);}}},[o,h]);let m=(0,kq.useMemo)(()=>f>0,[f]),g=(0,kq.useMemo)(()=>h==="block"&&m,[h,m]);return (0,Y8t.jsx)(CJe,{footerStyle:"px-8",className:i,positiveButtonText:t,disabledPositive:r||g,onPositiveClick:n,onNegativeClick:e,enablePopper:g,popoverInfoTheme:s,getPopperMessage:()=>{let b=u?.()??0;return d(b===1?"txt_invalid_data_behavior_block":"txt_invalid_data_behavior_block_more_error",{errorCount:rO(b)})},backButton:a?()=>(0,Y8t.jsx)(fKi,{onClick:e}):void 0,wrapperClassName:l,positiveLoading:c})},mKi=pKi,gKi=class{constructor(n){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=n;}},FKn=gKi,lM={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"}},bKi=8,vKi="nuvo-custom-add-column",wKi=class{constructor(){this.isRemoveScrollEvent=!1,this.defaultPaddingLeft=87,this.paddingLeftOffset=20,this.paddingLeft=57,this.cleanupAutoUpdate=null;}async changeRootElement(n,e,t,r,i,o,s){let a;o?a=o.clientWidth:a=this.defaultPaddingLeft,this.paddingLeft!==a&&this.destroy(),this.paddingLeft=a,r&&(this.popperClassName=r),e.className=`${this.popperClassName} default-popper`,await this.initPopper(n,e,t,s??!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(n,e,t,r,i){this.rootElement=n,this.popperElement=e,this.enableExamples=r,this.parentElement=t;let{paddingLeft:o,paddingLeftOffset:s}=this,a=document.querySelector("#arrow-message-info"),l=async()=>{a2(n,e,{placement:"left",strategy:"absolute",middleware:[La({mainAxis:12,crossAxis:0}),ju(),kH({element:a||null}),hl({fallbackPlacements:["right","bottom","top"],boundary:t,padding:{top:this.rootElement.clientHeight*.3,left:o-s}}),V1(),{name:"overflow-offset",async fn(c){let u=await jL(c,{boundary:t,elementContext:"reference"}),d=r?-34:0,h=(o-s)*-1;return u.top>d||c.middlewareData.hide?.referenceHidden||(c.middlewareData.hide?.referenceHiddenOffsets?.left??0)>h?(c.elements.floating.style.opacity="0",a&&(a.style.opacity="0")):(c.elements.floating.style.opacity="1",a&&(a.style.opacity="1")),{}}}]}).then(({x:c,y:u,middlewareData:d,placement:h})=>{if(Object.assign(this.popperElement.style,{position:"absolute",left:`${c}px`,top:`${u}px`}),a){let f={position:"absolute",left:`${d.arrow?.x}px`,top:`${d.arrow?.y}px`},p=d.arrow?.x||0;h==="left"?(f.right=i?"0px":"-7px",f.left=""):h==="right"?(f.right="",f.left=i?"-13px":"-7px"):h==="top"?(f.top="",f.right="",f.bottom="-7px",f.left=i?`${p-7}px`:`${p-0}px`):h==="bottom"&&(f.top="-7px",f.right="",f.bottom="",f.left=i?`${p-7}px`:`${p-0}px`),Object.assign(a.style,f);}}).catch(c=>{console.error("Error in updatePosition:",c);});};this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.cleanupAutoUpdate=Ia(n,e,l,{elementResize:!0,ancestorResize:!0,ancestorScroll:!0,animationFrame:!0,layoutShift:!0}),await l();}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");}},BKn=n=>{if(n?.length>1)return "multiple-popper";switch(n?.[0]?.level){case "error":return "error-popper";case "warning":return "warning-popper";case "disabled":return "disabled-popper";default:return "info-popper"}},aor=n=>{if(!n)return "default-cell";switch(n){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"}},yKi=class{constructor({enableExamples:n,modal:e}){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 r=t.target.classList;!r.contains("custom-dropdown-renderer")&&!r.contains("htAutocomplete")&&!r.contains("wtBorder")&&!r.contains("wtSpreader")&&!r.contains("custom-dropdown-boolean-renderer")&&!r.contains("dropdown-item")&&!r.contains("current")&&!r.contains("search-input")&&!r.contains("dropdown-sub-item")&&!r.contains("tick-path")&&!r.contains("dropdown-header")&&!r.contains("dropdown-editor-scroller")&&!r.contains("dropdown-sub-item-label")&&!r.contains("dropdown-sub-item-container")&&this.close();},this.enableExamples=n??!1,this.modal=e,e&&(this.rootModelElement=document.querySelector("#nuvo-root-modal-element"));}async initPopper(n,e,t){this.rootElement=n,this.dropdownElement=e;let{enableExamples:r,paddingLeft:i}=this;!this.modal&&!this.rootAppElement&&(this.rootAppElement=t?.closest("#nuvo-app-root-element"));let o=async()=>{a2(n,e,{placement:"bottom",strategy:"fixed",middleware:[La({mainAxis:.5,crossAxis:0}),hl({fallbackPlacements:["top"],boundary:(this.modal?this.rootModelElement:this.rootAppElement)||void 0,padding:{bottom:90}}),{name:"overflow-offset",async fn(s){let a=await jL(s,{boundary:t,elementContext:"reference"}),l=await jL(s,{boundary:t}),c=r?-34:0,u=i*-1+32;return a.top>c||a.bottom>0||l.left>u||l.right>2?s.elements.floating.style.opacity="0":s.elements.floating.style.opacity="1",{}}}]}).then(({x:s,y:a})=>{Object.assign(this.dropdownElement.style,{position:"fixed",left:`${s}px`,top:`${a}px`});});};this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.cleanupAutoUpdate=Ia(n,e,o,{elementResize:!0,ancestorResize:!0,ancestorScroll:!0,animationFrame:!0,layoutShift:!0}),await o();}async open(n,e,t,r){let i;if(r?i=r.clientWidth:i=this.defaultPaddingLeft,this.paddingLeft=i,this.removeEventListener(),n===this.rootElement){if(this.rootElement=n,e.hasAttribute("overflow-hide"))return e.removeAttribute("overflow-hide");this.close();return}e.style&&e.scrollTo(0,0),this.isEditing=!0,this.addEventListener(),this.dropdownElement=e,this.rootElement=n,await this.initPopper(n,e,t),this.show(this.rootElement,this.dropdownElement);}show(n,e){this.rootElement=n,this.dropdownElement=e,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);}},lor=({currentValue:n,options:e,updateValue:t,isMultiSelect:r})=>{if(r){let i=n.filter(o=>o?e.some(s=>ML(s,o)):!1);return i.includes(t)?i=i.filter(o=>o!==t):i=[...i,t],i}else return t},fq,_Ki=(fq=class{constructor(){if(fq.instance)throw new Error("This class is singleton please use getInstance method instead \u{1F64F}")}static getInstance(){return this.instance===null&&(this.instance=new fq),this.instance}static getFreezeColumns(){return this.freezeColumns}static removeByIndex(e){this.freezeColumns.splice(e,1);}static add(e){this.freezeColumns.push(e);}static update(e,t){for(let r=0;r<this.freezeColumns.length;++r)if(this.freezeColumns[r]===e){this.freezeColumns[r]=t;break}}static cleanUp(){this.freezeColumns=[];}},fq.freezeColumns=[],fq),h1=_Ki,xKi=({hotInstance:n,dataModelRegistry:e,getColWidths:t,parentTableElement:r,dropdownElement:i,currentSelectingCoord:o,searchValueRef:s,enableExamples:a,htCloneLeftWtHolderElement:l,allColumnSetting:c,isCustomAddColumn:u,modal:d})=>{let h=(0,N0.useMemo)(()=>new yKi({enableExamples:a,modal:d}),[a,d]),f=(0,N0.useRef)(-1),p=(0,N0.useRef)(),m=(0,N0.useRef)(""),g=(0,N0.useRef)(),b=(0,N0.useRef)([]),v=(0,N0.useRef)(-1),w=(0,N0.useRef)(-1),y=(0,N0.useCallback)(async(I,D,W)=>{let S=e.getDataModels(),T=W?.getValue(),L=t(),R=W.toPhysicalColumn(D),P=L[R],O=W.getCell(I,D,!0);if(g.current=S[R],m.current=T,!O||!r.current||!i.current||!l.current)return;i.current.style.width=`${P-3}px`,s.current="";let q=c.getFreezeColumns().includes(D);await h.open(O,i.current,r.current,q?void 0:l.current);},[e,r,i,s,h,l,c,t]),C=(0,N0.useCallback)(()=>{h.close(),s.current="";},[h,s]),_=(0,N0.useCallback)(({row:I,col:D,value:W})=>{n.current?.hotInstance?.setDataAtCell(I,D,W);},[n]),x=(0,N0.useCallback)(I=>{clearTimeout(p.current);let D=e.getDataModels(),[W,S]=n.current?.hotInstance?.getSelected()?.[0]??[-1,-1];if(W<0||S<0||W===void 0||S===void 0||u(S))return;v.current=S,w.current=W;let T=n.current?.hotInstance?.toPhysicalColumn(S)??0;if(D[T].isDropdown()){let L=n.current?.hotInstance,R=L?.getCellMeta(W,S)?.dropdownOptions,P=h.isEditing;if(P){if(I.key==="ArrowUp")return f.current>0&&f.current--,I?.stopImmediatePropagation(),I?.preventDefault(),!1;if(I.key==="ArrowDown")return f.current<(R?.length??0)-1&&f.current++,I?.stopImmediatePropagation(),I?.preventDefault(),!1;if(I?.key==="Enter"){if(f.current===-1||!R||R.length===0)return C();_({row:W,col:S,value:lor({currentValue:typeof m.current=="string"?[m.current]:m.current||[],isMultiSelect:g.current?.getIsMultiSelection()??!1,options:R,updateValue:R[f.current].value})}),C();}else (I?.key==="Escape"||I?.key==="ArrowLeft"||I?.key==="ArrowRight"||I.key==="Tab")&&C();f.current=0;}else {let O=R?.findIndex(q=>q.value===n.current?.hotInstance?.getValue());if(f.current=O??-1,I?.key==="ArrowUp"||I?.key==="ArrowDown"||I?.key==="ArrowLeft"||I?.key==="ArrowRight"||I.key==="Tab"||I.key==="Shift")return;I?.key==="Enter"&&(I?.stopImmediatePropagation(),I?.preventDefault());}if(I?.key==="Enter"&&(p.current=setTimeout(()=>{let[O,q]=n.current?.hotInstance?.getSelected()?.[0]??[-1,-1];if(L?.getCellMeta(O,q)?.readOnly)return C();(O>=0||q>=0)&&y(O,q,L);},0),!P))return !1}else C();},[e,n,h,y,C,_,u]),k=(0,N0.useCallback)((I,D,W,S)=>{if(clearTimeout(p.current),I<0||S<0||I===void 0||S===void 0||W===void 0)return;let T=e.getDataModels(),L=D,R=n.current?.hotInstance,P=h1.getFreezeColumns().findIndex(q=>q===T[S].getBaseKey());P!==-1&&(L=P);let O=T[S].getType();if(T[S].isCategoryType()&&(i.current?.classList.add("menu-single-select"),i.current?.classList.remove("menu-boolean-select")),O==="boolean"&&(i.current?.classList.add("menu-boolean-select"),i.current?.classList.remove("menu-single-select")),T[S].isDropdown()){if(R?.getCellMeta(I,L)?.readOnly)return C();let q=R?.getCellMeta(I,L)?.dropdownOptions;v.current=n.current?.hotInstance?.toVisualColumn(S)??S,w.current=I;let Q=q?.findIndex(J=>J.value===n.current?.hotInstance?.getValue());f.current=Q??-1,setTimeout(()=>{y(I,D,R);},0);}else C();},[e,y,n,i,C]),A=(0,N0.useCallback)((I,D)=>{if(_({row:w.current,col:v.current,value:I.toString().length?I:null}),n.current?.hotInstance?.render(),D){let W=n.current?.hotInstance?.getValue();m.current=W;}else C();},[n,v,w,C,_]),M=(0,N0.useCallback)(()=>{if(h.isEditing){let I=n.current?.hotInstance?.getCell(o.current.row,o.current.col,!0);I&&i.current&&r.current?h.show(I,i.current):h.hide();}},[i,r,o,h,n]);return {currentEditingModelRef:g,currentEditingValueRef:m,onSelectOption:A,dropdownOptionsRef:b,openDropdown:k,handleBeforeKeyDown:x,currentSelectorRef:f,itemMenuPopper:h,handleDropdownMenuItem:M,setDropdownOptionValue:_,editRow:w,editCol:v}};uor.default.registerLanguage(dor.default);function Goe(n,e){return function(...t){let[r,i,o,s,a,l,c]=t,u=n(o,s);return i.className=u?`${i.className} ${aor(u)}`:`${i.className} default-cell`,c.mediaSize=e?.mediaSize,c.type==="numeric"?e?.numberFormat?(c.numberFormat=e?.numberFormat,Fd.apply(this,t),i.innerHTML=Ta.convertToFormat(l,{targetFormat:e.numberFormat,adornment:e.numberAdornment,symbol:e.symbol})):UO.apply(this,t):Fd.apply(this,t),i}}var HKn=(n,e)=>(0,WEe.isNil)(e)?"":n.find(t=>ML(t,e))?.label??XXt(e),CKi=(n,e)=>(0,WEe.isArray)(e)?e.map(t=>HKn(n,t)).join(", "):HKn(n,e),hor=class{constructor(n,e){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[r,i,o,s,a,l,c]=t,u=document.createElement("div"),d=document.createElement("div"),h=document.createElement("div"),f=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 ${f?"":"!cursor-pointer"} h-full`,h.className="arrow-down-icon w-3 h-3 absolute right-0 transform pointer-events-none 3xl:pt-1",h.id="dropdown-arrow-icon",h.innerHTML=this.arrowDownIcon,i.className=`${i.className} !box-border !px-0 relative ${f?"htDimmed":""}`;let p=c.dropdownOptions,m=CKi(p,l);d.innerText=`${m}`;let g=this.getCellMeta(o,s);if(i.className=g?`${i.className} ${aor(g)}`:`${i.className} default-cell text-blue-dark-900`,u.appendChild(d),u.appendChild(h),!f){let b=document.createElement("div");b.className="close-icon w-4 h-4 3xl:pt-1",b.innerHTML=this.closeGrayIcon,b.addEventListener("mousedown",v=>{r.setDataAtCell(o,s,null),r.render(),setTimeout(()=>c?.onClearEditor?.(),0),v.stopPropagation(),this.afterClearValue&&this.afterClearValue();},{passive:!0}),(0,WEe.isArray)(l)?l.length>0&&u.appendChild(b):m&&u.appendChild(b);}i.id=`${s}-${o}`,i.replaceChildren(u);},this.getCellMeta=n,this.afterClearValue=e;}},SKi=class extends hor{constructor(){super(...arguments),this.classNameIdentifier="custom-dropdown-boolean-renderer";}};function SJe(n){let{className:e,columns:t,...r}=n,i={...r};return e&&(i.className=Array.isArray(e)?e.join(" "):e),Array.isArray(t)?i.columns=t.map(o=>{if(!o)return o;let{className:s,...a}=o;return {...a,...s&&{className:Array.isArray(s)?s.join(" "):s}}}):t!==void 0&&(i.columns=t),i}var EKi=class extends hor{constructor(){super(...arguments),this.classNameIdentifier="custom-dropdown-renderer";}},VEe=class extends rg{constructor(){super(...arguments),this.rowHeight=35,this.handleInputChange=n=>{this.recalculateLineHeight(this.rowHeight);};}createElements(){super.createElements(),this.TEXTAREA.className=`${this.getCellCustomStyle()}`;}open(n){let e=this.cellProperties?.mediaSize;document.querySelector(".ht_master.handsontable.innerBorderLeft.innerBorderInlineStart")&&this.col===0?this.TEXTAREA.style.marginLeft="-1px":this.TEXTAREA.style.marginLeft="0px",e?this.TEXTAREA.style.lineHeight="1.6":(this.recalculateLineHeight(this.rowHeight,!0,!0),this.TEXTAREA.addEventListener("input",this.handleInputChange)),super.open(n);}close(){super.close(),this.TEXTAREA.removeEventListener("input",this.handleInputChange);}setValue(n){if(this.cellProperties?.type==="numeric"){if(this.cellProperties?.numberFormat==="eu"&&!isNaN(Number(n))){super.setValue(`${n}`?.replace(/\./g,","));return}super.setValue(n);}else super.setValue(n);}recalculateLineHeight(n,e,t){let r=this.getValue(),i="1.6",o="2",s=r.includes(`
|
|
11877
11877
|
`);t&&(this.TEXTAREA.style.lineHeight=o),setTimeout(()=>{if(s){if(this.TEXTAREA.style.lineHeight===i)return;this.TEXTAREA.style.lineHeight=i,e&&this.refreshDimensions();}else if(this.TEXTAREA.scrollHeight>(n||this.TEXTAREA.clientHeight)){if(this.TEXTAREA.style.lineHeight===i)return;this.TEXTAREA.style.lineHeight=i,e&&this.refreshDimensions();}else {if(this.TEXTAREA.style.lineHeight===o)return;this.TEXTAREA.style.lineHeight=o;}},0);}},kKi=class extends VEe{getCellCustomStyle(){return "custom-percentage-editor"}},TKi=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(n,e,t,r){if(this.rootElement=n,this.popperElement=e,!e)return;let i=async()=>{a2(n,e,{placement:r||"top",strategy:"fixed",middleware:[La({mainAxis:8,crossAxis:0}),ju(),hl({fallbackPlacements:["top-end"]})]}).then(({x:o,y:s})=>{Object.assign(this.popperElement.style,{position:"fixed",left:`${o}px`,top:`${s}px`});});};this.cleanupAutoUpdate&&(this.cleanupAutoUpdate(),this.cleanupAutoUpdate=null),this.cleanupAutoUpdate=Ia(n,e,i,{elementResize:!0,ancestorResize:!0,ancestorScroll:!0,animationFrame:!0,layoutShift:!0}),await i(),e.innerHTML="",e.innerHTML=t,this.show(n,e),this.popperElement.addEventListener("mouseenter",this.onPopperContainerMouseEnter),this.popperElement.addEventListener("mouseleave",this.onPopperContainerMouseLeave),this.showEvents.forEach(o=>{this.rootElement?.addEventListener(o,()=>this.show(n,e));}),this.hideEvents.forEach(o=>{this.rootElement?.addEventListener(o,()=>{setTimeout(()=>{this.isPopperContainerHovered||this.hide(n,e);},200);});});}async changeRootElement(n,e,t,r){this.rootElement=n,this.popperElement=e,this.removeEventListener(this.rootElement,this.popperElement),await this.initPopper(n,e,t,r);}removeEventListener(n,e){this.showEvents.forEach(t=>{this.rootElement?.removeEventListener(t,()=>this.show(n,e));}),this.hideEvents.forEach(t=>{this.rootElement?.removeEventListener(t,()=>this.hide(n,e));});}show(n,e){this.rootElement=n,this.popperElement=e,this.popperElement?.setAttribute("data-show",""),this.popperElement.style&&(this.popperElement.style.visibility="visible",this.popperElement.style.opacity="1",this.popperElement.style.pointerEvents="auto");}hide(n,e){this.rootElement=n,this.popperElement=e,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");}},IKi=class extends VEe{getCellCustomStyle(){return "custom-text-editor"}},LKi=class{constructor(){this.referenceElement=null,this.contextMenuPopperObservable=()=>this._contextMenuPopperObservable,this.setReferenceElement=n=>{this.referenceElement=n,this.contextMenuPopperObservable().next(this);},this.getReferenceElement=()=>this.referenceElement,this._contextMenuPopperObservable=new pv(this);}},RKi=LKi,RI,MKi=(RI=class{constructor(){this.currentOpenMenu=null,this.disabled=!1,this.setTableContainer=e=>{this.tableContainer=e;},this.getContextMenuPopper=()=>this.contextMenuPopper,this.closeMenu=()=>{this.currentOpenMenu=null,this._contextMenuObservable.next(this),this.clearAllSelectedClass();},this.contextMenuObservable=()=>this._contextMenuObservable,this.registerEventHeaderMenuButton=(e,t)=>{let r=e.querySelector(`.${RI.menuButtonClassName}`);if(!r)return;let i=()=>{r.classList.add(RI.selectedClassName);},o=()=>{r.classList.remove(RI.selectedClassName);};e.addEventListener("click",()=>{this.closeMenu();}),r.addEventListener("click",s=>{this.disabled||(s.stopPropagation(),this.openMenu(t),this.contextMenuPopper.setReferenceElement(r),this.clearAllSelectedClass(),i());},!1),this.currentOpenMenu===t?(this.contextMenuPopper.setReferenceElement(r),i()):o();},this.getCurrentOpenMenu=()=>this.currentOpenMenu,this.setDisabled=e=>{this.disabled=e;},this.clearAllSelectedClass=()=>{this.tableContainer&&this.tableContainer.querySelectorAll(`.${RI.menuButtonClassName}`).forEach(e=>{e.classList.remove(RI.selectedClassName);});},this.openMenu=e=>{if(e===this.currentOpenMenu){this.closeMenu();return}this.currentOpenMenu=e,this._contextMenuObservable.next(this);},this._contextMenuObservable=new pv(this),this.contextMenuPopper=new RKi;}},RI.menuButtonClassName="context-menu-button",RI.selectedClassName="selected",RI),por=MKi,J9,AKi=(J9=class{constructor(){this.setHotInstance=e=>{this.hotInstance=e;},this.hasMaximumHideColumn=e=>e.filter(t=>!t.hide).length===1,this.showHideColumns=(e,t,r)=>{let i=[...e],o=[];if(r)for(let s=t-1;s>=0&&e[s].hide;--s)o.push(s),i[s].hide=!1;else for(let s=t+1;s<e.length&&e[s].hide;++s)o.push(s),i[s].hide=!1;this.hotInstance?.getPlugin("hiddenColumns")?.showColumns(o),this.hotInstance?.render();};}hideColumn(e,t,r){let i=[...r];i[e].hide=t;let o=this.hotInstance?.getPlugin("hiddenColumns"),s=this.hotInstance?.getPlugin("autoColumnSize");return t?o?.hideColumn(e):o?.showColumn(e),s?.calculateAllColumnsWidth(),this.hotInstance?.render(),window.dispatchEvent(new Event("resize")),i}displayShowColumnIcon(e){let t=[];for(let r=0;r<e.length;++r)r===0?e[r+1]?.hide?t[r]={iconR:!0}:t[r]={iconR:!1}:r===e.length-1?e[r-1]?.hide?t[r]={iconL:!0}:t[r]={iconL:!1}:e[r-1]?.hide&&e[r+1]?.hide?t[r]={iconL:!0,iconR:!0}:e[r-1]?.hide?t[r]={iconL:!0,iconR:!1}:e[r+1]?.hide?t[r]={iconL:!1,iconR:!0}:t[r]={iconL:!1,iconR:!1};return t}},J9.hideButtonClassName="hide-arrow-btn",J9.hideButtonHoverClassName="hide-arrow-btn-hover",J9.hideIconLeftClassName="hide-icon-left",J9.hideIconRightClassName="hide-icon-right",J9),rf=AKi,pq,DKi=(pq=class{constructor(){this.setHotInstance=e=>{this.hotInstance=e;},this.registerOnSorting=e=>{this.onSorting=e;},this.showLoading=e=>{let t=this.hotInstance;if(!t)return;let r=t.getCell(-1,e,!0);r&&r.classList.add(pq.sortLoadingClassName);},this.sortColumn=(e,t)=>{let r=this.hotInstance;if(!r)return;let i=r.getPlugin("columnSorting");i&&(t===null?i.clearSort():r.batchRender(()=>{i.clearSort(),i.sort({column:e,sortOrder:t==="ASC"?"asc":"desc"});}),this.onSorting?.());};}},pq.sortLoadingClassName="sort-loading",pq.sortLoaderClassName="sort-loader",pq),mor=DKi,NKi='<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>',OKi=`<svg width="20" height="20" class="dot-icon" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
11878
11878
|
<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"/>
|
|
11879
11879
|
<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"/>
|
|
@@ -12730,7 +12730,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
12730
12730
|
${h.getButtonTheme().exportExcel?.icon}
|
|
12731
12731
|
`)}),s?"":d("txt_export_as_excel")]})})})}),c?(0,YC.jsxs)("div",{className:he("z-103 rounded-medium border-gray-120 w-44 border bg-white",se`
|
|
12732
12732
|
box-shadow: 0px 4px 16px 0px rgba(27, 80, 113, 0.08);
|
|
12733
|
-
`,se({"&&":h.getButtonTheme().exportExcel?.dropdown?.root})),style:g,ref:m.setFloating,children:[(0,YC.jsx)(oYn,{disabled:n,onClick:w,tooltipDisabledMessage:d("txt_unable_to_export"),className:he(se({"&&":h.getButtonTheme().exportExcel?.dropdown?.item,"&&&":n?h.getButtonTheme().exportExcel?.dropdown?.item?.[":disabled"]:""})),children:d("txt_export_all_rows")}),(0,YC.jsx)(oYn,{disabled:e,onClick:y,tooltipDisabledMessage:d("txt_unable_to_export"),className:he(se({"&&":h.getButtonTheme().exportExcel?.dropdown?.item,"&&&":e?h.getButtonTheme().exportExcel?.dropdown?.item?.[":disabled"]:""})),children:d("txt_export_error_rows")})]}):null]})},LJi=IJi,RJi=class{constructor(n){this.cleaningAIServices=n;}async getSuggestions(n,e,t){return await this.cleaningAIServices.getSuggestions(n,e,t)}groupSuggestions(n,e,t,r,i){let o=[...n];if(!e)return o;let s={};for(let l=0;l<t.length;l++)s[t[l].getKey()]=t[l].getLabel();let a={};for(let l=0;l<n.length;l++)a[n[l].column]=l;return e.forEach(l=>{for(let c in l.data){a[c]===void 0&&(a[c]=o.length);let u=a[c];o[u]===void 0&&(o[u]={column:c,columnLabel:s[c],suggestions:[]});let d=t.findIndex(p=>p.getKey()===c),h=`${l.rowIndex}_${d}`,f={id:h,rowIndex:l.rowIndex,colIndex:d,column:c,initRowIndex:l.rowIndex,initColIndex:d,value:l.data[c].value,suggestion:l.data[c].suggestion,isDisabled:t[d]?.isDisabled()};o[u].suggestions.push(f),r.current===null&&(r.current=[]),r.current.findIndex(p=>p.id===h)<0&&r.current.push({id:h,key:c,value:l.data[c].value,error_message:i[h]||"",suggested_value:l.data[c].suggestion,status:"ignored"});}}),o}},MJi=RJi,AJi=class{constructor(n,e={}){this.getHttpClient=()=>this.httpClient,this.httpClient=QM.create(e),this.sendApiKey=n.sendApiKey;}observableRequest(n){let e=this.httpClient.request(n);return new VY(t=>{e.then(r=>{t.next(r.data);}).catch(r=>{t.error(r);}).finally(()=>{t.complete();});})}get(n,e,t){let r={method:"GET",url:n,params:e,...t};return this.observableRequest(r)}post(n,e,t={}){let r={method:"POST",url:n,data:e,...t};return this.observableRequest(r)}put(n,e,t={}){let r={method:"PUT",url:n,data:e,...t};return this.observableRequest(r)}patch(n,e,t={}){let r={method:"PATCH",url:n,data:e,...t};return this.observableRequest(r)}delete(n,e={}){let t={method:"DELETE",url:n,...e};return this.observableRequest(t)}},DJi=class extends AJi{getSuggestions(n,e,t){let r={apikey:this.sendApiKey?"3n5E21bB0ZfpdrNOgWk8M3iDNkR1G3CB":void 0,Authorization:n,originRequest:e};return Blt(this.post("/cleaning-assistant",t,{headers:r}))}},NJi=DJi;function OJi(n,e){if(n===null||e===null)return !1;let t=n.getBoundingClientRect(),r=e.getBoundingClientRect();return !(t.right<r.left||t.left>r.right||t.bottom<r.top||t.top>r.bottom)}function TOt(n,e,t,r){if(!n||!e)return;let i=`${e.initRowIndex}_${e.initColIndex}`,o=n.findIndex(s=>s.id===i);o>=0&&(n[o].status=t,r&&(n[o]={...n[o],...r}));}var PJi=n=>{let{t:e}=pt(),t=Mn(),r=(0,ol.useRef)(!1),[i,o]=(0,ol.useState)(!1),[s,a]=(0,ol.useState)(!1),[l,c]=(0,ol.useState)([]),u=(0,ol.useRef)([]),[d,h]=(0,ol.useState)(-1),[f,p]=(0,ol.useState)([]),[m,g]=(0,ol.useState)(!1),b=n.cleaningAssistantLogsRef,v=n.setTotalCleanings,w=(0,ol.useRef)({}),y=(0,ol.useRef)(n.dataModelRegistry.getDataModels()),C=(0,ol.useRef)([]),_=(0,ol.useRef)(""),[x,k]=(0,ol.useState)(!1),[A,M]=(0,ol.useState)(!1),I=(0,ol.useRef)(void 0),D=(0,ol.useRef)(0),[W,S]=(0,ol.useState)(!1);(0,ol.useEffect)(()=>{if(W)return D.current>0?I.current=setInterval(()=>{D.current--,D.current===0&&(S(!1),clearInterval(D.current));},1e3):clearInterval(D.current),()=>{I.current!==void 0&&clearInterval(I.current);}},[W]);let T=(0,ol.useCallback)(()=>{k(!1);let N=n.validator.getError(),F=[],Z=[],j=5,U=n.hotInstance.current?.hotInstance;if(!U)return [];for(let ae=0;ae<N.length;ae++){let ue=N[ae]!==void 0&&N[ae].every(fe=>fe===null);if(N[ae]===void 0||ue){if(Z.length===j)continue;let fe=U.getDataAtRow(ae),Ce={};for(let Pe=0;Pe<fe.length;Pe++){if(!y.current[Pe])continue;let Ye=y.current[Pe].getKey();Ce[Ye]=fe[Pe];}Z.push(Ce);continue}let oe=U?.getSourceDataAtRow(ae)??{};F.push({rowIndex:ae,data:{}});let ce=F[F.length-1];for(let fe of y.current){let Ce=fe.getKey();ce.data[Ce]={value:oe[Ce]};}for(let fe of N[ae]){if(!fe||fe.colIndex<0)continue;let Ce=fe.colIndex,Pe=y.current[Ce].getKey(),Ye=ble.getValidateMessage(e,fe,n.dataModelRegistry.getColumns(),n.baseColumns),Le=`${ae}_${Ce}`;w.current[Le]=Ye,ce.data[Pe].info=[{message:Ye,level:"error"}];}}if(F.length===0)return [];let Y=y.current.map(ae=>({columnType:ae.getType(),key:ae.getKey(),validations:ae.getValidators().map(ue=>ue.serialize()),label:ae.getLabel(),description:ae.getDescription(),dropdownOptions:ae.isCategoryType()?ae.getOptions().map(ue=>({label:ue.label,value:ue.value,type:ue.type})):[],outputFormat:ae.getOutputFormat()})),ee=0,ie=Math.min(500,1500),te=[];for(;F.length>0;){let ae=F.splice(0,ie);if(te.push({error_data:ae,data_model:Y,clean_data:Z,session_id:n.sessionId,version:"4.0.1"}),ee+=ae.length,ee>=1500){k(!0);break}ie=Math.min(ie*2,2e3);}return te},[n,e]),L=()=>{p(N=>N.length===0?l[d]?.suggestions||[]:[]);},R=N=>{p(F=>{let Z=[...F],j=F.findIndex(U=>N.suggestion===U.suggestion);return j>=0?Z.splice(j,1):Z.push(N),Z});},P=(0,ol.useMemo)(()=>l.reduce((N,F)=>N+=F.suggestions.length,0),[l]),O=(0,ol.useCallback)(()=>{o(!0);},[]),q=(0,ol.useCallback)(()=>{o(!1);},[]);(0,ol.useLayoutEffect)(()=>{i&&!_.current&&setTimeout(()=>{let N=document.querySelector(".nuvo_cleaning-assistant-popover .nuvo-popover__content");if(!N)return;let F=window.getComputedStyle(N),Z=new WebKitCSSMatrix(F.transform);_.current=`translate(${Z.m41}px, ${Z.m42}px)`;},100);},[i]);let Q=(0,ol.useMemo)(()=>new MJi(new NJi({sendApiKey:!n.isSelfHosted},{baseURL:n.cleaningAPIUrl})),[n.cleaningAPIUrl,n.isSelfHosted]),J=(0,ol.useCallback)(()=>{if(W)return Promise.resolve();let N=T();return g(!1),a(!0),!N||N.length===0?(setTimeout(()=>{a(!1);},500),Promise.resolve()):(c([]),u.current=[],h(-1),p([]),new Promise(F=>{let Z=N.length,j=0;function U(Y){Y&&Q.getSuggestions(n.licenseKey,n.origin,Y).then(ee=>{ee.length>0&&(D.current=180,S(!0)),u.current=Q.groupSuggestions(u.current,ee,y.current,b,w.current),c(u.current);}).catch(ee=>{console.log(ee);}).finally(()=>{if(j++,N.length>0){let ee=N.shift();U(ee);}else j===Z&&(b.current&&v(b.current.length),a(!1),F());});}for(let Y=0;Y<8;Y++){let ee=N.shift();U(ee);}}))},[b,T,n.licenseKey,n.origin,W,Q,v]),re=()=>{h(-1),p([]);},X=(0,ol.useCallback)(N=>{let F=n.hotInstance.current?.hotInstance;if(F)try{let Z=F.toVisualRow(N.rowIndex),j=F.toVisualColumn(N.colIndex);F?.selectCell(Z,j,void 0,void 0,!1,!0),F?.scrollViewportTo({row:Z,col:j,horizontalSnap:"start",verticalSnap:"top"});let U=F.getCell(Z,j),Y=document.querySelector(".nuvo_cleaning-assistant-popover .nuvo-popover__content");if(U&&Y&&(Y.style.transform=_.current,OJi(Y,U))){let ee=window.getComputedStyle(Y),ie=new WebKitCSSMatrix(ee.transform),te=U.getBoundingClientRect(),ae=Y.getBoundingClientRect(),ue=Math.abs(ie.m41-(ae.right-te.left));Y.style.transform=`translate(${ue}px, ${ie.m42}px)`;}}catch{}},[n.hotInstance]),G=(0,ol.useCallback)((N,F)=>{c(Z=>{let j={};for(let ee=0;ee<N.length;ee++)j[N[ee].id]===void 0&&(j[N[ee].id]=!0);p(ee=>ee.filter(ie=>!j[ie.id]));let U=[...Z],Y=!1;for(let ee=U.length-1;ee>=0;ee--){let ie=[];for(let te=0;te<U[ee].suggestions.length;te++){let ae=U[ee].suggestions[te];j[ae.id]||ie.push(ae);}U[ee].suggestions=U[ee].suggestions.filter(te=>!j[te.id]),U[ee].suggestions.length===0&&(U.splice(ee,1),ee===d&&(Y=!0));}return Y&&h(-1),u.current=U,F&&F(),U});},[d]),B=(0,ol.useCallback)(N=>{let F=n.hotInstance.current?.hotInstance;if(!F)return;function Z(U,Y){return new Promise(ee=>{setTimeout(()=>{let ie=U.toVisualRow(Y.rowIndex),te=U.toVisualColumn(Y.colIndex);ie<0||te<0||(U?.setDataAtCell(ie,te,Y.suggestion,"CLEANING_ASSISTANT"),TOt(b.current,Y,"applied"),U.render(),ee());});})}N.length>1&&M(!0);let j=N.map(U=>Z(F,U));Promise.allSettled(j).then(()=>{F.render(),M(!1);});},[b,n.hotInstance]);return (0,ol.useEffect)(()=>{if(!n.cleaningAssistantEntryChangeObserverRef.current)return;let N=n.cleaningAssistantEntryChangeObserverRef.current.subscribe(F=>{F.actionType!=="create"&&F.sourceCols.forEach(Z=>{let j=y.current.findIndex(Y=>Y.getKey()===Z),U=`${F.rowIndex}_${j}`;for(let Y=0;Y<u.current.length;Y++){let ee=u.current[Y].suggestions.find(te=>te.id===U),ie=F.currentRowData[j];TOt(b.current,ee,"changed",{change_value:ie});}u.current.findIndex(Y=>Y.suggestions.find(ee=>ee.id===U)!==void 0)>=0&&G([{id:U}]);});});return ()=>{N.unsubscribe();}},[b,G,n.cleaningAssistantEntryChangeObserverRef]),(0,ol.useEffect)(()=>{if(!n.cleaningAssistantRemoveRowObserverRef.current)return;let N=n.cleaningAssistantRemoveRowObserverRef.current.subscribe(({type:F,rows:Z})=>{let j=n.hotInstance.current?.hotInstance,U=u.current;if(j){if(F==="before"){let Y=[];for(let ee=0;ee<U.length;ee++)for(let ie=0;ie<U[ee].suggestions.length;ie++){let te=U[ee].suggestions[ie],ae=0,ue="";for(let oe=0;oe<Z.length;oe++){let ce=j.toPhysicalRow(Z[oe]);te.rowIndex>ce?ae++:te.rowIndex===ce&&(ue="d",Y.push(te));}te.rowIndex-=ae,te.id=`${te.rowIndex}_${te.colIndex}${ue}`;}C.current=Y;}if(F==="after"){let Y=[],ee=n.validator.getError();for(let ie=0;ie<U.length;ie++)for(let te=0;te<U[ie].suggestions.length;te++){let ae=U[ie].suggestions[te];ee[ae.rowIndex]&&!ee[ae.rowIndex][ae.colIndex]&&Y.push(ae);}C.current=[...C.current,...Y],C.current.forEach(ie=>{TOt(b.current,ie,"deleted");}),G(C.current,()=>{C.current=[];});}}});return ()=>{N.unsubscribe();}},[b,J,G,T,n.cleaningAssistantRemoveRowObserverRef,n.hotInstance,n.validator]),{...n,open:i,setOpen:o,loading:s,setLoading:a,onOpenPopover:O,onDismissPopover:q,getSuggestions:J,groups:l,setGroups:c,selectedGroupIndex:d,setSelectedGroupIndex:h,initialLoaded:r,count:P,selectedSuggestions:f,setSelectedSuggestions:p,onSelectAll:L,onSelectSuggestion:R,onFind:X,onDismiss:G,onApply:B,onBackClick:re,theme:t,showErrorMessage:m,setShowErrorMessage:g,showRowLimitMessage:x,refreshDisabled:W,setRefreshDisabled:S,disableRefreshCountdownRef:D,isApplying:A}},QI=(0,gsr.createContext)({}),FJi=n=>{let e=n.theme.getCleaningAssistantTheme();return {rootClass:he(["nuvo_cleaning-assistant-popover",se`
|
|
12733
|
+
`,se({"&&":h.getButtonTheme().exportExcel?.dropdown?.root})),style:g,ref:m.setFloating,children:[(0,YC.jsx)(oYn,{disabled:n,onClick:w,tooltipDisabledMessage:d("txt_unable_to_export"),className:he(se({"&&":h.getButtonTheme().exportExcel?.dropdown?.item,"&&&":n?h.getButtonTheme().exportExcel?.dropdown?.item?.[":disabled"]:""})),children:d("txt_export_all_rows")}),(0,YC.jsx)(oYn,{disabled:e,onClick:y,tooltipDisabledMessage:d("txt_unable_to_export"),className:he(se({"&&":h.getButtonTheme().exportExcel?.dropdown?.item,"&&&":e?h.getButtonTheme().exportExcel?.dropdown?.item?.[":disabled"]:""})),children:d("txt_export_error_rows")})]}):null]})},LJi=IJi,RJi=class{constructor(n){this.cleaningAIServices=n;}async getSuggestions(n,e,t){return await this.cleaningAIServices.getSuggestions(n,e,t)}groupSuggestions(n,e,t,r,i){let o=[...n];if(!e)return o;let s={};for(let l=0;l<t.length;l++)s[t[l].getKey()]=t[l].getLabel();let a={};for(let l=0;l<n.length;l++)a[n[l].column]=l;return e.forEach(l=>{for(let c in l.data){a[c]===void 0&&(a[c]=o.length);let u=a[c];o[u]===void 0&&(o[u]={column:c,columnLabel:s[c],suggestions:[]});let d=t.findIndex(p=>p.getKey()===c),h=`${l.rowIndex}_${d}`,f={id:h,rowIndex:l.rowIndex,colIndex:d,column:c,initRowIndex:l.rowIndex,initColIndex:d,value:l.data[c].value,suggestion:l.data[c].suggestion,isDisabled:t[d]?.isDisabled()};o[u].suggestions.push(f),r.current===null&&(r.current=[]),r.current.findIndex(p=>p.id===h)<0&&r.current.push({id:h,key:c,value:l.data[c].value,error_message:i[h]||"",suggested_value:l.data[c].suggestion,status:"ignored"});}}),o}},MJi=RJi,AJi=class{constructor(n,e={}){this.getHttpClient=()=>this.httpClient,this.httpClient=QM.create(e),this.sendApiKey=n.sendApiKey;}observableRequest(n){let e=this.httpClient.request(n);return new VY(t=>{e.then(r=>{t.next(r.data);}).catch(r=>{t.error(r);}).finally(()=>{t.complete();});})}get(n,e,t){let r={method:"GET",url:n,params:e,...t};return this.observableRequest(r)}post(n,e,t={}){let r={method:"POST",url:n,data:e,...t};return this.observableRequest(r)}put(n,e,t={}){let r={method:"PUT",url:n,data:e,...t};return this.observableRequest(r)}patch(n,e,t={}){let r={method:"PATCH",url:n,data:e,...t};return this.observableRequest(r)}delete(n,e={}){let t={method:"DELETE",url:n,...e};return this.observableRequest(t)}},DJi=class extends AJi{getSuggestions(n,e,t){let r={apikey:this.sendApiKey?"3n5E21bB0ZfpdrNOgWk8M3iDNkR1G3CB":void 0,Authorization:n,originRequest:e};return Blt(this.post("/cleaning-assistant",t,{headers:r}))}},NJi=DJi;function OJi(n,e){if(n===null||e===null)return !1;let t=n.getBoundingClientRect(),r=e.getBoundingClientRect();return !(t.right<r.left||t.left>r.right||t.bottom<r.top||t.top>r.bottom)}function TOt(n,e,t,r){if(!n||!e)return;let i=`${e.initRowIndex}_${e.initColIndex}`,o=n.findIndex(s=>s.id===i);o>=0&&(n[o].status=t,r&&(n[o]={...n[o],...r}));}var PJi=n=>{let{t:e}=pt(),t=Mn(),r=(0,ol.useRef)(!1),[i,o]=(0,ol.useState)(!1),[s,a]=(0,ol.useState)(!1),[l,c]=(0,ol.useState)([]),u=(0,ol.useRef)([]),[d,h]=(0,ol.useState)(-1),[f,p]=(0,ol.useState)([]),[m,g]=(0,ol.useState)(!1),b=n.cleaningAssistantLogsRef,v=n.setTotalCleanings,w=(0,ol.useRef)({}),y=(0,ol.useRef)(n.dataModelRegistry.getDataModels()),C=(0,ol.useRef)([]),_=(0,ol.useRef)(""),[x,k]=(0,ol.useState)(!1),[A,M]=(0,ol.useState)(!1),I=(0,ol.useRef)(void 0),D=(0,ol.useRef)(0),[W,S]=(0,ol.useState)(!1);(0,ol.useEffect)(()=>{if(W)return D.current>0?I.current=setInterval(()=>{D.current--,D.current===0&&(S(!1),clearInterval(D.current));},1e3):clearInterval(D.current),()=>{I.current!==void 0&&clearInterval(I.current);}},[W]);let T=(0,ol.useCallback)(()=>{k(!1);let N=n.validator.getError(),F=[],Z=[],j=5,U=n.hotInstance.current?.hotInstance;if(!U)return [];for(let ae=0;ae<N.length;ae++){let ue=N[ae]!==void 0&&N[ae].every(fe=>fe===null);if(N[ae]===void 0||ue){if(Z.length===j)continue;let fe=U.getDataAtRow(ae),Ce={};for(let Pe=0;Pe<fe.length;Pe++){if(!y.current[Pe])continue;let Ye=y.current[Pe].getKey();Ce[Ye]=fe[Pe];}Z.push(Ce);continue}let oe=U?.getSourceDataAtRow(ae)??{};F.push({rowIndex:ae,data:{}});let ce=F[F.length-1];for(let fe of y.current){let Ce=fe.getKey();ce.data[Ce]={value:oe[Ce]};}for(let fe of N[ae]){if(!fe||fe.colIndex<0)continue;let Ce=fe.colIndex,Pe=y.current[Ce].getKey(),Ye=ble.getValidateMessage(e,fe,n.dataModelRegistry.getColumns(),n.baseColumns),Le=`${ae}_${Ce}`;w.current[Le]=Ye,ce.data[Pe].info=[{message:Ye,level:"error"}];}}if(F.length===0)return [];let Y=y.current.map(ae=>({columnType:ae.getType(),key:ae.getKey(),validations:ae.getValidators().map(ue=>ue.serialize()),label:ae.getLabel(),description:ae.getDescription(),dropdownOptions:ae.isCategoryType()?ae.getOptions().map(ue=>({label:ue.label,value:ue.value,type:ue.type})):[],outputFormat:ae.getOutputFormat()})),ee=0,ie=Math.min(500,1500),te=[];for(;F.length>0;){let ae=F.splice(0,ie);if(te.push({error_data:ae,data_model:Y,clean_data:Z,session_id:n.sessionId,version:"4.0.2"}),ee+=ae.length,ee>=1500){k(!0);break}ie=Math.min(ie*2,2e3);}return te},[n,e]),L=()=>{p(N=>N.length===0?l[d]?.suggestions||[]:[]);},R=N=>{p(F=>{let Z=[...F],j=F.findIndex(U=>N.suggestion===U.suggestion);return j>=0?Z.splice(j,1):Z.push(N),Z});},P=(0,ol.useMemo)(()=>l.reduce((N,F)=>N+=F.suggestions.length,0),[l]),O=(0,ol.useCallback)(()=>{o(!0);},[]),q=(0,ol.useCallback)(()=>{o(!1);},[]);(0,ol.useLayoutEffect)(()=>{i&&!_.current&&setTimeout(()=>{let N=document.querySelector(".nuvo_cleaning-assistant-popover .nuvo-popover__content");if(!N)return;let F=window.getComputedStyle(N),Z=new WebKitCSSMatrix(F.transform);_.current=`translate(${Z.m41}px, ${Z.m42}px)`;},100);},[i]);let Q=(0,ol.useMemo)(()=>new MJi(new NJi({sendApiKey:!n.isSelfHosted},{baseURL:n.cleaningAPIUrl})),[n.cleaningAPIUrl,n.isSelfHosted]),J=(0,ol.useCallback)(()=>{if(W)return Promise.resolve();let N=T();return g(!1),a(!0),!N||N.length===0?(setTimeout(()=>{a(!1);},500),Promise.resolve()):(c([]),u.current=[],h(-1),p([]),new Promise(F=>{let Z=N.length,j=0;function U(Y){Y&&Q.getSuggestions(n.licenseKey,n.origin,Y).then(ee=>{ee.length>0&&(D.current=180,S(!0)),u.current=Q.groupSuggestions(u.current,ee,y.current,b,w.current),c(u.current);}).catch(ee=>{console.log(ee);}).finally(()=>{if(j++,N.length>0){let ee=N.shift();U(ee);}else j===Z&&(b.current&&v(b.current.length),a(!1),F());});}for(let Y=0;Y<8;Y++){let ee=N.shift();U(ee);}}))},[b,T,n.licenseKey,n.origin,W,Q,v]),re=()=>{h(-1),p([]);},X=(0,ol.useCallback)(N=>{let F=n.hotInstance.current?.hotInstance;if(F)try{let Z=F.toVisualRow(N.rowIndex),j=F.toVisualColumn(N.colIndex);F?.selectCell(Z,j,void 0,void 0,!1,!0),F?.scrollViewportTo({row:Z,col:j,horizontalSnap:"start",verticalSnap:"top"});let U=F.getCell(Z,j),Y=document.querySelector(".nuvo_cleaning-assistant-popover .nuvo-popover__content");if(U&&Y&&(Y.style.transform=_.current,OJi(Y,U))){let ee=window.getComputedStyle(Y),ie=new WebKitCSSMatrix(ee.transform),te=U.getBoundingClientRect(),ae=Y.getBoundingClientRect(),ue=Math.abs(ie.m41-(ae.right-te.left));Y.style.transform=`translate(${ue}px, ${ie.m42}px)`;}}catch{}},[n.hotInstance]),G=(0,ol.useCallback)((N,F)=>{c(Z=>{let j={};for(let ee=0;ee<N.length;ee++)j[N[ee].id]===void 0&&(j[N[ee].id]=!0);p(ee=>ee.filter(ie=>!j[ie.id]));let U=[...Z],Y=!1;for(let ee=U.length-1;ee>=0;ee--){let ie=[];for(let te=0;te<U[ee].suggestions.length;te++){let ae=U[ee].suggestions[te];j[ae.id]||ie.push(ae);}U[ee].suggestions=U[ee].suggestions.filter(te=>!j[te.id]),U[ee].suggestions.length===0&&(U.splice(ee,1),ee===d&&(Y=!0));}return Y&&h(-1),u.current=U,F&&F(),U});},[d]),B=(0,ol.useCallback)(N=>{let F=n.hotInstance.current?.hotInstance;if(!F)return;function Z(U,Y){return new Promise(ee=>{setTimeout(()=>{let ie=U.toVisualRow(Y.rowIndex),te=U.toVisualColumn(Y.colIndex);ie<0||te<0||(U?.setDataAtCell(ie,te,Y.suggestion,"CLEANING_ASSISTANT"),TOt(b.current,Y,"applied"),U.render(),ee());});})}N.length>1&&M(!0);let j=N.map(U=>Z(F,U));Promise.allSettled(j).then(()=>{F.render(),M(!1);});},[b,n.hotInstance]);return (0,ol.useEffect)(()=>{if(!n.cleaningAssistantEntryChangeObserverRef.current)return;let N=n.cleaningAssistantEntryChangeObserverRef.current.subscribe(F=>{F.actionType!=="create"&&F.sourceCols.forEach(Z=>{let j=y.current.findIndex(Y=>Y.getKey()===Z),U=`${F.rowIndex}_${j}`;for(let Y=0;Y<u.current.length;Y++){let ee=u.current[Y].suggestions.find(te=>te.id===U),ie=F.currentRowData[j];TOt(b.current,ee,"changed",{change_value:ie});}u.current.findIndex(Y=>Y.suggestions.find(ee=>ee.id===U)!==void 0)>=0&&G([{id:U}]);});});return ()=>{N.unsubscribe();}},[b,G,n.cleaningAssistantEntryChangeObserverRef]),(0,ol.useEffect)(()=>{if(!n.cleaningAssistantRemoveRowObserverRef.current)return;let N=n.cleaningAssistantRemoveRowObserverRef.current.subscribe(({type:F,rows:Z})=>{let j=n.hotInstance.current?.hotInstance,U=u.current;if(j){if(F==="before"){let Y=[];for(let ee=0;ee<U.length;ee++)for(let ie=0;ie<U[ee].suggestions.length;ie++){let te=U[ee].suggestions[ie],ae=0,ue="";for(let oe=0;oe<Z.length;oe++){let ce=j.toPhysicalRow(Z[oe]);te.rowIndex>ce?ae++:te.rowIndex===ce&&(ue="d",Y.push(te));}te.rowIndex-=ae,te.id=`${te.rowIndex}_${te.colIndex}${ue}`;}C.current=Y;}if(F==="after"){let Y=[],ee=n.validator.getError();for(let ie=0;ie<U.length;ie++)for(let te=0;te<U[ie].suggestions.length;te++){let ae=U[ie].suggestions[te];ee[ae.rowIndex]&&!ee[ae.rowIndex][ae.colIndex]&&Y.push(ae);}C.current=[...C.current,...Y],C.current.forEach(ie=>{TOt(b.current,ie,"deleted");}),G(C.current,()=>{C.current=[];});}}});return ()=>{N.unsubscribe();}},[b,J,G,T,n.cleaningAssistantRemoveRowObserverRef,n.hotInstance,n.validator]),{...n,open:i,setOpen:o,loading:s,setLoading:a,onOpenPopover:O,onDismissPopover:q,getSuggestions:J,groups:l,setGroups:c,selectedGroupIndex:d,setSelectedGroupIndex:h,initialLoaded:r,count:P,selectedSuggestions:f,setSelectedSuggestions:p,onSelectAll:L,onSelectSuggestion:R,onFind:X,onDismiss:G,onApply:B,onBackClick:re,theme:t,showErrorMessage:m,setShowErrorMessage:g,showRowLimitMessage:x,refreshDisabled:W,setRefreshDisabled:S,disableRefreshCountdownRef:D,isApplying:A}},QI=(0,gsr.createContext)({}),FJi=n=>{let e=n.theme.getCleaningAssistantTheme();return {rootClass:he(["nuvo_cleaning-assistant-popover",se`
|
|
12734
12734
|
& .nuvo-popover__content {
|
|
12735
12735
|
padding: 0;
|
|
12736
12736
|
}
|
|
@@ -13375,7 +13375,7 @@ return ${ue}
|
|
|
13375
13375
|
&::before {
|
|
13376
13376
|
border: 1px solid ${"#ED7070"};
|
|
13377
13377
|
}
|
|
13378
|
-
`:"",o)})]})}),r.current):null},Hws=()=>{let{t:n}=pt();return {getValidateMessage:(0,jdr.useCallback)((e,t,r)=>ble.getValidateMessage(n,e,t,r),[n])}},Wws=({parentTableElementRef:n,errors:e,hoverIndex:t,columnIndex:r,outputData:i,columns:o,theme:s})=>{let a=(0,Vq.useRef)([]),l=(0,Vq.useMemo)(()=>new Nws(!1,"default-popper"),[]),{getValidateMessage:c}=Hws(),u=(0,Vq.useRef)(null);return (0,Vq.useEffect)(()=>{let d=e[t]?.[r],h=kJe.isCellError(i[t]?.[0]),f=i[t]?.[0]?.errorMessage?.length>45,p=document.getElementById(`row-data-${t}`),m=()=>d?.validateMsg??c(d,o,o)??"",g=()=>i[t]?.[0]?.errorMessage,b=h&&f?[{level:"error",message:g()}]:d&&!h?[{level:"error",message:m()}]:[],v=p?.getElementsByTagName("span")[0];if(v&&v.scrollWidth>v.clientWidth?a.current=[{level:"info",message:v.textContent||""},...b]:a.current=b,a.current.length===0){setTimeout(()=>{l.destroy();},0);return}p&&a.current.length&&l.changeRootElement(p,u.current,n.current,Pws(a.current),"#arrow-message-info-error","bottom",!0);},[e,t,r,c,o,l,i,n]),(0,Udr.jsx)(Bws,{popperElementRef:u,container:n,stackedMessagePopper:l,popoverMessage:a,rootClassName:se({div:s.table?.popover}),arrowClassName:se({"&:before":s.table?.popover})})},qdr=({actions:n,theme:e,icon:t,text:r,textClassName:i,className:o})=>{let{modal:s}=Wc(),[a,l]=(0,Wle.useState)(null);(0,Wle.useLayoutEffect)(()=>{let u=document.getElementById(zs.APP_ROOT);l(u);let d="",h="";return e?.root?.position!=="absolute"&&u?.style&&(d=u.style.overflow,h=u.style.position,u.style.overflow="hidden",u.style.position="relative",u.style.height="100%"),()=>{u?.style&&(u.style.overflow=d,u.style.position=h,u.style.height="auto");}},[e]);let c=(0,Wle.useMemo)(()=>(0,UE.jsx)("div",{className:he(bM,"absolute left-0 top-0 z-50 h-full w-full",o),children:(0,UE.jsxs)("div",{role:"dialog","aria-modal":"true","aria-labelledby":"loading-title",className:he("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",se`
|
|
13378
|
+
`:"",o)})]})}),r.current):null},Hws=()=>{let{t:n}=pt();return {getValidateMessage:(0,jdr.useCallback)((e,t,r)=>ble.getValidateMessage(n,e,t,r),[n])}},Wws=({parentTableElementRef:n,errors:e,hoverIndex:t,columnIndex:r,outputData:i,columns:o,theme:s})=>{let a=(0,Vq.useRef)([]),l=(0,Vq.useMemo)(()=>new Nws(!1,"default-popper"),[]),{getValidateMessage:c}=Hws(),u=(0,Vq.useRef)(null);return (0,Vq.useEffect)(()=>{let d=e[t]?.[r],h=kJe.isCellError(i[t]?.[0]),f=i[t]?.[0]?.errorMessage?.length>45,p=document.getElementById(`row-data-${t}`),m=()=>d?.validateMsg??c(d,o,o)??"",g=()=>i[t]?.[0]?.errorMessage,b=h&&f?[{level:"error",message:g()}]:d&&!h?[{level:"error",message:m()}]:[],v=p?.getElementsByTagName("span")[0];if(v&&v.scrollWidth>v.clientWidth?a.current=[{level:"info",message:v.textContent||""},...b]:a.current=b,a.current.length===0){setTimeout(()=>{l.destroy();},0);return}p&&a.current.length&&l.changeRootElement(p,u.current,n.current,Pws(a.current),"#arrow-message-info-error","bottom",!0);},[e,t,r,c,o,l,i,n]),(0,Udr.jsx)(Bws,{popperElementRef:u,container:n,stackedMessagePopper:l,popoverMessage:a,rootClassName:se({div:s.table?.popover}),arrowClassName:se({"&:before":s.table?.popover})})},qdr=({actions:n,theme:e,icon:t,text:r,textClassName:i,className:o})=>{let{modal:s}=Wc(),[a,l]=(0,Wle.useState)(null);(0,Wle.useLayoutEffect)(()=>{let u=document.getElementById(zs.APP_ROOT);l(u);let d="",h="";return e?.root?.position!=="absolute"&&u?.style&&(d=u.style.overflow,h=u.style.position,u.style.overflow="hidden",u.style.position="relative",u.style.height="100%"),()=>{u?.style&&(u.style.overflow=d,u.style.position=h,s?u.style.height="auto":u.style.height="inherit");}},[s,e]);let c=(0,Wle.useMemo)(()=>(0,UE.jsx)("div",{className:he(bM,"absolute left-0 top-0 z-50 h-full w-full",o),children:(0,UE.jsxs)("div",{role:"dialog","aria-modal":"true","aria-labelledby":"loading-title",className:he("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",se`
|
|
13379
13379
|
z-index: 10000;
|
|
13380
13380
|
backdrop-filter: blur(20px);
|
|
13381
13381
|
-webkit-backdrop-filter: blur(20px);
|