@tekkare/auriga 0.1.137 → 0.1.138
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
|
@@ -356,5 +356,5 @@ export default defineComponent({
|
|
|
356
356
|
</script>
|
|
357
357
|
|
|
358
358
|
<style scoped>
|
|
359
|
-
.modal{align-items:center;background-color:rgba(0,0,0,.2);display:flex;height:
|
|
359
|
+
.modal{align-items:center;background-color:rgba(0,0,0,.2);display:flex;height:100vh;justify-content:center;left:0;overflow:auto;position:fixed;top:0;width:100%;z-index:100}.modal-content{background-color:#fff;border-radius:8px;display:flex;flex-direction:column;font-size:16px;font-weight:400;gap:24px;line-height:160%;padding:24px;width:420px}.modal-content,.modal_title{color:var(--Base-Darkest,#1e293b);font-family:Figtree;font-style:normal}.modal_title{font-size:20px;font-weight:900;line-height:normal}
|
|
360
360
|
</style>
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
: "you must list in your reports the sources used."
|
|
31
31
|
}}
|
|
32
32
|
</p>
|
|
33
|
-
<p>
|
|
33
|
+
<p v-if="showCopy">
|
|
34
34
|
{{
|
|
35
35
|
lang === "fr"
|
|
36
36
|
? "Le bouton “Copier” est prévu pour faciliter cette démarche."
|
|
@@ -59,6 +59,10 @@ export default defineComponent({
|
|
|
59
59
|
validator: (value) => {
|
|
60
60
|
return ["en", "fr", "es"].includes(value);
|
|
61
61
|
}
|
|
62
|
+
},
|
|
63
|
+
showCopy: {
|
|
64
|
+
type: Boolean,
|
|
65
|
+
default: true
|
|
62
66
|
}
|
|
63
67
|
}
|
|
64
68
|
});
|
|
@@ -4,13 +4,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4
4
|
default: string;
|
|
5
5
|
validator: (value: string) => boolean;
|
|
6
6
|
};
|
|
7
|
+
showCopy: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
7
11
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
12
|
lang: {
|
|
9
13
|
type: StringConstructor;
|
|
10
14
|
default: string;
|
|
11
15
|
validator: (value: string) => boolean;
|
|
12
16
|
};
|
|
17
|
+
showCopy: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
13
21
|
}>>, {
|
|
14
22
|
lang: string;
|
|
23
|
+
showCopy: boolean;
|
|
15
24
|
}, {}>;
|
|
16
25
|
export default _default;
|