[ADF-3591] spellcheck support for code (#3827)

* setup spellcheck
This commit is contained in:
Denys Vuika
2018-10-23 15:05:38 +01:00
committed by Eugenio Romano
parent 53d96679ea
commit e39a2b149b
262 changed files with 1561 additions and 1005 deletions

View File

@@ -78,7 +78,7 @@ class MyComponent {
- `getProcessDefinitions():`[`Observable`](http://reactivex.io/documentation/observable.html)`<any>`
Get Process Definitions
- `getProcessVarablesById(processInstanceId: string):`[`Observable`](http://reactivex.io/documentation/observable.html)`<any[]>`
- `getProcessVariablesById(processInstanceId: string):`[`Observable`](http://reactivex.io/documentation/observable.html)`<any[]>`
Get instance variables for a process.
- `processInstanceId` - ID of the target process
- `getTasks():`[`Observable`](http://reactivex.io/documentation/observable.html)`<any>`
@@ -108,7 +108,7 @@ class MyComponent {
- `getStartFormInstance(processId: string):`[`Observable`](http://reactivex.io/documentation/observable.html)`<any>`
Get start form instance for a given processId
- `processId` - Process definition ID
- `getProcessIntance(processId: string):`[`Observable`](http://reactivex.io/documentation/observable.html)`<any>`
- `getProcessInstance(processId: string):`[`Observable`](http://reactivex.io/documentation/observable.html)`<any>`
Gets a process instance.
- `processId` - ID of the process to get
- `getStartFormDefinition(processId: string):`[`Observable`](http://reactivex.io/documentation/observable.html)`<any>`

View File

@@ -11,12 +11,12 @@ Adds HTML to a string to highlight chosen sections.
### Methods
- **highlight**(text: `string`, search: `string`, wrapperClass: `string` = `"highlight"`): `HightlightTransformResult`<br/>
- **highlight**(text: `string`, search: `string`, wrapperClass: `string` = `"highlight"`): `HighlightTransformResult`<br/>
Searches for `search` string(s) within `text` and highlights all occurrences.
- _text:_ `string` - Text to search within
- _search:_ `string` - Text pattern to search for
- _wrapperClass:_ `string` - CSS class used to provide highlighting style
- **Returns** `HightlightTransformResult` - New text along with boolean value to indicate whether anything was highlighted
- **Returns** `HighlightTransformResult` - New text along with boolean value to indicate whether anything was highlighted
## Details
@@ -31,11 +31,11 @@ highlight any of those words individually. The &lt;span> element includes a
`class` attribute which defaults to "highlight" but you can pass any class name
you like using the `wrapperClass` parameter.
The resulting text with HTML highlighting is returned within a [`HightlightTransformResult`](../../lib/core/services/highlight-transform.service.ts)
The resulting text with HTML highlighting is returned within a [`HighlightTransformResult`](../../lib/core/services/highlight-transform.service.ts)
object:
```ts
interface HightlightTransformResult {
interface HighlightTransformResult {
text: string;
changed: boolean;
}

View File

@@ -156,7 +156,7 @@ need your own custom validation:
```html
<adf-login
[fieldsValidation]="customValidation"
#alfrescologin>
#alfrescoLogin>
</adf-login>
```
@@ -165,8 +165,8 @@ need your own custom validation:
```ts
export class MyCustomLogin {
@ViewChild('alfrescologin')
alfrescologin: any;
@ViewChild('alfrescoLogin')
alfrescoLogin: any;
customValidation: any;
@@ -178,8 +178,8 @@ export class MyCustomLogin {
}
ngOnInit() {
this.alfrescologin.addCustomValidationError('username', 'minlength', 'Username must be at least 8 characters.');
this.alfrescologin.addCustomValidationError('username', 'maxlength', 'Username must not be longer than 11 characters.');
this.alfrescoLogin.addCustomValidationError('username', 'minlength', 'Username must be at least 8 characters.');
this.alfrescoLogin.addCustomValidationError('username', 'maxlength', 'Username must not be longer than 11 characters.');
}
}
```
@@ -242,7 +242,7 @@ to present a summary of validation before submitting the form.
```html
<adf-login
(executeSubmit)="validateForm($event)"
#alfrescologin>
#alfrescoLogin>
</adf-login>
```
@@ -256,7 +256,7 @@ export class MyCustomLogin {
// check if the username is in the blacklist
if (values.controls['username'].value === 'invalidUsername') {
this.alfrescologin.addCustomFormError('username', 'the
this.alfrescoLogin.addCustomFormError('username', 'the
username is in blacklist');
event.preventDefault();
}

View File

@@ -18,7 +18,7 @@ Logs the user out when the decorated element is clicked.
| Name | Type | Default value | Description |
| -- | -- | -- | -- |
| redirectUri | `string` | 'login' | Uri to be redirect after the logout |
| enabelRedirect | `boolean` | 'true' | enable/disable redirect after logout |
| enableRedirect | `boolean` | 'true' | enable/disable redirect after logout |
## See also