willba-component-library 0.3.17 → 0.3.18

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/README.md CHANGED
@@ -107,7 +107,7 @@ ReactDOM.render(<App />, document.querySelector('#app'))
107
107
 
108
108
  <script src="https://unpkg.com/react@18.3.1/umd/react.production.min.js"></script>
109
109
  <script src="https://unpkg.com/react-dom@18.3.1/umd/react-dom.production.min.js"></script>
110
- <script src="https://cdn.jsdelivr.net/npm/willba-component-library@0.3.17/lib/index.umd.js"></script>
110
+ <script src="https://cdn.jsdelivr.net/npm/willba-component-library@0.3.18/lib/index.umd.js"></script>
111
111
 
112
112
  <script>
113
113
  const renderFilterBar = async () => {
@@ -51,7 +51,7 @@ export type Tab = {
51
51
  label?: string;
52
52
  };
53
53
  export type Locations = {
54
- multiSelect: boolean;
54
+ multiSelect?: boolean;
55
55
  disabled?: boolean;
56
56
  data: Location[];
57
57
  };
package/lib/index.d.ts CHANGED
@@ -109,7 +109,7 @@ type Tab = {
109
109
  label?: string;
110
110
  };
111
111
  type Locations = {
112
- multiSelect: boolean;
112
+ multiSelect?: boolean;
113
113
  disabled?: boolean;
114
114
  data: Location[];
115
115
  };