@imperosoft/cris-webui-components 1.1.2-beta.16 → 1.1.2-beta.17
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.mjs
CHANGED
|
@@ -1390,7 +1390,8 @@ var defaults = {
|
|
|
1390
1390
|
display: "flex",
|
|
1391
1391
|
alignItems: "center",
|
|
1392
1392
|
gap: "0.4rem",
|
|
1393
|
-
width: "100%"
|
|
1393
|
+
width: "100%",
|
|
1394
|
+
flex: 1
|
|
1394
1395
|
},
|
|
1395
1396
|
channelNum: {
|
|
1396
1397
|
flexShrink: 0,
|
|
@@ -1441,15 +1442,16 @@ var defaults = {
|
|
|
1441
1442
|
color: colors.text
|
|
1442
1443
|
}
|
|
1443
1444
|
};
|
|
1444
|
-
var
|
|
1445
|
+
var INJECTED_CSS = `
|
|
1445
1446
|
.cris-co-matrix-scroll::-webkit-scrollbar { display: none; }
|
|
1447
|
+
.cris-co-matrix-item > div:first-child > .cris-button { width: 100%; }
|
|
1446
1448
|
`;
|
|
1447
1449
|
var scrollbarStyleInjected = false;
|
|
1448
1450
|
function injectScrollbarStyle() {
|
|
1449
1451
|
if (scrollbarStyleInjected) return;
|
|
1450
1452
|
scrollbarStyleInjected = true;
|
|
1451
1453
|
const style = document.createElement("style");
|
|
1452
|
-
style.textContent =
|
|
1454
|
+
style.textContent = INJECTED_CSS;
|
|
1453
1455
|
document.head.appendChild(style);
|
|
1454
1456
|
}
|
|
1455
1457
|
function DefaultIoIndicator({ on }) {
|