gbs-add-block 1.2.1 → 1.2.3

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
@@ -1,4 +1,4 @@
1
- # GBS Building Blocks 2.0 (v1.2.1)
1
+ # GBS Building Blocks 2.0 (v1.2.3)
2
2
 
3
3
  Latest and upgraded version of GBS building blocks with headless UI and removed dependencies.
4
4
 
@@ -6,12 +6,9 @@ Latest and upgraded version of GBS building blocks with headless UI and removed
6
6
 
7
7
  For detailed documentation on usage and props, Please visit: [Building Block Documentation v2.0](https://gramprokit.vercel.app)
8
8
 
9
- ## What's New 🎉 (Ver 1.2.1)
9
+ ## What's New 🎉 (Ver 1.2.3)
10
10
 
11
- - Updated Data Grid
12
- - Style Updates
13
11
  - Bug Fix
14
- - New Documentation Site
15
12
 
16
13
  ## Authors
17
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gbs-add-block",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "React Component Library",
5
5
  "type": "module",
6
6
  "files": [
@@ -45,15 +45,17 @@ export const Breadcrumb = ({
45
45
  >
46
46
  {segment.label}
47
47
  </a>
48
- <span className="mx-2 text-gray-400">
49
- <Icon
50
- elements={rightArrow}
51
- dimensions={{ width: 14, height: 14 }}
52
- svgClass={
53
- "stroke-black fill-none dark:stroke-white cursor-pointer"
54
- }
55
- />
56
- </span>
48
+ {!isLast && (
49
+ <span className="mx-2 text-gray-400">
50
+ <Icon
51
+ elements={rightArrow}
52
+ dimensions={{ width: 14, height: 14 }}
53
+ svgClass={
54
+ "stroke-black fill-none dark:stroke-white cursor-pointer"
55
+ }
56
+ />
57
+ </span>
58
+ )}
57
59
  </>
58
60
  </li>
59
61
  );
@@ -4,4 +4,3 @@ export { usePagination } from "./usePagination";
4
4
  export { useSearch } from "./useSearch";
5
5
  export { useFiltering } from "./useFiltering";
6
6
  export { useRowSelection } from "./useRowSelection";
7
- export { usePageStatus } from "./usePageStatus";