@agility/plenum-ui 1.3.44 → 1.3.45
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/lib/components/Button/Button.d.ts +1 -1
- package/lib/index.esm.js +6 -2
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +6 -2
- package/lib/index.js.map +1 -1
- package/lib/tailwind.css +4 -0
- package/package.json +1 -1
|
@@ -20,7 +20,7 @@ export interface ButtonProps {
|
|
|
20
20
|
/**
|
|
21
21
|
* Optional click handler
|
|
22
22
|
*/
|
|
23
|
-
onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
|
|
23
|
+
onClick?: (event: React.MouseEvent<HTMLButtonElement, MouseEvent> | React.MouseEvent<HTMLAnchorElement, MouseEvent>) => void;
|
|
24
24
|
/**
|
|
25
25
|
* If button should be disabled
|
|
26
26
|
*/
|
package/lib/index.esm.js
CHANGED
|
@@ -7021,7 +7021,7 @@ function Loader(_a) {
|
|
|
7021
7021
|
var Button = function (_a, ref) {
|
|
7022
7022
|
var _b = _a.type, type = _b === void 0 ? "primary" : _b, _c = _a.size, size = _c === void 0 ? "base" : _c, onClick = _a.onClick, label = _a.label, isDisabled = _a.isDisabled, icon = _a.icon, iconObj = _a.iconObj, _d = _a.isLoading, isLoading = _d === void 0 ? false : _d, _e = _a.isSubmit, isSubmit = _e === void 0 ? false : _e, _f = _a.isWidthFull, isWidthFull = _f === void 0 ? false : _f, className = _a.className, title = _a.title, asLink = _a.asLink;
|
|
7023
7023
|
var iconStyles = cn("h-5 w-5", { "text-white": type === "primary" || type === "danger" }, { "text-purple-700": type === "secondary" }, { "text-gray-700": type === "alternative" });
|
|
7024
|
-
return !asLink ? (React__default.createElement("button", { ref: ref, type: isSubmit ? "submit" : "button", title: title, className: cn("inline-flex items-center justify-center space-x-2
|
|
7024
|
+
return !asLink ? (React__default.createElement("button", { ref: ref, type: isSubmit ? "submit" : "button", title: title, className: cn("inline-flex items-center justify-center space-x-2 border transition-all", { "w-full": isWidthFull === true }, { "rounded-[3px] px-4 py-2 text-sm": size === "sm" }, { "rounded px-5 py-2 text-base": size === "base" }, { "rounded px-5 py-2 text-lg": size === "lg" }, {
|
|
7025
7025
|
"cursor-auto opacity-50": isDisabled
|
|
7026
7026
|
}, {
|
|
7027
7027
|
"active: border-purple-600 bg-purple-600 text-white hover:border-purple-700 hover:bg-purple-700 active:border-purple-800 active:bg-purple-800": type === "primary"
|
|
@@ -7040,7 +7040,11 @@ var Button = function (_a, ref) {
|
|
|
7040
7040
|
icon &&
|
|
7041
7041
|
(isLoading ? (React__default.createElement(Loader, { classes: "h-5 w-5 border-2 m-0" })) : (React__default.createElement(DynamicIcons, { icon: icon, className: iconStyles, outline: false }))),
|
|
7042
7042
|
!icon && !iconObj && isLoading && (React__default.createElement(Loader, { classes: "h-5 w-5 border-2 m-0" })),
|
|
7043
|
-
label && React__default.createElement("span", null, label))) : (React__default.createElement("a", { type: isSubmit ? "submit" : "button", title: asLink.title || title, href: asLink.href, target: asLink.target,
|
|
7043
|
+
label && React__default.createElement("span", null, label))) : (React__default.createElement("a", { type: isSubmit ? "submit" : "button", title: asLink.title || title, href: asLink.href, target: asLink.target, onClick: function (e) {
|
|
7044
|
+
if (!isDisabled && onClick) {
|
|
7045
|
+
onClick(e);
|
|
7046
|
+
}
|
|
7047
|
+
}, className: cn("inline-flex items-center justify-center space-x-2 rounded border transition-all", { "w-full": isWidthFull === true }, { "px-4 py-2 text-sm": size === "sm" }, { "px-5 py-2 text-base": size === "base" }, { "px-5 py-2 text-lg": size === "lg" }, {
|
|
7044
7048
|
"cursor-auto opacity-50": isDisabled
|
|
7045
7049
|
}, {
|
|
7046
7050
|
"active: border-purple-600 bg-purple-600 text-white hover:border-purple-700 hover:bg-purple-700 active:border-purple-800 active:bg-purple-800": type === "primary"
|