@ni/nimble-components 18.13.5 → 18.13.6
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/all-components-bundle.js +21 -3
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +20 -2
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/table/components/group-row/styles.js +18 -1
- package/dist/esm/table/components/group-row/styles.js.map +1 -1
- package/dist/esm/table/styles.js +2 -1
- package/dist/esm/table/styles.js.map +1 -1
- package/package.json +1 -1
|
@@ -16366,7 +16366,7 @@
|
|
|
16366
16366
|
|
|
16367
16367
|
/**
|
|
16368
16368
|
* Do not edit directly
|
|
16369
|
-
* Generated on
|
|
16369
|
+
* Generated on Thu, 11 May 2023 18:29:12 GMT
|
|
16370
16370
|
*/
|
|
16371
16371
|
const Information100DarkUi = "#a46eff";
|
|
16372
16372
|
const Information100LightUi = "#804ad9";
|
|
@@ -28279,7 +28279,8 @@
|
|
|
28279
28279
|
}
|
|
28280
28280
|
|
|
28281
28281
|
.table-row-container {
|
|
28282
|
-
width:
|
|
28282
|
+
width: fit-content;
|
|
28283
|
+
min-width: 100%;
|
|
28283
28284
|
position: relative;
|
|
28284
28285
|
top: var(--ni-private-table-row-container-top);
|
|
28285
28286
|
background-color: ${tableRowBorderColor};
|
|
@@ -28829,13 +28830,29 @@
|
|
|
28829
28830
|
const tableRowTag = DesignSystem.tagFor(TableRow);
|
|
28830
28831
|
|
|
28831
28832
|
const styles$d = css `
|
|
28832
|
-
${display('
|
|
28833
|
+
${display('grid')}
|
|
28833
28834
|
|
|
28834
28835
|
:host {
|
|
28835
28836
|
align-items: center;
|
|
28836
28837
|
height: calc(${controlHeight} + 2 * ${borderWidth});
|
|
28837
28838
|
border-top: calc(2 * ${borderWidth}) solid ${applicationBackgroundColor};
|
|
28838
28839
|
box-sizing: border-box;
|
|
28840
|
+
grid-template-columns:
|
|
28841
|
+
calc(
|
|
28842
|
+
${controlHeight} *
|
|
28843
|
+
(var(--ni-private-table-group-row-indent-level) + 1)
|
|
28844
|
+
)
|
|
28845
|
+
1fr;
|
|
28846
|
+
}
|
|
28847
|
+
|
|
28848
|
+
:host([selectable]) {
|
|
28849
|
+
grid-template-columns:
|
|
28850
|
+
${controlHeight}
|
|
28851
|
+
calc(
|
|
28852
|
+
${controlHeight} *
|
|
28853
|
+
(var(--ni-private-table-group-row-indent-level) + 1)
|
|
28854
|
+
)
|
|
28855
|
+
1fr;
|
|
28839
28856
|
}
|
|
28840
28857
|
|
|
28841
28858
|
:host([expanded]) .animating,
|
|
@@ -28886,6 +28903,7 @@
|
|
|
28886
28903
|
|
|
28887
28904
|
.group-row-child-count {
|
|
28888
28905
|
padding-left: 2px;
|
|
28906
|
+
padding-right: calc(${standardPadding} / 2);
|
|
28889
28907
|
pointer-events: none;
|
|
28890
28908
|
${userSelectNone}
|
|
28891
28909
|
}
|