@swiss-ai-hub/web 0.297.6 → 0.297.8
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.
|
@@ -31,12 +31,14 @@
|
|
|
31
31
|
v-model="event"
|
|
32
32
|
:options="eventOptions"
|
|
33
33
|
option-label="label"
|
|
34
|
+
append-to="self"
|
|
34
35
|
:placeholder="t('dashboard.select_data_type')"
|
|
35
36
|
/>
|
|
36
37
|
<Select
|
|
37
38
|
v-model="agent"
|
|
38
39
|
:options="agentInstances"
|
|
39
40
|
option-label="agent_config.name"
|
|
41
|
+
append-to="self"
|
|
40
42
|
:placeholder="t('dashboard.select_agent')"
|
|
41
43
|
:loading="agentInstancesAreLoading"
|
|
42
44
|
show-clear
|
|
@@ -124,6 +124,7 @@ const chartOptions = computed<ApexOptions>(() => {
|
|
|
124
124
|
type: 'bar',
|
|
125
125
|
height: props.height,
|
|
126
126
|
stacked: true,
|
|
127
|
+
offsetY: 20,
|
|
127
128
|
toolbar: {
|
|
128
129
|
show: false,
|
|
129
130
|
},
|
|
@@ -155,6 +156,7 @@ const chartOptions = computed<ApexOptions>(() => {
|
|
|
155
156
|
{
|
|
156
157
|
breakpoint: 480,
|
|
157
158
|
options: {
|
|
159
|
+
chart: { offsetY: 0 },
|
|
158
160
|
legend: {
|
|
159
161
|
position: 'bottom',
|
|
160
162
|
offsetX: -10,
|
|
@@ -193,7 +195,7 @@ const chartOptions = computed<ApexOptions>(() => {
|
|
|
193
195
|
show: true,
|
|
194
196
|
showForSingleSeries: true,
|
|
195
197
|
position: 'top',
|
|
196
|
-
offsetY:
|
|
198
|
+
offsetY: 35,
|
|
197
199
|
},
|
|
198
200
|
fill: {
|
|
199
201
|
opacity: 1,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"license": "AGPL-3.0-or-later",
|
|
4
4
|
"author": "bbv Software Services AG (https://www.bbv.ch)",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "0.297.
|
|
6
|
+
"version": "0.297.8",
|
|
7
7
|
"description": "Swiss AI Hub - Admin & Management UI (Nuxt 3 layer)",
|
|
8
8
|
"main": "./nuxt.config.ts",
|
|
9
9
|
"repository": {
|