@osamash/floor-planner 1.0.2 → 1.0.3
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.
|
@@ -4,8 +4,9 @@ interface SearchFieldInterface {
|
|
|
4
4
|
noSpacing?: boolean;
|
|
5
5
|
onClick?: () => false;
|
|
6
6
|
isStatic?: boolean;
|
|
7
|
+
className?: string;
|
|
7
8
|
hasDropDown?: boolean;
|
|
8
9
|
onSearch: (term: string, event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
9
10
|
}
|
|
10
|
-
declare const SearchInput: ({ term, placeholder, noSpacing, onClick, isStatic, hasDropDown, onSearch, }: SearchFieldInterface) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
declare const SearchInput: ({ term, placeholder, noSpacing, onClick, isStatic, hasDropDown, onSearch, className, }: SearchFieldInterface) => import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
export default SearchInput;
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"files": [
|
|
12
12
|
"dist"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.0.
|
|
14
|
+
"version": "1.0.3",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"scripts": {
|
|
17
17
|
"dev": "vite",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"zustand": "^5.0.7"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@osamash/floor-planner": "^1.0.
|
|
48
|
+
"@osamash/floor-planner": "^1.0.2",
|
|
49
49
|
"area-polygon": "^1.0.1",
|
|
50
50
|
"autoprefixer": "^10.4.21",
|
|
51
51
|
"axios": "^1.11.0",
|