@expcat/tigercat-core 2.1.0 → 2.1.2

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 (38) hide show
  1. package/dist/{data-export-CJUETRjV.d.ts → data-export-CLWdsrRn.d.ts} +1 -1
  2. package/dist/index.d.ts +474 -101
  3. package/dist/index.js +1388 -304
  4. package/dist/{locale-CEDXoKX7.d.ts → locale-KMGxL6bT.d.ts} +101 -1
  5. package/dist/locales/ar-SA.d.ts +1 -1
  6. package/dist/locales/ar-SA.js +140 -4
  7. package/dist/locales/de-DE.d.ts +1 -1
  8. package/dist/locales/de-DE.js +140 -4
  9. package/dist/locales/en-US.d.ts +1 -1
  10. package/dist/locales/en-US.js +86 -3
  11. package/dist/locales/es-ES.d.ts +1 -1
  12. package/dist/locales/es-ES.js +140 -4
  13. package/dist/locales/fr-FR.d.ts +1 -1
  14. package/dist/locales/fr-FR.js +140 -4
  15. package/dist/locales/id-ID.d.ts +1 -1
  16. package/dist/locales/id-ID.js +140 -4
  17. package/dist/locales/ja-JP.d.ts +1 -1
  18. package/dist/locales/ja-JP.js +140 -4
  19. package/dist/locales/ko-KR.d.ts +1 -1
  20. package/dist/locales/ko-KR.js +140 -4
  21. package/dist/locales/pt-BR.d.ts +1 -1
  22. package/dist/locales/pt-BR.js +140 -4
  23. package/dist/locales/th-TH.d.ts +1 -1
  24. package/dist/locales/th-TH.js +140 -4
  25. package/dist/locales/vi-VN.d.ts +1 -1
  26. package/dist/locales/vi-VN.js +140 -4
  27. package/dist/locales/zh-CN.d.ts +1 -1
  28. package/dist/locales/zh-CN.js +86 -3
  29. package/dist/locales/zh-TW.d.ts +1 -1
  30. package/dist/locales/zh-TW.js +140 -4
  31. package/dist/{table-CbPOY5bp.d.ts → table-CHeBgM_2.d.ts} +1 -1
  32. package/dist/tailwind/modern.js +25 -14
  33. package/dist/{tailwind-entry-CNBAH7iv.d.ts → tailwind-entry-nnuviNxx.d.ts} +1 -1
  34. package/dist/tailwind.d.ts +1 -1
  35. package/dist/tailwind.js +23 -12
  36. package/dist/utils/data-export.d.ts +3 -3
  37. package/dist/utils/table-export.d.ts +2 -2
  38. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { T as TigerLocale } from '../locale-CEDXoKX7.js';
1
+ import { T as TigerLocale } from '../locale-KMGxL6bT.js';
2
2
  import '../datepicker-Digy7Stt.js';
3
3
 
4
4
  /**
@@ -203,8 +203,61 @@ var enUS = {
203
203
  dragHintText: "Drag to move",
204
204
  boardAriaLabel: "Task Board"
205
205
  },
206
+ chatWindow: {
207
+ emptyText: "No messages",
208
+ sendText: "Send",
209
+ placeholder: "Type a message",
210
+ sendingText: "Sending",
211
+ sentText: "Delivered",
212
+ failedText: "Failed to send"
213
+ },
214
+ code: {
215
+ copyLabel: "Copy",
216
+ copiedLabel: "Copied",
217
+ copyFailedLabel: "Copy failed"
218
+ },
219
+ commentThread: {
220
+ emptyText: "No comments",
221
+ replyPlaceholder: "Write a reply...",
222
+ replyButtonText: "Reply",
223
+ cancelReplyText: "Cancel",
224
+ likeText: "Like",
225
+ likedText: "Liked",
226
+ replyText: "Reply",
227
+ moreText: "More",
228
+ loadMoreText: "Load more",
229
+ collapseRepliesText: "\u25BE Collapse replies",
230
+ expandRepliesText: "\u25B8 Expand {count} replies"
231
+ },
232
+ activityFeed: {
233
+ emptyText: "No activity",
234
+ loadingText: "Loading..."
235
+ },
236
+ notificationCenter: {
237
+ title: "Notifications",
238
+ emptyText: "No notifications",
239
+ loadingText: "Loading...",
240
+ allLabel: "All",
241
+ unreadLabel: "Unread",
242
+ readLabel: "Read",
243
+ markAllReadText: "Mark all as read",
244
+ markReadText: "Mark as read",
245
+ markUnreadText: "Mark as unread"
246
+ },
206
247
  select: {
207
- doneText: "Done"
248
+ doneText: "Done",
249
+ placeholder: "Select an option",
250
+ emptyText: "No options found"
251
+ },
252
+ colorPicker: {
253
+ trigger: "Pick color",
254
+ panelTitle: "Color",
255
+ clear: "Clear",
256
+ hue: "Hue",
257
+ alpha: "Alpha",
258
+ value: "Color value",
259
+ preview: "Color preview",
260
+ selectPreset: "Select {color}"
208
261
  },
209
262
  tabs: {
210
263
  addTabAriaLabel: "Add tab",
@@ -245,11 +298,41 @@ var enUS = {
245
298
  previewAriaLabel: "Markdown preview",
246
299
  editModeLabel: "Edit",
247
300
  splitModeLabel: "Split",
248
- previewModeLabel: "Preview"
301
+ previewModeLabel: "Preview",
302
+ bold: "Bold",
303
+ italic: "Italic",
304
+ strikethrough: "Strikethrough",
305
+ heading: "Heading",
306
+ blockquote: "Blockquote",
307
+ unorderedList: "Bulleted list",
308
+ orderedList: "Numbered list",
309
+ inlineCode: "Inline code",
310
+ codeBlock: "Code block",
311
+ link: "Link",
312
+ image: "Image",
313
+ table: "Table",
314
+ horizontalRule: "Horizontal rule"
249
315
  },
250
316
  richTextEditor: {
251
317
  formattingToolbarAriaLabel: "Text formatting",
252
- editorAriaLabel: "Rich text editor"
318
+ editorAriaLabel: "Rich text editor",
319
+ bold: "Bold",
320
+ italic: "Italic",
321
+ underline: "Underline",
322
+ strikethrough: "Strikethrough",
323
+ heading1: "H1",
324
+ heading2: "H2",
325
+ heading3: "H3",
326
+ bulletList: "Bullet List",
327
+ orderedList: "Ordered List",
328
+ blockquote: "Blockquote",
329
+ codeBlock: "Code",
330
+ link: "Link",
331
+ image: "Image",
332
+ horizontalRule: "HR",
333
+ undo: "Undo",
334
+ redo: "Redo",
335
+ clear: "Clear"
253
336
  },
254
337
  cronEditor: {
255
338
  ariaLabel: "Cron editor",
@@ -427,8 +510,61 @@ var koKR = defineLocale({
427
510
  dragHintText: "\uB4DC\uB798\uADF8\uD558\uC5EC \uC774\uB3D9",
428
511
  boardAriaLabel: "\uC791\uC5C5 \uBCF4\uB4DC"
429
512
  },
513
+ chatWindow: {
514
+ emptyText: "\uBA54\uC2DC\uC9C0\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4",
515
+ sendText: "\uBCF4\uB0B4\uAE30",
516
+ placeholder: "\uBA54\uC2DC\uC9C0\uB97C \uC785\uB825\uD558\uC138\uC694",
517
+ sendingText: "\uBCF4\uB0B4\uB294 \uC911",
518
+ sentText: "\uC804\uC1A1\uB428",
519
+ failedText: "\uBCF4\uB0B4\uAE30 \uC2E4\uD328"
520
+ },
521
+ code: {
522
+ copyLabel: "\uBCF5\uC0AC",
523
+ copiedLabel: "\uBCF5\uC0AC\uB428",
524
+ copyFailedLabel: "\uBCF5\uC0AC \uC2E4\uD328"
525
+ },
526
+ commentThread: {
527
+ emptyText: "\uB313\uAE00\uC774 \uC5C6\uC2B5\uB2C8\uB2E4",
528
+ replyPlaceholder: "\uB2F5\uAE00\uC744 \uC791\uC131\uD558\uC138\uC694...",
529
+ replyButtonText: "\uB2F5\uAE00",
530
+ cancelReplyText: "\uCDE8\uC18C",
531
+ likeText: "\uC88B\uC544\uC694",
532
+ likedText: "\uC88B\uC544\uC694 \uD568",
533
+ replyText: "\uB2F5\uAE00",
534
+ moreText: "\uB354\uBCF4\uAE30",
535
+ loadMoreText: "\uB354 \uBD88\uB7EC\uC624\uAE30",
536
+ collapseRepliesText: "\u25BE \uB2F5\uAE00 \uC811\uAE30",
537
+ expandRepliesText: "\u25B8 \uB2F5\uAE00 {count}\uAC1C \uD3BC\uCE58\uAE30"
538
+ },
539
+ activityFeed: {
540
+ emptyText: "\uD65C\uB3D9\uC774 \uC5C6\uC2B5\uB2C8\uB2E4",
541
+ loadingText: "\uB85C\uB529 \uC911..."
542
+ },
543
+ notificationCenter: {
544
+ title: "\uC54C\uB9BC",
545
+ emptyText: "\uC54C\uB9BC\uC774 \uC5C6\uC2B5\uB2C8\uB2E4",
546
+ loadingText: "\uB85C\uB529 \uC911...",
547
+ allLabel: "\uC804\uCCB4",
548
+ unreadLabel: "\uC77D\uC9C0 \uC54A\uC74C",
549
+ readLabel: "\uC77D\uC74C",
550
+ markAllReadText: "\uBAA8\uB450 \uC77D\uC74C\uC73C\uB85C \uD45C\uC2DC",
551
+ markReadText: "\uC77D\uC74C\uC73C\uB85C \uD45C\uC2DC",
552
+ markUnreadText: "\uC77D\uC9C0 \uC54A\uC74C\uC73C\uB85C \uD45C\uC2DC"
553
+ },
430
554
  select: {
431
- doneText: "\uC644\uB8CC"
555
+ doneText: "\uC644\uB8CC",
556
+ placeholder: "\uC635\uC158 \uC120\uD0DD",
557
+ emptyText: "\uC635\uC158 \uC5C6\uC74C"
558
+ },
559
+ colorPicker: {
560
+ trigger: "\uC0C9 \uC120\uD0DD",
561
+ panelTitle: "\uC0C9\uC0C1",
562
+ clear: "\uC9C0\uC6B0\uAE30",
563
+ hue: "\uC0C9\uC870",
564
+ alpha: "\uD22C\uBA85\uB3C4",
565
+ value: "\uC0C9\uC0C1 \uAC12",
566
+ preview: "\uBBF8\uB9AC\uBCF4\uAE30",
567
+ selectPreset: "{color} \uC120\uD0DD"
432
568
  },
433
569
  inputOtp: {
434
570
  groupLabel: "\uC77C\uD68C\uC6A9 \uBE44\uBC00\uBC88\uD638",
@@ -1,4 +1,4 @@
1
- import { T as TigerLocale } from '../locale-CEDXoKX7.js';
1
+ import { T as TigerLocale } from '../locale-KMGxL6bT.js';
2
2
  import '../datepicker-Digy7Stt.js';
3
3
 
4
4
  /**
@@ -203,8 +203,61 @@ var enUS = {
203
203
  dragHintText: "Drag to move",
204
204
  boardAriaLabel: "Task Board"
205
205
  },
206
+ chatWindow: {
207
+ emptyText: "No messages",
208
+ sendText: "Send",
209
+ placeholder: "Type a message",
210
+ sendingText: "Sending",
211
+ sentText: "Delivered",
212
+ failedText: "Failed to send"
213
+ },
214
+ code: {
215
+ copyLabel: "Copy",
216
+ copiedLabel: "Copied",
217
+ copyFailedLabel: "Copy failed"
218
+ },
219
+ commentThread: {
220
+ emptyText: "No comments",
221
+ replyPlaceholder: "Write a reply...",
222
+ replyButtonText: "Reply",
223
+ cancelReplyText: "Cancel",
224
+ likeText: "Like",
225
+ likedText: "Liked",
226
+ replyText: "Reply",
227
+ moreText: "More",
228
+ loadMoreText: "Load more",
229
+ collapseRepliesText: "\u25BE Collapse replies",
230
+ expandRepliesText: "\u25B8 Expand {count} replies"
231
+ },
232
+ activityFeed: {
233
+ emptyText: "No activity",
234
+ loadingText: "Loading..."
235
+ },
236
+ notificationCenter: {
237
+ title: "Notifications",
238
+ emptyText: "No notifications",
239
+ loadingText: "Loading...",
240
+ allLabel: "All",
241
+ unreadLabel: "Unread",
242
+ readLabel: "Read",
243
+ markAllReadText: "Mark all as read",
244
+ markReadText: "Mark as read",
245
+ markUnreadText: "Mark as unread"
246
+ },
206
247
  select: {
207
- doneText: "Done"
248
+ doneText: "Done",
249
+ placeholder: "Select an option",
250
+ emptyText: "No options found"
251
+ },
252
+ colorPicker: {
253
+ trigger: "Pick color",
254
+ panelTitle: "Color",
255
+ clear: "Clear",
256
+ hue: "Hue",
257
+ alpha: "Alpha",
258
+ value: "Color value",
259
+ preview: "Color preview",
260
+ selectPreset: "Select {color}"
208
261
  },
209
262
  tabs: {
210
263
  addTabAriaLabel: "Add tab",
@@ -245,11 +298,41 @@ var enUS = {
245
298
  previewAriaLabel: "Markdown preview",
246
299
  editModeLabel: "Edit",
247
300
  splitModeLabel: "Split",
248
- previewModeLabel: "Preview"
301
+ previewModeLabel: "Preview",
302
+ bold: "Bold",
303
+ italic: "Italic",
304
+ strikethrough: "Strikethrough",
305
+ heading: "Heading",
306
+ blockquote: "Blockquote",
307
+ unorderedList: "Bulleted list",
308
+ orderedList: "Numbered list",
309
+ inlineCode: "Inline code",
310
+ codeBlock: "Code block",
311
+ link: "Link",
312
+ image: "Image",
313
+ table: "Table",
314
+ horizontalRule: "Horizontal rule"
249
315
  },
250
316
  richTextEditor: {
251
317
  formattingToolbarAriaLabel: "Text formatting",
252
- editorAriaLabel: "Rich text editor"
318
+ editorAriaLabel: "Rich text editor",
319
+ bold: "Bold",
320
+ italic: "Italic",
321
+ underline: "Underline",
322
+ strikethrough: "Strikethrough",
323
+ heading1: "H1",
324
+ heading2: "H2",
325
+ heading3: "H3",
326
+ bulletList: "Bullet List",
327
+ orderedList: "Ordered List",
328
+ blockquote: "Blockquote",
329
+ codeBlock: "Code",
330
+ link: "Link",
331
+ image: "Image",
332
+ horizontalRule: "HR",
333
+ undo: "Undo",
334
+ redo: "Redo",
335
+ clear: "Clear"
253
336
  },
254
337
  cronEditor: {
255
338
  ariaLabel: "Cron editor",
@@ -442,8 +525,61 @@ var ptBR = defineLocale({
442
525
  dragHintText: "Arraste para mover",
443
526
  boardAriaLabel: "Quadro de tarefas"
444
527
  },
528
+ chatWindow: {
529
+ emptyText: "Nenhuma mensagem",
530
+ sendText: "Enviar",
531
+ placeholder: "Digite uma mensagem",
532
+ sendingText: "Enviando",
533
+ sentText: "Entregue",
534
+ failedText: "Falha ao enviar"
535
+ },
536
+ code: {
537
+ copyLabel: "Copiar",
538
+ copiedLabel: "Copiado",
539
+ copyFailedLabel: "Falha ao copiar"
540
+ },
541
+ commentThread: {
542
+ emptyText: "Nenhum coment\xE1rio",
543
+ replyPlaceholder: "Escreva uma resposta...",
544
+ replyButtonText: "Responder",
545
+ cancelReplyText: "Cancelar",
546
+ likeText: "Curtir",
547
+ likedText: "Curtido",
548
+ replyText: "Responder",
549
+ moreText: "Mais",
550
+ loadMoreText: "Carregar mais",
551
+ collapseRepliesText: "\u25BE Recolher respostas",
552
+ expandRepliesText: "\u25B8 Expandir {count} respostas"
553
+ },
554
+ activityFeed: {
555
+ emptyText: "Nenhuma atividade",
556
+ loadingText: "Carregando..."
557
+ },
558
+ notificationCenter: {
559
+ title: "Notifica\xE7\xF5es",
560
+ emptyText: "Nenhuma notifica\xE7\xE3o",
561
+ loadingText: "Carregando...",
562
+ allLabel: "Todas",
563
+ unreadLabel: "N\xE3o lidas",
564
+ readLabel: "Lidas",
565
+ markAllReadText: "Marcar todas como lidas",
566
+ markReadText: "Marcar como lida",
567
+ markUnreadText: "Marcar como n\xE3o lida"
568
+ },
445
569
  select: {
446
- doneText: "Concluir"
570
+ doneText: "Concluir",
571
+ placeholder: "Selecione uma op\xE7\xE3o",
572
+ emptyText: "Nenhuma op\xE7\xE3o encontrada"
573
+ },
574
+ colorPicker: {
575
+ trigger: "Escolher cor",
576
+ panelTitle: "Cor",
577
+ clear: "Limpar",
578
+ hue: "Matiz",
579
+ alpha: "Alfa",
580
+ value: "Valor da cor",
581
+ preview: "Pr\xE9via",
582
+ selectPreset: "Selecionar {color}"
447
583
  },
448
584
  inputOtp: {
449
585
  groupLabel: "Senha de uso \xFAnico",
@@ -1,4 +1,4 @@
1
- import { T as TigerLocale } from '../locale-CEDXoKX7.js';
1
+ import { T as TigerLocale } from '../locale-KMGxL6bT.js';
2
2
  import '../datepicker-Digy7Stt.js';
3
3
 
4
4
  /**
@@ -203,8 +203,61 @@ var enUS = {
203
203
  dragHintText: "Drag to move",
204
204
  boardAriaLabel: "Task Board"
205
205
  },
206
+ chatWindow: {
207
+ emptyText: "No messages",
208
+ sendText: "Send",
209
+ placeholder: "Type a message",
210
+ sendingText: "Sending",
211
+ sentText: "Delivered",
212
+ failedText: "Failed to send"
213
+ },
214
+ code: {
215
+ copyLabel: "Copy",
216
+ copiedLabel: "Copied",
217
+ copyFailedLabel: "Copy failed"
218
+ },
219
+ commentThread: {
220
+ emptyText: "No comments",
221
+ replyPlaceholder: "Write a reply...",
222
+ replyButtonText: "Reply",
223
+ cancelReplyText: "Cancel",
224
+ likeText: "Like",
225
+ likedText: "Liked",
226
+ replyText: "Reply",
227
+ moreText: "More",
228
+ loadMoreText: "Load more",
229
+ collapseRepliesText: "\u25BE Collapse replies",
230
+ expandRepliesText: "\u25B8 Expand {count} replies"
231
+ },
232
+ activityFeed: {
233
+ emptyText: "No activity",
234
+ loadingText: "Loading..."
235
+ },
236
+ notificationCenter: {
237
+ title: "Notifications",
238
+ emptyText: "No notifications",
239
+ loadingText: "Loading...",
240
+ allLabel: "All",
241
+ unreadLabel: "Unread",
242
+ readLabel: "Read",
243
+ markAllReadText: "Mark all as read",
244
+ markReadText: "Mark as read",
245
+ markUnreadText: "Mark as unread"
246
+ },
206
247
  select: {
207
- doneText: "Done"
248
+ doneText: "Done",
249
+ placeholder: "Select an option",
250
+ emptyText: "No options found"
251
+ },
252
+ colorPicker: {
253
+ trigger: "Pick color",
254
+ panelTitle: "Color",
255
+ clear: "Clear",
256
+ hue: "Hue",
257
+ alpha: "Alpha",
258
+ value: "Color value",
259
+ preview: "Color preview",
260
+ selectPreset: "Select {color}"
208
261
  },
209
262
  tabs: {
210
263
  addTabAriaLabel: "Add tab",
@@ -245,11 +298,41 @@ var enUS = {
245
298
  previewAriaLabel: "Markdown preview",
246
299
  editModeLabel: "Edit",
247
300
  splitModeLabel: "Split",
248
- previewModeLabel: "Preview"
301
+ previewModeLabel: "Preview",
302
+ bold: "Bold",
303
+ italic: "Italic",
304
+ strikethrough: "Strikethrough",
305
+ heading: "Heading",
306
+ blockquote: "Blockquote",
307
+ unorderedList: "Bulleted list",
308
+ orderedList: "Numbered list",
309
+ inlineCode: "Inline code",
310
+ codeBlock: "Code block",
311
+ link: "Link",
312
+ image: "Image",
313
+ table: "Table",
314
+ horizontalRule: "Horizontal rule"
249
315
  },
250
316
  richTextEditor: {
251
317
  formattingToolbarAriaLabel: "Text formatting",
252
- editorAriaLabel: "Rich text editor"
318
+ editorAriaLabel: "Rich text editor",
319
+ bold: "Bold",
320
+ italic: "Italic",
321
+ underline: "Underline",
322
+ strikethrough: "Strikethrough",
323
+ heading1: "H1",
324
+ heading2: "H2",
325
+ heading3: "H3",
326
+ bulletList: "Bullet List",
327
+ orderedList: "Ordered List",
328
+ blockquote: "Blockquote",
329
+ codeBlock: "Code",
330
+ link: "Link",
331
+ image: "Image",
332
+ horizontalRule: "HR",
333
+ undo: "Undo",
334
+ redo: "Redo",
335
+ clear: "Clear"
253
336
  },
254
337
  cronEditor: {
255
338
  ariaLabel: "Cron editor",
@@ -427,8 +510,61 @@ var thTH = defineLocale({
427
510
  dragHintText: "\u0E25\u0E32\u0E01\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E22\u0E49\u0E32\u0E22",
428
511
  boardAriaLabel: "\u0E1A\u0E2D\u0E23\u0E4C\u0E14\u0E07\u0E32\u0E19"
429
512
  },
513
+ chatWindow: {
514
+ emptyText: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21",
515
+ sendText: "\u0E2A\u0E48\u0E07",
516
+ placeholder: "\u0E1E\u0E34\u0E21\u0E1E\u0E4C\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21",
517
+ sendingText: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E2A\u0E48\u0E07",
518
+ sentText: "\u0E2A\u0E48\u0E07\u0E41\u0E25\u0E49\u0E27",
519
+ failedText: "\u0E2A\u0E48\u0E07\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08"
520
+ },
521
+ code: {
522
+ copyLabel: "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01",
523
+ copiedLabel: "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E41\u0E25\u0E49\u0E27",
524
+ copyFailedLabel: "\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01\u0E44\u0E21\u0E48\u0E2A\u0E33\u0E40\u0E23\u0E47\u0E08"
525
+ },
526
+ commentThread: {
527
+ emptyText: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E04\u0E27\u0E32\u0E21\u0E04\u0E34\u0E14\u0E40\u0E2B\u0E47\u0E19",
528
+ replyPlaceholder: "\u0E40\u0E02\u0E35\u0E22\u0E19\u0E01\u0E32\u0E23\u0E15\u0E2D\u0E1A\u0E01\u0E25\u0E31\u0E1A...",
529
+ replyButtonText: "\u0E15\u0E2D\u0E1A\u0E01\u0E25\u0E31\u0E1A",
530
+ cancelReplyText: "\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01",
531
+ likeText: "\u0E16\u0E39\u0E01\u0E43\u0E08",
532
+ likedText: "\u0E16\u0E39\u0E01\u0E43\u0E08\u0E41\u0E25\u0E49\u0E27",
533
+ replyText: "\u0E15\u0E2D\u0E1A\u0E01\u0E25\u0E31\u0E1A",
534
+ moreText: "\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
535
+ loadMoreText: "\u0E42\u0E2B\u0E25\u0E14\u0E40\u0E1E\u0E34\u0E48\u0E21",
536
+ collapseRepliesText: "\u25BE \u0E22\u0E48\u0E2D\u0E01\u0E32\u0E23\u0E15\u0E2D\u0E1A\u0E01\u0E25\u0E31\u0E1A",
537
+ expandRepliesText: "\u25B8 \u0E02\u0E22\u0E32\u0E22\u0E01\u0E32\u0E23\u0E15\u0E2D\u0E1A\u0E01\u0E25\u0E31\u0E1A {count} \u0E23\u0E32\u0E22\u0E01\u0E32\u0E23"
538
+ },
539
+ activityFeed: {
540
+ emptyText: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21",
541
+ loadingText: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E42\u0E2B\u0E25\u0E14..."
542
+ },
543
+ notificationCenter: {
544
+ title: "\u0E01\u0E32\u0E23\u0E41\u0E08\u0E49\u0E07\u0E40\u0E15\u0E37\u0E2D\u0E19",
545
+ emptyText: "\u0E44\u0E21\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E41\u0E08\u0E49\u0E07\u0E40\u0E15\u0E37\u0E2D\u0E19",
546
+ loadingText: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E42\u0E2B\u0E25\u0E14...",
547
+ allLabel: "\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
548
+ unreadLabel: "\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E2D\u0E48\u0E32\u0E19",
549
+ readLabel: "\u0E2D\u0E48\u0E32\u0E19\u0E41\u0E25\u0E49\u0E27",
550
+ markAllReadText: "\u0E17\u0E33\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E2B\u0E21\u0E32\u0E22\u0E27\u0E48\u0E32\u0E2D\u0E48\u0E32\u0E19\u0E41\u0E25\u0E49\u0E27\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
551
+ markReadText: "\u0E17\u0E33\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E2B\u0E21\u0E32\u0E22\u0E27\u0E48\u0E32\u0E2D\u0E48\u0E32\u0E19\u0E41\u0E25\u0E49\u0E27",
552
+ markUnreadText: "\u0E17\u0E33\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E2B\u0E21\u0E32\u0E22\u0E27\u0E48\u0E32\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E2D\u0E48\u0E32\u0E19"
553
+ },
430
554
  select: {
431
- doneText: "\u0E40\u0E2A\u0E23\u0E47\u0E08\u0E2A\u0E34\u0E49\u0E19"
555
+ doneText: "\u0E40\u0E2A\u0E23\u0E47\u0E08\u0E2A\u0E34\u0E49\u0E19",
556
+ placeholder: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01",
557
+ emptyText: "\u0E44\u0E21\u0E48\u0E1E\u0E1A\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01"
558
+ },
559
+ colorPicker: {
560
+ trigger: "\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E2A\u0E35",
561
+ panelTitle: "\u0E2A\u0E35",
562
+ clear: "\u0E25\u0E49\u0E32\u0E07",
563
+ hue: "\u0E2E\u0E34\u0E27",
564
+ alpha: "\u0E04\u0E27\u0E32\u0E21\u0E42\u0E1B\u0E23\u0E48\u0E07\u0E43\u0E2A",
565
+ value: "\u0E04\u0E48\u0E32\u0E2A\u0E35",
566
+ preview: "\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E2A\u0E35",
567
+ selectPreset: "\u0E40\u0E25\u0E37\u0E2D\u0E01 {color}"
432
568
  },
433
569
  inputOtp: {
434
570
  groupLabel: "\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19\u0E41\u0E1A\u0E1A\u0E43\u0E0A\u0E49\u0E04\u0E23\u0E31\u0E49\u0E07\u0E40\u0E14\u0E35\u0E22\u0E27",
@@ -1,4 +1,4 @@
1
- import { T as TigerLocale } from '../locale-CEDXoKX7.js';
1
+ import { T as TigerLocale } from '../locale-KMGxL6bT.js';
2
2
  import '../datepicker-Digy7Stt.js';
3
3
 
4
4
  /**