hds-web 1.32.2 → 1.32.3

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.2",
3
+ "version": "1.32.3",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -38,10 +38,12 @@ const tabCard = (Content) => (
38
38
  state='default'
39
39
  size='md'
40
40
  rightAnimatedArrow={true}
41
- rightAnimatedArrowColor='#3970FD'
42
- animatedHoverStroke='group-hover:stroke-neutral-0'
41
+ rightAnimatedArrowColor={btn.rightAnimatedArrowColor ?? '#3970FD'}
42
+ animatedHoverStroke={btn.animatedHoverStroke ?? 'group-hover:stroke-neutral-0'}
43
+ btnTextColorClass={btn.btnTextColorClass}
44
+ btnTextHoverClass={btn.btnTextHoverClass}
43
45
  className={'flex ' + ((btn.type === 'ghost') ?
44
- ' border-opacity-0 hover:border-opacity-100 border-2 border-purple-800 rounded-full ' : '') }
46
+ (' border-opacity-0 hover:border-opacity-100 border-2 rounded-full ' + btn.ghostClasses) : '') }
45
47
  // btnTextColorClass={HDSColor('text-neutral-0')}
46
48
  btnbgHoverClass={btn.btnBgColorClass}
47
49
  />