Is this a new component or an extension of an existing one?
Existing composable table
Describe the feature
- In order to move Cost Management from the legacy table to the composable table, we need the first column to be sticky. In addition, we need the ability to disable the row's select component.
Unfortunately, the sticky column examples use a Th (to add isStickyColumn) instead of Td for the first column.
However, we cannot do that because ThSelectType does not support the same properties as TdSelectType. For example, ThSelectType is missing disabled, rowIndex, etc.
For our scenario,we just need the additional disabled support since we're using a bulk select.
Cost management UI

Is this a new component or an extension of an existing one?
Existing composable table
Describe the feature
Unfortunately, the sticky column examples use a
Th(to addisStickyColumn) instead ofTdfor the first column.However, we cannot do that because
ThSelectTypedoes not support the same properties asTdSelectType. For example,ThSelectTypeis missingdisabled,rowIndex, etc.For our scenario,we just need the additional
disabledsupport since we're using a bulk select.Cost management UI
