@secondstaxorg/sscomp 1.7.36 → 1.7.38
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 +2 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +2 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/FileUpload/style.d.ts +2 -0
- package/types/components/FileUpload/type.d.ts +6 -0
package/dist/index.js
CHANGED
|
@@ -101,6 +101,7 @@ const ButtonComp = styled.button`
|
|
|
101
101
|
justify-content: center;
|
|
102
102
|
align-items: center;
|
|
103
103
|
gap: 10px;
|
|
104
|
+
text-wrap: nowrap;
|
|
104
105
|
//text-transform: capitalize;
|
|
105
106
|
&:disabled{
|
|
106
107
|
cursor: not-allowed;
|
|
@@ -16612,11 +16613,11 @@ const CountrySelector = (props) => {
|
|
|
16612
16613
|
|
|
16613
16614
|
, React$1.createElement(DropdownField$2, { className: selStatus, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 80}}
|
|
16614
16615
|
, React$1.createElement('button', { ref: buttonRef, type: "button", className: "country-selector", onBlur: ()=>{
|
|
16615
|
-
|
|
16616
|
+
if (!searchable){
|
|
16616
16617
|
setTimeout(()=>{
|
|
16617
|
-
setOpened(false)
|
|
16618
|
-
},200)
|
|
16619
|
-
}
|
|
16618
|
+
setOpened(false);
|
|
16619
|
+
},200);
|
|
16620
|
+
}
|
|
16620
16621
|
}, onMouseUp: ()=>{
|
|
16621
16622
|
if (opened){
|
|
16622
16623
|
setTimeout(()=>{
|
|
@@ -16670,9 +16671,9 @@ const CountrySelector = (props) => {
|
|
|
16670
16671
|
)
|
|
16671
16672
|
)
|
|
16672
16673
|
, React$1.createElement('input', { type: "text", placeholder: "Search", value: qryStr, onChange: (e)=>{filterList(e.target.value);}, className: "country-selector search-input" , autoFocus: true, onFocus: ()=>{setOpened(true);}, onBlur: ()=>{
|
|
16673
|
-
|
|
16674
|
-
setOpened(false)
|
|
16675
|
-
},200)
|
|
16674
|
+
setTimeout(()=>{
|
|
16675
|
+
setOpened(false);
|
|
16676
|
+
},200);
|
|
16676
16677
|
}, __self: undefined, __source: {fileName: _jsxFileName$R, lineNumber: 139}})
|
|
16677
16678
|
)
|
|
16678
16679
|
|