gbs-add-block 0.0.79 → 0.0.80
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 +2 -2
- package/package.json +1 -1
- package/source/components/modal/index.tsx +1 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# GBS Building Blocks 2.0 (v0.0.
|
|
1
|
+
# GBS Building Blocks 2.0 (v0.0.80)
|
|
2
2
|
|
|
3
3
|
Latest and upgraded version of GBS building blocks with headless UI and removed dependencies.
|
|
4
4
|
|
|
@@ -6,7 +6,7 @@ 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://blackmax-designs.gitbook.io/building-block-v2.0)
|
|
8
8
|
|
|
9
|
-
## What's New 🎉 (Ver 0.0.
|
|
9
|
+
## What's New 🎉 (Ver 0.0.80)
|
|
10
10
|
|
|
11
11
|
- Updated for bug fixes.
|
|
12
12
|
- New Component Card & SideBar Added
|
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@ import { ModalProps } from "./types";
|
|
|
13
13
|
|
|
14
14
|
const defaultClasses = {
|
|
15
15
|
modal:
|
|
16
|
-
"fixed z-
|
|
16
|
+
"fixed z-50 overflow-y-auto inset-0 flex items-center justify-center bg-[#2b2426bd]",
|
|
17
17
|
modalContent: "bg-white m-10 md:w-[80vh] rounded-xl relative",
|
|
18
18
|
modalTitle:
|
|
19
19
|
"p-4 text-lg leading-6 font-medium text-gray-900 flex justify-between items-center",
|
|
@@ -137,5 +137,3 @@ export const Modal = memo(
|
|
|
137
137
|
);
|
|
138
138
|
|
|
139
139
|
Modal.displayName = "Modal";
|
|
140
|
-
|
|
141
|
-
export default Modal;
|