Skip to content

Commit

Permalink
chore: Add additional notes to sortableComponent. (#8295)
Browse files Browse the repository at this point in the history
**Related Issue:** N/A

## Summary

- Adds additional notes for implementing the SortableComponentItem
interface.
  • Loading branch information
driskull committed Nov 29, 2023
1 parent f69eab3 commit a094d8d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/calcite-components/src/utils/sortableComponent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ export interface SortableComponent {
export interface SortableComponentItem {
/**
* When `true`, the item is not draggable.
*
*
* Notes:
*
* This property should use the @Prop decorator and reflect.
* This property should be used to set the `calcite-handle` disabled property.
*/
dragDisabled: boolean;
}
Expand Down

0 comments on commit a094d8d

Please sign in to comment.