@tekkare/auriga 0.2.42 → 0.2.43

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.42"
7
+ "version": "0.2.43"
8
8
  }
@@ -121,7 +121,7 @@ import Usa from "@svg-maps/usa";
121
121
  import UsaCounties from "@svg-maps/usa.counties";
122
122
  import France from "@svg-maps/france.regions";
123
123
  import FranceDepartments from "@svg-maps/france.departments";
124
- import World from "@svg-maps/world";
124
+ import World from "./maps/world";
125
125
  import SvgMap from "./SvgMap.vue";
126
126
  export default defineComponent({
127
127
  name: "argMaps",
@@ -0,0 +1,10 @@
1
+ declare namespace _default {
2
+ let label: string;
3
+ let viewBox: string;
4
+ let locations: {
5
+ name: string;
6
+ id: string;
7
+ path: string;
8
+ }[];
9
+ }
10
+ export default _default;