@star-insure/sdk 3.2.12 → 3.2.13
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/dist/sdk.cjs.development.js +2 -2
- package/dist/sdk.cjs.development.js.map +1 -1
- package/dist/sdk.cjs.production.min.js +1 -1
- package/dist/sdk.cjs.production.min.js.map +1 -1
- package/dist/sdk.esm.js +2 -2
- package/dist/sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/filter/FilterItem.tsx +2 -2
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@star-insure/sdk",
|
|
3
3
|
"description": "The SDK for Star Insure client apps with shared helper functions and TypeScript definitions.",
|
|
4
4
|
"author": "alexclark_nz",
|
|
5
|
-
"version": "3.2.
|
|
5
|
+
"version": "3.2.13",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -198,7 +198,7 @@ export function FilterItem({ filter }: { filter: FilterOption, path?: string })
|
|
|
198
198
|
</div>
|
|
199
199
|
}>
|
|
200
200
|
<form
|
|
201
|
-
className={`mt-2 flex max-h-[350px] min-w-[200px] flex-col gap-2 rounded-md border border-gray-300 bg-white p-4 shadow-lg ${ filter.type && filter.type === 'select' ? '' : 'overflow-y-scroll'}`}
|
|
201
|
+
className={`mt-2 flex max-h-[350px] min-w-[200px] max-w-[220px] flex-col gap-2 rounded-md border border-gray-300 bg-white p-4 shadow-lg ${ filter.type && filter.type === 'select' ? '' : 'overflow-y-scroll'}`}
|
|
202
202
|
onSubmit={handleApply}
|
|
203
203
|
>
|
|
204
204
|
<div className="flex flex-col items-start gap-1">
|
|
@@ -213,7 +213,7 @@ export function FilterItem({ filter }: { filter: FilterOption, path?: string })
|
|
|
213
213
|
checked={selected.includes(option.value.toString())}
|
|
214
214
|
onChange={handleInput}
|
|
215
215
|
/>
|
|
216
|
-
<label className="
|
|
216
|
+
<label className="leading-tight" htmlFor={option.label}>
|
|
217
217
|
{option.label}
|
|
218
218
|
</label>
|
|
219
219
|
</div>
|