@star-insure/sdk 3.2.5 → 3.2.7
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 +5 -3
- 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 +5 -3
- package/dist/sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/filter/FilterItem.tsx +3 -3
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.7",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -188,7 +188,7 @@ export function FilterItem({ filter }: { filter: FilterOption, path?: string })
|
|
|
188
188
|
<div
|
|
189
189
|
onClick={() => handleClick()}
|
|
190
190
|
className={cn(
|
|
191
|
-
'flex rounded-2xl border hover:border-teal bg-gray-600 px-2 py-1 items-center justify-between shrink-0 gap-2 text-xs text-white hover:bg-teal transition-colors',
|
|
191
|
+
'flex rounded-2xl border hover:cursor-pointer hover:border-teal bg-gray-600 px-2 py-1 items-center justify-between shrink-0 gap-2 text-xs text-white hover:bg-teal transition-colors',
|
|
192
192
|
{
|
|
193
193
|
'!bg-teal border-teal': hasFilters,
|
|
194
194
|
}
|
|
@@ -304,10 +304,10 @@ export function FilterItem({ filter }: { filter: FilterOption, path?: string })
|
|
|
304
304
|
)}
|
|
305
305
|
</div>
|
|
306
306
|
<div className="flex items-center gap-2">
|
|
307
|
-
<Button type="button" className="!min-w-[0px] flex-grow !px-2 text-sm !transition-none" onClick={handleClear}>
|
|
307
|
+
<Button type="button" className="!min-w-[0px] flex-grow !px-2 text-sm !transition-none" onClick={handleClear} small>
|
|
308
308
|
Clear
|
|
309
309
|
</Button>
|
|
310
|
-
<Button type="submit" status="primary" className="!min-w-[0px] flex-grow !px-2 text-sm !transition-none">
|
|
310
|
+
<Button type="submit" status="primary" className="!min-w-[0px] flex-grow !px-2 text-sm !transition-none" small>
|
|
311
311
|
Apply
|
|
312
312
|
</Button>
|
|
313
313
|
</div>
|