Skip to content
Merged

Dev #240

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
819eacc
Merge pull request #200 from brainstormforce/staging
vrundakansara Nov 25, 2024
2decc9b
Merge pull request #204 from brainstormforce/staging
vrundakansara Dec 4, 2024
11940d8
Merge pull request #213 from brainstormforce/staging
vrundakansara Dec 16, 2024
96f8fed
Merge pull request #218 from brainstormforce/staging
vrundakansara Dec 17, 2024
b3fdbd9
Merge pull request #221 from brainstormforce/staging
vrundakansara Dec 18, 2024
bb16886
Merge pull request #226 from brainstormforce/staging
vrundakansara Dec 20, 2024
dec913e
Merge pull request #235 from brainstormforce/staging
jaieds Dec 31, 2024
42f10d7
fix: Badge text overflowing
jaieds Jan 4, 2025
804124f
wip: Add hover effect to the range selection
jaieds Jan 4, 2025
002d08b
fix: Multiple date selection not working
jaieds Jan 4, 2025
0e2ab01
Removed commented code and fixed type
jaieds Jan 4, 2025
46b5f9f
fix: variable type
jaieds Jan 4, 2025
43fd5f9
Updated the TS config to show complete error message
jaieds Jan 4, 2025
48e93dc
fix: Type errors
jaieds Jan 4, 2025
4d6fd10
chore: Lint
jaieds Jan 4, 2025
f16652f
Set required to false
jaieds Jan 4, 2025
3ad12e1
imprv: Range selection behaviour
jaieds Jan 4, 2025
881d828
Added disable prop
jaieds Jan 4, 2025
23a27a5
fix: Hover effect not working properly
jaieds Jan 4, 2025
d91773a
fix: Applying invalid color class names
jaieds Jan 4, 2025
848c238
fix: Hover logic for previous months
jaieds Jan 4, 2025
c3e68f0
chore: Lint
jaieds Jan 4, 2025
10d7e3a
Updated date picker presets
jaieds Jan 6, 2025
3961e0f
Updated the change log
jaieds Jan 6, 2025
38cf3a2
Merge pull request #239 from brainstormforce/uat-bugs/react-day-picker
vrundakansara Jan 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Using Force UI as a dependency in package.json -

```json
"dependencies": {
"@bsf/force-ui": "git+https://github.com/brainstormforce/force-ui#1.3.4"
"@bsf/force-ui": "git+https://github.com/brainstormforce/force-ui#1.3.5"
}
```

Expand All @@ -28,7 +28,7 @@ npm install
Or you can directly run the following command to install the package -

```bash
npm i -S @bsf/force-ui@git+https://github.com/brainstormforce/force-ui.git#1.3.4
npm i -S @bsf/force-ui@git+https://github.com/brainstormforce/force-ui.git#1.3.5
```

<br />
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 1.3.5 - 6th January, 2025
- Improvement: Display a light blue color on hover when selecting a date range.

Version 1.3.4 - 31th December, 2024
- Improvement - Enhanced the UI of the Table and Line chart component for responsive design.
- Improvement - Added option group to the Select component.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bsf/force-ui",
"version": "1.3.4",
"version": "1.3.5",
"description": "Library of components for the BSF project",
"main": "./dist/force-ui.js",
"module": "./dist/force-ui.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/badge/badge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const Badge = forwardRef<Ref, BadgeProps>(
{ icon }
</span>
) : null }
<span className="px-1 truncate">{ label }</span>
<span className="px-1 truncate inline-block">{ label }</span>
{ closable && (
<span
className={ cn( buttonClasses, iconSizeClasses[ size ] ) }
Expand Down
Loading