ui-library-spj 1.0.4 → 1.0.5

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.
@@ -21,6 +21,7 @@ export function ConfirmButton({
21
21
 
22
22
  return (
23
23
  <button
24
+ type="button"
24
25
  onClick={handleClick}
25
26
  className={`px-4 py-2 rounded-md font-medium text-white
26
27
  ${confirming ? "bg-red-700" : "bg-red-600 hover:bg-red-700"}
package/index.js CHANGED
@@ -5,6 +5,7 @@ export {BasicButton} from './components/buttons/BasicButton';
5
5
  export { ActionButton } from "./components/buttons/ActionButton";
6
6
  export { ConfirmButton } from "./components/buttons/ConfirmButton";
7
7
  export { LinkButton } from "./components/buttons/LinkButton";
8
+ export {IconActionButton} from "./components/buttons/IconActionButton"
8
9
  export { SubmitButton } from "./components/buttons/SubmitButton";
9
10
 
10
11
  // Carousal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ui-library-spj",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {