@wolkabout/commons 0.0.18 → 0.0.19
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.
|
@@ -5158,15 +5158,15 @@ class MasterDetailsViewComponent {
|
|
|
5158
5158
|
calculateWidth() {
|
|
5159
5159
|
switch (this.displayRatio) {
|
|
5160
5160
|
case 'full':
|
|
5161
|
-
return '
|
|
5161
|
+
return 'w-1/5 max-w-1/5';
|
|
5162
5162
|
case 'wide':
|
|
5163
|
-
return '
|
|
5163
|
+
return 'w-1/4 max-w-1/4';
|
|
5164
5164
|
case 'medium':
|
|
5165
|
-
return '
|
|
5165
|
+
return 'w-1/3 max-w-1/3';
|
|
5166
5166
|
case 'narrow':
|
|
5167
|
-
return '
|
|
5167
|
+
return 'w-1/2 max-w-1/2';
|
|
5168
5168
|
case 'reverse':
|
|
5169
|
-
return '
|
|
5169
|
+
return 'w-3/4 max-w-3/4';
|
|
5170
5170
|
default:
|
|
5171
5171
|
throw Error('Too deep!');
|
|
5172
5172
|
}
|