@secondstaxorg/sscomp 1.8.34 → 1.8.35
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 +4 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +4 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/Selector/styles.d.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -22537,7 +22537,7 @@ const ConsolidatedContainer = styled.div`
|
|
|
22537
22537
|
.search-input{
|
|
22538
22538
|
padding: 13px 16px;
|
|
22539
22539
|
background: #ffffff;
|
|
22540
|
-
height: 24px;
|
|
22540
|
+
//height: 24px;
|
|
22541
22541
|
font-size: 16px;
|
|
22542
22542
|
font-weight: 400;
|
|
22543
22543
|
color: ${theme.colors["neutral-900"]};
|
|
@@ -22545,6 +22545,9 @@ const ConsolidatedContainer = styled.div`
|
|
|
22545
22545
|
color: ${theme.colors["neutral-400"]};
|
|
22546
22546
|
}
|
|
22547
22547
|
}
|
|
22548
|
+
.search-input:focus-visible{
|
|
22549
|
+
outline: none;
|
|
22550
|
+
}
|
|
22548
22551
|
|
|
22549
22552
|
.search-btn{
|
|
22550
22553
|
width: fit-content;
|
|
@@ -25595,7 +25598,7 @@ const SrInput = styled.input`
|
|
|
25595
25598
|
}
|
|
25596
25599
|
`;
|
|
25597
25600
|
|
|
25598
|
-
const
|
|
25601
|
+
const SelectorItem = styled.button`
|
|
25599
25602
|
//width: 430px;
|
|
25600
25603
|
border-radius: 8px;
|
|
25601
25604
|
outline: 1px solid ${theme.colors["neutral-100"]};
|
|
@@ -25722,7 +25725,7 @@ const Selector = (props) => {
|
|
|
25722
25725
|
, React$1.createElement(FieldContainer$2, { className: arrangement, style: {width:width ? width : '100%',gridTemplateColumns:`repeat(${numCols ? numCols : itemsList.length},1fr)`}, __self: undefined, __source: {fileName: _jsxFileName$9, lineNumber: 99}}
|
|
25723
25726
|
, React$1.createElement(React$1.Fragment, null
|
|
25724
25727
|
, itemsList.map((item,index) => (
|
|
25725
|
-
React$1.createElement(
|
|
25728
|
+
React$1.createElement(SelectorItem, { type: "button", key: index, className: evaluateSelection(item) ? 'selected' : '', onClick: () => {
|
|
25726
25729
|
if (readonly) return
|
|
25727
25730
|
setOtherVal('');
|
|
25728
25731
|
setTimeout(()=>{
|