@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 CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.2.133"
7
+ "version": "0.2.135"
8
8
  }
@@ -25,7 +25,7 @@
25
25
  </p>
26
26
  </div>
27
27
  <input
28
- id="search_input_advanced"
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
- <ArgGoogleMaps :map-key="mapKey" :locations="locations" />
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" />
@@ -1,4 +1,9 @@
1
1
  import { PropType } from "vue";
2
+ interface Location {
3
+ lat: number;
4
+ lng: number;
5
+ title: string;
6
+ }
2
7
  declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
8
  mapKey: {
4
9
  type: StringConstructor;
@@ -78,6 +78,7 @@
78
78
  />
79
79
  </div>
80
80
  </div>
81
+ <slot name="extraContent" />
81
82
  </div>
82
83
  </div>
83
84
  </template>
@@ -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 },
@@ -50,5 +50,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
50
50
  }, {}, {
51
51
  argIcon: any;
52
52
  argTooltip: any;
53
+ argFlag: any;
53
54
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
54
55
  export default _default;
@@ -23,7 +23,7 @@
23
23
  :class="['action-icon', showMore ? 'icon-rotate' : '']"
24
24
  />
25
25
  <p>
26
- {{ showMore ? langData?.more : langData?.hide }}
26
+ {{ showMore ? langData?.hide : langData?.more }}
27
27
  </p>
28
28
  </div>
29
29
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.133",
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.215.2",
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.15.4",
56
- "@types/node": "^18.19.75",
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",