next-helios-fe 1.4.41 → 1.4.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-helios-fe",
3
- "version": "1.4.41",
3
+ "version": "1.4.43",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -64,7 +64,7 @@ export const Button: React.FC<ButtonProps> = ({
64
64
 
65
65
  return (
66
66
  <button
67
- className={`relative flex ${position} items-center ${width} px-3 ${height} rounded-md text-left ${variant} ${border} ${isActive} select-none disabled:pointer-events-none active:opacity-70 active:duration-300 active:ease-out disabled:active:opacity-100 ${className}`}
67
+ className={`relative flex ${position} items-center ${width} px-3 ${height} rounded-md text-left ${variant} ${border} ${isActive} select-none disabled:pointer-events-none ${className}`}
68
68
  {...rest}
69
69
  >
70
70
  {loading ? (
@@ -39,7 +39,7 @@ export const Drawer: React.FC<DrawerProps> = ({
39
39
  >
40
40
  <button
41
41
  type="button"
42
- className="group sticky top-36 h-min rounded-l-md text-white bg-primary p-2 hover:bg-primary-dark pointer-events-auto active:opacity-70 active:duration-300 active:ease-out"
42
+ className="group sticky top-36 h-min rounded-l-md text-white bg-primary p-2 hover:bg-primary-dark pointer-events-auto"
43
43
  onClick={() => {
44
44
  setOpen((prev) => !prev);
45
45
  }}
@@ -44,7 +44,7 @@ export const Dropdown: DropdownComponent = ({
44
44
  dismissOnClick={dismissOnClick ?? true}
45
45
  theme={{
46
46
  floating: {
47
- header: "px-4 py-2 text-sm !text-default",
47
+ header: "px-4 py-2 border-default text-sm !text-default",
48
48
  item: {
49
49
  base: `min-w-40 w-full my-0.5 rounded-md text-sm text-left text-default ${
50
50
  childrenList.length > 0 && !header && itemList.length === 0
@@ -482,7 +482,7 @@ export const Table: TableComponentProps = ({
482
482
  <button
483
483
  key={index}
484
484
  type="button"
485
- className={`p-1.5 rounded-full text-white active:opacity-70 active:duration-300 active:ease-out ${variant}`}
485
+ className={`p-1.5 rounded-full text-white ${variant}`}
486
486
  onClick={(e) => {
487
487
  item.onClick && item.onClick(e);
488
488
  }}
@@ -494,7 +494,7 @@ export const Table: TableComponentProps = ({
494
494
  {options?.toolbar?.addData?.show !== false && (
495
495
  <button
496
496
  type="button"
497
- className="p-1.5 rounded-full bg-primary text-white hover:bg-primary-dark active:opacity-70 active:duration-300 active:ease-out"
497
+ className="p-1.5 rounded-full bg-primary text-white hover:bg-primary-dark"
498
498
  onClick={(e) => {
499
499
  options?.toolbar?.addData?.onClick &&
500
500
  options?.toolbar?.addData?.onClick(e);