easycomponentstools 1.0.0-dev.6 → 1.0.0-dev.8

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "easycomponentstools",
3
3
  "private": false,
4
- "version": "1.0.0-dev.6",
4
+ "version": "1.0.0-dev.8",
5
5
  "type": "module",
6
6
  "description": "Easy Vue Components",
7
7
  "keywords": [
@@ -37,18 +37,20 @@
37
37
  "typescript-eslint": "^8.60.0",
38
38
  "vite": "^8.0.16",
39
39
  "vite-plugin-dts": "^5.0.2",
40
- "vue": "^3.5.35",
41
40
  "vue-tsc": "^3.3.3"
42
41
  },
42
+ "peerDependencies": {
43
+ "vue": "^3",
44
+ "vuetify": "^4.0.8",
45
+ "pinia": "^3.0.4",
46
+ "@fawmi/vue-google-maps": "^0.9.79"
47
+ },
43
48
  "dependencies": {
44
- "@fawmi/vue-google-maps": "^0.9.79",
45
49
  "@mdi/font": "^7.4.47",
46
50
  "@tmcw/togeojson": "^7.1.2",
47
51
  "@types/google.maps": "^3.65.0",
48
52
  "lucide-static": "^0.426.0",
49
53
  "moment-timezone": "^0.6.2",
50
- "pinia": "^3.0.4",
51
- "vue-i18n": "^11.4.4",
52
- "vuetify": "^4.0.8"
54
+ "vue-i18n": "^11.4.4"
53
55
  }
54
56
  }
@@ -2,6 +2,7 @@
2
2
  <CustomMapAutoComplete
3
3
  :class="input.required ? 'required_field' : ''"
4
4
  :label="input.label"
5
+ :options="input.options"
5
6
  @place_changed="change_location"
6
7
  ></CustomMapAutoComplete>
7
8
  <v-card ref="cardMapRef" :loading="loading" :elevation="0" class="cardMap">
@@ -6,6 +6,7 @@
6
6
  :items="items"
7
7
  clearable
8
8
  :loading="loading"
9
+ v-bind="{ ...options }"
9
10
  @keydown.enter="search"
10
11
  @update:model-value="change"
11
12
  @click:clear="clear"
@@ -27,6 +28,7 @@ type Item = {
27
28
  type propsType = {
28
29
  label: string
29
30
  getPlaces?: any
31
+ options: Record<string, any>
30
32
  }
31
33
 
32
34
  const props = defineProps<propsType>()
@@ -53,7 +55,7 @@ const search = async () => {
53
55
 
54
56
  const request = {
55
57
  input: searchValue.value,
56
- includedRegionCodes: ['gr', 'en'],
58
+ includedRegionCodes: ['gr', 'us'],
57
59
  }
58
60
  const data: Item[] = []
59
61
  loading.value = true