hds-web 1.32.3 → 1.32.4

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.32.3",
3
+ "version": "1.32.4",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -62,6 +62,14 @@ const Buttonclasses = {
62
62
  },
63
63
  'disabled': ' bg-neutral-200 text-neutral-400',
64
64
  },
65
+ 'ghostBlue': {
66
+ 'default': {
67
+ 'base': 'db:w-fit tb:w-fit w-full justify-center border-opacity-0 hover:border-opacity-100 border-2 rounded-full text-blue-500',
68
+ 'hover': 'hover:bg-blue-700 hover:text-neutral-0 hover:shadow-md hover:shadow hover:transition-all hover:ease-out hover:duration-300',
69
+ 'focus': 'focus:outline-none',
70
+ },
71
+ 'disabled': ' bg-neutral-200 text-neutral-400',
72
+ },
65
73
  'primaryLink': {
66
74
  'default': {
67
75
  'base': 'db:w-fit tb:w-fit w-full justify-center ',
@@ -42,8 +42,7 @@ const tabCard = (Content) => (
42
42
  animatedHoverStroke={btn.animatedHoverStroke ?? 'group-hover:stroke-neutral-0'}
43
43
  btnTextColorClass={btn.btnTextColorClass}
44
44
  btnTextHoverClass={btn.btnTextHoverClass}
45
- className={'flex ' + ((btn.type === 'ghost') ?
46
- (' border-opacity-0 hover:border-opacity-100 border-2 rounded-full ' + btn.ghostClasses) : '') }
45
+ className={btn.className}
47
46
  // btnTextColorClass={HDSColor('text-neutral-0')}
48
47
  btnbgHoverClass={btn.btnBgColorClass}
49
48
  />