quasar-ui-sellmate-ui-kit 3.7.0 → 3.8.0

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,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-ui-sellmate-ui-kit",
3
- "version": "3.7.0",
3
+ "version": "3.8.0",
4
4
  "author": "Sellmate Dev Team <dev@sellmate.co.kr>",
5
5
  "description": "Sellmate UI Kit",
6
6
  "license": "MIT",
@@ -209,73 +209,6 @@
209
209
  import { dateRangeIcon, closeIcon } from '../assets/icons';
210
210
  import { useModelBinder } from '../composables/modelBinder';
211
211
 
212
- const locale = {
213
- ko: {
214
- today: '오늘',
215
- daysShort: ['일', '월', '화', '수', '목', '금', '토'],
216
- months: [
217
- '1월',
218
- '2월',
219
- '3월',
220
- '4월',
221
- '5월',
222
- '6월',
223
- '7월',
224
- '8월',
225
- '9월',
226
- '10월',
227
- '11월',
228
- '12월',
229
- ],
230
- monthsShort: [
231
- '1월',
232
- '2월',
233
- '3월',
234
- '4월',
235
- '5월',
236
- '6월',
237
- '7월',
238
- '8월',
239
- '9월',
240
- '10월',
241
- '11월',
242
- '12월',
243
- ],
244
- },
245
- ja: {
246
- today: '今日',
247
- daysShort: ['日', '月', '火', '水', '木', '金', '土'],
248
- months: [
249
- '1月',
250
- '2月',
251
- '3月',
252
- '4月',
253
- '5月',
254
- '6月',
255
- '7月',
256
- '8月',
257
- '9月',
258
- '10月',
259
- '11月',
260
- '12月',
261
- ],
262
- monthsShort: [
263
- '1月',
264
- '2月',
265
- '3月',
266
- '4月',
267
- '5月',
268
- '6月',
269
- '7月',
270
- '8月',
271
- '9月',
272
- '10月',
273
- '11月',
274
- '12月',
275
- ],
276
- },
277
- };
278
-
279
212
  export default {
280
213
  name: 'SDate',
281
214
  components: {
@@ -305,6 +238,43 @@
305
238
  type: String,
306
239
  default: 'ko',
307
240
  },
241
+ locale: {
242
+ type: Object,
243
+ default: () => ({
244
+ ko: {
245
+ today: '오늘',
246
+ daysShort: ['일', '월', '화', '수', '목', '금', '토'],
247
+ months: [
248
+ '1월',
249
+ '2월',
250
+ '3월',
251
+ '4월',
252
+ '5월',
253
+ '6월',
254
+ '7월',
255
+ '8월',
256
+ '9월',
257
+ '10월',
258
+ '11월',
259
+ '12월',
260
+ ],
261
+ monthsShort: [
262
+ '1월',
263
+ '2월',
264
+ '3월',
265
+ '4월',
266
+ '5월',
267
+ '6월',
268
+ '7월',
269
+ '8월',
270
+ '9월',
271
+ '10월',
272
+ '11월',
273
+ '12월',
274
+ ],
275
+ },
276
+ }),
277
+ },
308
278
  useDelete: {
309
279
  type: Boolean,
310
280
  default: false,
@@ -547,7 +517,6 @@
547
517
  }
548
518
 
549
519
  return {
550
- locale,
551
520
  menuModel,
552
521
  dateModel,
553
522
  singleMenuRef: ref(null),