@tekkare/auriga 0.2.72 → 0.2.74

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 (35) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/argActions.vue +1 -1
  3. package/dist/runtime/components/argChaptersNav.vue +1 -1
  4. package/dist/runtime/components/argComplexSelect.vue +1 -1
  5. package/dist/runtime/components/argDate.vue +1 -1
  6. package/dist/runtime/components/argDropdownSelect.vue +1 -1
  7. package/dist/runtime/components/argFilterCard.vue +1 -1
  8. package/dist/runtime/components/argFooter.vue +1 -1
  9. package/dist/runtime/components/argHomeAllBlocks.vue +99 -4
  10. package/dist/runtime/components/argHomeAllBlocks.vue.d.ts +12 -1
  11. package/dist/runtime/components/argHomeContent.vue +9 -3
  12. package/dist/runtime/components/argHomeContent.vue.d.ts +13 -1
  13. package/dist/runtime/components/argHomeHeader.vue +1 -1
  14. package/dist/runtime/components/argHomeLayout.vue +1 -1
  15. package/dist/runtime/components/argHomeSelectedBlock.vue +4 -4
  16. package/dist/runtime/components/argMainLayout.vue +1 -1
  17. package/dist/runtime/components/argMultipleSelect.vue +1 -1
  18. package/dist/runtime/components/argNoSavedScope.vue +1 -1
  19. package/dist/runtime/components/argNoSelectedScope.vue +1 -1
  20. package/dist/runtime/components/argScopeChange.vue +1 -1
  21. package/dist/runtime/components/argScopeCriteria.vue +1 -1
  22. package/dist/runtime/components/argScopeCriteriaIndicator.vue +1 -1
  23. package/dist/runtime/components/argScopeHeader.vue +1 -1
  24. package/dist/runtime/components/argScopeManage.vue +3 -2
  25. package/dist/runtime/components/argScopeModal.vue +1 -1
  26. package/dist/runtime/components/argSearchInput.vue +1 -1
  27. package/dist/runtime/components/argSidebar.vue +1 -1
  28. package/dist/runtime/components/argSourceCollapse.vue +1 -1
  29. package/dist/runtime/components/argTable.vue +1 -1
  30. package/dist/runtime/components/argTipsBox.vue +1 -1
  31. package/dist/runtime/components/argToolModal.vue +1 -1
  32. package/dist/runtime/components/argToolbarContent.vue +2 -2
  33. package/dist/runtime/components/argToolbarSources.vue +1 -1
  34. package/dist/runtime/components/locales/kr.json +196 -0
  35. package/package.json +1 -1
package/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.2.72"
7
+ "version": "0.2.74"
8
8
  }
@@ -69,7 +69,7 @@ export default defineComponent({
69
69
  type: String,
70
70
  default: "en",
71
71
  validator: (value) => {
72
- return ["en", "fr", "es", "jp"].includes(value);
72
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
73
73
  }
74
74
  }
75
75
  },
@@ -44,7 +44,7 @@ export default defineComponent({
44
44
  type: String,
45
45
  default: "en",
46
46
  validator: (value) => {
47
- return ["en", "fr", "es", "jp"].includes(value);
47
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
48
48
  }
49
49
  },
50
50
  chaptersTitle: {
@@ -265,7 +265,7 @@ export default defineComponent({
265
265
  type: String,
266
266
  default: "en",
267
267
  validator: (value) => {
268
- return ["en", "fr", "es", "jp"].includes(value);
268
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
269
269
  }
270
270
  },
271
271
  loader_text: { type: Array, default: null },
@@ -20,7 +20,7 @@ export default defineComponent({
20
20
  type: String,
21
21
  default: "en",
22
22
  validator: (value) => {
23
- return ["en", "fr", "es", "jp"].includes(value);
23
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
24
24
  }
25
25
  },
26
26
  compact: {
@@ -173,7 +173,7 @@ export default defineComponent({
173
173
  type: String,
174
174
  default: "en",
175
175
  validator: (value) => {
176
- return ["en", "fr", "es", "jp"].includes(value);
176
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
177
177
  }
178
178
  },
179
179
  loader_text: { type: Array, default: null },
@@ -72,7 +72,7 @@ export default defineComponent({
72
72
  type: String,
73
73
  default: "en",
74
74
  validator: (value) => {
75
- return ["en", "fr", "es", "jp"].includes(value);
75
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
76
76
  }
77
77
  }
78
78
  },
@@ -25,7 +25,7 @@ export default defineComponent({
25
25
  type: String,
26
26
  default: "en",
27
27
  validator: (value) => {
28
- return ["en", "fr", "es", "jp"].includes(value);
28
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
29
29
  }
30
30
  }
31
31
  },
@@ -29,7 +29,7 @@
29
29
  </div>
30
30
  </div>
31
31
  <div v-if="filterBlocks !== null" class="arg_home_all_blocks">
32
- <div class="oip_list v-start gap-8">
32
+ <div v-if="!noTitle" class="oip_list v-start gap-8">
33
33
  <h1 class="arg_home_blocks_title">{{ getTitle }}</h1>
34
34
  <p v-if="appSubtitle !== null" class="home_subtitle">
35
35
  {{ appSubtitle }}
@@ -43,7 +43,84 @@
43
43
  />
44
44
  <slot name="homeExtraContent" />
45
45
  <div
46
- v-if="filterBlocks.length > 0"
46
+ v-if="
47
+ filterBlocks.length > 0 &&
48
+ blockCategories !== null &&
49
+ blockCategories.value.length > 0
50
+ "
51
+ class="oip_list v-start gap-16"
52
+ >
53
+ <div
54
+ v-for="category in blockCategories.value"
55
+ :key="category"
56
+ class="oip_list v-start gap-8 category_container"
57
+ >
58
+ <p class="category_label">{{ category }}</p>
59
+ <div class="oip_row v-start gap-16 wrap full_stretch">
60
+ <div
61
+ v-for="(block, index) in filterCategoryBlocks(category)"
62
+ :key="index"
63
+ class="oip_card block_card action"
64
+ :class="
65
+ selectedBlock?.title === block.title ? 'block_selected' : ''
66
+ "
67
+ @click="selectBlock(block)"
68
+ >
69
+ <slot
70
+ v-if="customizeBlocks"
71
+ :name="seperateCustoms ? 'customOther' : 'custom'"
72
+ v-bind:block="block"
73
+ />
74
+ <div v-else class="block_content">
75
+ <div
76
+ class="oip_row v-center space-between full_stretch card_head"
77
+ >
78
+ <p class="block_title">
79
+ <span v-if="block.country"
80
+ ><arg-flag
81
+ v-if="block.iso"
82
+ :emoji="
83
+ block.iso === 'ww' ||
84
+ block.iso === 'eu' ||
85
+ block.emoji
86
+ "
87
+ :iso="block.iso"
88
+ height="14" />
89
+ <arg-flag
90
+ v-else
91
+ :slug="block.country.toLowerCase()"
92
+ :emoji="
93
+ block.country === 'world' ||
94
+ block.country === 'europe' ||
95
+ block.emoji
96
+ "
97
+ height="14" /></span
98
+ >{{ block.title }}
99
+ </p>
100
+ <div
101
+ v-if="block.population && block.population !== null"
102
+ class="oip_row v-center gap-8 population"
103
+ >
104
+ <arg-icon
105
+ name="UsersThree"
106
+ color="var(--medium)"
107
+ size="14"
108
+ />
109
+ <p>
110
+ {{
111
+ new Intl.NumberFormat("us-US").format(block.population)
112
+ }}
113
+ </p>
114
+ </div>
115
+ </div>
116
+ <p class="block_descr">{{ block.description }}</p>
117
+ </div>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </div>
122
+ <div
123
+ v-else-if="filterBlocks.length > 0"
47
124
  class="oip_row v-start gap-16 wrap full_stretch"
48
125
  >
49
126
  <div
@@ -123,6 +200,10 @@ export default defineComponent({
123
200
  type: String,
124
201
  default: null
125
202
  },
203
+ noTitle: {
204
+ type: Boolean,
205
+ default: false
206
+ },
126
207
  globalTitle: {
127
208
  type: String,
128
209
  default: null
@@ -185,6 +266,15 @@ export default defineComponent({
185
266
  }
186
267
  }
187
268
  }
269
+ const blockCategories = computed(() => {
270
+ const categories = ref(null);
271
+ if (props.appBlocks.length > 0) {
272
+ categories.value = [
273
+ ...new Set(props.appBlocks.map((a) => a.category))
274
+ ];
275
+ }
276
+ return categories;
277
+ });
188
278
  onBeforeMount(async () => {
189
279
  setLang();
190
280
  });
@@ -215,6 +305,9 @@ export default defineComponent({
215
305
  const filterBlocks = computed(() => {
216
306
  return props.appBlocks.length > 0 ? props.appBlocks.filter((a) => includesValue(a)) : null;
217
307
  });
308
+ const filterCategoryBlocks = (cat) => {
309
+ return props.appBlocks.length > 0 ? props.appBlocks.filter((a) => a.category === cat) : null;
310
+ };
218
311
  function includesValue(a) {
219
312
  const hasValue = ref(false);
220
313
  for (const [key] of Object.entries(a)) {
@@ -238,12 +331,14 @@ export default defineComponent({
238
331
  selectBlock,
239
332
  filterBlocks,
240
333
  getGlobalTitle,
241
- langData
334
+ langData,
335
+ blockCategories,
336
+ filterCategoryBlocks
242
337
  };
243
338
  }
244
339
  });
245
340
  </script>
246
341
 
247
342
  <style scoped>
248
- .arg_home_all_blocks{align-items:flex-start;align-self:stretch;display:flex;flex-direction:column;gap:24px}.block_card{align-self:stretch;cursor:pointer;flex:0 0 calc(50% - 59px);margin:0!important;padding:24px!important}.block_card:not(.block_selected):hover .block_title{color:var(--primary)!important}.block_descr{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;font-size:14px;font-style:normal;font-weight:400;line-height:160%;overflow:hidden}.block_content{align-items:flex-start;display:flex;flex-direction:column;gap:12px}.block_title{align-items:flex-end;display:flex;flex-direction:row;font-size:16px;font-style:normal;font-weight:700;gap:8px;line-height:normal}.block_selected{background:var(--primary)!important;border:1px solid var(--primary)!important;box-shadow:var(--large-shadow)!important;color:var(--white)!important}.full_stretch{align-self:stretch}.population p{color:var(--medium);font-size:12px;font-weight:400;line-height:14px}.block_selected>.block_content>.card_head>.population p,.block_selected>.block_content>.card_head>.population svg{color:var(--white)!important}.home_subtitle{color:var(--dark);font-size:14px;font-style:normal;font-weight:400;line-height:160%}
343
+ .arg_home_all_blocks{align-items:flex-start;align-self:stretch;display:flex;flex-direction:column;gap:24px}.block_card{align-self:stretch;cursor:pointer;flex:0 0 calc(50% - 59px);margin:0!important;padding:24px!important}.block_card:not(.block_selected):hover .block_title{color:var(--primary)!important}.block_descr{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;font-size:14px;font-style:normal;font-weight:400;line-height:160%;overflow:hidden}.block_content{align-items:flex-start;display:flex;flex-direction:column;gap:12px}.block_title{align-items:flex-end;display:flex;flex-direction:row;font-size:16px;font-style:normal;font-weight:700;gap:8px;line-height:normal}.block_selected{background:var(--primary)!important;border:1px solid var(--primary)!important;box-shadow:var(--large-shadow)!important;color:var(--white)!important}.full_stretch{align-self:stretch}.population p{color:var(--medium);font-size:12px;font-weight:400;line-height:14px}.block_selected>.block_content>.card_head>.population p,.block_selected>.block_content>.card_head>.population svg{color:var(--white)!important}.home_subtitle{color:var(--dark);font-size:14px;font-style:normal;font-weight:400;line-height:160%}.category_container{border-top:1.5px solid var(--light);padding:24px 0;position:relative}.category_label{align-items:center;background:var(--lightest);border-radius:4px;display:flex;gap:8px;left:24px;padding:4px 12px;position:absolute;top:-14px}p.category_label{color:var(--medium);font-size:14px;font-weight:500;text-transform:uppercase}
249
344
  </style>
@@ -3,6 +3,10 @@ declare const _default: import("vue").DefineComponent<{
3
3
  type: StringConstructor;
4
4
  default: null;
5
5
  };
6
+ noTitle: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
6
10
  globalTitle: {
7
11
  type: StringConstructor;
8
12
  default: null;
@@ -54,14 +58,20 @@ declare const _default: import("vue").DefineComponent<{
54
58
  getSearchPlaceholder: import("vue").ComputedRef<any>;
55
59
  selectedBlock: import("vue").Ref<any>;
56
60
  selectBlock: (block: any) => void;
57
- filterBlocks: import("vue").ComputedRef<unknown[] | null>;
61
+ filterBlocks: any;
58
62
  getGlobalTitle: import("vue").ComputedRef<any>;
59
63
  langData: import("vue").Ref<any>;
64
+ blockCategories: import("vue").ComputedRef<import("vue").Ref<any>>;
65
+ filterCategoryBlocks: any;
60
66
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectBlock" | "update:Block")[], "onSelectBlock" | "update:Block", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
61
67
  title: {
62
68
  type: StringConstructor;
63
69
  default: null;
64
70
  };
71
+ noTitle: {
72
+ type: BooleanConstructor;
73
+ default: boolean;
74
+ };
65
75
  globalTitle: {
66
76
  type: StringConstructor;
67
77
  default: null;
@@ -113,6 +123,7 @@ declare const _default: import("vue").DefineComponent<{
113
123
  }, {
114
124
  lang: string;
115
125
  title: string;
126
+ noTitle: boolean;
116
127
  globalTitle: string;
117
128
  searchPlaceholder: string;
118
129
  globalSubtitle: string;
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div class="arg_home_content">
3
- <div class="arg_home_blocks">
3
+ <div class="arg_home_blocks" :class="borderTop ? 'has_top_border' : ''">
4
4
  <slot name="blocks" />
5
5
  </div>
6
6
  <div class="arg_home_selected">
@@ -14,9 +14,15 @@ import {
14
14
  defineComponent
15
15
  } from "vue";
16
16
  export default defineComponent({
17
- name: "argHomeContent"
17
+ name: "argHomeContent",
18
+ props: {
19
+ borderTop: {
20
+ type: Boolean,
21
+ default: true
22
+ }
23
+ }
18
24
  });
19
25
  </script>
20
26
  <style scoped>
21
- .arg_home_content{align-items:flex-start;display:inline-flex;flex-direction:row;gap:32px;position:relative;width:100%}.arg_home_blocks{border-top:1px solid var(--light,#ececf2);padding-top:8px;width:66%}.arg_home_selected{align-self:stretch;display:flex;position:relative;width:33%}.height{height:350px}
27
+ .arg_home_content{align-items:flex-start;display:inline-flex;flex-direction:row;gap:32px;position:relative;width:100%}.arg_home_blocks{padding-top:8px;width:66%}.arg_home_blocks.has_top_border{border-top:1px solid var(--light,#ececf2)}.arg_home_selected{align-self:stretch;display:flex;position:relative;width:33%}.height{height:350px}
22
28
  </style>
@@ -1,2 +1,14 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("vue").DefineComponent<{
2
+ borderTop: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
+ borderTop: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ }>>, {
12
+ borderTop: boolean;
13
+ }, {}>;
2
14
  export default _default;
@@ -45,7 +45,7 @@ export default defineComponent({
45
45
  type: String,
46
46
  default: "en",
47
47
  validator: (value) => {
48
- return ["en", "fr", "es", "jp"].includes(value);
48
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
49
49
  }
50
50
  }
51
51
  },
@@ -22,7 +22,7 @@ export default defineComponent({
22
22
  type: String,
23
23
  default: "en",
24
24
  validator: (value) => {
25
- return ["en", "fr", "es", "jp"].includes(value);
25
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
26
26
  }
27
27
  }
28
28
  }
@@ -21,9 +21,9 @@
21
21
  v-if="selected.iso"
22
22
  :iso="selected.iso"
23
23
  height="16"
24
- :emoji="selected.iso === 'ww' || selected.iso === 'eu'"
25
- ||
26
- selected.emoji
24
+ :emoji="
25
+ selected.iso === 'ww' || selected.iso === 'eu' || selected.emoji
26
+ "
27
27
  />
28
28
  <arg-flag
29
29
  v-else-if="selected.country"
@@ -101,7 +101,7 @@ export default defineComponent({
101
101
  type: String,
102
102
  default: "en",
103
103
  validator: (value) => {
104
- return ["en", "fr", "es", "jp"].includes(value);
104
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
105
105
  }
106
106
  }
107
107
  },
@@ -39,7 +39,7 @@ export default defineComponent({
39
39
  type: String,
40
40
  default: "en",
41
41
  validator: (value) => {
42
- return ["en", "fr", "es", "jp"].includes(value);
42
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
43
43
  }
44
44
  }
45
45
  },
@@ -355,7 +355,7 @@ export default defineComponent({
355
355
  type: String,
356
356
  default: "en",
357
357
  validator: (value) => {
358
- return ["en", "fr", "es", "jp"].includes(value);
358
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
359
359
  }
360
360
  },
361
361
  loader_text: { type: Array, default: null },
@@ -27,7 +27,7 @@ export default defineComponent({
27
27
  type: String,
28
28
  default: "en",
29
29
  validator: (value) => {
30
- return ["en", "fr", "es", "jp"].includes(value);
30
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
31
31
  }
32
32
  }
33
33
  },
@@ -67,7 +67,7 @@ export default defineComponent({
67
67
  type: String,
68
68
  default: "en",
69
69
  validator: (value) => {
70
- return ["en", "fr", "es", "jp"].includes(value);
70
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
71
71
  }
72
72
  },
73
73
  scopeArray: {
@@ -89,7 +89,7 @@ export default defineComponent({
89
89
  type: String,
90
90
  default: "en",
91
91
  validator: (value) => {
92
- return ["en", "fr", "es", "jp"].includes(value);
92
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
93
93
  }
94
94
  },
95
95
  createNew: {
@@ -46,7 +46,7 @@ export default defineComponent({
46
46
  type: String,
47
47
  default: "en",
48
48
  validator: (value) => {
49
- return ["en", "fr", "es", "jp"].includes(value);
49
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
50
50
  }
51
51
  },
52
52
  onlyNew: { type: Boolean, default: false }
@@ -27,7 +27,7 @@ export default defineComponent({
27
27
  type: String,
28
28
  default: "en",
29
29
  validator: (value) => {
30
- return ["en", "fr", "es", "jp"].includes(value);
30
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
31
31
  }
32
32
  }
33
33
  },
@@ -33,7 +33,7 @@ export default defineComponent({
33
33
  type: String,
34
34
  default: "en",
35
35
  validator: (value) => {
36
- return ["en", "fr", "es", "jp"].includes(value);
36
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
37
37
  }
38
38
  },
39
39
  cancelLink: {
@@ -54,7 +54,8 @@
54
54
  <p class="oip_filter_label"></p>
55
55
  <arg-tags set-style="gray">
56
56
  <span v-if="typeof criteria === 'object'"
57
- ><b>{{ criteria?.type }}: </b>{{ criteria?.value }}</span
57
+ ><b>{{ criteria?.type }}: </b
58
+ >{{ criteria?.value }}</span
58
59
  >
59
60
  <span v-else>{{ criteria }} </span></arg-tags
60
61
  >
@@ -112,7 +113,7 @@ export default defineComponent({
112
113
  type: String,
113
114
  default: "en",
114
115
  validator: (value) => {
115
- return ["en", "fr", "es", "jp"].includes(value);
116
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
116
117
  }
117
118
  },
118
119
  reloadingScopes: {
@@ -103,7 +103,7 @@ export default defineComponent({
103
103
  type: String,
104
104
  default: "en",
105
105
  validator: (value) => {
106
- return ["en", "fr", "es", "jp"].includes(value);
106
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
107
107
  }
108
108
  }
109
109
  },
@@ -108,7 +108,7 @@ export default defineComponent({
108
108
  type: String,
109
109
  default: "en",
110
110
  validator: (value) => {
111
- return ["en", "fr", "es", "jp"].includes(value);
111
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
112
112
  }
113
113
  },
114
114
  loadingSuggs: {
@@ -91,7 +91,7 @@ export default defineComponent({
91
91
  type: String,
92
92
  default: "en",
93
93
  validator: (value) => {
94
- return ["en", "fr", "es", "jp"].includes(value);
94
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
95
95
  }
96
96
  },
97
97
  homeLink: { type: String, default: "/" }
@@ -109,7 +109,7 @@ export default defineComponent({
109
109
  type: String,
110
110
  default: "en",
111
111
  validator: (value) => {
112
- return ["en", "fr", "es", "jp"].includes(value);
112
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
113
113
  }
114
114
  },
115
115
  directusToken: {
@@ -403,7 +403,7 @@ export default defineComponent({
403
403
  type: String,
404
404
  default: "en",
405
405
  validator: (value) => {
406
- return ["en", "fr", "es", "jp"].includes(value);
406
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
407
407
  }
408
408
  },
409
409
  customPlaceholder: {
@@ -58,7 +58,7 @@ export default defineComponent({
58
58
  type: String,
59
59
  default: "en",
60
60
  validator: (value) => {
61
- return ["en", "fr", "es", "jp"].includes(value);
61
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
62
62
  }
63
63
  },
64
64
  defaultOpen: {
@@ -136,7 +136,7 @@ export default defineComponent({
136
136
  type: String,
137
137
  default: "en",
138
138
  validator: (value) => {
139
- return ["en", "fr", "es", "jp"].includes(value);
139
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
140
140
  }
141
141
  },
142
142
  showSourceTable: {
@@ -6,7 +6,7 @@
6
6
  <div class="oip_info_container" @click.stop>
7
7
  <div v-if="infoOpen" class="oip_info_close" @click="closeInfo()">
8
8
  <arg-icon name="X" size="20" />
9
- <p>{{langData}}</p>
9
+ <p>{{ langData }}</p>
10
10
  </div>
11
11
  <div
12
12
  class="oip_info_section"
@@ -90,7 +90,7 @@ export default defineComponent({
90
90
  type: String,
91
91
  default: "en",
92
92
  validator: (value) => {
93
- return ["en", "fr", "es", "jp"].includes(value);
93
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
94
94
  }
95
95
  }
96
96
  },
@@ -42,7 +42,7 @@ export default defineComponent({
42
42
  type: String,
43
43
  default: "en",
44
44
  validator: (value) => {
45
- return ["en", "fr", "es", "jp"].includes(value);
45
+ return ["en", "fr", "es", "jp", "kr"].includes(value);
46
46
  }
47
47
  },
48
48
  showCopy: {
@@ -0,0 +1,196 @@
1
+ {
2
+ "actions": {
3
+ "cancel": "취소",
4
+ "scope": "나의 스콥",
5
+ "clear": "모두 지우기",
6
+ "see-analysis": "분석으로 이동",
7
+ "save-analysis": "저장 후 계속",
8
+ "download": "다운로드",
9
+ "close": "닫기"
10
+ },
11
+ "chapters": "챕터",
12
+ "complex": {
13
+ "quick": "빠른 선택",
14
+ "current": "현재 선택",
15
+ "empty": "선택 없음",
16
+ "loading": "로딩 중...",
17
+ "wait": "기다려주세요",
18
+ "search": "옵션 검색...",
19
+ "searchSelect": "선택된 옵션 검색...",
20
+ "max": "최대 선택하실 수 있는 범위입니다",
21
+ "notFound": "콘텐츠를 찾을 수 없습니다",
22
+ "custom": "사용자 지정 선택",
23
+ "orCustom": "또는 사용자 지정 선택",
24
+ "noSelection": "아직 선택 사항 없음",
25
+ "all": "모두 선택",
26
+ "clear": "지우기"
27
+ },
28
+ "dropdown": {
29
+ "empty": "선택 없음",
30
+ "loading": "로딩 중...",
31
+ "wait": "기다려 주세요",
32
+ "search": "옵션 검색...",
33
+ "notFound": "콘텐츠를 찾을 수 없습니다"
34
+ },
35
+ "multiple": {
36
+ "empty": "선택 없음",
37
+ "loading": "로딩 중...",
38
+ "wait": "기다려 주세요",
39
+ "search": "옵션 검색...",
40
+ "notFound": "콘텐츠를 찾을 수 없습니다",
41
+ "all": "전체"
42
+ },
43
+ "search": {
44
+ "loading": "더 많은 제안을 로딩 중",
45
+ "empty": "제안을 찾을 수 없습니다"
46
+ },
47
+ "date": {
48
+ "compact": {
49
+ "jan": "1월",
50
+ "feb": "2월",
51
+ "mar": "3월",
52
+ "apr": "4월",
53
+ "may": "5월",
54
+ "jun": "6월",
55
+ "jul": "7월",
56
+ "aug": "8월",
57
+ "sep": "9월",
58
+ "oct": "10월",
59
+ "nov": "11월",
60
+ "dec": "12월"
61
+ },
62
+ "full": {
63
+ "jan": "1월",
64
+ "feb": "2월",
65
+ "mar": "3월",
66
+ "apr": "4월",
67
+ "may": "5월",
68
+ "jun": "6월",
69
+ "jul": "7월",
70
+ "aug": "8월",
71
+ "sep": "9월",
72
+ "oct": "10월",
73
+ "nov": "11월",
74
+ "dec": "12월"
75
+ }
76
+ },
77
+ "tips": {
78
+ "close": "닫기",
79
+ "more": "더 알아보기",
80
+ "hide": "감추기"
81
+ },
82
+ "sourceCollapse": {
83
+ "copySource": "복사하기",
84
+ "sector": "분야",
85
+ "aboutProvider": "공급자 정보 :",
86
+ "aboutSource": "출처 정보 :"
87
+ },
88
+
89
+ "backOIP": "OIP로 돌아가기",
90
+ "footer": {
91
+ "rights": "무단 전재와 무단 복제 금지",
92
+ "terms": "이용 약관"
93
+ },
94
+ "sidebar": {
95
+ "home": "홈",
96
+ "open": "사이드바 열기"
97
+ },
98
+ "map": {
99
+ "dep": "도 단위",
100
+ "reg": "광역 지방 단위",
101
+ "return": "광역 지방 단위로 돌아가기"
102
+ },
103
+ "homeBlocks": {
104
+ "all": "모든 테마",
105
+ "countries": "국가",
106
+ "global": "글로벌 테마",
107
+ "search": "찾기...",
108
+ "empty1": "어플을 찾을 수 없습니다.",
109
+ "empty2": "검색과 일치하는 어플을 찾을 수 없습니다. 검색어를 변경하시거나 문의하여 자세한 안내를 받으세요."
110
+ },
111
+ "selectedBlock": {
112
+ "title": "테마를 선택하세요",
113
+ "subtitle": "테마 내에서 이용 가능한 분석을 보기 위해 테마를 선택하세요."
114
+ },
115
+ "noScope": {
116
+ "message": "결과나 데이터를 보려면 스콥을 선택해야 합니다. 계속하시려면 아래 옵션 중 하나를 선택하세요.",
117
+ "exist": "기존 스콥 적용",
118
+ "apply": "스콥 적용",
119
+ "new": "+ 새로운 스콥",
120
+ "or": "또는"
121
+ },
122
+ "noSavedScope": {
123
+ "main": "아직 스콥을 저장하지 않았습니다. 새 스콥을 만드는 방법은 다음과 같습니다:",
124
+ "step1": "“새로운 스콥 기준”으로 전환합니다",
125
+ "step2": "필요한 모든 기준을 선택합니다",
126
+ "step3": "화면 오른쪽 상단에서 “저장 후 계속”을 클릭합니다",
127
+ "step4": "필요한 정보를 양식에 채우고 “스콥 저장 후 계속”을 클릭합니다",
128
+ "end": "다 되었습니다! 스콥이 저장되어 다음에 사용할 때 불러올 수 있습니다."
129
+ },
130
+ "scopeChange": {
131
+ "save": "스콥 저장하기",
132
+ "new": "새로운 스콥",
133
+ "change": "스콥 변경하기",
134
+ "apply": "스콥 적용하기"
135
+ },
136
+ "scopeIndic": {
137
+ "apply": "적용된 스콥:",
138
+ "custom": "사용자 지정"
139
+ },
140
+ "myScope": "나의 스콥",
141
+ "scopeCriteria": {
142
+ "tabs": {
143
+ "new": "새로운 스콥 기준",
144
+ "saved": "기존의 스콥 적용"
145
+ },
146
+ "title": "스콥 기준",
147
+ "saved": "저장된 스콥"
148
+ },
149
+ "scopeManage": {
150
+ "title": "내 스콥 관리하기",
151
+ "del": "삭제하기",
152
+ "created": "만들어진 ",
153
+ "criteria": "기준",
154
+ "close": "닫기"
155
+ },
156
+ "scopeCreate": {
157
+ "title": "나의 스콥을 저장하세요",
158
+ "myscope": "나의 스콥",
159
+ "name": "스콥 이름",
160
+ "namePlaceholder": "스콥 이름을 정하세요. 예를 들어 벤치마크 2023",
161
+ "nameError": "나의 스콥을 저장하기 위해서는 이름이 필요합니다!",
162
+ "descr": "나의 스콥을 설명하세요 (선택사항)",
163
+ "descrPlaceholder": "이곳에 스콥 설명",
164
+ "crit": "기준",
165
+ "cancel": "취소",
166
+ "save": "스콥 저장 후 계속"
167
+ },
168
+ "toolbarSource": {
169
+ "comply": "규정 준수 ",
170
+ "list": "작성할 문서에 사용된 출처를 표기해야 합니다.",
171
+ "copy": "이 프로세스를 쉽게 처리하기 위해 “복사” 버튼이 제공됩니다.",
172
+ "sources": "출처"
173
+ },
174
+ "filterCard": {
175
+ "title": "필터",
176
+ "save": "스콥 저장하기",
177
+ "clear": "모두 지우기",
178
+ "hide": "감추기",
179
+ "show": "나타내기"
180
+ },
181
+ "table": {
182
+ "page": "페이지 수 표시",
183
+ "full": "전체 표 표시",
184
+ "searchBy": "검색하기",
185
+ "or": "또는",
186
+ "searchAll": "모두 찾기...",
187
+ "loadingTitle": "로딩 중...",
188
+ "loadingSub": "기다려 주세요",
189
+ "emptyTitle": "검색할 콘텐츠를 찾을 수 없습니다",
190
+ "emptySub": "검색을 변경하거나 비우세요"
191
+ },
192
+ "close": "닫기",
193
+ "sourceModal": {
194
+ "providerText": "이 문서에는 어플 개발에 자문을 받고 사용된 모든 출처가 나열되어 있습니다. 각 출처에는 프로젝트에 대한 구체적인 기여에 대한 설명이 첨부되어 있습니다. 이 문서화 작업의 목적은 참조의 완전한 추적 가능성을 보장하고 사용된 정보의 무결성과 품질을 보장하는 것입니다."
195
+ }
196
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.72",
3
+ "version": "0.2.74",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",