@bigbinary/neeto-molecules 3.15.21 → 3.15.23

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-molecules",
3
- "version": "3.15.21",
3
+ "version": "3.15.23",
4
4
  "description": "A package of reusable molecular components for neeto products.",
5
5
  "repository": "git@github.com:bigbinary/neeto-molecules.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",
@@ -834,7 +834,9 @@
834
834
  "viewLess": "View less"
835
835
  },
836
836
  "finderModal": {
837
- "advancedSearch": "Advanced search"
837
+ "advancedSearch": "Advanced search",
838
+ "noDataTitle": "No matches found.",
839
+ "noDataDesc": "Try refining your keywords."
838
840
  }
839
841
  }
840
842
  }
@@ -57,6 +57,7 @@ declare const FinderModal: React.FC<{
57
57
  iconComponentMap: IconComponentMap;
58
58
  isFetching: boolean;
59
59
  isOpen: boolean;
60
+ searchTerm: string;
60
61
  setSearchTerm: (searchTerm: string) => void;
61
62
  onClose: () => void;
62
63
  onGoToAdvanced?: () => void;