@secondstaxorg/sscomp 1.7.67 → 1.7.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +12 -11
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +318 -284
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +7 -6
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/CountrySelector/type.d.ts +7 -0
- package/types/components/DatePicker/type.d.ts +4 -0
- package/types/components/DateRangePicker/type.d.ts +4 -0
- package/types/components/DropdownList/type.d.ts +4 -0
- package/types/components/NumberField/NumberField.d.ts +3 -2
- package/types/components/NumberField/type.d.ts +5 -1
- package/types/components/PhoneInput/type.d.ts +7 -0
- package/types/components/Selector/types.d.ts +4 -0
- package/types/components/TextArea/type.d.ts +7 -0
- package/types/components/TextField/type.d.ts +7 -0
package/dist/index.js
CHANGED
|
@@ -16567,7 +16567,7 @@ const _jsxFileName$U = "D:\\SSX\\Project\\Component Library\\sscomp\\src\\compon
|
|
|
16567
16567
|
* Dropdown selector for selecting <b>countries</b> or <b>currencies</b>
|
|
16568
16568
|
*/
|
|
16569
16569
|
const CountrySelector = (props) => {
|
|
16570
|
-
const {options,selectedOption,initialCountry,label,placeholder,searchable,sectionTitle,required,inputName} = props;
|
|
16570
|
+
const {options,selectedOption,initialCountry,label,placeholder,searchable,sectionTitle,required,inputName,readonly} = props;
|
|
16571
16571
|
const [opened,setOpened] = React$1.useState(false);
|
|
16572
16572
|
const [passedOption,setPassedOption] = React$1.useState({});
|
|
16573
16573
|
const [optionsOri,setOptionsOri] = React$1.useState([]);
|
|
@@ -16582,7 +16582,6 @@ const CountrySelector = (props) => {
|
|
|
16582
16582
|
|
|
16583
16583
|
React$1.useEffect(()=>{
|
|
16584
16584
|
if (initialCountry){
|
|
16585
|
-
console.log(initialCountry);
|
|
16586
16585
|
let opt = options.filter((option) => option.optionName.toLowerCase() === _optionalChain$1([initialCountry, 'optionalAccess', _ => _.toLowerCase, 'call', _2 => _2()]) || option.optionShortName.toLowerCase() === _optionalChain$1([initialCountry, 'optionalAccess', _3 => _3.toLowerCase, 'call', _4 => _4()]));
|
|
16587
16586
|
setInitText(opt.length > 0 ? opt[0].optionName : initialCountry);
|
|
16588
16587
|
setImgFile(opt.length > 0 && opt[0].optionFlag ? opt[0].optionFlag : img$7);
|
|
@@ -16667,13 +16666,13 @@ const CountrySelector = (props) => {
|
|
|
16667
16666
|
}
|
|
16668
16667
|
|
|
16669
16668
|
return (
|
|
16670
|
-
React$1.createElement(DropdownContainer, {__self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16669
|
+
React$1.createElement(DropdownContainer, {__self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 119}}
|
|
16671
16670
|
, label &&
|
|
16672
|
-
React$1.createElement(LabelContainer, {__self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16673
|
-
, React$1.createElement('label', { className: "paragraph2Medium", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16671
|
+
React$1.createElement(LabelContainer, {__self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 121}}
|
|
16672
|
+
, React$1.createElement('label', { className: "paragraph2Medium", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 122}}, label)
|
|
16674
16673
|
)
|
|
16675
16674
|
|
|
16676
|
-
, React$1.createElement(DropdownField$2, { className: `dropdown-field-container ${selStatus}`, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16675
|
+
, React$1.createElement(DropdownField$2, { className: `dropdown-field-container ${selStatus}`, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 125}}
|
|
16677
16676
|
, React$1.createElement('button', { ref: buttonRef, type: "button", className: "country-selector", onBlur: ()=>{
|
|
16678
16677
|
if (!searchable){
|
|
16679
16678
|
setTimeout(()=>{
|
|
@@ -16686,9 +16685,10 @@ const CountrySelector = (props) => {
|
|
|
16686
16685
|
setOpened(false);
|
|
16687
16686
|
},100);
|
|
16688
16687
|
}else {
|
|
16688
|
+
if (readonly) return
|
|
16689
16689
|
setOpened(true);
|
|
16690
16690
|
}
|
|
16691
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16691
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 126}}
|
|
16692
16692
|
)
|
|
16693
16693
|
, React$1.createElement('input', { className: "sr-only", value: srVal, required: required, onChange: ()=>{}, onInvalid: ()=>{setSelStatus('error');}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 143}})
|
|
16694
16694
|
, React$1.createElement('input', { className: "input-field", value: srVal, onChange: ()=>{}, name: inputName, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 144}})
|
|
@@ -16708,44 +16708,48 @@ const CountrySelector = (props) => {
|
|
|
16708
16708
|
)
|
|
16709
16709
|
, React$1.createElement(DropdownIcon$2, { className: opened ? 'expanded' : 'collapsed', onMouseUp: ()=>{
|
|
16710
16710
|
if (!opened){
|
|
16711
|
+
if (readonly) return
|
|
16711
16712
|
buttonRef.current.focus();
|
|
16712
16713
|
setOpened(true);
|
|
16713
16714
|
}
|
|
16714
16715
|
}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 159}}
|
|
16715
|
-
, React$1.createElement('svg', { width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16716
|
-
, React$1.createElement('path', { d: "M10.9999 1.17C10.8126 0.983753 10.5591 0.879211 10.2949 0.879211C10.0308 0.879211 9.77731 0.983753 9.58995 1.17L5.99995 4.71L2.45995 1.17C2.27259 0.983753 2.01913 0.879211 1.75495 0.879211C1.49076 0.879211 1.23731 0.983753 1.04995 1.17C0.95622 1.26297 0.881826 1.37357 0.831057 1.49543C0.780288 1.61729 0.75415 1.74799 0.75415 1.88C0.75415 2.01202 0.780288 2.14272 0.831057 2.26458C0.881826 2.38644 0.95622 2.49704 1.04995 2.59L5.28995 6.83C5.38291 6.92373 5.49351 6.99813 5.61537 7.04889C5.73723 7.09966 5.86794 7.1258 5.99995 7.1258C6.13196 7.1258 6.26267 7.09966 6.38453 7.04889C6.50638 6.99813 6.61699 6.92373 6.70995 6.83L10.9999 2.59C11.0937 2.49704 11.1681 2.38644 11.2188 2.26458C11.2696 2.14272 11.2957 2.01202 11.2957 1.88C11.2957 1.74799 11.2696 1.61729 11.2188 1.49543C11.1681 1.37357 11.0937 1.26297 10.9999 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16716
|
+
, React$1.createElement('svg', { width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 166}}
|
|
16717
|
+
, React$1.createElement('path', { d: "M10.9999 1.17C10.8126 0.983753 10.5591 0.879211 10.2949 0.879211C10.0308 0.879211 9.77731 0.983753 9.58995 1.17L5.99995 4.71L2.45995 1.17C2.27259 0.983753 2.01913 0.879211 1.75495 0.879211C1.49076 0.879211 1.23731 0.983753 1.04995 1.17C0.95622 1.26297 0.881826 1.37357 0.831057 1.49543C0.780288 1.61729 0.75415 1.74799 0.75415 1.88C0.75415 2.01202 0.780288 2.14272 0.831057 2.26458C0.881826 2.38644 0.95622 2.49704 1.04995 2.59L5.28995 6.83C5.38291 6.92373 5.49351 6.99813 5.61537 7.04889C5.73723 7.09966 5.86794 7.1258 5.99995 7.1258C6.13196 7.1258 6.26267 7.09966 6.38453 7.04889C6.50638 6.99813 6.61699 6.92373 6.70995 6.83L10.9999 2.59C11.0937 2.49704 11.1681 2.38644 11.2188 2.26458C11.2696 2.14272 11.2957 2.01202 11.2957 1.88C11.2957 1.74799 11.2696 1.61729 11.2188 1.49543C11.1681 1.37357 11.0937 1.26297 10.9999 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 167}})
|
|
16717
16718
|
)
|
|
16718
16719
|
)
|
|
16719
16720
|
, opened &&
|
|
16720
16721
|
React$1.createElement(React$1.Fragment, null
|
|
16721
16722
|
, options && options.length > 0 &&
|
|
16722
|
-
React$1.createElement(OptionsList$2, { className: "dropdown-list", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16723
|
+
React$1.createElement(OptionsList$2, { className: "dropdown-list", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 173}}
|
|
16723
16724
|
, searchable && opened &&
|
|
16724
|
-
React$1.createElement('div', { className: "search-field", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16725
|
-
, React$1.createElement('svg', { width: "16", height: "16", viewBox: "0 0 16 16" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16726
|
-
, React$1.createElement('g', { clipPath: "url(#clip0_2834_8051)", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16727
|
-
, React$1.createElement('path', { d: "M14.4733 13.5267L12 11.0733C12.9601 9.87627 13.425 8.35686 13.2992 6.82753C13.1734 5.2982 12.4664 3.87519 11.3237 2.85109C10.1809 1.827 8.6892 1.27967 7.15528 1.32164C5.62136 1.36362 4.16181 1.99171 3.07676 3.07676C1.99171 4.16181 1.36362 5.62136 1.32164 7.15528C1.27967 8.6892 1.827 10.1809 2.85109 11.3237C3.87519 12.4664 5.2982 13.1734 6.82753 13.2992C8.35686 13.425 9.87627 12.9601 11.0733 12L13.5267 14.4533C13.5886 14.5158 13.6624 14.5654 13.7436 14.5993C13.8249 14.6331 13.912 14.6505 14 14.6505C14.088 14.6505 14.1751 14.6331 14.2564 14.5993C14.3376 14.5654 14.4114 14.5158 14.4733 14.4533C14.5935 14.329 14.6607 14.1629 14.6607 13.99C14.6607 13.8171 14.5935 13.651 14.4733 13.5267ZM7.33333 12C6.41035 12 5.5081 11.7263 4.74067 11.2135C3.97324 10.7007 3.3751 9.97191 3.02189 9.11919C2.66868 8.26646 2.57627 7.32815 2.75633 6.42291C2.9364 5.51766 3.38085 4.68614 4.0335 4.0335C4.68614 3.38085 5.51766 2.9364 6.42291 2.75633C7.32815 2.57627 8.26646 2.66868 9.11919 3.02189C9.97191 3.3751 10.7007 3.97324 11.2135 4.74067C11.7263 5.5081 12 6.41035 12 7.33333C12 8.57101 11.5083 9.75799 10.6332 10.6332C9.75799 11.5083 8.57101 12 7.33333 12Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16725
|
+
React$1.createElement('div', { className: "search-field", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 175}}
|
|
16726
|
+
, React$1.createElement('svg', { width: "16", height: "16", viewBox: "0 0 16 16" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 176}}
|
|
16727
|
+
, React$1.createElement('g', { clipPath: "url(#clip0_2834_8051)", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 177}}
|
|
16728
|
+
, React$1.createElement('path', { d: "M14.4733 13.5267L12 11.0733C12.9601 9.87627 13.425 8.35686 13.2992 6.82753C13.1734 5.2982 12.4664 3.87519 11.3237 2.85109C10.1809 1.827 8.6892 1.27967 7.15528 1.32164C5.62136 1.36362 4.16181 1.99171 3.07676 3.07676C1.99171 4.16181 1.36362 5.62136 1.32164 7.15528C1.27967 8.6892 1.827 10.1809 2.85109 11.3237C3.87519 12.4664 5.2982 13.1734 6.82753 13.2992C8.35686 13.425 9.87627 12.9601 11.0733 12L13.5267 14.4533C13.5886 14.5158 13.6624 14.5654 13.7436 14.5993C13.8249 14.6331 13.912 14.6505 14 14.6505C14.088 14.6505 14.1751 14.6331 14.2564 14.5993C14.3376 14.5654 14.4114 14.5158 14.4733 14.4533C14.5935 14.329 14.6607 14.1629 14.6607 13.99C14.6607 13.8171 14.5935 13.651 14.4733 13.5267ZM7.33333 12C6.41035 12 5.5081 11.7263 4.74067 11.2135C3.97324 10.7007 3.3751 9.97191 3.02189 9.11919C2.66868 8.26646 2.57627 7.32815 2.75633 6.42291C2.9364 5.51766 3.38085 4.68614 4.0335 4.0335C4.68614 3.38085 5.51766 2.9364 6.42291 2.75633C7.32815 2.57627 8.26646 2.66868 9.11919 3.02189C9.97191 3.3751 10.7007 3.97324 11.2135 4.74067C11.7263 5.5081 12 6.41035 12 7.33333C12 8.57101 11.5083 9.75799 10.6332 10.6332C9.75799 11.5083 8.57101 12 7.33333 12Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 178}})
|
|
16728
16729
|
)
|
|
16729
|
-
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16730
|
-
, React$1.createElement('clipPath', { id: "clip0_2834_8051", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16731
|
-
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16730
|
+
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 180}}
|
|
16731
|
+
, React$1.createElement('clipPath', { id: "clip0_2834_8051", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 181}}
|
|
16732
|
+
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 182}})
|
|
16732
16733
|
)
|
|
16733
16734
|
)
|
|
16734
16735
|
)
|
|
16735
|
-
, React$1.createElement('input', { type: "text", placeholder: "Search", value: qryStr, onChange: (e)=>{filterList(e.target.value);}, className: "country-selector search-input" , autoFocus: true, onFocus: ()=>{
|
|
16736
|
+
, React$1.createElement('input', { type: "text", placeholder: "Search", value: qryStr, onChange: (e)=>{filterList(e.target.value);}, className: "country-selector search-input" , autoFocus: true, onFocus: ()=>{
|
|
16737
|
+
if (readonly) return
|
|
16738
|
+
setOpened(true);},
|
|
16739
|
+
onBlur: ()=>{
|
|
16736
16740
|
setTimeout(()=>{
|
|
16737
16741
|
setOpened(false);
|
|
16738
16742
|
},200);
|
|
16739
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16743
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 186}})
|
|
16740
16744
|
)
|
|
16741
16745
|
|
|
16742
16746
|
, sectionTitle &&
|
|
16743
|
-
React$1.createElement('div', { className: "section-title", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16744
|
-
, React$1.createElement('span', { className: "paragraph2Medium", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16747
|
+
React$1.createElement('div', { className: "section-title", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 197}}
|
|
16748
|
+
, React$1.createElement('span', { className: "paragraph2Medium", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 198}}, sectionTitle)
|
|
16745
16749
|
)
|
|
16746
16750
|
|
|
16747
16751
|
, optionsRec.map((country, index) => (
|
|
16748
|
-
React$1.createElement(React$1.Fragment, { key: index, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16752
|
+
React$1.createElement(React$1.Fragment, { key: index, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 202}}
|
|
16749
16753
|
/*if there's subname provided*/
|
|
16750
16754
|
, !country.subName && country.optionFlag &&
|
|
16751
16755
|
React$1.createElement(DropdownOption$2, { onClick: ()=>{
|
|
@@ -16758,9 +16762,9 @@ const CountrySelector = (props) => {
|
|
|
16758
16762
|
setPassedOption(country);
|
|
16759
16763
|
selectedOption(country);
|
|
16760
16764
|
},200);
|
|
16761
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16762
|
-
, country.optionFlag ? React$1.createElement('img', { src: country.optionFlag, alt: "Flag", onError: (e)=>{e.currentTarget.classList.add('empty-flag');}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16763
|
-
, React$1.createElement('span', { className: "paragraph2Regular", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16765
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 205}}
|
|
16766
|
+
, country.optionFlag ? React$1.createElement('img', { src: country.optionFlag, alt: "Flag", onError: (e)=>{e.currentTarget.classList.add('empty-flag');}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 216}}) : React$1.createElement('div', { className: "empty-flag", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 216}})
|
|
16767
|
+
, React$1.createElement('span', { className: "paragraph2Regular", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 217}}, country.optionName)
|
|
16764
16768
|
)
|
|
16765
16769
|
|
|
16766
16770
|
/*if there's no subname provided*/
|
|
@@ -16775,10 +16779,10 @@ const CountrySelector = (props) => {
|
|
|
16775
16779
|
selectedOption(country);
|
|
16776
16780
|
setSrVal(country.optionName);
|
|
16777
16781
|
},200);
|
|
16778
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16779
|
-
, country.optionName && React$1.createElement('span', { className: "paragraph2Regular", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16780
|
-
, React$1.createElement('div', {__self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16781
|
-
, country.subName, country.optionFlag ? React$1.createElement('img', { src: country.optionFlag, alt: "Flag", onError: (e)=>{e.currentTarget.classList.add('empty-flag');}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16782
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 222}}
|
|
16783
|
+
, country.optionName && React$1.createElement('span', { className: "paragraph2Regular", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 233}}, country.optionName)
|
|
16784
|
+
, React$1.createElement('div', {__self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 234}}
|
|
16785
|
+
, country.subName, country.optionFlag ? React$1.createElement('img', { src: country.optionFlag, alt: "Flag", onError: (e)=>{e.currentTarget.classList.add('empty-flag');}, __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 235}}) : React$1.createElement('div', { className: "empty-flag", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 235}})
|
|
16782
16786
|
)
|
|
16783
16787
|
)
|
|
16784
16788
|
|
|
@@ -16790,18 +16794,18 @@ const CountrySelector = (props) => {
|
|
|
16790
16794
|
|
|
16791
16795
|
)
|
|
16792
16796
|
, selStatus === 'error' &&
|
|
16793
|
-
React$1.createElement('div', { className: "err-msg", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16794
|
-
, React$1.createElement('svg', { width: "16", height: "16", viewBox: "0 0 16 16" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16795
|
-
, React$1.createElement('g', { clipPath: "url(#clip0_299_2778)", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16796
|
-
, React$1.createElement('path', { d: "M8.00006 10.6667C7.86821 10.6667 7.73931 10.7058 7.62968 10.779C7.52005 10.8523 7.4346 10.9564 7.38414 11.0782C7.33368 11.2 7.32048 11.3341 7.3462 11.4634C7.37193 11.5927 7.43542 11.7115 7.52866 11.8048C7.62189 11.898 7.74068 11.9615 7.87 11.9872C7.99932 12.0129 8.13336 11.9997 8.25518 11.9493C8.377 11.8988 8.48112 11.8134 8.55437 11.7037C8.62763 11.5941 8.66673 11.4652 8.66673 11.3334C8.66673 11.1565 8.59649 10.987 8.47146 10.8619C8.34644 10.7369 8.17687 10.6667 8.00006 10.6667ZM15.1134 11.6467L9.74673 2.31335C9.57326 2.00236 9.31992 1.74332 9.01285 1.563C8.70579 1.38267 8.35615 1.2876 8.00006 1.2876C7.64396 1.2876 7.29433 1.38267 6.98726 1.563C6.6802 1.74332 6.42686 2.00236 6.25339 2.31335L0.92006 11.6467C0.74059 11.9494 0.644155 12.294 0.640489 12.6459C0.636824 12.9978 0.726058 13.3444 0.899184 13.6507C1.07231 13.9571 1.3232 14.2123 1.62652 14.3907C1.92984 14.5691 2.27485 14.6643 2.62673 14.6667H13.3734C13.7281 14.6702 14.0773 14.5793 14.3853 14.4033C14.6933 14.2273 14.949 13.9726 15.126 13.6652C15.3031 13.3579 15.3953 13.009 15.3931 12.6542C15.3908 12.2995 15.2943 11.9518 15.1134 11.6467ZM13.9601 12.98C13.9016 13.084 13.8164 13.1704 13.7132 13.2302C13.61 13.29 13.4927 13.321 13.3734 13.32H2.62673C2.50747 13.321 2.39013 13.29 2.28694 13.2302C2.18375 13.1704 2.0985 13.084 2.04006 12.98C1.98155 12.8787 1.95074 12.7637 1.95074 12.6467C1.95074 12.5297 1.98155 12.4147 2.04006 12.3134L7.37339 2.98002C7.42934 2.87082 7.51433 2.77917 7.61902 2.71518C7.72371 2.65119 7.84403 2.61733 7.96673 2.61733C8.08942 2.61733 8.20974 2.65119 8.31443 2.71518C8.41912 2.77917 8.50411 2.87082 8.56006 2.98002L13.9267 12.3134C13.9929 12.4132 14.0309 12.5291 14.0367 12.6488C14.0426 12.7684 14.0161 12.8875 13.9601 12.9934V12.98ZM8.00006 5.33335C7.82325 5.33335 7.65368 5.40359 7.52866 5.52861C7.40363 5.65364 7.33339 5.82321 7.33339 6.00002V8.66669C7.33339 8.8435 7.40363 9.01307 7.52866 9.13809C7.65368 9.26311 7.82325 9.33335 8.00006 9.33335C8.17687 9.33335 8.34644 9.26311 8.47146 9.13809C8.59649 9.01307 8.66673 8.8435 8.66673 8.66669V6.00002C8.66673 5.82321 8.59649 5.65364 8.47146 5.52861C8.34644 5.40359 8.17687 5.33335 8.00006 5.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16797
|
+
React$1.createElement('div', { className: "err-msg", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 247}}
|
|
16798
|
+
, React$1.createElement('svg', { width: "16", height: "16", viewBox: "0 0 16 16" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 248}}
|
|
16799
|
+
, React$1.createElement('g', { clipPath: "url(#clip0_299_2778)", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 249}}
|
|
16800
|
+
, React$1.createElement('path', { d: "M8.00006 10.6667C7.86821 10.6667 7.73931 10.7058 7.62968 10.779C7.52005 10.8523 7.4346 10.9564 7.38414 11.0782C7.33368 11.2 7.32048 11.3341 7.3462 11.4634C7.37193 11.5927 7.43542 11.7115 7.52866 11.8048C7.62189 11.898 7.74068 11.9615 7.87 11.9872C7.99932 12.0129 8.13336 11.9997 8.25518 11.9493C8.377 11.8988 8.48112 11.8134 8.55437 11.7037C8.62763 11.5941 8.66673 11.4652 8.66673 11.3334C8.66673 11.1565 8.59649 10.987 8.47146 10.8619C8.34644 10.7369 8.17687 10.6667 8.00006 10.6667ZM15.1134 11.6467L9.74673 2.31335C9.57326 2.00236 9.31992 1.74332 9.01285 1.563C8.70579 1.38267 8.35615 1.2876 8.00006 1.2876C7.64396 1.2876 7.29433 1.38267 6.98726 1.563C6.6802 1.74332 6.42686 2.00236 6.25339 2.31335L0.92006 11.6467C0.74059 11.9494 0.644155 12.294 0.640489 12.6459C0.636824 12.9978 0.726058 13.3444 0.899184 13.6507C1.07231 13.9571 1.3232 14.2123 1.62652 14.3907C1.92984 14.5691 2.27485 14.6643 2.62673 14.6667H13.3734C13.7281 14.6702 14.0773 14.5793 14.3853 14.4033C14.6933 14.2273 14.949 13.9726 15.126 13.6652C15.3031 13.3579 15.3953 13.009 15.3931 12.6542C15.3908 12.2995 15.2943 11.9518 15.1134 11.6467ZM13.9601 12.98C13.9016 13.084 13.8164 13.1704 13.7132 13.2302C13.61 13.29 13.4927 13.321 13.3734 13.32H2.62673C2.50747 13.321 2.39013 13.29 2.28694 13.2302C2.18375 13.1704 2.0985 13.084 2.04006 12.98C1.98155 12.8787 1.95074 12.7637 1.95074 12.6467C1.95074 12.5297 1.98155 12.4147 2.04006 12.3134L7.37339 2.98002C7.42934 2.87082 7.51433 2.77917 7.61902 2.71518C7.72371 2.65119 7.84403 2.61733 7.96673 2.61733C8.08942 2.61733 8.20974 2.65119 8.31443 2.71518C8.41912 2.77917 8.50411 2.87082 8.56006 2.98002L13.9267 12.3134C13.9929 12.4132 14.0309 12.5291 14.0367 12.6488C14.0426 12.7684 14.0161 12.8875 13.9601 12.9934V12.98ZM8.00006 5.33335C7.82325 5.33335 7.65368 5.40359 7.52866 5.52861C7.40363 5.65364 7.33339 5.82321 7.33339 6.00002V8.66669C7.33339 8.8435 7.40363 9.01307 7.52866 9.13809C7.65368 9.26311 7.82325 9.33335 8.00006 9.33335C8.17687 9.33335 8.34644 9.26311 8.47146 9.13809C8.59649 9.01307 8.66673 8.8435 8.66673 8.66669V6.00002C8.66673 5.82321 8.59649 5.65364 8.47146 5.52861C8.34644 5.40359 8.17687 5.33335 8.00006 5.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 250}})
|
|
16797
16801
|
)
|
|
16798
|
-
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16799
|
-
, React$1.createElement('clipPath', { id: "clip0_299_2778", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16800
|
-
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16802
|
+
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 252}}
|
|
16803
|
+
, React$1.createElement('clipPath', { id: "clip0_299_2778", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 253}}
|
|
16804
|
+
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 254}})
|
|
16801
16805
|
)
|
|
16802
16806
|
)
|
|
16803
16807
|
)
|
|
16804
|
-
, React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber:
|
|
16808
|
+
, React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$U, lineNumber: 258}}, "This field is required" )
|
|
16805
16809
|
)
|
|
16806
16810
|
|
|
16807
16811
|
)
|
|
@@ -17332,7 +17336,7 @@ const _jsxFileName$S = "D:\\SSX\\Project\\Component Library\\sscomp\\src\\compon
|
|
|
17332
17336
|
* Component for picking date
|
|
17333
17337
|
*/
|
|
17334
17338
|
const DatePicker = (props) => {
|
|
17335
|
-
const { onChange, label, subtext,disablePastDays,disableFutureDays ,placeholder,width,required,value,minYear} = props;
|
|
17339
|
+
const { onChange, label, subtext,disablePastDays,disableFutureDays ,placeholder,width,required,value,minYear,readonly} = props;
|
|
17336
17340
|
const [selectedDate, setSelectedDate] = React$1.useState(null);
|
|
17337
17341
|
const [isCalendarOpen, setIsCalendarOpen] = React$1.useState(false);
|
|
17338
17342
|
const [validationStatus,setValidationStatus] = React$1.useState('');
|
|
@@ -17342,16 +17346,18 @@ const DatePicker = (props) => {
|
|
|
17342
17346
|
React$1.useEffect(() => {
|
|
17343
17347
|
if (value) {
|
|
17344
17348
|
setSelectedDate(value);
|
|
17349
|
+
setValidationStatus('success');
|
|
17345
17350
|
}
|
|
17346
17351
|
}, [value]);
|
|
17347
17352
|
|
|
17348
17353
|
React$1.useEffect(()=>{
|
|
17354
|
+
if (readonly) return
|
|
17349
17355
|
document.addEventListener('click',function(e){
|
|
17350
17356
|
if (calendarRef.current){
|
|
17351
17357
|
setIsCalendarOpen(calendarRef.current.contains(e.target));
|
|
17352
17358
|
}
|
|
17353
17359
|
});
|
|
17354
|
-
},[]);
|
|
17360
|
+
},[readonly]);
|
|
17355
17361
|
|
|
17356
17362
|
const handleDateChange = (date) => {
|
|
17357
17363
|
setSelectedDate(date);
|
|
@@ -17397,29 +17403,32 @@ const DatePicker = (props) => {
|
|
|
17397
17403
|
};
|
|
17398
17404
|
|
|
17399
17405
|
return (
|
|
17400
|
-
React$1.createElement('div', { style: style, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17406
|
+
React$1.createElement('div', { style: style, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 77}}
|
|
17401
17407
|
, label &&
|
|
17402
|
-
React$1.createElement(InputLabel$9, {__self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17403
|
-
, React$1.createElement('label', { className: "paragraph2Medium", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17404
|
-
, subtext && React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17408
|
+
React$1.createElement(InputLabel$9, {__self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 79}}
|
|
17409
|
+
, React$1.createElement('label', { className: "paragraph2Medium", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 80}}, label)
|
|
17410
|
+
, subtext && React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 81}}, subtext)
|
|
17405
17411
|
)
|
|
17406
17412
|
|
|
17407
|
-
, React$1.createElement(DatePickerContainer, { ref: calendarRef, className: `date-field ${validationStatus}`, style: {width:width ? width : '100%'}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17408
|
-
, React$1.createElement(InputField$5, { className: `${validationStatus} ${isCalendarOpen ? 'focused' : ''}`, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17413
|
+
, React$1.createElement(DatePickerContainer, { ref: calendarRef, className: `date-field ${validationStatus}`, style: {width:width ? width : '100%'}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 84}}
|
|
17414
|
+
, React$1.createElement(InputField$5, { className: `${validationStatus} ${isCalendarOpen ? 'focused' : ''}`, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 85}}
|
|
17409
17415
|
, React$1.createElement('input', { type: "text", className: "sr-only", required: required, value: !selectedDate ? '' : selectedDate , onChange: ()=>{}, onInvalid: ()=>{
|
|
17410
17416
|
setValidationStatus('error');
|
|
17411
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17417
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 86}})
|
|
17412
17418
|
, React$1.createElement('input', {
|
|
17413
17419
|
type: "text",
|
|
17414
17420
|
value: selectedDate ? selectedDate.toLocaleDateString('en-GB',options) : '',
|
|
17415
17421
|
readOnly: true,
|
|
17416
17422
|
placeholder: `${placeholder ? placeholder : 'Select date'}`,
|
|
17417
|
-
onClick: ()=>{
|
|
17423
|
+
onClick: ()=>{
|
|
17424
|
+
if (readonly) return
|
|
17425
|
+
setIsCalendarOpen(true);
|
|
17426
|
+
},
|
|
17418
17427
|
onBlur: ()=>{
|
|
17419
17428
|
if (required && !selectedDate) {
|
|
17420
17429
|
setValidationStatus('error');
|
|
17421
17430
|
}
|
|
17422
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17431
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 89}}
|
|
17423
17432
|
)
|
|
17424
17433
|
, React$1.createElement('button', { type: "button", onClick: ()=>{
|
|
17425
17434
|
if (isCalendarOpen){
|
|
@@ -17427,28 +17436,28 @@ const DatePicker = (props) => {
|
|
|
17427
17436
|
setIsCalendarOpen(false);
|
|
17428
17437
|
},50);
|
|
17429
17438
|
}
|
|
17430
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17439
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 104}}
|
|
17431
17440
|
/*calendar icon*/
|
|
17432
|
-
, React$1.createElement('svg', { width: "21", height: "22", viewBox: "0 0 21 22" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17433
|
-
, React$1.createElement('path', { d: "M10.5 18C10.6978 18 10.8911 17.9414 11.0556 17.8315C11.22 17.7216 11.3482 17.5654 11.4239 17.3827C11.4996 17.2 11.5194 16.9989 11.4808 16.8049C11.4422 16.6109 11.347 16.4327 11.2071 16.2929C11.0673 16.153 10.8891 16.0578 10.6951 16.0192C10.5011 15.9806 10.3 16.0004 10.1173 16.0761C9.93459 16.1518 9.77841 16.28 9.66853 16.4444C9.55865 16.6089 9.5 16.8022 9.5 17C9.5 17.2652 9.60536 17.5196 9.79289 17.7071C9.98043 17.8946 10.2348 18 10.5 18ZM15.5 18C15.6978 18 15.8911 17.9414 16.0556 17.8315C16.22 17.7216 16.3482 17.5654 16.4239 17.3827C16.4996 17.2 16.5194 16.9989 16.4808 16.8049C16.4422 16.6109 16.347 16.4327 16.2071 16.2929C16.0673 16.153 15.8891 16.0578 15.6951 16.0192C15.5011 15.9806 15.3 16.0004 15.1173 16.0761C14.9346 16.1518 14.7784 16.28 14.6685 16.4444C14.5586 16.6089 14.5 16.8022 14.5 17C14.5 17.2652 14.6054 17.5196 14.7929 17.7071C14.9804 17.8946 15.2348 18 15.5 18ZM15.5 14C15.6978 14 15.8911 13.9414 16.0556 13.8315C16.22 13.7216 16.3482 13.5654 16.4239 13.3827C16.4996 13.2 16.5194 12.9989 16.4808 12.8049C16.4422 12.6109 16.347 12.4327 16.2071 12.2929C16.0673 12.153 15.8891 12.0578 15.6951 12.0192C15.5011 11.9806 15.3 12.0004 15.1173 12.0761C14.9346 12.1518 14.7784 12.28 14.6685 12.4444C14.5586 12.6089 14.5 12.8022 14.5 13C14.5 13.2652 14.6054 13.5196 14.7929 13.7071C14.9804 13.8946 15.2348 14 15.5 14ZM10.5 14C10.6978 14 10.8911 13.9414 11.0556 13.8315C11.22 13.7216 11.3482 13.5654 11.4239 13.3827C11.4996 13.2 11.5194 12.9989 11.4808 12.8049C11.4422 12.6109 11.347 12.4327 11.2071 12.2929C11.0673 12.153 10.8891 12.0578 10.6951 12.0192C10.5011 11.9806 10.3 12.0004 10.1173 12.0761C9.93459 12.1518 9.77841 12.28 9.66853 12.4444C9.55865 12.6089 9.5 12.8022 9.5 13C9.5 13.2652 9.60536 13.5196 9.79289 13.7071C9.98043 13.8946 10.2348 14 10.5 14ZM17.5 2H16.5V1C16.5 0.734784 16.3946 0.48043 16.2071 0.292893C16.0196 0.105357 15.7652 0 15.5 0C15.2348 0 14.9804 0.105357 14.7929 0.292893C14.6054 0.48043 14.5 0.734784 14.5 1V2H6.5V1C6.5 0.734784 6.39464 0.48043 6.20711 0.292893C6.01957 0.105357 5.76522 0 5.5 0C5.23478 0 4.98043 0.105357 4.79289 0.292893C4.60536 0.48043 4.5 0.734784 4.5 1V2H3.5C2.70435 2 1.94129 2.31607 1.37868 2.87868C0.816071 3.44129 0.5 4.20435 0.5 5V19C0.5 19.7956 0.816071 20.5587 1.37868 21.1213C1.94129 21.6839 2.70435 22 3.5 22H17.5C18.2956 22 19.0587 21.6839 19.6213 21.1213C20.1839 20.5587 20.5 19.7956 20.5 19V5C20.5 4.20435 20.1839 3.44129 19.6213 2.87868C19.0587 2.31607 18.2956 2 17.5 2ZM18.5 19C18.5 19.2652 18.3946 19.5196 18.2071 19.7071C18.0196 19.8946 17.7652 20 17.5 20H3.5C3.23478 20 2.98043 19.8946 2.79289 19.7071C2.60536 19.5196 2.5 19.2652 2.5 19V10H18.5V19ZM18.5 8H2.5V5C2.5 4.73478 2.60536 4.48043 2.79289 4.29289C2.98043 4.10536 3.23478 4 3.5 4H4.5V5C4.5 5.26522 4.60536 5.51957 4.79289 5.70711C4.98043 5.89464 5.23478 6 5.5 6C5.76522 6 6.01957 5.89464 6.20711 5.70711C6.39464 5.51957 6.5 5.26522 6.5 5V4H14.5V5C14.5 5.26522 14.6054 5.51957 14.7929 5.70711C14.9804 5.89464 15.2348 6 15.5 6C15.7652 6 16.0196 5.89464 16.2071 5.70711C16.3946 5.51957 16.5 5.26522 16.5 5V4H17.5C17.7652 4 18.0196 4.10536 18.2071 4.29289C18.3946 4.48043 18.5 4.73478 18.5 5V8ZM5.5 14C5.69778 14 5.89112 13.9414 6.05557 13.8315C6.22002 13.7216 6.34819 13.5654 6.42388 13.3827C6.49957 13.2 6.51937 12.9989 6.48079 12.8049C6.4422 12.6109 6.34696 12.4327 6.20711 12.2929C6.06725 12.153 5.88907 12.0578 5.69509 12.0192C5.50111 11.9806 5.30004 12.0004 5.11732 12.0761C4.93459 12.1518 4.77841 12.28 4.66853 12.4444C4.55865 12.6089 4.5 12.8022 4.5 13C4.5 13.2652 4.60536 13.5196 4.79289 13.7071C4.98043 13.8946 5.23478 14 5.5 14ZM5.5 18C5.69778 18 5.89112 17.9414 6.05557 17.8315C6.22002 17.7216 6.34819 17.5654 6.42388 17.3827C6.49957 17.2 6.51937 16.9989 6.48079 16.8049C6.4422 16.6109 6.34696 16.4327 6.20711 16.2929C6.06725 16.153 5.88907 16.0578 5.69509 16.0192C5.50111 15.9806 5.30004 16.0004 5.11732 16.0761C4.93459 16.1518 4.77841 16.28 4.66853 16.4444C4.55865 16.6089 4.5 16.8022 4.5 17C4.5 17.2652 4.60536 17.5196 4.79289 17.7071C4.98043 17.8946 5.23478 18 5.5 18Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17441
|
+
, React$1.createElement('svg', { width: "21", height: "22", viewBox: "0 0 21 22" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 112}}
|
|
17442
|
+
, React$1.createElement('path', { d: "M10.5 18C10.6978 18 10.8911 17.9414 11.0556 17.8315C11.22 17.7216 11.3482 17.5654 11.4239 17.3827C11.4996 17.2 11.5194 16.9989 11.4808 16.8049C11.4422 16.6109 11.347 16.4327 11.2071 16.2929C11.0673 16.153 10.8891 16.0578 10.6951 16.0192C10.5011 15.9806 10.3 16.0004 10.1173 16.0761C9.93459 16.1518 9.77841 16.28 9.66853 16.4444C9.55865 16.6089 9.5 16.8022 9.5 17C9.5 17.2652 9.60536 17.5196 9.79289 17.7071C9.98043 17.8946 10.2348 18 10.5 18ZM15.5 18C15.6978 18 15.8911 17.9414 16.0556 17.8315C16.22 17.7216 16.3482 17.5654 16.4239 17.3827C16.4996 17.2 16.5194 16.9989 16.4808 16.8049C16.4422 16.6109 16.347 16.4327 16.2071 16.2929C16.0673 16.153 15.8891 16.0578 15.6951 16.0192C15.5011 15.9806 15.3 16.0004 15.1173 16.0761C14.9346 16.1518 14.7784 16.28 14.6685 16.4444C14.5586 16.6089 14.5 16.8022 14.5 17C14.5 17.2652 14.6054 17.5196 14.7929 17.7071C14.9804 17.8946 15.2348 18 15.5 18ZM15.5 14C15.6978 14 15.8911 13.9414 16.0556 13.8315C16.22 13.7216 16.3482 13.5654 16.4239 13.3827C16.4996 13.2 16.5194 12.9989 16.4808 12.8049C16.4422 12.6109 16.347 12.4327 16.2071 12.2929C16.0673 12.153 15.8891 12.0578 15.6951 12.0192C15.5011 11.9806 15.3 12.0004 15.1173 12.0761C14.9346 12.1518 14.7784 12.28 14.6685 12.4444C14.5586 12.6089 14.5 12.8022 14.5 13C14.5 13.2652 14.6054 13.5196 14.7929 13.7071C14.9804 13.8946 15.2348 14 15.5 14ZM10.5 14C10.6978 14 10.8911 13.9414 11.0556 13.8315C11.22 13.7216 11.3482 13.5654 11.4239 13.3827C11.4996 13.2 11.5194 12.9989 11.4808 12.8049C11.4422 12.6109 11.347 12.4327 11.2071 12.2929C11.0673 12.153 10.8891 12.0578 10.6951 12.0192C10.5011 11.9806 10.3 12.0004 10.1173 12.0761C9.93459 12.1518 9.77841 12.28 9.66853 12.4444C9.55865 12.6089 9.5 12.8022 9.5 13C9.5 13.2652 9.60536 13.5196 9.79289 13.7071C9.98043 13.8946 10.2348 14 10.5 14ZM17.5 2H16.5V1C16.5 0.734784 16.3946 0.48043 16.2071 0.292893C16.0196 0.105357 15.7652 0 15.5 0C15.2348 0 14.9804 0.105357 14.7929 0.292893C14.6054 0.48043 14.5 0.734784 14.5 1V2H6.5V1C6.5 0.734784 6.39464 0.48043 6.20711 0.292893C6.01957 0.105357 5.76522 0 5.5 0C5.23478 0 4.98043 0.105357 4.79289 0.292893C4.60536 0.48043 4.5 0.734784 4.5 1V2H3.5C2.70435 2 1.94129 2.31607 1.37868 2.87868C0.816071 3.44129 0.5 4.20435 0.5 5V19C0.5 19.7956 0.816071 20.5587 1.37868 21.1213C1.94129 21.6839 2.70435 22 3.5 22H17.5C18.2956 22 19.0587 21.6839 19.6213 21.1213C20.1839 20.5587 20.5 19.7956 20.5 19V5C20.5 4.20435 20.1839 3.44129 19.6213 2.87868C19.0587 2.31607 18.2956 2 17.5 2ZM18.5 19C18.5 19.2652 18.3946 19.5196 18.2071 19.7071C18.0196 19.8946 17.7652 20 17.5 20H3.5C3.23478 20 2.98043 19.8946 2.79289 19.7071C2.60536 19.5196 2.5 19.2652 2.5 19V10H18.5V19ZM18.5 8H2.5V5C2.5 4.73478 2.60536 4.48043 2.79289 4.29289C2.98043 4.10536 3.23478 4 3.5 4H4.5V5C4.5 5.26522 4.60536 5.51957 4.79289 5.70711C4.98043 5.89464 5.23478 6 5.5 6C5.76522 6 6.01957 5.89464 6.20711 5.70711C6.39464 5.51957 6.5 5.26522 6.5 5V4H14.5V5C14.5 5.26522 14.6054 5.51957 14.7929 5.70711C14.9804 5.89464 15.2348 6 15.5 6C15.7652 6 16.0196 5.89464 16.2071 5.70711C16.3946 5.51957 16.5 5.26522 16.5 5V4H17.5C17.7652 4 18.0196 4.10536 18.2071 4.29289C18.3946 4.48043 18.5 4.73478 18.5 5V8ZM5.5 14C5.69778 14 5.89112 13.9414 6.05557 13.8315C6.22002 13.7216 6.34819 13.5654 6.42388 13.3827C6.49957 13.2 6.51937 12.9989 6.48079 12.8049C6.4422 12.6109 6.34696 12.4327 6.20711 12.2929C6.06725 12.153 5.88907 12.0578 5.69509 12.0192C5.50111 11.9806 5.30004 12.0004 5.11732 12.0761C4.93459 12.1518 4.77841 12.28 4.66853 12.4444C4.55865 12.6089 4.5 12.8022 4.5 13C4.5 13.2652 4.60536 13.5196 4.79289 13.7071C4.98043 13.8946 5.23478 14 5.5 14ZM5.5 18C5.69778 18 5.89112 17.9414 6.05557 17.8315C6.22002 17.7216 6.34819 17.5654 6.42388 17.3827C6.49957 17.2 6.51937 16.9989 6.48079 16.8049C6.4422 16.6109 6.34696 16.4327 6.20711 16.2929C6.06725 16.153 5.88907 16.0578 5.69509 16.0192C5.50111 15.9806 5.30004 16.0004 5.11732 16.0761C4.93459 16.1518 4.77841 16.28 4.66853 16.4444C4.55865 16.6089 4.5 16.8022 4.5 17C4.5 17.2652 4.60536 17.5196 4.79289 17.7071C4.98043 17.8946 5.23478 18 5.5 18Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 113}})
|
|
17434
17443
|
)
|
|
17435
17444
|
)
|
|
17436
17445
|
)
|
|
17437
17446
|
, isCalendarOpen && (
|
|
17438
|
-
React$1.createElement(CalendarSheet, {__self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17447
|
+
React$1.createElement(CalendarSheet, {__self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 118}}
|
|
17439
17448
|
, React$1.createElement(Calendar, { onChange: (e)=>{
|
|
17440
17449
|
handleDateChange(e);
|
|
17441
17450
|
setValidationStatus('success');
|
|
17442
|
-
}, selected: selectedDate, disablePastDaysProp: !!disablePastDays, disableFutureDaysProp: !!disableFutureDays, minYear: minYear, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17451
|
+
}, selected: selectedDate, disablePastDaysProp: !!disablePastDays, disableFutureDaysProp: !!disableFutureDays, minYear: minYear, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 119}})
|
|
17443
17452
|
)
|
|
17444
17453
|
)
|
|
17445
17454
|
, required && validationStatus === 'error' &&
|
|
17446
|
-
React$1.createElement(ErrorMessage$5, {__self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17455
|
+
React$1.createElement(ErrorMessage$5, {__self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 126}}
|
|
17447
17456
|
/*exclamation-triangle*/
|
|
17448
|
-
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17449
|
-
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17457
|
+
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 128}}
|
|
17458
|
+
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 129}})
|
|
17450
17459
|
)
|
|
17451
|
-
, React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17460
|
+
, React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 131}}, "This field is required" )
|
|
17452
17461
|
)
|
|
17453
17462
|
|
|
17454
17463
|
)
|
|
@@ -17529,7 +17538,7 @@ const Calendar = ({ onChange, selected,disablePastDaysProp,disableFutureDaysProp
|
|
|
17529
17538
|
for (let i = firstDay - 1; i >= 0; i--) {
|
|
17530
17539
|
const day = daysInPreviousMonth - i;
|
|
17531
17540
|
days.push(
|
|
17532
|
-
React$1.createElement('div', { key: `previous-day-${day}`, className: "calendar-day previous-month-day" , __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17541
|
+
React$1.createElement('div', { key: `previous-day-${day}`, className: "calendar-day previous-month-day" , __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 212}}
|
|
17533
17542
|
, day
|
|
17534
17543
|
)
|
|
17535
17544
|
);
|
|
@@ -17576,7 +17585,7 @@ const Calendar = ({ onChange, selected,disablePastDaysProp,disableFutureDaysProp
|
|
|
17576
17585
|
React$1.createElement('div', {
|
|
17577
17586
|
key: `current-day-${day}`,
|
|
17578
17587
|
className: `calendar-day ${dayClassName}`,
|
|
17579
|
-
onClick: handleClick, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17588
|
+
onClick: handleClick, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 256}}
|
|
17580
17589
|
|
|
17581
17590
|
, day
|
|
17582
17591
|
)
|
|
@@ -17588,7 +17597,7 @@ const Calendar = ({ onChange, selected,disablePastDaysProp,disableFutureDaysProp
|
|
|
17588
17597
|
const remainingDays = (7 - (days.length % 7)) % 7;
|
|
17589
17598
|
for (let day = 1; day <= remainingDays; day++) {
|
|
17590
17599
|
days.push(
|
|
17591
|
-
React$1.createElement('div', { key: `next-day-${day}`, className: "calendar-day next-month-day" , __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17600
|
+
React$1.createElement('div', { key: `next-day-${day}`, className: "calendar-day next-month-day" , __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 271}}
|
|
17592
17601
|
, day
|
|
17593
17602
|
)
|
|
17594
17603
|
);
|
|
@@ -17601,76 +17610,76 @@ const Calendar = ({ onChange, selected,disablePastDaysProp,disableFutureDaysProp
|
|
|
17601
17610
|
for (let year = currentYear - 10; year <= currentYear + 10; year++) {
|
|
17602
17611
|
const selectedClass = year===currentDate.getFullYear()?'selected-year':'';
|
|
17603
17612
|
years.push(
|
|
17604
|
-
React$1.createElement('div', { key: year, onClick: () => handleSelectYear(year), className: `year-option ${selectedClass}`, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17613
|
+
React$1.createElement('div', { key: year, onClick: () => handleSelectYear(year), className: `year-option ${selectedClass}`, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 284}}
|
|
17605
17614
|
, year
|
|
17606
17615
|
)
|
|
17607
17616
|
);
|
|
17608
17617
|
}
|
|
17609
17618
|
|
|
17610
17619
|
return (
|
|
17611
|
-
React$1.createElement('div', { className: "year-picker", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17612
|
-
, React$1.createElement('div', { className: "year-options", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17620
|
+
React$1.createElement('div', { className: "year-picker", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 291}}
|
|
17621
|
+
, React$1.createElement('div', { className: "year-options", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 292}}, years)
|
|
17613
17622
|
)
|
|
17614
17623
|
)
|
|
17615
17624
|
};
|
|
17616
17625
|
|
|
17617
17626
|
return (
|
|
17618
|
-
React$1.createElement(CalendarContainer$1, { className: "calendar-flyout", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17619
|
-
, React$1.createElement('div', { className: "header", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17627
|
+
React$1.createElement(CalendarContainer$1, { className: "calendar-flyout", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 298}}
|
|
17628
|
+
, React$1.createElement('div', { className: "header", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 299}}
|
|
17620
17629
|
, !calendarView &&
|
|
17621
|
-
React$1.createElement('button', { type: "button", onClick: handlePreviousYear, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17630
|
+
React$1.createElement('button', { type: "button", onClick: handlePreviousYear, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 301}}
|
|
17622
17631
|
/*circle arrow left*/
|
|
17623
|
-
, React$1.createElement('svg', { width: "20", height: "20", viewBox: "0 0 20 20" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17624
|
-
, React$1.createElement('path', { d: "M6.29 9.29C6.19896 9.3851 6.12759 9.49725 6.08 9.62C5.97998 9.86346 5.97998 10.1365 6.08 10.38C6.12759 10.5028 6.19896 10.6149 6.29 10.71L9.29 13.71C9.4783 13.8983 9.7337 14.0041 10 14.0041C10.2663 14.0041 10.5217 13.8983 10.71 13.71C10.8983 13.5217 11.0041 13.2663 11.0041 13C11.0041 12.7337 10.8983 12.4783 10.71 12.29L9.41 11H13C13.2652 11 13.5196 10.8946 13.7071 10.7071C13.8946 10.5196 14 10.2652 14 10C14 9.73478 13.8946 9.48043 13.7071 9.29289C13.5196 9.10536 13.2652 9 13 9H9.41L10.71 7.71C10.8037 7.61704 10.8781 7.50644 10.9289 7.38458C10.9797 7.26272 11.0058 7.13201 11.0058 7C11.0058 6.86799 10.9797 6.73728 10.9289 6.61542C10.8781 6.49356 10.8037 6.38296 10.71 6.29C10.617 6.19627 10.5064 6.12188 10.3846 6.07111C10.2627 6.02034 10.132 5.9942 10 5.9942C9.86799 5.9942 9.73728 6.02034 9.61542 6.07111C9.49356 6.12188 9.38296 6.19627 9.29 6.29L6.29 9.29ZM0 10C0 11.9778 0.58649 13.9112 1.6853 15.5557C2.78412 17.2002 4.3459 18.4819 6.17317 19.2388C8.00043 19.9957 10.0111 20.1937 11.9509 19.8079C13.8907 19.422 15.6725 18.4696 17.0711 17.0711C18.4696 15.6725 19.422 13.8907 19.8079 11.9509C20.1937 10.0111 19.9957 8.00043 19.2388 6.17317C18.4819 4.3459 17.2002 2.78412 15.5557 1.6853C13.9112 0.58649 11.9778 0 10 0C8.68678 0 7.38642 0.258658 6.17317 0.761205C4.95991 1.26375 3.85752 2.00035 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10ZM18 10C18 11.5823 17.5308 13.129 16.6518 14.4446C15.7727 15.7602 14.5233 16.7855 13.0615 17.391C11.5997 17.9965 9.99113 18.155 8.43928 17.8463C6.88743 17.5376 5.46197 16.7757 4.34315 15.6569C3.22433 14.538 2.4624 13.1126 2.15372 11.5607C1.84504 10.0089 2.00346 8.40034 2.60896 6.93853C3.21447 5.47672 4.23984 4.22729 5.55544 3.34824C6.87103 2.46919 8.41775 2 10 2C12.1217 2 14.1566 2.84285 15.6569 4.34315C17.1571 5.84344 18 7.87827 18 10Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17632
|
+
, React$1.createElement('svg', { width: "20", height: "20", viewBox: "0 0 20 20" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 303}}
|
|
17633
|
+
, React$1.createElement('path', { d: "M6.29 9.29C6.19896 9.3851 6.12759 9.49725 6.08 9.62C5.97998 9.86346 5.97998 10.1365 6.08 10.38C6.12759 10.5028 6.19896 10.6149 6.29 10.71L9.29 13.71C9.4783 13.8983 9.7337 14.0041 10 14.0041C10.2663 14.0041 10.5217 13.8983 10.71 13.71C10.8983 13.5217 11.0041 13.2663 11.0041 13C11.0041 12.7337 10.8983 12.4783 10.71 12.29L9.41 11H13C13.2652 11 13.5196 10.8946 13.7071 10.7071C13.8946 10.5196 14 10.2652 14 10C14 9.73478 13.8946 9.48043 13.7071 9.29289C13.5196 9.10536 13.2652 9 13 9H9.41L10.71 7.71C10.8037 7.61704 10.8781 7.50644 10.9289 7.38458C10.9797 7.26272 11.0058 7.13201 11.0058 7C11.0058 6.86799 10.9797 6.73728 10.9289 6.61542C10.8781 6.49356 10.8037 6.38296 10.71 6.29C10.617 6.19627 10.5064 6.12188 10.3846 6.07111C10.2627 6.02034 10.132 5.9942 10 5.9942C9.86799 5.9942 9.73728 6.02034 9.61542 6.07111C9.49356 6.12188 9.38296 6.19627 9.29 6.29L6.29 9.29ZM0 10C0 11.9778 0.58649 13.9112 1.6853 15.5557C2.78412 17.2002 4.3459 18.4819 6.17317 19.2388C8.00043 19.9957 10.0111 20.1937 11.9509 19.8079C13.8907 19.422 15.6725 18.4696 17.0711 17.0711C18.4696 15.6725 19.422 13.8907 19.8079 11.9509C20.1937 10.0111 19.9957 8.00043 19.2388 6.17317C18.4819 4.3459 17.2002 2.78412 15.5557 1.6853C13.9112 0.58649 11.9778 0 10 0C8.68678 0 7.38642 0.258658 6.17317 0.761205C4.95991 1.26375 3.85752 2.00035 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10ZM18 10C18 11.5823 17.5308 13.129 16.6518 14.4446C15.7727 15.7602 14.5233 16.7855 13.0615 17.391C11.5997 17.9965 9.99113 18.155 8.43928 17.8463C6.88743 17.5376 5.46197 16.7757 4.34315 15.6569C3.22433 14.538 2.4624 13.1126 2.15372 11.5607C1.84504 10.0089 2.00346 8.40034 2.60896 6.93853C3.21447 5.47672 4.23984 4.22729 5.55544 3.34824C6.87103 2.46919 8.41775 2 10 2C12.1217 2 14.1566 2.84285 15.6569 4.34315C17.1571 5.84344 18 7.87827 18 10Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 304}})
|
|
17625
17634
|
)
|
|
17626
17635
|
)
|
|
17627
17636
|
|
|
17628
17637
|
, calendarView &&
|
|
17629
|
-
React$1.createElement('button', { type: "button", onClick: handlePreviousMonth, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17638
|
+
React$1.createElement('button', { type: "button", onClick: handlePreviousMonth, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 309}}
|
|
17630
17639
|
/*left angle*/
|
|
17631
|
-
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17632
|
-
, React$1.createElement('path', { d: "M3.28982 5.99995L6.82982 2.45995C7.01607 2.27259 7.12061 2.01913 7.12061 1.75495C7.12061 1.49076 7.01607 1.23731 6.82982 1.04995C6.73686 0.95622 6.62626 0.881826 6.5044 0.831057C6.38254 0.780288 6.25183 0.75415 6.11982 0.75415C5.98781 0.75415 5.8571 0.780288 5.73524 0.831057C5.61339 0.881826 5.50278 0.95622 5.40982 1.04995L1.16982 5.28995C1.07609 5.38291 1.0017 5.49351 0.950931 5.61537C0.900162 5.73723 0.874023 5.86794 0.874023 5.99995C0.874023 6.13196 0.900162 6.26267 0.950931 6.38453C1.0017 6.50638 1.07609 6.61699 1.16982 6.70995L5.40982 10.9999C5.50326 11.0926 5.61408 11.166 5.73592 11.2157C5.85775 11.2655 5.98821 11.2907 6.11982 11.2899C6.25143 11.2907 6.38189 11.2655 6.50373 11.2157C6.62557 11.166 6.73638 11.0926 6.82982 10.9999C7.01607 10.8126 7.12061 10.5591 7.12061 10.2949C7.12061 10.0308 7.01607 9.77731 6.82982 9.58995L3.28982 5.99995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17640
|
+
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 311}}
|
|
17641
|
+
, React$1.createElement('path', { d: "M3.28982 5.99995L6.82982 2.45995C7.01607 2.27259 7.12061 2.01913 7.12061 1.75495C7.12061 1.49076 7.01607 1.23731 6.82982 1.04995C6.73686 0.95622 6.62626 0.881826 6.5044 0.831057C6.38254 0.780288 6.25183 0.75415 6.11982 0.75415C5.98781 0.75415 5.8571 0.780288 5.73524 0.831057C5.61339 0.881826 5.50278 0.95622 5.40982 1.04995L1.16982 5.28995C1.07609 5.38291 1.0017 5.49351 0.950931 5.61537C0.900162 5.73723 0.874023 5.86794 0.874023 5.99995C0.874023 6.13196 0.900162 6.26267 0.950931 6.38453C1.0017 6.50638 1.07609 6.61699 1.16982 6.70995L5.40982 10.9999C5.50326 11.0926 5.61408 11.166 5.73592 11.2157C5.85775 11.2655 5.98821 11.2907 6.11982 11.2899C6.25143 11.2907 6.38189 11.2655 6.50373 11.2157C6.62557 11.166 6.73638 11.0926 6.82982 10.9999C7.01607 10.8126 7.12061 10.5591 7.12061 10.2949C7.12061 10.0308 7.01607 9.77731 6.82982 9.58995L3.28982 5.99995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 312}})
|
|
17633
17642
|
)
|
|
17634
17643
|
)
|
|
17635
17644
|
|
|
17636
|
-
, React$1.createElement('button', { type: "button", className: "month-year", onClick: toggleYearPicker, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17645
|
+
, React$1.createElement('button', { type: "button", className: "month-year", onClick: toggleYearPicker, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 316}}
|
|
17637
17646
|
, currentDate.toLocaleString('en-us', { month: 'long', year: 'numeric' })
|
|
17638
17647
|
/*{currentYear}*/
|
|
17639
|
-
, React$1.createElement('svg', { className: calendarView ? 'year-view' : '', width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17640
|
-
, React$1.createElement('path', { d: "M11 1.17C10.8126 0.983753 10.5592 0.879211 10.295 0.879211C10.0308 0.879211 9.77737 0.983753 9.59001 1.17L6.00001 4.71L2.46001 1.17C2.27265 0.983753 2.0192 0.879211 1.75501 0.879211C1.49082 0.879211 1.23737 0.983753 1.05001 1.17C0.956281 1.26297 0.881887 1.37357 0.831118 1.49543C0.780349 1.61729 0.754211 1.74799 0.754211 1.88C0.754211 2.01202 0.780349 2.14272 0.831118 2.26458C0.881887 2.38644 0.956281 2.49704 1.05001 2.59L5.29001 6.83C5.38297 6.92373 5.49357 6.99813 5.61543 7.04889C5.73729 7.09966 5.868 7.1258 6.00001 7.1258C6.13202 7.1258 6.26273 7.09966 6.38459 7.04889C6.50645 6.99813 6.61705 6.92373 6.71001 6.83L11 2.59C11.0937 2.49704 11.1681 2.38644 11.2189 2.26458C11.2697 2.14272 11.2958 2.01202 11.2958 1.88C11.2958 1.74799 11.2697 1.61729 11.2189 1.49543C11.1681 1.37357 11.0937 1.26297 11 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17648
|
+
, React$1.createElement('svg', { className: calendarView ? 'year-view' : '', width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 319}}
|
|
17649
|
+
, React$1.createElement('path', { d: "M11 1.17C10.8126 0.983753 10.5592 0.879211 10.295 0.879211C10.0308 0.879211 9.77737 0.983753 9.59001 1.17L6.00001 4.71L2.46001 1.17C2.27265 0.983753 2.0192 0.879211 1.75501 0.879211C1.49082 0.879211 1.23737 0.983753 1.05001 1.17C0.956281 1.26297 0.881887 1.37357 0.831118 1.49543C0.780349 1.61729 0.754211 1.74799 0.754211 1.88C0.754211 2.01202 0.780349 2.14272 0.831118 2.26458C0.881887 2.38644 0.956281 2.49704 1.05001 2.59L5.29001 6.83C5.38297 6.92373 5.49357 6.99813 5.61543 7.04889C5.73729 7.09966 5.868 7.1258 6.00001 7.1258C6.13202 7.1258 6.26273 7.09966 6.38459 7.04889C6.50645 6.99813 6.61705 6.92373 6.71001 6.83L11 2.59C11.0937 2.49704 11.1681 2.38644 11.2189 2.26458C11.2697 2.14272 11.2958 2.01202 11.2958 1.88C11.2958 1.74799 11.2697 1.61729 11.2189 1.49543C11.1681 1.37357 11.0937 1.26297 11 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 320}})
|
|
17641
17650
|
)
|
|
17642
17651
|
)
|
|
17643
17652
|
, calendarView &&
|
|
17644
|
-
React$1.createElement('button', { type: "button", onClick: handleNextMonth, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17653
|
+
React$1.createElement('button', { type: "button", onClick: handleNextMonth, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 324}}
|
|
17645
17654
|
/*right angle*/
|
|
17646
|
-
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17647
|
-
, React$1.createElement('path', { d: "M6.83019 5.28995L2.59019 1.04995C2.49722 0.95622 2.38662 0.881826 2.26476 0.831057C2.1429 0.780288 2.0122 0.75415 1.88019 0.75415C1.74818 0.75415 1.61747 0.780288 1.49561 0.831057C1.37375 0.881826 1.26315 0.95622 1.17019 1.04995C0.983936 1.23731 0.879395 1.49076 0.879395 1.75495C0.879395 2.01913 0.983936 2.27259 1.17019 2.45995L4.71019 5.99995L1.17019 9.53995C0.983936 9.72731 0.879395 9.98076 0.879395 10.2449C0.879395 10.5091 0.983936 10.7626 1.17019 10.9499C1.26363 11.0426 1.37444 11.116 1.49628 11.1657C1.61812 11.2155 1.74858 11.2407 1.88019 11.2399C2.01179 11.2407 2.14226 11.2155 2.26409 11.1657C2.38593 11.116 2.49675 11.0426 2.59019 10.9499L6.83019 6.70995C6.92392 6.61699 6.99831 6.50638 7.04908 6.38453C7.09985 6.26267 7.12599 6.13196 7.12599 5.99995C7.12599 5.86794 7.09985 5.73723 7.04908 5.61537C6.99831 5.49351 6.92392 5.38291 6.83019 5.28995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17655
|
+
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 326}}
|
|
17656
|
+
, React$1.createElement('path', { d: "M6.83019 5.28995L2.59019 1.04995C2.49722 0.95622 2.38662 0.881826 2.26476 0.831057C2.1429 0.780288 2.0122 0.75415 1.88019 0.75415C1.74818 0.75415 1.61747 0.780288 1.49561 0.831057C1.37375 0.881826 1.26315 0.95622 1.17019 1.04995C0.983936 1.23731 0.879395 1.49076 0.879395 1.75495C0.879395 2.01913 0.983936 2.27259 1.17019 2.45995L4.71019 5.99995L1.17019 9.53995C0.983936 9.72731 0.879395 9.98076 0.879395 10.2449C0.879395 10.5091 0.983936 10.7626 1.17019 10.9499C1.26363 11.0426 1.37444 11.116 1.49628 11.1657C1.61812 11.2155 1.74858 11.2407 1.88019 11.2399C2.01179 11.2407 2.14226 11.2155 2.26409 11.1657C2.38593 11.116 2.49675 11.0426 2.59019 10.9499L6.83019 6.70995C6.92392 6.61699 6.99831 6.50638 7.04908 6.38453C7.09985 6.26267 7.12599 6.13196 7.12599 5.99995C7.12599 5.86794 7.09985 5.73723 7.04908 5.61537C6.99831 5.49351 6.92392 5.38291 6.83019 5.28995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 327}})
|
|
17648
17657
|
)
|
|
17649
17658
|
)
|
|
17650
17659
|
|
|
17651
17660
|
, !calendarView &&
|
|
17652
|
-
React$1.createElement('button', { type: "button", onClick: handleNextYear, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17661
|
+
React$1.createElement('button', { type: "button", onClick: handleNextYear, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 332}}
|
|
17653
17662
|
/*circle arrow right*/
|
|
17654
|
-
, React$1.createElement('svg', { width: "20", height: "20", viewBox: "0 0 20 20" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17655
|
-
, React$1.createElement('path', { d: "M13.71 10.71C13.801 10.6149 13.8724 10.5028 13.92 10.38C14.02 10.1365 14.02 9.86347 13.92 9.62C13.8724 9.49725 13.801 9.38511 13.71 9.29L10.71 6.29C10.5217 6.1017 10.2663 5.99591 10 5.99591C9.7337 5.99591 9.47831 6.1017 9.29 6.29C9.1017 6.47831 8.99591 6.7337 8.99591 7C8.99591 7.26631 9.1017 7.5217 9.29 7.71L10.59 9H7C6.73479 9 6.48043 9.10536 6.2929 9.2929C6.10536 9.48043 6 9.73479 6 10C6 10.2652 6.10536 10.5196 6.2929 10.7071C6.48043 10.8946 6.73479 11 7 11H10.59L9.29 12.29C9.19628 12.383 9.12188 12.4936 9.07111 12.6154C9.02034 12.7373 8.99421 12.868 8.99421 13C8.99421 13.132 9.02034 13.2627 9.07111 13.3846C9.12188 13.5064 9.19628 13.617 9.29 13.71C9.38297 13.8037 9.49357 13.8781 9.61543 13.9289C9.73729 13.9797 9.86799 14.0058 10 14.0058C10.132 14.0058 10.2627 13.9797 10.3846 13.9289C10.5064 13.8781 10.617 13.8037 10.71 13.71L13.71 10.71ZM20 10C20 8.02219 19.4135 6.08879 18.3147 4.4443C17.2159 2.79981 15.6541 1.51809 13.8268 0.761209C11.9996 0.00433284 9.98891 -0.193701 8.0491 0.192152C6.10929 0.578004 4.32746 1.53041 2.92894 2.92894C1.53041 4.32746 0.578004 6.10929 0.192152 8.0491C-0.193701 9.98891 0.00433284 11.9996 0.761209 13.8268C1.51809 15.6541 2.79981 17.2159 4.4443 18.3147C6.08879 19.4135 8.02219 20 10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10ZM2 10C2 8.41775 2.4692 6.87104 3.34825 5.55544C4.2273 4.23985 5.47673 3.21447 6.93854 2.60897C8.40035 2.00347 10.0089 1.84504 11.5607 2.15372C13.1126 2.4624 14.538 3.22433 15.6569 4.34315C16.7757 5.46197 17.5376 6.88743 17.8463 8.43928C18.155 9.99113 17.9965 11.5997 17.391 13.0615C16.7855 14.5233 15.7602 15.7727 14.4446 16.6518C13.129 17.5308 11.5823 18 10 18C7.87827 18 5.84344 17.1572 4.34315 15.6569C2.84286 14.1566 2 12.1217 2 10Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17663
|
+
, React$1.createElement('svg', { width: "20", height: "20", viewBox: "0 0 20 20" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 334}}
|
|
17664
|
+
, React$1.createElement('path', { d: "M13.71 10.71C13.801 10.6149 13.8724 10.5028 13.92 10.38C14.02 10.1365 14.02 9.86347 13.92 9.62C13.8724 9.49725 13.801 9.38511 13.71 9.29L10.71 6.29C10.5217 6.1017 10.2663 5.99591 10 5.99591C9.7337 5.99591 9.47831 6.1017 9.29 6.29C9.1017 6.47831 8.99591 6.7337 8.99591 7C8.99591 7.26631 9.1017 7.5217 9.29 7.71L10.59 9H7C6.73479 9 6.48043 9.10536 6.2929 9.2929C6.10536 9.48043 6 9.73479 6 10C6 10.2652 6.10536 10.5196 6.2929 10.7071C6.48043 10.8946 6.73479 11 7 11H10.59L9.29 12.29C9.19628 12.383 9.12188 12.4936 9.07111 12.6154C9.02034 12.7373 8.99421 12.868 8.99421 13C8.99421 13.132 9.02034 13.2627 9.07111 13.3846C9.12188 13.5064 9.19628 13.617 9.29 13.71C9.38297 13.8037 9.49357 13.8781 9.61543 13.9289C9.73729 13.9797 9.86799 14.0058 10 14.0058C10.132 14.0058 10.2627 13.9797 10.3846 13.9289C10.5064 13.8781 10.617 13.8037 10.71 13.71L13.71 10.71ZM20 10C20 8.02219 19.4135 6.08879 18.3147 4.4443C17.2159 2.79981 15.6541 1.51809 13.8268 0.761209C11.9996 0.00433284 9.98891 -0.193701 8.0491 0.192152C6.10929 0.578004 4.32746 1.53041 2.92894 2.92894C1.53041 4.32746 0.578004 6.10929 0.192152 8.0491C-0.193701 9.98891 0.00433284 11.9996 0.761209 13.8268C1.51809 15.6541 2.79981 17.2159 4.4443 18.3147C6.08879 19.4135 8.02219 20 10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10ZM2 10C2 8.41775 2.4692 6.87104 3.34825 5.55544C4.2273 4.23985 5.47673 3.21447 6.93854 2.60897C8.40035 2.00347 10.0089 1.84504 11.5607 2.15372C13.1126 2.4624 14.538 3.22433 15.6569 4.34315C16.7757 5.46197 17.5376 6.88743 17.8463 8.43928C18.155 9.99113 17.9965 11.5997 17.391 13.0615C16.7855 14.5233 15.7602 15.7727 14.4446 16.6518C13.129 17.5308 11.5823 18 10 18C7.87827 18 5.84344 17.1572 4.34315 15.6569C2.84286 14.1566 2 12.1217 2 10Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 335}})
|
|
17656
17665
|
)
|
|
17657
17666
|
)
|
|
17658
17667
|
|
|
17659
17668
|
)
|
|
17660
17669
|
/*calendar view*/
|
|
17661
|
-
, React$1.createElement('div', { style: {display: calendarView ? 'block ' : 'none'}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17662
|
-
, React$1.createElement('div', { className: "weekdays", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17670
|
+
, React$1.createElement('div', { style: {display: calendarView ? 'block ' : 'none'}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 341}}
|
|
17671
|
+
, React$1.createElement('div', { className: "weekdays", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 342}}
|
|
17663
17672
|
, daysOfWeek.map((day) => (
|
|
17664
|
-
React$1.createElement('div', { key: day, className: "weekday", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17673
|
+
React$1.createElement('div', { key: day, className: "weekday", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 344}}
|
|
17665
17674
|
, day
|
|
17666
17675
|
)
|
|
17667
17676
|
))
|
|
17668
17677
|
)
|
|
17669
|
-
, React$1.createElement('div', { className: "days", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17678
|
+
, React$1.createElement('div', { className: "days", __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 349}}, renderCalendar())
|
|
17670
17679
|
)
|
|
17671
17680
|
|
|
17672
17681
|
/*year picker*/
|
|
17673
|
-
, React$1.createElement('div', { style: {display: !calendarView ? 'block' : 'none'}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber:
|
|
17682
|
+
, React$1.createElement('div', { style: {display: !calendarView ? 'block' : 'none'}, __self: undefined, __source: {fileName: _jsxFileName$S, lineNumber: 353}}
|
|
17674
17683
|
, renderYearPicker(currentYear)
|
|
17675
17684
|
)
|
|
17676
17685
|
)
|
|
@@ -17955,7 +17964,7 @@ const _jsxFileName$R = "D:\\SSX\\Project\\Component Library\\sscomp\\src\\compon
|
|
|
17955
17964
|
/**
|
|
17956
17965
|
* Component for picking date ranges
|
|
17957
17966
|
*/
|
|
17958
|
-
const DateRangePicker = ({ selectedDateRange,label,subtext ,placeholder,showActionButtons,width}) => {
|
|
17967
|
+
const DateRangePicker = ({ selectedDateRange,label,subtext ,placeholder,showActionButtons,width,readonly}) => {
|
|
17959
17968
|
const [startMonth, setStartMonth] = React$1.useState(new Date());
|
|
17960
17969
|
const [endMonth, setEndMonth] = React$1.useState(() => {
|
|
17961
17970
|
const nextMonth = new Date();
|
|
@@ -17973,6 +17982,7 @@ const DateRangePicker = ({ selectedDateRange,label,subtext ,placeholder,showActi
|
|
|
17973
17982
|
const calenderComponent = document.querySelector('.datepicker-comp');
|
|
17974
17983
|
const yearMonthHeader = document.querySelector('.year-view');
|
|
17975
17984
|
if (calenderComponent.contains(e.target ) || yearMonthHeader.contains(e.target )) {
|
|
17985
|
+
if (readonly) return
|
|
17976
17986
|
setShowCalendar(true);
|
|
17977
17987
|
} else {
|
|
17978
17988
|
setShowCalendar(false);
|
|
@@ -18070,39 +18080,41 @@ const DateRangePicker = ({ selectedDateRange,label,subtext ,placeholder,showActi
|
|
|
18070
18080
|
returnedYear(i);
|
|
18071
18081
|
yearPickerVisible(false);
|
|
18072
18082
|
setTimeout(()=>{
|
|
18083
|
+
if (readonly) return
|
|
18073
18084
|
setShowCalendar(true);
|
|
18074
18085
|
},3);
|
|
18075
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18086
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 123}}, i));
|
|
18076
18087
|
}
|
|
18077
18088
|
return years
|
|
18078
18089
|
};
|
|
18079
18090
|
|
|
18080
18091
|
return (
|
|
18081
|
-
React$1.createElement(YearPickerContainer, {__self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18082
|
-
, React$1.createElement('div', { className: "header cal-header" , __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18083
|
-
, React$1.createElement('button', { type: "button", onClick: handlePreviousRange, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18084
|
-
, React$1.createElement('svg', { width: "20", height: "20", viewBox: "0 0 20 20" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18085
|
-
, React$1.createElement('path', { d: "M6.29 9.29C6.19896 9.3851 6.12759 9.49725 6.08 9.62C5.97998 9.86346 5.97998 10.1365 6.08 10.38C6.12759 10.5028 6.19896 10.6149 6.29 10.71L9.29 13.71C9.4783 13.8983 9.7337 14.0041 10 14.0041C10.2663 14.0041 10.5217 13.8983 10.71 13.71C10.8983 13.5217 11.0041 13.2663 11.0041 13C11.0041 12.7337 10.8983 12.4783 10.71 12.29L9.41 11H13C13.2652 11 13.5196 10.8946 13.7071 10.7071C13.8946 10.5196 14 10.2652 14 10C14 9.73478 13.8946 9.48043 13.7071 9.29289C13.5196 9.10536 13.2652 9 13 9H9.41L10.71 7.71C10.8037 7.61704 10.8781 7.50644 10.9289 7.38458C10.9797 7.26272 11.0058 7.13201 11.0058 7C11.0058 6.86799 10.9797 6.73728 10.9289 6.61542C10.8781 6.49356 10.8037 6.38296 10.71 6.29C10.617 6.19627 10.5064 6.12188 10.3846 6.07111C10.2627 6.02034 10.132 5.9942 10 5.9942C9.86799 5.9942 9.73728 6.02034 9.61542 6.07111C9.49356 6.12188 9.38296 6.19627 9.29 6.29L6.29 9.29ZM0 10C0 11.9778 0.58649 13.9112 1.6853 15.5557C2.78412 17.2002 4.3459 18.4819 6.17317 19.2388C8.00043 19.9957 10.0111 20.1937 11.9509 19.8079C13.8907 19.422 15.6725 18.4696 17.0711 17.0711C18.4696 15.6725 19.422 13.8907 19.8079 11.9509C20.1937 10.0111 19.9957 8.00043 19.2388 6.17317C18.4819 4.3459 17.2002 2.78412 15.5557 1.6853C13.9112 0.58649 11.9778 0 10 0C8.68678 0 7.38642 0.258658 6.17317 0.761205C4.95991 1.26375 3.85752 2.00035 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10ZM18 10C18 11.5823 17.5308 13.129 16.6518 14.4446C15.7727 15.7602 14.5233 16.7855 13.0615 17.391C11.5997 17.9965 9.99113 18.155 8.43928 17.8463C6.88743 17.5376 5.46197 16.7757 4.34315 15.6569C3.22433 14.538 2.4624 13.1126 2.15372 11.5607C1.84504 10.0089 2.00346 8.40034 2.60896 6.93853C3.21447 5.47672 4.23984 4.22729 5.55544 3.34824C6.87103 2.46919 8.41775 2 10 2C12.1217 2 14.1566 2.84285 15.6569 4.34315C17.1571 5.84344 18 7.87827 18 10Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18092
|
+
React$1.createElement(YearPickerContainer, {__self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 136}}
|
|
18093
|
+
, React$1.createElement('div', { className: "header cal-header" , __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 137}}
|
|
18094
|
+
, React$1.createElement('button', { type: "button", onClick: handlePreviousRange, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 138}}
|
|
18095
|
+
, React$1.createElement('svg', { width: "20", height: "20", viewBox: "0 0 20 20" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 139}}
|
|
18096
|
+
, React$1.createElement('path', { d: "M6.29 9.29C6.19896 9.3851 6.12759 9.49725 6.08 9.62C5.97998 9.86346 5.97998 10.1365 6.08 10.38C6.12759 10.5028 6.19896 10.6149 6.29 10.71L9.29 13.71C9.4783 13.8983 9.7337 14.0041 10 14.0041C10.2663 14.0041 10.5217 13.8983 10.71 13.71C10.8983 13.5217 11.0041 13.2663 11.0041 13C11.0041 12.7337 10.8983 12.4783 10.71 12.29L9.41 11H13C13.2652 11 13.5196 10.8946 13.7071 10.7071C13.8946 10.5196 14 10.2652 14 10C14 9.73478 13.8946 9.48043 13.7071 9.29289C13.5196 9.10536 13.2652 9 13 9H9.41L10.71 7.71C10.8037 7.61704 10.8781 7.50644 10.9289 7.38458C10.9797 7.26272 11.0058 7.13201 11.0058 7C11.0058 6.86799 10.9797 6.73728 10.9289 6.61542C10.8781 6.49356 10.8037 6.38296 10.71 6.29C10.617 6.19627 10.5064 6.12188 10.3846 6.07111C10.2627 6.02034 10.132 5.9942 10 5.9942C9.86799 5.9942 9.73728 6.02034 9.61542 6.07111C9.49356 6.12188 9.38296 6.19627 9.29 6.29L6.29 9.29ZM0 10C0 11.9778 0.58649 13.9112 1.6853 15.5557C2.78412 17.2002 4.3459 18.4819 6.17317 19.2388C8.00043 19.9957 10.0111 20.1937 11.9509 19.8079C13.8907 19.422 15.6725 18.4696 17.0711 17.0711C18.4696 15.6725 19.422 13.8907 19.8079 11.9509C20.1937 10.0111 19.9957 8.00043 19.2388 6.17317C18.4819 4.3459 17.2002 2.78412 15.5557 1.6853C13.9112 0.58649 11.9778 0 10 0C8.68678 0 7.38642 0.258658 6.17317 0.761205C4.95991 1.26375 3.85752 2.00035 2.92893 2.92893C1.05357 4.8043 0 7.34784 0 10ZM18 10C18 11.5823 17.5308 13.129 16.6518 14.4446C15.7727 15.7602 14.5233 16.7855 13.0615 17.391C11.5997 17.9965 9.99113 18.155 8.43928 17.8463C6.88743 17.5376 5.46197 16.7757 4.34315 15.6569C3.22433 14.538 2.4624 13.1126 2.15372 11.5607C1.84504 10.0089 2.00346 8.40034 2.60896 6.93853C3.21447 5.47672 4.23984 4.22729 5.55544 3.34824C6.87103 2.46919 8.41775 2 10 2C12.1217 2 14.1566 2.84285 15.6569 4.34315C17.1571 5.84344 18 7.87827 18 10Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 140}})
|
|
18086
18097
|
)
|
|
18087
18098
|
)
|
|
18088
18099
|
, React$1.createElement('button', { type: "button", className: "month-year", onClick: ()=>{
|
|
18089
18100
|
yearPickerVisible(false);
|
|
18090
18101
|
setTimeout(()=>{
|
|
18102
|
+
if (readonly) return
|
|
18091
18103
|
setShowCalendar(true);
|
|
18092
18104
|
},3);
|
|
18093
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18105
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 143}}
|
|
18094
18106
|
, monthYear
|
|
18095
|
-
, React$1.createElement('svg', { className: "year-view", width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18096
|
-
, React$1.createElement('path', { d: "M11 1.17C10.8126 0.983753 10.5592 0.879211 10.295 0.879211C10.0308 0.879211 9.77737 0.983753 9.59001 1.17L6.00001 4.71L2.46001 1.17C2.27265 0.983753 2.0192 0.879211 1.75501 0.879211C1.49082 0.879211 1.23737 0.983753 1.05001 1.17C0.956281 1.26297 0.881887 1.37357 0.831118 1.49543C0.780349 1.61729 0.754211 1.74799 0.754211 1.88C0.754211 2.01202 0.780349 2.14272 0.831118 2.26458C0.881887 2.38644 0.956281 2.49704 1.05001 2.59L5.29001 6.83C5.38297 6.92373 5.49357 6.99813 5.61543 7.04889C5.73729 7.09966 5.868 7.1258 6.00001 7.1258C6.13202 7.1258 6.26273 7.09966 6.38459 7.04889C6.50645 6.99813 6.61705 6.92373 6.71001 6.83L11 2.59C11.0937 2.49704 11.1681 2.38644 11.2189 2.26458C11.2697 2.14272 11.2958 2.01202 11.2958 1.88C11.2958 1.74799 11.2697 1.61729 11.2189 1.49543C11.1681 1.37357 11.0937 1.26297 11 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18107
|
+
, React$1.createElement('svg', { className: "year-view", width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 151}}
|
|
18108
|
+
, React$1.createElement('path', { d: "M11 1.17C10.8126 0.983753 10.5592 0.879211 10.295 0.879211C10.0308 0.879211 9.77737 0.983753 9.59001 1.17L6.00001 4.71L2.46001 1.17C2.27265 0.983753 2.0192 0.879211 1.75501 0.879211C1.49082 0.879211 1.23737 0.983753 1.05001 1.17C0.956281 1.26297 0.881887 1.37357 0.831118 1.49543C0.780349 1.61729 0.754211 1.74799 0.754211 1.88C0.754211 2.01202 0.780349 2.14272 0.831118 2.26458C0.881887 2.38644 0.956281 2.49704 1.05001 2.59L5.29001 6.83C5.38297 6.92373 5.49357 6.99813 5.61543 7.04889C5.73729 7.09966 5.868 7.1258 6.00001 7.1258C6.13202 7.1258 6.26273 7.09966 6.38459 7.04889C6.50645 6.99813 6.61705 6.92373 6.71001 6.83L11 2.59C11.0937 2.49704 11.1681 2.38644 11.2189 2.26458C11.2697 2.14272 11.2958 2.01202 11.2958 1.88C11.2958 1.74799 11.2697 1.61729 11.2189 1.49543C11.1681 1.37357 11.0937 1.26297 11 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 152}})
|
|
18097
18109
|
)
|
|
18098
18110
|
)
|
|
18099
|
-
, React$1.createElement('button', { type: "button", onClick: handleNextRange, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18100
|
-
, React$1.createElement('svg', { width: "20", height: "20", viewBox: "0 0 20 20" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18101
|
-
, React$1.createElement('path', { d: "M13.71 10.71C13.801 10.6149 13.8724 10.5028 13.92 10.38C14.02 10.1365 14.02 9.86347 13.92 9.62C13.8724 9.49725 13.801 9.38511 13.71 9.29L10.71 6.29C10.5217 6.1017 10.2663 5.99591 10 5.99591C9.7337 5.99591 9.47831 6.1017 9.29 6.29C9.1017 6.47831 8.99591 6.7337 8.99591 7C8.99591 7.26631 9.1017 7.5217 9.29 7.71L10.59 9H7C6.73479 9 6.48043 9.10536 6.2929 9.2929C6.10536 9.48043 6 9.73479 6 10C6 10.2652 6.10536 10.5196 6.2929 10.7071C6.48043 10.8946 6.73479 11 7 11H10.59L9.29 12.29C9.19628 12.383 9.12188 12.4936 9.07111 12.6154C9.02034 12.7373 8.99421 12.868 8.99421 13C8.99421 13.132 9.02034 13.2627 9.07111 13.3846C9.12188 13.5064 9.19628 13.617 9.29 13.71C9.38297 13.8037 9.49357 13.8781 9.61543 13.9289C9.73729 13.9797 9.86799 14.0058 10 14.0058C10.132 14.0058 10.2627 13.9797 10.3846 13.9289C10.5064 13.8781 10.617 13.8037 10.71 13.71L13.71 10.71ZM20 10C20 8.02219 19.4135 6.08879 18.3147 4.4443C17.2159 2.79981 15.6541 1.51809 13.8268 0.761209C11.9996 0.00433284 9.98891 -0.193701 8.0491 0.192152C6.10929 0.578004 4.32746 1.53041 2.92894 2.92894C1.53041 4.32746 0.578004 6.10929 0.192152 8.0491C-0.193701 9.98891 0.00433284 11.9996 0.761209 13.8268C1.51809 15.6541 2.79981 17.2159 4.4443 18.3147C6.08879 19.4135 8.02219 20 10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10ZM2 10C2 8.41775 2.4692 6.87104 3.34825 5.55544C4.2273 4.23985 5.47673 3.21447 6.93854 2.60897C8.40035 2.00347 10.0089 1.84504 11.5607 2.15372C13.1126 2.4624 14.538 3.22433 15.6569 4.34315C16.7757 5.46197 17.5376 6.88743 17.8463 8.43928C18.155 9.99113 17.9965 11.5997 17.391 13.0615C16.7855 14.5233 15.7602 15.7727 14.4446 16.6518C13.129 17.5308 11.5823 18 10 18C7.87827 18 5.84344 17.1572 4.34315 15.6569C2.84286 14.1566 2 12.1217 2 10Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18111
|
+
, React$1.createElement('button', { type: "button", onClick: handleNextRange, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 155}}
|
|
18112
|
+
, React$1.createElement('svg', { width: "20", height: "20", viewBox: "0 0 20 20" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 156}}
|
|
18113
|
+
, React$1.createElement('path', { d: "M13.71 10.71C13.801 10.6149 13.8724 10.5028 13.92 10.38C14.02 10.1365 14.02 9.86347 13.92 9.62C13.8724 9.49725 13.801 9.38511 13.71 9.29L10.71 6.29C10.5217 6.1017 10.2663 5.99591 10 5.99591C9.7337 5.99591 9.47831 6.1017 9.29 6.29C9.1017 6.47831 8.99591 6.7337 8.99591 7C8.99591 7.26631 9.1017 7.5217 9.29 7.71L10.59 9H7C6.73479 9 6.48043 9.10536 6.2929 9.2929C6.10536 9.48043 6 9.73479 6 10C6 10.2652 6.10536 10.5196 6.2929 10.7071C6.48043 10.8946 6.73479 11 7 11H10.59L9.29 12.29C9.19628 12.383 9.12188 12.4936 9.07111 12.6154C9.02034 12.7373 8.99421 12.868 8.99421 13C8.99421 13.132 9.02034 13.2627 9.07111 13.3846C9.12188 13.5064 9.19628 13.617 9.29 13.71C9.38297 13.8037 9.49357 13.8781 9.61543 13.9289C9.73729 13.9797 9.86799 14.0058 10 14.0058C10.132 14.0058 10.2627 13.9797 10.3846 13.9289C10.5064 13.8781 10.617 13.8037 10.71 13.71L13.71 10.71ZM20 10C20 8.02219 19.4135 6.08879 18.3147 4.4443C17.2159 2.79981 15.6541 1.51809 13.8268 0.761209C11.9996 0.00433284 9.98891 -0.193701 8.0491 0.192152C6.10929 0.578004 4.32746 1.53041 2.92894 2.92894C1.53041 4.32746 0.578004 6.10929 0.192152 8.0491C-0.193701 9.98891 0.00433284 11.9996 0.761209 13.8268C1.51809 15.6541 2.79981 17.2159 4.4443 18.3147C6.08879 19.4135 8.02219 20 10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10ZM2 10C2 8.41775 2.4692 6.87104 3.34825 5.55544C4.2273 4.23985 5.47673 3.21447 6.93854 2.60897C8.40035 2.00347 10.0089 1.84504 11.5607 2.15372C13.1126 2.4624 14.538 3.22433 15.6569 4.34315C16.7757 5.46197 17.5376 6.88743 17.8463 8.43928C18.155 9.99113 17.9965 11.5997 17.391 13.0615C16.7855 14.5233 15.7602 15.7727 14.4446 16.6518C13.129 17.5308 11.5823 18 10 18C7.87827 18 5.84344 17.1572 4.34315 15.6569C2.84286 14.1566 2 12.1217 2 10Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 157}})
|
|
18102
18114
|
)
|
|
18103
18115
|
)
|
|
18104
18116
|
)
|
|
18105
|
-
, React$1.createElement('div', { className: "years-grid", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18117
|
+
, React$1.createElement('div', { className: "years-grid", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 161}}
|
|
18106
18118
|
, renderYears()
|
|
18107
18119
|
)
|
|
18108
18120
|
)
|
|
@@ -18150,7 +18162,7 @@ const DateRangePicker = ({ selectedDateRange,label,subtext ,placeholder,showActi
|
|
|
18150
18162
|
}
|
|
18151
18163
|
|
|
18152
18164
|
calendar.push(
|
|
18153
|
-
React$1.createElement('div', { key: i, className: additionalClasses, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18165
|
+
React$1.createElement('div', { key: i, className: additionalClasses, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 210}}
|
|
18154
18166
|
, otherMonthDate.getDate()
|
|
18155
18167
|
)
|
|
18156
18168
|
);
|
|
@@ -18177,7 +18189,7 @@ const DateRangePicker = ({ selectedDateRange,label,subtext ,placeholder,showActi
|
|
|
18177
18189
|
React$1.createElement('div', {
|
|
18178
18190
|
key: i,
|
|
18179
18191
|
className: `day ${additionalClasses} ${isWithinRange ? 'within-range' : ''}`,
|
|
18180
|
-
onClick: handleClick, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18192
|
+
onClick: handleClick, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 234}}
|
|
18181
18193
|
|
|
18182
18194
|
, day
|
|
18183
18195
|
)
|
|
@@ -18188,14 +18200,14 @@ const DateRangePicker = ({ selectedDateRange,label,subtext ,placeholder,showActi
|
|
|
18188
18200
|
|
|
18189
18201
|
return (
|
|
18190
18202
|
React$1.createElement(React$1.Fragment, null
|
|
18191
|
-
, React$1.createElement('div', { className: "weekdays", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18203
|
+
, React$1.createElement('div', { className: "weekdays", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 248}}
|
|
18192
18204
|
, shortWeekdays.map((weekday, index) => (
|
|
18193
|
-
React$1.createElement('div', { key: index, className: "weekday", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18205
|
+
React$1.createElement('div', { key: index, className: "weekday", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 250}}
|
|
18194
18206
|
, weekday
|
|
18195
18207
|
)
|
|
18196
18208
|
))
|
|
18197
18209
|
)
|
|
18198
|
-
, React$1.createElement('div', { className: "calendar-grid", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18210
|
+
, React$1.createElement('div', { className: "calendar-grid", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 255}}, calendar)
|
|
18199
18211
|
)
|
|
18200
18212
|
)
|
|
18201
18213
|
};
|
|
@@ -18213,109 +18225,115 @@ const DateRangePicker = ({ selectedDateRange,label,subtext ,placeholder,showActi
|
|
|
18213
18225
|
const options = {day:'2-digit',month:'short',year:'numeric'};
|
|
18214
18226
|
|
|
18215
18227
|
return (
|
|
18216
|
-
React$1.createElement(DateRangePickerComp, { className: "datepicker-comp", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18217
|
-
, React$1.createElement('div', { className: "input-field", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18228
|
+
React$1.createElement(DateRangePickerComp, { className: "datepicker-comp", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 273}}
|
|
18229
|
+
, React$1.createElement('div', { className: "input-field", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 274}}
|
|
18218
18230
|
, label &&
|
|
18219
|
-
React$1.createElement(InputLabel$8, {__self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18220
|
-
, React$1.createElement('label', {__self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18221
|
-
, subtext && React$1.createElement('span', {__self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18231
|
+
React$1.createElement(InputLabel$8, {__self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 276}}
|
|
18232
|
+
, React$1.createElement('label', {__self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 277}}, label)
|
|
18233
|
+
, subtext && React$1.createElement('span', {__self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 278}}, subtext)
|
|
18222
18234
|
)
|
|
18223
18235
|
|
|
18224
|
-
, React$1.createElement(InputField$4, { className: `${showCalendar ? 'focused' : ''} ${startDate && endDate ? 'success' : ''}`, style: {width:width ? width : '100%'}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18236
|
+
, React$1.createElement(InputField$4, { className: `${showCalendar ? 'focused' : ''} ${startDate && endDate ? 'success' : ''}`, style: {width:width ? width : '100%'}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 281}}
|
|
18225
18237
|
, React$1.createElement('input', {
|
|
18226
18238
|
type: "text",
|
|
18227
18239
|
value: startDate ? `${startDate.toLocaleDateString('en-GB',options)} - ${endDate ? endDate.toLocaleDateString('en-GB',options) : ''}` : '',
|
|
18228
18240
|
readOnly: true,
|
|
18229
18241
|
placeholder: placeholder ? placeholder : 'Select a date range',
|
|
18230
|
-
onClick: ()=>{
|
|
18242
|
+
onClick: ()=>{
|
|
18243
|
+
if (readonly) return
|
|
18244
|
+
setShowCalendar(true);
|
|
18245
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 282}}
|
|
18231
18246
|
)
|
|
18232
|
-
, React$1.createElement('button', { type: "button", onClick: ()=>{
|
|
18247
|
+
, React$1.createElement('button', { type: "button", onClick: ()=>{
|
|
18248
|
+
if (readonly) return
|
|
18249
|
+
setShowCalendar(!showCalendar);
|
|
18250
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 292}}
|
|
18233
18251
|
/*calendar icon*/
|
|
18234
|
-
, React$1.createElement('svg', { width: "21", height: "22", viewBox: "0 0 21 22" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18235
|
-
, React$1.createElement('path', { d: "M10.5 18C10.6978 18 10.8911 17.9414 11.0556 17.8315C11.22 17.7216 11.3482 17.5654 11.4239 17.3827C11.4996 17.2 11.5194 16.9989 11.4808 16.8049C11.4422 16.6109 11.347 16.4327 11.2071 16.2929C11.0673 16.153 10.8891 16.0578 10.6951 16.0192C10.5011 15.9806 10.3 16.0004 10.1173 16.0761C9.93459 16.1518 9.77841 16.28 9.66853 16.4444C9.55865 16.6089 9.5 16.8022 9.5 17C9.5 17.2652 9.60536 17.5196 9.79289 17.7071C9.98043 17.8946 10.2348 18 10.5 18ZM15.5 18C15.6978 18 15.8911 17.9414 16.0556 17.8315C16.22 17.7216 16.3482 17.5654 16.4239 17.3827C16.4996 17.2 16.5194 16.9989 16.4808 16.8049C16.4422 16.6109 16.347 16.4327 16.2071 16.2929C16.0673 16.153 15.8891 16.0578 15.6951 16.0192C15.5011 15.9806 15.3 16.0004 15.1173 16.0761C14.9346 16.1518 14.7784 16.28 14.6685 16.4444C14.5586 16.6089 14.5 16.8022 14.5 17C14.5 17.2652 14.6054 17.5196 14.7929 17.7071C14.9804 17.8946 15.2348 18 15.5 18ZM15.5 14C15.6978 14 15.8911 13.9414 16.0556 13.8315C16.22 13.7216 16.3482 13.5654 16.4239 13.3827C16.4996 13.2 16.5194 12.9989 16.4808 12.8049C16.4422 12.6109 16.347 12.4327 16.2071 12.2929C16.0673 12.153 15.8891 12.0578 15.6951 12.0192C15.5011 11.9806 15.3 12.0004 15.1173 12.0761C14.9346 12.1518 14.7784 12.28 14.6685 12.4444C14.5586 12.6089 14.5 12.8022 14.5 13C14.5 13.2652 14.6054 13.5196 14.7929 13.7071C14.9804 13.8946 15.2348 14 15.5 14ZM10.5 14C10.6978 14 10.8911 13.9414 11.0556 13.8315C11.22 13.7216 11.3482 13.5654 11.4239 13.3827C11.4996 13.2 11.5194 12.9989 11.4808 12.8049C11.4422 12.6109 11.347 12.4327 11.2071 12.2929C11.0673 12.153 10.8891 12.0578 10.6951 12.0192C10.5011 11.9806 10.3 12.0004 10.1173 12.0761C9.93459 12.1518 9.77841 12.28 9.66853 12.4444C9.55865 12.6089 9.5 12.8022 9.5 13C9.5 13.2652 9.60536 13.5196 9.79289 13.7071C9.98043 13.8946 10.2348 14 10.5 14ZM17.5 2H16.5V1C16.5 0.734784 16.3946 0.48043 16.2071 0.292893C16.0196 0.105357 15.7652 0 15.5 0C15.2348 0 14.9804 0.105357 14.7929 0.292893C14.6054 0.48043 14.5 0.734784 14.5 1V2H6.5V1C6.5 0.734784 6.39464 0.48043 6.20711 0.292893C6.01957 0.105357 5.76522 0 5.5 0C5.23478 0 4.98043 0.105357 4.79289 0.292893C4.60536 0.48043 4.5 0.734784 4.5 1V2H3.5C2.70435 2 1.94129 2.31607 1.37868 2.87868C0.816071 3.44129 0.5 4.20435 0.5 5V19C0.5 19.7956 0.816071 20.5587 1.37868 21.1213C1.94129 21.6839 2.70435 22 3.5 22H17.5C18.2956 22 19.0587 21.6839 19.6213 21.1213C20.1839 20.5587 20.5 19.7956 20.5 19V5C20.5 4.20435 20.1839 3.44129 19.6213 2.87868C19.0587 2.31607 18.2956 2 17.5 2ZM18.5 19C18.5 19.2652 18.3946 19.5196 18.2071 19.7071C18.0196 19.8946 17.7652 20 17.5 20H3.5C3.23478 20 2.98043 19.8946 2.79289 19.7071C2.60536 19.5196 2.5 19.2652 2.5 19V10H18.5V19ZM18.5 8H2.5V5C2.5 4.73478 2.60536 4.48043 2.79289 4.29289C2.98043 4.10536 3.23478 4 3.5 4H4.5V5C4.5 5.26522 4.60536 5.51957 4.79289 5.70711C4.98043 5.89464 5.23478 6 5.5 6C5.76522 6 6.01957 5.89464 6.20711 5.70711C6.39464 5.51957 6.5 5.26522 6.5 5V4H14.5V5C14.5 5.26522 14.6054 5.51957 14.7929 5.70711C14.9804 5.89464 15.2348 6 15.5 6C15.7652 6 16.0196 5.89464 16.2071 5.70711C16.3946 5.51957 16.5 5.26522 16.5 5V4H17.5C17.7652 4 18.0196 4.10536 18.2071 4.29289C18.3946 4.48043 18.5 4.73478 18.5 5V8ZM5.5 14C5.69778 14 5.89112 13.9414 6.05557 13.8315C6.22002 13.7216 6.34819 13.5654 6.42388 13.3827C6.49957 13.2 6.51937 12.9989 6.48079 12.8049C6.4422 12.6109 6.34696 12.4327 6.20711 12.2929C6.06725 12.153 5.88907 12.0578 5.69509 12.0192C5.50111 11.9806 5.30004 12.0004 5.11732 12.0761C4.93459 12.1518 4.77841 12.28 4.66853 12.4444C4.55865 12.6089 4.5 12.8022 4.5 13C4.5 13.2652 4.60536 13.5196 4.79289 13.7071C4.98043 13.8946 5.23478 14 5.5 14ZM5.5 18C5.69778 18 5.89112 17.9414 6.05557 17.8315C6.22002 17.7216 6.34819 17.5654 6.42388 17.3827C6.49957 17.2 6.51937 16.9989 6.48079 16.8049C6.4422 16.6109 6.34696 16.4327 6.20711 16.2929C6.06725 16.153 5.88907 16.0578 5.69509 16.0192C5.50111 15.9806 5.30004 16.0004 5.11732 16.0761C4.93459 16.1518 4.77841 16.28 4.66853 16.4444C4.55865 16.6089 4.5 16.8022 4.5 17C4.5 17.2652 4.60536 17.5196 4.79289 17.7071C4.98043 17.8946 5.23478 18 5.5 18Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18252
|
+
, React$1.createElement('svg', { width: "21", height: "22", viewBox: "0 0 21 22" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 297}}
|
|
18253
|
+
, React$1.createElement('path', { d: "M10.5 18C10.6978 18 10.8911 17.9414 11.0556 17.8315C11.22 17.7216 11.3482 17.5654 11.4239 17.3827C11.4996 17.2 11.5194 16.9989 11.4808 16.8049C11.4422 16.6109 11.347 16.4327 11.2071 16.2929C11.0673 16.153 10.8891 16.0578 10.6951 16.0192C10.5011 15.9806 10.3 16.0004 10.1173 16.0761C9.93459 16.1518 9.77841 16.28 9.66853 16.4444C9.55865 16.6089 9.5 16.8022 9.5 17C9.5 17.2652 9.60536 17.5196 9.79289 17.7071C9.98043 17.8946 10.2348 18 10.5 18ZM15.5 18C15.6978 18 15.8911 17.9414 16.0556 17.8315C16.22 17.7216 16.3482 17.5654 16.4239 17.3827C16.4996 17.2 16.5194 16.9989 16.4808 16.8049C16.4422 16.6109 16.347 16.4327 16.2071 16.2929C16.0673 16.153 15.8891 16.0578 15.6951 16.0192C15.5011 15.9806 15.3 16.0004 15.1173 16.0761C14.9346 16.1518 14.7784 16.28 14.6685 16.4444C14.5586 16.6089 14.5 16.8022 14.5 17C14.5 17.2652 14.6054 17.5196 14.7929 17.7071C14.9804 17.8946 15.2348 18 15.5 18ZM15.5 14C15.6978 14 15.8911 13.9414 16.0556 13.8315C16.22 13.7216 16.3482 13.5654 16.4239 13.3827C16.4996 13.2 16.5194 12.9989 16.4808 12.8049C16.4422 12.6109 16.347 12.4327 16.2071 12.2929C16.0673 12.153 15.8891 12.0578 15.6951 12.0192C15.5011 11.9806 15.3 12.0004 15.1173 12.0761C14.9346 12.1518 14.7784 12.28 14.6685 12.4444C14.5586 12.6089 14.5 12.8022 14.5 13C14.5 13.2652 14.6054 13.5196 14.7929 13.7071C14.9804 13.8946 15.2348 14 15.5 14ZM10.5 14C10.6978 14 10.8911 13.9414 11.0556 13.8315C11.22 13.7216 11.3482 13.5654 11.4239 13.3827C11.4996 13.2 11.5194 12.9989 11.4808 12.8049C11.4422 12.6109 11.347 12.4327 11.2071 12.2929C11.0673 12.153 10.8891 12.0578 10.6951 12.0192C10.5011 11.9806 10.3 12.0004 10.1173 12.0761C9.93459 12.1518 9.77841 12.28 9.66853 12.4444C9.55865 12.6089 9.5 12.8022 9.5 13C9.5 13.2652 9.60536 13.5196 9.79289 13.7071C9.98043 13.8946 10.2348 14 10.5 14ZM17.5 2H16.5V1C16.5 0.734784 16.3946 0.48043 16.2071 0.292893C16.0196 0.105357 15.7652 0 15.5 0C15.2348 0 14.9804 0.105357 14.7929 0.292893C14.6054 0.48043 14.5 0.734784 14.5 1V2H6.5V1C6.5 0.734784 6.39464 0.48043 6.20711 0.292893C6.01957 0.105357 5.76522 0 5.5 0C5.23478 0 4.98043 0.105357 4.79289 0.292893C4.60536 0.48043 4.5 0.734784 4.5 1V2H3.5C2.70435 2 1.94129 2.31607 1.37868 2.87868C0.816071 3.44129 0.5 4.20435 0.5 5V19C0.5 19.7956 0.816071 20.5587 1.37868 21.1213C1.94129 21.6839 2.70435 22 3.5 22H17.5C18.2956 22 19.0587 21.6839 19.6213 21.1213C20.1839 20.5587 20.5 19.7956 20.5 19V5C20.5 4.20435 20.1839 3.44129 19.6213 2.87868C19.0587 2.31607 18.2956 2 17.5 2ZM18.5 19C18.5 19.2652 18.3946 19.5196 18.2071 19.7071C18.0196 19.8946 17.7652 20 17.5 20H3.5C3.23478 20 2.98043 19.8946 2.79289 19.7071C2.60536 19.5196 2.5 19.2652 2.5 19V10H18.5V19ZM18.5 8H2.5V5C2.5 4.73478 2.60536 4.48043 2.79289 4.29289C2.98043 4.10536 3.23478 4 3.5 4H4.5V5C4.5 5.26522 4.60536 5.51957 4.79289 5.70711C4.98043 5.89464 5.23478 6 5.5 6C5.76522 6 6.01957 5.89464 6.20711 5.70711C6.39464 5.51957 6.5 5.26522 6.5 5V4H14.5V5C14.5 5.26522 14.6054 5.51957 14.7929 5.70711C14.9804 5.89464 15.2348 6 15.5 6C15.7652 6 16.0196 5.89464 16.2071 5.70711C16.3946 5.51957 16.5 5.26522 16.5 5V4H17.5C17.7652 4 18.0196 4.10536 18.2071 4.29289C18.3946 4.48043 18.5 4.73478 18.5 5V8ZM5.5 14C5.69778 14 5.89112 13.9414 6.05557 13.8315C6.22002 13.7216 6.34819 13.5654 6.42388 13.3827C6.49957 13.2 6.51937 12.9989 6.48079 12.8049C6.4422 12.6109 6.34696 12.4327 6.20711 12.2929C6.06725 12.153 5.88907 12.0578 5.69509 12.0192C5.50111 11.9806 5.30004 12.0004 5.11732 12.0761C4.93459 12.1518 4.77841 12.28 4.66853 12.4444C4.55865 12.6089 4.5 12.8022 4.5 13C4.5 13.2652 4.60536 13.5196 4.79289 13.7071C4.98043 13.8946 5.23478 14 5.5 14ZM5.5 18C5.69778 18 5.89112 17.9414 6.05557 17.8315C6.22002 17.7216 6.34819 17.5654 6.42388 17.3827C6.49957 17.2 6.51937 16.9989 6.48079 16.8049C6.4422 16.6109 6.34696 16.4327 6.20711 16.2929C6.06725 16.153 5.88907 16.0578 5.69509 16.0192C5.50111 15.9806 5.30004 16.0004 5.11732 16.0761C4.93459 16.1518 4.77841 16.28 4.66853 16.4444C4.55865 16.6089 4.5 16.8022 4.5 17C4.5 17.2652 4.60536 17.5196 4.79289 17.7071C4.98043 17.8946 5.23478 18 5.5 18Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 298}})
|
|
18236
18254
|
)
|
|
18237
18255
|
)
|
|
18238
18256
|
)
|
|
18239
18257
|
)
|
|
18240
18258
|
, showCalendar &&
|
|
18241
|
-
React$1.createElement(CalendarContainer, {__self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18242
|
-
, React$1.createElement('div', { className: "calendars", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18243
|
-
, React$1.createElement('div', { className: "calendar", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18244
|
-
, React$1.createElement('div', { style: {display:!toggleStartYearPicker ? 'block' : 'none'}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18245
|
-
, React$1.createElement('div', { className: "header cal-header" , __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18246
|
-
, React$1.createElement('button', { type: "button", className: "prev-button", onClick: () => handleStartMonthChange(-1), __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18247
|
-
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18248
|
-
, React$1.createElement('path', { d: "M3.28982 5.99995L6.82982 2.45995C7.01607 2.27259 7.12061 2.01913 7.12061 1.75495C7.12061 1.49076 7.01607 1.23731 6.82982 1.04995C6.73686 0.95622 6.62626 0.881826 6.5044 0.831057C6.38254 0.780288 6.25183 0.75415 6.11982 0.75415C5.98781 0.75415 5.8571 0.780288 5.73524 0.831057C5.61339 0.881826 5.50278 0.95622 5.40982 1.04995L1.16982 5.28995C1.07609 5.38291 1.0017 5.49351 0.950931 5.61537C0.900162 5.73723 0.874023 5.86794 0.874023 5.99995C0.874023 6.13196 0.900162 6.26267 0.950931 6.38453C1.0017 6.50638 1.07609 6.61699 1.16982 6.70995L5.40982 10.9999C5.50326 11.0926 5.61408 11.166 5.73592 11.2157C5.85775 11.2655 5.98821 11.2907 6.11982 11.2899C6.25143 11.2907 6.38189 11.2655 6.50373 11.2157C6.62557 11.166 6.73638 11.0926 6.82982 10.9999C7.01607 10.8126 7.12061 10.5591 7.12061 10.2949C7.12061 10.0308 7.01607 9.77731 6.82982 9.58995L3.28982 5.99995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18259
|
+
React$1.createElement(CalendarContainer, {__self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 304}}
|
|
18260
|
+
, React$1.createElement('div', { className: "calendars", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 305}}
|
|
18261
|
+
, React$1.createElement('div', { className: "calendar", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 306}}
|
|
18262
|
+
, React$1.createElement('div', { style: {display:!toggleStartYearPicker ? 'block' : 'none'}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 307}}
|
|
18263
|
+
, React$1.createElement('div', { className: "header cal-header" , __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 308}}
|
|
18264
|
+
, React$1.createElement('button', { type: "button", className: "prev-button", onClick: () => handleStartMonthChange(-1), __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 309}}
|
|
18265
|
+
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 310}}
|
|
18266
|
+
, React$1.createElement('path', { d: "M3.28982 5.99995L6.82982 2.45995C7.01607 2.27259 7.12061 2.01913 7.12061 1.75495C7.12061 1.49076 7.01607 1.23731 6.82982 1.04995C6.73686 0.95622 6.62626 0.881826 6.5044 0.831057C6.38254 0.780288 6.25183 0.75415 6.11982 0.75415C5.98781 0.75415 5.8571 0.780288 5.73524 0.831057C5.61339 0.881826 5.50278 0.95622 5.40982 1.04995L1.16982 5.28995C1.07609 5.38291 1.0017 5.49351 0.950931 5.61537C0.900162 5.73723 0.874023 5.86794 0.874023 5.99995C0.874023 6.13196 0.900162 6.26267 0.950931 6.38453C1.0017 6.50638 1.07609 6.61699 1.16982 6.70995L5.40982 10.9999C5.50326 11.0926 5.61408 11.166 5.73592 11.2157C5.85775 11.2655 5.98821 11.2907 6.11982 11.2899C6.25143 11.2907 6.38189 11.2655 6.50373 11.2157C6.62557 11.166 6.73638 11.0926 6.82982 10.9999C7.01607 10.8126 7.12061 10.5591 7.12061 10.2949C7.12061 10.0308 7.01607 9.77731 6.82982 9.58995L3.28982 5.99995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 311}})
|
|
18249
18267
|
)
|
|
18250
18268
|
)
|
|
18251
|
-
, React$1.createElement('button', { type: "button", className: "month-year", onClick: ()=>{setToggleStartYearPicker(true);}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18269
|
+
, React$1.createElement('button', { type: "button", className: "month-year", onClick: ()=>{setToggleStartYearPicker(true);}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 314}}
|
|
18252
18270
|
, `${startMonthName} ${startYear}`
|
|
18253
|
-
, React$1.createElement('svg', { className: toggleStartYearPicker ? 'year-view' : '', width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18254
|
-
, React$1.createElement('path', { d: "M11 1.17C10.8126 0.983753 10.5592 0.879211 10.295 0.879211C10.0308 0.879211 9.77737 0.983753 9.59001 1.17L6.00001 4.71L2.46001 1.17C2.27265 0.983753 2.0192 0.879211 1.75501 0.879211C1.49082 0.879211 1.23737 0.983753 1.05001 1.17C0.956281 1.26297 0.881887 1.37357 0.831118 1.49543C0.780349 1.61729 0.754211 1.74799 0.754211 1.88C0.754211 2.01202 0.780349 2.14272 0.831118 2.26458C0.881887 2.38644 0.956281 2.49704 1.05001 2.59L5.29001 6.83C5.38297 6.92373 5.49357 6.99813 5.61543 7.04889C5.73729 7.09966 5.868 7.1258 6.00001 7.1258C6.13202 7.1258 6.26273 7.09966 6.38459 7.04889C6.50645 6.99813 6.61705 6.92373 6.71001 6.83L11 2.59C11.0937 2.49704 11.1681 2.38644 11.2189 2.26458C11.2697 2.14272 11.2958 2.01202 11.2958 1.88C11.2958 1.74799 11.2697 1.61729 11.2189 1.49543C11.1681 1.37357 11.0937 1.26297 11 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18271
|
+
, React$1.createElement('svg', { className: toggleStartYearPicker ? 'year-view' : '', width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 316}}
|
|
18272
|
+
, React$1.createElement('path', { d: "M11 1.17C10.8126 0.983753 10.5592 0.879211 10.295 0.879211C10.0308 0.879211 9.77737 0.983753 9.59001 1.17L6.00001 4.71L2.46001 1.17C2.27265 0.983753 2.0192 0.879211 1.75501 0.879211C1.49082 0.879211 1.23737 0.983753 1.05001 1.17C0.956281 1.26297 0.881887 1.37357 0.831118 1.49543C0.780349 1.61729 0.754211 1.74799 0.754211 1.88C0.754211 2.01202 0.780349 2.14272 0.831118 2.26458C0.881887 2.38644 0.956281 2.49704 1.05001 2.59L5.29001 6.83C5.38297 6.92373 5.49357 6.99813 5.61543 7.04889C5.73729 7.09966 5.868 7.1258 6.00001 7.1258C6.13202 7.1258 6.26273 7.09966 6.38459 7.04889C6.50645 6.99813 6.61705 6.92373 6.71001 6.83L11 2.59C11.0937 2.49704 11.1681 2.38644 11.2189 2.26458C11.2697 2.14272 11.2958 2.01202 11.2958 1.88C11.2958 1.74799 11.2697 1.61729 11.2189 1.49543C11.1681 1.37357 11.0937 1.26297 11 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 317}})
|
|
18255
18273
|
)
|
|
18256
18274
|
)
|
|
18257
|
-
, React$1.createElement('button', { type: "button", className: "next-button", onClick: () => handleStartMonthChange(1), __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18258
|
-
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18259
|
-
, React$1.createElement('path', { d: "M6.83019 5.28995L2.59019 1.04995C2.49722 0.95622 2.38662 0.881826 2.26476 0.831057C2.1429 0.780288 2.0122 0.75415 1.88019 0.75415C1.74818 0.75415 1.61747 0.780288 1.49561 0.831057C1.37375 0.881826 1.26315 0.95622 1.17019 1.04995C0.983936 1.23731 0.879395 1.49076 0.879395 1.75495C0.879395 2.01913 0.983936 2.27259 1.17019 2.45995L4.71019 5.99995L1.17019 9.53995C0.983936 9.72731 0.879395 9.98076 0.879395 10.2449C0.879395 10.5091 0.983936 10.7626 1.17019 10.9499C1.26363 11.0426 1.37444 11.116 1.49628 11.1657C1.61812 11.2155 1.74858 11.2407 1.88019 11.2399C2.01179 11.2407 2.14226 11.2155 2.26409 11.1657C2.38593 11.116 2.49675 11.0426 2.59019 10.9499L6.83019 6.70995C6.92392 6.61699 6.99831 6.50638 7.04908 6.38453C7.09985 6.26267 7.12599 6.13196 7.12599 5.99995C7.12599 5.86794 7.09985 5.73723 7.04908 5.61537C6.99831 5.49351 6.92392 5.38291 6.83019 5.28995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18275
|
+
, React$1.createElement('button', { type: "button", className: "next-button", onClick: () => handleStartMonthChange(1), __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 320}}
|
|
18276
|
+
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 321}}
|
|
18277
|
+
, React$1.createElement('path', { d: "M6.83019 5.28995L2.59019 1.04995C2.49722 0.95622 2.38662 0.881826 2.26476 0.831057C2.1429 0.780288 2.0122 0.75415 1.88019 0.75415C1.74818 0.75415 1.61747 0.780288 1.49561 0.831057C1.37375 0.881826 1.26315 0.95622 1.17019 1.04995C0.983936 1.23731 0.879395 1.49076 0.879395 1.75495C0.879395 2.01913 0.983936 2.27259 1.17019 2.45995L4.71019 5.99995L1.17019 9.53995C0.983936 9.72731 0.879395 9.98076 0.879395 10.2449C0.879395 10.5091 0.983936 10.7626 1.17019 10.9499C1.26363 11.0426 1.37444 11.116 1.49628 11.1657C1.61812 11.2155 1.74858 11.2407 1.88019 11.2399C2.01179 11.2407 2.14226 11.2155 2.26409 11.1657C2.38593 11.116 2.49675 11.0426 2.59019 10.9499L6.83019 6.70995C6.92392 6.61699 6.99831 6.50638 7.04908 6.38453C7.09985 6.26267 7.12599 6.13196 7.12599 5.99995C7.12599 5.86794 7.09985 5.73723 7.04908 5.61537C6.99831 5.49351 6.92392 5.38291 6.83019 5.28995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 322}})
|
|
18260
18278
|
)
|
|
18261
18279
|
)
|
|
18262
18280
|
)
|
|
18263
18281
|
, renderCalendar(startMonth, true)
|
|
18264
18282
|
)
|
|
18265
|
-
, React$1.createElement('div', { style: {display:toggleStartYearPicker ? 'block' : 'none'}, className: "year-view", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18283
|
+
, React$1.createElement('div', { style: {display:toggleStartYearPicker ? 'block' : 'none'}, className: "year-view", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 328}}
|
|
18266
18284
|
, React$1.createElement(YearPicker, { returnedYear: (a)=>{
|
|
18267
18285
|
const newDate = new Date(startMonth);
|
|
18268
18286
|
newDate.setFullYear(a);
|
|
18269
18287
|
setStartMonth(newDate);
|
|
18270
|
-
}, monthYear: `${startMonthName} ${startYear}`, yearPickerVisible: (a)=>{setToggleStartYearPicker(a);}, selYear: startYear, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18288
|
+
}, monthYear: `${startMonthName} ${startYear}`, yearPickerVisible: (a)=>{setToggleStartYearPicker(a);}, selYear: startYear, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 329}})
|
|
18271
18289
|
)
|
|
18272
18290
|
)
|
|
18273
|
-
, React$1.createElement('div', { className: "calendar", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18274
|
-
, React$1.createElement('div', { style: {display:!toggleEndYearPicker ? 'block' : 'none'}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18275
|
-
, React$1.createElement('div', { className: "header cal-header" , __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18276
|
-
, React$1.createElement('button', { type: "button", className: "prev-button", onClick: () => handleEndMonthChange(-1), __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18277
|
-
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18278
|
-
, React$1.createElement('path', { d: "M3.28982 5.99995L6.82982 2.45995C7.01607 2.27259 7.12061 2.01913 7.12061 1.75495C7.12061 1.49076 7.01607 1.23731 6.82982 1.04995C6.73686 0.95622 6.62626 0.881826 6.5044 0.831057C6.38254 0.780288 6.25183 0.75415 6.11982 0.75415C5.98781 0.75415 5.8571 0.780288 5.73524 0.831057C5.61339 0.881826 5.50278 0.95622 5.40982 1.04995L1.16982 5.28995C1.07609 5.38291 1.0017 5.49351 0.950931 5.61537C0.900162 5.73723 0.874023 5.86794 0.874023 5.99995C0.874023 6.13196 0.900162 6.26267 0.950931 6.38453C1.0017 6.50638 1.07609 6.61699 1.16982 6.70995L5.40982 10.9999C5.50326 11.0926 5.61408 11.166 5.73592 11.2157C5.85775 11.2655 5.98821 11.2907 6.11982 11.2899C6.25143 11.2907 6.38189 11.2655 6.50373 11.2157C6.62557 11.166 6.73638 11.0926 6.82982 10.9999C7.01607 10.8126 7.12061 10.5591 7.12061 10.2949C7.12061 10.0308 7.01607 9.77731 6.82982 9.58995L3.28982 5.99995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18291
|
+
, React$1.createElement('div', { className: "calendar", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 336}}
|
|
18292
|
+
, React$1.createElement('div', { style: {display:!toggleEndYearPicker ? 'block' : 'none'}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 337}}
|
|
18293
|
+
, React$1.createElement('div', { className: "header cal-header" , __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 338}}
|
|
18294
|
+
, React$1.createElement('button', { type: "button", className: "prev-button", onClick: () => handleEndMonthChange(-1), __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 339}}
|
|
18295
|
+
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 340}}
|
|
18296
|
+
, React$1.createElement('path', { d: "M3.28982 5.99995L6.82982 2.45995C7.01607 2.27259 7.12061 2.01913 7.12061 1.75495C7.12061 1.49076 7.01607 1.23731 6.82982 1.04995C6.73686 0.95622 6.62626 0.881826 6.5044 0.831057C6.38254 0.780288 6.25183 0.75415 6.11982 0.75415C5.98781 0.75415 5.8571 0.780288 5.73524 0.831057C5.61339 0.881826 5.50278 0.95622 5.40982 1.04995L1.16982 5.28995C1.07609 5.38291 1.0017 5.49351 0.950931 5.61537C0.900162 5.73723 0.874023 5.86794 0.874023 5.99995C0.874023 6.13196 0.900162 6.26267 0.950931 6.38453C1.0017 6.50638 1.07609 6.61699 1.16982 6.70995L5.40982 10.9999C5.50326 11.0926 5.61408 11.166 5.73592 11.2157C5.85775 11.2655 5.98821 11.2907 6.11982 11.2899C6.25143 11.2907 6.38189 11.2655 6.50373 11.2157C6.62557 11.166 6.73638 11.0926 6.82982 10.9999C7.01607 10.8126 7.12061 10.5591 7.12061 10.2949C7.12061 10.0308 7.01607 9.77731 6.82982 9.58995L3.28982 5.99995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 341}})
|
|
18279
18297
|
)
|
|
18280
18298
|
)
|
|
18281
|
-
, React$1.createElement('button', { type: "button", className: "month-year", onClick: ()=>{setToggleEndYearPicker(true);}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18299
|
+
, React$1.createElement('button', { type: "button", className: "month-year", onClick: ()=>{setToggleEndYearPicker(true);}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 344}}
|
|
18282
18300
|
, `${endMonthName} ${endYear}`
|
|
18283
|
-
, React$1.createElement('svg', { className: toggleEndYearPicker ? 'year-view' : '', width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18284
|
-
, React$1.createElement('path', { d: "M11 1.17C10.8126 0.983753 10.5592 0.879211 10.295 0.879211C10.0308 0.879211 9.77737 0.983753 9.59001 1.17L6.00001 4.71L2.46001 1.17C2.27265 0.983753 2.0192 0.879211 1.75501 0.879211C1.49082 0.879211 1.23737 0.983753 1.05001 1.17C0.956281 1.26297 0.881887 1.37357 0.831118 1.49543C0.780349 1.61729 0.754211 1.74799 0.754211 1.88C0.754211 2.01202 0.780349 2.14272 0.831118 2.26458C0.881887 2.38644 0.956281 2.49704 1.05001 2.59L5.29001 6.83C5.38297 6.92373 5.49357 6.99813 5.61543 7.04889C5.73729 7.09966 5.868 7.1258 6.00001 7.1258C6.13202 7.1258 6.26273 7.09966 6.38459 7.04889C6.50645 6.99813 6.61705 6.92373 6.71001 6.83L11 2.59C11.0937 2.49704 11.1681 2.38644 11.2189 2.26458C11.2697 2.14272 11.2958 2.01202 11.2958 1.88C11.2958 1.74799 11.2697 1.61729 11.2189 1.49543C11.1681 1.37357 11.0937 1.26297 11 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18301
|
+
, React$1.createElement('svg', { className: toggleEndYearPicker ? 'year-view' : '', width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 346}}
|
|
18302
|
+
, React$1.createElement('path', { d: "M11 1.17C10.8126 0.983753 10.5592 0.879211 10.295 0.879211C10.0308 0.879211 9.77737 0.983753 9.59001 1.17L6.00001 4.71L2.46001 1.17C2.27265 0.983753 2.0192 0.879211 1.75501 0.879211C1.49082 0.879211 1.23737 0.983753 1.05001 1.17C0.956281 1.26297 0.881887 1.37357 0.831118 1.49543C0.780349 1.61729 0.754211 1.74799 0.754211 1.88C0.754211 2.01202 0.780349 2.14272 0.831118 2.26458C0.881887 2.38644 0.956281 2.49704 1.05001 2.59L5.29001 6.83C5.38297 6.92373 5.49357 6.99813 5.61543 7.04889C5.73729 7.09966 5.868 7.1258 6.00001 7.1258C6.13202 7.1258 6.26273 7.09966 6.38459 7.04889C6.50645 6.99813 6.61705 6.92373 6.71001 6.83L11 2.59C11.0937 2.49704 11.1681 2.38644 11.2189 2.26458C11.2697 2.14272 11.2958 2.01202 11.2958 1.88C11.2958 1.74799 11.2697 1.61729 11.2189 1.49543C11.1681 1.37357 11.0937 1.26297 11 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 347}})
|
|
18285
18303
|
)
|
|
18286
18304
|
)
|
|
18287
|
-
, React$1.createElement('button', { type: "button", className: "next-button", onClick: () => handleEndMonthChange(1), __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18288
|
-
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18289
|
-
, React$1.createElement('path', { d: "M6.83019 5.28995L2.59019 1.04995C2.49722 0.95622 2.38662 0.881826 2.26476 0.831057C2.1429 0.780288 2.0122 0.75415 1.88019 0.75415C1.74818 0.75415 1.61747 0.780288 1.49561 0.831057C1.37375 0.881826 1.26315 0.95622 1.17019 1.04995C0.983936 1.23731 0.879395 1.49076 0.879395 1.75495C0.879395 2.01913 0.983936 2.27259 1.17019 2.45995L4.71019 5.99995L1.17019 9.53995C0.983936 9.72731 0.879395 9.98076 0.879395 10.2449C0.879395 10.5091 0.983936 10.7626 1.17019 10.9499C1.26363 11.0426 1.37444 11.116 1.49628 11.1657C1.61812 11.2155 1.74858 11.2407 1.88019 11.2399C2.01179 11.2407 2.14226 11.2155 2.26409 11.1657C2.38593 11.116 2.49675 11.0426 2.59019 10.9499L6.83019 6.70995C6.92392 6.61699 6.99831 6.50638 7.04908 6.38453C7.09985 6.26267 7.12599 6.13196 7.12599 5.99995C7.12599 5.86794 7.09985 5.73723 7.04908 5.61537C6.99831 5.49351 6.92392 5.38291 6.83019 5.28995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18305
|
+
, React$1.createElement('button', { type: "button", className: "next-button", onClick: () => handleEndMonthChange(1), __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 350}}
|
|
18306
|
+
, React$1.createElement('svg', { width: "8", height: "12", viewBox: "0 0 8 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 351}}
|
|
18307
|
+
, React$1.createElement('path', { d: "M6.83019 5.28995L2.59019 1.04995C2.49722 0.95622 2.38662 0.881826 2.26476 0.831057C2.1429 0.780288 2.0122 0.75415 1.88019 0.75415C1.74818 0.75415 1.61747 0.780288 1.49561 0.831057C1.37375 0.881826 1.26315 0.95622 1.17019 1.04995C0.983936 1.23731 0.879395 1.49076 0.879395 1.75495C0.879395 2.01913 0.983936 2.27259 1.17019 2.45995L4.71019 5.99995L1.17019 9.53995C0.983936 9.72731 0.879395 9.98076 0.879395 10.2449C0.879395 10.5091 0.983936 10.7626 1.17019 10.9499C1.26363 11.0426 1.37444 11.116 1.49628 11.1657C1.61812 11.2155 1.74858 11.2407 1.88019 11.2399C2.01179 11.2407 2.14226 11.2155 2.26409 11.1657C2.38593 11.116 2.49675 11.0426 2.59019 10.9499L6.83019 6.70995C6.92392 6.61699 6.99831 6.50638 7.04908 6.38453C7.09985 6.26267 7.12599 6.13196 7.12599 5.99995C7.12599 5.86794 7.09985 5.73723 7.04908 5.61537C6.99831 5.49351 6.92392 5.38291 6.83019 5.28995Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 352}})
|
|
18290
18308
|
)
|
|
18291
18309
|
)
|
|
18292
18310
|
)
|
|
18293
18311
|
, renderCalendar(endMonth, false)
|
|
18294
18312
|
)
|
|
18295
|
-
, React$1.createElement('div', { style: {display:toggleEndYearPicker ? 'block' : 'none'}, className: "year-view", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18313
|
+
, React$1.createElement('div', { style: {display:toggleEndYearPicker ? 'block' : 'none'}, className: "year-view", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 358}}
|
|
18296
18314
|
, React$1.createElement(YearPicker, { returnedYear: (a)=>{
|
|
18297
18315
|
const newDate = new Date(endMonth);
|
|
18298
18316
|
newDate.setFullYear(a);
|
|
18299
18317
|
setEndMonth(newDate);
|
|
18300
|
-
}, monthYear: `${endMonthName} ${endYear}`, yearPickerVisible: (a)=>{setToggleEndYearPicker(a);}, selYear: endYear, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18318
|
+
}, monthYear: `${endMonthName} ${endYear}`, yearPickerVisible: (a)=>{setToggleEndYearPicker(a);}, selYear: endYear, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 359}})
|
|
18301
18319
|
)
|
|
18302
18320
|
)
|
|
18303
18321
|
)
|
|
18304
18322
|
, showActionButtons &&
|
|
18305
|
-
React$1.createElement('div', { className: "action-buttons", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18323
|
+
React$1.createElement('div', { className: "action-buttons", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 368}}
|
|
18306
18324
|
, !startDate || !endDate ? React$1.createElement(OutlineButton, { type: "button", size: "sm", variant: "primary", style: { width: 71 }, onClick: () => {
|
|
18307
18325
|
setStartDate(null);
|
|
18308
18326
|
setEndDate(null);
|
|
18309
18327
|
selectedDateRange({ startDate: null, endDate: null });
|
|
18310
18328
|
setShowCalendar(false);
|
|
18311
|
-
}, width: "fit-content", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18329
|
+
}, width: "fit-content", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 369}}, "Cancel") :
|
|
18312
18330
|
React$1.createElement(OutlineButton, { type: "button", size: "sm", variant: "primary", style: {width:71}, onClick: ()=>{
|
|
18313
18331
|
setStartDate(null);
|
|
18314
18332
|
setEndDate(null);
|
|
18315
18333
|
selectedDateRange({startDate:null, endDate:null});
|
|
18316
|
-
}, width: "fit-content", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18334
|
+
}, width: "fit-content", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 375}}, "Reset")
|
|
18317
18335
|
|
|
18318
|
-
, React$1.createElement(Button$1, { type: "button", size: "sm", variant: "primary", onClick: ()=>{setShowCalendar(false);}, disabled: !startDate || !endDate, width: "fit-content", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber:
|
|
18336
|
+
, React$1.createElement(Button$1, { type: "button", size: "sm", variant: "primary", onClick: ()=>{setShowCalendar(false);}, disabled: !startDate || !endDate, width: "fit-content", __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 381}}, "Apply")
|
|
18319
18337
|
)
|
|
18320
18338
|
|
|
18321
18339
|
)
|
|
@@ -18466,7 +18484,7 @@ const DropdownField$1 = styled.div`
|
|
|
18466
18484
|
const DisabledContainer$1 = styled.div`
|
|
18467
18485
|
border: 1px solid ${theme.colors["neutral-100"]};
|
|
18468
18486
|
border-radius: 8px;
|
|
18469
|
-
padding:
|
|
18487
|
+
padding-inline: 8px;
|
|
18470
18488
|
color: ${theme.colors["neutral-100"]};
|
|
18471
18489
|
display: flex;
|
|
18472
18490
|
justify-content: space-between;
|
|
@@ -18476,6 +18494,7 @@ const DisabledContainer$1 = styled.div`
|
|
|
18476
18494
|
background: ${theme.colors.white};
|
|
18477
18495
|
margin: 0;
|
|
18478
18496
|
height: 50px;
|
|
18497
|
+
box-sizing: border-box;
|
|
18479
18498
|
*{
|
|
18480
18499
|
margin: 0;
|
|
18481
18500
|
}
|
|
@@ -18551,7 +18570,7 @@ const _jsxFileName$P = "D:\\SSX\\Project\\Component Library\\sscomp\\src\\compon
|
|
|
18551
18570
|
* Dropdown component for selecting from a list of options
|
|
18552
18571
|
*/
|
|
18553
18572
|
const DropdownList = (props) => {
|
|
18554
|
-
let {options,returnedSelection,initialText,disabled,label,placeholder,searchable,width,required,inputName} = props;
|
|
18573
|
+
let {options,returnedSelection,initialText,disabled,label,placeholder,searchable,width,required,inputName,readonly} = props;
|
|
18555
18574
|
const [opened,setOpened] = React$1.useState(false);
|
|
18556
18575
|
const [passedOption,setPassedOption] = React$1.useState({});
|
|
18557
18576
|
const [err,setErr] = React$1.useState(false);
|
|
@@ -18649,10 +18668,10 @@ const DropdownList = (props) => {
|
|
|
18649
18668
|
setOpened(false);
|
|
18650
18669
|
},100);
|
|
18651
18670
|
}else {
|
|
18671
|
+
if (readonly) return
|
|
18652
18672
|
setOpened(true);
|
|
18653
18673
|
}
|
|
18654
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 105}}
|
|
18655
|
-
)
|
|
18674
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 105}})
|
|
18656
18675
|
, React$1.createElement('input', { className: "input-field", name: inputName, value: srVal, onChange: ()=>{}, __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 121}})
|
|
18657
18676
|
, React$1.createElement('div', { style: {overflowX:'hidden'}, __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 122}}
|
|
18658
18677
|
, initText && React$1.createElement('span', { className: "paragraph2Regular", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 123}}, initText)
|
|
@@ -18664,27 +18683,28 @@ const DropdownList = (props) => {
|
|
|
18664
18683
|
)
|
|
18665
18684
|
, React$1.createElement(DropdownIcon$1, { className: `dropdown-icon ${opened ? 'expanded' : 'collapsed'}`, onMouseUp: ()=>{
|
|
18666
18685
|
if (!opened){
|
|
18686
|
+
if (readonly) return
|
|
18667
18687
|
buttonRef.current.focus();
|
|
18668
18688
|
setOpened(true);
|
|
18669
18689
|
}
|
|
18670
18690
|
}, __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 130}}
|
|
18671
|
-
, React$1.createElement('svg', { width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18672
|
-
, React$1.createElement('path', { d: "M10.9999 1.17C10.8126 0.983753 10.5591 0.879211 10.2949 0.879211C10.0308 0.879211 9.77731 0.983753 9.58995 1.17L5.99995 4.71L2.45995 1.17C2.27259 0.983753 2.01913 0.879211 1.75495 0.879211C1.49076 0.879211 1.23731 0.983753 1.04995 1.17C0.95622 1.26297 0.881826 1.37357 0.831057 1.49543C0.780288 1.61729 0.75415 1.74799 0.75415 1.88C0.75415 2.01202 0.780288 2.14272 0.831057 2.26458C0.881826 2.38644 0.95622 2.49704 1.04995 2.59L5.28995 6.83C5.38291 6.92373 5.49351 6.99813 5.61537 7.04889C5.73723 7.09966 5.86794 7.1258 5.99995 7.1258C6.13196 7.1258 6.26267 7.09966 6.38453 7.04889C6.50638 6.99813 6.61699 6.92373 6.70995 6.83L10.9999 2.59C11.0937 2.49704 11.1681 2.38644 11.2188 2.26458C11.2696 2.14272 11.2957 2.01202 11.2957 1.88C11.2957 1.74799 11.2696 1.61729 11.2188 1.49543C11.1681 1.37357 11.0937 1.26297 10.9999 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18691
|
+
, React$1.createElement('svg', { width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 137}}
|
|
18692
|
+
, React$1.createElement('path', { d: "M10.9999 1.17C10.8126 0.983753 10.5591 0.879211 10.2949 0.879211C10.0308 0.879211 9.77731 0.983753 9.58995 1.17L5.99995 4.71L2.45995 1.17C2.27259 0.983753 2.01913 0.879211 1.75495 0.879211C1.49076 0.879211 1.23731 0.983753 1.04995 1.17C0.95622 1.26297 0.881826 1.37357 0.831057 1.49543C0.780288 1.61729 0.75415 1.74799 0.75415 1.88C0.75415 2.01202 0.780288 2.14272 0.831057 2.26458C0.881826 2.38644 0.95622 2.49704 1.04995 2.59L5.28995 6.83C5.38291 6.92373 5.49351 6.99813 5.61537 7.04889C5.73723 7.09966 5.86794 7.1258 5.99995 7.1258C6.13196 7.1258 6.26267 7.09966 6.38453 7.04889C6.50638 6.99813 6.61699 6.92373 6.70995 6.83L10.9999 2.59C11.0937 2.49704 11.1681 2.38644 11.2188 2.26458C11.2696 2.14272 11.2957 2.01202 11.2957 1.88C11.2957 1.74799 11.2696 1.61729 11.2188 1.49543C11.1681 1.37357 11.0937 1.26297 10.9999 1.17Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 138}})
|
|
18673
18693
|
)
|
|
18674
18694
|
)
|
|
18675
18695
|
, opened &&
|
|
18676
18696
|
React$1.createElement(React$1.Fragment, null
|
|
18677
18697
|
, options && options.length > 0 &&
|
|
18678
|
-
React$1.createElement(OptionsList$1, { className: "dropdown-list", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18698
|
+
React$1.createElement(OptionsList$1, { className: "dropdown-list", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 144}}
|
|
18679
18699
|
, searchable && opened &&
|
|
18680
|
-
React$1.createElement('div', { className: "search-field", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18681
|
-
, React$1.createElement('svg', { width: "16", height: "16", viewBox: "0 0 16 16" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18682
|
-
, React$1.createElement('g', { clipPath: "url(#clip0_2834_8051)", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18683
|
-
, React$1.createElement('path', { d: "M14.4733 13.5267L12 11.0733C12.9601 9.87627 13.425 8.35686 13.2992 6.82753C13.1734 5.2982 12.4664 3.87519 11.3237 2.85109C10.1809 1.827 8.6892 1.27967 7.15528 1.32164C5.62136 1.36362 4.16181 1.99171 3.07676 3.07676C1.99171 4.16181 1.36362 5.62136 1.32164 7.15528C1.27967 8.6892 1.827 10.1809 2.85109 11.3237C3.87519 12.4664 5.2982 13.1734 6.82753 13.2992C8.35686 13.425 9.87627 12.9601 11.0733 12L13.5267 14.4533C13.5886 14.5158 13.6624 14.5654 13.7436 14.5993C13.8249 14.6331 13.912 14.6505 14 14.6505C14.088 14.6505 14.1751 14.6331 14.2564 14.5993C14.3376 14.5654 14.4114 14.5158 14.4733 14.4533C14.5935 14.329 14.6607 14.1629 14.6607 13.99C14.6607 13.8171 14.5935 13.651 14.4733 13.5267ZM7.33333 12C6.41035 12 5.5081 11.7263 4.74067 11.2135C3.97324 10.7007 3.3751 9.97191 3.02189 9.11919C2.66868 8.26646 2.57627 7.32815 2.75633 6.42291C2.9364 5.51766 3.38085 4.68614 4.0335 4.0335C4.68614 3.38085 5.51766 2.9364 6.42291 2.75633C7.32815 2.57627 8.26646 2.66868 9.11919 3.02189C9.97191 3.3751 10.7007 3.97324 11.2135 4.74067C11.7263 5.5081 12 6.41035 12 7.33333C12 8.57101 11.5083 9.75799 10.6332 10.6332C9.75799 11.5083 8.57101 12 7.33333 12Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18700
|
+
React$1.createElement('div', { className: "search-field", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 146}}
|
|
18701
|
+
, React$1.createElement('svg', { width: "16", height: "16", viewBox: "0 0 16 16" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 147}}
|
|
18702
|
+
, React$1.createElement('g', { clipPath: "url(#clip0_2834_8051)", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 148}}
|
|
18703
|
+
, React$1.createElement('path', { d: "M14.4733 13.5267L12 11.0733C12.9601 9.87627 13.425 8.35686 13.2992 6.82753C13.1734 5.2982 12.4664 3.87519 11.3237 2.85109C10.1809 1.827 8.6892 1.27967 7.15528 1.32164C5.62136 1.36362 4.16181 1.99171 3.07676 3.07676C1.99171 4.16181 1.36362 5.62136 1.32164 7.15528C1.27967 8.6892 1.827 10.1809 2.85109 11.3237C3.87519 12.4664 5.2982 13.1734 6.82753 13.2992C8.35686 13.425 9.87627 12.9601 11.0733 12L13.5267 14.4533C13.5886 14.5158 13.6624 14.5654 13.7436 14.5993C13.8249 14.6331 13.912 14.6505 14 14.6505C14.088 14.6505 14.1751 14.6331 14.2564 14.5993C14.3376 14.5654 14.4114 14.5158 14.4733 14.4533C14.5935 14.329 14.6607 14.1629 14.6607 13.99C14.6607 13.8171 14.5935 13.651 14.4733 13.5267ZM7.33333 12C6.41035 12 5.5081 11.7263 4.74067 11.2135C3.97324 10.7007 3.3751 9.97191 3.02189 9.11919C2.66868 8.26646 2.57627 7.32815 2.75633 6.42291C2.9364 5.51766 3.38085 4.68614 4.0335 4.0335C4.68614 3.38085 5.51766 2.9364 6.42291 2.75633C7.32815 2.57627 8.26646 2.66868 9.11919 3.02189C9.97191 3.3751 10.7007 3.97324 11.2135 4.74067C11.7263 5.5081 12 6.41035 12 7.33333C12 8.57101 11.5083 9.75799 10.6332 10.6332C9.75799 11.5083 8.57101 12 7.33333 12Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 149}})
|
|
18684
18704
|
)
|
|
18685
|
-
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18686
|
-
, React$1.createElement('clipPath', { id: "clip0_2834_8051", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18687
|
-
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18705
|
+
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 151}}
|
|
18706
|
+
, React$1.createElement('clipPath', { id: "clip0_2834_8051", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 152}}
|
|
18707
|
+
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 153}})
|
|
18688
18708
|
)
|
|
18689
18709
|
)
|
|
18690
18710
|
)
|
|
@@ -18692,7 +18712,7 @@ const DropdownList = (props) => {
|
|
|
18692
18712
|
setTimeout(()=>{
|
|
18693
18713
|
setOpened(false);
|
|
18694
18714
|
},200);
|
|
18695
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18715
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 157}})
|
|
18696
18716
|
)
|
|
18697
18717
|
|
|
18698
18718
|
, optionsRec.map((option, index) => (
|
|
@@ -18706,7 +18726,7 @@ const DropdownList = (props) => {
|
|
|
18706
18726
|
returnedSelection(option);
|
|
18707
18727
|
},200);
|
|
18708
18728
|
setSrVal(option.value);
|
|
18709
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18729
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 165}}, React$1.createElement('span', { className: "paragraph2Regular", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 175}}, option.label))
|
|
18710
18730
|
))
|
|
18711
18731
|
)
|
|
18712
18732
|
|
|
@@ -18714,27 +18734,27 @@ const DropdownList = (props) => {
|
|
|
18714
18734
|
|
|
18715
18735
|
)
|
|
18716
18736
|
, selStatus === 'error' &&
|
|
18717
|
-
React$1.createElement('div', { className: "err-msg", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18718
|
-
, React$1.createElement('svg', { width: "16", height: "16", viewBox: "0 0 16 16" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18719
|
-
, React$1.createElement('g', { clipPath: "url(#clip0_299_2778)", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18720
|
-
, React$1.createElement('path', { d: "M8.00006 10.6667C7.86821 10.6667 7.73931 10.7058 7.62968 10.779C7.52005 10.8523 7.4346 10.9564 7.38414 11.0782C7.33368 11.2 7.32048 11.3341 7.3462 11.4634C7.37193 11.5927 7.43542 11.7115 7.52866 11.8048C7.62189 11.898 7.74068 11.9615 7.87 11.9872C7.99932 12.0129 8.13336 11.9997 8.25518 11.9493C8.377 11.8988 8.48112 11.8134 8.55437 11.7037C8.62763 11.5941 8.66673 11.4652 8.66673 11.3334C8.66673 11.1565 8.59649 10.987 8.47146 10.8619C8.34644 10.7369 8.17687 10.6667 8.00006 10.6667ZM15.1134 11.6467L9.74673 2.31335C9.57326 2.00236 9.31992 1.74332 9.01285 1.563C8.70579 1.38267 8.35615 1.2876 8.00006 1.2876C7.64396 1.2876 7.29433 1.38267 6.98726 1.563C6.6802 1.74332 6.42686 2.00236 6.25339 2.31335L0.92006 11.6467C0.74059 11.9494 0.644155 12.294 0.640489 12.6459C0.636824 12.9978 0.726058 13.3444 0.899184 13.6507C1.07231 13.9571 1.3232 14.2123 1.62652 14.3907C1.92984 14.5691 2.27485 14.6643 2.62673 14.6667H13.3734C13.7281 14.6702 14.0773 14.5793 14.3853 14.4033C14.6933 14.2273 14.949 13.9726 15.126 13.6652C15.3031 13.3579 15.3953 13.009 15.3931 12.6542C15.3908 12.2995 15.2943 11.9518 15.1134 11.6467ZM13.9601 12.98C13.9016 13.084 13.8164 13.1704 13.7132 13.2302C13.61 13.29 13.4927 13.321 13.3734 13.32H2.62673C2.50747 13.321 2.39013 13.29 2.28694 13.2302C2.18375 13.1704 2.0985 13.084 2.04006 12.98C1.98155 12.8787 1.95074 12.7637 1.95074 12.6467C1.95074 12.5297 1.98155 12.4147 2.04006 12.3134L7.37339 2.98002C7.42934 2.87082 7.51433 2.77917 7.61902 2.71518C7.72371 2.65119 7.84403 2.61733 7.96673 2.61733C8.08942 2.61733 8.20974 2.65119 8.31443 2.71518C8.41912 2.77917 8.50411 2.87082 8.56006 2.98002L13.9267 12.3134C13.9929 12.4132 14.0309 12.5291 14.0367 12.6488C14.0426 12.7684 14.0161 12.8875 13.9601 12.9934V12.98ZM8.00006 5.33335C7.82325 5.33335 7.65368 5.40359 7.52866 5.52861C7.40363 5.65364 7.33339 5.82321 7.33339 6.00002V8.66669C7.33339 8.8435 7.40363 9.01307 7.52866 9.13809C7.65368 9.26311 7.82325 9.33335 8.00006 9.33335C8.17687 9.33335 8.34644 9.26311 8.47146 9.13809C8.59649 9.01307 8.66673 8.8435 8.66673 8.66669V6.00002C8.66673 5.82321 8.59649 5.65364 8.47146 5.52861C8.34644 5.40359 8.17687 5.33335 8.00006 5.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18737
|
+
React$1.createElement('div', { className: "err-msg", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 183}}
|
|
18738
|
+
, React$1.createElement('svg', { width: "16", height: "16", viewBox: "0 0 16 16" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 184}}
|
|
18739
|
+
, React$1.createElement('g', { clipPath: "url(#clip0_299_2778)", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 185}}
|
|
18740
|
+
, React$1.createElement('path', { d: "M8.00006 10.6667C7.86821 10.6667 7.73931 10.7058 7.62968 10.779C7.52005 10.8523 7.4346 10.9564 7.38414 11.0782C7.33368 11.2 7.32048 11.3341 7.3462 11.4634C7.37193 11.5927 7.43542 11.7115 7.52866 11.8048C7.62189 11.898 7.74068 11.9615 7.87 11.9872C7.99932 12.0129 8.13336 11.9997 8.25518 11.9493C8.377 11.8988 8.48112 11.8134 8.55437 11.7037C8.62763 11.5941 8.66673 11.4652 8.66673 11.3334C8.66673 11.1565 8.59649 10.987 8.47146 10.8619C8.34644 10.7369 8.17687 10.6667 8.00006 10.6667ZM15.1134 11.6467L9.74673 2.31335C9.57326 2.00236 9.31992 1.74332 9.01285 1.563C8.70579 1.38267 8.35615 1.2876 8.00006 1.2876C7.64396 1.2876 7.29433 1.38267 6.98726 1.563C6.6802 1.74332 6.42686 2.00236 6.25339 2.31335L0.92006 11.6467C0.74059 11.9494 0.644155 12.294 0.640489 12.6459C0.636824 12.9978 0.726058 13.3444 0.899184 13.6507C1.07231 13.9571 1.3232 14.2123 1.62652 14.3907C1.92984 14.5691 2.27485 14.6643 2.62673 14.6667H13.3734C13.7281 14.6702 14.0773 14.5793 14.3853 14.4033C14.6933 14.2273 14.949 13.9726 15.126 13.6652C15.3031 13.3579 15.3953 13.009 15.3931 12.6542C15.3908 12.2995 15.2943 11.9518 15.1134 11.6467ZM13.9601 12.98C13.9016 13.084 13.8164 13.1704 13.7132 13.2302C13.61 13.29 13.4927 13.321 13.3734 13.32H2.62673C2.50747 13.321 2.39013 13.29 2.28694 13.2302C2.18375 13.1704 2.0985 13.084 2.04006 12.98C1.98155 12.8787 1.95074 12.7637 1.95074 12.6467C1.95074 12.5297 1.98155 12.4147 2.04006 12.3134L7.37339 2.98002C7.42934 2.87082 7.51433 2.77917 7.61902 2.71518C7.72371 2.65119 7.84403 2.61733 7.96673 2.61733C8.08942 2.61733 8.20974 2.65119 8.31443 2.71518C8.41912 2.77917 8.50411 2.87082 8.56006 2.98002L13.9267 12.3134C13.9929 12.4132 14.0309 12.5291 14.0367 12.6488C14.0426 12.7684 14.0161 12.8875 13.9601 12.9934V12.98ZM8.00006 5.33335C7.82325 5.33335 7.65368 5.40359 7.52866 5.52861C7.40363 5.65364 7.33339 5.82321 7.33339 6.00002V8.66669C7.33339 8.8435 7.40363 9.01307 7.52866 9.13809C7.65368 9.26311 7.82325 9.33335 8.00006 9.33335C8.17687 9.33335 8.34644 9.26311 8.47146 9.13809C8.59649 9.01307 8.66673 8.8435 8.66673 8.66669V6.00002C8.66673 5.82321 8.59649 5.65364 8.47146 5.52861C8.34644 5.40359 8.17687 5.33335 8.00006 5.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 186}})
|
|
18721
18741
|
)
|
|
18722
|
-
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18723
|
-
, React$1.createElement('clipPath', { id: "clip0_299_2778", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18724
|
-
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18742
|
+
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 188}}
|
|
18743
|
+
, React$1.createElement('clipPath', { id: "clip0_299_2778", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 189}}
|
|
18744
|
+
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 190}})
|
|
18725
18745
|
)
|
|
18726
18746
|
)
|
|
18727
18747
|
)
|
|
18728
|
-
, React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18748
|
+
, React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 194}}, "This field is required" )
|
|
18729
18749
|
)
|
|
18730
18750
|
|
|
18731
18751
|
)
|
|
18732
18752
|
|
|
18733
18753
|
, disabled &&
|
|
18734
|
-
React$1.createElement(DisabledContainer$1, {__self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18735
|
-
, initText
|
|
18736
|
-
, React$1.createElement('svg', { width: "24", height: "24", viewBox: "0 0 24 24" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18737
|
-
, React$1.createElement('path', { d: "M16.9999 9.16994C16.8126 8.98369 16.5591 8.87915 16.2949 8.87915C16.0308 8.87915 15.7773 8.98369 15.5899 9.16994L11.9999 12.7099L8.45995 9.16994C8.27259 8.98369 8.01913 8.87915 7.75495 8.87915C7.49076 8.87915 7.23731 8.98369 7.04995 9.16994C6.95622 9.26291 6.88183 9.37351 6.83106 9.49537C6.78029 9.61723 6.75415 9.74793 6.75415 9.87994C6.75415 10.012 6.78029 10.1427 6.83106 10.2645C6.88183 10.3864 6.95622 10.497 7.04995 10.5899L11.2899 14.8299C11.3829 14.9237 11.4935 14.9981 11.6154 15.0488C11.7372 15.0996 11.8679 15.1257 11.9999 15.1257C12.132 15.1257 12.2627 15.0996 12.3845 15.0488C12.5064 14.9981 12.617 14.9237 12.7099 14.8299L16.9999 10.5899C17.0937 10.497 17.1681 10.3864 17.2188 10.2645C17.2696 10.1427 17.2957 10.012 17.2957 9.87994C17.2957 9.74793 17.2696 9.61723 17.2188 9.49537C17.1681 9.37351 17.0937 9.26291 16.9999 9.16994Z" , fill: "#E8EEF7", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber:
|
|
18754
|
+
React$1.createElement(DisabledContainer$1, {__self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 200}}
|
|
18755
|
+
, React$1.createElement('span', { className: "paragraph2Regular", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 201}}, initText)
|
|
18756
|
+
, React$1.createElement('svg', { width: "24", height: "24", viewBox: "0 0 24 24" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 202}}
|
|
18757
|
+
, React$1.createElement('path', { d: "M16.9999 9.16994C16.8126 8.98369 16.5591 8.87915 16.2949 8.87915C16.0308 8.87915 15.7773 8.98369 15.5899 9.16994L11.9999 12.7099L8.45995 9.16994C8.27259 8.98369 8.01913 8.87915 7.75495 8.87915C7.49076 8.87915 7.23731 8.98369 7.04995 9.16994C6.95622 9.26291 6.88183 9.37351 6.83106 9.49537C6.78029 9.61723 6.75415 9.74793 6.75415 9.87994C6.75415 10.012 6.78029 10.1427 6.83106 10.2645C6.88183 10.3864 6.95622 10.497 7.04995 10.5899L11.2899 14.8299C11.3829 14.9237 11.4935 14.9981 11.6154 15.0488C11.7372 15.0996 11.8679 15.1257 11.9999 15.1257C12.132 15.1257 12.2627 15.0996 12.3845 15.0488C12.5064 14.9981 12.617 14.9237 12.7099 14.8299L16.9999 10.5899C17.0937 10.497 17.1681 10.3864 17.2188 10.2645C17.2696 10.1427 17.2957 10.012 17.2957 9.87994C17.2957 9.74793 17.2696 9.61723 17.2188 9.49537C17.1681 9.37351 17.0937 9.26291 16.9999 9.16994Z" , fill: "#E8EEF7", __self: undefined, __source: {fileName: _jsxFileName$P, lineNumber: 203}})
|
|
18738
18758
|
)
|
|
18739
18759
|
)
|
|
18740
18760
|
|
|
@@ -21163,9 +21183,10 @@ const PasswordField = (props) => {
|
|
|
21163
21183
|
|
|
21164
21184
|
|
|
21165
21185
|
React$1.useEffect(()=>{
|
|
21166
|
-
|
|
21167
|
-
|
|
21168
|
-
|
|
21186
|
+
if (passString){
|
|
21187
|
+
setBorderColor('success');
|
|
21188
|
+
}
|
|
21189
|
+
},[passString]);
|
|
21169
21190
|
|
|
21170
21191
|
function validate(){
|
|
21171
21192
|
if (passString){
|
|
@@ -21184,39 +21205,39 @@ const PasswordField = (props) => {
|
|
|
21184
21205
|
};
|
|
21185
21206
|
|
|
21186
21207
|
return (
|
|
21187
|
-
React$1.createElement('div', { style: style, __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21208
|
+
React$1.createElement('div', { style: style, __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 41}}
|
|
21188
21209
|
, label &&
|
|
21189
|
-
React$1.createElement(InputLabel$6, {__self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21190
|
-
, React$1.createElement('label', { className: disabled ? 'disabled' : '', __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21191
|
-
, React$1.createElement('span', { className: disabled ? 'disabled' : '', __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21210
|
+
React$1.createElement(InputLabel$6, {__self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 43}}
|
|
21211
|
+
, React$1.createElement('label', { className: disabled ? 'disabled' : '', __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 44}}, label)
|
|
21212
|
+
, React$1.createElement('span', { className: disabled ? 'disabled' : '', __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 45}}, subtext)
|
|
21192
21213
|
)
|
|
21193
21214
|
|
|
21194
|
-
, React$1.createElement(InputContainer$4, { className: `${borderColor} ${disabled ? 'disabled' : ''}`, style: {width:width ? width : '100%'}, __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21215
|
+
, React$1.createElement(InputContainer$4, { className: `${borderColor} ${disabled ? 'disabled' : ''}`, style: {width:width ? width : '100%'}, __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 48}}
|
|
21195
21216
|
, React$1.createElement(InputField$3, { type: !showPw ? 'password' : 'text', value: passString, onChange: (e)=>{
|
|
21196
21217
|
// setValue(e.target.value)
|
|
21197
21218
|
setPassString(e.target.value);
|
|
21198
|
-
}, onBlur: ()=>{validate();}, disabled: disabled, ...props, required: true, placeholder: placeholder, onInvalid: validate, __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21199
|
-
, React$1.createElement(ToggleButton, { type: "button", onClick: ()=>{setShowPw(!showPw);}, __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21219
|
+
}, onBlur: ()=>{validate();}, disabled: disabled, ...props, required: true, placeholder: placeholder, onInvalid: validate, __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 49}})
|
|
21220
|
+
, React$1.createElement(ToggleButton, { type: "button", onClick: ()=>{setShowPw(!showPw);}, __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 53}}
|
|
21200
21221
|
, !showPw ?
|
|
21201
21222
|
//eye
|
|
21202
|
-
React$1.createElement('svg', { width: "22", height: "16", viewBox: "0 0 22 16" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21203
|
-
, React$1.createElement('path', { d: "M20.9201 7.6C18.9001 2.91 15.1001 0 11.0001 0C6.90007 0 3.10007 2.91 1.08007 7.6C1.025 7.72617 0.996582 7.86234 0.996582 8C0.996582 8.13766 1.025 8.27383 1.08007 8.4C3.10007 13.09 6.90007 16 11.0001 16C15.1001 16 18.9001 13.09 20.9201 8.4C20.9751 8.27383 21.0036 8.13766 21.0036 8C21.0036 7.86234 20.9751 7.72617 20.9201 7.6ZM11.0001 14C7.83007 14 4.83007 11.71 3.10007 8C4.83007 4.29 7.83007 2 11.0001 2C14.1701 2 17.1701 4.29 18.9001 8C17.1701 11.71 14.1701 14 11.0001 14ZM11.0001 4C10.2089 4 9.43558 4.2346 8.77779 4.67412C8.11999 5.11365 7.6073 5.73836 7.30455 6.46927C7.0018 7.20017 6.92258 8.00444 7.07693 8.78036C7.23127 9.55628 7.61223 10.269 8.17164 10.8284C8.73105 11.3878 9.44378 11.7688 10.2197 11.9231C10.9956 12.0775 11.7999 11.9983 12.5308 11.6955C13.2617 11.3928 13.8864 10.8801 14.3259 10.2223C14.7655 9.56448 15.0001 8.79113 15.0001 8C15.0001 6.93913 14.5786 5.92172 13.8285 5.17157C13.0783 4.42143 12.0609 4 11.0001 4ZM11.0001 10C10.6045 10 10.2178 9.8827 9.88893 9.66294C9.56003 9.44318 9.30368 9.13082 9.15231 8.76537C9.00093 8.39991 8.96133 7.99778 9.0385 7.60982C9.11567 7.22186 9.30615 6.86549 9.58585 6.58579C9.86556 6.30608 10.2219 6.1156 10.6099 6.03843C10.9978 5.96126 11.4 6.00087 11.7654 6.15224C12.1309 6.30362 12.4432 6.55996 12.663 6.88886C12.8828 7.21776 13.0001 7.60444 13.0001 8C13.0001 8.53043 12.7894 9.03914 12.4143 9.41421C12.0392 9.78929 11.5305 10 11.0001 10Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21223
|
+
React$1.createElement('svg', { width: "22", height: "16", viewBox: "0 0 22 16" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 56}}
|
|
21224
|
+
, React$1.createElement('path', { d: "M20.9201 7.6C18.9001 2.91 15.1001 0 11.0001 0C6.90007 0 3.10007 2.91 1.08007 7.6C1.025 7.72617 0.996582 7.86234 0.996582 8C0.996582 8.13766 1.025 8.27383 1.08007 8.4C3.10007 13.09 6.90007 16 11.0001 16C15.1001 16 18.9001 13.09 20.9201 8.4C20.9751 8.27383 21.0036 8.13766 21.0036 8C21.0036 7.86234 20.9751 7.72617 20.9201 7.6ZM11.0001 14C7.83007 14 4.83007 11.71 3.10007 8C4.83007 4.29 7.83007 2 11.0001 2C14.1701 2 17.1701 4.29 18.9001 8C17.1701 11.71 14.1701 14 11.0001 14ZM11.0001 4C10.2089 4 9.43558 4.2346 8.77779 4.67412C8.11999 5.11365 7.6073 5.73836 7.30455 6.46927C7.0018 7.20017 6.92258 8.00444 7.07693 8.78036C7.23127 9.55628 7.61223 10.269 8.17164 10.8284C8.73105 11.3878 9.44378 11.7688 10.2197 11.9231C10.9956 12.0775 11.7999 11.9983 12.5308 11.6955C13.2617 11.3928 13.8864 10.8801 14.3259 10.2223C14.7655 9.56448 15.0001 8.79113 15.0001 8C15.0001 6.93913 14.5786 5.92172 13.8285 5.17157C13.0783 4.42143 12.0609 4 11.0001 4ZM11.0001 10C10.6045 10 10.2178 9.8827 9.88893 9.66294C9.56003 9.44318 9.30368 9.13082 9.15231 8.76537C9.00093 8.39991 8.96133 7.99778 9.0385 7.60982C9.11567 7.22186 9.30615 6.86549 9.58585 6.58579C9.86556 6.30608 10.2219 6.1156 10.6099 6.03843C10.9978 5.96126 11.4 6.00087 11.7654 6.15224C12.1309 6.30362 12.4432 6.55996 12.663 6.88886C12.8828 7.21776 13.0001 7.60444 13.0001 8C13.0001 8.53043 12.7894 9.03914 12.4143 9.41421C12.0392 9.78929 11.5305 10 11.0001 10Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 57}})
|
|
21204
21225
|
)
|
|
21205
21226
|
:
|
|
21206
21227
|
//eye-slash
|
|
21207
|
-
React$1.createElement('svg', { width: "22", height: "22", viewBox: "0 0 22 22" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21208
|
-
, React$1.createElement('path', { d: "M9.94018 5.07994C10.2909 5.02617 10.6453 4.99943 11.0002 4.99994C14.1802 4.99994 17.1702 7.28994 18.9102 10.9999C18.6441 11.5645 18.3435 12.1122 18.0102 12.6399C17.9044 12.8038 17.8487 12.9949 17.8502 13.1899C17.8524 13.4082 17.926 13.6197 18.0596 13.7922C18.1933 13.9647 18.3798 14.0888 18.5905 14.1455C18.8013 14.2021 19.0248 14.1883 19.227 14.106C19.4291 14.0238 19.5988 13.8776 19.7102 13.6899C20.1761 12.9579 20.5808 12.1886 20.9202 11.3899C20.9738 11.2652 21.0015 11.1308 21.0015 10.9949C21.0015 10.8591 20.9738 10.7247 20.9202 10.5999C18.9002 5.90994 15.1002 2.99994 11.0002 2.99994C10.5309 2.99758 10.0623 3.03774 9.60019 3.11994C9.46886 3.14227 9.34322 3.19024 9.23044 3.26112C9.11766 3.332 9.01994 3.4244 8.94287 3.53304C8.8658 3.64169 8.81088 3.76445 8.78125 3.89432C8.75162 4.02419 8.74786 4.15862 8.77018 4.28994C8.79251 4.42126 8.84048 4.5469 8.91136 4.65968C8.98224 4.77247 9.07464 4.87018 9.18329 4.94726C9.29193 5.02433 9.41469 5.07925 9.54456 5.10888C9.67443 5.13851 9.80886 5.14227 9.94018 5.11994V5.07994ZM2.71019 1.28994C2.61695 1.1967 2.50626 1.12274 2.38443 1.07228C2.26261 1.02182 2.13204 0.99585 2.00019 0.99585C1.86833 0.99585 1.73776 1.02182 1.61594 1.07228C1.49411 1.12274 1.38342 1.1967 1.29019 1.28994C1.10188 1.47824 0.996094 1.73364 0.996094 1.99994C0.996094 2.26624 1.10188 2.52164 1.29019 2.70994L4.39019 5.79994C2.97576 7.16147 1.85004 8.79393 1.08019 10.5999C1.02512 10.7261 0.996701 10.8623 0.996701 10.9999C0.996701 11.1376 1.02512 11.2738 1.08019 11.3999C3.10019 16.0899 6.90019 18.9999 11.0002 18.9999C12.7973 18.9875 14.552 18.4524 16.0502 17.4599L19.2902 20.7099C19.3831 20.8037 19.4937 20.8781 19.6156 20.9288C19.7375 20.9796 19.8682 21.0057 20.0002 21.0057C20.1322 21.0057 20.2629 20.9796 20.3848 20.9288C20.5066 20.8781 20.6172 20.8037 20.7102 20.7099C20.8039 20.617 20.8783 20.5064 20.9291 20.3845C20.9798 20.2627 21.006 20.132 21.006 19.9999C21.006 19.8679 20.9798 19.7372 20.9291 19.6154C20.8783 19.4935 20.8039 19.3829 20.7102 19.2899L2.71019 1.28994ZM9.07018 10.4799L11.5202 12.9299C11.3512 12.9784 11.176 13.002 11.0002 12.9999C10.4698 12.9999 9.96104 12.7892 9.58597 12.4142C9.2109 12.0391 9.00019 11.5304 9.00019 10.9999C8.99814 10.8241 9.02172 10.649 9.07018 10.4799ZM11.0002 16.9999C7.82018 16.9999 4.83019 14.7099 3.10019 10.9999C3.74627 9.57369 4.66326 8.28652 5.80019 7.20994L7.57019 8.99994C7.15443 9.75874 6.99592 10.6319 7.11844 11.4884C7.24096 12.3449 7.6379 13.1386 8.24971 13.7504C8.86152 14.3622 9.65522 14.7592 10.5117 14.8817C11.3682 15.0042 12.2414 14.8457 13.0002 14.4299L14.5902 15.9999C13.5013 16.6408 12.2636 16.9856 11.0002 16.9999Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21228
|
+
React$1.createElement('svg', { width: "22", height: "22", viewBox: "0 0 22 22" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 61}}
|
|
21229
|
+
, React$1.createElement('path', { d: "M9.94018 5.07994C10.2909 5.02617 10.6453 4.99943 11.0002 4.99994C14.1802 4.99994 17.1702 7.28994 18.9102 10.9999C18.6441 11.5645 18.3435 12.1122 18.0102 12.6399C17.9044 12.8038 17.8487 12.9949 17.8502 13.1899C17.8524 13.4082 17.926 13.6197 18.0596 13.7922C18.1933 13.9647 18.3798 14.0888 18.5905 14.1455C18.8013 14.2021 19.0248 14.1883 19.227 14.106C19.4291 14.0238 19.5988 13.8776 19.7102 13.6899C20.1761 12.9579 20.5808 12.1886 20.9202 11.3899C20.9738 11.2652 21.0015 11.1308 21.0015 10.9949C21.0015 10.8591 20.9738 10.7247 20.9202 10.5999C18.9002 5.90994 15.1002 2.99994 11.0002 2.99994C10.5309 2.99758 10.0623 3.03774 9.60019 3.11994C9.46886 3.14227 9.34322 3.19024 9.23044 3.26112C9.11766 3.332 9.01994 3.4244 8.94287 3.53304C8.8658 3.64169 8.81088 3.76445 8.78125 3.89432C8.75162 4.02419 8.74786 4.15862 8.77018 4.28994C8.79251 4.42126 8.84048 4.5469 8.91136 4.65968C8.98224 4.77247 9.07464 4.87018 9.18329 4.94726C9.29193 5.02433 9.41469 5.07925 9.54456 5.10888C9.67443 5.13851 9.80886 5.14227 9.94018 5.11994V5.07994ZM2.71019 1.28994C2.61695 1.1967 2.50626 1.12274 2.38443 1.07228C2.26261 1.02182 2.13204 0.99585 2.00019 0.99585C1.86833 0.99585 1.73776 1.02182 1.61594 1.07228C1.49411 1.12274 1.38342 1.1967 1.29019 1.28994C1.10188 1.47824 0.996094 1.73364 0.996094 1.99994C0.996094 2.26624 1.10188 2.52164 1.29019 2.70994L4.39019 5.79994C2.97576 7.16147 1.85004 8.79393 1.08019 10.5999C1.02512 10.7261 0.996701 10.8623 0.996701 10.9999C0.996701 11.1376 1.02512 11.2738 1.08019 11.3999C3.10019 16.0899 6.90019 18.9999 11.0002 18.9999C12.7973 18.9875 14.552 18.4524 16.0502 17.4599L19.2902 20.7099C19.3831 20.8037 19.4937 20.8781 19.6156 20.9288C19.7375 20.9796 19.8682 21.0057 20.0002 21.0057C20.1322 21.0057 20.2629 20.9796 20.3848 20.9288C20.5066 20.8781 20.6172 20.8037 20.7102 20.7099C20.8039 20.617 20.8783 20.5064 20.9291 20.3845C20.9798 20.2627 21.006 20.132 21.006 19.9999C21.006 19.8679 20.9798 19.7372 20.9291 19.6154C20.8783 19.4935 20.8039 19.3829 20.7102 19.2899L2.71019 1.28994ZM9.07018 10.4799L11.5202 12.9299C11.3512 12.9784 11.176 13.002 11.0002 12.9999C10.4698 12.9999 9.96104 12.7892 9.58597 12.4142C9.2109 12.0391 9.00019 11.5304 9.00019 10.9999C8.99814 10.8241 9.02172 10.649 9.07018 10.4799ZM11.0002 16.9999C7.82018 16.9999 4.83019 14.7099 3.10019 10.9999C3.74627 9.57369 4.66326 8.28652 5.80019 7.20994L7.57019 8.99994C7.15443 9.75874 6.99592 10.6319 7.11844 11.4884C7.24096 12.3449 7.6379 13.1386 8.24971 13.7504C8.86152 14.3622 9.65522 14.7592 10.5117 14.8817C11.3682 15.0042 12.2414 14.8457 13.0002 14.4299L14.5902 15.9999C13.5013 16.6408 12.2636 16.9856 11.0002 16.9999Z" , fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 62}})
|
|
21209
21230
|
)
|
|
21210
21231
|
|
|
21211
21232
|
)
|
|
21212
21233
|
)
|
|
21213
|
-
, !
|
|
21214
|
-
React$1.createElement(ErrorMessage$4, {__self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21234
|
+
, !passString && err &&
|
|
21235
|
+
React$1.createElement(ErrorMessage$4, {__self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 68}}
|
|
21215
21236
|
/*exclamation-triangle*/
|
|
21216
|
-
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21217
|
-
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21237
|
+
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 70}}
|
|
21238
|
+
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 71}})
|
|
21218
21239
|
)
|
|
21219
|
-
, errMsg ? React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber:
|
|
21240
|
+
, errMsg ? React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 73}}, errMsg) : React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$z, lineNumber: 73}}, "This field is required" )
|
|
21220
21241
|
)
|
|
21221
21242
|
|
|
21222
21243
|
)
|
|
@@ -22062,7 +22083,7 @@ const _jsxFileName$t = "D:\\SSX\\Project\\Component Library\\sscomp\\src\\compon
|
|
|
22062
22083
|
* Component to display an input field component in a form. This mimics the behavior of a regular HTML <code><input></code> element and accepts the same props as it along with the custom ones defined.
|
|
22063
22084
|
*/
|
|
22064
22085
|
const TextField = (props) => {
|
|
22065
|
-
let {label,subtext,errMsg,disabled,required,width,value} = props;
|
|
22086
|
+
let {label,subtext,errMsg,disabled,required,width,value,readonly} = props;
|
|
22066
22087
|
|
|
22067
22088
|
const [borderColor,setBorderColor] = React$1.useState('');
|
|
22068
22089
|
const [inputVal,setInputVal] = React$1.useState(value);
|
|
@@ -22104,15 +22125,18 @@ const TextField = (props) => {
|
|
|
22104
22125
|
)
|
|
22105
22126
|
|
|
22106
22127
|
, React$1.createElement(InputContainer$3, { className: `${borderColor} ${disabled ? 'disabled' : ''}`, style: {width:width ? width : '100%',border:disabled ? `1px solid ${theme.colors["neutral-100"]}` : ''}, __self: undefined, __source: {fileName: _jsxFileName$t, lineNumber: 52}}
|
|
22107
|
-
, React$1.createElement(InputField$2, { ref: textFieldRef, onBlur: validate, onInvalid: validate, value: inputVal, onChange: (e)=>{
|
|
22128
|
+
, React$1.createElement(InputField$2, { ref: textFieldRef, onBlur: validate, onInvalid: validate, value: inputVal, onChange: (e)=>{
|
|
22129
|
+
if (readonly) return
|
|
22130
|
+
setInputVal(e.target.value);
|
|
22131
|
+
}, ...props, __self: undefined, __source: {fileName: _jsxFileName$t, lineNumber: 53}})
|
|
22108
22132
|
)
|
|
22109
|
-
, !
|
|
22110
|
-
React$1.createElement(ErrorMessage$3, {__self: undefined, __source: {fileName: _jsxFileName$t, lineNumber:
|
|
22133
|
+
, !inputVal && required && err &&
|
|
22134
|
+
React$1.createElement(ErrorMessage$3, {__self: undefined, __source: {fileName: _jsxFileName$t, lineNumber: 59}}
|
|
22111
22135
|
/*exclamation-triangle*/
|
|
22112
|
-
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$t, lineNumber:
|
|
22113
|
-
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$t, lineNumber:
|
|
22136
|
+
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$t, lineNumber: 61}}
|
|
22137
|
+
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$t, lineNumber: 62}})
|
|
22114
22138
|
)
|
|
22115
|
-
, errMsg ? React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$t, lineNumber:
|
|
22139
|
+
, errMsg ? React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$t, lineNumber: 64}}, errMsg) : React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$t, lineNumber: 64}}, "This field is required" )
|
|
22116
22140
|
)
|
|
22117
22141
|
|
|
22118
22142
|
)
|
|
@@ -23661,7 +23685,7 @@ const _jsxFileName$j = "D:\\SSX\\Project\\Component Library\\sscomp\\src\\compon
|
|
|
23661
23685
|
* Component to display a textarea field in a form. This mimics the behavior of a regular HTML <code><textarea></code> element and accepts the same props as it along with the custom ones defined.
|
|
23662
23686
|
*/
|
|
23663
23687
|
const TextArea = (props) => {
|
|
23664
|
-
let {label,subtext,errMsg,disabled,required,width,value} = props;
|
|
23688
|
+
let {label,subtext,errMsg,disabled,required,width,value,readonly} = props;
|
|
23665
23689
|
|
|
23666
23690
|
const [borderColor,setBorderColor] = React$1.useState(value);
|
|
23667
23691
|
const [err,setErr] = React$1.useState(false);
|
|
@@ -23703,15 +23727,18 @@ const TextArea = (props) => {
|
|
|
23703
23727
|
)
|
|
23704
23728
|
|
|
23705
23729
|
, React$1.createElement(InputContainer$2, { className: `${borderColor} ${disabled ? 'disabled' : ''}`, style: {width:width ? width : '100%',border:disabled ? `1px solid ${theme.colors["neutral-100"]}` : ''}, __self: undefined, __source: {fileName: _jsxFileName$j, lineNumber: 52}}
|
|
23706
|
-
, React$1.createElement(TextAreaField, { className: "paragraph1Regular", ref: textFieldRef, onBlur: validate, onChange: (e)=>{
|
|
23730
|
+
, React$1.createElement(TextAreaField, { className: "paragraph1Regular", ref: textFieldRef, onBlur: validate, onChange: (e)=>{
|
|
23731
|
+
if (readonly) return
|
|
23732
|
+
setInputVal(e.target.value);
|
|
23733
|
+
}, onInvalid: validate, ...props, __self: undefined, __source: {fileName: _jsxFileName$j, lineNumber: 53}}, inputVal)
|
|
23707
23734
|
)
|
|
23708
23735
|
, !value && required && err &&
|
|
23709
|
-
React$1.createElement(ErrorMessage$2, {__self: undefined, __source: {fileName: _jsxFileName$j, lineNumber:
|
|
23736
|
+
React$1.createElement(ErrorMessage$2, {__self: undefined, __source: {fileName: _jsxFileName$j, lineNumber: 59}}
|
|
23710
23737
|
/*exclamation-triangle*/
|
|
23711
|
-
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$j, lineNumber:
|
|
23712
|
-
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$j, lineNumber:
|
|
23738
|
+
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$j, lineNumber: 61}}
|
|
23739
|
+
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$j, lineNumber: 62}})
|
|
23713
23740
|
)
|
|
23714
|
-
, errMsg ? React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$j, lineNumber:
|
|
23741
|
+
, errMsg ? React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$j, lineNumber: 64}}, errMsg) : React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$j, lineNumber: 64}}, "This field is required" )
|
|
23715
23742
|
)
|
|
23716
23743
|
|
|
23717
23744
|
)
|
|
@@ -25391,7 +25418,7 @@ const _jsxFileName$7 = "D:\\SSX\\Project\\Component Library\\sscomp\\src\\compon
|
|
|
25391
25418
|
* Component for making selections. Usage could be in an onboarding process
|
|
25392
25419
|
*/
|
|
25393
25420
|
const Selector = (props) => {
|
|
25394
|
-
const {itemsList,selectedItem,width,multiSelect,required,label,subText,errMsg,inputName,arrangement,otherOption,otherPlaceholder,numCols,value} = props;
|
|
25421
|
+
const {itemsList,selectedItem,width,multiSelect,required,label,subText,errMsg,inputName,arrangement,otherOption,otherPlaceholder,numCols,value,readonly} = props;
|
|
25395
25422
|
const [selectedOptions,setSelectedOptions] = React$1.useState([]);
|
|
25396
25423
|
const [selStatus,setSelStatus] = React$1.useState('');
|
|
25397
25424
|
const [srSel,setSrSel] = React$1.useState('');
|
|
@@ -25482,53 +25509,57 @@ const Selector = (props) => {
|
|
|
25482
25509
|
, React$1.createElement(React$1.Fragment, null
|
|
25483
25510
|
, itemsList.map((item,index) => (
|
|
25484
25511
|
React$1.createElement(SelectorContainer, { type: "button", key: index, className: evaluateSelection(item) ? 'selected' : '', onClick: () => {
|
|
25512
|
+
if (readonly) return
|
|
25485
25513
|
setOtherVal('');
|
|
25486
25514
|
setTimeout(()=>{
|
|
25487
25515
|
handleSelect(item);
|
|
25488
25516
|
},100);
|
|
25489
25517
|
}, __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 102}}
|
|
25490
|
-
, React$1.createElement('p', { className: "text paragraph2Regular" , __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25518
|
+
, React$1.createElement('p', { className: "text paragraph2Regular" , __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 109}}, item.label)
|
|
25491
25519
|
/*<svg width="25" height="22" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
25492
25520
|
<path d="M14.71 1.21C14.617 1.11627 14.5064 1.04188 14.3846 0.991107C14.2627 0.940338 14.132 0.9142 14 0.9142C13.868 0.9142 13.7373 0.940338 13.6154 0.991107C13.4936 1.04188 13.383 1.11627 13.29 1.21L5.84001 8.67L2.71001 5.53C2.61349 5.43676 2.49955 5.36345 2.37469 5.31424C2.24984 5.26504 2.11651 5.24091 1.98233 5.24323C1.84815 5.24555 1.71574 5.27428 1.59266 5.32777C1.46959 5.38126 1.35825 5.45848 1.26501 5.555C1.17177 5.65152 1.09846 5.76546 1.04925 5.89032C1.00005 6.01517 0.97592 6.1485 0.978241 6.28268C0.980563 6.41686 1.00929 6.54927 1.06278 6.67234C1.11628 6.79542 1.19349 6.90676 1.29001 7L5.13001 10.84C5.22297 10.9337 5.33358 11.0081 5.45543 11.0589C5.57729 11.1097 5.708 11.1358 5.84001 11.1358C5.97202 11.1358 6.10273 11.1097 6.22459 11.0589C6.34645 11.0081 6.45705 10.9337 6.55001 10.84L14.71 2.68C14.8115 2.58636 14.8925 2.4727 14.9479 2.3462C15.0033 2.21971 15.0319 2.0831 15.0319 1.945C15.0319 1.8069 15.0033 1.67029 14.9479 1.54379C14.8925 1.41729 14.8115 1.30364 14.71 1.21V1.21Z"
|
|
25493
25521
|
fill={selectedOptions.some((option:any) => (option.label === item.label)) ? theme.colors["primary-500"] : theme.colors["neutral-400"]}/>
|
|
25494
25522
|
</svg>*/
|
|
25495
25523
|
|
|
25496
|
-
, React$1.createElement('svg', { width: "25", height: "25", viewBox: "0 0 25 25" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25497
|
-
, React$1.createElement('g', { clipPath: "url(#clip0_2040_756)", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25498
|
-
, React$1.createElement('path', { d: "M19.5098 7.42885C19.4168 7.33513 19.3062 7.26073 19.1843 7.20996C19.0625 7.15919 18.9318 7.13306 18.7998 7.13306C18.6677 7.13306 18.537 7.15919 18.4152 7.20996C18.2933 7.26073 18.1827 7.33513 18.0898 7.42885L10.6398 14.8889L7.50975 11.7489C7.41323 11.6556 7.29929 11.5823 7.17444 11.5331C7.04958 11.4839 6.91626 11.4598 6.78208 11.4621C6.6479 11.4644 6.51549 11.4931 6.39241 11.5466C6.26933 11.6001 6.15799 11.6773 6.06475 11.7739C5.97152 11.8704 5.8982 11.9843 5.849 12.1092C5.79979 12.234 5.77566 12.3674 5.77798 12.5015C5.78031 12.6357 5.80903 12.7681 5.86253 12.8912C5.91602 13.0143 5.99323 13.1256 6.08975 13.2189L9.92975 17.0589C10.0227 17.1526 10.1333 17.227 10.2552 17.2777C10.377 17.3285 10.5077 17.3547 10.6398 17.3547C10.7718 17.3547 10.9025 17.3285 11.0243 17.2777C11.1462 17.227 11.2568 17.1526 11.3498 17.0589L19.5098 8.89886C19.6113 8.80521 19.6923 8.69156 19.7477 8.56506C19.8031 8.43856 19.8317 8.30196 19.8317 8.16386C19.8317 8.02575 19.8031 7.88915 19.7477 7.76265C19.6923 7.63615 19.6113 7.5225 19.5098 7.42885Z" , fill: selectedOptions.some((option) => (option.label === item.label)) ? theme.colors["primary-500"] : theme.colors["neutral-400"], __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25524
|
+
, React$1.createElement('svg', { width: "25", height: "25", viewBox: "0 0 25 25" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 115}}
|
|
25525
|
+
, React$1.createElement('g', { clipPath: "url(#clip0_2040_756)", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 116}}
|
|
25526
|
+
, React$1.createElement('path', { d: "M19.5098 7.42885C19.4168 7.33513 19.3062 7.26073 19.1843 7.20996C19.0625 7.15919 18.9318 7.13306 18.7998 7.13306C18.6677 7.13306 18.537 7.15919 18.4152 7.20996C18.2933 7.26073 18.1827 7.33513 18.0898 7.42885L10.6398 14.8889L7.50975 11.7489C7.41323 11.6556 7.29929 11.5823 7.17444 11.5331C7.04958 11.4839 6.91626 11.4598 6.78208 11.4621C6.6479 11.4644 6.51549 11.4931 6.39241 11.5466C6.26933 11.6001 6.15799 11.6773 6.06475 11.7739C5.97152 11.8704 5.8982 11.9843 5.849 12.1092C5.79979 12.234 5.77566 12.3674 5.77798 12.5015C5.78031 12.6357 5.80903 12.7681 5.86253 12.8912C5.91602 13.0143 5.99323 13.1256 6.08975 13.2189L9.92975 17.0589C10.0227 17.1526 10.1333 17.227 10.2552 17.2777C10.377 17.3285 10.5077 17.3547 10.6398 17.3547C10.7718 17.3547 10.9025 17.3285 11.0243 17.2777C11.1462 17.227 11.2568 17.1526 11.3498 17.0589L19.5098 8.89886C19.6113 8.80521 19.6923 8.69156 19.7477 8.56506C19.8031 8.43856 19.8317 8.30196 19.8317 8.16386C19.8317 8.02575 19.8031 7.88915 19.7477 7.76265C19.6923 7.63615 19.6113 7.5225 19.5098 7.42885Z" , fill: selectedOptions.some((option) => (option.label === item.label)) ? theme.colors["primary-500"] : theme.colors["neutral-400"], __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 117}})
|
|
25499
25527
|
)
|
|
25500
|
-
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25501
|
-
, React$1.createElement('clipPath', { id: "clip0_2040_756", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25502
|
-
, React$1.createElement('rect', { width: "24", height: "24", fill: "white", transform: "translate(0.799805 0.21875)" , __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25528
|
+
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 119}}
|
|
25529
|
+
, React$1.createElement('clipPath', { id: "clip0_2040_756", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 120}}
|
|
25530
|
+
, React$1.createElement('rect', { width: "24", height: "24", fill: "white", transform: "translate(0.799805 0.21875)" , __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 121}})
|
|
25503
25531
|
)
|
|
25504
25532
|
)
|
|
25505
25533
|
)
|
|
25506
25534
|
|
|
25507
|
-
, React$1.createElement(SrInput, { type: "checkbox", name: inputName, value: item.value, onChange: ()=>{}, checked: selectedOptions.some((option) => option.label === item.label), __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25535
|
+
, React$1.createElement(SrInput, { type: "checkbox", name: inputName, value: item.value, onChange: ()=>{}, checked: selectedOptions.some((option) => option.label === item.label), __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 126}})
|
|
25508
25536
|
)
|
|
25509
25537
|
))
|
|
25510
25538
|
)
|
|
25511
25539
|
)
|
|
25512
25540
|
, otherOption &&
|
|
25513
|
-
React$1.createElement(OtherContainer, {__self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25514
|
-
, React$1.createElement('p', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25515
|
-
, React$1.createElement(TextField, { placeholder: otherPlaceholder, value: otherVal, onChange: (e)=>{
|
|
25541
|
+
React$1.createElement(OtherContainer, {__self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 132}}
|
|
25542
|
+
, React$1.createElement('p', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 133}}, "Other? Specify" )
|
|
25543
|
+
, React$1.createElement(TextField, { placeholder: otherPlaceholder, value: otherVal, onChange: (e)=>{
|
|
25544
|
+
if (readonly) return
|
|
25545
|
+
setOtherVal(e.target.value);
|
|
25546
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 134}})
|
|
25516
25547
|
)
|
|
25517
25548
|
|
|
25518
25549
|
|
|
25519
25550
|
, React$1.createElement(SrInput, { className: "sr-only", value: srSel.toString(), required: required, onInvalid: (e)=>{
|
|
25520
25551
|
setSelStatus('error');
|
|
25521
25552
|
// e.target.setCustomValidity('This field is required')
|
|
25522
|
-
}, onChange: ()=>{}, __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25553
|
+
}, onChange: ()=>{}, __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 141}})
|
|
25523
25554
|
, selStatus === 'error' &&
|
|
25524
|
-
React$1.createElement(ErrorMessage$3, {__self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25555
|
+
React$1.createElement(ErrorMessage$3, {__self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 146}}
|
|
25525
25556
|
/*exclamation-triangle*/
|
|
25526
|
-
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25527
|
-
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25557
|
+
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 148}}
|
|
25558
|
+
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 149}})
|
|
25528
25559
|
)
|
|
25529
25560
|
, errMsg ?
|
|
25530
|
-
React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25531
|
-
: React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber:
|
|
25561
|
+
React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 152}}, errMsg)
|
|
25562
|
+
: React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$7, lineNumber: 153}}, "Select an option" )
|
|
25532
25563
|
)
|
|
25533
25564
|
|
|
25534
25565
|
)
|
|
@@ -26988,7 +27019,7 @@ const _jsxFileName$5 = "D:\\SSX\\Project\\Component Library\\sscomp\\src\\compon
|
|
|
26988
27019
|
* Dropdown component for selecting from a list of options
|
|
26989
27020
|
*/
|
|
26990
27021
|
const PhoneInput = (props) => {
|
|
26991
|
-
let {selectedCountryCode, initialCountryCode,initialPhoneNumber,disabled,label,placeholder,width,required,inputName,onChange} = props;
|
|
27022
|
+
let {selectedCountryCode, initialCountryCode,initialPhoneNumber,disabled,label,placeholder,width,required,inputName,onChange,readonly} = props;
|
|
26992
27023
|
const [opened, setOpened] = React$1.useState(false);
|
|
26993
27024
|
const [qryStr, setQryStr] = React$1.useState('');
|
|
26994
27025
|
const buttonRef = React$1.useRef();
|
|
@@ -27115,24 +27146,25 @@ const PhoneInput = (props) => {
|
|
|
27115
27146
|
setOpened(false);
|
|
27116
27147
|
}, 100);
|
|
27117
27148
|
} else {
|
|
27149
|
+
if (readonly) return
|
|
27118
27150
|
setOpened(true);
|
|
27119
27151
|
}
|
|
27120
27152
|
}, __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 131}}
|
|
27121
27153
|
, countryCode ?
|
|
27122
|
-
React$1.createElement('div', { className: "selected-country", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27123
|
-
, React$1.createElement('img', { src: flag, alt: "country flag" , __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27154
|
+
React$1.createElement('div', { className: "selected-country", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 151}}
|
|
27155
|
+
, React$1.createElement('img', { src: flag, alt: "country flag" , __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 152}})
|
|
27124
27156
|
, countryCode
|
|
27125
27157
|
)
|
|
27126
27158
|
:
|
|
27127
|
-
React$1.createElement('span', { className: "globe-icon", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27128
|
-
, React$1.createElement('svg', { width: "11", height: "12", viewBox: "0 0 11 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27129
|
-
, React$1.createElement('path', { d: "M0 11.4888H11V0.48875H0V11.4888Z" , fill: "url(#pattern0)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27130
|
-
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27131
|
-
, React$1.createElement('pattern', { id: "pattern0", patternContentUnits: "objectBoundingBox", width: "1", height: "1", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27132
|
-
, React$1.createElement('use', { xlinkHref: "#image0_2054_4009", transform: "scale(0.015625)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27159
|
+
React$1.createElement('span', { className: "globe-icon", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 156}}
|
|
27160
|
+
, React$1.createElement('svg', { width: "11", height: "12", viewBox: "0 0 11 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 157}}
|
|
27161
|
+
, React$1.createElement('path', { d: "M0 11.4888H11V0.48875H0V11.4888Z" , fill: "url(#pattern0)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 158}})
|
|
27162
|
+
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 159}}
|
|
27163
|
+
, React$1.createElement('pattern', { id: "pattern0", patternContentUnits: "objectBoundingBox", width: "1", height: "1", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 160}}
|
|
27164
|
+
, React$1.createElement('use', { xlinkHref: "#image0_2054_4009", transform: "scale(0.015625)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 161}})
|
|
27133
27165
|
)
|
|
27134
27166
|
, React$1.createElement('image', { id: "image0_2054_4009", width: "64", height: "64",
|
|
27135
|
-
xlinkHref: "data:image/png;base64,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", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 162}})
|
|
27167
|
+
xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAiYklEQVR4nLWbebAd113nP2fp7ru/fdOT9LTasiUvsh3bxIkXQkxWskwIIQswDBkyxVSxFAUzw1QxVWSKbZilyKSAFAlhTQiEkEDiiW3sxIk3JZItWZK160l6evu7992t13PO/NH3LV5DEuhXXbf79qvu/n3Pb/n+vudc4RyvstVYWvodVlcXicPbOXRpAXPbRR46uYvqY8fR52O+ec2Hab5mkAN/rbnvTs3Vqxc5+rUxJiYOsWvnFMNbD+DMAp3mOaYvDxKMucqK3+g/sHui9tmw7Slr+en+IHvqiflOMYhWQ3+wua1bN4XiOLo0RrMzT3PxCKefb7Lj+kvccsPdNJbm+exnP86BA/vZ8/4PMPO1r7E4M8OZSoXu0//E/LEyP/eLn2N+/tf55Cf/9NUMRL/q1e9yk0KipcBTFl2o0ZbhwOLshVuXm4075lbc3mZ3diybE4OlghqaO3u6NrDS0guLlt8S2lRLoqM91fD15aVLJeaHypcuVMv1b1eC+GmlizPaW0VrUBLEv+A7f98AOAFGSZRUZMbQwY7ZLfNvvSSL9x2/FN6wuHJ5P1miS37E9bssuyZ92kuXUdkKfft2cnm5j9OXBM2OGw6NnQqNZGY+paBbaOoUNWcDoZ4NpPxGmE58MUnlee0JrElwr+6+//oAWOOwmWLIQiTqd37zxMoHrqwm97lkfv+24CpDAyW2B7OMuwvsGelQGSzhVwokhKSmQnFknD3bK9x1fUY7krRDQ7sbcWHOJ+qkCNNACbun0RZ7VtuFf/OtE/oX5hYXHtkynP3V0Ng1X/X9AOl5IL53n/ieAHACrBPUxmuMLEWvtV859ZEwXnjbePH4wMCAIJApI8U6O4fq+IUWdTdEf/91BOVBjLVEQYfAOAI3j0tbaDy0TCiZJWyryV27d1EqVVhcXEU4hREF5peXmZltTZ2Zrv/UzNXS+0YqY19O0vgT4dLSA56UfK++8F0DILVEOh+ph3bKkYu/vL/7x+8rqrnBqf0Zk8EiInN0s2FSkSG8mFR7+DKm3L+KrpQhznBJi0KxH6HLRI1VTGeVbrtOXD9LFidcnr7MyMgU1doEQpYw1seaDrUAhkoZq/WLhSTpvntxsfmm1men/6Za2fI7xdrgcevS7xqIfzYAAoGRErmsGLx65kN+5fh/GRo+t++aYkSpUKAWBMhEgixRVU06TrKaSrrdEGUahO3zeGYSjSSoVXEFR9q9gjV1tN9BVpdRcpnRyLHaiuguTeNWi/ieR+aNUSlOIU3K1GSJlWCRZifFUS4tzZ76iTOXjt4zsO31v1saHfm/MQ77XeSGfzYA2guIM1Gsf/vwR3e70z8f7Baqr2+YmvNRSDzPIwkCmlmJ/oJPTSZ4cUokS3TFCEGQIV2MVimhi/FkG3QTO5DSsVUCbweyUyFuNxgb9UkzQafVQDbPYjunEOI6SliaUQupBLVSTL0zzDL3Q+GpqfmLj31MLB64dffo1l+Z9VpLxrh/Vrn4jgAIIdHK59zC4xMFcfTjuwaOvrNS9XHBCANFg00LtNMKlWKKE4IgszhVJrQFpMoYChRlfJRUuBRWIp/UCMpilURIRNCHr/uoFcdRtUGSaIEk7FBNEkrVQbJhnyBsQvcUnZbjqYtvZ765j4rfJk4F8+0djFUM2rvM1ZmRf+szt2Pb9p0/OzTUf2Zx8Tt7wncAIAMXsNKJppajBz89Obhyz1B/H5GsorWmoBWZLdAnfQq6AAj6rCByinocoBBgNCpxVPyMTqoxogipoFIwXFkcR2XD3Dh5lTiZxpmMqozpem1wXWTq6GpBqb+IKYU8NfMGji58EJtKlOjiyxZCGGrViIGReerdg0zPJff1l9qfCwqP/USjvnr0Ow6wc94rXnS2n0tXfmbs/NVjn1GFq/cOVSoI7RGogKIqgPLQysPTkm4WYIUCLUiMY6EtSY0msz6XmyVGSgk13xElGanp0GgVODU9yXXDV7lu5DJpkmBsTDeztFOHS2PCGJIQNE1iY7k4t4PphWFWmv3Mzl3LSn0S4RKq/mUObv84Z2YOcmnmOmz7SbZP6mPVkvrRSkmfqvUNUCgErwTAyVcwP2Zm5oFgaeXzfx4E0Xt8PUDF8xCuQEEVUbqA1RqpFUJrIhuQSUlqYTVVrEZlSgLCRICyGJtSFQFJmhHTYa5RpaBb9PvLKOOoKoMzlsgkdNOMOAxxJiPOHGkcEoYJuA6h7XB2ZhcnztzJxZmbicIiJoWx2tNIlpmd34dMztKpP8/4aPnx3/udX33nHbffvDg3ew4pXhoS4pFHXuolUnjsu26EdvjRj7roK79WlSMUdQnPCxCqglIBTvjgaZQvkEqD8AmtYq5bJBUFKoFPVaZ0Y021mBHGMS7tgsyILViTshoawsjSJxOK0tFJPWwWYVyDZpxgXUYUJ7S6lnaYYrOEKI1YXBjhyOnXsFgfY27hGjRdTBYjaeLiFLJlbHiebmueu1+//y9HBkof+otPHbJY+ZK8qP/hb/7wJQBkEt70I92333Dds7/sM4znhqlWPIyqIf0qwlqQPon1mW1VcMqj6Gf4GkZKAU6WUNIigX6t8bXGV5rM+FgbUQOcNfQHBtIEZwLiOEaLlEwLWqmmJCWplFjRJglTKmVHnEmIWsRphZml6xEiBCFxCISU2KyCEG2cLCG8IYqliKeePP7+/fv2H6r9ysf/90X30kZCrL6oZipgeubI8PT0bzxyTXX+wEPPv4V7bmmhtEcm+9g32UakCoSkHpZopCUKfkaKxdeC0aJDiDI4cCJGYPNjBFZocAmSBCEMkJEZg80MaRiSdFskNiRMU2RmCKVjphmxvBpRcm3CLKOxmvH5h3+C0xdvYmriW3TaNZrNGs6kuMxAFuJsF9JlSC6RdBtMTAzWd7zn4H1//dDDz9r51Rd6wDteNPoToaXwd8kvvHlv4cDDs68jlFPs3HGEmcURBoo+wuXlDieolTLanRS0YrAgSY2knUk8qfBlAJSxGBAGcFgsQkicExgc1hmkDJHK4PmCKPPodFJqXgJBxmono504fC9hdmmcJ47dxMLiEGev3EghaLJl5AxuyHDkxBsxaYAgAqkRTuNUEVQVvxAzt9gaKHzmGx/9wOCd7xjYu89KKTcA+PVNxhvgkcOX9/7j0dZPv/cWxzcv7GDneAFPltg1HoODMPSQyuGkBeET6CpKl9BSUxAeqRNIVG4oKWCBuOddAoshEwkZCantoA2kqSFLDbOJpmU9Ts9tZaZeom/gEqldJe0O8MBTb+HQsVvwVYSnQ5TMqLcnqDfGMVkRISNwEoQEqcH6IMsgmggslxrizfe8eejto4Mrf99stjcAuGf59zbiQU1RlWd/7r73PjExXvOZb2zlbXcsIEQApoB1oBSkUiNllUD4jFZKQA2HB8IhRW5yHlgaSMmMJXYdjMsoKoWUHs6l1JSl4zQLJiBOLJGM6Zh+/vLQD7CwGEB2BzfsOsyOsYvMLk1SKnTRMiFLJN24n8FanTAcILM+nohxQoKU4BRCeDhZBFlA64zMCvXlB5/6lYDpr5i0mTiXJwP9u398HAdIIbjl4PGpO3dfek+51ORzz9yLX5Dcteciwng4KxHCx1cCJwSJKGBFER8PiUORW20xJNYC4EmJFKCFR+KKLCQtCrLLWKFAQcBcIlmIJEkiEU4jJNSKKW+85Xm+fngXTxzezezVH+Qn3/Up7r/n//FXX3gfWWYJgjZ33fQVdk0e5ezlm0G4vCUWoucFCqQCGYAsgg0RWOoNc8eb3vDGtx24tvb5NDU4B3rnzk8C0G7Do88/8qFtk384uXeozL0HGtx96xMUCxqyIG+5ncRJQcNBx0aM6hKpcWREFKVA45NHl8U4R0BGiiESBqccsljkaiRJwoTYOi51NCYTlKSh7Fmkg75yl5HBJpeuDuMyhxOabx+/FSkyBvsX2DL6PKP909SCBU6ev5NOdwClTN6ji14IIPN0LjTIAqBRypBmVp04tfiRU8ef+PuF+UsGBHr+NEgBKwX8Bdt5S7m/ivAFIwMCigqyMoggv5nzESikhCUrKGQp41JjXQFrJFZAx0CUKWoFSyoMHWAFQeoEzUzTSmAlkUTOYhKJMQmZMvieoSgTGnEZUzDcdus5FpduApPy3KkbSWPBwf3fwBnH2embWFjcQqtZJdAtlMpw2Vp9yz3BIRFC5XxFemAtQsDiUvgDN1x7/U1bJrYdNsahf/vkZxAorh3a/rpfetczByfHu5BUwRYgFjgpcaqIFCWwkq4AT2oGBVxIIbaWUSweksQ4HBIrHA1raWQxcZpR8D1iKzFJRpY6rOehncEBNrEY6bGcCqKuh0kiJF12bJ9hfGIHly/U0CrF04Yrs7vptMqs1qtoFVIsdHAG1uI5d9PeLjZ5gdAgEpQShHFWCRPxvpm544dXlpfRP/8HzyMl3L785FvvKM0XuuEWnjo7yX3XXQWZIpxCCAUIIiGIRUDR+GzDkvlw2QhWXMaAg7JwlJXCWEPLWOaNT2w0pU6CkRrjPKyvEMoiMhDCoGX+4mEmSTOJsxpfxKSJJkklQoGQDqUsK/URXGYoFLo4s+b2vNB4IXohkHsBQgNeXoMEJKlhZq77Q685cFuxUHCh/iV+FimvqunsszenNkUKwT8e2svpmTF+/O7L1MqmVyBTnC3T7woIa3FCMOk8ikoTI1l1kmXnMBYSfFA+mafBWppxjLUWJQy+yBBApixWSjIh8QTgHEIlKNUlSgK+fuhW5uf78P0Yl/VImjRYadfPcfm+Jgm69RAAIUSPJfa8AAk4hHB0I7dnbMvN+8ZHOKJl5R8wSbzr1LS/v7ijzOhIQrWU8sCRCS6v1BgblMTW59Zruty3NwIb0pWORAaYNc8D+oUgFR4rUuEhsDgyZ1HSIgo+Js0QmUP3mIET4PsWicBl4PsZSls6LZ9vPHUjceizbXKRmZkBFBbnxAtVYAeut4t1D9i0rZ2LXlXouYpSkjBKqhcuzd+9ZXTrEQ1NOp3u7e2QMaE8IODDP3wBLWP+8IHr+K0v3EBQtFxzpsvYB89w7XBM2wWEQpABEQ7nBFIYYjQrLcXCqmZ0MGOslGGsoCUEVkmsU6ROgXNo6QgjibWKxPhcneljdq7Alcs1TpwYZ+/2i0TO4yUi38toHDkuDrHZC14MAhKwSCmIU8ficueu02fO/B8N7yIzX7xRq2X8QAM+WwZbgE+h4FErJvT1WVZWff7okUnuv6POgW0RMdDqlZ6yEDSs5tHnyjx7oUQ3FBy8NuLtN8UUhaNpc+rshMAikdLx/OkBjhytsWNyhatzFU6e7CPqKJyxFAoxZy9uI4sh0CE26xn5cgLP5u9fVh7flBvcWpJ0NFrxrqBQKEnnVsHMbV1pVwnTgDzeBQ8+O8VfPraNgm9RwhFoyz89N8zRKzUKwmHJY7eAYa6t+cw3Bvjm8TKdMC+rR04FHJouYCRo6ZA4nACtBMIKnj0+wMVLFVYaBc5f6CNLBUEhIQhSTKoZGVpi9+5pHHnv8Kpy7zoIL/NPmzHpkSUhBK12Njg4tGNQW3NYKNsenFneTSOCcZp85dt7+M3PXUMUa/qqBqxAAAVtaEYKiWIEaFnHE7NlHjoywNyyT6Vk0RIcjm4ouLKgkRTxCxnbJzI8Y8BZMi14/WtmScIxjhwdQ2HwfYNJwVnIUsW1e85TrkScO7MN1eslXnV7QVfrXvT9pkyJQEqw1g0shnZYLs9VS75bGZwauYKzKV98fBf/+VMHubpcolJIcTZ/KRx4ynHyUonLrQJDZDSXBH/76ACXFzxKxZxo2F5iCnzHmcsBf/e1GhdmPDwsZWXxVEYYC8ZGO/zQ6y8y0BeRGbHh4g4EhmarSr1Ro1xq46zsXXPrBgqRF7qXeALuZc7XY2R9d1BrLtsxGSw/29dVYf+BnSf42Bdu5j998m6MkfSVYpxx4CzOWpzNE9fiks/hqz4xGYttTbMjKXj5dWNzAKwFiaUbC5IU6quCZ04X+dJjgywsK7SNcc4yMtyhrxaRZaIHtMNZhxSW6elx5mb7GR+/yujobC/FvXikX2zgi0febjreMF4IQZzEslSojUp/5w3FmfZiSemEg/vmePddZ1DCYkxedpztgWAsOIdJBM+cLxNhObcU0IkkOJvPExqHMQ5jHWmWP1gKRxTBifMBDz4+yJceHqXTFoTdgIe+PsX8fBFPGbAuL2sWyuUOcRzQapQIghTW23exyT73Aizy87Xa2HPZzcfrAABIlC6y3Jit6a6qiXqSiqkg4md+8CE+8fCPsNIqMtQX9wq2e8G9tLJculzis4dGiRXcem2TUxcriIJDyk2kxDqMAWMEUjqG+hIKgeXUuT60mCSKFKdOVwl0isRgncNmAmPAKkkcBwS6TbnYorxlhc5qkdWVMkpsLgluk6GbXH7dcEvOle0mj9lIhBIt5ckTD8RlbziWsSOZ1hw7O5D/k3V56erlANe7l5aOdlvyqX8a42rbY3IowWYOk0GW9Twgy41XwuKrjFPnysQJvPbmBfr7Yk6d6+PCdJlSkOSUyTqSWJMlkqltM9SqHbCWTqdMp+UzNjyHwG0a0E0saD03vHT0c4/IyCvbC3NAlqb01/o7ulS8oelFZxqlULGgSlxYHEQLk8e9zEvQOpjW4YwACUVt+PazFTwvzw02y/nGWl9ijEBqx83XrNLqak6eqfD+t5/FkwlffXSSQKe4zJHEkjj0KAVdbrzpJDdcd4rDz+5jdqafJNKcev56zp3ZQxIplMx6A0OPGb4IjE0gOGfBmhwAZze5v8Ah8IOC64StRT0yXG9fmaEuVMIDJ3dwcmaMoorz2LcGrMI5ibUgevfMhRdHGoFJJdp36634erVxjm5XcW66wg8cXGC4r8PpcyVKhYhaOaLT0miZUAwSJkaa3HjdKXZtvUC7o5idGyCNFJ6KcMaSJhLfC7HGEXULYA0Cs2742l/upps8wWX5C79MFdDa70jZmtdf/sdFM76ntNJXLfPYhb2EoUexEvVGfCMzO5MviJAGjMzDQUpA5rErJOtdqFj3SsfMbMCDzRHe/saL9FW6HH1+EGcdYagZrHa4956jjAwvI5IOna7EOoOvEoqlFv2VFUxmadb7KRRaZJkCE+EyRxQVSZMCzliUDJFkbHrp3uBlPQ/gha0yAmPixu4db12UtfIUFTExd2WuxvzSIJ5M17N/fi+LM73jLM/0NgWbWmxmsanDJA6b5mFgUzBp/uky8KSlserz4KMTmDRl3645hgdXqZbbtNoBraZPf3EVKWLKlSZnL+xhaaHKbTc/TV9fnW63TJJowm6RMCwwPnaa19z8Jfpqc2wZf5ZtW57BU12SuIS1EiF6Me8MuDT/fFECtM5RLhVWVhbLK/rH3/dOpi/88Yljh09RXy0jXS/OhMzvIRxObvYCEOs1VuRynNyoNEJu6k17pUoBMzMVvvLwDt547wl+7G2H+JsvHeTIs1t44slrWV4sUik2qJWbHHv2Wkq6zjXbp8kSxennr0HJEF9FBDpmaWmKot9g99TT7B7/Olq0mJmb4sKVm7gyeyNp5OPrFRwhJjXr7/nCHWrl6pVup9vUYZiRym1PF0qu2V9aqc02RsBzoHL+7UwugecmC4SRYB3WWXACoQRCCpzNP0Vv/s29AASHFILnT4/QbB7gnlsvsKW/Tn1cUa+XeO7ZKaJoDzhHHEmGaymPP/U6VpoFlMyIukVMInC2hEkk56JbCAotwo7kxr1/y5aRo0z0f5PnCm/m+Jn70XKFLBMIFfVa6BcmQOcEO7aPPP2mHx53+ujRbyFk9+RwX3pycuDqHccu719nf0L1lJUsN1gKiZUOIWxOJh0I63LDZV4dciHihfwBHM5aPGm4fGmAP5/u5/YbznJg9xU6TY/JwQbHp0c5Pz1AXzHGGrgyO0QUKbQIGekLaTSrmEyivAikpLG6hThSDPadpVa4wNz8Lfhykb7yBZaXtyFtHUELZJrPEazJtU5QLJbjWnn50XbrAfS2bYdR0g9bs7Vj+yZO3vHYmdcRJQG+M4igN5ODgMzipMCmOQBSOKzLOzsh3QYA6yGQe8gGN8nziK9STAZPHdmFJxMCnfK8N05mLMJZlDJokVLQGTYrMVxZAgGNdgUrJQllTKTx6JKlJQ4dfj/V0kUWlnZRC05RKlxEihGcScFJhLQ44Vhrha2D4cHa9KXz/tH/+Y3z6C1bfhZQ2FbxwZvHv/DTUwNXZCPrR2SWdlTBK+QighO90cwMCIsVeS7I3V6sa5AI1/OOvC6vl+c1IIwD61DOkiWSOPSppwHCWgQWa8pIMoQ1OGe4km6l2S1jjWPrwCmuGT1OFguu1LdyZWEnBdOkohqsiIhGa4pWq4awTSDqeV5xI/aFROColfse3zrxgfpAn4+G0wAEtdpXh6ry+cm+i9cfHI+ZWx7gseduR3sxFpl3eqlFCIeQNi93TvTOeyHgcjDcJr1qo4ETva9yAFyvbVSAlDav5NahRK+vyKCblqkUG9w+9SQr3Sp3bn2QOye+QT0u8hfP/DsaYT97aye4afxhGq1BFsJhJAZMkleA9c0CEuOgVCim140V/0p3H6ZqHDoMTwMCvxQ0guLOhxzx9Xtr0xBmpEbkLyrYGEZh85kYlXMAZP4/QoAw4JTa6MTWR9+tA5DzlR44dmPHbgDjDKRGMVK7yv37vspd256kGZeQWYtup0iSSKZKx5ipDTNSPs9IcJ7+0gxzi8MIGYKNehl4QwpDCGwSU9s2diz7obc85tXKKAfa97+d58cAhsfaf2ay8k89NztVG+9bQIoMTG6wW+O5TuTnrCXA3HhH/ixhe/V2k4aV9yJrSbH32eP0a2DgHHGqiWNNnCl2DJzjw3f+KTsHrxB2JYWsRRg6otRDy5Q7tzzCttJRXNIljgWeWESKEGciBGnP7dc6QY1zEs8vs2Nb8OlG/Eh4ZS5fGqSVGlx3lJGpPd+6/8aZBz5/aOt7d45dZLS2SDvqwxNmTXrt2SYQrgeMpVf68mToNndqmxuWNTjsBkvMc4QDC1HiMRgssmf8Ev2lOgeGj7G9MEe7ERAnGXEkSRJDmjlSK3CqTFUtkxQFjRWfCf/bXC5spdX08rkGBIgMSIA+sswwNbX97MzxN/350T+4klNpQMP/WAdABfCGWz/1sS89VX/rpdmx8o6hy3zr3BCKDCGzXOlQqkcrXR4KrFUYm0vUdm1yYs1SNuTstShab+Jyt48Sn31Dp/ixA19isn8WKVKSyNHseCRxRmYcaQpxnBHFhqhtcIHAqIAkS8icxrMLDBYO027dyprwifMAD2uhWC5Q9uLf/9rTJ1Y6pswaN9CweY2QYMvOvseu3zH3d58/dNsHi4HCl2HPTdkY0V7j73oTDXmz5RDG4hS9tnBTHoANMDYOweWYGmu5ceIY1w5fZGG1SBhpnHVYkxFHMcY50sQQR5YktqQGhJYY5+isGtpRSidKKYoLaHU91ngIYVmbJE2NZWJg8MiOyalPpq99EiHdusUafpXNmywr3nvPtt969Nj++8+ujI72+Z2egWLjrZ1ZV1g3nNvhhEM4AXLdzzdA6wH84smNnGI66lGBZkdiEodJDMYasjQjSQ2ZsSSxIYpygIOxAOOgvRDTbhrq7ZTEpXTTCtZq1nk5gsw4ymXPXDN1za9j3tHee817X2CvXuR+XrgJBm8ZP37vnX2/Offl1f+VOR9pe5nfCZwzvcZKbAKhZ4kA52weBuuJEDbm8HJGuPacNc+wqeDy6iRdD1AxKYIsy9CiS6BShEkxzmBThVUB4Oi0ElYbCa1uhhFdIhew3NmPsxopE0DjcmbBzm3bPnHm+H1fOnF801isAbCPX+TFm/Lg9vtnf3/i8LOvnZlJf1QEqlcOc7bmBDiZr8xyTmwodYL8kUIgenNxm0cf0St1eebsMUWLJuHiwhZmbZH9W8+QzZdpNx319gCtuJ+FVj9R7BjWJ/DNCo0ZRbdjaDUTWkmbRDvmW6+hG29BiQR6S3TCyLJjYuDp//iTr/81Z2q02y8xFV1+6XcAXN07bm57R+sX7Z9d2DPTtgc9rdaJjJBs6N9ry9R6NubmWtyaDOU2M8M1Ruh6OaR33RmcMZxf7MfYPVyan2KpUeH4hZtpdPqIU02aSXYMHmJq6FGKyWlMHNEhoiMMy6uvo9k9iJRZT++DKFvF07WZd/7wvo+8+W03r7yCmYhX+tlJBiwB//3T52775ucv/u1qYrcrJfLk0rNWbJ6JZcPNX6rPb8oHL3w8a3RZioTAb5OmHp2wnOcdk6GIkcRgM4wxFLzz7B39C0Q6z2KjRDe8lnb34FqrjxMe1i7Qr3Xjlve+5wMzP3nHl0tjoxheftPnjh17JXC4ogXd1elv9VWXfipZHfqzTqQmPV/mIDhyciREL8TX3mDNrpcBYFNpzPER698bJ1gN+8EZtAgRGIRKe8pOgrMJyiaknRJnLt0Fbo40HsXZgZz+Cg3CYN0KShXr737T3R++/xfe8uV7fUX3FS0Efdvdd7/iRQvEqcUrlR+5952/8eOt7u5PXJptXat8la+7dZY1LcytaWHrxq0Z6jYBsHZsNx6wwY/xRJx/aQ3OZTib9eSlOF/oZNqQtYljgZQaYSs5oREWIdpYIqr+yJUtP3jff7j27Tv/YcCHAF4dgEaj8SqX8y3uNJmcsI8VhmvvbDy08LHGqniD9gtIRS5QCt0jRWIDhI1G4GVK4tqMzZqI2aOsvQ4wV3PXDE/AhGDbkDbAhSghwI2yxvEzm6JEyNjIvkPbB0Z+7tL45KGkv0ISxohi6VVt++f9YkTlqvCSaT+/7cCud2+/Ov/fTk6vfiROvKKndU4OFblGYOUmovMysd8TLddV3DUhk01Cpk3BJesjT9YEs5qfCwEocALrLFkmCYpVs2vH9k/t3br3v7q2nj8TRdjUvsSM7x0AwFlHJ8wYGt3avG5qyy8Vy08+dP786q8tNtVrrfZRSiB0b5Eia4O9ZiBshMSm2dYXz7q4NB9xG/f2Tm646bA2bY9TOOeIU0fge0yMVZ+56ebrf7s60v2MW27QtaNI8QpGfD8AwFqStySZZu/W2pcPTAw+dvrK1Q89d7b+7xsdbkqFRqkArb28Mjibx/FmZXatI7K9tUdr+v2ay7sQTBdMK/90CWvLXIwBYx2esowNVU6Pbd35J6PV+h/tnfKX6wbqUf27Mee7BwDykbU2I44s1+/a3tLi2MfDldOfGdr/uvcefX7pg8vN1VuT2C84NEp7KCkRZDiXbcS7s+Q/x+ntNuoZ3gHTwpkOkAIKazXW5YyuUPAYqgRHKuM7Pveut+7/9KWl2tXj3/wi+9IWFr8nxvwrA7AOBPloNJsNKoX6yl0Hb/iDklz+k2Ll4p0nTp//sStz0WtbHfZkxisZvLXpCERv8bRwCc6mYGKc6+CyDs50cK6n5akAqRxaa1stFc9MjFcOD49t/+uhQvDIUTe+Onz9Dcw/fpHUbJ71/e637+uns845EAohNWHoqJaHoptuzB51yTOPHthb7TfWu/70mel7Fpdbt7c7Znu70x0yWadfC1NL0lBIqRA4TJbiewpV0F0hXb1YHFwpl4evDvSPHdkxNfxooZYdIV1dEHIK2xIkYUQUZVhjv59fzX7/AGwAAQ6HsZYkzeiGIduHRxtTU1OPe7Lz+NWrMSMjo7VSqdy/3FgZWml3tvSXymNhp101xlHr6+/EcbRsjJkbHNi2sOqx0ppdqY+Ub+PgTaMsx0e5eHoez8vy+Yf8qf8Sr87/B2ozifkjGeYUAAAAAElFTkSuQmCC", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 163}})
|
|
27136
27168
|
)
|
|
27137
27169
|
)
|
|
27138
27170
|
)
|
|
@@ -27143,16 +27175,17 @@ const PhoneInput = (props) => {
|
|
|
27143
27175
|
buttonRef.current.focus();
|
|
27144
27176
|
setOpened(true);
|
|
27145
27177
|
}
|
|
27146
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27178
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 169}}
|
|
27147
27179
|
, React$1.createElement('svg', { width: "12", height: "8", viewBox: "0 0 12 8" , fill: "none",
|
|
27148
|
-
xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27180
|
+
xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 176}}
|
|
27149
27181
|
, React$1.createElement('path', {
|
|
27150
27182
|
d: "M10.9999 1.17C10.8126 0.983753 10.5591 0.879211 10.2949 0.879211C10.0308 0.879211 9.77731 0.983753 9.58995 1.17L5.99995 4.71L2.45995 1.17C2.27259 0.983753 2.01913 0.879211 1.75495 0.879211C1.49076 0.879211 1.23731 0.983753 1.04995 1.17C0.95622 1.26297 0.881826 1.37357 0.831057 1.49543C0.780288 1.61729 0.75415 1.74799 0.75415 1.88C0.75415 2.01202 0.780288 2.14272 0.831057 2.26458C0.881826 2.38644 0.95622 2.49704 1.04995 2.59L5.28995 6.83C5.38291 6.92373 5.49351 6.99813 5.61537 7.04889C5.73723 7.09966 5.86794 7.1258 5.99995 7.1258C6.13196 7.1258 6.26267 7.09966 6.38453 7.04889C6.50638 6.99813 6.61699 6.92373 6.70995 6.83L10.9999 2.59C11.0937 2.49704 11.1681 2.38644 11.2188 2.26458C11.2696 2.14272 11.2957 2.01202 11.2957 1.88C11.2957 1.74799 11.2696 1.61729 11.2188 1.49543C11.1681 1.37357 11.0937 1.26297 10.9999 1.17Z" ,
|
|
27151
|
-
fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27183
|
+
fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 178}})
|
|
27152
27184
|
)
|
|
27153
27185
|
)
|
|
27154
27186
|
)
|
|
27155
27187
|
, React$1.createElement('input', { className: "input-field", name: inputName, value: srVal, onChange: (e) => {
|
|
27188
|
+
if (readonly) return
|
|
27156
27189
|
if (!isNaN(Number(e.target.value))) setSrVal(e.target.value);
|
|
27157
27190
|
}, placeholder: placeholder, onBlur: () => {
|
|
27158
27191
|
if (required) {
|
|
@@ -27165,22 +27198,22 @@ const PhoneInput = (props) => {
|
|
|
27165
27198
|
} else {
|
|
27166
27199
|
setSelStatus(srVal ? 'success' : '');
|
|
27167
27200
|
}
|
|
27168
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27201
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 184}})
|
|
27169
27202
|
, opened &&
|
|
27170
27203
|
React$1.createElement(React$1.Fragment, null
|
|
27171
27204
|
, countryCodes && countryCodes.length > 0 &&
|
|
27172
|
-
React$1.createElement(OptionsList, { className: "dropdown-list", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27173
|
-
, React$1.createElement('div', { className: "search-field", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27205
|
+
React$1.createElement(OptionsList, { className: "dropdown-list", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 202}}
|
|
27206
|
+
, React$1.createElement('div', { className: "search-field", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 203}}
|
|
27174
27207
|
, React$1.createElement('svg', { width: "16", height: "16", viewBox: "0 0 16 16" , fill: "none",
|
|
27175
|
-
xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27176
|
-
, React$1.createElement('g', { clipPath: "url(#clip0_2834_8051)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27208
|
+
xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 204}}
|
|
27209
|
+
, React$1.createElement('g', { clipPath: "url(#clip0_2834_8051)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 206}}
|
|
27177
27210
|
, React$1.createElement('path', {
|
|
27178
27211
|
d: "M14.4733 13.5267L12 11.0733C12.9601 9.87627 13.425 8.35686 13.2992 6.82753C13.1734 5.2982 12.4664 3.87519 11.3237 2.85109C10.1809 1.827 8.6892 1.27967 7.15528 1.32164C5.62136 1.36362 4.16181 1.99171 3.07676 3.07676C1.99171 4.16181 1.36362 5.62136 1.32164 7.15528C1.27967 8.6892 1.827 10.1809 2.85109 11.3237C3.87519 12.4664 5.2982 13.1734 6.82753 13.2992C8.35686 13.425 9.87627 12.9601 11.0733 12L13.5267 14.4533C13.5886 14.5158 13.6624 14.5654 13.7436 14.5993C13.8249 14.6331 13.912 14.6505 14 14.6505C14.088 14.6505 14.1751 14.6331 14.2564 14.5993C14.3376 14.5654 14.4114 14.5158 14.4733 14.4533C14.5935 14.329 14.6607 14.1629 14.6607 13.99C14.6607 13.8171 14.5935 13.651 14.4733 13.5267ZM7.33333 12C6.41035 12 5.5081 11.7263 4.74067 11.2135C3.97324 10.7007 3.3751 9.97191 3.02189 9.11919C2.66868 8.26646 2.57627 7.32815 2.75633 6.42291C2.9364 5.51766 3.38085 4.68614 4.0335 4.0335C4.68614 3.38085 5.51766 2.9364 6.42291 2.75633C7.32815 2.57627 8.26646 2.66868 9.11919 3.02189C9.97191 3.3751 10.7007 3.97324 11.2135 4.74067C11.7263 5.5081 12 6.41035 12 7.33333C12 8.57101 11.5083 9.75799 10.6332 10.6332C9.75799 11.5083 8.57101 12 7.33333 12Z" ,
|
|
27179
|
-
fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27212
|
+
fill: "#070B12", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 207}})
|
|
27180
27213
|
)
|
|
27181
|
-
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27182
|
-
, React$1.createElement('clipPath', { id: "clip0_2834_8051", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27183
|
-
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27214
|
+
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 211}}
|
|
27215
|
+
, React$1.createElement('clipPath', { id: "clip0_2834_8051", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 212}}
|
|
27216
|
+
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 213}})
|
|
27184
27217
|
)
|
|
27185
27218
|
)
|
|
27186
27219
|
)
|
|
@@ -27193,7 +27226,7 @@ const PhoneInput = (props) => {
|
|
|
27193
27226
|
setTimeout(() => {
|
|
27194
27227
|
setOpened(false);
|
|
27195
27228
|
}, 200);
|
|
27196
|
-
}, placeholder: "Search by country" , autoFocus: true, __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27229
|
+
}, placeholder: "Search by country" , autoFocus: true, __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 217}})
|
|
27197
27230
|
)
|
|
27198
27231
|
, countryCodesRec.map((option, index) => (
|
|
27199
27232
|
React$1.createElement(DropdownOption, { key: index, onClick: () => {
|
|
@@ -27211,9 +27244,9 @@ const PhoneInput = (props) => {
|
|
|
27211
27244
|
(document.querySelector('.input-field') ).focus();
|
|
27212
27245
|
|
|
27213
27246
|
}, 200);
|
|
27214
|
-
}, __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27215
|
-
, React$1.createElement('img', { src: option.flag, alt: option.country, __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27216
|
-
, React$1.createElement('span', { className: "paragraph2Regular", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27247
|
+
}, __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 229}}
|
|
27248
|
+
, React$1.createElement('img', { src: option.flag, alt: option.country, __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 245}})
|
|
27249
|
+
, React$1.createElement('span', { className: "paragraph2Regular", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 246}}, "(", option.dial_code, ") " , option.country))
|
|
27217
27250
|
))
|
|
27218
27251
|
)
|
|
27219
27252
|
|
|
@@ -27221,43 +27254,43 @@ const PhoneInput = (props) => {
|
|
|
27221
27254
|
|
|
27222
27255
|
)
|
|
27223
27256
|
, selStatus === 'error' && errMsg &&
|
|
27224
|
-
React$1.createElement('div', { className: "err-msg", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27257
|
+
React$1.createElement('div', { className: "err-msg", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 254}}
|
|
27225
27258
|
, React$1.createElement('svg', { width: "16", height: "16", viewBox: "0 0 16 16" , fill: "none",
|
|
27226
|
-
xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27227
|
-
, React$1.createElement('g', { clipPath: "url(#clip0_299_2778)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27259
|
+
xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 255}}
|
|
27260
|
+
, React$1.createElement('g', { clipPath: "url(#clip0_299_2778)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 257}}
|
|
27228
27261
|
, React$1.createElement('path', {
|
|
27229
27262
|
d: "M8.00006 10.6667C7.86821 10.6667 7.73931 10.7058 7.62968 10.779C7.52005 10.8523 7.4346 10.9564 7.38414 11.0782C7.33368 11.2 7.32048 11.3341 7.3462 11.4634C7.37193 11.5927 7.43542 11.7115 7.52866 11.8048C7.62189 11.898 7.74068 11.9615 7.87 11.9872C7.99932 12.0129 8.13336 11.9997 8.25518 11.9493C8.377 11.8988 8.48112 11.8134 8.55437 11.7037C8.62763 11.5941 8.66673 11.4652 8.66673 11.3334C8.66673 11.1565 8.59649 10.987 8.47146 10.8619C8.34644 10.7369 8.17687 10.6667 8.00006 10.6667ZM15.1134 11.6467L9.74673 2.31335C9.57326 2.00236 9.31992 1.74332 9.01285 1.563C8.70579 1.38267 8.35615 1.2876 8.00006 1.2876C7.64396 1.2876 7.29433 1.38267 6.98726 1.563C6.6802 1.74332 6.42686 2.00236 6.25339 2.31335L0.92006 11.6467C0.74059 11.9494 0.644155 12.294 0.640489 12.6459C0.636824 12.9978 0.726058 13.3444 0.899184 13.6507C1.07231 13.9571 1.3232 14.2123 1.62652 14.3907C1.92984 14.5691 2.27485 14.6643 2.62673 14.6667H13.3734C13.7281 14.6702 14.0773 14.5793 14.3853 14.4033C14.6933 14.2273 14.949 13.9726 15.126 13.6652C15.3031 13.3579 15.3953 13.009 15.3931 12.6542C15.3908 12.2995 15.2943 11.9518 15.1134 11.6467ZM13.9601 12.98C13.9016 13.084 13.8164 13.1704 13.7132 13.2302C13.61 13.29 13.4927 13.321 13.3734 13.32H2.62673C2.50747 13.321 2.39013 13.29 2.28694 13.2302C2.18375 13.1704 2.0985 13.084 2.04006 12.98C1.98155 12.8787 1.95074 12.7637 1.95074 12.6467C1.95074 12.5297 1.98155 12.4147 2.04006 12.3134L7.37339 2.98002C7.42934 2.87082 7.51433 2.77917 7.61902 2.71518C7.72371 2.65119 7.84403 2.61733 7.96673 2.61733C8.08942 2.61733 8.20974 2.65119 8.31443 2.71518C8.41912 2.77917 8.50411 2.87082 8.56006 2.98002L13.9267 12.3134C13.9929 12.4132 14.0309 12.5291 14.0367 12.6488C14.0426 12.7684 14.0161 12.8875 13.9601 12.9934V12.98ZM8.00006 5.33335C7.82325 5.33335 7.65368 5.40359 7.52866 5.52861C7.40363 5.65364 7.33339 5.82321 7.33339 6.00002V8.66669C7.33339 8.8435 7.40363 9.01307 7.52866 9.13809C7.65368 9.26311 7.82325 9.33335 8.00006 9.33335C8.17687 9.33335 8.34644 9.26311 8.47146 9.13809C8.59649 9.01307 8.66673 8.8435 8.66673 8.66669V6.00002C8.66673 5.82321 8.59649 5.65364 8.47146 5.52861C8.34644 5.40359 8.17687 5.33335 8.00006 5.33335Z" ,
|
|
27230
|
-
fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27263
|
+
fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 258}})
|
|
27231
27264
|
)
|
|
27232
|
-
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27233
|
-
, React$1.createElement('clipPath', { id: "clip0_299_2778", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27234
|
-
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27265
|
+
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 262}}
|
|
27266
|
+
, React$1.createElement('clipPath', { id: "clip0_299_2778", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 263}}
|
|
27267
|
+
, React$1.createElement('rect', { width: "16", height: "16", fill: "white", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 264}})
|
|
27235
27268
|
)
|
|
27236
27269
|
)
|
|
27237
27270
|
)
|
|
27238
|
-
, React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27271
|
+
, React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 268}}, errMsg)
|
|
27239
27272
|
)
|
|
27240
27273
|
|
|
27241
27274
|
)
|
|
27242
27275
|
|
|
27243
27276
|
, disabled &&
|
|
27244
|
-
React$1.createElement(DisabledContainer, {__self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27245
|
-
, React$1.createElement('span', { className: "globe-icon", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27246
|
-
, React$1.createElement('svg', { width: "11", height: "12", viewBox: "0 0 11 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27247
|
-
, React$1.createElement('path', { d: "M0 11.4888H11V0.48875H0V11.4888Z" , fill: "url(#pattern0)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27248
|
-
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27249
|
-
, React$1.createElement('pattern', { id: "pattern0", patternContentUnits: "objectBoundingBox", width: "1", height: "1", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27250
|
-
, React$1.createElement('use', { xlinkHref: "#image0_2054_4009", transform: "scale(0.015625)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27277
|
+
React$1.createElement(DisabledContainer, {__self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 274}}
|
|
27278
|
+
, React$1.createElement('span', { className: "globe-icon", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 275}}
|
|
27279
|
+
, React$1.createElement('svg', { width: "11", height: "12", viewBox: "0 0 11 12" , fill: "none", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 276}}
|
|
27280
|
+
, React$1.createElement('path', { d: "M0 11.4888H11V0.48875H0V11.4888Z" , fill: "url(#pattern0)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 277}})
|
|
27281
|
+
, React$1.createElement('defs', {__self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 278}}
|
|
27282
|
+
, React$1.createElement('pattern', { id: "pattern0", patternContentUnits: "objectBoundingBox", width: "1", height: "1", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 279}}
|
|
27283
|
+
, React$1.createElement('use', { xlinkHref: "#image0_2054_4009", transform: "scale(0.015625)", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 280}})
|
|
27251
27284
|
)
|
|
27252
27285
|
, React$1.createElement('image', { id: "image0_2054_4009", width: "64", height: "64",
|
|
27253
|
-
xlinkHref: "data:image/png;base64,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", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 280}})
|
|
27286
|
+
xlinkHref: "data:image/png;base64,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", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 282}})
|
|
27254
27287
|
)
|
|
27255
27288
|
)
|
|
27256
27289
|
)
|
|
27257
|
-
, React$1.createElement('svg', { width: "24", height: "24", viewBox: "0 0 24 24" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27290
|
+
, React$1.createElement('svg', { width: "24", height: "24", viewBox: "0 0 24 24" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 287}}
|
|
27258
27291
|
, React$1.createElement('path', {
|
|
27259
27292
|
d: "M16.9999 9.16994C16.8126 8.98369 16.5591 8.87915 16.2949 8.87915C16.0308 8.87915 15.7773 8.98369 15.5899 9.16994L11.9999 12.7099L8.45995 9.16994C8.27259 8.98369 8.01913 8.87915 7.75495 8.87915C7.49076 8.87915 7.23731 8.98369 7.04995 9.16994C6.95622 9.26291 6.88183 9.37351 6.83106 9.49537C6.78029 9.61723 6.75415 9.74793 6.75415 9.87994C6.75415 10.012 6.78029 10.1427 6.83106 10.2645C6.88183 10.3864 6.95622 10.497 7.04995 10.5899L11.2899 14.8299C11.3829 14.9237 11.4935 14.9981 11.6154 15.0488C11.7372 15.0996 11.8679 15.1257 11.9999 15.1257C12.132 15.1257 12.2627 15.0996 12.3845 15.0488C12.5064 14.9981 12.617 14.9237 12.7099 14.8299L16.9999 10.5899C17.0937 10.497 17.1681 10.3864 17.2188 10.2645C17.2696 10.1427 17.2957 10.012 17.2957 9.87994C17.2957 9.74793 17.2696 9.61723 17.2188 9.49537C17.1681 9.37351 17.0937 9.26291 16.9999 9.16994Z" ,
|
|
27260
|
-
fill: "#E8EEF7", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber:
|
|
27293
|
+
fill: "#E8EEF7", __self: undefined, __source: {fileName: _jsxFileName$5, lineNumber: 288}})
|
|
27261
27294
|
)
|
|
27262
27295
|
)
|
|
27263
27296
|
|
|
@@ -31310,7 +31343,7 @@ const _jsxFileName = "D:\\SSX\\Project\\Component Library\\sscomp\\src\\componen
|
|
|
31310
31343
|
* This component is used to render a number or amount field. The latter is rendered when `currencyFlagPath` prop is supplied.
|
|
31311
31344
|
*/
|
|
31312
31345
|
const NumberField = (props) => {
|
|
31313
|
-
let {label,subtext,errMsg,disabled,required,width,value,currencyFlagPath,onChange,placeholder} = props;
|
|
31346
|
+
let {label,subtext,errMsg,disabled,required,width,value,currencyFlagPath,onChange,placeholder,readonly} = props;
|
|
31314
31347
|
|
|
31315
31348
|
const [borderColor,setBorderColor] = React$1.useState('');
|
|
31316
31349
|
const [inputVal,setInputVal] = React$1.useState(isNaN(Number(value)) ? '' : value);
|
|
@@ -31320,7 +31353,7 @@ const NumberField = (props) => {
|
|
|
31320
31353
|
if (inputVal){
|
|
31321
31354
|
validate();
|
|
31322
31355
|
}
|
|
31323
|
-
}, []);
|
|
31356
|
+
}, [inputVal,value]);
|
|
31324
31357
|
|
|
31325
31358
|
function validate(){
|
|
31326
31359
|
if (inputVal){
|
|
@@ -31342,28 +31375,29 @@ const NumberField = (props) => {
|
|
|
31342
31375
|
};
|
|
31343
31376
|
|
|
31344
31377
|
return (
|
|
31345
|
-
React$1.createElement('div', { style: style, __self: undefined, __source: {fileName: _jsxFileName, lineNumber:
|
|
31378
|
+
React$1.createElement('div', { style: style, __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 43}}
|
|
31346
31379
|
, label &&
|
|
31347
|
-
React$1.createElement(InputLabel, {__self: undefined, __source: {fileName: _jsxFileName, lineNumber:
|
|
31348
|
-
, React$1.createElement('label', { className: "paragraph2Medium", __self: undefined, __source: {fileName: _jsxFileName, lineNumber:
|
|
31349
|
-
, subtext && React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName, lineNumber:
|
|
31380
|
+
React$1.createElement(InputLabel, {__self: undefined, __source: {fileName: _jsxFileName, lineNumber: 45}}
|
|
31381
|
+
, React$1.createElement('label', { className: "paragraph2Medium", __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 46}}, label)
|
|
31382
|
+
, subtext && React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 47}}, subtext)
|
|
31350
31383
|
)
|
|
31351
31384
|
|
|
31352
|
-
, React$1.createElement(InputContainer, { className: `${borderColor} ${disabled ? 'disabled' : ''}`, style: {width:width ? width : '100%',border:disabled ? `1px solid ${theme.colors["neutral-100"]}` : ''}, __self: undefined, __source: {fileName: _jsxFileName, lineNumber:
|
|
31353
|
-
, currencyFlagPath && React$1.createElement('img', { src: currencyFlagPath, alt: "currency flag" , __self: undefined, __source: {fileName: _jsxFileName, lineNumber:
|
|
31385
|
+
, React$1.createElement(InputContainer, { className: `${borderColor} ${disabled ? 'disabled' : ''}`, style: {width:width ? width : '100%',border:disabled ? `1px solid ${theme.colors["neutral-100"]}` : ''}, __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 50}}
|
|
31386
|
+
, currencyFlagPath && React$1.createElement('img', { src: currencyFlagPath, alt: "currency flag" , __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 51}})
|
|
31354
31387
|
, React$1.createElement(InputField, { type: "text", value: inputVal, onBlur: validate, onInvalid: validate, onChange: (e)=>{
|
|
31388
|
+
if (readonly) return
|
|
31355
31389
|
if (isNaN(Number(e.target.value))) return
|
|
31356
31390
|
onChange(e.target.value);
|
|
31357
31391
|
setInputVal(e.target.value);
|
|
31358
|
-
}, placeholder: placeholder, __self: undefined, __source: {fileName: _jsxFileName, lineNumber:
|
|
31392
|
+
}, placeholder: placeholder, __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 52}})
|
|
31359
31393
|
)
|
|
31360
|
-
, !
|
|
31361
|
-
React$1.createElement(ErrorMessage, {__self: undefined, __source: {fileName: _jsxFileName, lineNumber:
|
|
31394
|
+
, !inputVal && required && err &&
|
|
31395
|
+
React$1.createElement(ErrorMessage, {__self: undefined, __source: {fileName: _jsxFileName, lineNumber: 60}}
|
|
31362
31396
|
/*exclamation-triangle*/
|
|
31363
|
-
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName, lineNumber:
|
|
31364
|
-
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName, lineNumber:
|
|
31397
|
+
, React$1.createElement('svg', { width: "16", height: "14", viewBox: "0 0 16 14" , fill: "none", xmlns: "http://www.w3.org/2000/svg", __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 62}}
|
|
31398
|
+
, React$1.createElement('path', { d: "M8.00006 9.66669C7.86821 9.66669 7.73931 9.70578 7.62968 9.77904C7.52005 9.85229 7.4346 9.95641 7.38414 10.0782C7.33368 10.2 7.32048 10.3341 7.3462 10.4634C7.37193 10.5927 7.43542 10.7115 7.52866 10.8048C7.62189 10.898 7.74068 10.9615 7.87 10.9872C7.99932 11.0129 8.13336 10.9997 8.25518 10.9493C8.377 10.8988 8.48112 10.8134 8.55437 10.7037C8.62763 10.5941 8.66673 10.4652 8.66673 10.3334C8.66673 10.1565 8.59649 9.98697 8.47146 9.86195C8.34644 9.73692 8.17687 9.66669 8.00006 9.66669ZM15.1134 10.6467L9.74673 1.31335C9.57326 1.00236 9.31992 0.743323 9.01285 0.562997C8.70579 0.382672 8.35615 0.287598 8.00006 0.287598C7.64396 0.287598 7.29433 0.382672 6.98726 0.562997C6.6802 0.743323 6.42686 1.00236 6.25339 1.31335L0.92006 10.6467C0.74059 10.9494 0.644155 11.294 0.640489 11.6459C0.636824 11.9978 0.726058 12.3444 0.899184 12.6507C1.07231 12.9571 1.3232 13.2123 1.62652 13.3907C1.92984 13.5691 2.27485 13.6643 2.62673 13.6667H13.3734C13.7281 13.6702 14.0773 13.5793 14.3853 13.4033C14.6933 13.2273 14.949 12.9726 15.126 12.6652C15.3031 12.3579 15.3953 12.009 15.3931 11.6542C15.3908 11.2995 15.2943 10.9518 15.1134 10.6467ZM13.9601 11.98C13.9016 12.084 13.8164 12.1704 13.7132 12.2302C13.61 12.29 13.4927 12.321 13.3734 12.32H2.62673C2.50747 12.321 2.39013 12.29 2.28694 12.2302C2.18375 12.1704 2.0985 12.084 2.04006 11.98C1.98155 11.8787 1.95074 11.7637 1.95074 11.6467C1.95074 11.5297 1.98155 11.4147 2.04006 11.3134L7.37339 1.98002C7.42934 1.87082 7.51433 1.77917 7.61902 1.71518C7.72371 1.65119 7.84403 1.61733 7.96673 1.61733C8.08942 1.61733 8.20974 1.65119 8.31443 1.71518C8.41912 1.77917 8.50411 1.87082 8.56006 1.98002L13.9267 11.3134C13.9929 11.4132 14.0309 11.5291 14.0367 11.6488C14.0426 11.7684 14.0161 11.8875 13.9601 11.9934V11.98ZM8.00006 4.33335C7.82325 4.33335 7.65368 4.40359 7.52866 4.52861C7.40363 4.65364 7.33339 4.82321 7.33339 5.00002V7.66669C7.33339 7.8435 7.40363 8.01307 7.52866 8.13809C7.65368 8.26311 7.82325 8.33335 8.00006 8.33335C8.17687 8.33335 8.34644 8.26311 8.47146 8.13809C8.59649 8.01307 8.66673 7.8435 8.66673 7.66669V5.00002C8.66673 4.82321 8.59649 4.65364 8.47146 4.52861C8.34644 4.40359 8.17687 4.33335 8.00006 4.33335Z" , fill: "#F80000", __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 63}})
|
|
31365
31399
|
)
|
|
31366
|
-
, errMsg ? React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName, lineNumber:
|
|
31400
|
+
, errMsg ? React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 65}}, errMsg) : React$1.createElement('span', { className: "paragraph1Regular", __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 65}}, "This field is required" )
|
|
31367
31401
|
)
|
|
31368
31402
|
|
|
31369
31403
|
)
|