plataforma-fundacao-componentes 2.22.15 → 2.22.16
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.css +3 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -15293,6 +15293,9 @@ h5 {
|
|
|
15293
15293
|
padding-right: 8px;
|
|
15294
15294
|
display: flex;
|
|
15295
15295
|
flex-wrap: wrap; }
|
|
15296
|
+
.component-upper-header-table .component-upper-header-table-collapsed {
|
|
15297
|
+
border-top: 1px solid #3fa110;
|
|
15298
|
+
background-color: #eff4eb; }
|
|
15296
15299
|
|
|
15297
15300
|
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
|
|
15298
15301
|
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
|
package/dist/index.js
CHANGED
|
@@ -9912,7 +9912,9 @@ function TableUpperHeader(props) {
|
|
|
9912
9912
|
})), props.collapsedContent ? React__default.createElement(Collapse$1, {
|
|
9913
9913
|
opened: props.opened,
|
|
9914
9914
|
animateOpacity: true
|
|
9915
|
-
},
|
|
9915
|
+
}, React__default.createElement(Row$1, {
|
|
9916
|
+
className: rootClassName$1A + "-collapsed"
|
|
9917
|
+
}, props.collapsedContent)) : undefined);
|
|
9916
9918
|
}
|
|
9917
9919
|
|
|
9918
9920
|
var TableUpperHeader$1 = React.memo(TableUpperHeader);
|