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/esm/index.js
CHANGED
|
@@ -1550,10 +1550,10 @@ var ContextualButton = forwardRef(function (_a, ref) {
|
|
|
1550
1550
|
: 'text-primary-white'
|
|
1551
1551
|
: textColorConfig[variant];
|
|
1552
1552
|
var stateColor = stateColorConfig[isSelected ? 'selected' : 'default'];
|
|
1553
|
-
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 }),
|
|
1553
|
+
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 }),
|
|
1554
1554
|
icon,
|
|
1555
|
-
label && (React.createElement("div", { className: "label flex max-h-[46px] items-center px-[5px] text-[12px] leading-none" },
|
|
1556
|
-
React.createElement("span",
|
|
1555
|
+
label && (React.createElement("div", { className: "label flex max-h-[46px] items-center gap-x-0.5 px-[5px] text-[12px] leading-none" },
|
|
1556
|
+
React.createElement("span", null, label),
|
|
1557
1557
|
actionElement))));
|
|
1558
1558
|
});
|
|
1559
1559
|
|
|
@@ -2238,7 +2238,7 @@ var styleConfig = {
|
|
|
2238
2238
|
iconStyle: '',
|
|
2239
2239
|
},
|
|
2240
2240
|
text: {
|
|
2241
|
-
fieldStyle: '
|
|
2241
|
+
fieldStyle: '',
|
|
2242
2242
|
iconStyle: 'pointer-events-none',
|
|
2243
2243
|
},
|
|
2244
2244
|
number: {
|
|
@@ -2299,9 +2299,13 @@ var TextInput = forwardRef(function (_a, ref) {
|
|
|
2299
2299
|
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" },
|
|
2300
2300
|
label && (React.createElement(FormLabel, { htmlFor: id, required: required, readOnly: readOnly }, label)),
|
|
2301
2301
|
React.createElement("div", { className: "relative w-full ".concat(disabledClass) },
|
|
2302
|
-
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: {
|
|
2303
|
-
|
|
2304
|
-
|
|
2302
|
+
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: {
|
|
2303
|
+
paddingRight: iconElement
|
|
2304
|
+
? "".concat(10 + Number(iconSize), "px")
|
|
2305
|
+
: undefined,
|
|
2306
|
+
} }, props)),
|
|
2307
|
+
iconElement && (React.createElement("div", { className: "absolute inset-y-0 flex items-center pl-3 ".concat(actionElement ? '' : iconStyle, " ").concat(iconPosition, " ").concat(iconSizing) }, iconElement))),
|
|
2308
|
+
(descText || maxLength) && (React.createElement("div", { className: "bianic-text-input-desc flex justify-between gap-1 text-xs ".concat(descColor) },
|
|
2305
2309
|
React.createElement("span", null, descText),
|
|
2306
2310
|
maxLength && (React.createElement("span", null,
|
|
2307
2311
|
remainWords,
|