@thecb/components 8.4.10-beta.2 → 8.4.10-beta.3

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
@@ -380,9 +380,9 @@ declare const Card: React.FC<Expand<CardProps> &
380
380
  React.HTMLAttributes<HTMLElement>>;
381
381
 
382
382
  interface Field {
383
- hasErrors?: boolean;
384
- dirty?: boolean;
385
- rawValue?: string;
383
+ hasErrors: boolean;
384
+ dirty: boolean;
385
+ rawValue: string;
386
386
  }
387
387
 
388
388
  interface ReduxAction<T = string, P = {}> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "8.4.10-beta.2",
3
+ "version": "8.4.10-beta.3",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -1,5 +1,5 @@
1
1
  export default interface Field {
2
- hasErrors?: boolean;
3
- dirty?: boolean;
4
- rawValue?: string;
2
+ hasErrors: boolean;
3
+ dirty: boolean;
4
+ rawValue: string;
5
5
  }