@star-insure/sdk 3.3.0 → 3.3.1
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.3.
|
|
5
|
+
"version": "3.3.1",
|
|
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] max-w-[
|
|
201
|
+
className={`mt-2 flex max-h-[350px] min-w-[200px] max-w-[260px] 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">
|
|
@@ -284,7 +284,7 @@ export function FilterItem({ filter }: { filter: FilterOption, path?: string })
|
|
|
284
284
|
<Select
|
|
285
285
|
isMulti
|
|
286
286
|
options={filter.options}
|
|
287
|
-
className="basic-multi-select text-
|
|
287
|
+
className="basic-multi-select text-xs w-52 !transition-none"
|
|
288
288
|
classNamePrefix="select"
|
|
289
289
|
onChange={handleSelectedOptions}
|
|
290
290
|
components={{
|