@secondstaxorg/sscomp 1.9.73 → 1.9.75
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.es.js +4 -4
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +39 -38
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +2 -2
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/SearchBar/type.d.ts +4 -0
package/package.json
CHANGED
|
@@ -12,4 +12,8 @@ export interface SearchProps extends React.HTMLAttributes<any> {
|
|
|
12
12
|
* Specify if the button should be consolidated into the search field or should stand alone
|
|
13
13
|
*/
|
|
14
14
|
consolidateBtn?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Add a placeholder for the search field
|
|
17
|
+
*/
|
|
18
|
+
placeholder?: string;
|
|
15
19
|
}
|