@tekkare/auriga 0.1.175 → 0.1.176

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.
Files changed (37) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/argAdvancedSearchBar.vue +1 -1
  3. package/dist/runtime/components/argChart.vue +1 -1
  4. package/dist/runtime/components/argExportXLSX.vue +6 -3
  5. package/dist/runtime/components/argMapsEurope.vue +216 -0
  6. package/dist/runtime/components/argMapsEurope.vue.d.ts +57 -0
  7. package/dist/runtime/components/argMapsFrDepartements.vue +1 -1
  8. package/dist/runtime/components/argMapsFrDepartements.vue.d.ts +1 -1
  9. package/dist/runtime/components/argMapsFrRegions.vue +1 -1
  10. package/dist/runtime/components/argMapsFrRegions.vue.d.ts +1 -1
  11. package/dist/runtime/components/argMapsFrRegionsToDepartements.vue +1130 -0
  12. package/dist/runtime/components/argMapsFrRegionsToDepartements.vue.d.ts +95 -0
  13. package/dist/runtime/components/argMapsUs.vue +216 -0
  14. package/dist/runtime/components/argMapsUs.vue.d.ts +57 -0
  15. package/dist/runtime/components/argNumberInput.vue +1 -1
  16. package/dist/runtime/components/argSearchInput.vue +165 -19
  17. package/dist/runtime/components/argSearchInput.vue.d.ts +70 -0
  18. package/dist/runtime/components/argSimpleInput.vue +1 -1
  19. package/dist/runtime/components/maps/countryEuropPath.json +177 -0
  20. package/dist/runtime/components/maps/departementsPath.json +406 -0
  21. package/dist/runtime/components/{mapsFr → maps}/interfaces.d.ts +112 -0
  22. package/dist/runtime/components/{mapsFr → maps}/interfaces.mjs +114 -0
  23. package/dist/runtime/components/maps/regionsPath.json +164 -0
  24. package/dist/runtime/components/maps/usStatesPath.json +152 -0
  25. package/dist/runtime/components/oneCountryEurope.vue +62 -0
  26. package/dist/runtime/components/oneCountryEurope.vue.d.ts +54 -0
  27. package/dist/runtime/components/oneDepartementFr.vue +1 -1
  28. package/dist/runtime/components/oneDepartementFr.vue.d.ts +1 -1
  29. package/dist/runtime/components/oneRegionFr.vue +1 -1
  30. package/dist/runtime/components/oneRegionFr.vue.d.ts +1 -1
  31. package/dist/runtime/components/oneRegionToDepartements.vue +178 -0
  32. package/dist/runtime/components/oneRegionToDepartements.vue.d.ts +111 -0
  33. package/dist/runtime/components/oneStateUs.vue +62 -0
  34. package/dist/runtime/components/oneStateUs.vue.d.ts +54 -0
  35. package/package.json +1 -1
  36. package/dist/runtime/components/mapsFr/departementsPath.json +0 -407
  37. package/dist/runtime/components/mapsFr/regionsPath.json +0 -164
@@ -1,3 +1,7 @@
1
+ interface Suggestion {
2
+ icon?: string;
3
+ text: string;
4
+ }
1
5
  declare const _default: import("vue").DefineComponent<{
2
6
  placeHolderValue: {
3
7
  type: StringConstructor;
@@ -7,11 +11,48 @@ declare const _default: import("vue").DefineComponent<{
7
11
  type: StringConstructor;
8
12
  default: string;
9
13
  };
14
+ suggestions: {
15
+ type: {
16
+ (arrayLength: number): Suggestion[];
17
+ (...items: Suggestion[]): Suggestion[];
18
+ new (arrayLength: number): Suggestion[];
19
+ new (...items: Suggestion[]): Suggestion[];
20
+ isArray(arg: any): arg is any[];
21
+ readonly prototype: any[];
22
+ from<T>(arrayLike: ArrayLike<T>): T[];
23
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
24
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
25
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
26
+ of<T_4>(...items: T_4[]): T_4[];
27
+ readonly [Symbol.species]: ArrayConstructor;
28
+ };
29
+ default: null;
30
+ };
31
+ fuzzyThreshold: {
32
+ type: NumberConstructor;
33
+ default: number;
34
+ };
35
+ lang: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ validator: (value: string) => boolean;
39
+ };
10
40
  }, {
11
41
  searchValue: import("vue").Ref<string>;
12
42
  changeInput: (event: any) => void;
13
43
  submitSearch: () => void;
14
44
  clearValue: () => void;
45
+ suggOpen: import("vue").Ref<boolean>;
46
+ openSugg: () => void;
47
+ filterSuggestions: import("vue").ComputedRef<Suggestion[]>;
48
+ selectSugg: (sugg: Suggestion) => void;
49
+ selectOption: (isDown: boolean) => void;
50
+ optionIndex: import("vue").Ref<number>;
51
+ notFound: {
52
+ fr: string;
53
+ en: string;
54
+ es: string;
55
+ };
15
56
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:Value" | "submitSearch")[], "update:Value" | "submitSearch", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
16
57
  placeHolderValue: {
17
58
  type: StringConstructor;
@@ -21,11 +62,40 @@ declare const _default: import("vue").DefineComponent<{
21
62
  type: StringConstructor;
22
63
  default: string;
23
64
  };
65
+ suggestions: {
66
+ type: {
67
+ (arrayLength: number): Suggestion[];
68
+ (...items: Suggestion[]): Suggestion[];
69
+ new (arrayLength: number): Suggestion[];
70
+ new (...items: Suggestion[]): Suggestion[];
71
+ isArray(arg: any): arg is any[];
72
+ readonly prototype: any[];
73
+ from<T>(arrayLike: ArrayLike<T>): T[];
74
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
75
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
76
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
77
+ of<T_4>(...items: T_4[]): T_4[];
78
+ readonly [Symbol.species]: ArrayConstructor;
79
+ };
80
+ default: null;
81
+ };
82
+ fuzzyThreshold: {
83
+ type: NumberConstructor;
84
+ default: number;
85
+ };
86
+ lang: {
87
+ type: StringConstructor;
88
+ default: string;
89
+ validator: (value: string) => boolean;
90
+ };
24
91
  }>> & {
25
92
  "onUpdate:Value"?: ((...args: any[]) => any) | undefined;
26
93
  onSubmitSearch?: ((...args: any[]) => any) | undefined;
27
94
  }, {
95
+ lang: string;
28
96
  placeHolderValue: string;
97
+ fuzzyThreshold: number;
29
98
  defaultValue: string;
99
+ suggestions: Suggestion[];
30
100
  }, {}>;
31
101
  export default _default;
@@ -69,5 +69,5 @@ export default defineComponent({
69
69
  </script>
70
70
 
71
71
  <style scoped>
72
- .oip_simple_input{border:1.5px solid var(--light);border-radius:8px;padding:12px}.oip_simple_input::-moz-placeholder{color:var(--medium)}.oip_simple_input::placeholder{color:var(--medium)}.oip_simple_input,.oip_simple_input:focus-visible{outline:none!important}.oip_simple_input:hover{border:1.5px solid rgba(33,118,255,.2)!important}.oip_simple_input:focus-within{border:1.5px solid var(--primary)!important;box-shadow:0 0 0 4px rgba(33,118,255,.1)!important}input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}input[type=number]{-moz-appearance:textfield;-webkit-appearance:textfield;appearance:textfield}
72
+ .oip_simple_input{border:1.5px solid var(--light);border-radius:8px;padding:12px}.oip_simple_input::-moz-placeholder{color:var(--medium)}.oip_simple_input::placeholder{color:var(--medium)}.oip_simple_input,.oip_simple_input:focus-visible{outline:none!important}.oip_simple_input:hover{border:1.5px solid rgba(33,118,255,.2)!important}.oip_simple_input:focus-within{border:1.5px solid var(--primary)!important;filter:drop-shadow(0 0 4px rgba(33,118,255,.3))!important}input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}input[type=number]{-moz-appearance:textfield;-webkit-appearance:textfield;appearance:textfield}
73
73
  </style>