mn-angular-lib 0.0.96 → 0.0.98

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.
@@ -577,11 +577,15 @@ const mnInputFieldVariants = tv({
577
577
  },
578
578
  fullWidth: {
579
579
  true: 'w-full',
580
- }
580
+ },
581
+ hover: {
582
+ true: 'hover:cursor-pointer hover:bg-base-200',
583
+ },
581
584
  },
582
585
  defaultVariants: {
583
586
  size: 'md',
584
587
  borderRadius: 'md',
588
+ hover: true,
585
589
  }
586
590
  });
587
591
 
@@ -1284,6 +1288,7 @@ class MnInputField {
1284
1288
  borderRadius: this.props.borderRadius,
1285
1289
  shadow: this.props.shadow,
1286
1290
  fullWidth: this.props.fullWidth,
1291
+ hover: this.props.hover,
1287
1292
  });
1288
1293
  }
1289
1294
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: MnInputField, deps: [{ token: i1$2.NgControl, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Component });
@@ -1939,6 +1944,7 @@ const mnDatetimeVariants = tv({
1939
1944
  defaultVariants: {
1940
1945
  size: 'md',
1941
1946
  borderRadius: 'md',
1947
+ hover: true,
1942
1948
  },
1943
1949
  });
1944
1950