@tekkare/auriga 0.1.47 → 0.1.48
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/module.json +1 -1
- package/dist/runtime/components/argCheckbox.vue +1 -1
- package/dist/runtime/components/argMainLayout.vue +2 -2
- package/dist/runtime/components/argScopeChange.vue +2 -3
- package/dist/runtime/components/{argInfoBar.vue → argToolbar.vue} +1 -1
- package/dist/runtime/components/{argInfoSection.vue → argToolbarContent.vue} +1 -1
- package/package.json +1 -1
- /package/dist/runtime/components/{argInfoBar.vue.d.ts → argToolbar.vue.d.ts} +0 -0
- /package/dist/runtime/components/{argInfoSection.vue.d.ts → argToolbarContent.vue.d.ts} +0 -0
package/dist/module.json
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
:class="infoOpen ? 'arg_info_open' : 'arg_info_closed'"
|
|
9
9
|
id="arg_info_section"
|
|
10
10
|
>
|
|
11
|
-
<slot name="
|
|
12
|
-
<slot name="
|
|
11
|
+
<slot name="toolbar" />
|
|
12
|
+
<slot name="toolbarContent" />
|
|
13
13
|
</div>
|
|
14
14
|
<div class="arg_main_layout_section" id="arg_main_layout_section">
|
|
15
15
|
<slot name="body" />
|
|
@@ -144,8 +144,7 @@ export default defineComponent({
|
|
|
144
144
|
z-index: 99 !important;
|
|
145
145
|
margin-top: 15px;
|
|
146
146
|
position: absolute;
|
|
147
|
-
|
|
148
|
-
max-height: 200px;
|
|
147
|
+
width: max-content;
|
|
149
148
|
border: 1.5px solid var(--dividers);
|
|
150
149
|
background: var(--demi-fond);
|
|
151
150
|
border-radius: 12px;
|
|
@@ -153,7 +152,7 @@ export default defineComponent({
|
|
|
153
152
|
padding: 16px;
|
|
154
153
|
display: flex;
|
|
155
154
|
flex-direction: column;
|
|
156
|
-
right: -
|
|
155
|
+
right: -22px;
|
|
157
156
|
}
|
|
158
157
|
|
|
159
158
|
.scope_change_display {
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|