@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 CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.1.47"
7
+ "version": "0.1.48"
8
8
  }
@@ -139,7 +139,7 @@ export default defineComponent({
139
139
  gap: 8px;
140
140
  border: 1px solid var(--dividers);
141
141
  border-radius: 8px;
142
- font-weight: 700;
142
+ font-weight: 600;
143
143
  font-size: 14px;
144
144
  line-height: 16px;
145
145
  height: 40px;
@@ -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="infoBar" />
12
- <slot name="infoSection" />
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
- min-width: 100px;
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: -16px;
155
+ right: -22px;
157
156
  }
158
157
 
159
158
  .scope_change_display {
@@ -28,7 +28,7 @@ import {
28
28
  import argIcon from "./argIcon.vue";
29
29
  import argTooltip from "./argTooltip.vue";
30
30
  export default defineComponent({
31
- name: "argInfoBar",
31
+ name: "argToolbar",
32
32
  components: { argIcon, argTooltip },
33
33
  props: {
34
34
  infoArray: {
@@ -59,7 +59,7 @@ import {
59
59
  } from "vue";
60
60
  import argIcon from "./argIcon.vue";
61
61
  export default defineComponent({
62
- name: "argInfoSection",
62
+ name: "argToolbarContent",
63
63
  components: { argIcon },
64
64
  props: {
65
65
  openInfo: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.1.47",
3
+ "version": "0.1.48",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",