pixel-react 1.21.5 → 1.21.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/lib/components/StepsLandingTable/Components/StepInnerTable.js +43 -23
- package/lib/components/StepsLandingTable/Components/StepInnerTable.js.map +1 -1
- package/lib/components/Table/EditComponent.js +6 -6
- package/lib/components/Table/EditComponent.js.map +1 -1
- package/lib/components/Table/NoDataContent.js +1 -1
- package/lib/components/Table/NoDataContent.js.map +1 -1
- package/lib/components/Table/Table.js +78 -153
- package/lib/components/Table/Table.js.map +1 -1
- package/lib/components/Table/Types.d.ts +6 -11
- package/lib/components/Table/components/SortableRow.d.ts +1 -1
- package/lib/components/Table/components/SortableRow.js +69 -60
- package/lib/components/Table/components/SortableRow.js.map +1 -1
- package/lib/components/Table/components/TableHeader.js +15 -20
- package/lib/components/Table/components/TableHeader.js.map +1 -1
- package/lib/components/Table/components/VirtualizedRows.d.ts +1 -1
- package/lib/components/Table/components/VirtualizedRows.js +17 -32
- package/lib/components/Table/components/VirtualizedRows.js.map +1 -1
- package/lib/components/Table/utils/virtualization.d.ts +3 -10
- package/lib/components/Table/utils/virtualization.js +13 -40
- package/lib/components/Table/utils/virtualization.js.map +1 -1
- package/lib/components/TableWithAccordion/TableWithAccordion.js +13 -38
- package/lib/components/TableWithAccordion/TableWithAccordion.js.map +1 -1
- package/lib/components/TableWithAccordion/types.d.ts +2 -2
- package/lib/index.d.ts +4 -6
- package/lib/index.js +8 -8
- package/lib/styles.css +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/TreeNavigateUtils/getNavigateToKey.d.ts +1 -1
- package/lib/utils/getTopVisibleNodeKey/getTopVisibleNodeKey.d.ts +1 -1
- package/lib/utils/getTreeDetails/getTreeDetails.d.ts +1 -1
- package/lib/utils/handleTreeExpandAllCollapseAll/handleTreeExpandAllCollapseAll.d.ts +1 -1
- package/lib/utils/handleTreeNodeExpandCollapse/handleTreeNodeExpandCollapse.d.ts +1 -1
- package/lib/utils/handleTreeNodeSelect/handleTreeNodeSelect.d.ts +1 -1
- package/lib/utils/toggleShowHideEntity/toggleShowHideEntity.d.ts +1 -1
- package/package.json +2 -2
- package/lib/components/Table/utils/TableCell.d.ts +0 -2
- package/lib/components/Table/utils/TableCell.js +0 -27
- package/lib/components/Table/utils/TableCell.js.map +0 -1
package/lib/index.d.ts
CHANGED
|
@@ -1366,7 +1366,6 @@ interface SelectedItemProps$1 {
|
|
|
1366
1366
|
*/
|
|
1367
1367
|
[key: string]: string | number | boolean;
|
|
1368
1368
|
}
|
|
1369
|
-
type TableRef = LegacyRef<HTMLTableSectionElement> | React__default.RefObject<HTMLTableSectionElement> | LegacyRef<HTMLDivElement> | React__default.RefObject<HTMLDivElement> | null;
|
|
1370
1369
|
interface TableProps$2 {
|
|
1371
1370
|
/**
|
|
1372
1371
|
* Data for table
|
|
@@ -1476,7 +1475,7 @@ interface TableProps$2 {
|
|
|
1476
1475
|
/**
|
|
1477
1476
|
* enable editMode by setting state row id
|
|
1478
1477
|
*/
|
|
1479
|
-
editMode?: string |
|
|
1478
|
+
editMode?: string | null;
|
|
1480
1479
|
/**
|
|
1481
1480
|
* The content that to be displayed if editComponent
|
|
1482
1481
|
*/
|
|
@@ -1484,7 +1483,7 @@ interface TableProps$2 {
|
|
|
1484
1483
|
/**
|
|
1485
1484
|
* tableRef to get the scroll position & to pass control of table to parent component
|
|
1486
1485
|
*/
|
|
1487
|
-
tableRef?:
|
|
1486
|
+
tableRef?: LegacyRef<HTMLTableSectionElement> | React__default.RefObject<HTMLTableSectionElement> | null;
|
|
1488
1487
|
/**
|
|
1489
1488
|
* Explicitly handling the checkbox disability for the row.
|
|
1490
1489
|
*/
|
|
@@ -1501,10 +1500,9 @@ interface TableProps$2 {
|
|
|
1501
1500
|
displayCard?: boolean;
|
|
1502
1501
|
selectedNode?: {
|
|
1503
1502
|
key: string;
|
|
1504
|
-
selected: string
|
|
1503
|
+
selected: string;
|
|
1505
1504
|
};
|
|
1506
1505
|
uniqueRowIdForAccordion?: string | number;
|
|
1507
|
-
openAccordionId?: string | number | null;
|
|
1508
1506
|
}
|
|
1509
1507
|
|
|
1510
1508
|
declare const Table: React$1.ForwardRefExoticComponent<TableProps$2 & React$1.RefAttributes<any>>;
|
|
@@ -3829,7 +3827,7 @@ interface ColumnProps$1 {
|
|
|
3829
3827
|
/**
|
|
3830
3828
|
* width of a column
|
|
3831
3829
|
*/
|
|
3832
|
-
width?:
|
|
3830
|
+
width?: number;
|
|
3833
3831
|
/**
|
|
3834
3832
|
* data for the column
|
|
3835
3833
|
*/
|