mn-angular-lib 0.0.94 → 0.0.96
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/fesm2022/mn-angular-lib.mjs +141 -137
- package/fesm2022/mn-angular-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/mn-angular-lib.d.ts +11 -0
package/package.json
CHANGED
|
@@ -1409,6 +1409,9 @@ declare const mnDatetimeVariants: tailwind_variants.TVReturnType<{
|
|
|
1409
1409
|
fullWidth: {
|
|
1410
1410
|
true: string;
|
|
1411
1411
|
};
|
|
1412
|
+
hover: {
|
|
1413
|
+
true: string;
|
|
1414
|
+
};
|
|
1412
1415
|
}, undefined, "bg-base-100 border-1 border-base-300 placeholder-base-content/50 text-base-content text-sm", {
|
|
1413
1416
|
shadow: {
|
|
1414
1417
|
true: string;
|
|
@@ -1432,6 +1435,9 @@ declare const mnDatetimeVariants: tailwind_variants.TVReturnType<{
|
|
|
1432
1435
|
fullWidth: {
|
|
1433
1436
|
true: string;
|
|
1434
1437
|
};
|
|
1438
|
+
hover: {
|
|
1439
|
+
true: string;
|
|
1440
|
+
};
|
|
1435
1441
|
}, undefined, tailwind_variants.TVReturnType<{
|
|
1436
1442
|
shadow: {
|
|
1437
1443
|
true: string;
|
|
@@ -1455,6 +1461,9 @@ declare const mnDatetimeVariants: tailwind_variants.TVReturnType<{
|
|
|
1455
1461
|
fullWidth: {
|
|
1456
1462
|
true: string;
|
|
1457
1463
|
};
|
|
1464
|
+
hover: {
|
|
1465
|
+
true: string;
|
|
1466
|
+
};
|
|
1458
1467
|
}, undefined, "bg-base-100 border-1 border-base-300 placeholder-base-content/50 text-base-content text-sm", unknown, unknown, undefined>>;
|
|
1459
1468
|
type MnDatetimeVariants = VariantProps<typeof mnDatetimeVariants>;
|
|
1460
1469
|
|
|
@@ -1492,6 +1501,8 @@ interface MnDatetimeProps {
|
|
|
1492
1501
|
shadow?: MnDatetimeVariants['shadow'];
|
|
1493
1502
|
/** Whether the datetime field should take full width of its container */
|
|
1494
1503
|
fullWidth?: MnDatetimeVariants['fullWidth'];
|
|
1504
|
+
/** Whether to apply hover effect (cursor pointer and background change) */
|
|
1505
|
+
hover?: MnDatetimeVariants['hover'];
|
|
1495
1506
|
/** Custom error messages mapped by validator error key */
|
|
1496
1507
|
errorMessages?: MnDatetimeErrorMessagesData;
|
|
1497
1508
|
/** Fallback error message when no specific message is found for an error */
|