@expcat/tigercat-core 2.0.19 → 2.1.1

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 (40) hide show
  1. package/dist/{data-export-CJTP3rIi.d.ts → data-export-BtjseC7G.d.ts} +1 -1
  2. package/dist/index.d.ts +5152 -2046
  3. package/dist/index.js +3489 -437
  4. package/dist/{locale-CaxkEHEG.d.ts → locale-CGl5S1-B.d.ts} +70 -1
  5. package/dist/locales/ar-SA.d.ts +1 -1
  6. package/dist/locales/ar-SA.js +98 -0
  7. package/dist/locales/de-DE.d.ts +1 -1
  8. package/dist/locales/de-DE.js +98 -0
  9. package/dist/locales/en-US.d.ts +1 -1
  10. package/dist/locales/en-US.js +49 -0
  11. package/dist/locales/es-ES.d.ts +1 -1
  12. package/dist/locales/es-ES.js +98 -0
  13. package/dist/locales/fr-FR.d.ts +1 -1
  14. package/dist/locales/fr-FR.js +98 -0
  15. package/dist/locales/id-ID.d.ts +1 -1
  16. package/dist/locales/id-ID.js +98 -0
  17. package/dist/locales/ja-JP.d.ts +1 -1
  18. package/dist/locales/ja-JP.js +98 -0
  19. package/dist/locales/ko-KR.d.ts +1 -1
  20. package/dist/locales/ko-KR.js +98 -0
  21. package/dist/locales/pt-BR.d.ts +1 -1
  22. package/dist/locales/pt-BR.js +98 -0
  23. package/dist/locales/th-TH.d.ts +1 -1
  24. package/dist/locales/th-TH.js +98 -0
  25. package/dist/locales/vi-VN.d.ts +1 -1
  26. package/dist/locales/vi-VN.js +98 -0
  27. package/dist/locales/zh-CN.d.ts +1 -1
  28. package/dist/locales/zh-CN.js +49 -0
  29. package/dist/locales/zh-TW.d.ts +1 -1
  30. package/dist/locales/zh-TW.js +98 -0
  31. package/dist/{table-DtmPxL6W.d.ts → table-D_1D4Euk.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
  39. package/tokens/tailwind-tokens.js +3 -6
  40. package/tokens/tokens.css +4 -8
@@ -315,6 +315,48 @@ interface TigerLocaleTaskBoard {
315
315
  /** Aria label for the board root region */
316
316
  boardAriaLabel?: string;
317
317
  }
318
+ interface TigerLocaleChatWindow {
319
+ emptyText?: string;
320
+ sendText?: string;
321
+ placeholder?: string;
322
+ sendingText?: string;
323
+ sentText?: string;
324
+ failedText?: string;
325
+ }
326
+ interface TigerLocaleCode {
327
+ copyLabel?: string;
328
+ copiedLabel?: string;
329
+ copyFailedLabel?: string;
330
+ }
331
+ interface TigerLocaleCommentThread {
332
+ emptyText?: string;
333
+ replyPlaceholder?: string;
334
+ replyButtonText?: string;
335
+ cancelReplyText?: string;
336
+ likeText?: string;
337
+ likedText?: string;
338
+ replyText?: string;
339
+ moreText?: string;
340
+ loadMoreText?: string;
341
+ collapseRepliesText?: string;
342
+ /** Template: supports {count} */
343
+ expandRepliesText?: string;
344
+ }
345
+ interface TigerLocaleActivityFeed {
346
+ emptyText?: string;
347
+ loadingText?: string;
348
+ }
349
+ interface TigerLocaleNotificationCenter {
350
+ title?: string;
351
+ emptyText?: string;
352
+ loadingText?: string;
353
+ allLabel?: string;
354
+ unreadLabel?: string;
355
+ readLabel?: string;
356
+ markAllReadText?: string;
357
+ markReadText?: string;
358
+ markUnreadText?: string;
359
+ }
318
360
  interface TigerLocaleSelect {
319
361
  /** Mobile dropdown completion action text */
320
362
  doneText?: string;
@@ -447,6 +489,26 @@ interface TigerLocaleFormValidation {
447
489
  /** Custom validator threw */
448
490
  validatorError?: string;
449
491
  }
492
+ /**
493
+ * InputOTP labels.
494
+ * @since 2.1.0
495
+ */
496
+ interface TigerLocaleInputOTP {
497
+ /** Accessible label for the slot group */
498
+ groupLabel?: string;
499
+ /** Per-slot aria-label — template: supports {index} (1-based) and {total} */
500
+ slotLabel?: string;
501
+ }
502
+ /**
503
+ * TagsInput labels.
504
+ * @since 2.1.0
505
+ */
506
+ interface TigerLocaleTagsInput {
507
+ /** Remove-tag button aria-label — template: supports {tag} */
508
+ removeTagLabel?: string;
509
+ /** Clear-all button aria-label */
510
+ clearAllLabel?: string;
511
+ }
450
512
  interface TigerLocale {
451
513
  /** BCP 47 locale identifier, for Intl formatting and direction inference. */
452
514
  locale?: string;
@@ -472,6 +534,11 @@ interface TigerLocale {
472
534
  imageEditor?: TigerLocaleImageEditor;
473
535
  status?: TigerLocaleStatus;
474
536
  taskBoard?: TigerLocaleTaskBoard;
537
+ chatWindow?: TigerLocaleChatWindow;
538
+ code?: TigerLocaleCode;
539
+ commentThread?: TigerLocaleCommentThread;
540
+ activityFeed?: TigerLocaleActivityFeed;
541
+ notificationCenter?: TigerLocaleNotificationCenter;
475
542
  select?: TigerLocaleSelect;
476
543
  tabs?: TigerLocaleTabs;
477
544
  rate?: TigerLocaleRate;
@@ -483,6 +550,8 @@ interface TigerLocale {
483
550
  richTextEditor?: TigerLocaleRichTextEditor;
484
551
  cronEditor?: TigerLocaleCronEditor;
485
552
  formValidation?: TigerLocaleFormValidation;
553
+ inputOtp?: TigerLocaleInputOTP;
554
+ tagsInput?: TigerLocaleTagsInput;
486
555
  }
487
556
  /**
488
557
  * Flat custom-text overlay for single-language projects that do not need i18n.
@@ -500,4 +569,4 @@ type TigerLocaleLazyModule = Partial<TigerLocale> | {
500
569
  type TigerLocaleLoader = () => PromiseLike<TigerLocaleLazyModule>;
501
570
  type TigerLocaleInput = Partial<TigerLocale> | PromiseLike<TigerLocaleLazyModule> | TigerLocaleLoader;
502
571
 
503
- export type { TigerLocaleLoader as A, TigerText as B, TimeFormat as C, TigerLocaleDrawer as D, TigerLocaleModal as E, TigerLocaleCommon as F, TigerLocaleEmpty as G, TigerLocaleQRCode as H, TigerLocaleTimePicker as I, TigerLocaleTimeline as J, TigerLocaleUpload as K, TimePickerModelValue as L, TimePickerProps as M, TigerLocale as T, TigerLocaleInput as a, TigerLocalePagination as b, TigerLocaleTable as c, TigerLocaleAvatarGroup as d, TigerLocaleCalendar as e, TigerLocaleCarousel as f, TigerLocaleChart as g, TigerLocaleCronEditor as h, TigerLocaleDataExport as i, TigerLocaleFileManager as j, TigerLocaleFormValidation as k, TigerLocaleFormWizard as l, TigerLocaleImageEditor as m, TigerLocaleImageViewer as n, TigerLocaleMarkdownEditor as o, TigerLocaleRate as p, TigerLocaleRichTextEditor as q, TigerLocaleSelect as r, TigerLocaleStatus as s, TigerLocaleTabs as t, TigerLocaleTaskBoard as u, TimePickerLabels as v, TigerLocaleTour as w, TigerLocaleTransfer as x, TigerLocaleDirection as y, TigerLocaleLazyModule as z };
572
+ export type { TigerLocaleTagsInput as A, TigerLocaleTaskBoard as B, TimePickerLabels as C, TigerLocaleTour as D, TigerLocaleTransfer as E, TigerLocaleDirection as F, TigerLocaleLazyModule as G, TigerLocaleLoader as H, TigerText as I, TimeFormat as J, TigerLocaleDrawer as K, TigerLocaleModal as L, TigerLocaleCommon as M, TigerLocaleEmpty as N, TigerLocaleQRCode as O, TigerLocaleTimePicker as P, TigerLocaleTimeline as Q, TigerLocaleUpload as R, TimePickerModelValue as S, TigerLocale as T, TimePickerProps as U, TigerLocaleInput as a, TigerLocalePagination as b, TigerLocaleTable as c, TigerLocaleActivityFeed as d, TigerLocaleAvatarGroup as e, TigerLocaleCalendar as f, TigerLocaleCarousel as g, TigerLocaleChart as h, TigerLocaleChatWindow as i, TigerLocaleCode as j, TigerLocaleCommentThread as k, TigerLocaleCronEditor as l, TigerLocaleDataExport as m, TigerLocaleFileManager as n, TigerLocaleFormValidation as o, TigerLocaleFormWizard as p, TigerLocaleImageEditor as q, TigerLocaleImageViewer as r, TigerLocaleInputOTP as s, TigerLocaleMarkdownEditor as t, TigerLocaleNotificationCenter as u, TigerLocaleRate as v, TigerLocaleRichTextEditor as w, TigerLocaleSelect as x, TigerLocaleStatus as y, TigerLocaleTabs as z };
@@ -1,4 +1,4 @@
1
- import { T as TigerLocale } from '../locale-CaxkEHEG.js';
1
+ import { T as TigerLocale } from '../locale-CGl5S1-B.js';
2
2
  import '../datepicker-Digy7Stt.js';
3
3
 
4
4
  /**
@@ -203,6 +203,47 @@ 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
248
  doneText: "Done"
208
249
  },
@@ -306,6 +347,14 @@ var enUS = {
306
347
  patternMismatch: "Value does not match the required pattern",
307
348
  validatorFailed: "Validation failed",
308
349
  validatorError: "Validation error occurred"
350
+ },
351
+ inputOtp: {
352
+ groupLabel: "One-time password",
353
+ slotLabel: "Character {index} of {total}"
354
+ },
355
+ tagsInput: {
356
+ removeTagLabel: "Remove {tag}",
357
+ clearAllLabel: "Clear all tags"
309
358
  }
310
359
  };
311
360
 
@@ -434,8 +483,57 @@ var arSA = defineLocale({
434
483
  dragHintText: "\u0627\u0633\u062D\u0628 \u0644\u0644\u0646\u0642\u0644",
435
484
  boardAriaLabel: "\u0644\u0648\u062D\u0629 \u0627\u0644\u0645\u0647\u0627\u0645"
436
485
  },
486
+ chatWindow: {
487
+ emptyText: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0631\u0633\u0627\u0626\u0644",
488
+ sendText: "\u0625\u0631\u0633\u0627\u0644",
489
+ placeholder: "\u0627\u0643\u062A\u0628 \u0631\u0633\u0627\u0644\u0629",
490
+ sendingText: "\u062C\u0627\u0631\u064D \u0627\u0644\u0625\u0631\u0633\u0627\u0644",
491
+ sentText: "\u062A\u0645 \u0627\u0644\u062A\u0633\u0644\u064A\u0645",
492
+ failedText: "\u0641\u0634\u0644 \u0627\u0644\u0625\u0631\u0633\u0627\u0644"
493
+ },
494
+ code: {
495
+ copyLabel: "\u0646\u0633\u062E",
496
+ copiedLabel: "\u062A\u0645 \u0627\u0644\u0646\u0633\u062E",
497
+ copyFailedLabel: "\u0641\u0634\u0644 \u0627\u0644\u0646\u0633\u062E"
498
+ },
499
+ commentThread: {
500
+ emptyText: "\u0644\u0627 \u062A\u0648\u062C\u062F \u062A\u0639\u0644\u064A\u0642\u0627\u062A",
501
+ replyPlaceholder: "\u0627\u0643\u062A\u0628 \u0631\u062F\u064B\u0627...",
502
+ replyButtonText: "\u0631\u062F",
503
+ cancelReplyText: "\u0625\u0644\u063A\u0627\u0621",
504
+ likeText: "\u0625\u0639\u062C\u0627\u0628",
505
+ likedText: "\u062A\u0645 \u0627\u0644\u0625\u0639\u062C\u0627\u0628",
506
+ replyText: "\u0631\u062F",
507
+ moreText: "\u0627\u0644\u0645\u0632\u064A\u062F",
508
+ loadMoreText: "\u062A\u062D\u0645\u064A\u0644 \u0627\u0644\u0645\u0632\u064A\u062F",
509
+ collapseRepliesText: "\u25BE \u0637\u064A \u0627\u0644\u0631\u062F\u0648\u062F",
510
+ expandRepliesText: "\u25B8 \u062A\u0648\u0633\u064A\u0639 {count} \u0645\u0646 \u0627\u0644\u0631\u062F\u0648\u062F"
511
+ },
512
+ activityFeed: {
513
+ emptyText: "\u0644\u0627 \u064A\u0648\u062C\u062F \u0646\u0634\u0627\u0637",
514
+ loadingText: "\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644..."
515
+ },
516
+ notificationCenter: {
517
+ title: "\u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062A",
518
+ emptyText: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0625\u0634\u0639\u0627\u0631\u0627\u062A",
519
+ loadingText: "\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644...",
520
+ allLabel: "\u0627\u0644\u0643\u0644",
521
+ unreadLabel: "\u063A\u064A\u0631 \u0645\u0642\u0631\u0648\u0621",
522
+ readLabel: "\u0645\u0642\u0631\u0648\u0621",
523
+ markAllReadText: "\u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u0645\u0642\u0631\u0648\u0621 \u0639\u0644\u0649 \u0627\u0644\u0643\u0644",
524
+ markReadText: "\u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u0645\u0642\u0631\u0648\u0621",
525
+ markUnreadText: "\u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u063A\u064A\u0631 \u0645\u0642\u0631\u0648\u0621"
526
+ },
437
527
  select: {
438
528
  doneText: "\u0625\u0646\u0647\u0627\u0621"
529
+ },
530
+ inputOtp: {
531
+ groupLabel: "\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u0644\u0645\u0631\u0629 \u0648\u0627\u062D\u062F\u0629",
532
+ slotLabel: "\u0627\u0644\u062D\u0631\u0641 {index} \u0645\u0646 {total}"
533
+ },
534
+ tagsInput: {
535
+ removeTagLabel: "\u0625\u0632\u0627\u0644\u0629 {tag}",
536
+ clearAllLabel: "\u0645\u0633\u062D \u0643\u0644 \u0627\u0644\u0648\u0633\u0648\u0645"
439
537
  }
440
538
  });
441
539
  var ar_SA_default = arSA;
@@ -1,4 +1,4 @@
1
- import { T as TigerLocale } from '../locale-CaxkEHEG.js';
1
+ import { T as TigerLocale } from '../locale-CGl5S1-B.js';
2
2
  import '../datepicker-Digy7Stt.js';
3
3
 
4
4
  /**
@@ -203,6 +203,47 @@ 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
248
  doneText: "Done"
208
249
  },
@@ -306,6 +347,14 @@ var enUS = {
306
347
  patternMismatch: "Value does not match the required pattern",
307
348
  validatorFailed: "Validation failed",
308
349
  validatorError: "Validation error occurred"
350
+ },
351
+ inputOtp: {
352
+ groupLabel: "One-time password",
353
+ slotLabel: "Character {index} of {total}"
354
+ },
355
+ tagsInput: {
356
+ removeTagLabel: "Remove {tag}",
357
+ clearAllLabel: "Clear all tags"
309
358
  }
310
359
  };
311
360
 
@@ -434,8 +483,57 @@ var deDE = defineLocale({
434
483
  dragHintText: "Zum Verschieben ziehen",
435
484
  boardAriaLabel: "Aufgabenboard"
436
485
  },
486
+ chatWindow: {
487
+ emptyText: "Keine Nachrichten",
488
+ sendText: "Senden",
489
+ placeholder: "Nachricht eingeben",
490
+ sendingText: "Senden...",
491
+ sentText: "Zugestellt",
492
+ failedText: "Senden fehlgeschlagen"
493
+ },
494
+ code: {
495
+ copyLabel: "Kopieren",
496
+ copiedLabel: "Kopiert",
497
+ copyFailedLabel: "Kopieren fehlgeschlagen"
498
+ },
499
+ commentThread: {
500
+ emptyText: "Keine Kommentare",
501
+ replyPlaceholder: "Antwort schreiben...",
502
+ replyButtonText: "Antworten",
503
+ cancelReplyText: "Abbrechen",
504
+ likeText: "Gef\xE4llt mir",
505
+ likedText: "Gef\xE4llt dir",
506
+ replyText: "Antworten",
507
+ moreText: "Mehr",
508
+ loadMoreText: "Mehr laden",
509
+ collapseRepliesText: "\u25BE Antworten ausblenden",
510
+ expandRepliesText: "\u25B8 {count} Antworten anzeigen"
511
+ },
512
+ activityFeed: {
513
+ emptyText: "Keine Aktivit\xE4t",
514
+ loadingText: "Wird geladen..."
515
+ },
516
+ notificationCenter: {
517
+ title: "Benachrichtigungen",
518
+ emptyText: "Keine Benachrichtigungen",
519
+ loadingText: "Wird geladen...",
520
+ allLabel: "Alle",
521
+ unreadLabel: "Ungelesen",
522
+ readLabel: "Gelesen",
523
+ markAllReadText: "Alle als gelesen markieren",
524
+ markReadText: "Als gelesen markieren",
525
+ markUnreadText: "Als ungelesen markieren"
526
+ },
437
527
  select: {
438
528
  doneText: "Fertigstellen"
529
+ },
530
+ inputOtp: {
531
+ groupLabel: "Einmalpasswort",
532
+ slotLabel: "Zeichen {index} von {total}"
533
+ },
534
+ tagsInput: {
535
+ removeTagLabel: "{tag} entfernen",
536
+ clearAllLabel: "Alle Tags l\xF6schen"
439
537
  }
440
538
  });
441
539
  var de_DE_default = deDE;
@@ -1,4 +1,4 @@
1
- import { T as TigerLocale } from '../locale-CaxkEHEG.js';
1
+ import { T as TigerLocale } from '../locale-CGl5S1-B.js';
2
2
  import '../datepicker-Digy7Stt.js';
3
3
 
4
4
  /**
@@ -203,6 +203,47 @@ 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
248
  doneText: "Done"
208
249
  },
@@ -306,6 +347,14 @@ var enUS = {
306
347
  patternMismatch: "Value does not match the required pattern",
307
348
  validatorFailed: "Validation failed",
308
349
  validatorError: "Validation error occurred"
350
+ },
351
+ inputOtp: {
352
+ groupLabel: "One-time password",
353
+ slotLabel: "Character {index} of {total}"
354
+ },
355
+ tagsInput: {
356
+ removeTagLabel: "Remove {tag}",
357
+ clearAllLabel: "Clear all tags"
309
358
  }
310
359
  };
311
360
  export {
@@ -1,4 +1,4 @@
1
- import { T as TigerLocale } from '../locale-CaxkEHEG.js';
1
+ import { T as TigerLocale } from '../locale-CGl5S1-B.js';
2
2
  import '../datepicker-Digy7Stt.js';
3
3
 
4
4
  /**
@@ -203,6 +203,47 @@ 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
248
  doneText: "Done"
208
249
  },
@@ -306,6 +347,14 @@ var enUS = {
306
347
  patternMismatch: "Value does not match the required pattern",
307
348
  validatorFailed: "Validation failed",
308
349
  validatorError: "Validation error occurred"
350
+ },
351
+ inputOtp: {
352
+ groupLabel: "One-time password",
353
+ slotLabel: "Character {index} of {total}"
354
+ },
355
+ tagsInput: {
356
+ removeTagLabel: "Remove {tag}",
357
+ clearAllLabel: "Clear all tags"
309
358
  }
310
359
  };
311
360
 
@@ -434,8 +483,57 @@ var esES = defineLocale({
434
483
  dragHintText: "Arrastra para mover",
435
484
  boardAriaLabel: "Tablero de tareas"
436
485
  },
486
+ chatWindow: {
487
+ emptyText: "No hay mensajes",
488
+ sendText: "Enviar",
489
+ placeholder: "Escribe un mensaje",
490
+ sendingText: "Enviando",
491
+ sentText: "Entregado",
492
+ failedText: "Error al enviar"
493
+ },
494
+ code: {
495
+ copyLabel: "Copiar",
496
+ copiedLabel: "Copiado",
497
+ copyFailedLabel: "Error al copiar"
498
+ },
499
+ commentThread: {
500
+ emptyText: "No hay comentarios",
501
+ replyPlaceholder: "Escribe una respuesta...",
502
+ replyButtonText: "Responder",
503
+ cancelReplyText: "Cancelar",
504
+ likeText: "Me gusta",
505
+ likedText: "Te gusta",
506
+ replyText: "Responder",
507
+ moreText: "M\xE1s",
508
+ loadMoreText: "Cargar m\xE1s",
509
+ collapseRepliesText: "\u25BE Ocultar respuestas",
510
+ expandRepliesText: "\u25B8 Mostrar {count} respuestas"
511
+ },
512
+ activityFeed: {
513
+ emptyText: "No hay actividad",
514
+ loadingText: "Cargando..."
515
+ },
516
+ notificationCenter: {
517
+ title: "Notificaciones",
518
+ emptyText: "No hay notificaciones",
519
+ loadingText: "Cargando...",
520
+ allLabel: "Todas",
521
+ unreadLabel: "No le\xEDdas",
522
+ readLabel: "Le\xEDdas",
523
+ markAllReadText: "Marcar todas como le\xEDdas",
524
+ markReadText: "Marcar como le\xEDda",
525
+ markUnreadText: "Marcar como no le\xEDda"
526
+ },
437
527
  select: {
438
528
  doneText: "Finalizar"
529
+ },
530
+ inputOtp: {
531
+ groupLabel: "Contrase\xF1a de un solo uso",
532
+ slotLabel: "Car\xE1cter {index} de {total}"
533
+ },
534
+ tagsInput: {
535
+ removeTagLabel: "Eliminar {tag}",
536
+ clearAllLabel: "Borrar todas las etiquetas"
439
537
  }
440
538
  });
441
539
  var es_ES_default = esES;
@@ -1,4 +1,4 @@
1
- import { T as TigerLocale } from '../locale-CaxkEHEG.js';
1
+ import { T as TigerLocale } from '../locale-CGl5S1-B.js';
2
2
  import '../datepicker-Digy7Stt.js';
3
3
 
4
4
  /**
@@ -203,6 +203,47 @@ 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
248
  doneText: "Done"
208
249
  },
@@ -306,6 +347,14 @@ var enUS = {
306
347
  patternMismatch: "Value does not match the required pattern",
307
348
  validatorFailed: "Validation failed",
308
349
  validatorError: "Validation error occurred"
350
+ },
351
+ inputOtp: {
352
+ groupLabel: "One-time password",
353
+ slotLabel: "Character {index} of {total}"
354
+ },
355
+ tagsInput: {
356
+ removeTagLabel: "Remove {tag}",
357
+ clearAllLabel: "Clear all tags"
309
358
  }
310
359
  };
311
360
 
@@ -434,8 +483,57 @@ var frFR = defineLocale({
434
483
  dragHintText: "Glisser pour d\xE9placer",
435
484
  boardAriaLabel: "Tableau des t\xE2ches"
436
485
  },
486
+ chatWindow: {
487
+ emptyText: "Aucun message",
488
+ sendText: "Envoyer",
489
+ placeholder: "Saisir un message",
490
+ sendingText: "Envoi...",
491
+ sentText: "Distribu\xE9",
492
+ failedText: "\xC9chec de l'envoi"
493
+ },
494
+ code: {
495
+ copyLabel: "Copier",
496
+ copiedLabel: "Copi\xE9",
497
+ copyFailedLabel: "\xC9chec de la copie"
498
+ },
499
+ commentThread: {
500
+ emptyText: "Aucun commentaire",
501
+ replyPlaceholder: "\xC9crire une r\xE9ponse...",
502
+ replyButtonText: "R\xE9pondre",
503
+ cancelReplyText: "Annuler",
504
+ likeText: "J'aime",
505
+ likedText: "Aim\xE9",
506
+ replyText: "R\xE9pondre",
507
+ moreText: "Plus",
508
+ loadMoreText: "Charger plus",
509
+ collapseRepliesText: "\u25BE R\xE9duire les r\xE9ponses",
510
+ expandRepliesText: "\u25B8 Afficher {count} r\xE9ponses"
511
+ },
512
+ activityFeed: {
513
+ emptyText: "Aucune activit\xE9",
514
+ loadingText: "Chargement..."
515
+ },
516
+ notificationCenter: {
517
+ title: "Notifications",
518
+ emptyText: "Aucune notification",
519
+ loadingText: "Chargement...",
520
+ allLabel: "Toutes",
521
+ unreadLabel: "Non lues",
522
+ readLabel: "Lues",
523
+ markAllReadText: "Tout marquer comme lu",
524
+ markReadText: "Marquer comme lu",
525
+ markUnreadText: "Marquer comme non lu"
526
+ },
437
527
  select: {
438
528
  doneText: "Terminer"
529
+ },
530
+ inputOtp: {
531
+ groupLabel: "Mot de passe \xE0 usage unique",
532
+ slotLabel: "Caract\xE8re {index} sur {total}"
533
+ },
534
+ tagsInput: {
535
+ removeTagLabel: "Supprimer {tag}",
536
+ clearAllLabel: "Effacer toutes les \xE9tiquettes"
439
537
  }
440
538
  });
441
539
  var fr_FR_default = frFR;
@@ -1,4 +1,4 @@
1
- import { T as TigerLocale } from '../locale-CaxkEHEG.js';
1
+ import { T as TigerLocale } from '../locale-CGl5S1-B.js';
2
2
  import '../datepicker-Digy7Stt.js';
3
3
 
4
4
  /**