@tekkare/auriga 0.1.110 → 0.1.112
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/allIcons.vue +2 -637
- package/dist/runtime/components/allIcons2.vue +689 -0
- package/dist/runtime/components/allIcons2.vue.d.ts +6 -0
- package/dist/runtime/components/argFooter.vue +17 -5
- package/dist/runtime/components/argFooter.vue.d.ts +15 -1
- package/dist/runtime/components/argHomeAllBlocks.vue +1 -1
- package/dist/runtime/components/argHomeAllBlocks.vue.d.ts +3 -2
- package/dist/runtime/components/argHomeHeader.vue +1 -1
- package/dist/runtime/components/argHomeLayout.vue +11 -2
- package/dist/runtime/components/argHomeLayout.vue.d.ts +15 -1
- package/dist/runtime/components/argHomeSelectedBlock.vue +2 -2
- package/dist/runtime/components/argMainLayout.vue +8 -1
- package/dist/runtime/components/argMainLayout.vue.d.ts +11 -0
- package/package.json +1 -1
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="oip_footer">
|
|
3
|
-
<p
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
>
|
|
3
|
+
<p>
|
|
4
|
+
©2023 Tekkare®.
|
|
5
|
+
{{ lang === "fr" ? "Tous droits réservés" : "All rights reserved" }}
|
|
6
|
+
</p>
|
|
7
|
+
<a href="https://openinnovationprogram.com/legal-notices" target="_blank">{{
|
|
8
|
+
lang === "fr" ? "Mentions légales" : "Terms of use"
|
|
9
|
+
}}</a>
|
|
7
10
|
</div>
|
|
8
11
|
</template>
|
|
9
12
|
<script>
|
|
@@ -13,7 +16,16 @@ import {
|
|
|
13
16
|
import argStyle from "./argStyle.vue";
|
|
14
17
|
export default defineComponent({
|
|
15
18
|
name: "argFooter",
|
|
16
|
-
components: { argStyle }
|
|
19
|
+
components: { argStyle },
|
|
20
|
+
props: {
|
|
21
|
+
lang: {
|
|
22
|
+
type: String,
|
|
23
|
+
default: "en",
|
|
24
|
+
validator: (value) => {
|
|
25
|
+
return ["en", "fr"].includes(value);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
17
29
|
});
|
|
18
30
|
</script>
|
|
19
31
|
<style scoped>
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
lang: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
validator: (value: string) => boolean;
|
|
6
|
+
};
|
|
7
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
lang: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
validator: (value: string) => boolean;
|
|
12
|
+
};
|
|
13
|
+
}>>, {
|
|
14
|
+
lang: string;
|
|
15
|
+
}, {}>;
|
|
2
16
|
export default _default;
|
|
@@ -13,7 +13,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13
13
|
};
|
|
14
14
|
appBlocks: {
|
|
15
15
|
type: ArrayConstructor;
|
|
16
|
-
|
|
16
|
+
default: () => never[];
|
|
17
17
|
};
|
|
18
18
|
globalBlocks: {
|
|
19
19
|
type: ArrayConstructor;
|
|
@@ -55,7 +55,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
55
55
|
};
|
|
56
56
|
appBlocks: {
|
|
57
57
|
type: ArrayConstructor;
|
|
58
|
-
|
|
58
|
+
default: () => never[];
|
|
59
59
|
};
|
|
60
60
|
globalBlocks: {
|
|
61
61
|
type: ArrayConstructor;
|
|
@@ -82,6 +82,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
82
82
|
title: string;
|
|
83
83
|
globalTitle: string;
|
|
84
84
|
searchPlaceholder: string;
|
|
85
|
+
appBlocks: unknown[];
|
|
85
86
|
globalBlocks: unknown[];
|
|
86
87
|
hasGlobal: boolean;
|
|
87
88
|
customizeBlocks: boolean;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<div class="arg_home_layout_body">
|
|
6
6
|
<slot name="body" />
|
|
7
7
|
</div>
|
|
8
|
-
<argFooter class="full_width_footer" />
|
|
8
|
+
<argFooter :lang="lang" class="full_width_footer" />
|
|
9
9
|
</div>
|
|
10
10
|
</template>
|
|
11
11
|
<script>
|
|
@@ -16,7 +16,16 @@ import argStyle from "./argStyle.vue";
|
|
|
16
16
|
import argFooter from "./argFooter.vue";
|
|
17
17
|
export default defineComponent({
|
|
18
18
|
name: "argHomeLayout",
|
|
19
|
-
components: { argStyle, argFooter }
|
|
19
|
+
components: { argStyle, argFooter },
|
|
20
|
+
props: {
|
|
21
|
+
lang: {
|
|
22
|
+
type: String,
|
|
23
|
+
default: "en",
|
|
24
|
+
validator: (value) => {
|
|
25
|
+
return ["en", "fr"].includes(value);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
20
29
|
});
|
|
21
30
|
</script>
|
|
22
31
|
<style>
|
|
@@ -1,2 +1,16 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
lang: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
validator: (value: string) => boolean;
|
|
6
|
+
};
|
|
7
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
lang: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
validator: (value: string) => boolean;
|
|
12
|
+
};
|
|
13
|
+
}>>, {
|
|
14
|
+
lang: string;
|
|
15
|
+
}, {}>;
|
|
2
16
|
export default _default;
|
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
</div>
|
|
7
7
|
<div class="theme_select_message">
|
|
8
8
|
<p class="theme_title">
|
|
9
|
-
{{ lang === "en" ? "Select a theme" : "
|
|
9
|
+
{{ lang === "en" ? "Select a theme" : "Choisissez un thème" }}
|
|
10
10
|
</p>
|
|
11
11
|
<p class="theme_descr">
|
|
12
12
|
{{
|
|
13
13
|
lang === "en"
|
|
14
14
|
? "Select a theme to display the analyses available within it."
|
|
15
|
-
: "
|
|
15
|
+
: "Choisissez un thème pour afficher les analyses disponibles."
|
|
16
16
|
}}
|
|
17
17
|
</p>
|
|
18
18
|
</div>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<slot name="body" />
|
|
16
16
|
</div>
|
|
17
17
|
</div>
|
|
18
|
-
<argFooter />
|
|
18
|
+
<argFooter :lang="lang" />
|
|
19
19
|
</div>
|
|
20
20
|
</template>
|
|
21
21
|
<script>
|
|
@@ -39,6 +39,13 @@ export default defineComponent({
|
|
|
39
39
|
toolbarOpen: {
|
|
40
40
|
type: Boolean,
|
|
41
41
|
default: false
|
|
42
|
+
},
|
|
43
|
+
lang: {
|
|
44
|
+
type: String,
|
|
45
|
+
default: "en",
|
|
46
|
+
validator: (value) => {
|
|
47
|
+
return ["en", "fr"].includes(value);
|
|
48
|
+
}
|
|
42
49
|
}
|
|
43
50
|
},
|
|
44
51
|
setup() {
|
|
@@ -7,6 +7,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
type: BooleanConstructor;
|
|
8
8
|
default: boolean;
|
|
9
9
|
};
|
|
10
|
+
lang: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
validator: (value: string) => boolean;
|
|
14
|
+
};
|
|
10
15
|
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
16
|
sidebarOpen: {
|
|
12
17
|
type: BooleanConstructor;
|
|
@@ -16,7 +21,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16
21
|
type: BooleanConstructor;
|
|
17
22
|
default: boolean;
|
|
18
23
|
};
|
|
24
|
+
lang: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
validator: (value: string) => boolean;
|
|
28
|
+
};
|
|
19
29
|
}>>, {
|
|
30
|
+
lang: string;
|
|
20
31
|
sidebarOpen: boolean;
|
|
21
32
|
toolbarOpen: boolean;
|
|
22
33
|
}, {}>;
|