@tekkare/auriga 0.1.65 → 0.1.66
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
|
@@ -261,8 +261,15 @@ export default defineComponent({
|
|
|
261
261
|
formatter(value, { series, seriesIndex, dataPointIndex, w }) {
|
|
262
262
|
return value;
|
|
263
263
|
}
|
|
264
|
-
}
|
|
264
|
+
},
|
|
265
|
+
shared: false
|
|
265
266
|
};
|
|
267
|
+
props.options["tooltip"].style = { fontFamily: "Figtree" };
|
|
268
|
+
if (props.options.tooltip.shared !== void 0 && props.options.tooltip.shared === false) {
|
|
269
|
+
Object.assign(props.options["xaxis"], {
|
|
270
|
+
tooltip: { enabled: false }
|
|
271
|
+
});
|
|
272
|
+
}
|
|
266
273
|
} else if (props.type === "bar-column" || props.type === "bar") {
|
|
267
274
|
let predefinedColors = false;
|
|
268
275
|
if (props.colors) {
|
|
@@ -5,9 +5,15 @@
|
|
|
5
5
|
<arg-icon name="HandPointing" color="var(--cool-grey)" size="32" />
|
|
6
6
|
</div>
|
|
7
7
|
<div class="theme_select_message">
|
|
8
|
-
<p class="theme_title">
|
|
8
|
+
<p class="theme_title">
|
|
9
|
+
{{ lang === "en" ? "Select a theme" : "Choissiez un thème" }}
|
|
10
|
+
</p>
|
|
9
11
|
<p class="theme_descr">
|
|
10
|
-
|
|
12
|
+
{{
|
|
13
|
+
lang === "en"
|
|
14
|
+
? "Select a theme to display the analyses available within it."
|
|
15
|
+
: "Choissiez un thème pour afficher les analyses disponibles"
|
|
16
|
+
}}
|
|
11
17
|
</p>
|
|
12
18
|
</div>
|
|
13
19
|
</div>
|
|
@@ -44,7 +50,7 @@
|
|
|
44
50
|
sidebar-open
|
|
45
51
|
:label="item.linkName"
|
|
46
52
|
:to="item.linkUrl"
|
|
47
|
-
:icon="item.
|
|
53
|
+
:icon="item.linkIcon"
|
|
48
54
|
/>
|
|
49
55
|
</div>
|
|
50
56
|
</div>
|
|
@@ -67,6 +73,13 @@ export default defineComponent({
|
|
|
67
73
|
selected: {
|
|
68
74
|
type: Object,
|
|
69
75
|
default: null
|
|
76
|
+
},
|
|
77
|
+
lang: {
|
|
78
|
+
type: String,
|
|
79
|
+
default: "en",
|
|
80
|
+
validator: (value) => {
|
|
81
|
+
return ["en", "fr"].includes(value);
|
|
82
|
+
}
|
|
70
83
|
}
|
|
71
84
|
}
|
|
72
85
|
});
|
|
@@ -3,12 +3,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3
3
|
type: ObjectConstructor;
|
|
4
4
|
default: null;
|
|
5
5
|
};
|
|
6
|
+
lang: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
validator: (value: string) => boolean;
|
|
10
|
+
};
|
|
6
11
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
12
|
selected: {
|
|
8
13
|
type: ObjectConstructor;
|
|
9
14
|
default: null;
|
|
10
15
|
};
|
|
16
|
+
lang: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
validator: (value: string) => boolean;
|
|
20
|
+
};
|
|
11
21
|
}>>, {
|
|
22
|
+
lang: string;
|
|
12
23
|
selected: Record<string, any>;
|
|
13
24
|
}, {}>;
|
|
14
25
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekkare/auriga",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.66",
|
|
4
4
|
"description": "Aurgia is a UI kit developped by Tekkare",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
"changelogen": "^0.5.5",
|
|
46
46
|
"eslint": "^8.49.0",
|
|
47
47
|
"nuxt": "^3.7.3",
|
|
48
|
-
"storybook-addon-nuxt": "^1.3.3",
|
|
49
48
|
"vitest": "^0.33.0"
|
|
50
49
|
},
|
|
51
50
|
"author": "Tekkare"
|