willba-component-library 0.1.24 → 0.1.25
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/lib/index.esm.js +3 -2
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +3 -2
- package/lib/index.js.map +1 -1
- package/lib/index.umd.js +3 -2
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/FilterBar/FilterBar.tsx +12 -7
package/package.json
CHANGED
|
@@ -111,13 +111,18 @@ export default function FilterBar({
|
|
|
111
111
|
style={fontWeightBold(selectedFilter === 1)}
|
|
112
112
|
/>
|
|
113
113
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
114
|
+
{selectedPath === '/rooms' && (
|
|
115
|
+
<>
|
|
116
|
+
<Divider />
|
|
117
|
+
|
|
118
|
+
<SelectButton
|
|
119
|
+
label={'Who'}
|
|
120
|
+
description={'Add Guests'}
|
|
121
|
+
onClick={() => handleSelectedFilter(2)}
|
|
122
|
+
style={fontWeightBold(selectedFilter === 2)}
|
|
123
|
+
/>
|
|
124
|
+
</>
|
|
125
|
+
)}
|
|
121
126
|
|
|
122
127
|
<SubmitButton onClick={handleSubmit} />
|
|
123
128
|
</div>
|