bianic-ui 2.5.0 → 2.5.1-beta.0
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/dist/cjs/index.js +11 -7
- package/dist/cjs/lib.css +1 -1
- package/dist/esm/index.js +11 -7
- package/dist/esm/lib.css +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -1552,10 +1552,10 @@ var ContextualButton = React.forwardRef(function (_a, ref) {
|
|
|
1552
1552
|
: 'text-primary-white'
|
|
1553
1553
|
: textColorConfig[variant];
|
|
1554
1554
|
var stateColor = stateColorConfig[isSelected ? 'selected' : 'default'];
|
|
1555
|
-
return (React.createElement("button", __assign({ ref: ref, className: "bianic-contextual-button box-border flex flex-row items-center rounded-radius-sm border border-transparent p-[1px] outline-none ".concat(stateColor, " ").concat(textColor) }, props, { disabled: disabled }),
|
|
1555
|
+
return (React.createElement("button", __assign({ ref: ref, className: "bianic-contextual-button box-border flex min-h-[22px] flex-row items-center rounded-radius-sm border border-transparent p-[1px] outline-none ".concat(stateColor, " ").concat(textColor) }, props, { disabled: disabled }),
|
|
1556
1556
|
icon,
|
|
1557
|
-
label && (React.createElement("div", { className: "label flex max-h-[46px] items-center px-[5px] text-[12px] leading-none" },
|
|
1558
|
-
React.createElement("span",
|
|
1557
|
+
label && (React.createElement("div", { className: "label flex max-h-[46px] items-center gap-x-0.5 px-[5px] text-[12px] leading-none" },
|
|
1558
|
+
React.createElement("span", null, label),
|
|
1559
1559
|
actionElement))));
|
|
1560
1560
|
});
|
|
1561
1561
|
|
|
@@ -2240,7 +2240,7 @@ var styleConfig = {
|
|
|
2240
2240
|
iconStyle: '',
|
|
2241
2241
|
},
|
|
2242
2242
|
text: {
|
|
2243
|
-
fieldStyle: '
|
|
2243
|
+
fieldStyle: '',
|
|
2244
2244
|
iconStyle: 'pointer-events-none',
|
|
2245
2245
|
},
|
|
2246
2246
|
number: {
|
|
@@ -2301,9 +2301,13 @@ var TextInput = React.forwardRef(function (_a, ref) {
|
|
|
2301
2301
|
return (React.createElement("div", { className: "bianic-text-input-container bianic-fgc-container group/form flex w-full flex-col gap-y-2 text-bia-black" },
|
|
2302
2302
|
label && (React.createElement(FormLabel, { htmlFor: id, required: required, readOnly: readOnly }, label)),
|
|
2303
2303
|
React.createElement("div", { className: "relative w-full ".concat(disabledClass) },
|
|
2304
|
-
React.createElement("input", __assign({ className: "bianic-text-input bianic-fgc-target w-full rounded read-only:pointer-events-none read-only:border-bia-grey-light-50 hover:rounded-b-none focus:rounded-b-none focus-visible:outline-none disabled:cursor-not-allowed disabled:border-bia-grey-dark-10 disabled:bg-bia-grey-light-80 disabled:text-bia-grey-active ".concat(extendedInputClassName), disabled: disabled, id: id, placeholder: placeholder || label, readOnly: readOnly, required: required, type: typeVariant, value: value, onChange: function (e) { return onChange(e); }, maxLength: maxLength, autoComplete: autoComplete, ref: ref, style: {
|
|
2305
|
-
|
|
2306
|
-
|
|
2304
|
+
React.createElement("input", __assign({ className: "bianic-text-input bianic-fgc-target w-full rounded read-only:pointer-events-none read-only:border-bia-grey-light-50 hover:rounded-b-none focus:rounded-b-none focus-visible:outline-none disabled:cursor-not-allowed disabled:border-bia-grey-dark-10 disabled:bg-bia-grey-light-80 disabled:text-bia-grey-active ".concat(extendedInputClassName), disabled: disabled, id: id, placeholder: placeholder || label, readOnly: readOnly, required: required, type: typeVariant, value: value, onChange: function (e) { return onChange(e); }, maxLength: maxLength, autoComplete: autoComplete, ref: ref, style: {
|
|
2305
|
+
paddingRight: iconElement
|
|
2306
|
+
? "".concat(10 + Number(iconSize), "px")
|
|
2307
|
+
: undefined,
|
|
2308
|
+
} }, props)),
|
|
2309
|
+
iconElement && (React.createElement("div", { className: "absolute inset-y-0 flex items-center pl-3 ".concat(actionElement ? '' : iconStyle, " ").concat(iconPosition, " ").concat(iconSizing) }, iconElement))),
|
|
2310
|
+
(descText || maxLength) && (React.createElement("div", { className: "bianic-text-input-desc flex justify-between gap-1 text-xs ".concat(descColor) },
|
|
2307
2311
|
React.createElement("span", null, descText),
|
|
2308
2312
|
maxLength && (React.createElement("span", null,
|
|
2309
2313
|
remainWords,
|