@thecb/components 10.8.0-beta.1 → 10.8.0-beta.2

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": "@thecb/components",
3
- "version": "10.8.0-beta.1",
3
+ "version": "10.8.0-beta.2",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -119,6 +119,7 @@ const FormInput = ({
119
119
  isRequired = false,
120
120
  ...props
121
121
  }) => {
122
+ debugger;
122
123
  const [showPassword, setShowPassword] = useState(false);
123
124
  const [isFocused, setIsFocused] = useState(false);
124
125
  const { isMobile } = useContext(ThemeContext);
@@ -36,6 +36,8 @@ const Search = ({
36
36
  ariaControlsId,
37
37
  themeValues
38
38
  }) => {
39
+ console.log("🚀 ~ field:", field);
40
+ console.log("🚀 ~ fieldActions:", fieldActions);
39
41
  const searchTerm = field.rawValue;
40
42
 
41
43
  const getFilteredDataset = () => {