mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[ACS-10282] screen reader personal files perform actions empty state not announced by screen reader (#11444)
* [ACS-10282] Display and read errors for actions values * [ACS-10282] Added documentation
This commit is contained in:
+1
-1
@@ -140,7 +140,7 @@ A collection of Angular components for generic use.
|
||||
| [Logout directive](core/directives/logout.directive.md) | Logs the user out when the decorated element is clicked. | [Source](../lib/core/src/lib/directives/logout.directive.ts) |
|
||||
| [Node Download directive](core/directives/node-download.directive.md) | Allows folders and/or files to be downloaded, with multiple nodes packed as a '.ZIP' archive. | [Source](../lib/content-services/src/lib/directives/node-download.directive.ts) |
|
||||
| [Upload Directive](core/directives/upload.directive.md) | Uploads content in response to file drag and drop. | [Source](../lib/core/src/lib/directives/upload.directive.ts) |
|
||||
|
||||
| [CardViewPropertyValidator Directive](core/directives/card-view-property-validator.directive.md) | Checks validators defined on property.| [Source](../lib/core/src/lib/card-view/directives/card-view-property-validator.directive.ts) |
|
||||
### Dialogs
|
||||
|
||||
| Name | Description | Source link |
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
---
|
||||
Title: CardViewPropertyValidator directive
|
||||
Added: v8.3.0
|
||||
Status: Active
|
||||
Last reviewed: 2025-12-10
|
||||
---
|
||||
|
||||
# [CardViewPropertyValidator directive](../../../lib/core/src/lib/card-view/directives/card-view-property-validator.directive.ts "Defined in card-view-property-validator.directive.ts")
|
||||
|
||||
Checks validators defined on property.
|
||||
|
||||
## Basic Usage
|
||||
|
||||
```html
|
||||
<input
|
||||
adf-card-view-property-validator
|
||||
[property]="property"
|
||||
(validated)="onValidation($event)"/>
|
||||
```
|
||||
|
||||
## Class members
|
||||
|
||||
### Properties
|
||||
|
||||
| Name | Type | Default value | Description |
|
||||
|----------|---------------------------------------------------------------------------------------------------|---------------|-----------------------------------------------------|
|
||||
| property | [`CardViewBaseItemModel`](../../../lib/core/src/lib/card-view/models/card-view-baseitem.model.ts) | | Property for which validations should be triggered. |
|
||||
|
||||
### Events
|
||||
|
||||
| Name | Type | Description |
|
||||
|-----------|------------------------------------------------------------------------|----------------------------------------------------------------------------------|
|
||||
| validated | [`EventEmitter`](https://angular.io/api/core/EventEmitter)`<string[]>` | Emitted after validation. Emits list of errors or empty array if input is valid. |
|
||||
@@ -12,6 +12,7 @@ backend services have been tested with each released version of ADF.
|
||||
|
||||
## Versions
|
||||
|
||||
- [v8.3.0](#v830)
|
||||
- [v7.0.0-alpha.3](#v700-alpha3)
|
||||
- [v6.8.0](#v680)
|
||||
- [v6.7.0](#v670)
|
||||
@@ -48,6 +49,14 @@ backend services have been tested with each released version of ADF.
|
||||
- [v2.1.0](#v210)
|
||||
- [v2.0.0](#v200)
|
||||
|
||||
## v8.3.0
|
||||
|
||||
<!--7.0.0-alpha.3 start-->
|
||||
|
||||
- [CardViewPropertyValidator Directive](core/directives/card-view-property-validator.directive.md)
|
||||
|
||||
<!--7.0.0-alpha.3 end-->
|
||||
|
||||
## v7.0.0-alpha.3
|
||||
|
||||
<!--7.0.0-alpha.3 start-->
|
||||
|
||||
Reference in New Issue
Block a user