@tekkare/auriga 0.2.133 → 0.2.135
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/argAdvancedSearchBar.vue +5 -1
- package/dist/runtime/components/argAdvancedSearchBar.vue.d.ts +9 -0
- package/dist/runtime/components/argGoogleMapsHeader.vue +1 -1
- package/dist/runtime/components/argGoogleMapsHeader.vue.d.ts +5 -0
- package/dist/runtime/components/argHomeSelectedBlock.vue +1 -0
- package/dist/runtime/components/argMapsFrDepartements.vue +1 -1
- package/dist/runtime/components/argMapsFrRegions.vue +1 -1
- package/dist/runtime/components/argSearchInput.vue.d.ts +1 -1
- package/dist/runtime/components/argSubMenu.vue +2 -1
- package/dist/runtime/components/argSubMenu.vue.d.ts +1 -0
- package/dist/runtime/components/argTipsBox.vue +1 -1
- package/package.json +4 -4
package/dist/module.json
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
</p>
|
|
26
26
|
</div>
|
|
27
27
|
<input
|
|
28
|
-
id="
|
|
28
|
+
:id="searchBarId"
|
|
29
29
|
v-model="value"
|
|
30
30
|
class="filters_input_style"
|
|
31
31
|
:placeholder="placeHolderValue"
|
|
@@ -289,6 +289,10 @@ export default defineComponent({
|
|
|
289
289
|
appName: {
|
|
290
290
|
type: String,
|
|
291
291
|
default: null
|
|
292
|
+
},
|
|
293
|
+
searchBarId: {
|
|
294
|
+
type: String,
|
|
295
|
+
default: "search_input_advanced"
|
|
292
296
|
}
|
|
293
297
|
},
|
|
294
298
|
emits: ["update:Value", "onClose", "onTyping"],
|
|
@@ -112,6 +112,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
112
112
|
type: StringConstructor;
|
|
113
113
|
default: null;
|
|
114
114
|
};
|
|
115
|
+
searchBarId: {
|
|
116
|
+
type: StringConstructor;
|
|
117
|
+
default: string;
|
|
118
|
+
};
|
|
115
119
|
}>, {
|
|
116
120
|
close: () => void;
|
|
117
121
|
changeDisplay: () => void;
|
|
@@ -290,6 +294,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
290
294
|
type: StringConstructor;
|
|
291
295
|
default: null;
|
|
292
296
|
};
|
|
297
|
+
searchBarId: {
|
|
298
|
+
type: StringConstructor;
|
|
299
|
+
default: string;
|
|
300
|
+
};
|
|
293
301
|
}>> & Readonly<{
|
|
294
302
|
"onUpdate:Value"?: ((...args: any[]) => any) | undefined;
|
|
295
303
|
onOnClose?: ((...args: any[]) => any) | undefined;
|
|
@@ -310,6 +318,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
310
318
|
posthogKey: string;
|
|
311
319
|
posthogHost: string;
|
|
312
320
|
appName: string;
|
|
321
|
+
searchBarId: string;
|
|
313
322
|
}, {}, {
|
|
314
323
|
argIcon: any;
|
|
315
324
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div>
|
|
3
|
-
<
|
|
3
|
+
<arg-google-maps :map-key="mapKey" :locations="locations" />
|
|
4
4
|
<div class="arg_google_maps_header_content">
|
|
5
5
|
<div class="arg_google_maps_header_icon">
|
|
6
6
|
<argIcon :name="icon" size="96px" :color="iconColor" />
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<div v-else class="oip_subtitle">
|
|
9
9
|
{{ title ? title : "Your map title" }}
|
|
10
10
|
</div>
|
|
11
|
-
<ArgSourceContainer @click="openSource">
|
|
11
|
+
<ArgSourceContainer v-if="source !== null" @click="openSource">
|
|
12
12
|
{{ source ? source : "Your source" }}
|
|
13
13
|
</ArgSourceContainer>
|
|
14
14
|
</div>
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<div v-else class="oip_subtitle">
|
|
9
9
|
{{ title ? title : "Your map title" }}
|
|
10
10
|
</div>
|
|
11
|
-
<ArgSourceContainer @click="openSource">
|
|
11
|
+
<ArgSourceContainer v-if="source !== null" @click="openSource">
|
|
12
12
|
{{ source ? source : "Your source" }}
|
|
13
13
|
</ArgSourceContainer>
|
|
14
14
|
</div>
|
|
@@ -124,8 +124,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
124
124
|
fuzzyThreshold: number;
|
|
125
125
|
loadingSuggs: boolean;
|
|
126
126
|
highlightInput: boolean;
|
|
127
|
-
defaultValue: string;
|
|
128
127
|
searchBarId: string;
|
|
128
|
+
defaultValue: string;
|
|
129
129
|
}, {}, {
|
|
130
130
|
argIcon: any;
|
|
131
131
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -44,9 +44,10 @@ import {
|
|
|
44
44
|
} from "vue";
|
|
45
45
|
import argIcon from "./argIcon.vue";
|
|
46
46
|
import argTooltip from "./argTooltip.vue";
|
|
47
|
+
import argFlag from "./argFlag.vue";
|
|
47
48
|
export default defineComponent({
|
|
48
49
|
name: "argSubMenu",
|
|
49
|
-
components: { argIcon, argTooltip },
|
|
50
|
+
components: { argIcon, argTooltip, argFlag },
|
|
50
51
|
props: {
|
|
51
52
|
label: { type: String, required: true },
|
|
52
53
|
icon: { type: String, default: null },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekkare/auriga",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.135",
|
|
4
4
|
"description": "Aurgia is a UI kit developped by Tekkare",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@vueuse/integrations": "^10.11.1",
|
|
40
40
|
"apexcharts": "^3.54.1",
|
|
41
41
|
"fuse.js": "^6.6.2",
|
|
42
|
-
"posthog-js": "^1.
|
|
42
|
+
"posthog-js": "^1.222.0",
|
|
43
43
|
"save": "^2.9.0",
|
|
44
44
|
"vue-apexcharts": "^1.7.0",
|
|
45
45
|
"vue-svg-map": "^1.2.0",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"@nuxt/eslint-config": "^0.2.0",
|
|
53
53
|
"@nuxt/module-builder": "^0.5.5",
|
|
54
54
|
"@nuxt/schema": "^3.15.4",
|
|
55
|
-
"@nuxt/test-utils": "^3.
|
|
56
|
-
"@types/node": "^18.19.
|
|
55
|
+
"@nuxt/test-utils": "^3.17.0",
|
|
56
|
+
"@types/node": "^18.19.76",
|
|
57
57
|
"changelogen": "^0.5.7",
|
|
58
58
|
"eslint": "^8.57.1",
|
|
59
59
|
"nuxt": "^3.15.4",
|