@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
|
|
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
|
|
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