Skip to content

Commit b32eb85

Browse files
changes
1 parent a7511c4 commit b32eb85

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

packages/forms/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Visit our [documentation site](https://acpaas-ui.digipolis.be/) for full how-to
1515
| `DatepickerModule` | This package allows the user to select a date either by input or by picking one in the calendar flyout. | [Documentation](./src/lib/datepicker/README.md) |
1616
| `MaskModule` | With this module you can make input fields that only accept a specific format. | [Documentation](./src/lib/mask/README.md) |
1717
| `RangeSliderModule` | This module provides a range slider. | [Documentation](./src/lib/range-slider/README.md) |
18+
| `SearchFilterModule` | This package allows the user to use a JIRA-like filter component with remote search capabilities. | [Documentation](./src/lib/search-filter/README.md) |
1819
| `TimepickerModule` | This package allows the user set the time either by choosing a slot in the dropdown or by typing in the autocomplete field. | [Documentation](./src/lib/timepicker/README.md) |
1920
| `UploadModule` | This module provides a couple of upload components and a specific `Uploader` class. | [Documentation](./src/lib/upload/README.md) |
2021
| `WysiwygModule` | This module provides a wysiwyg that can be used on a page or a form. | [Documentation](./src/lib/wysiwyg/README.md) |

packages/forms/examples/forms/forms.module.ts

+4-7
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,9 @@ import { Pages } from './pages/index';
1818

1919
@NgModule({
2020
imports: [
21-
CommonModule,
22-
FormsModule,
23-
ReactiveFormsModule,
24-
RouterModule,
2521
AutoCompleteModule,
2622
CodeSnippetModule,
23+
CommonModule,
2724
DatepickerModule.forChild([
2825
'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrijdag', 'Zaterdag', 'Zondag',
2926
], [
@@ -32,13 +29,13 @@ import { Pages } from './pages/index';
3229
ERRORS_INVALID_DATE: 'Ongeldige datum.',
3330
ERRORS_INVALID_RANGE: 'Deze datum kan niet gekozen worden.',
3431
}),
35-
RangeSliderModule,
36-
CodeSnippetModule,
3732
FormsModule,
38-
AutoCompleteModule,
3933
MaskModule,
34+
RangeSliderModule,
35+
ReactiveFormsModule,
4036
SearchFilterModule,
4137
TimepickerModule,
38+
RouterModule,
4239
UploadModule,
4340
WysiwygModule,
4441
],

0 commit comments

Comments
 (0)