@thecb/components 10.10.1-beta.0 → 10.10.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/index.d.ts
CHANGED
|
@@ -609,7 +609,7 @@ declare const Card: React.FC<Expand<CardProps> &
|
|
|
609
609
|
type SortOrder = "asc" | "desc" | null;
|
|
610
610
|
interface SortableTableHeadingProps {
|
|
611
611
|
ariaControlsId: string;
|
|
612
|
-
disabled?: boolean; //
|
|
612
|
+
disabled?: boolean; // Useful if you want to render the component while data is fetching
|
|
613
613
|
displayName: string; // The name displayed in the <th> element
|
|
614
614
|
onSortChange: () => void;
|
|
615
615
|
sortOrder: SortOrder;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import Expand from "../../../util/expand";
|
|
|
4
4
|
export type SortOrder = "asc" | "desc" | null;
|
|
5
5
|
export interface SortableTableHeadingProps {
|
|
6
6
|
ariaControlsId: string;
|
|
7
|
-
disabled?: boolean; //
|
|
7
|
+
disabled?: boolean; // Useful if you want to render the component while data is fetching
|
|
8
8
|
displayName: string; // The name displayed in the <th> element
|
|
9
9
|
onSortChange: () => void;
|
|
10
10
|
sortOrder: SortOrder;
|