najm-kit 2.1.34 → 2.1.35
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 +1 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2137,7 +2137,7 @@ interface TimeInputProps extends BaseProps {
|
|
|
2137
2137
|
showSeconds?: boolean;
|
|
2138
2138
|
disabled?: boolean;
|
|
2139
2139
|
}
|
|
2140
|
-
interface TimeZoneInputProps extends Omit<
|
|
2140
|
+
interface TimeZoneInputProps extends Omit<ComboboxInputProps, "items"> {
|
|
2141
2141
|
items?: SelectItemType[];
|
|
2142
2142
|
}
|
|
2143
2143
|
interface ImageInputProps extends BaseProps {
|
package/dist/index.mjs
CHANGED
|
@@ -9727,13 +9727,15 @@ var TimeZoneInput = ({
|
|
|
9727
9727
|
[items]
|
|
9728
9728
|
);
|
|
9729
9729
|
return /* @__PURE__ */ jsx(
|
|
9730
|
-
|
|
9730
|
+
ComboboxInput,
|
|
9731
9731
|
{
|
|
9732
9732
|
...props,
|
|
9733
9733
|
value,
|
|
9734
9734
|
onChange,
|
|
9735
9735
|
items: localizedItems,
|
|
9736
9736
|
placeholder,
|
|
9737
|
+
searchPlaceholder: "Search time zones...",
|
|
9738
|
+
emptyMessage: "No time zone found",
|
|
9737
9739
|
showIcon: false,
|
|
9738
9740
|
disabled
|
|
9739
9741
|
}
|