@luscii-healthtech/web-ui 0.1.29 → 0.1.30
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/web-ui.cjs.development.js +3 -3
- package/dist/web-ui.cjs.development.js.map +1 -1
- package/dist/web-ui.cjs.production.min.js +1 -1
- package/dist/web-ui.cjs.production.min.js.map +1 -1
- package/dist/web-ui.esm.js +3 -3
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ButtonV2/PrimaryButton.tsx +1 -1
- package/src/components/ButtonV2/SecondaryButton.tsx +1 -0
- package/src/components/ButtonV2/TertiaryButton.tsx +1 -0
|
@@ -358,19 +358,19 @@ var ButtonV2 = function ButtonV2(_ref) {
|
|
|
358
358
|
|
|
359
359
|
var PrimaryButton = function PrimaryButton(props) {
|
|
360
360
|
return /*#__PURE__*/React__default.createElement(ButtonV2, Object.assign({}, props, {
|
|
361
|
-
className: classNames(["text-white", "bg-blue-800", "border-transparent", "hover:bg-blue-900"], props.className)
|
|
361
|
+
className: classNames(["text-white", "bg-blue-800", "border-primary-transparent", "hover:bg-blue-900"], props.className)
|
|
362
362
|
}));
|
|
363
363
|
};
|
|
364
364
|
|
|
365
365
|
var SecondaryButton = function SecondaryButton(props) {
|
|
366
366
|
return /*#__PURE__*/React__default.createElement(ButtonV2, Object.assign({}, props, {
|
|
367
|
-
className: classNames(["text-blue-800", "bg-white", "border-slate-300", "hover:text-blue-900", "hover:border-slate-400"], props.className)
|
|
367
|
+
className: classNames(["text-blue-800", "bg-white", "border-slate-300", "hover:text-blue-900", "hover:border-slate-400", "focus:border-blue-800"], props.className)
|
|
368
368
|
}));
|
|
369
369
|
};
|
|
370
370
|
|
|
371
371
|
var TertiaryButton = function TertiaryButton(props) {
|
|
372
372
|
return /*#__PURE__*/React__default.createElement(ButtonV2, Object.assign({}, props, {
|
|
373
|
-
className: classNames(["text-blue-800", "bg-transparent", "border-transparent", "hover:text-blue-900", "shadow-none"], props.className)
|
|
373
|
+
className: classNames(["text-blue-800", "bg-transparent", "border-transparent", "hover:text-blue-900", "focus:border-blue-800", "shadow-none"], props.className)
|
|
374
374
|
}));
|
|
375
375
|
};
|
|
376
376
|
|