@onemrvapublic/design-system 21.7.3 → 21.7.4-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/README.md +3 -3
- package/fesm2022/onemrvapublic-design-system-layout.mjs +12 -4
- package/fesm2022/onemrvapublic-design-system-layout.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/layout.component.scss +11 -2
- package/package.json +1 -1
- package/theme/overrides/_button.scss +9 -1
- 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.4-develop.2';\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;;;;"}
|
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
--sideNavWidthFull: 240px;
|
|
7
7
|
--sideNavWidthCollapsed: 56px;
|
|
8
8
|
--sideNavWidth: var(--sideNavWidthFull);
|
|
9
|
+
--mainContentSize: calc(
|
|
10
|
+
100vh - var(--layout-header-height) - var(--layout-footer-height)
|
|
11
|
+
);
|
|
9
12
|
|
|
10
13
|
position: relative;
|
|
11
14
|
|
|
@@ -176,7 +179,7 @@
|
|
|
176
179
|
position: relative;
|
|
177
180
|
width: 100%;
|
|
178
181
|
overflow-y: auto;
|
|
179
|
-
max-height:
|
|
182
|
+
max-height: var(--mainContentSize);
|
|
180
183
|
max-width: calc(100vw - var(--sideNavWidth));
|
|
181
184
|
transition: max-width 0.3s ease;
|
|
182
185
|
|
|
@@ -191,7 +194,7 @@
|
|
|
191
194
|
max-width: 1400px;
|
|
192
195
|
margin-left: auto;
|
|
193
196
|
margin-right: auto;
|
|
194
|
-
min-height: calc(
|
|
197
|
+
min-height: calc(var(--mainContentSize) - 60px);
|
|
195
198
|
}
|
|
196
199
|
}
|
|
197
200
|
|
|
@@ -237,6 +240,12 @@
|
|
|
237
240
|
width: 99% !important;
|
|
238
241
|
}
|
|
239
242
|
}
|
|
243
|
+
|
|
244
|
+
.onemrva-footer {
|
|
245
|
+
height: var(--layout-footer-height);
|
|
246
|
+
max-height: var(--layout-footer-height);
|
|
247
|
+
overflow: hidden;
|
|
248
|
+
}
|
|
240
249
|
}
|
|
241
250
|
|
|
242
251
|
nav a.disabled {
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
outlined-hover-state-layer-opacity: 0,
|
|
17
17
|
outlined-focus-state-layer-opacity: 0,
|
|
18
18
|
outlined-pressed-state-layer-opacity: 0,
|
|
19
|
-
|
|
19
|
+
filled-disabled-label-text-color: var(--mat-sys-on-primary),
|
|
20
20
|
filled-horizontal-padding: var(--double-spacer),
|
|
21
21
|
filled-container-height: 2.25rem,
|
|
22
22
|
filled-label-text-color: var(--on-background-gradient),
|
|
@@ -32,6 +32,13 @@
|
|
|
32
32
|
box-shadow: var(--mat-sys-level2);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
+
|
|
36
|
+
.mat-mdc-unelevated-button[disabled],
|
|
37
|
+
.mat-mdc-unelevated-button.mat-mdc-button-disabled {
|
|
38
|
+
background: var(--background-gradient) !important;
|
|
39
|
+
opacity: 0.4;
|
|
40
|
+
}
|
|
41
|
+
|
|
35
42
|
.mdc-button,
|
|
36
43
|
.mdc-icon-button {
|
|
37
44
|
// transition: all 1s ease; // has issues with WAVE when used in dialod, should be removed ?
|
|
@@ -118,6 +125,7 @@
|
|
|
118
125
|
}
|
|
119
126
|
}
|
|
120
127
|
}
|
|
128
|
+
|
|
121
129
|
&.small {
|
|
122
130
|
@include mat.button-overrides(
|
|
123
131
|
(
|