@secondstaxorg/sscomp 1.7.26 → 1.7.28
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 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -5
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +2 -2
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -30613,7 +30613,7 @@ const AccordionItem = styled.div`
|
|
|
30613
30613
|
height: auto;
|
|
30614
30614
|
}
|
|
30615
30615
|
|
|
30616
|
-
.accordion-content
|
|
30616
|
+
.accordion-content{
|
|
30617
30617
|
padding:24px;
|
|
30618
30618
|
}
|
|
30619
30619
|
|
|
@@ -30637,7 +30637,7 @@ const Accordion = (props) => {
|
|
|
30637
30637
|
|
|
30638
30638
|
React$1.useEffect(()=>{
|
|
30639
30639
|
setDynAccordions(accordions);
|
|
30640
|
-
},[]);
|
|
30640
|
+
},[accordions]);
|
|
30641
30641
|
|
|
30642
30642
|
function deleteAccordion(accLabel){
|
|
30643
30643
|
setDynAccordions(dynAccordions.filter((acc) => acc.label !== accLabel));
|
|
@@ -30692,9 +30692,7 @@ const Accordion = (props) => {
|
|
|
30692
30692
|
)
|
|
30693
30693
|
)
|
|
30694
30694
|
, React$1.createElement('div', { className: `accordion-content ${expandedAcc === index ? 'expanded' : ''}`, __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 72}}
|
|
30695
|
-
,
|
|
30696
|
-
, accordion.content
|
|
30697
|
-
)
|
|
30695
|
+
, accordion.content
|
|
30698
30696
|
)
|
|
30699
30697
|
|
|
30700
30698
|
)
|