@thecb/components 11.5.1-beta.1 → 11.5.1-beta.2

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
@@ -606,6 +606,7 @@ interface ButtonWithActionProps {
606
606
  contentOverride?: boolean;
607
607
  extraStyles?: string;
608
608
  tabIndex?: string;
609
+ loadingColor?: string;
609
610
  }
610
611
 
611
612
  declare const ButtonWithAction: React.FC<Expand<ButtonWithActionProps> &
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "11.5.1-beta.1",
3
+ "version": "11.5.1-beta.2",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -12,6 +12,7 @@ export interface ButtonWithActionProps {
12
12
  contentOverride?: boolean;
13
13
  extraStyles?: string;
14
14
  tabIndex?: string;
15
+ loadingColor?: string;
15
16
  }
16
17
 
17
18
  export const ButtonWithAction: React.FC<Expand<ButtonWithActionProps> &