willba-component-library 0.1.56 → 0.1.57

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": "willba-component-library",
3
- "version": "0.1.56",
3
+ "version": "0.1.57",
4
4
  "description": "A stroybook 6 with TypeScript demo",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",
@@ -38,7 +38,7 @@ export type FilterBarProps = {
38
38
  palette?: Palette
39
39
  currentViewApply?: string
40
40
  onSubmit?: ((val: Filters) => void) | null
41
- fullWidth: boolean
41
+ fullWidth?: boolean
42
42
  }
43
43
 
44
44
  export default function FilterBar({
@@ -91,7 +91,7 @@ export const useFilterBar = ({
91
91
  ? format(calendarRange.from, 'yyyy-MM-dd')
92
92
  : '',
93
93
  endDate: calendarRange?.to ? format(calendarRange.to, 'yyyy-MM-dd') : '',
94
- categories: categories.toString(),
94
+ //categories: categories.toString(),
95
95
  ageCategoryCounts: handleAgeCategoryRules({
96
96
  ageCategoryCounts,
97
97
  ageCategories,