@imperosoft/cris-webui-components 1.1.2-beta.16 → 1.1.2-beta.18
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.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1427,7 +1427,8 @@ var defaults = {
|
|
|
1427
1427
|
display: "flex",
|
|
1428
1428
|
alignItems: "center",
|
|
1429
1429
|
gap: "0.4rem",
|
|
1430
|
-
width: "100%"
|
|
1430
|
+
width: "100%",
|
|
1431
|
+
flex: 1
|
|
1431
1432
|
},
|
|
1432
1433
|
channelNum: {
|
|
1433
1434
|
flexShrink: 0,
|
|
@@ -1478,15 +1479,16 @@ var defaults = {
|
|
|
1478
1479
|
color: colors.text
|
|
1479
1480
|
}
|
|
1480
1481
|
};
|
|
1481
|
-
var
|
|
1482
|
+
var INJECTED_CSS = `
|
|
1482
1483
|
.cris-co-matrix-scroll::-webkit-scrollbar { display: none; }
|
|
1484
|
+
.cris-co-matrix-item > div:first-child > .cris-button { width: 100%; height: 100%; }
|
|
1483
1485
|
`;
|
|
1484
1486
|
var scrollbarStyleInjected = false;
|
|
1485
1487
|
function injectScrollbarStyle() {
|
|
1486
1488
|
if (scrollbarStyleInjected) return;
|
|
1487
1489
|
scrollbarStyleInjected = true;
|
|
1488
1490
|
const style = document.createElement("style");
|
|
1489
|
-
style.textContent =
|
|
1491
|
+
style.textContent = INJECTED_CSS;
|
|
1490
1492
|
document.head.appendChild(style);
|
|
1491
1493
|
}
|
|
1492
1494
|
function DefaultIoIndicator({ on }) {
|