@onemrvapublic/design-system 20.5.0 → 20.5.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-layout.mjs +93 -93
- package/fesm2022/onemrvapublic-design-system-layout.mjs.map +1 -1
- package/fesm2022/onemrvapublic-design-system.mjs +96 -96
- package/fesm2022/onemrvapublic-design-system.mjs.map +1 -1
- package/index.d.ts +24 -24
- package/layout/index.d.ts +24 -24
- package/layout/src/components/layout/layout.component.scss +3 -0
- package/package.json +20 -20
package/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { AfterViewInit, TemplateRef, QueryList, ChangeDetectorRef, DestroyRef, ViewContainerRef, Type, WritableSignal, OnInit, OnDestroy, EventEmitter,
|
|
3
|
-
import * as i15 from '@angular/router';
|
|
4
|
-
import { RouterLink, Router, ActivatedRoute } from '@angular/router';
|
|
2
|
+
import { AfterViewInit, TemplateRef, QueryList, ChangeDetectorRef, PipeTransform, DestroyRef, ViewContainerRef, Type, WritableSignal, OnInit, OnDestroy, EventEmitter, ElementRef, Renderer2, InjectionToken, AfterContentChecked, OnChanges, ComponentFactoryResolver, AfterContentInit, SimpleChanges, DoCheck, ErrorHandler, Provider } from '@angular/core';
|
|
5
3
|
import * as rxjs from 'rxjs';
|
|
6
4
|
import { Subject, Observable, Subscription, BehaviorSubject, ReplaySubject } from 'rxjs';
|
|
7
5
|
import * as i16 from '@angular/cdk/layout';
|
|
8
6
|
import { BreakpointObserver, Breakpoints } from '@angular/cdk/layout';
|
|
9
7
|
import * as i19 from '@angular/material/sidenav';
|
|
10
8
|
import { MatDrawer } from '@angular/material/sidenav';
|
|
9
|
+
import * as i15 from '@angular/router';
|
|
10
|
+
import { RouterLink, Router, ActivatedRoute } from '@angular/router';
|
|
11
11
|
import { OnemrvaMatSize, OnemrvaMatColor } from '@onemrvapublic/design-system/utils';
|
|
12
12
|
import { NavItem as NavItem$1 } from '@onemrvapublic/design-system/mat-navigation';
|
|
13
13
|
import * as i26 from '@ngx-translate/core';
|
|
@@ -119,6 +119,11 @@ declare class LayoutFooterComponent {
|
|
|
119
119
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutFooterComponent, "onemrva-layout-footer", never, {}, {}, never, ["*"], true, never>;
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
+
interface OnemRvaLanguage {
|
|
123
|
+
code: string;
|
|
124
|
+
label: string;
|
|
125
|
+
}
|
|
126
|
+
|
|
122
127
|
declare class OnemRvaProfile {
|
|
123
128
|
private _isLoggedIn;
|
|
124
129
|
private _firstName;
|
|
@@ -145,6 +150,12 @@ declare class LayoutLoginMenuComponent implements AfterViewInit {
|
|
|
145
150
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutLoginMenuComponent, "onemrva-layout-login-menu", never, { "customNgClass": { "alias": "customNgClass"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
146
151
|
}
|
|
147
152
|
|
|
153
|
+
declare class StripHtmlPipe implements PipeTransform {
|
|
154
|
+
transform(value: string): any;
|
|
155
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StripHtmlPipe, never>;
|
|
156
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<StripHtmlPipe, "striphtml", true>;
|
|
157
|
+
}
|
|
158
|
+
|
|
148
159
|
declare class DrawerHostDirective implements AfterViewInit {
|
|
149
160
|
destroyRef: DestroyRef;
|
|
150
161
|
drawer: MatDrawer;
|
|
@@ -172,20 +183,6 @@ declare class OnemrvaDrawerService {
|
|
|
172
183
|
static ɵprov: i0.ɵɵInjectableDeclaration<OnemrvaDrawerService>;
|
|
173
184
|
}
|
|
174
185
|
|
|
175
|
-
declare class LayoutAfterNavComponent implements AfterViewInit {
|
|
176
|
-
private cd;
|
|
177
|
-
customNgClass: any;
|
|
178
|
-
template?: TemplateRef<any>;
|
|
179
|
-
ngAfterViewInit(): void;
|
|
180
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutAfterNavComponent, never>;
|
|
181
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutAfterNavComponent, "onemrva-layout-after-nav", never, { "customNgClass": { "alias": "customNgClass"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
interface OnemRvaLanguage {
|
|
185
|
-
code: string;
|
|
186
|
-
label: string;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
186
|
declare class OnemrvaLeftSidenavService {
|
|
190
187
|
private originalItems;
|
|
191
188
|
readonly items: WritableSignal<NavItem$1[]>;
|
|
@@ -198,6 +195,15 @@ declare class OnemrvaLeftSidenavService {
|
|
|
198
195
|
static ɵprov: i0.ɵɵInjectableDeclaration<OnemrvaLeftSidenavService>;
|
|
199
196
|
}
|
|
200
197
|
|
|
198
|
+
declare class LayoutAfterNavComponent implements AfterViewInit {
|
|
199
|
+
private cd;
|
|
200
|
+
customNgClass: any;
|
|
201
|
+
template?: TemplateRef<any>;
|
|
202
|
+
ngAfterViewInit(): void;
|
|
203
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutAfterNavComponent, never>;
|
|
204
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutAfterNavComponent, "onemrva-layout-after-nav", never, { "customNgClass": { "alias": "customNgClass"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
205
|
+
}
|
|
206
|
+
|
|
201
207
|
declare class LayoutComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
202
208
|
routes?: QueryList<LayoutRouteComponent>;
|
|
203
209
|
title?: LayoutTitleComponent;
|
|
@@ -299,13 +305,7 @@ declare class LayoutDrawerTitleComponent {
|
|
|
299
305
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutDrawerTitleComponent, "onemrva-drawer-title", never, { "showClose": { "alias": "showClose"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
300
306
|
}
|
|
301
307
|
|
|
302
|
-
declare const layoutComponents: (typeof
|
|
303
|
-
|
|
304
|
-
declare class StripHtmlPipe implements PipeTransform {
|
|
305
|
-
transform(value: string): any;
|
|
306
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StripHtmlPipe, never>;
|
|
307
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<StripHtmlPipe, "striphtml", true>;
|
|
308
|
-
}
|
|
308
|
+
declare const layoutComponents: (typeof LayoutLeftSidenavComponent | typeof LayoutRouteComponent | typeof LayoutFooterComponent | typeof LayoutSidenavComponent | typeof LayoutComponent)[];
|
|
309
309
|
|
|
310
310
|
declare function CoerceBooleanInput(defaultValue: boolean): (target: any, propertyKey: string | symbol) => void;
|
|
311
311
|
|
package/layout/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { AfterViewInit, TemplateRef, QueryList, ChangeDetectorRef, DestroyRef, ViewContainerRef, Type, WritableSignal, OnInit, OnDestroy, EventEmitter
|
|
3
|
-
import * as i15 from '@angular/router';
|
|
4
|
-
import { RouterLink, Router } from '@angular/router';
|
|
2
|
+
import { AfterViewInit, TemplateRef, QueryList, ChangeDetectorRef, PipeTransform, DestroyRef, ViewContainerRef, Type, WritableSignal, OnInit, OnDestroy, EventEmitter } from '@angular/core';
|
|
5
3
|
import { Subject } from 'rxjs';
|
|
6
4
|
import * as i16 from '@angular/cdk/layout';
|
|
7
5
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
8
6
|
import * as i19 from '@angular/material/sidenav';
|
|
9
7
|
import { MatDrawer } from '@angular/material/sidenav';
|
|
8
|
+
import * as i15 from '@angular/router';
|
|
9
|
+
import { RouterLink, Router } from '@angular/router';
|
|
10
10
|
import { OnemrvaMatSize } from '@onemrvapublic/design-system/utils';
|
|
11
11
|
import { NavItem } from '@onemrvapublic/design-system/mat-navigation';
|
|
12
12
|
import * as i26 from '@ngx-translate/core';
|
|
@@ -91,6 +91,11 @@ declare class LayoutFooterComponent {
|
|
|
91
91
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutFooterComponent, "onemrva-layout-footer", never, {}, {}, never, ["*"], true, never>;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
+
interface OnemRvaLanguage {
|
|
95
|
+
code: string;
|
|
96
|
+
label: string;
|
|
97
|
+
}
|
|
98
|
+
|
|
94
99
|
declare class OnemRvaProfile {
|
|
95
100
|
private _isLoggedIn;
|
|
96
101
|
private _firstName;
|
|
@@ -117,6 +122,12 @@ declare class LayoutLoginMenuComponent implements AfterViewInit {
|
|
|
117
122
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutLoginMenuComponent, "onemrva-layout-login-menu", never, { "customNgClass": { "alias": "customNgClass"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
118
123
|
}
|
|
119
124
|
|
|
125
|
+
declare class StripHtmlPipe implements PipeTransform {
|
|
126
|
+
transform(value: string): any;
|
|
127
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StripHtmlPipe, never>;
|
|
128
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<StripHtmlPipe, "striphtml", true>;
|
|
129
|
+
}
|
|
130
|
+
|
|
120
131
|
declare class DrawerHostDirective implements AfterViewInit {
|
|
121
132
|
destroyRef: DestroyRef;
|
|
122
133
|
drawer: MatDrawer;
|
|
@@ -144,20 +155,6 @@ declare class OnemrvaDrawerService {
|
|
|
144
155
|
static ɵprov: i0.ɵɵInjectableDeclaration<OnemrvaDrawerService>;
|
|
145
156
|
}
|
|
146
157
|
|
|
147
|
-
declare class LayoutAfterNavComponent implements AfterViewInit {
|
|
148
|
-
private cd;
|
|
149
|
-
customNgClass: any;
|
|
150
|
-
template?: TemplateRef<any>;
|
|
151
|
-
ngAfterViewInit(): void;
|
|
152
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutAfterNavComponent, never>;
|
|
153
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutAfterNavComponent, "onemrva-layout-after-nav", never, { "customNgClass": { "alias": "customNgClass"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
interface OnemRvaLanguage {
|
|
157
|
-
code: string;
|
|
158
|
-
label: string;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
158
|
declare class OnemrvaLeftSidenavService {
|
|
162
159
|
private originalItems;
|
|
163
160
|
readonly items: WritableSignal<NavItem[]>;
|
|
@@ -170,6 +167,15 @@ declare class OnemrvaLeftSidenavService {
|
|
|
170
167
|
static ɵprov: i0.ɵɵInjectableDeclaration<OnemrvaLeftSidenavService>;
|
|
171
168
|
}
|
|
172
169
|
|
|
170
|
+
declare class LayoutAfterNavComponent implements AfterViewInit {
|
|
171
|
+
private cd;
|
|
172
|
+
customNgClass: any;
|
|
173
|
+
template?: TemplateRef<any>;
|
|
174
|
+
ngAfterViewInit(): void;
|
|
175
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutAfterNavComponent, never>;
|
|
176
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutAfterNavComponent, "onemrva-layout-after-nav", never, { "customNgClass": { "alias": "customNgClass"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
177
|
+
}
|
|
178
|
+
|
|
173
179
|
declare class LayoutComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
174
180
|
routes?: QueryList<LayoutRouteComponent>;
|
|
175
181
|
title?: LayoutTitleComponent;
|
|
@@ -271,13 +277,7 @@ declare class LayoutDrawerTitleComponent {
|
|
|
271
277
|
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutDrawerTitleComponent, "onemrva-drawer-title", never, { "showClose": { "alias": "showClose"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
272
278
|
}
|
|
273
279
|
|
|
274
|
-
declare const layoutComponents: (typeof
|
|
275
|
-
|
|
276
|
-
declare class StripHtmlPipe implements PipeTransform {
|
|
277
|
-
transform(value: string): any;
|
|
278
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StripHtmlPipe, never>;
|
|
279
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<StripHtmlPipe, "striphtml", true>;
|
|
280
|
-
}
|
|
280
|
+
declare const layoutComponents: (typeof LayoutLeftSidenavComponent | typeof LayoutRouteComponent | typeof LayoutFooterComponent | typeof LayoutSidenavComponent | typeof LayoutComponent)[];
|
|
281
281
|
|
|
282
282
|
declare function CoerceBooleanInput(defaultValue: boolean): (target: any, propertyKey: string | symbol) => void;
|
|
283
283
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onemrvapublic/design-system",
|
|
3
|
-
"version": "20.5.
|
|
3
|
+
"version": "20.5.1-develop.2",
|
|
4
4
|
"description": "Design System Onem/Rva without theme included",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -40,18 +40,14 @@
|
|
|
40
40
|
"./package.json": {
|
|
41
41
|
"default": "./package.json"
|
|
42
42
|
},
|
|
43
|
-
"./
|
|
44
|
-
"types": "./
|
|
45
|
-
"default": "./fesm2022/onemrvapublic-design-system-
|
|
43
|
+
"./mat-address": {
|
|
44
|
+
"types": "./mat-address/index.d.ts",
|
|
45
|
+
"default": "./fesm2022/onemrvapublic-design-system-mat-address.mjs"
|
|
46
46
|
},
|
|
47
47
|
"./layout": {
|
|
48
48
|
"types": "./layout/index.d.ts",
|
|
49
49
|
"default": "./fesm2022/onemrvapublic-design-system-layout.mjs"
|
|
50
50
|
},
|
|
51
|
-
"./mat-address": {
|
|
52
|
-
"types": "./mat-address/index.d.ts",
|
|
53
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-address.mjs"
|
|
54
|
-
},
|
|
55
51
|
"./mat-avatar": {
|
|
56
52
|
"types": "./mat-avatar/index.d.ts",
|
|
57
53
|
"default": "./fesm2022/onemrvapublic-design-system-mat-avatar.mjs"
|
|
@@ -64,6 +60,10 @@
|
|
|
64
60
|
"types": "./mat-carousel/index.d.ts",
|
|
65
61
|
"default": "./fesm2022/onemrvapublic-design-system-mat-carousel.mjs"
|
|
66
62
|
},
|
|
63
|
+
"./flag-icon": {
|
|
64
|
+
"types": "./flag-icon/index.d.ts",
|
|
65
|
+
"default": "./fesm2022/onemrvapublic-design-system-flag-icon.mjs"
|
|
66
|
+
},
|
|
67
67
|
"./mat-choice-chip": {
|
|
68
68
|
"types": "./mat-choice-chip/index.d.ts",
|
|
69
69
|
"default": "./fesm2022/onemrvapublic-design-system-mat-choice-chip.mjs"
|
|
@@ -76,14 +76,14 @@
|
|
|
76
76
|
"types": "./mat-country-item/index.d.ts",
|
|
77
77
|
"default": "./fesm2022/onemrvapublic-design-system-mat-country-item.mjs"
|
|
78
78
|
},
|
|
79
|
-
"./mat-datepicker-header": {
|
|
80
|
-
"types": "./mat-datepicker-header/index.d.ts",
|
|
81
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-datepicker-header.mjs"
|
|
82
|
-
},
|
|
83
79
|
"./mat-empty-row": {
|
|
84
80
|
"types": "./mat-empty-row/index.d.ts",
|
|
85
81
|
"default": "./fesm2022/onemrvapublic-design-system-mat-empty-row.mjs"
|
|
86
82
|
},
|
|
83
|
+
"./mat-datepicker-header": {
|
|
84
|
+
"types": "./mat-datepicker-header/index.d.ts",
|
|
85
|
+
"default": "./fesm2022/onemrvapublic-design-system-mat-datepicker-header.mjs"
|
|
86
|
+
},
|
|
87
87
|
"./mat-file-upload": {
|
|
88
88
|
"types": "./mat-file-upload/index.d.ts",
|
|
89
89
|
"default": "./fesm2022/onemrvapublic-design-system-mat-file-upload.mjs"
|
|
@@ -104,14 +104,14 @@
|
|
|
104
104
|
"types": "./mat-input-enterprise-number/index.d.ts",
|
|
105
105
|
"default": "./fesm2022/onemrvapublic-design-system-mat-input-enterprise-number.mjs"
|
|
106
106
|
},
|
|
107
|
-
"./mat-input-iban": {
|
|
108
|
-
"types": "./mat-input-iban/index.d.ts",
|
|
109
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-input-iban.mjs"
|
|
110
|
-
},
|
|
111
107
|
"./mat-input-phone": {
|
|
112
108
|
"types": "./mat-input-phone/index.d.ts",
|
|
113
109
|
"default": "./fesm2022/onemrvapublic-design-system-mat-input-phone.mjs"
|
|
114
110
|
},
|
|
111
|
+
"./mat-input-iban": {
|
|
112
|
+
"types": "./mat-input-iban/index.d.ts",
|
|
113
|
+
"default": "./fesm2022/onemrvapublic-design-system-mat-input-iban.mjs"
|
|
114
|
+
},
|
|
115
115
|
"./mat-message-box": {
|
|
116
116
|
"types": "./mat-message-box/index.d.ts",
|
|
117
117
|
"default": "./fesm2022/onemrvapublic-design-system-mat-message-box.mjs"
|
|
@@ -172,14 +172,14 @@
|
|
|
172
172
|
"types": "./mat-sticker/index.d.ts",
|
|
173
173
|
"default": "./fesm2022/onemrvapublic-design-system-mat-sticker.mjs"
|
|
174
174
|
},
|
|
175
|
-
"./mat-table-of-content": {
|
|
176
|
-
"types": "./mat-table-of-content/index.d.ts",
|
|
177
|
-
"default": "./fesm2022/onemrvapublic-design-system-mat-table-of-content.mjs"
|
|
178
|
-
},
|
|
179
175
|
"./mat-task-list": {
|
|
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"
|