next-helios-fe 1.8.106 → 1.8.107
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/package.json
CHANGED
@@ -60,7 +60,7 @@ export const Emoji: React.FC<EmojiProps> = ({
|
|
60
60
|
open={open}
|
61
61
|
theme={theme === "light" ? Theme.LIGHT : Theme.DARK}
|
62
62
|
className="!border-default !bg-secondary-bg"
|
63
|
-
searchPlaceHolder="
|
63
|
+
searchPlaceHolder="Search..."
|
64
64
|
autoFocusSearch={false}
|
65
65
|
onEmojiClick={(emojiObject) => {
|
66
66
|
onChoose && onChoose({ target: { value: emojiObject.emoji } });
|
@@ -383,7 +383,7 @@ export const Table: TableComponentProps = ({
|
|
383
383
|
<input
|
384
384
|
type="search"
|
385
385
|
className="w-full border-x-0 border-b border-t-0 border-default bg-secondary-bg px-6 pb-0.5 pt-0 text-sm font-normal placeholder:translate-x-0 placeholder:text-silent placeholder:duration-300 focus:border-primary-dark focus:outline-none focus:ring-0 focus:placeholder:translate-x-1 disabled:bg-secondary-light disabled:text-disabled [&::-webkit-search-cancel-button]:appearance-none"
|
386
|
-
placeholder="
|
386
|
+
placeholder="Search..."
|
387
387
|
value={
|
388
388
|
filter?.find((filterItem) => filterItem.key === item.key)
|
389
389
|
?.value || ""
|
@@ -638,7 +638,7 @@ export const Table: TableComponentProps = ({
|
|
638
638
|
{options?.toolbar?.search?.show !== false && (
|
639
639
|
<Form.Search
|
640
640
|
options={{ width: "fit" }}
|
641
|
-
placeholder="
|
641
|
+
placeholder="Search..."
|
642
642
|
value={search}
|
643
643
|
onChange={(e) => {
|
644
644
|
setSearch(e.target.value);
|