Skip to content

Commit fe953e1

Browse files
PR changes (TODO-merge master)
1 parent 08d8b7e commit fe953e1

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

packages/forms/examples/forms/pages/search-filter/search-filter.page.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ export class FormsSearchFilterDemoPageComponent {
3030
3131
export class AppModule {};`;
3232

33-
public searchfilterExampleJS1 = `public stuff: SearchFilterChoice[] = [{
33+
public searchfilterExampleJS1 = `import { SearchFilterChoice } from '@acpaas-ui/ngx-components/forms';
34+
35+
public stuff: SearchFilterChoice[] = [{
3436
label: "First item",
3537
value: "one",
3638
}, {

packages/forms/src/lib/mask/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ With the mask module you can make input fields that only accept a specific forma
55
## Usage
66

77
```typescript
8-
import { MaskModule } from '@acpaas-ui/ngx-components/mask'`;
8+
import { MaskModule } from '@acpaas-ui/ngx-components/forms'`;
99
```
1010

1111
## Documentation

packages/forms/src/lib/range-slider/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Use the range slider as stand alone component or in a form.
55
## Usage
66

77
```typescript
8-
import { RangeSliderModule } from '@acpaas-ui/ngx-components/range-slider'`;
8+
import { RangeSliderModule } from '@acpaas-ui/ngx-components/forms'`;
99
```
1010

1111
## Documentation

packages/forms/src/lib/search-filter/README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# @acpaas-ui/ngx-components/forms
22

3-
The search-filter is a JIRA-like filter component with remote search capabilities.
3+
The searchfilter is a JIRA-like filter component with remote search capabilities.
44

55
## Usage
66

77
```typescript
8-
import { SearchFilterModule } from '@acpaas-ui/ngx-components/search-filter'`;
8+
import { SearchFilterModule } from '@acpaas-ui/ngx-components/forms'`;
99
```
1010

1111
## Documentation
@@ -18,16 +18,16 @@ Visit our [documentation site](https://acpaas-ui.digipolis.be/) for full how-to
1818
| ----------- | ------ | -------------------------- |
1919
| `@Input() id: string;` | - | Field id. |
2020
| `@Input() name: string;` | - | Field name. |
21-
| `@Input() flyoutSize: enum;` | `FlyoutSize.Small` | Passed along to `auiFlyout`. |
22-
| `@Input() flyoutAlign: string;` | `'left'` | Passed along to `auiFlyout`. |
21+
| `@Input() flyoutSize: enum;` | `FlyoutSize.Small` | Passed along to [`auiFlyout`](https://github.com/digipolisantwerp/acpaas-ui_angular/tree/master/packages/flyout/src/lib/flyout). |
22+
| `@Input() flyoutAlign: string;` | `'left'` | Passed along to [`auiFlyout`](https://github.com/digipolisantwerp/acpaas-ui_angular/tree/master/packages/flyout/src/lib/flyout). |
2323
| `@Input() label: string;` | `'Filter'` | Field label. |
2424
| `@Input() labelDeselect: string;` | `'Alles deselecteren'` | Clear button text. |
2525
| `@Input() labelResults: string;` | `'Resultaten'` | Result list header text. |
2626
| `@Input() labelNoResults: string;` | `'Geen resultaten gevonden.'` | Text shown when no results are found. |
2727
| `@Input() choices: SearchFilterChoice[];` | - | Available choices. |
2828
| `@Input() remote: boolean;` | `false` | Enable remote searching. |
2929
| `@Input() placeholder: string;` | `'Zoeken'` | Search field placeholder text. |
30-
| `@Input() inputDelay: string;` | `'150'` | Delay the search callback on the input field. |
30+
| `@Input() inputDelay: number;` | `150` | Delay the search callback on the input field. |
3131
| `@Input() showAllByDefault: boolean;` | `false` | Show all items on init, will trigger a search when `remote` is `true`. |
3232
| `@Output() search: Event<string>;` | - | Callback triggered when `remote` is true. |
3333

@@ -48,6 +48,8 @@ export class AppModule {};
4848
#### Basic
4949

5050
```typescript
51+
import { SearchFilterChoice } from '@acpaas-ui/ngx-components/forms';
52+
5153
public stuff: SearchFilterChoice[] = [{
5254
label: "First item",
5355
value: "one",

packages/forms/src/lib/timepicker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The timepicker package provides an easy way to pick a time by providing two fiel
55
## Usage
66

77
```typescript
8-
import { TimepickerModule } from '@acpaas-ui/ngx-components/timepicker'`;
8+
import { TimepickerModule } from '@acpaas-ui/ngx-components/forms'`;
99
```
1010

1111
## Documentation

packages/forms/src/lib/wysiwyg/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A component to add a wysiwyg to a page or a form, build upon [ckeditor](https://
55
## Usage
66

77
```typescript
8-
import { WysiwygModule } from '@acpaas-ui/ngx-components/wysiwyg'`;
8+
import { WysiwygModule } from '@acpaas-ui/ngx-components/forms'`;
99
```
1010

1111
## Documentation

0 commit comments

Comments
 (0)