@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; // If you want to render the component while data is fetching, this can disable the button
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "10.10.1-beta.0",
3
+ "version": "10.10.1",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -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; // If you want to render the component while data is fetching, this can disable the button
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;