mn-angular-lib 0.0.97 → 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.
package/package.json
CHANGED
|
@@ -284,6 +284,9 @@ declare const mnInputFieldVariants: tailwind_variants.TVReturnType<{
|
|
|
284
284
|
fullWidth: {
|
|
285
285
|
true: string;
|
|
286
286
|
};
|
|
287
|
+
hover: {
|
|
288
|
+
true: string;
|
|
289
|
+
};
|
|
287
290
|
}, undefined, "bg-base-100 border-1 border-base-300 placeholder-base-content/50 text-base-content text-sm", {
|
|
288
291
|
shadow: {
|
|
289
292
|
true: string;
|
|
@@ -307,6 +310,9 @@ declare const mnInputFieldVariants: tailwind_variants.TVReturnType<{
|
|
|
307
310
|
fullWidth: {
|
|
308
311
|
true: string;
|
|
309
312
|
};
|
|
313
|
+
hover: {
|
|
314
|
+
true: string;
|
|
315
|
+
};
|
|
310
316
|
}, undefined, tailwind_variants.TVReturnType<{
|
|
311
317
|
shadow: {
|
|
312
318
|
true: string;
|
|
@@ -330,6 +336,9 @@ declare const mnInputFieldVariants: tailwind_variants.TVReturnType<{
|
|
|
330
336
|
fullWidth: {
|
|
331
337
|
true: string;
|
|
332
338
|
};
|
|
339
|
+
hover: {
|
|
340
|
+
true: string;
|
|
341
|
+
};
|
|
333
342
|
}, undefined, "bg-base-100 border-1 border-base-300 placeholder-base-content/50 text-base-content text-sm", unknown, unknown, undefined>>;
|
|
334
343
|
type MnInputVariants = VariantProps<typeof mnInputFieldVariants>;
|
|
335
344
|
|
|
@@ -383,6 +392,8 @@ interface MnInputBaseProps {
|
|
|
383
392
|
shadow?: MnInputVariants['shadow'];
|
|
384
393
|
/** Whether the input should take full width of its container */
|
|
385
394
|
fullWidth?: MnInputVariants['fullWidth'];
|
|
395
|
+
/** Whether to apply hover effect (cursor pointer and background change) */
|
|
396
|
+
hover?: MnInputVariants['hover'];
|
|
386
397
|
/**
|
|
387
398
|
* Custom error messages mapped by validator error key.
|
|
388
399
|
* Example: { required: 'This field is mandatory', email: 'Invalid email format' }
|