@tekkare/auriga 0.1.191 → 0.2.1
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
|
@@ -59,7 +59,8 @@
|
|
|
59
59
|
|
|
60
60
|
<div class="oip_select_complex_add_all">
|
|
61
61
|
<div class="oip_row v-center gap-8">
|
|
62
|
-
<p class="oip_subtitle">{{ getCustomText[lang] }}</p>
|
|
62
|
+
<p v-if="smart_selection_table !== null" class="oip_subtitle">{{ getCustomText[lang] }}</p>
|
|
63
|
+
<p v-else class="oip_subtitle">{{ getAddText[lang] }}</p>
|
|
63
64
|
<p
|
|
64
65
|
v-if="max_amount === null"
|
|
65
66
|
class="add_all_action"
|
|
@@ -271,6 +272,11 @@ export default defineComponent({
|
|
|
271
272
|
fr: "Ou s\xE9lection sur mesure",
|
|
272
273
|
es: "O selecci\xF3n personalizada"
|
|
273
274
|
};
|
|
275
|
+
const getAddText = {
|
|
276
|
+
en: "Custom selection",
|
|
277
|
+
fr: "S\xE9lection sur mesure",
|
|
278
|
+
es: "Dselecci\xF3n personalizada"
|
|
279
|
+
};
|
|
274
280
|
const getAddAllText = {
|
|
275
281
|
en: "Select all",
|
|
276
282
|
fr: "Tout s\xE9lectionner",
|
|
@@ -609,7 +615,8 @@ export default defineComponent({
|
|
|
609
615
|
getLeft,
|
|
610
616
|
getCustomText,
|
|
611
617
|
getAddAllText,
|
|
612
|
-
noSelectionMsg
|
|
618
|
+
noSelectionMsg,
|
|
619
|
+
getAddText
|
|
613
620
|
};
|
|
614
621
|
}
|
|
615
622
|
});
|
|
@@ -177,6 +177,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
177
177
|
fr: string;
|
|
178
178
|
es: string;
|
|
179
179
|
};
|
|
180
|
+
getAddText: {
|
|
181
|
+
en: string;
|
|
182
|
+
fr: string;
|
|
183
|
+
es: string;
|
|
184
|
+
};
|
|
180
185
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("changeElement" | "changeAddInputValue" | "update:Selection")[], "changeElement" | "changeAddInputValue" | "update:Selection", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
181
186
|
element_table: {
|
|
182
187
|
type: {
|