@onemrvapublic/design-system 21.7.4-develop.1 → 21.7.4-develop.3
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/palettes/_palette.scss +9 -9
- 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.4-develop.
|
|
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.3';\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
|
@@ -135,14 +135,14 @@ $palette: (
|
|
|
135
135
|
30: #301ed3,
|
|
136
136
|
35: #3e32de,
|
|
137
137
|
40: #463ce5,
|
|
138
|
-
50: #
|
|
139
|
-
60: #
|
|
140
|
-
70: #
|
|
141
|
-
80: #
|
|
142
|
-
90: #
|
|
143
|
-
95: #
|
|
144
|
-
98: #
|
|
145
|
-
99: #
|
|
138
|
+
50: #6159ea,
|
|
139
|
+
60: #7b75ef,
|
|
140
|
+
70: #9a96f5,
|
|
141
|
+
80: #bab7f9,
|
|
142
|
+
90: #e0e0fc,
|
|
143
|
+
95: #eae9fe,
|
|
144
|
+
98: #f5f4ff,
|
|
145
|
+
99: #fbfaff,
|
|
146
146
|
100: #ffffff,
|
|
147
147
|
),
|
|
148
148
|
warn: (
|
|
@@ -182,7 +182,7 @@ $palette: (
|
|
|
182
182
|
90: #ebfff4,
|
|
183
183
|
// replaced previous bright green with this
|
|
184
184
|
95: #f3fff8,
|
|
185
|
-
98: #
|
|
185
|
+
98: #f8fffa,
|
|
186
186
|
99: #fbfffd,
|
|
187
187
|
100: #ffffff,
|
|
188
188
|
),
|