mayak-common-library 0.0.676 → 0.0.678
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.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
- package/tailwind.config.js +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -1481,8 +1481,10 @@ interface SearchInputProps {
|
|
|
1481
1481
|
onChange: (value: string) => void;
|
|
1482
1482
|
onChipDelete?: (value: string) => void;
|
|
1483
1483
|
startAdornment?: ReactNode;
|
|
1484
|
+
withoutIcon?: boolean;
|
|
1485
|
+
transparentView?: boolean;
|
|
1484
1486
|
}
|
|
1485
|
-
declare const SearchPlaceInput:
|
|
1487
|
+
declare const SearchPlaceInput: FC<SearchInputProps>;
|
|
1486
1488
|
|
|
1487
1489
|
interface PhoneInputProps {
|
|
1488
1490
|
defaultCountry?: CountryIso2;
|
package/dist/index.d.ts
CHANGED
|
@@ -1481,8 +1481,10 @@ interface SearchInputProps {
|
|
|
1481
1481
|
onChange: (value: string) => void;
|
|
1482
1482
|
onChipDelete?: (value: string) => void;
|
|
1483
1483
|
startAdornment?: ReactNode;
|
|
1484
|
+
withoutIcon?: boolean;
|
|
1485
|
+
transparentView?: boolean;
|
|
1484
1486
|
}
|
|
1485
|
-
declare const SearchPlaceInput:
|
|
1487
|
+
declare const SearchPlaceInput: FC<SearchInputProps>;
|
|
1486
1488
|
|
|
1487
1489
|
interface PhoneInputProps {
|
|
1488
1490
|
defaultCountry?: CountryIso2;
|