@ni/nimble-components 21.5.2 → 21.5.4
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 +9 -3
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +4 -4
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/table/components/row/index.d.ts +1 -0
- package/dist/esm/table/components/row/index.js +6 -0
- package/dist/esm/table/components/row/index.js.map +1 -1
- package/dist/esm/table/components/row/template.js +1 -1
- package/dist/esm/table/components/row/template.js.map +1 -1
- package/dist/esm/table-column/anchor/cell-view/template.js +1 -1
- package/dist/esm/table-column/anchor/cell-view/template.js.map +1 -1
- package/package.json +1 -1
|
@@ -16301,7 +16301,7 @@
|
|
|
16301
16301
|
|
|
16302
16302
|
/**
|
|
16303
16303
|
* Do not edit directly
|
|
16304
|
-
* Generated on
|
|
16304
|
+
* Generated on Tue, 20 Feb 2024 17:38:34 GMT
|
|
16305
16305
|
*/
|
|
16306
16306
|
|
|
16307
16307
|
const Information100DarkUi = "#a46eff";
|
|
@@ -63675,7 +63675,7 @@ img.ProseMirror-separator {
|
|
|
63675
63675
|
`)}
|
|
63676
63676
|
|
|
63677
63677
|
<span ${ref('cellContainer')}
|
|
63678
|
-
class="cell-container ${x => (x.
|
|
63678
|
+
class="cell-container ${x => (x.isNestedParent ? 'nested-parent' : '')}"
|
|
63679
63679
|
>
|
|
63680
63680
|
${repeat(x => x.columns, html `
|
|
63681
63681
|
${when(x => !x.columnHidden, html `
|
|
@@ -63756,6 +63756,9 @@ img.ProseMirror-separator {
|
|
|
63756
63756
|
get isTopLevelParentRow() {
|
|
63757
63757
|
return this.isParentRow && this.nestingLevel === 0;
|
|
63758
63758
|
}
|
|
63759
|
+
get isNestedParent() {
|
|
63760
|
+
return this.isParentRow && this.nestingLevel > 0;
|
|
63761
|
+
}
|
|
63759
63762
|
get ariaSelected() {
|
|
63760
63763
|
if (this.selectable) {
|
|
63761
63764
|
return this.selected ? 'true' : 'false';
|
|
@@ -63949,6 +63952,9 @@ img.ProseMirror-separator {
|
|
|
63949
63952
|
__decorate$1([
|
|
63950
63953
|
volatile
|
|
63951
63954
|
], TableRow.prototype, "isTopLevelParentRow", null);
|
|
63955
|
+
__decorate$1([
|
|
63956
|
+
volatile
|
|
63957
|
+
], TableRow.prototype, "isNestedParent", null);
|
|
63952
63958
|
__decorate$1([
|
|
63953
63959
|
volatile
|
|
63954
63960
|
], TableRow.prototype, "ariaSelected", null);
|
|
@@ -67016,7 +67022,7 @@ img.ProseMirror-separator {
|
|
|
67016
67022
|
target="${x => x.columnConfig?.target}"
|
|
67017
67023
|
type="${x => x.columnConfig?.type}"
|
|
67018
67024
|
download="${x => x.columnConfig?.download}"
|
|
67019
|
-
underline-hidden="${x => x.columnConfig?.underlineHidden}"
|
|
67025
|
+
?underline-hidden="${x => x.columnConfig?.underlineHidden}"
|
|
67020
67026
|
appearance="${x => x.columnConfig?.appearance}"
|
|
67021
67027
|
title=${x => (x.hasOverflow ? x.text : null)}
|
|
67022
67028
|
>
|