@matbea-ui/matbea-ui 0.2.0-dev.573256 → 0.2.0-dev.600564
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/matbea-ui.cjs.js +26 -8
- package/dist/matbea-ui.cjs.js.map +1 -1
- package/dist/matbea-ui.es.js +26 -8
- package/dist/matbea-ui.es.js.map +1 -1
- package/dist/types/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -115,6 +115,8 @@ type SelectFieldProps = {
|
|
|
115
115
|
defaultValue?: string;
|
|
116
116
|
placeholder?: string;
|
|
117
117
|
label?: string;
|
|
118
|
+
searchInput?: boolean;
|
|
119
|
+
searchPlaceholder?: string;
|
|
118
120
|
error?: string;
|
|
119
121
|
disabled?: boolean;
|
|
120
122
|
icon?: React.ReactNode;
|
|
@@ -237,6 +239,7 @@ interface LangCountrySelectProps {
|
|
|
237
239
|
labelCurrency: string;
|
|
238
240
|
labelCountry: string;
|
|
239
241
|
saveText?: string;
|
|
242
|
+
searchPlaceholder?: string;
|
|
240
243
|
}
|
|
241
244
|
declare const LangCountrySelect: React.FC<LangCountrySelectProps>;
|
|
242
245
|
|