mn-angular-lib 1.0.115 → 1.0.116

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mn-angular-lib",
3
- "version": "1.0.115",
3
+ "version": "1.0.116",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -537,6 +537,11 @@ type MnInputBaseProps = {
537
537
  label?: string;
538
538
  /** Placeholder text (overrides uiConfig.placeholder when provided) */
539
539
  placeholder?: string;
540
+ /**
541
+ * ARIA label for screen readers (overrides uiConfig.ariaLabel when provided).
542
+ * Use it to give an accessible name to an input rendered without a visible label.
543
+ */
544
+ ariaLabel?: string;
540
545
  /** Input mask (e.g., '(000) 000-0000') */
541
546
  mask?: string;
542
547
  /** Autocomplete attribute */