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.
@@ -11,6 +11,6 @@ export type FilterBarProps = {
11
11
  palette?: Palette;
12
12
  currentViewApply?: string;
13
13
  onSubmit?: ((val: Filters) => void) | null;
14
- fullWidth: boolean;
14
+ fullWidth?: boolean;
15
15
  };
16
16
  export default function FilterBar({ language, ageCategories, redirectUrl, palette, currentViewApply, onSubmit, fullWidth, }: FilterBarProps): React.JSX.Element | undefined;
package/lib/index.d.ts CHANGED
@@ -50,7 +50,7 @@ type FilterBarProps = {
50
50
  palette?: Palette;
51
51
  currentViewApply?: string;
52
52
  onSubmit?: ((val: Filters) => void) | null;
53
- fullWidth: boolean;
53
+ fullWidth?: boolean;
54
54
  };
55
55
  declare function FilterBar({ language, ageCategories, redirectUrl, palette, currentViewApply, onSubmit, fullWidth, }: FilterBarProps): React.JSX.Element | undefined;
56
56
 
package/lib/index.esm.js CHANGED
@@ -3970,7 +3970,7 @@ var useFilterBar = function (_a) {
3970
3970
  ? format(calendarRange.from, 'yyyy-MM-dd')
3971
3971
  : '',
3972
3972
  endDate: (calendarRange === null || calendarRange === void 0 ? void 0 : calendarRange.to) ? format(calendarRange.to, 'yyyy-MM-dd') : '',
3973
- categories: categories.toString(),
3973
+ //categories: categories.toString(),
3974
3974
  ageCategoryCounts: handleAgeCategoryRules({
3975
3975
  ageCategoryCounts: ageCategoryCounts,
3976
3976
  ageCategories: ageCategories,