@onemrvapublic/design-system 20.6.0 → 20.6.1-develop.2
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/fesm2022/onemrvapublic-design-system-mat-choice-chip.mjs +25 -33
- package/fesm2022/onemrvapublic-design-system-mat-choice-chip.mjs.map +1 -1
- package/fesm2022/onemrvapublic-design-system-mat-file-upload.mjs +4 -4
- package/fesm2022/onemrvapublic-design-system-mat-file-upload.mjs.map +1 -1
- package/fesm2022/onemrvapublic-design-system-mat-navigation.mjs +2 -2
- package/fesm2022/onemrvapublic-design-system-mat-navigation.mjs.map +1 -1
- package/fesm2022/onemrvapublic-design-system.mjs +31 -38
- package/fesm2022/onemrvapublic-design-system.mjs.map +1 -1
- package/index.d.ts +14 -12
- package/mat-choice-chip/index.d.ts +11 -10
- package/mat-choice-chip/src/onemrva-mat-choice-chip.component.scss +2 -1
- package/mat-file-upload/index.d.ts +1 -0
- package/mat-file-upload/src/components/onemrva-mat-file-upload/onemrva-mat-file-upload.component.scss +1 -1
- package/mat-navigation/src/onemrva-mat-navigation.component.scss +3 -1
- package/package.json +25 -25
package/index.d.ts
CHANGED
|
@@ -26,17 +26,17 @@ import { MatTooltip, TooltipPosition } from '@angular/material/tooltip';
|
|
|
26
26
|
import * as i27 from '@angular/material/core';
|
|
27
27
|
import { MatOption, ThemePalette, ErrorStateMatcher, MatDateFormats, NativeDateAdapter, DateAdapter } from '@angular/material/core';
|
|
28
28
|
import { AnimationBuilder, AnimationFactory } from '@angular/animations';
|
|
29
|
-
import
|
|
29
|
+
import * as i5 from '@angular/forms';
|
|
30
|
+
import { ControlValueAccessor, FormControl, FormGroup, NgControl, ValidationErrors, AbstractControl, ValidatorFn } from '@angular/forms';
|
|
30
31
|
import { MatCalendar } from '@angular/material/datepicker';
|
|
31
32
|
import * as i8 from '@angular/material/dialog';
|
|
32
33
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
33
34
|
import { OnemRvaCDNMimeService as OnemRvaCDNMimeService$1, OSMResult as OSMResult$1, OnemRvaCommonCountry as OnemRvaCommonCountry$1, OnemrvaMaterialCountry as OnemrvaMaterialCountry$1 } from '@onemrvapublic/design-system/shared';
|
|
34
|
-
import * as i5 from '@angular/forms';
|
|
35
|
-
import { FormControl, FormGroup, ControlValueAccessor, NgControl, ValidationErrors, AbstractControl, ValidatorFn } from '@angular/forms';
|
|
36
35
|
import * as i11 from '@angular/material/input';
|
|
37
36
|
import { ComponentStore } from '@ngrx/component-store';
|
|
38
37
|
import { HttpEvent, HttpClient } from '@angular/common/http';
|
|
39
38
|
import { MatAutocompleteTrigger } from '@angular/material/autocomplete';
|
|
39
|
+
import { MatFormFieldControl, MatFormField } from '@angular/material/form-field';
|
|
40
40
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
41
41
|
import { MatExpansionPanel } from '@angular/material/expansion';
|
|
42
42
|
import { PageEvent } from '@angular/material/paginator';
|
|
@@ -590,20 +590,21 @@ declare class OnemrvaMatCarouselComponent implements AfterViewInit, OnInit, OnDe
|
|
|
590
590
|
static ɵcmp: i0.ɵɵComponentDeclaration<OnemrvaMatCarouselComponent, "onemrva-mat-carousel", never, { "timing": { "alias": "timing"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "showControls": { "alias": "showControls"; "required": false; }; "autoplay": { "alias": "autoplay"; "required": false; }; "showDots": { "alias": "showDots"; "required": false; }; }, {}, ["items"], ["*"], true, never>;
|
|
591
591
|
}
|
|
592
592
|
|
|
593
|
-
declare class OnemrvaMatChoiceChipComponent
|
|
594
|
-
|
|
593
|
+
declare class OnemrvaMatChoiceChipComponent implements ControlValueAccessor {
|
|
594
|
+
/** The boolean value your parent form will read/write */
|
|
595
|
+
value: boolean;
|
|
596
|
+
/** Standard disabled support */
|
|
595
597
|
disabled: boolean;
|
|
596
|
-
_value: any;
|
|
597
598
|
get opacity(): 1 | 0.4;
|
|
598
|
-
|
|
599
|
-
setDescribedByIds(ids: string[]): void;
|
|
600
|
-
onChange: (_values: any[]) => void;
|
|
599
|
+
private onChange;
|
|
601
600
|
onTouched: () => void;
|
|
602
|
-
writeValue(
|
|
603
|
-
registerOnChange(fn: (
|
|
601
|
+
writeValue(val: boolean): void;
|
|
602
|
+
registerOnChange(fn: (val: boolean) => void): void;
|
|
604
603
|
registerOnTouched(fn: () => void): void;
|
|
604
|
+
setDisabledState(isDisabled: boolean): void;
|
|
605
|
+
onInputChange(checked: boolean): void;
|
|
605
606
|
static ɵfac: i0.ɵɵFactoryDeclaration<OnemrvaMatChoiceChipComponent, never>;
|
|
606
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OnemrvaMatChoiceChipComponent, "onemrva-mat-choice-chip", never, { "
|
|
607
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OnemrvaMatChoiceChipComponent, "onemrva-mat-choice-chip", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
607
608
|
}
|
|
608
609
|
|
|
609
610
|
declare class OnemrvaCopyToClipboardComponent {
|
|
@@ -748,6 +749,7 @@ declare class OnemrvaFilePanelComponent {
|
|
|
748
749
|
/** @hidden @internal */
|
|
749
750
|
get _isPrimary(): boolean;
|
|
750
751
|
protected readonly formattedSize: typeof formattedSize;
|
|
752
|
+
ariaLabel: any;
|
|
751
753
|
static ɵfac: i0.ɵɵFactoryDeclaration<OnemrvaFilePanelComponent, never>;
|
|
752
754
|
static ɵcmp: i0.ɵɵComponentDeclaration<OnemrvaFilePanelComponent, "file-panel", never, { "id": { "alias": "id"; "required": false; }; "dataCy": { "alias": "dataCy"; "required": false; }; "file": { "alias": "file"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "showProgress": { "alias": "showProgress"; "required": false; }; "displayDate": { "alias": "displayDate"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
753
755
|
}
|
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
3
|
|
|
4
|
-
declare class OnemrvaMatChoiceChipComponent
|
|
5
|
-
|
|
4
|
+
declare class OnemrvaMatChoiceChipComponent implements ControlValueAccessor {
|
|
5
|
+
/** The boolean value your parent form will read/write */
|
|
6
|
+
value: boolean;
|
|
7
|
+
/** Standard disabled support */
|
|
6
8
|
disabled: boolean;
|
|
7
|
-
_value: any;
|
|
8
9
|
get opacity(): 1 | 0.4;
|
|
9
|
-
|
|
10
|
-
setDescribedByIds(ids: string[]): void;
|
|
11
|
-
onChange: (_values: any[]) => void;
|
|
10
|
+
private onChange;
|
|
12
11
|
onTouched: () => void;
|
|
13
|
-
writeValue(
|
|
14
|
-
registerOnChange(fn: (
|
|
12
|
+
writeValue(val: boolean): void;
|
|
13
|
+
registerOnChange(fn: (val: boolean) => void): void;
|
|
15
14
|
registerOnTouched(fn: () => void): void;
|
|
15
|
+
setDisabledState(isDisabled: boolean): void;
|
|
16
|
+
onInputChange(checked: boolean): void;
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<OnemrvaMatChoiceChipComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OnemrvaMatChoiceChipComponent, "onemrva-mat-choice-chip", never, { "
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OnemrvaMatChoiceChipComponent, "onemrva-mat-choice-chip", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
export { OnemrvaMatChoiceChipComponent };
|
|
@@ -75,6 +75,7 @@ declare class OnemrvaFilePanelComponent {
|
|
|
75
75
|
/** @hidden @internal */
|
|
76
76
|
get _isPrimary(): boolean;
|
|
77
77
|
protected readonly formattedSize: typeof formattedSize;
|
|
78
|
+
ariaLabel: any;
|
|
78
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<OnemrvaFilePanelComponent, never>;
|
|
79
80
|
static ɵcmp: i0.ɵɵComponentDeclaration<OnemrvaFilePanelComponent, "file-panel", never, { "id": { "alias": "id"; "required": false; }; "dataCy": { "alias": "dataCy"; "required": false; }; "file": { "alias": "file"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "showProgress": { "alias": "showProgress"; "required": false; }; "displayDate": { "alias": "displayDate"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
80
81
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
onemrva-mat-navigation {
|
|
2
2
|
min-width: 250px;
|
|
3
|
+
border-right: 1px solid var(--mat-sys-outline-variant);
|
|
4
|
+
display: flex;
|
|
3
5
|
.mat-expansion-panel-body {
|
|
4
6
|
padding: 0;
|
|
5
7
|
}
|
|
@@ -12,7 +14,7 @@ onemrva-mat-navigation {
|
|
|
12
14
|
box-shadow: none;
|
|
13
15
|
align-items: center;
|
|
14
16
|
text-align: left;
|
|
15
|
-
font: var(--mat-sys-body-
|
|
17
|
+
font: var(--mat-sys-body-large);
|
|
16
18
|
&:active,
|
|
17
19
|
&.active {
|
|
18
20
|
button {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onemrvapublic/design-system",
|
|
3
|
-
"version": "20.6.
|
|
3
|
+
"version": "20.6.1-develop.2",
|
|
4
4
|
"description": "Design System Onem/Rva without theme included",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -64,22 +64,22 @@
|
|
|
64
64
|
"types": "./mat-carousel/index.d.ts",
|
|
65
65
|
"default": "./fesm2022/onemrvapublic-design-system-mat-carousel.mjs"
|
|
66
66
|
},
|
|
67
|
-
"./mat-choice-chip": {
|
|
68
|
-
"types": "./mat-choice-chip/index.d.ts",
|
|
69
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-choice-chip.mjs"
|
|
70
|
-
},
|
|
71
67
|
"./mat-copy-to-clipboard": {
|
|
72
68
|
"types": "./mat-copy-to-clipboard/index.d.ts",
|
|
73
69
|
"default": "./fesm2022/onemrvapublic-design-system-mat-copy-to-clipboard.mjs"
|
|
74
70
|
},
|
|
75
|
-
"./mat-
|
|
76
|
-
"types": "./mat-
|
|
77
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-
|
|
71
|
+
"./mat-choice-chip": {
|
|
72
|
+
"types": "./mat-choice-chip/index.d.ts",
|
|
73
|
+
"default": "./fesm2022/onemrvapublic-design-system-mat-choice-chip.mjs"
|
|
78
74
|
},
|
|
79
75
|
"./mat-datepicker-header": {
|
|
80
76
|
"types": "./mat-datepicker-header/index.d.ts",
|
|
81
77
|
"default": "./fesm2022/onemrvapublic-design-system-mat-datepicker-header.mjs"
|
|
82
78
|
},
|
|
79
|
+
"./mat-country-item": {
|
|
80
|
+
"types": "./mat-country-item/index.d.ts",
|
|
81
|
+
"default": "./fesm2022/onemrvapublic-design-system-mat-country-item.mjs"
|
|
82
|
+
},
|
|
83
83
|
"./mat-empty-row": {
|
|
84
84
|
"types": "./mat-empty-row/index.d.ts",
|
|
85
85
|
"default": "./fesm2022/onemrvapublic-design-system-mat-empty-row.mjs"
|
|
@@ -96,10 +96,6 @@
|
|
|
96
96
|
"types": "./mat-input-birthplace/index.d.ts",
|
|
97
97
|
"default": "./fesm2022/onemrvapublic-design-system-mat-input-birthplace.mjs"
|
|
98
98
|
},
|
|
99
|
-
"./mat-input-country": {
|
|
100
|
-
"types": "./mat-input-country/index.d.ts",
|
|
101
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-input-country.mjs"
|
|
102
|
-
},
|
|
103
99
|
"./mat-input-enterprise-number": {
|
|
104
100
|
"types": "./mat-input-enterprise-number/index.d.ts",
|
|
105
101
|
"default": "./fesm2022/onemrvapublic-design-system-mat-input-enterprise-number.mjs"
|
|
@@ -120,9 +116,9 @@
|
|
|
120
116
|
"types": "./mat-multi-select/index.d.ts",
|
|
121
117
|
"default": "./fesm2022/onemrvapublic-design-system-mat-multi-select.mjs"
|
|
122
118
|
},
|
|
123
|
-
"./mat-
|
|
124
|
-
"types": "./mat-
|
|
125
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-
|
|
119
|
+
"./mat-input-country": {
|
|
120
|
+
"types": "./mat-input-country/index.d.ts",
|
|
121
|
+
"default": "./fesm2022/onemrvapublic-design-system-mat-input-country.mjs"
|
|
126
122
|
},
|
|
127
123
|
"./mat-notification": {
|
|
128
124
|
"types": "./mat-notification/index.d.ts",
|
|
@@ -132,6 +128,10 @@
|
|
|
132
128
|
"types": "./mat-paginator/index.d.ts",
|
|
133
129
|
"default": "./fesm2022/onemrvapublic-design-system-mat-paginator.mjs"
|
|
134
130
|
},
|
|
131
|
+
"./mat-navigation": {
|
|
132
|
+
"types": "./mat-navigation/index.d.ts",
|
|
133
|
+
"default": "./fesm2022/onemrvapublic-design-system-mat-navigation.mjs"
|
|
134
|
+
},
|
|
135
135
|
"./mat-panel": {
|
|
136
136
|
"types": "./mat-panel/index.d.ts",
|
|
137
137
|
"default": "./fesm2022/onemrvapublic-design-system-mat-panel.mjs"
|
|
@@ -140,17 +140,13 @@
|
|
|
140
140
|
"types": "./mat-pop-over/index.d.ts",
|
|
141
141
|
"default": "./fesm2022/onemrvapublic-design-system-mat-pop-over.mjs"
|
|
142
142
|
},
|
|
143
|
-
"./mat-progress-bar": {
|
|
144
|
-
"types": "./mat-progress-bar/index.d.ts",
|
|
145
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-progress-bar.mjs"
|
|
146
|
-
},
|
|
147
143
|
"./mat-select-search": {
|
|
148
144
|
"types": "./mat-select-search/index.d.ts",
|
|
149
145
|
"default": "./fesm2022/onemrvapublic-design-system-mat-select-search.mjs"
|
|
150
146
|
},
|
|
151
|
-
"./mat-
|
|
152
|
-
"types": "./mat-
|
|
153
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-
|
|
147
|
+
"./mat-progress-bar": {
|
|
148
|
+
"types": "./mat-progress-bar/index.d.ts",
|
|
149
|
+
"default": "./fesm2022/onemrvapublic-design-system-mat-progress-bar.mjs"
|
|
154
150
|
},
|
|
155
151
|
"./mat-side-menu": {
|
|
156
152
|
"types": "./mat-side-menu/index.d.ts",
|
|
@@ -164,9 +160,9 @@
|
|
|
164
160
|
"types": "./mat-spinner/index.d.ts",
|
|
165
161
|
"default": "./fesm2022/onemrvapublic-design-system-mat-spinner.mjs"
|
|
166
162
|
},
|
|
167
|
-
"./mat-
|
|
168
|
-
"types": "./mat-
|
|
169
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-
|
|
163
|
+
"./mat-selectable-box": {
|
|
164
|
+
"types": "./mat-selectable-box/index.d.ts",
|
|
165
|
+
"default": "./fesm2022/onemrvapublic-design-system-mat-selectable-box.mjs"
|
|
170
166
|
},
|
|
171
167
|
"./mat-sticker": {
|
|
172
168
|
"types": "./mat-sticker/index.d.ts",
|
|
@@ -180,6 +176,10 @@
|
|
|
180
176
|
"types": "./mat-task-list/index.d.ts",
|
|
181
177
|
"default": "./fesm2022/onemrvapublic-design-system-mat-task-list.mjs"
|
|
182
178
|
},
|
|
179
|
+
"./mat-table-of-content": {
|
|
180
|
+
"types": "./mat-table-of-content/index.d.ts",
|
|
181
|
+
"default": "./fesm2022/onemrvapublic-design-system-mat-table-of-content.mjs"
|
|
182
|
+
},
|
|
183
183
|
"./mat-timepicker": {
|
|
184
184
|
"types": "./mat-timepicker/index.d.ts",
|
|
185
185
|
"default": "./fesm2022/onemrvapublic-design-system-mat-timepicker.mjs"
|