@ni/nimble-components 20.1.0 → 20.1.1
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 +5 -1
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +2 -1
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/src/table/components/cell/index.d.ts +1 -0
- package/dist/esm/src/table/testing/table.pageobject.d.ts +3 -0
- package/dist/esm/table/components/cell/index.d.ts +1 -0
- package/dist/esm/table/components/cell/index.js +3 -0
- package/dist/esm/table/components/cell/index.js.map +1 -1
- package/dist/esm/table/components/row/template.js +1 -0
- package/dist/esm/table/components/row/template.js.map +1 -1
- package/dist/esm/table/testing/table.pageobject.d.ts +3 -0
- package/dist/esm/table/testing/table.pageobject.js +23 -0
- package/dist/esm/table/testing/table.pageobject.js.map +1 -1
- package/package.json +1 -1
|
@@ -16288,7 +16288,7 @@
|
|
|
16288
16288
|
|
|
16289
16289
|
/**
|
|
16290
16290
|
* Do not edit directly
|
|
16291
|
-
* Generated on
|
|
16291
|
+
* Generated on Thu, 03 Aug 2023 16:33:03 GMT
|
|
16292
16292
|
*/
|
|
16293
16293
|
|
|
16294
16294
|
const Information100DarkUi = "#a46eff";
|
|
@@ -45121,6 +45121,9 @@
|
|
|
45121
45121
|
__decorate$1([
|
|
45122
45122
|
observable
|
|
45123
45123
|
], TableCell.prototype, "recordId", void 0);
|
|
45124
|
+
__decorate$1([
|
|
45125
|
+
attr({ attribute: 'column-id' })
|
|
45126
|
+
], TableCell.prototype, "columnId", void 0);
|
|
45124
45127
|
__decorate$1([
|
|
45125
45128
|
attr({ attribute: 'has-action-menu', mode: 'boolean' })
|
|
45126
45129
|
], TableCell.prototype, "hasActionMenu", void 0);
|
|
@@ -45170,6 +45173,7 @@
|
|
|
45170
45173
|
:cellState="${x => x.cellState}"
|
|
45171
45174
|
:cellViewTemplate="${x => x.column.columnInternals.cellViewTemplate}"
|
|
45172
45175
|
:column="${x => x.column}"
|
|
45176
|
+
column-id="${x => x.column.columnId}"
|
|
45173
45177
|
:recordId="${(_, c) => c.parent.recordId}"
|
|
45174
45178
|
?has-action-menu="${x => !!x.column.actionMenuSlot}"
|
|
45175
45179
|
action-menu-label="${x => x.column.actionMenuLabel}"
|