mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
minor documentation fixes
This commit is contained in:
parent
46e4daeef3
commit
5ea7b19c20
@ -137,6 +137,7 @@ for more information about installing and using the source code.
|
|||||||
| [Node Favorite directive](core/directives/node-favorite.directive.md) | Selectively toggles nodes as favorites. | [Source](../lib/core/directives/node-favorite.directive.ts) |
|
| [Node Favorite directive](core/directives/node-favorite.directive.md) | Selectively toggles nodes as favorites. | [Source](../lib/core/directives/node-favorite.directive.ts) |
|
||||||
| [Node Restore directive](core/directives/node-restore.directive.md) | Restores deleted nodes to their original location. | [Source](../lib/core/directives/node-restore.directive.ts) |
|
| [Node Restore directive](core/directives/node-restore.directive.md) | Restores deleted nodes to their original location. | [Source](../lib/core/directives/node-restore.directive.ts) |
|
||||||
| [Upload Directive](core/directives/upload.directive.md) | Uploads content in response to file drag and drop. | [Source](../lib/core/directives/upload.directive.ts) |
|
| [Upload Directive](core/directives/upload.directive.md) | Uploads content in response to file drag and drop. | [Source](../lib/core/directives/upload.directive.ts) |
|
||||||
|
| [Version Compatibility Directive](core/directives/version-compatibility.directive.md) | Enables/disables components based on ACS version in use. | [Source](../lib/core/directives/version-compatibility.directive.ts) |
|
||||||
|
|
||||||
### Dialogs
|
### Dialogs
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ Stores information from all the custom search and faceted search widgets, compil
|
|||||||
Removes an existing bucket from a field.
|
Removes an existing bucket from a field.
|
||||||
- _field:_ [`FacetField`](../../../lib/content-services/src/lib/search/facet-field.interface.ts) - The target field
|
- _field:_ [`FacetField`](../../../lib/content-services/src/lib/search/facet-field.interface.ts) - The target field
|
||||||
- _bucket:_ [`FacetFieldBucket`](../../../lib/content-services/src/lib/search/facet-field-bucket.interface.ts) - Bucket to remove
|
- _bucket:_ [`FacetFieldBucket`](../../../lib/content-services/src/lib/search/facet-field-bucket.interface.ts) - Bucket to remove
|
||||||
- **setUpConfiguration**()<br/>
|
- **resetToDefaults**()<br/>
|
||||||
|
|
||||||
- **update**()<br/>
|
- **update**()<br/>
|
||||||
Builds the current query and triggers the `updated` event.
|
Builds the current query and triggers the `updated` event.
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
---
|
||||||
|
Title: Version Compatibility Directive
|
||||||
|
Added: v3.9.0
|
||||||
|
Status: Active
|
||||||
|
Last reviewed: 2020-23-06
|
||||||
|
---
|
||||||
|
|
||||||
# [Version Compatibility Directive](../../../lib/core/directives/version-compatibility.directive.ts "Defined in version-compatibility.directive.ts")
|
# [Version Compatibility Directive](../../../lib/core/directives/version-compatibility.directive.ts "Defined in version-compatibility.directive.ts")
|
||||||
|
|
||||||
Enables/disables components based on ACS version in use.
|
Enables/disables components based on ACS version in use.
|
||||||
@ -16,7 +23,7 @@ Enables/disables components based on ACS version in use.
|
|||||||
|
|
||||||
| Name | Type | Default value | Description |
|
| Name | Type | Default value | Description |
|
||||||
| ---- | ---- | ------------- | ----------- |
|
| ---- | ---- | ------------- | ----------- |
|
||||||
| adf-acs-version | `string` | | The minimum version required for a given component to work propertly. |
|
| adf-acs-version | `string` | | Minimum version required for component to work correctly . |
|
||||||
|
|
||||||
## Details
|
## Details
|
||||||
|
|
||||||
@ -27,6 +34,7 @@ The directive takes the version specified in the html and compares it to the ver
|
|||||||
This will allow certain features to be only present under specific versions.
|
This will allow certain features to be only present under specific versions.
|
||||||
|
|
||||||
#### Major version
|
#### Major version
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<button *adf-acs-version="'7'">
|
<button *adf-acs-version="'7'">
|
||||||
My Action
|
My Action
|
||||||
@ -34,6 +42,7 @@ This will allow certain features to be only present under specific versions.
|
|||||||
```
|
```
|
||||||
|
|
||||||
#### Major and minor version
|
#### Major and minor version
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<button *adf-acs-version="'6.2'">
|
<button *adf-acs-version="'6.2'">
|
||||||
My Action
|
My Action
|
||||||
@ -41,6 +50,7 @@ This will allow certain features to be only present under specific versions.
|
|||||||
```
|
```
|
||||||
|
|
||||||
#### Major, minor and patch version
|
#### Major, minor and patch version
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<button *adf-acs-version="'6.0.1'">
|
<button *adf-acs-version="'6.0.1'">
|
||||||
My Action
|
My Action
|
||||||
@ -51,6 +61,4 @@ It can be set to match major, minor and patches of ACS versions. Fox example, if
|
|||||||
|
|
||||||
If the minimum version required is not matched the component will not be initialized and will disappear from the DOM tree.
|
If the minimum version required is not matched the component will not be initialized and will disappear from the DOM tree.
|
||||||
|
|
||||||
```
|
|
||||||
Note, if you don’t place the * in front, the app won’t be able to inject the TemplateRef and ViewContainerRef required for this directive to work.
|
Note, if you don’t place the * in front, the app won’t be able to inject the TemplateRef and ViewContainerRef required for this directive to work.
|
||||||
```
|
|
||||||
|
@ -44,6 +44,7 @@ backend services have been tested with each released version of ADF.
|
|||||||
- [Unclaim task cloud directive](process-services-cloud/directives/unclaim-task-cloud.directive.md)
|
- [Unclaim task cloud directive](process-services-cloud/directives/unclaim-task-cloud.directive.md)
|
||||||
- [Unclaim task directive](process-services/directives/unclaim-task.directive.md)
|
- [Unclaim task directive](process-services/directives/unclaim-task.directive.md)
|
||||||
- [Version comparison component](content-services/components/version-comparison.component.md)
|
- [Version comparison component](content-services/components/version-comparison.component.md)
|
||||||
|
- [Version compatibility directive](core/directives/version-compatibility.directive.md)
|
||||||
|
|
||||||
<!--v390 end-->
|
<!--v390 end-->
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user