willba-component-library 0.1.61 → 0.1.63
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/components/FilterBar/FilterBar.d.ts +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.esm.js +6 -7
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +6 -7
- package/lib/index.js.map +1 -1
- package/lib/index.umd.js +6 -7
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/FilterBar/FilterBar.tsx +7 -7
package/lib/index.umd.js
CHANGED
|
@@ -11150,12 +11150,12 @@
|
|
|
11150
11150
|
// Handle close filter section
|
|
11151
11151
|
var filtersRef = useCloseFilterSection({ handleSelectedFilter: handleSelectedFilter }).filtersRef;
|
|
11152
11152
|
// Display component after fully loaded
|
|
11153
|
-
|
|
11154
|
-
|
|
11155
|
-
|
|
11156
|
-
|
|
11157
|
-
|
|
11158
|
-
|
|
11153
|
+
// const [initialRenderComplete, setInitialRenderComplete] =
|
|
11154
|
+
// useState<boolean>(false)
|
|
11155
|
+
// useEffect(() => {
|
|
11156
|
+
// setInitialRenderComplete(true)
|
|
11157
|
+
// }, [])
|
|
11158
|
+
// if (!initialRenderComplete) return null
|
|
11159
11159
|
//----/----
|
|
11160
11160
|
// Parsed data for filter section description
|
|
11161
11161
|
var parsedDates = parseDates({ calendarRange: calendarRange });
|
|
@@ -11166,7 +11166,6 @@
|
|
|
11166
11166
|
guestLabel: t('guests.guestLabel'),
|
|
11167
11167
|
guestsLabel: t('guests.guestsLabel'),
|
|
11168
11168
|
});
|
|
11169
|
-
console.log(parsedGuests);
|
|
11170
11169
|
return (React__default.createElement("div", { className: "will-root ".concat(fullWidth ? 'is-full-width' : ''), style: themePalette },
|
|
11171
11170
|
!currentViewApply && (React__default.createElement("div", { className: "will-filter-bar-tabs", ref: !currentViewApply ? targetFilterBarRef : null },
|
|
11172
11171
|
React__default.createElement(TabButton, { label: t('tabs.events'), onClick: function () {
|