@verisoft/ui-govcz 20.0.0 → 20.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +60 -0
- package/assets/i18n/cs.json +2 -0
- package/assets/i18n/en.json +2 -0
- package/jest.config.ts +21 -0
- package/ng-package.json +28 -0
- package/package.json +9 -19
- package/project.json +49 -0
- package/src/config.d.ts +10 -0
- package/src/index.ts +1 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.html +25 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.scss +0 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +21 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.ts +28 -0
- package/src/lib/components/breadcrumb/index.ts +1 -0
- package/src/lib/components/button/button.component.html +28 -0
- package/src/lib/components/button/button.component.scss +21 -0
- package/src/lib/components/button/button.component.ts +77 -0
- package/src/lib/components/button/index.ts +1 -0
- package/src/lib/components/calendar/calendar.component.html +28 -0
- package/src/lib/components/calendar/calendar.component.scss +0 -0
- package/src/lib/components/calendar/calendar.component.ts +77 -0
- package/src/lib/components/calendar/index.ts +1 -0
- package/src/lib/components/checkbox/checkbox.component.html +23 -0
- package/src/lib/components/checkbox/checkbox.component.scss +0 -0
- package/src/lib/components/checkbox/checkbox.component.ts +61 -0
- package/src/lib/components/checkbox/index.ts +1 -0
- package/src/lib/components/confirm-dialog/confirm-dialog.component.html +50 -0
- package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +4 -0
- package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +79 -0
- package/src/lib/components/confirm-dialog/index.ts +1 -0
- package/src/lib/components/dropdown/dropdown-item.component.html +8 -0
- package/src/lib/components/dropdown/dropdown-item.component.ts +18 -0
- package/src/lib/components/dropdown/dropdown.component.html +91 -0
- package/src/lib/components/dropdown/dropdown.component.scss +108 -0
- package/src/lib/components/dropdown/dropdown.component.spec.ts +21 -0
- package/src/lib/components/dropdown/dropdown.component.ts +296 -0
- package/src/lib/components/dropdown/dropdown.model.ts +6 -0
- package/src/lib/components/dropdown/index.ts +1 -0
- package/src/lib/components/dropdown-button/dropdown-button.component.html +31 -0
- package/src/lib/components/dropdown-button/dropdown-button.component.ts +34 -0
- package/src/lib/components/dropdown-button/index.ts +1 -0
- package/src/lib/components/errors/error.component.html +11 -0
- package/src/lib/components/errors/error.component.scss +0 -0
- package/src/lib/components/errors/error.component.spec.ts +19 -0
- package/src/lib/components/errors/error.component.ts +29 -0
- package/src/lib/components/errors/index.ts +1 -0
- package/src/lib/components/feature-list/directives/feature-list-column.directive.ts +32 -0
- package/src/lib/components/feature-list/directives/feature-list-filter-field.directive.ts +8 -0
- package/src/lib/components/feature-list/feature-list-filter.pipe.ts +20 -0
- package/src/lib/components/feature-list/feature-list-page.component.ts +30 -0
- package/src/lib/components/feature-list/feature-list-page.model.ts +42 -0
- package/src/lib/components/feature-list/feature-list.component.html +67 -0
- package/src/lib/components/feature-list/feature-list.component.scss +10 -0
- package/src/lib/components/feature-list/feature-list.component.ts +360 -0
- package/src/lib/components/feature-list/index.ts +5 -0
- package/src/lib/components/filter/directives/filter-field.directive.ts +35 -0
- package/src/lib/components/filter/filter.component.html +78 -0
- package/src/lib/components/filter/filter.component.scss +32 -0
- package/src/lib/components/filter/filter.component.spec.ts +21 -0
- package/src/lib/components/filter/filter.component.stories.ts +23 -0
- package/src/lib/components/filter/filter.component.ts +286 -0
- package/src/lib/components/filter/filter.model.ts +18 -0
- package/src/lib/components/filter/index.ts +2 -0
- package/src/lib/components/form-field/form-field.component.html +14 -0
- package/src/lib/components/form-field/form-field.component.scss +0 -0
- package/src/lib/components/form-field/form-field.component.spec.ts +21 -0
- package/src/lib/components/form-field/form-field.component.ts +76 -0
- package/src/lib/components/form-field/index.ts +1 -0
- package/src/lib/components/header/header.component.html +122 -0
- package/src/lib/components/header/header.component.scss +0 -0
- package/src/lib/components/header/header.component.ts +90 -0
- package/src/lib/components/header/index.ts +1 -0
- package/src/lib/components/icon/icon.component.html +11 -0
- package/src/lib/components/icon/icon.component.scss +20 -0
- package/src/lib/components/icon/icon.component.ts +110 -0
- package/src/lib/components/icon/index.ts +2 -0
- package/src/lib/components/index.ts +37 -0
- package/src/lib/components/input-group/index.ts +1 -0
- package/src/lib/components/input-group/input-group.component.html +41 -0
- package/src/lib/components/input-group/input-group.component.scss +0 -0
- package/src/lib/components/input-group/input-group.component.ts +75 -0
- package/src/lib/components/loader/index.ts +1 -0
- package/src/lib/components/loader/loader.component.html +7 -0
- package/src/lib/components/loader/loader.component.scss +0 -0
- package/src/lib/components/loader/loader.component.spec.ts +21 -0
- package/src/lib/components/loader/loader.component.ts +33 -0
- package/src/lib/components/multiselect/index.ts +1 -0
- package/src/lib/components/multiselect/multiselect.component.html +21 -0
- package/src/lib/components/multiselect/multiselect.component.scss +0 -0
- package/src/lib/components/multiselect/multiselect.component.spec.ts +21 -0
- package/src/lib/components/multiselect/multiselect.component.ts +117 -0
- package/src/lib/components/number-input/index.ts +1 -0
- package/src/lib/components/number-input/number-input.component.html +48 -0
- package/src/lib/components/number-input/number-input.component.scss +0 -0
- package/src/lib/components/number-input/number-input.component.ts +80 -0
- package/src/lib/components/page-header/index.ts +1 -0
- package/src/lib/components/page-header/page-header.component.html +3 -0
- package/src/lib/components/page-header/page-header.component.scss +11 -0
- package/src/lib/components/page-header/page-header.component.spec.ts +21 -0
- package/src/lib/components/page-header/page-header.component.ts +27 -0
- package/src/lib/components/password/index.ts +1 -0
- package/src/lib/components/password/password.component.html +31 -0
- package/src/lib/components/password/password.component.scss +0 -0
- package/src/lib/components/password/password.component.spec.ts +21 -0
- package/src/lib/components/password/password.component.ts +83 -0
- package/src/lib/components/radiobutton/index.ts +1 -0
- package/src/lib/components/radiobutton/radiobutton.component.html +23 -0
- package/src/lib/components/radiobutton/radiobutton.component.scss +0 -0
- package/src/lib/components/radiobutton/radiobutton.component.ts +61 -0
- package/src/lib/components/search/index.ts +1 -0
- package/src/lib/components/search/search.component.html +23 -0
- package/src/lib/components/search/search.component.scss +0 -0
- package/src/lib/components/search/search.component.ts +45 -0
- package/src/lib/components/section/index.ts +1 -0
- package/src/lib/components/section/section.component.html +26 -0
- package/src/lib/components/section/section.component.scss +0 -0
- package/src/lib/components/section/section.component.ts +55 -0
- package/src/lib/components/side-menu/index.ts +2 -0
- package/src/lib/components/side-menu/side-menu.component.html +22 -0
- package/src/lib/components/side-menu/side-menu.component.scss +17 -0
- package/src/lib/components/side-menu/side-menu.component.ts +42 -0
- package/src/lib/components/side-menu/side-menu.module.ts +56 -0
- package/src/lib/components/snackbar/index.ts +2 -0
- package/src/lib/components/snackbar/services/snackbar.service.ts +73 -0
- package/src/lib/components/snackbar/snackbar.component.html +14 -0
- package/src/lib/components/snackbar/snackbar.component.scss +0 -0
- package/src/lib/components/snackbar/snackbar.component.spec.ts +21 -0
- package/src/lib/components/snackbar/snackbar.component.ts +44 -0
- package/src/lib/components/snackbar/snackbar.model.ts +10 -0
- package/src/lib/components/stepper/index.ts +1 -0
- package/src/lib/components/stepper/stepper.component.html +35 -0
- package/src/lib/components/stepper/stepper.component.scss +9 -0
- package/src/lib/components/stepper/stepper.component.ts +60 -0
- package/src/lib/components/switch/index.ts +1 -0
- package/src/lib/components/switch/switch.component.html +16 -0
- package/src/lib/components/switch/switch.component.scss +0 -0
- package/src/lib/components/switch/switch.component.ts +39 -0
- package/src/lib/components/tab-view/index.ts +2 -0
- package/src/lib/components/tab-view/tab-view-item.component.ts +23 -0
- package/src/lib/components/tab-view/tab-view.component.html +51 -0
- package/src/lib/components/tab-view/tab-view.component.scss +43 -0
- package/src/lib/components/tab-view/tab-view.component.ts +64 -0
- package/src/lib/components/tab-view/tab-view.module.ts +25 -0
- package/src/lib/components/table/index.ts +1 -0
- package/src/lib/components/table/table-pagination-info.component.html +9 -0
- package/src/lib/components/table/table-pagination-info.component.ts +22 -0
- package/src/lib/components/table/table.component.html +199 -0
- package/src/lib/components/table/table.component.scss +192 -0
- package/src/lib/components/table/table.component.ts +390 -0
- package/src/lib/components/table/table.model.ts +17 -0
- package/src/lib/components/table/table.models.ts +12 -0
- package/src/lib/components/tag/index.ts +3 -0
- package/src/lib/components/tag/tag.component.html +12 -0
- package/src/lib/components/tag/tag.component.scss +4 -0
- package/src/lib/components/tag/tag.component.ts +44 -0
- package/src/lib/components/tag/tag.model.ts +7 -0
- package/src/lib/components/textarea/index.ts +1 -0
- package/src/lib/components/textarea/textarea.component.html +50 -0
- package/src/lib/components/textarea/textarea.component.scss +0 -0
- package/src/lib/components/textarea/textarea.component.ts +77 -0
- package/src/lib/components/textfield/index.ts +1 -0
- package/src/lib/components/textfield/textfield.component.html +34 -0
- package/src/lib/components/textfield/textfield.component.scss +0 -0
- package/src/lib/components/textfield/textfield.component.ts +112 -0
- package/src/lib/components/tooltip/index.ts +1 -0
- package/src/lib/components/tooltip/tooltip.component.html +9 -0
- package/src/lib/components/tooltip/tooltip.component.ts +19 -0
- package/src/lib/icons.ts +36 -0
- package/src/lib/index.ts +5 -0
- package/src/lib/init.service.ts +11 -0
- package/src/lib/interceptors/http-error-message.interceptor.ts +45 -0
- package/src/lib/pages/bad-request-page/bad-request-page.component.html +5 -0
- package/src/lib/pages/bad-request-page/bad-request-page.component.scss +0 -0
- package/src/lib/pages/bad-request-page/bad-request-page.component.ts +14 -0
- package/src/lib/pages/error-page/error-page.component.html +5 -0
- package/src/lib/pages/error-page/error-page.component.scss +0 -0
- package/src/lib/pages/error-page/error-page.component.ts +31 -0
- package/src/lib/pages/error-page/error-page.constants.ts +19 -0
- package/src/lib/pages/index.ts +3 -0
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.html +5 -0
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.scss +0 -0
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.ts +15 -0
- package/src/lib/pages/not-authenticated/index.ts +1 -0
- package/src/lib/pages/not-authenticated/not-authenticated.component.html +5 -0
- package/src/lib/pages/not-authenticated/not-authenticated.component.ts +13 -0
- package/src/lib/pages/not-authorized/index.ts +1 -0
- package/src/lib/pages/not-authorized/not-authorized.component.html +5 -0
- package/src/lib/pages/not-authorized/not-authorized.component.ts +17 -0
- package/src/lib/pages/not-found/index.ts +1 -0
- package/src/lib/pages/not-found/not-found.component.html +5 -0
- package/src/lib/pages/not-found/not-found.component.ts +17 -0
- package/src/lib/pages/not-found-page/not-found-page.component.html +6 -0
- package/src/lib/pages/not-found-page/not-found-page.component.scss +0 -0
- package/src/lib/pages/not-found-page/not-found-page.component.ts +15 -0
- package/src/lib/pipes/color/color.pipe.ts +24 -0
- package/src/lib/pipes/index.ts +3 -0
- package/src/lib/pipes/multiselect/multiselect-options.pipe.ts +61 -0
- package/src/lib/pipes/size/size.pipe.ts +24 -0
- package/src/sass/foundations/_colors.scss +4 -0
- package/src/sass/foundations/index.scss +1 -0
- package/src/sass/integrations/_bootstrap.scss +4 -0
- package/src/sass/integrations/index.scss +1 -0
- package/src/sass/main.scss +12 -0
- package/src/sass/overrides/_gov.scss +4 -0
- package/src/sass/overrides/index.scss +1 -0
- package/src/sass/tokens/_theme-dark.scss +18 -0
- package/src/sass/tokens/_theme-light.scss +9 -0
- package/src/sass/tokens/index.scss +3 -0
- package/src/sass/utils/_table_filter.scss +4 -0
- package/src/sass/utils/index.scss +2 -0
- package/{styles → src}/sass/vendors/_bootstrap.scss +1 -0
- package/src/test-setup.ts +8 -0
- package/tsconfig.json +30 -0
- package/tsconfig.lib.json +17 -0
- package/tsconfig.lib.prod.json +9 -0
- package/tsconfig.spec.json +16 -0
- package/fesm2022/verisoft-ui-govcz.mjs +0 -3582
- package/fesm2022/verisoft-ui-govcz.mjs.map +0 -1
- package/index.d.ts +0 -955
- package/styles/dist/main.css +0 -9
- package/styles/dist/main.css.map +0 -1
- package/styles/sass/main.scss +0 -10
- package/styles/sass/utils/_variables.scss +0 -3
- package/styles/sass/utils/index.scss +0 -2
- /package/{styles → src}/sass/header.css +0 -0
- /package/{styles → src}/sass/header.scss +0 -0
- /package/{styles → src}/sass/scrollbar.scss +0 -0
- /package/{styles → src}/sass/utils/_utils.scss +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
+
import { PageHeaderComponent } from './page-header.component';
|
|
3
|
+
|
|
4
|
+
describe('PageHeaderComponent', () => {
|
|
5
|
+
let component: PageHeaderComponent;
|
|
6
|
+
let fixture: ComponentFixture<PageHeaderComponent>;
|
|
7
|
+
|
|
8
|
+
beforeEach(async () => {
|
|
9
|
+
await TestBed.configureTestingModule({
|
|
10
|
+
imports: [PageHeaderComponent],
|
|
11
|
+
}).compileComponents();
|
|
12
|
+
|
|
13
|
+
fixture = TestBed.createComponent(PageHeaderComponent);
|
|
14
|
+
component = fixture.componentInstance;
|
|
15
|
+
fixture.detectChanges();
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
it('should create', () => {
|
|
19
|
+
expect(component).toBeTruthy();
|
|
20
|
+
});
|
|
21
|
+
});
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
ChangeDetectionStrategy,
|
|
4
|
+
Component,
|
|
5
|
+
Input,
|
|
6
|
+
} from '@angular/core';
|
|
7
|
+
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
8
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
9
|
+
import { PageHeaderCore } from '@verisoft/ui-core';
|
|
10
|
+
|
|
11
|
+
@Component({
|
|
12
|
+
selector: 'v-page-header',
|
|
13
|
+
imports: [
|
|
14
|
+
GovDesignSystemModule,
|
|
15
|
+
TranslateModule
|
|
16
|
+
],
|
|
17
|
+
templateUrl: './page-header.component.html',
|
|
18
|
+
styleUrl: './page-header.component.scss',
|
|
19
|
+
changeDetection: ChangeDetectionStrategy.OnPush
|
|
20
|
+
})
|
|
21
|
+
export class PageHeaderComponent implements PageHeaderCore {
|
|
22
|
+
@Input() title = '';
|
|
23
|
+
|
|
24
|
+
@Input() subtitle: string | undefined;
|
|
25
|
+
|
|
26
|
+
@Input() showBackButton: boolean | undefined;
|
|
27
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './password.component';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<gov-form-control class="mb-3">
|
|
2
|
+
@if (label) {
|
|
3
|
+
<gov-form-label
|
|
4
|
+
[slot]="labelSlot"
|
|
5
|
+
[size]="size | govSize"
|
|
6
|
+
>
|
|
7
|
+
{{ label }}
|
|
8
|
+
</gov-form-label>
|
|
9
|
+
}
|
|
10
|
+
<gov-form-group>
|
|
11
|
+
@if (feedback) {
|
|
12
|
+
<gov-form-password-power [power]="passwordStrength - 1" />
|
|
13
|
+
}
|
|
14
|
+
<gov-form-input
|
|
15
|
+
[formControl]="formControl"
|
|
16
|
+
[attr.input-type]="type"
|
|
17
|
+
[placeholder]="placeholder"
|
|
18
|
+
[invalid]="ngControl?.errors"
|
|
19
|
+
(ngModelChange)="valueChange($event)"
|
|
20
|
+
/>
|
|
21
|
+
</gov-form-group>
|
|
22
|
+
<v-validation-message [ngControl]="ngControl"></v-validation-message>
|
|
23
|
+
@if (message) {
|
|
24
|
+
<gov-form-message
|
|
25
|
+
[slot]="messageSlot"
|
|
26
|
+
color="neutral"
|
|
27
|
+
>
|
|
28
|
+
{{ message }}
|
|
29
|
+
</gov-form-message>
|
|
30
|
+
}
|
|
31
|
+
</gov-form-control>
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
+
import { PasswordComponent } from './password.component';
|
|
3
|
+
|
|
4
|
+
describe('PasswordComponent', () => {
|
|
5
|
+
let component: PasswordComponent;
|
|
6
|
+
let fixture: ComponentFixture< PasswordComponent>;
|
|
7
|
+
|
|
8
|
+
beforeEach(async () => {
|
|
9
|
+
await TestBed.configureTestingModule({
|
|
10
|
+
imports: [PasswordComponent],
|
|
11
|
+
}).compileComponents();
|
|
12
|
+
|
|
13
|
+
fixture = TestBed.createComponent(PasswordComponent);
|
|
14
|
+
component = fixture.componentInstance;
|
|
15
|
+
fixture.detectChanges();
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
it('should create', () => {
|
|
19
|
+
expect(component).toBeTruthy();
|
|
20
|
+
});
|
|
21
|
+
});
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
|
|
2
|
+
import { ChangeDetectionStrategy, Component, Input, Optional, Self } from '@angular/core';
|
|
3
|
+
import { ControlValueAccessor, NgControl, ReactiveFormsModule } from '@angular/forms';
|
|
4
|
+
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
5
|
+
import {
|
|
6
|
+
BaseFormInputComponent,
|
|
7
|
+
FieldType,
|
|
8
|
+
PASSWORD_COMPONENT_TOKEN,
|
|
9
|
+
PasswordCore,
|
|
10
|
+
SlotPosition,
|
|
11
|
+
SlotPositionType,
|
|
12
|
+
IconPosition,
|
|
13
|
+
IconPositionType,
|
|
14
|
+
FieldSize,
|
|
15
|
+
FieldSizeType,
|
|
16
|
+
PasswordStrength,
|
|
17
|
+
} from '@verisoft/ui-core';
|
|
18
|
+
import zxcvbn from 'zxcvbn';
|
|
19
|
+
import { Icons } from '../../icons';
|
|
20
|
+
import { GovSizePipe } from '../../pipes';
|
|
21
|
+
import { ErrorComponent } from '../errors';
|
|
22
|
+
|
|
23
|
+
@Component({
|
|
24
|
+
selector: 'v-password',
|
|
25
|
+
imports: [
|
|
26
|
+
ReactiveFormsModule,
|
|
27
|
+
GovDesignSystemModule,
|
|
28
|
+
GovSizePipe,
|
|
29
|
+
ErrorComponent
|
|
30
|
+
],
|
|
31
|
+
templateUrl: './password.component.html',
|
|
32
|
+
styleUrl: './password.component.scss',
|
|
33
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
34
|
+
providers: [
|
|
35
|
+
{
|
|
36
|
+
provide: PASSWORD_COMPONENT_TOKEN,
|
|
37
|
+
useExisting: PasswordComponent
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
export class PasswordComponent
|
|
43
|
+
extends BaseFormInputComponent
|
|
44
|
+
implements ControlValueAccessor, PasswordCore
|
|
45
|
+
{
|
|
46
|
+
@Input() toggleMask = true;
|
|
47
|
+
@Input() feedback = false;
|
|
48
|
+
@Input() labelSlot: SlotPositionType = SlotPosition.top;
|
|
49
|
+
@Input() requiredStrength: PasswordStrength = PasswordStrength.None;
|
|
50
|
+
@Input() message!: string;
|
|
51
|
+
@Input() name! : string;
|
|
52
|
+
@Input() role! : string;
|
|
53
|
+
@Input() icon!: string;
|
|
54
|
+
@Input() iconPos: IconPositionType = IconPosition.right;
|
|
55
|
+
@Input() size: FieldSizeType | undefined = FieldSize.medium;
|
|
56
|
+
@Input() messageSlot: SlotPositionType = SlotPosition.bottom;
|
|
57
|
+
|
|
58
|
+
icons = Icons;
|
|
59
|
+
passwordStrength: PasswordStrength = PasswordStrength.None;
|
|
60
|
+
type = FieldType.password;
|
|
61
|
+
|
|
62
|
+
constructor(@Optional() @Self() ngControl: NgControl) {
|
|
63
|
+
super(ngControl);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
valueChange(value: string) {
|
|
67
|
+
if (!value) {
|
|
68
|
+
this.passwordStrength = 0;
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
const result = zxcvbn(value);
|
|
73
|
+
this.passwordStrength = result.score;
|
|
74
|
+
|
|
75
|
+
if (!this.formControl) {
|
|
76
|
+
return;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
if (result.score < this.requiredStrength) {
|
|
80
|
+
this.formControl.setErrors({passwordLowStrength: true}, {emitEvent: false})
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './radiobutton.component';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<gov-form-control>
|
|
2
|
+
<gov-form-radio-group [formControl]="formControl">
|
|
3
|
+
@if (items) { @for(item of items; track item) {
|
|
4
|
+
<gov-form-radio
|
|
5
|
+
[size]="size | govSize"
|
|
6
|
+
[value]="item.value"
|
|
7
|
+
[required]="required"
|
|
8
|
+
[identifier]="item.id"
|
|
9
|
+
[name]="radioGroupName"
|
|
10
|
+
[invalid]="ngControl?.errors"
|
|
11
|
+
[disabled]="formControl.disabled"
|
|
12
|
+
>
|
|
13
|
+
<gov-form-label
|
|
14
|
+
[size]="size | govSize"
|
|
15
|
+
slot="label"
|
|
16
|
+
>
|
|
17
|
+
{{ label }}
|
|
18
|
+
</gov-form-label>
|
|
19
|
+
</gov-form-radio>
|
|
20
|
+
} }
|
|
21
|
+
</gov-form-radio-group>
|
|
22
|
+
<v-validation-message [ngControl]="ngControl"></v-validation-message>
|
|
23
|
+
</gov-form-control>
|
|
File without changes
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
ChangeDetectionStrategy,
|
|
4
|
+
Component,
|
|
5
|
+
Input,
|
|
6
|
+
Optional,
|
|
7
|
+
Self,
|
|
8
|
+
} from '@angular/core';
|
|
9
|
+
import {
|
|
10
|
+
ControlValueAccessor,
|
|
11
|
+
NgControl,
|
|
12
|
+
ReactiveFormsModule,
|
|
13
|
+
} from '@angular/forms';
|
|
14
|
+
import { RouterModule } from '@angular/router';
|
|
15
|
+
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
16
|
+
import {
|
|
17
|
+
BaseFormInputComponent,
|
|
18
|
+
FieldSize,
|
|
19
|
+
FieldSizeType,
|
|
20
|
+
RADIOBUTTON_COMPONENT_TOKEN,
|
|
21
|
+
RadiobuttonCore,
|
|
22
|
+
RadioButtonItem,
|
|
23
|
+
} from '@verisoft/ui-core';
|
|
24
|
+
import { Icons } from '../../icons';
|
|
25
|
+
import { GovSizePipe } from '../../pipes';
|
|
26
|
+
import { ErrorComponent } from '../errors';
|
|
27
|
+
|
|
28
|
+
@Component({
|
|
29
|
+
selector: "v-radiobutton",
|
|
30
|
+
styleUrl: "./radiobutton.component.scss",
|
|
31
|
+
templateUrl: './radiobutton.component.html',
|
|
32
|
+
imports: [
|
|
33
|
+
GovDesignSystemModule,
|
|
34
|
+
RouterModule,
|
|
35
|
+
ReactiveFormsModule,
|
|
36
|
+
GovSizePipe,
|
|
37
|
+
ErrorComponent
|
|
38
|
+
],
|
|
39
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
40
|
+
providers: [
|
|
41
|
+
{
|
|
42
|
+
provide: RADIOBUTTON_COMPONENT_TOKEN,
|
|
43
|
+
useExisting: RadioButtonComponent,
|
|
44
|
+
},
|
|
45
|
+
]
|
|
46
|
+
})
|
|
47
|
+
|
|
48
|
+
export class RadioButtonComponent<T>
|
|
49
|
+
extends BaseFormInputComponent
|
|
50
|
+
implements ControlValueAccessor, RadiobuttonCore<T>
|
|
51
|
+
{
|
|
52
|
+
@Input() radioGroupName = Math.random().toString();
|
|
53
|
+
@Input() items: RadioButtonItem<T>[] = [];
|
|
54
|
+
@Input() size: FieldSizeType = FieldSize.medium;
|
|
55
|
+
|
|
56
|
+
icons = Icons;
|
|
57
|
+
|
|
58
|
+
constructor(@Optional() @Self() ngControl: NgControl) {
|
|
59
|
+
super(ngControl);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './search.component';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<gov-form-control>
|
|
2
|
+
<gov-form-group>
|
|
3
|
+
<gov-form-search color="neutral">
|
|
4
|
+
<gov-form-input
|
|
5
|
+
[placeholder]="placeholder"
|
|
6
|
+
[size]="size | govSize"
|
|
7
|
+
slot="input"
|
|
8
|
+
(gov-input)="setValue($event)"
|
|
9
|
+
/>
|
|
10
|
+
<gov-button
|
|
11
|
+
[size]="size | govSize"
|
|
12
|
+
color="primary"
|
|
13
|
+
type="solid"
|
|
14
|
+
slot="button"
|
|
15
|
+
(gov-click)="search()"
|
|
16
|
+
>
|
|
17
|
+
<gov-icon
|
|
18
|
+
[name]="icons.search"
|
|
19
|
+
/>
|
|
20
|
+
</gov-button>
|
|
21
|
+
</gov-form-search>
|
|
22
|
+
</gov-form-group>
|
|
23
|
+
</gov-form-control>
|
|
File without changes
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
ChangeDetectionStrategy,
|
|
4
|
+
Component,
|
|
5
|
+
EventEmitter,
|
|
6
|
+
Input,
|
|
7
|
+
Output,
|
|
8
|
+
} from '@angular/core';
|
|
9
|
+
import { ReactiveFormsModule } from '@angular/forms';
|
|
10
|
+
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
11
|
+
import { FieldSizeType, FieldSize } from '@verisoft/ui-core';
|
|
12
|
+
import { Icons } from '../../icons';
|
|
13
|
+
import { GovSizePipe } from '../../pipes';
|
|
14
|
+
|
|
15
|
+
@Component({
|
|
16
|
+
selector: 'v-search',
|
|
17
|
+
imports: [
|
|
18
|
+
GovDesignSystemModule,
|
|
19
|
+
GovSizePipe,
|
|
20
|
+
ReactiveFormsModule
|
|
21
|
+
],
|
|
22
|
+
templateUrl: './search.component.html',
|
|
23
|
+
styleUrl: './search.component.scss',
|
|
24
|
+
changeDetection: ChangeDetectionStrategy.OnPush
|
|
25
|
+
})
|
|
26
|
+
export class SearchComponent {
|
|
27
|
+
|
|
28
|
+
@Input() placeholder!: string;
|
|
29
|
+
|
|
30
|
+
@Input() size: FieldSizeType = FieldSize.medium;
|
|
31
|
+
|
|
32
|
+
@Output() searchTerm = new EventEmitter<string>();
|
|
33
|
+
|
|
34
|
+
value!: string;
|
|
35
|
+
|
|
36
|
+
icons = Icons
|
|
37
|
+
|
|
38
|
+
setValue(event: any) {
|
|
39
|
+
this.value = event.detail.value;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
search() {
|
|
43
|
+
this.searchTerm.emit(this.value);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './section.component';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<gov-accordion>
|
|
2
|
+
<gov-accordion-item
|
|
3
|
+
[size]="size | govSize"
|
|
4
|
+
[identifier]="identifier"
|
|
5
|
+
[open]="open"
|
|
6
|
+
>
|
|
7
|
+
@if (icon) {
|
|
8
|
+
<gov-icon
|
|
9
|
+
[name]="icons.chevronDown"
|
|
10
|
+
/>
|
|
11
|
+
} @if (title) {
|
|
12
|
+
<h2 slot="label">{{ title | translate }}</h2>
|
|
13
|
+
} @if (badge) {
|
|
14
|
+
<gov-badge
|
|
15
|
+
inverse="true"
|
|
16
|
+
size="s"
|
|
17
|
+
[slot]="badgeSlot"
|
|
18
|
+
>
|
|
19
|
+
{{ badge }}
|
|
20
|
+
</gov-badge>
|
|
21
|
+
} @if (annotation) {
|
|
22
|
+
<p slot="annotation">{{ annotation | translate }}</p>
|
|
23
|
+
}
|
|
24
|
+
<ng-content></ng-content>
|
|
25
|
+
</gov-accordion-item>
|
|
26
|
+
</gov-accordion>
|
|
File without changes
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
ChangeDetectionStrategy,
|
|
4
|
+
Component,
|
|
5
|
+
Input,
|
|
6
|
+
NO_ERRORS_SCHEMA,
|
|
7
|
+
} from '@angular/core';
|
|
8
|
+
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
9
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
10
|
+
import {
|
|
11
|
+
FieldSizeType,
|
|
12
|
+
FieldSize,
|
|
13
|
+
SECTION_COMPONENT_TOKEN,
|
|
14
|
+
SectionCore,
|
|
15
|
+
} from '@verisoft/ui-core';
|
|
16
|
+
import { Icons } from '../../icons';
|
|
17
|
+
import { GovSizePipe } from '../../pipes';
|
|
18
|
+
|
|
19
|
+
@Component({
|
|
20
|
+
selector: 'v-section',
|
|
21
|
+
imports: [
|
|
22
|
+
GovDesignSystemModule,
|
|
23
|
+
GovSizePipe,
|
|
24
|
+
TranslateModule
|
|
25
|
+
],
|
|
26
|
+
templateUrl: './section.component.html',
|
|
27
|
+
styleUrl: './section.component.scss',
|
|
28
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
29
|
+
providers: [
|
|
30
|
+
{
|
|
31
|
+
provide: SECTION_COMPONENT_TOKEN,
|
|
32
|
+
useExisting: SectionComponent,
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
schemas: [
|
|
36
|
+
NO_ERRORS_SCHEMA
|
|
37
|
+
]
|
|
38
|
+
})
|
|
39
|
+
export class SectionComponent
|
|
40
|
+
implements SectionCore
|
|
41
|
+
{
|
|
42
|
+
@Input() title!: string;
|
|
43
|
+
@Input() badge!: string;
|
|
44
|
+
@Input() showContent = false;
|
|
45
|
+
@Input() backgroundColor!: string;
|
|
46
|
+
@Input() annotation!: string;
|
|
47
|
+
@Input() identifier!: string;
|
|
48
|
+
@Input() icon!: string;
|
|
49
|
+
@Input() iconType!: string;
|
|
50
|
+
@Input() size: FieldSizeType = FieldSize.medium;
|
|
51
|
+
@Input() badgeSlot: 'prefix' | 'sufix' = 'sufix';
|
|
52
|
+
@Input() open = false;
|
|
53
|
+
|
|
54
|
+
icons = Icons;
|
|
55
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<div class="v-side-menu">
|
|
2
|
+
<div class="gov-category-list__col gov-category-list__categories">
|
|
3
|
+
<div class="gov-category-list__col-inner">
|
|
4
|
+
<ul class="main-nav gov-list--plain gov-category-list__nav">
|
|
5
|
+
@for (item of items; track item) {
|
|
6
|
+
@for (child of item.children; track child) {
|
|
7
|
+
<li class="gov-category-list__nav">
|
|
8
|
+
<a class="gov-category-list__nav-link p-2 d-flex align-items-center" [routerLink]="child.url"
|
|
9
|
+
routerLinkActive="is-active" title="{{child.label}}">
|
|
10
|
+
<p class="gov-text--body-s">{{child.label}}
|
|
11
|
+
@if (child.children) {
|
|
12
|
+
<gov-icon [name]="icons.chevronDown" />
|
|
13
|
+
}
|
|
14
|
+
</p>
|
|
15
|
+
</a>
|
|
16
|
+
</li>
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
</ul>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.v-side-menu {
|
|
2
|
+
a {
|
|
3
|
+
&:hover {
|
|
4
|
+
background-color: var(--background-primary-subtle);
|
|
5
|
+
text-decoration: underline;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
&.is-active {
|
|
9
|
+
background-color: var(--background-primary);
|
|
10
|
+
color: var(--text-white);
|
|
11
|
+
|
|
12
|
+
& > * {
|
|
13
|
+
color: var(--text-white);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
|
|
2
|
+
import { Component, EventEmitter, inject, Input, Output, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { RouterModule } from '@angular/router';
|
|
4
|
+
import { GovDesignSystemModule } from '@gov-design-system-ce/angular';
|
|
5
|
+
import {
|
|
6
|
+
MenuItem,
|
|
7
|
+
SIDE_MENU_COMPONENT_TOKEN,
|
|
8
|
+
SideMenuCore,
|
|
9
|
+
SideMenuService,
|
|
10
|
+
} from '@verisoft/ui-core';
|
|
11
|
+
import { Icons } from '../../icons';
|
|
12
|
+
|
|
13
|
+
@Component({
|
|
14
|
+
selector: 'v-side-menu',
|
|
15
|
+
imports: [RouterModule, GovDesignSystemModule],
|
|
16
|
+
templateUrl: './side-menu.component.html',
|
|
17
|
+
styleUrl: './side-menu.component.scss',
|
|
18
|
+
providers: [
|
|
19
|
+
{
|
|
20
|
+
provide: SIDE_MENU_COMPONENT_TOKEN,
|
|
21
|
+
useExisting: SideMenuComponent,
|
|
22
|
+
},
|
|
23
|
+
],
|
|
24
|
+
encapsulation: ViewEncapsulation.None,
|
|
25
|
+
})
|
|
26
|
+
export class SideMenuComponent implements SideMenuCore {
|
|
27
|
+
menuService = inject(SideMenuService);
|
|
28
|
+
|
|
29
|
+
@Input() items: MenuItem[] = [];
|
|
30
|
+
|
|
31
|
+
@Input() logoUrl = '';
|
|
32
|
+
|
|
33
|
+
@Input() userName!: string;
|
|
34
|
+
|
|
35
|
+
@Input() userRole!: any | any[] | undefined;
|
|
36
|
+
|
|
37
|
+
@Output() minimalized = new EventEmitter<boolean>();
|
|
38
|
+
|
|
39
|
+
@Output() itemSelected = new EventEmitter<MenuItem>();
|
|
40
|
+
|
|
41
|
+
icons = Icons;
|
|
42
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { NgModule, ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import {
|
|
3
|
+
MENU_TOKEN,
|
|
4
|
+
MenuItem,
|
|
5
|
+
SIDE_MENU_COMPONENT_TOKEN,
|
|
6
|
+
SideMenuModuleConfig,
|
|
7
|
+
SideMenuProviderService,
|
|
8
|
+
UnsubscribeComponent,
|
|
9
|
+
} from '@verisoft/ui-core';
|
|
10
|
+
import { SideMenuComponent } from './side-menu.component';
|
|
11
|
+
|
|
12
|
+
@NgModule({
|
|
13
|
+
providers: [
|
|
14
|
+
SideMenuProviderService,
|
|
15
|
+
{
|
|
16
|
+
provide: SIDE_MENU_COMPONENT_TOKEN,
|
|
17
|
+
useExisting: SideMenuComponent,
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
})
|
|
21
|
+
export class SideMenuModule extends UnsubscribeComponent {
|
|
22
|
+
constructor(private readonly service: SideMenuProviderService) {
|
|
23
|
+
super();
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
static forRoot(
|
|
27
|
+
config?: SideMenuModuleConfig
|
|
28
|
+
): ModuleWithProviders<SideMenuModule> {
|
|
29
|
+
const moduleWithProvider: ModuleWithProviders<SideMenuModule> = {
|
|
30
|
+
ngModule: SideMenuModule,
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
if (config?.items) {
|
|
34
|
+
moduleWithProvider.providers = [
|
|
35
|
+
{
|
|
36
|
+
provide: MENU_TOKEN,
|
|
37
|
+
useValue: config.items,
|
|
38
|
+
},
|
|
39
|
+
];
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
return moduleWithProvider;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
static forChild(menu: MenuItem[]): ModuleWithProviders<SideMenuModule> {
|
|
46
|
+
return {
|
|
47
|
+
ngModule: SideMenuModule,
|
|
48
|
+
providers: [
|
|
49
|
+
{
|
|
50
|
+
provide: MENU_TOKEN,
|
|
51
|
+
useValue: menu,
|
|
52
|
+
},
|
|
53
|
+
],
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { Overlay, OverlayRef } from '@angular/cdk/overlay';
|
|
2
|
+
import * as portal from '@angular/cdk/portal';
|
|
3
|
+
import { Injectable, Injector } from '@angular/core';
|
|
4
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
5
|
+
import { SnackbarComponent } from '../snackbar.component';
|
|
6
|
+
import { SnackbarConfig } from '../snackbar.model';
|
|
7
|
+
|
|
8
|
+
@Injectable({
|
|
9
|
+
providedIn: 'root',
|
|
10
|
+
})
|
|
11
|
+
export class SnackbarService {
|
|
12
|
+
constructor(
|
|
13
|
+
private overlay: Overlay,
|
|
14
|
+
private translate: TranslateService,
|
|
15
|
+
private injector: Injector
|
|
16
|
+
) {}
|
|
17
|
+
|
|
18
|
+
showSuccess(message: string, icon?: string) {
|
|
19
|
+
this.showToast({
|
|
20
|
+
message: this.translate.instant(message),
|
|
21
|
+
icon: icon,
|
|
22
|
+
color: 'success',
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
showInfo(message: string, icon?: string) {
|
|
27
|
+
this.showToast({
|
|
28
|
+
message: this.translate.instant(message),
|
|
29
|
+
icon: icon,
|
|
30
|
+
color: 'primary',
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
showWarn(message: string, icon?: string) {
|
|
35
|
+
this.showToast({
|
|
36
|
+
message: this.translate.instant(message),
|
|
37
|
+
icon: icon,
|
|
38
|
+
color: 'warning',
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
showError(message: string, icon?: string) {
|
|
43
|
+
this.showToast({
|
|
44
|
+
message: this.translate.instant(message),
|
|
45
|
+
icon: icon,
|
|
46
|
+
color: 'error',
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
private showToast(config: SnackbarConfig) {
|
|
51
|
+
const positionStrategy = this.overlay
|
|
52
|
+
.position()
|
|
53
|
+
.global();
|
|
54
|
+
|
|
55
|
+
const overlayRef: OverlayRef = this.overlay.create({
|
|
56
|
+
positionStrategy,
|
|
57
|
+
hasBackdrop: false,
|
|
58
|
+
scrollStrategy: this.overlay.scrollStrategies.noop(),
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
const toastPortal = new portal.ComponentPortal(SnackbarComponent, null, this.createInjector(config));
|
|
62
|
+
overlayRef.attach(toastPortal);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
private createInjector(config: any) {
|
|
66
|
+
return Injector.create({
|
|
67
|
+
providers: [
|
|
68
|
+
{ provide: 'TOAST_CONFIG', useValue: config },
|
|
69
|
+
],
|
|
70
|
+
parent: this.injector,
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
}
|