@onemrvapublic/design-system 21.7.5 → 21.7.6-develop.1
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/README.md +4 -15
- package/fesm2022/onemrvapublic-design-system-layout.mjs +6 -6
- package/fesm2022/onemrvapublic-design-system-layout.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-mat-notification.mjs +6 -7
- package/fesm2022/onemrvapublic-design-system-mat-notification.mjs.map +1 -1
- package/fesm2022/onemrvapublic-design-system-shared.mjs +1 -1
- package/fesm2022/onemrvapublic-design-system-shared.mjs.map +1 -1
- package/fesm2022/onemrvapublic-design-system.mjs +1 -1
- package/fesm2022/onemrvapublic-design-system.mjs.map +1 -1
- package/layout/src/components/layout-drawer-actions/layout-drawer-actions.component.scss +2 -2
- package/layout/src/components/layout-drawer-content/layout-drawer-content.component.scss +2 -3
- package/layout/src/components/layout-drawer-title/layout-drawer-title.component.scss +12 -8
- package/mat-navigation/src/mat-navigation-item/onemrva-mat-navigation-item.component.scss +4 -0
- package/package.json +1 -1
- package/types/onemrvapublic-design-system-mat-notification.d.ts +2 -3
- package/types/onemrvapublic-design-system.d.ts +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"onemrvapublic-design-system.mjs","sources":["../../../../projects/onemrva/design-system/version.ts","../../../../projects/onemrva/design-system/index.ts","../../../../projects/onemrva/design-system/onemrvapublic-design-system.ts"],"sourcesContent":["// Auto-generated — do not edit\nexport const VERSION = '21.7.
|
|
1
|
+
{"version":3,"file":"onemrvapublic-design-system.mjs","sources":["../../../../projects/onemrva/design-system/version.ts","../../../../projects/onemrva/design-system/index.ts","../../../../projects/onemrva/design-system/onemrvapublic-design-system.ts"],"sourcesContent":["// Auto-generated — do not edit\nexport const VERSION = '21.7.6-develop.1';\n","export { VERSION } from './version';\n\nexport const ɵɵtsModuleIndicatorApiExtractorWorkaround = true;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAA;AACO,MAAM,OAAO,GAAG;;ACChB,MAAM,yCAAyC,GAAG;;ACFzD;;AAEG;;;;"}
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
:host {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: space-between;
|
|
4
|
+
align-items: center;
|
|
5
|
+
padding: var(--double-spacer) 0;
|
|
6
6
|
|
|
7
7
|
span:first-child {
|
|
8
|
-
font: var(--mat-sys-title-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
font: var(--mat-sys-title-medium);
|
|
9
|
+
font-size: 20px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.close-drawer {
|
|
13
|
+
display: flex;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
align-items: center;
|
|
12
16
|
}
|
|
13
17
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
:host {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
width: var(--sideNavWidthFull);
|
|
2
5
|
&.highlighted2 {
|
|
3
6
|
.mobile-menu-item {
|
|
4
7
|
transition: border-left 0.4s ease;
|
|
@@ -12,6 +15,7 @@
|
|
|
12
15
|
}
|
|
13
16
|
}
|
|
14
17
|
.mobile-menu-item {
|
|
18
|
+
overflow: hidden;
|
|
15
19
|
display: flex;
|
|
16
20
|
width: 100%;
|
|
17
21
|
background: var(--mat-sys-background);
|
package/package.json
CHANGED
|
@@ -7,9 +7,8 @@ declare class OnemrvaMatNotificationComponent implements OnDestroy {
|
|
|
7
7
|
readonly closable: _angular_core.InputSignal<boolean>;
|
|
8
8
|
readonly id: _angular_core.InputSignal<string>;
|
|
9
9
|
readonly dataCy: _angular_core.InputSignal<string>;
|
|
10
|
-
|
|
10
|
+
isOpen: _angular_core.ModelSignal<boolean>;
|
|
11
11
|
readonly notificationClose: _angular_core.OutputEmitterRef<void>;
|
|
12
|
-
protected readonly _closed: _angular_core.Signal<boolean>;
|
|
13
12
|
private destroyNotifier$;
|
|
14
13
|
isSmall: boolean;
|
|
15
14
|
breakpointObserver: BreakpointObserver;
|
|
@@ -17,7 +16,7 @@ declare class OnemrvaMatNotificationComponent implements OnDestroy {
|
|
|
17
16
|
ngOnDestroy(): void;
|
|
18
17
|
closeNotification(): void;
|
|
19
18
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OnemrvaMatNotificationComponent, never>;
|
|
20
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OnemrvaMatNotificationComponent, "onemrva-mat-notification", never, { "message": { "alias": "message"; "required": false; "isSignal": true; }; "closable": { "alias": "closable"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "dataCy": { "alias": "dataCy"; "required": false; "isSignal": true; }; }, { "notificationClose": "notificationClose"; }, never, ["*"], true, never>;
|
|
19
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OnemrvaMatNotificationComponent, "onemrva-mat-notification", never, { "message": { "alias": "message"; "required": false; "isSignal": true; }; "closable": { "alias": "closable"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "dataCy": { "alias": "dataCy"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; }, { "isOpen": "isOpenChange"; "notificationClose": "notificationClose"; }, never, ["*"], true, never>;
|
|
21
20
|
}
|
|
22
21
|
|
|
23
22
|
export { OnemrvaMatNotificationComponent };
|