@tekkare/auriga 0.2.66 → 0.2.68

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.66"
7
+ "version": "0.2.68"
8
8
  }
@@ -1,7 +1,11 @@
1
1
  <template>
2
- <div :id="`container_map-${title}`" class="oip_table_card map_card-container">
2
+ <div
3
+ :id="`container_map-${title}-${uniqueID}`"
4
+ class="oip_table_card map_card-container"
5
+ >
3
6
  <div class="p-24">
4
- <div class="oip_subtitle">
7
+ <slot name="customTitle" v-if="haveCustomTitle" />
8
+ <div v-else class="oip_subtitle">
5
9
  {{ title ? title : "Your map title" }}
6
10
  </div>
7
11
  <ArgSourceContainer @click="openSource">
@@ -58,7 +62,7 @@
58
62
  <div class="scale" />
59
63
  <div class="legend-text">
60
64
  <p v-for="value in scale" :key="value">
61
- {{ Math.ceil(value) }}
65
+ {{ Math.ceil(value)?.toLocaleString("fr-FR") }}
62
66
  </p>
63
67
  </div>
64
68
  </div>
@@ -89,6 +93,16 @@ export default defineComponent({
89
93
  source: {
90
94
  type: [String, null],
91
95
  default: null
96
+ },
97
+ haveCustomTitle: {
98
+ type: [String, null],
99
+ default: null,
100
+ required: false
101
+ },
102
+ uniqueID: {
103
+ type: [String, null],
104
+ default: null,
105
+ required: false
92
106
  }
93
107
  },
94
108
  emits: ["openSource"],
@@ -164,7 +178,7 @@ export default defineComponent({
164
178
  const selectedRegion = document.getElementById(
165
179
  `interactiveMap-${props.title}-${hoveredDepartement.value}`
166
180
  )?.getBoundingClientRect();
167
- const containerPosition = document.getElementById(`container_map-${props.title}`)?.getBoundingClientRect();
181
+ const containerPosition = document.getElementById(`container_map-${props.title}-${props.uniqueID}`)?.getBoundingClientRect();
168
182
  const tooltipElement = document.getElementById(
169
183
  `tooltip_map-${props.title}`
170
184
  );
@@ -19,6 +19,16 @@ declare const _default: import("vue").DefineComponent<{
19
19
  type: PropType<string | null>;
20
20
  default: null;
21
21
  };
22
+ haveCustomTitle: {
23
+ type: PropType<string | null>;
24
+ default: null;
25
+ required: false;
26
+ };
27
+ uniqueID: {
28
+ type: PropType<string | null>;
29
+ default: null;
30
+ required: false;
31
+ };
22
32
  }, {
23
33
  getColor: (value?: number) => "var(--lightest)" | "#3F1151" | "#432974" | "#404A85" | "#3F668A" | "#43808C" | "#4C9C8A" | "#5FB57E" | "#85CB68" | "#BDDD51" | "#F9E855" | undefined;
24
34
  handleHover: (dept: Departements) => void;
@@ -47,11 +57,23 @@ declare const _default: import("vue").DefineComponent<{
47
57
  type: PropType<string | null>;
48
58
  default: null;
49
59
  };
60
+ haveCustomTitle: {
61
+ type: PropType<string | null>;
62
+ default: null;
63
+ required: false;
64
+ };
65
+ uniqueID: {
66
+ type: PropType<string | null>;
67
+ default: null;
68
+ required: false;
69
+ };
50
70
  }>> & {
51
71
  onOpenSource?: ((...args: any[]) => any) | undefined;
52
72
  }, {
53
73
  data: Data[];
54
74
  source: string | null;
55
75
  title: string | null;
76
+ haveCustomTitle: string | null;
77
+ uniqueID: string | null;
56
78
  }, {}>;
57
79
  export default _default;
@@ -1,7 +1,11 @@
1
1
  <template>
2
- <div class="oip_table_card map_card-container" :id="`container_map-${title}`">
2
+ <div
3
+ class="oip_table_card map_card-container"
4
+ :id="`container_map-${title}-${uniqueID}`"
5
+ >
3
6
  <div class="p-24">
4
- <div class="oip_subtitle">
7
+ <slot name="customTitle" v-if="haveCustomTitle" />
8
+ <div v-else class="oip_subtitle">
5
9
  {{ title ? title : "Your map title" }}
6
10
  </div>
7
11
  <ArgSourceContainer @click="openSource">
@@ -58,7 +62,7 @@
58
62
  <div class="scale" />
59
63
  <div class="legend-text">
60
64
  <p v-for="value in scale" :key="value">
61
- {{ Math.ceil(value) }}
65
+ {{ Math.ceil(value)?.toLocaleString("fr-FR") }}
62
66
  </p>
63
67
  </div>
64
68
  </div>
@@ -89,6 +93,16 @@ export default defineComponent({
89
93
  source: {
90
94
  type: [String, null],
91
95
  default: null
96
+ },
97
+ haveCustomTitle: {
98
+ type: [String, null],
99
+ default: null,
100
+ required: false
101
+ },
102
+ uniqueID: {
103
+ type: [String, null],
104
+ default: null,
105
+ required: false
92
106
  }
93
107
  },
94
108
  emits: ["openSource"],
@@ -163,7 +177,7 @@ export default defineComponent({
163
177
  const selectedRegion = document.getElementById(
164
178
  `interactiveMap-${props.title}-${hoveredRegion.value}`
165
179
  )?.getBoundingClientRect();
166
- const containerPosition = document.getElementById(`container_map-${props.title}`)?.getBoundingClientRect();
180
+ const containerPosition = document.getElementById(`container_map-${props.title}-${props.uniqueID}`)?.getBoundingClientRect();
167
181
  if (!selectedRegion || !containerPosition)
168
182
  return;
169
183
  tooltipPosition.value = {
@@ -19,6 +19,16 @@ declare const _default: import("vue").DefineComponent<{
19
19
  type: PropType<string | null>;
20
20
  default: null;
21
21
  };
22
+ haveCustomTitle: {
23
+ type: PropType<string | null>;
24
+ default: null;
25
+ required: false;
26
+ };
27
+ uniqueID: {
28
+ type: PropType<string | null>;
29
+ default: null;
30
+ required: false;
31
+ };
22
32
  }, {
23
33
  getColor: (value?: number) => "var(--lightest)" | "#3F1151" | "#432974" | "#404A85" | "#3F668A" | "#43808C" | "#4C9C8A" | "#5FB57E" | "#85CB68" | "#BDDD51" | "#F9E855" | undefined;
24
34
  handleHover: (region: Regions) => void;
@@ -47,11 +57,23 @@ declare const _default: import("vue").DefineComponent<{
47
57
  type: PropType<string | null>;
48
58
  default: null;
49
59
  };
60
+ haveCustomTitle: {
61
+ type: PropType<string | null>;
62
+ default: null;
63
+ required: false;
64
+ };
65
+ uniqueID: {
66
+ type: PropType<string | null>;
67
+ default: null;
68
+ required: false;
69
+ };
50
70
  }>> & {
51
71
  onOpenSource?: ((...args: any[]) => any) | undefined;
52
72
  }, {
53
73
  data: dataRegion[];
54
74
  source: string | null;
55
75
  title: string | null;
76
+ haveCustomTitle: string | null;
77
+ uniqueID: string | null;
56
78
  }, {}>;
57
79
  export default _default;
@@ -102,7 +102,7 @@ declare const _default: import("vue").DefineComponent<{
102
102
  data: Data[];
103
103
  source: string;
104
104
  title: string;
105
- withDynamicTitle: boolean;
106
105
  haveCustomTitle: boolean;
106
+ withDynamicTitle: boolean;
107
107
  }, {}>;
108
108
  export default _default;
@@ -0,0 +1,265 @@
1
+ <template>
2
+ <div
3
+ class="oip_table_card map_card-container"
4
+ :id="`container_map-${title}-${uniqueID}`"
5
+ >
6
+ <div class="p-24">
7
+ <slot name="customTitle" v-if="haveCustomTitle" />
8
+ <div v-else class="oip_subtitle">
9
+ {{ title ? title : "Your map title" }}
10
+ </div>
11
+ <ArgSourceContainer @click="openSource">
12
+ {{ source ? source : "Your source" }}
13
+ </ArgSourceContainer>
14
+ </div>
15
+ <div
16
+ v-if="hoveredRegion !== null"
17
+ :id="`tooltip_map-${title}`"
18
+ class="tooltip_container"
19
+ :style="{
20
+ top: tooltipPosition.y + 'px',
21
+ left: tooltipPosition.x + 'px',
22
+ width: tooltipPosition.width + 'px',
23
+ }"
24
+ >
25
+ <div class="tooltip">
26
+ <p class="card_title">{{ hoveredRegion }}</p>
27
+ <div class="card_text">
28
+ <slot
29
+ name="Tooltip"
30
+ v-bind:value="{
31
+ name: hoveredRegion,
32
+ value: data.find((x) => x.name == hoveredRegion)?.value,
33
+ }"
34
+ />
35
+ </div>
36
+ </div>
37
+ </div>
38
+ <div class="p24">
39
+ <svg
40
+ v-if="lang === 'kr'"
41
+ class="map"
42
+ width="auto"
43
+ height="500"
44
+ viewBox="0 160 400 650"
45
+ fill="none"
46
+ xmlns="http://www.w3.org/2000/svg"
47
+ >
48
+ <OneRegionKr
49
+ v-for="reg in koreanRegionsKr"
50
+ :key="reg"
51
+ :data="{
52
+ color: getColor(data.find((x) => x.name == reg)?.value),
53
+ value: data.find((x) => x.name == reg)?.value,
54
+ }"
55
+ :current-region="reg"
56
+ :title="title"
57
+ :hoveredRegion="hoveredRegion"
58
+ @hover="handleHover(reg)"
59
+ @mouseleave="handleMouseLeave"
60
+ />
61
+ </svg>
62
+ <svg
63
+ v-else
64
+ class="map"
65
+ width="auto"
66
+ height="500"
67
+ viewBox="0 160 400 650"
68
+ fill="none"
69
+ xmlns="http://www.w3.org/2000/svg"
70
+ >
71
+ <oneRegionKr
72
+ v-for="region in RegionsKr"
73
+ :key="region"
74
+ :data="{
75
+ color: getColor(data.find((x) => x.name == region)?.value),
76
+ value: data.find((x) => x.name == region)?.value,
77
+ }"
78
+ :current-region="region"
79
+ :title="title"
80
+ :hoveredRegion="hoveredRegion"
81
+ @hover="handleHover(region)"
82
+ @mouseleave="handleMouseLeave"
83
+ />
84
+ </svg>
85
+ <div class="legend">
86
+ <div class="scale" />
87
+ <div class="legend-text">
88
+ <p v-for="value in scale" :key="value">
89
+ {{ Math.ceil(value)?.toLocaleString("fr-FR") }}
90
+ </p>
91
+ </div>
92
+ </div>
93
+ </div>
94
+ <slot name="Subcontent" />
95
+ </div>
96
+ </template>
97
+
98
+ <script>
99
+ import { onMounted, ref, watch, defineComponent, nextTick } from "vue";
100
+ import { koreanRegionsKr, RegionsKr } from "./maps/interfaces";
101
+ import oneRegionKr from "./oneRegionFr.vue";
102
+ import ArgSourceContainer from "./argSourceContainer.vue";
103
+ export default defineComponent({
104
+ name: "argMapsKorea",
105
+ components: { oneRegionKr, ArgSourceContainer },
106
+ props: {
107
+ data: {
108
+ type: Array,
109
+ default: null,
110
+ required: true
111
+ },
112
+ title: {
113
+ type: [String, null],
114
+ default: null,
115
+ required: false
116
+ },
117
+ source: {
118
+ type: [String, null],
119
+ default: null
120
+ },
121
+ haveCustomTitle: {
122
+ type: [String, null],
123
+ default: null,
124
+ required: false
125
+ },
126
+ uniqueID: {
127
+ type: [String, null],
128
+ default: null,
129
+ required: false
130
+ },
131
+ lang: {
132
+ type: String,
133
+ default: "en",
134
+ required: false
135
+ }
136
+ },
137
+ emits: ["openSource"],
138
+ setup(props, { emit }) {
139
+ const minimalValue = ref(null);
140
+ const maximalValue = ref(null);
141
+ const hoveredRegion = ref(null);
142
+ const tooltipPosition = ref({ x: 0, y: 0, width: 0 });
143
+ const scale = ref([]);
144
+ function getColor(value) {
145
+ if (!value)
146
+ return "var(--lightest)";
147
+ if (value >= scale.value[9]) {
148
+ return "#3F1151";
149
+ } else if (value >= scale.value[8]) {
150
+ return "#432974";
151
+ } else if (value >= scale.value[7]) {
152
+ return "#404A85";
153
+ } else if (value >= scale.value[6]) {
154
+ return "#3F668A";
155
+ } else if (value >= scale.value[5]) {
156
+ return "#43808C";
157
+ } else if (value >= scale.value[4]) {
158
+ return "#4C9C8A";
159
+ } else if (value >= scale.value[3]) {
160
+ return "#5FB57E";
161
+ } else if (value >= scale.value[2]) {
162
+ return "#85CB68";
163
+ } else if (value >= scale.value[1]) {
164
+ return "#BDDD51";
165
+ } else if (value >= scale.value[0]) {
166
+ return "#F9E855";
167
+ }
168
+ }
169
+ function handleHover(region) {
170
+ hoveredRegion.value = region;
171
+ }
172
+ function handleMouseLeave() {
173
+ hoveredRegion.value = null;
174
+ }
175
+ function openSource() {
176
+ emit("openSource");
177
+ }
178
+ onMounted(() => {
179
+ console.log("on Mounted");
180
+ console.log("Language: ", props.lang);
181
+ console.log("Data: ", props.data);
182
+ });
183
+ function setupScale() {
184
+ minimalValue.value = Math.floor(
185
+ Math.min(...props.data.map((x) => x.value))
186
+ );
187
+ maximalValue.value = Math.ceil(
188
+ Math.max(...props.data.map((x) => x.value))
189
+ );
190
+ const step = (maximalValue.value - minimalValue.value) / 10;
191
+ if (minimalValue.value !== null) {
192
+ scale.value = Array.from(
193
+ { length: 10 },
194
+ (_, i) => (minimalValue.value !== null ? minimalValue.value : 0) + i * step
195
+ );
196
+ }
197
+ }
198
+ onMounted(() => {
199
+ setupScale();
200
+ });
201
+ watch(
202
+ () => props.data,
203
+ () => {
204
+ setupScale();
205
+ }
206
+ );
207
+ watch(
208
+ () => hoveredRegion.value,
209
+ () => {
210
+ if (hoveredRegion.value) {
211
+ const selectedRegion = document.getElementById(
212
+ `interactiveMap-${props.title}-${hoveredRegion.value}`
213
+ )?.getBoundingClientRect();
214
+ const containerPosition = document.getElementById(`container_map-${props.title}-${props.uniqueID}`)?.getBoundingClientRect();
215
+ if (!selectedRegion || !containerPosition)
216
+ return;
217
+ tooltipPosition.value = {
218
+ x: selectedRegion?.x - containerPosition?.x,
219
+ y: selectedRegion?.top - containerPosition?.top - 60,
220
+ width: selectedRegion?.width
221
+ };
222
+ }
223
+ }
224
+ );
225
+ watch(
226
+ () => hoveredRegion.value,
227
+ async () => {
228
+ if (hoveredRegion.value) {
229
+ await nextTick();
230
+ const selectedRegion = document.getElementById(
231
+ `interactiveMap-${props.title}-${hoveredRegion.value}`
232
+ )?.getBoundingClientRect();
233
+ const containerPosition = document.getElementById(`container_map-${props.title}`)?.getBoundingClientRect();
234
+ const tooltipElement = document.getElementById(
235
+ `tooltip_map-${props.title}`
236
+ );
237
+ const tooltipHeight = tooltipElement ? tooltipElement.getBoundingClientRect().height : 60;
238
+ if (!selectedRegion || !containerPosition)
239
+ return;
240
+ tooltipPosition.value = {
241
+ x: selectedRegion?.x - containerPosition?.x,
242
+ y: selectedRegion?.top - containerPosition?.top - tooltipHeight,
243
+ width: selectedRegion?.width
244
+ };
245
+ }
246
+ }
247
+ );
248
+ return {
249
+ getColor,
250
+ handleHover,
251
+ handleMouseLeave,
252
+ RegionsKr,
253
+ hoveredRegion,
254
+ tooltipPosition,
255
+ scale,
256
+ openSource,
257
+ koreanRegionsKr
258
+ };
259
+ }
260
+ });
261
+ </script>
262
+
263
+ <style scoped>
264
+ .map{margin-top:24px;width:100%}.p24{padding:24px}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .2s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:auto;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}.p-24{padding:0 24px}
265
+ </style>
@@ -0,0 +1,91 @@
1
+ import type { PropType } from "vue";
2
+ import { koreanRegionsKr, RegionsKr } from "./maps/interfaces";
3
+ type dataRegion = {
4
+ name: RegionsKr;
5
+ value: number;
6
+ };
7
+ declare const _default: import("vue").DefineComponent<{
8
+ data: {
9
+ type: PropType<dataRegion[]>;
10
+ default: null;
11
+ required: true;
12
+ };
13
+ title: {
14
+ type: PropType<string | null>;
15
+ default: null;
16
+ required: false;
17
+ };
18
+ source: {
19
+ type: PropType<string | null>;
20
+ default: null;
21
+ };
22
+ haveCustomTitle: {
23
+ type: PropType<string | null>;
24
+ default: null;
25
+ required: false;
26
+ };
27
+ uniqueID: {
28
+ type: PropType<string | null>;
29
+ default: null;
30
+ required: false;
31
+ };
32
+ lang: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ required: false;
36
+ };
37
+ }, {
38
+ getColor: (value?: number) => "var(--lightest)" | "#3F1151" | "#432974" | "#404A85" | "#3F668A" | "#43808C" | "#4C9C8A" | "#5FB57E" | "#85CB68" | "#BDDD51" | "#F9E855" | undefined;
39
+ handleHover: (region: RegionsKr) => void;
40
+ handleMouseLeave: () => void;
41
+ RegionsKr: typeof RegionsKr;
42
+ hoveredRegion: import("vue").Ref<RegionsKr | null>;
43
+ tooltipPosition: import("vue").Ref<{
44
+ x: number;
45
+ y: number;
46
+ width: number;
47
+ }>;
48
+ scale: import("vue").Ref<number[]>;
49
+ openSource: () => void;
50
+ koreanRegionsKr: typeof koreanRegionsKr;
51
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "openSource"[], "openSource", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
52
+ data: {
53
+ type: PropType<dataRegion[]>;
54
+ default: null;
55
+ required: true;
56
+ };
57
+ title: {
58
+ type: PropType<string | null>;
59
+ default: null;
60
+ required: false;
61
+ };
62
+ source: {
63
+ type: PropType<string | null>;
64
+ default: null;
65
+ };
66
+ haveCustomTitle: {
67
+ type: PropType<string | null>;
68
+ default: null;
69
+ required: false;
70
+ };
71
+ uniqueID: {
72
+ type: PropType<string | null>;
73
+ default: null;
74
+ required: false;
75
+ };
76
+ lang: {
77
+ type: StringConstructor;
78
+ default: string;
79
+ required: false;
80
+ };
81
+ }>> & {
82
+ onOpenSource?: ((...args: any[]) => any) | undefined;
83
+ }, {
84
+ lang: string;
85
+ data: dataRegion[];
86
+ source: string | null;
87
+ title: string | null;
88
+ haveCustomTitle: string | null;
89
+ uniqueID: string | null;
90
+ }, {}>;
91
+ export default _default;
@@ -18,6 +18,44 @@ export declare enum Regions {
18
18
  PaysDeLaLoire = "Pays de la Loire",
19
19
  ProvenceAlpesCoteDazur = "Provence-Alpes-C\u00F4te d'Azur"
20
20
  }
21
+ export declare enum RegionsKr {
22
+ NorthChungcheong = "Chungcheongbuk-do",
23
+ SouthChungcheong = "Chungcheongnam-do",
24
+ Gangwon = "Gangwon",
25
+ Gyeonggi = "Gyeonggi",
26
+ NorthGyeongsang = "Gyeongsangbuk-do",
27
+ SouthGyeongsang = "Gyeongsangnam-do",
28
+ Jeju = "Jeju",
29
+ Seoul = "Seoul",
30
+ Busan = "Busan",
31
+ Incheon = "Incheon",
32
+ Gwangju = "Gwangju",
33
+ Daejeon = "Daejeon",
34
+ Ulsan = "Ulsan",
35
+ NorthJeolla = "Jeollabuk-do",
36
+ SouthJeolla = "Jeollanam-do",
37
+ Sejong = "Sejong",
38
+ Daegu = "Daegu"
39
+ }
40
+ export declare enum koreanRegionsKr {
41
+ NorthChungcheong = "\uCDA9\uCCAD\uBD81\uB3C4",
42
+ SouthChungcheong = "\uCDA9\uCCAD\uB0A8\uB3C4",
43
+ Gangwon = "\uAC15\uC6D0",
44
+ Gyeonggi = "\uACBD\uAE30",
45
+ NorthGyeongsang = "\uACBD\uC0C1\uBD81\uB3C4",
46
+ SouthGyeongsang = "\uACBD\uC0C1\uB0A8\uB3C4",
47
+ Jeju = "\uC81C\uC8FC",
48
+ Seoul = "\uC11C\uC6B8",
49
+ Busan = "\uBD80\uC0B0",
50
+ Incheon = "\uC778\uCC9C",
51
+ Gwangju = "\uAD11\uC8FC",
52
+ Daejeon = "\uB300\uC804",
53
+ Ulsan = "\uC6B8\uC0B0",
54
+ NorthJeolla = "\uC804\uB77C\uBD81\uB3C4",
55
+ SouthJeolla = "\uC804\uB77C\uB0A8\uB3C4",
56
+ Sejong = "\uC138\uC885",
57
+ Daegu = "\uB300\uAD6C"
58
+ }
21
59
  export declare enum Departements {
22
60
  Ain = "Ain",
23
61
  Aisne = "Aisne",
@@ -19,6 +19,46 @@ export var Regions = /* @__PURE__ */ ((Regions2) => {
19
19
  Regions2["ProvenceAlpesCoteDazur"] = "Provence-Alpes-C\xF4te d'Azur";
20
20
  return Regions2;
21
21
  })(Regions || {});
22
+ export var RegionsKr = /* @__PURE__ */ ((RegionsKr2) => {
23
+ RegionsKr2["NorthChungcheong"] = "Chungcheongbuk-do";
24
+ RegionsKr2["SouthChungcheong"] = "Chungcheongnam-do";
25
+ RegionsKr2["Gangwon"] = "Gangwon";
26
+ RegionsKr2["Gyeonggi"] = "Gyeonggi";
27
+ RegionsKr2["NorthGyeongsang"] = "Gyeongsangbuk-do";
28
+ RegionsKr2["SouthGyeongsang"] = "Gyeongsangnam-do";
29
+ RegionsKr2["Jeju"] = "Jeju";
30
+ RegionsKr2["Seoul"] = "Seoul";
31
+ RegionsKr2["Busan"] = "Busan";
32
+ RegionsKr2["Incheon"] = "Incheon";
33
+ RegionsKr2["Gwangju"] = "Gwangju";
34
+ RegionsKr2["Daejeon"] = "Daejeon";
35
+ RegionsKr2["Ulsan"] = "Ulsan";
36
+ RegionsKr2["NorthJeolla"] = "Jeollabuk-do";
37
+ RegionsKr2["SouthJeolla"] = "Jeollanam-do";
38
+ RegionsKr2["Sejong"] = "Sejong";
39
+ RegionsKr2["Daegu"] = "Daegu";
40
+ return RegionsKr2;
41
+ })(RegionsKr || {});
42
+ export var koreanRegionsKr = /* @__PURE__ */ ((koreanRegionsKr2) => {
43
+ koreanRegionsKr2["NorthChungcheong"] = "\uCDA9\uCCAD\uBD81\uB3C4";
44
+ koreanRegionsKr2["SouthChungcheong"] = "\uCDA9\uCCAD\uB0A8\uB3C4";
45
+ koreanRegionsKr2["Gangwon"] = "\uAC15\uC6D0";
46
+ koreanRegionsKr2["Gyeonggi"] = "\uACBD\uAE30";
47
+ koreanRegionsKr2["NorthGyeongsang"] = "\uACBD\uC0C1\uBD81\uB3C4";
48
+ koreanRegionsKr2["SouthGyeongsang"] = "\uACBD\uC0C1\uB0A8\uB3C4";
49
+ koreanRegionsKr2["Jeju"] = "\uC81C\uC8FC";
50
+ koreanRegionsKr2["Seoul"] = "\uC11C\uC6B8";
51
+ koreanRegionsKr2["Busan"] = "\uBD80\uC0B0";
52
+ koreanRegionsKr2["Incheon"] = "\uC778\uCC9C";
53
+ koreanRegionsKr2["Gwangju"] = "\uAD11\uC8FC";
54
+ koreanRegionsKr2["Daejeon"] = "\uB300\uC804";
55
+ koreanRegionsKr2["Ulsan"] = "\uC6B8\uC0B0";
56
+ koreanRegionsKr2["NorthJeolla"] = "\uC804\uB77C\uBD81\uB3C4";
57
+ koreanRegionsKr2["SouthJeolla"] = "\uC804\uB77C\uB0A8\uB3C4";
58
+ koreanRegionsKr2["Sejong"] = "\uC138\uC885";
59
+ koreanRegionsKr2["Daegu"] = "\uB300\uAD6C";
60
+ return koreanRegionsKr2;
61
+ })(koreanRegionsKr || {});
22
62
  export var Departements = /* @__PURE__ */ ((Departements2) => {
23
63
  Departements2["Ain"] = "Ain";
24
64
  Departements2["Aisne"] = "Aisne";