@thecb/components 9.0.7-beta.1 → 9.0.7-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
@@ -455,7 +455,7 @@ interface FormInputProps {
455
455
  themeValues?: object;
456
456
  background?: string;
457
457
  customHeight?: string;
458
- autocompleteValue?: string | null;
458
+ autocompleteValue?: string;
459
459
  removeFromValue?: RegExp;
460
460
  dataQa?: string | null;
461
461
  }
@@ -476,7 +476,7 @@ interface FormSelectProps {
476
476
  disabledValues?: string[];
477
477
  themeValues?: object;
478
478
  hasTitles?: boolean;
479
- autocompleteValue?: string | null;
479
+ autocompleteValue?: string;
480
480
  smoothScroll?: boolean;
481
481
  dataQa?: string | null;
482
482
  }
@@ -638,6 +638,7 @@ declare const XCircleIconSmall: React.FC<Expand<XCircleIconSmallProps> &
638
638
  React.HTMLAttributes<HTMLElement>>;
639
639
 
640
640
  interface BoxProps {
641
+ autocompleteValue?: string;
641
642
  padding?: string;
642
643
  borderSize?: string;
643
644
  borderColor?: string;
@@ -835,6 +836,7 @@ declare const Paragraph: React.FC<Expand<ParagraphProps> &
835
836
  React.HTMLAttributes<HTMLElement>>;
836
837
 
837
838
  interface SearchableSelectProps {
839
+ autocompleteValue?: boolean;
838
840
  items: SearchableSelectOption[];
839
841
  selectedItems: SearchableSelectOption[];
840
842
  allSelected: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "9.0.7-beta.1",
3
+ "version": "9.0.7-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",
@@ -23,7 +23,7 @@ export interface FormInputProps {
23
23
  themeValues?: object;
24
24
  background?: string;
25
25
  customHeight?: string;
26
- autocompleteValue?: string | null;
26
+ autocompleteValue?: string;
27
27
  removeFromValue?: RegExp;
28
28
  dataQa?: string | null;
29
29
  }
@@ -20,7 +20,7 @@ export interface FormSelectProps {
20
20
  disabledValues?: string[];
21
21
  themeValues?: object;
22
22
  hasTitles?: boolean;
23
- autocompleteValue?: string | null;
23
+ autocompleteValue?: string;
24
24
  smoothScroll?: boolean;
25
25
  dataQa?: string | null;
26
26
  }
@@ -2,6 +2,7 @@ import React from "react";
2
2
  import Expand from "../../../util/expand";
3
3
 
4
4
  export interface BoxProps {
5
+ autocompleteValue?: string;
5
6
  padding?: string;
6
7
  borderSize?: string;
7
8
  borderColor?: string;
@@ -7,6 +7,7 @@ import {
7
7
  } from "../../../types/common";
8
8
 
9
9
  export interface SearchableSelectProps {
10
+ autocompleteValue?: boolean;
10
11
  items: SearchableSelectOption[];
11
12
  selectedItems: SearchableSelectOption[];
12
13
  allSelected: boolean;