shared-ritm 1.2.89 → 1.2.90
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/dist/index.css +1 -1
- package/dist/shared-ritm.es.js +2257 -2259
- package/dist/shared-ritm.umd.js +106 -106
- package/package.json +1 -1
- package/src/common/app-sheet-new/AppSheetNew.vue +4 -5
package/package.json
CHANGED
|
@@ -7,15 +7,14 @@
|
|
|
7
7
|
no-shake
|
|
8
8
|
no-esc-dismiss
|
|
9
9
|
full-height
|
|
10
|
-
full-width
|
|
11
10
|
@update:model-value="emit('update:modelValue', $event)"
|
|
12
11
|
>
|
|
13
|
-
<div v-if="loading" class="custom-wrapper">
|
|
12
|
+
<div v-if="loading" class="custom-wrapper" :style="{ width }">
|
|
14
13
|
<div class="loader">
|
|
15
14
|
<q-spinner-audio v-if="loading" class="loader-spinner" size="md" :thickness="3" color="primary" />
|
|
16
15
|
</div>
|
|
17
16
|
</div>
|
|
18
|
-
<div v-else class="wrapper">
|
|
17
|
+
<div v-else class="wrapper" :style="{ width }">
|
|
19
18
|
<div v-if="tabs?.length" class="sidebar" :class="{ noTitle: !tabsTitle }" :style="{ width: sidebarWidth }">
|
|
20
19
|
<h5 v-if="tabsTitle">{{ tabsTitle }}</h5>
|
|
21
20
|
<q-tabs
|
|
@@ -102,7 +101,7 @@ const currTabId = computed({
|
|
|
102
101
|
|
|
103
102
|
<style lang="scss" scoped>
|
|
104
103
|
.custom-wrapper {
|
|
105
|
-
width:
|
|
104
|
+
max-width: unset;
|
|
106
105
|
background-color: white;
|
|
107
106
|
}
|
|
108
107
|
|
|
@@ -122,6 +121,7 @@ const currTabId = computed({
|
|
|
122
121
|
overflow: hidden;
|
|
123
122
|
font-family: 'NunitoSansFont', sans-serif;
|
|
124
123
|
color: #3f414d;
|
|
124
|
+
max-width: unset;
|
|
125
125
|
}
|
|
126
126
|
|
|
127
127
|
.sidebar {
|
|
@@ -184,7 +184,6 @@ const currTabId = computed({
|
|
|
184
184
|
<style lang="scss" module>
|
|
185
185
|
.sheet-dialog {
|
|
186
186
|
:global(.q-dialog__inner) {
|
|
187
|
-
width: v-bind(width);
|
|
188
187
|
max-width: 95vw;
|
|
189
188
|
}
|
|
190
189
|
|