8000 Merge pull request #524 from dynamic-forms/20.0.x · dynamic-forms/dynamic-forms@9853b47 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9853b47

Browse files
Merge pull request #524 from dynamic-forms/20.0.x
Merge 20.0.x into main
2 parents cb0fbc5 + b37e7da commit 9853b47

File tree

101 files changed

+13502
-14916
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+13502
-14916
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### General
66

7-
* update of peer dependencies: bootstrap (5.3.5)
7+
* update of peer dependencies: bootstrap (5.3.6)
88

99
### Features
1010

apps/demo/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import { ProgressComponent } from './layout/progress/progress.component';
77

88
@Component({
99
selector: 'app-root',
10+
imports: [ContentComponent, FooterComponent, HeaderComponent, NotificationsComponent, ProgressComponent],
1011
templateUrl: './app.component.html',
1112
styleUrl: './app.component.scss',
12-
imports: [ContentComponent, FooterComponent, HeaderComponent, NotificationsComponent, ProgressComponent],
1313
})
1414
export class AppComponent {}

apps/demo/src/app/docs/changelog.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { MarkdownComponent } from '../markdown/markdown.component';
33

44
@Component({
55
selector: 'app-changelog',
6-
templateUrl: './changelog.component.html',
76
imports: [MarkdownComponent],
7+
templateUrl: './changelog.component.html',
88
})
99
export class ChangelogComponent {}

apps/demo/src/app/editor/bootstrap/bootstrap-editor.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { FormEditorComponent } from '../form-editor.component';
66

77
@Component({
88
selector: 'app-bootstrap-editor',
9-
templateUrl: './bootstrap-editor.component.html',
109
imports: [FormEditorComponent, BootstrapFormComponent],
10+
templateUrl: './bootstrap-editor.component.html',
1111
})
1212
export class BootstrapEditorComponent extends FormEditorBase {
1313
constructor(

apps/demo/src/app/editor/form-editor-logs.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import { FormEditorLogLevelPipe } from './form-editor-log-level.pipe';
1010

1111
@Component({
1212
selector: 'app-form-editor-logs',
13+
imports: [DatePipe, MatButtonModule, MatIconModule, MatTableModule, MatPaginatorModule, FormEditorLogDataPipe, FormEditorLogLevelPipe],
1314
templateUrl: './form-editor-logs.component.html',
1415
styleUrl: './form-editor-logs.component.scss',
15-
imports: [DatePipe, MatButtonModule, MatIconModule, MatTableModule, MatPaginatorModule, FormEditorLogDataPipe, FormEditorLogLevelPipe],
1616
})
1717
export class FormEditorLogsComponent implements AfterViewInit {
1818
readonly columns = ['timestamp', 'type', 'level', 'message', 'detailed'];

apps/demo/src/app/editor/form-editor.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ import { FormEditorLogsComponent } from './form-editor-logs.component';
1616

1717
@Component({
1818
selector: 'app-form-editor',
19+
imports: [AsyncPipe, JsonPipe, MatTabsModule, MonacoEditorComponent, FormEditorLogsComponent],
1920
templateUrl: './form-editor.component.html',
2021
styleUrl: './form-editor.component.scss',
21-
imports: [AsyncPipe, JsonPipe, MatTabsModule, MonacoEditorComponent, FormEditorLogsComponent],
2222
})
2323
export class FormEditorComponent {
2424
private _logs: DynamicFormLog[] = [];

apps/demo/src/app/editor/material/material-editor.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { FormEditorComponent } from '../form-editor.component';
66

77
@Component({
88
selector: 'app-material-editor',
9-
templateUrl: './material-editor.component.html',
109
imports: [FormEditorComponent, MaterialFormComponent],
10+
templateUrl: './material-editor.component.html',
1111
})
1212
export class MaterialEditorComponent extends FormEditorBase {
1313
constructor(

apps/demo/src/app/examples/bootstrap/bootstrap-examples.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import { FormExampleComponent } from '../form-example.component';
88

99
@Component({
1010
selector: 'app-bootstrap-examples',
11-
templateUrl: './bootstrap-examples.component.html',
1211
imports: [AsyncPipe, FormExampleComponent, BootstrapFormComponent],
12+
templateUrl: './bootstrap-examples.component.html',
1313
})
1414
export class BootstrapExamplesComponent extends FormExampleBase {
1515
constructor(

apps/demo/src/app/examples/form-example.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { MarkdownComponent } from '../markdown/markdown.component';
66

77
@Component({
88
selector: 'app-form-example',
9-
templateUrl: './form-example.component.html',
109
imports: [JsonPipe, MatTabsModule, MarkdownComponent],
10+
templateUrl: './form-example.component.html',
1111
})
1212
export class FormExampleComponent {
1313
readonly form = contentChild<FormBase>('form');

apps/demo/src/app/examples/material/material-examples.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import { FormExampleComponent } from '../form-example.component';
88

99
@Component({
1010
selector: 'app-material-examples',
11-
templateUrl: './material-examples.component.html',
1211
imports: [AsyncPipe, FormExampleComponent, MaterialFormComponent],
12+
templateUrl: './material-examples.component.html',
1313
})
1414
export class MaterialExamplesComponent extends FormExampleBase {
1515
constructor(

0 commit comments

Comments
 (0)
0