@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
@@ -315,9 +315,73 @@ 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;
363
+ /** Trigger placeholder when no option is selected */
364
+ placeholder?: string;
365
+ /** Empty options list / no-match copy */
366
+ emptyText?: string;
367
+ }
368
+ interface TigerLocaleColorPicker {
369
+ /** Trigger aria-label / title. Default "Pick color". */
370
+ trigger?: string;
371
+ /** Panel heading and dialog accessible name */
372
+ panelTitle?: string;
373
+ /** Clear-color action text */
374
+ clear?: string;
375
+ /** Hue slider label */
376
+ hue?: string;
377
+ /** Alpha slider label */
378
+ alpha?: string;
379
+ /** Color value input aria-label */
380
+ value?: string;
381
+ /** Preview swatch aria-label */
382
+ preview?: string;
383
+ /** Preset swatch aria-label. Template: supports {color} */
384
+ selectPreset?: string;
321
385
  }
322
386
  interface TigerLocaleTabs {
323
387
  addTabAriaLabel?: string;
@@ -367,10 +431,40 @@ interface TigerLocaleMarkdownEditor {
367
431
  editModeLabel?: string;
368
432
  splitModeLabel?: string;
369
433
  previewModeLabel?: string;
434
+ bold?: string;
435
+ italic?: string;
436
+ strikethrough?: string;
437
+ heading?: string;
438
+ blockquote?: string;
439
+ unorderedList?: string;
440
+ orderedList?: string;
441
+ inlineCode?: string;
442
+ codeBlock?: string;
443
+ link?: string;
444
+ image?: string;
445
+ table?: string;
446
+ horizontalRule?: string;
370
447
  }
371
448
  interface TigerLocaleRichTextEditor {
372
449
  formattingToolbarAriaLabel?: string;
373
450
  editorAriaLabel?: string;
451
+ bold?: string;
452
+ italic?: string;
453
+ underline?: string;
454
+ strikethrough?: string;
455
+ heading1?: string;
456
+ heading2?: string;
457
+ heading3?: string;
458
+ bulletList?: string;
459
+ orderedList?: string;
460
+ blockquote?: string;
461
+ codeBlock?: string;
462
+ link?: string;
463
+ image?: string;
464
+ horizontalRule?: string;
465
+ undo?: string;
466
+ redo?: string;
467
+ clear?: string;
374
468
  }
375
469
  interface TigerLocaleCronEditor {
376
470
  ariaLabel?: string;
@@ -492,7 +586,13 @@ interface TigerLocale {
492
586
  imageEditor?: TigerLocaleImageEditor;
493
587
  status?: TigerLocaleStatus;
494
588
  taskBoard?: TigerLocaleTaskBoard;
589
+ chatWindow?: TigerLocaleChatWindow;
590
+ code?: TigerLocaleCode;
591
+ commentThread?: TigerLocaleCommentThread;
592
+ activityFeed?: TigerLocaleActivityFeed;
593
+ notificationCenter?: TigerLocaleNotificationCenter;
495
594
  select?: TigerLocaleSelect;
595
+ colorPicker?: TigerLocaleColorPicker;
496
596
  tabs?: TigerLocaleTabs;
497
597
  rate?: TigerLocaleRate;
498
598
  avatarGroup?: TigerLocaleAvatarGroup;
@@ -522,4 +622,4 @@ type TigerLocaleLazyModule = Partial<TigerLocale> | {
522
622
  type TigerLocaleLoader = () => PromiseLike<TigerLocaleLazyModule>;
523
623
  type TigerLocaleInput = Partial<TigerLocale> | PromiseLike<TigerLocaleLazyModule> | TigerLocaleLoader;
524
624
 
525
- export type { TigerLocaleDirection as A, TigerLocaleLazyModule as B, TigerLocaleLoader as C, TigerText as D, TimeFormat as E, TigerLocaleDrawer as F, TigerLocaleModal as G, TigerLocaleCommon as H, TigerLocaleEmpty as I, TigerLocaleQRCode as J, TigerLocaleTimePicker as K, TigerLocaleTimeline as L, TigerLocaleUpload as M, TimePickerModelValue as N, TimePickerProps as O, 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, TigerLocaleInputOTP as o, TigerLocaleMarkdownEditor as p, TigerLocaleRate as q, TigerLocaleRichTextEditor as r, TigerLocaleSelect as s, TigerLocaleStatus as t, TigerLocaleTabs as u, TigerLocaleTagsInput as v, TigerLocaleTaskBoard as w, TimePickerLabels as x, TigerLocaleTour as y, TigerLocaleTransfer as z };
625
+ export type { TigerLocaleTabs as A, TigerLocaleTagsInput as B, TigerLocaleTaskBoard as C, TimePickerLabels as D, TigerLocaleTour as E, TigerLocaleTransfer as F, TigerLocaleDirection as G, TigerLocaleLazyModule as H, TigerLocaleLoader as I, TigerText as J, TimeFormat as K, TigerLocaleDrawer as L, TigerLocaleModal as M, TigerLocaleCommon as N, TigerLocaleEmpty as O, TigerLocaleQRCode as P, TigerLocaleTimePicker as Q, TigerLocaleTimeline as R, TigerLocaleUpload as S, TigerLocale as T, TimePickerModelValue as U, TimePickerProps as V, 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, TigerLocaleColorPicker as k, TigerLocaleCommentThread as l, TigerLocaleCronEditor as m, TigerLocaleDataExport as n, TigerLocaleFileManager as o, TigerLocaleFormValidation as p, TigerLocaleFormWizard as q, TigerLocaleImageEditor as r, TigerLocaleImageViewer as s, TigerLocaleInputOTP as t, TigerLocaleMarkdownEditor as u, TigerLocaleNotificationCenter as v, TigerLocaleRate as w, TigerLocaleRichTextEditor as x, TigerLocaleSelect as y, TigerLocaleStatus as z };
@@ -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 arSA = defineLocale({
442
525
  dragHintText: "\u0627\u0633\u062D\u0628 \u0644\u0644\u0646\u0642\u0644",
443
526
  boardAriaLabel: "\u0644\u0648\u062D\u0629 \u0627\u0644\u0645\u0647\u0627\u0645"
444
527
  },
528
+ chatWindow: {
529
+ emptyText: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0631\u0633\u0627\u0626\u0644",
530
+ sendText: "\u0625\u0631\u0633\u0627\u0644",
531
+ placeholder: "\u0627\u0643\u062A\u0628 \u0631\u0633\u0627\u0644\u0629",
532
+ sendingText: "\u062C\u0627\u0631\u064D \u0627\u0644\u0625\u0631\u0633\u0627\u0644",
533
+ sentText: "\u062A\u0645 \u0627\u0644\u062A\u0633\u0644\u064A\u0645",
534
+ failedText: "\u0641\u0634\u0644 \u0627\u0644\u0625\u0631\u0633\u0627\u0644"
535
+ },
536
+ code: {
537
+ copyLabel: "\u0646\u0633\u062E",
538
+ copiedLabel: "\u062A\u0645 \u0627\u0644\u0646\u0633\u062E",
539
+ copyFailedLabel: "\u0641\u0634\u0644 \u0627\u0644\u0646\u0633\u062E"
540
+ },
541
+ commentThread: {
542
+ emptyText: "\u0644\u0627 \u062A\u0648\u062C\u062F \u062A\u0639\u0644\u064A\u0642\u0627\u062A",
543
+ replyPlaceholder: "\u0627\u0643\u062A\u0628 \u0631\u062F\u064B\u0627...",
544
+ replyButtonText: "\u0631\u062F",
545
+ cancelReplyText: "\u0625\u0644\u063A\u0627\u0621",
546
+ likeText: "\u0625\u0639\u062C\u0627\u0628",
547
+ likedText: "\u062A\u0645 \u0627\u0644\u0625\u0639\u062C\u0627\u0628",
548
+ replyText: "\u0631\u062F",
549
+ moreText: "\u0627\u0644\u0645\u0632\u064A\u062F",
550
+ loadMoreText: "\u062A\u062D\u0645\u064A\u0644 \u0627\u0644\u0645\u0632\u064A\u062F",
551
+ collapseRepliesText: "\u25BE \u0637\u064A \u0627\u0644\u0631\u062F\u0648\u062F",
552
+ expandRepliesText: "\u25B8 \u062A\u0648\u0633\u064A\u0639 {count} \u0645\u0646 \u0627\u0644\u0631\u062F\u0648\u062F"
553
+ },
554
+ activityFeed: {
555
+ emptyText: "\u0644\u0627 \u064A\u0648\u062C\u062F \u0646\u0634\u0627\u0637",
556
+ loadingText: "\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644..."
557
+ },
558
+ notificationCenter: {
559
+ title: "\u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062A",
560
+ emptyText: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0625\u0634\u0639\u0627\u0631\u0627\u062A",
561
+ loadingText: "\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644...",
562
+ allLabel: "\u0627\u0644\u0643\u0644",
563
+ unreadLabel: "\u063A\u064A\u0631 \u0645\u0642\u0631\u0648\u0621",
564
+ readLabel: "\u0645\u0642\u0631\u0648\u0621",
565
+ markAllReadText: "\u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u0645\u0642\u0631\u0648\u0621 \u0639\u0644\u0649 \u0627\u0644\u0643\u0644",
566
+ markReadText: "\u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u0645\u0642\u0631\u0648\u0621",
567
+ markUnreadText: "\u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u063A\u064A\u0631 \u0645\u0642\u0631\u0648\u0621"
568
+ },
445
569
  select: {
446
- doneText: "\u0625\u0646\u0647\u0627\u0621"
570
+ doneText: "\u0625\u0646\u0647\u0627\u0621",
571
+ placeholder: "\u0627\u062E\u062A\u0631 \u062E\u064A\u0627\u0631\u0627\u064B",
572
+ emptyText: "\u0644\u0627 \u062A\u0648\u062C\u062F \u062E\u064A\u0627\u0631\u0627\u062A"
573
+ },
574
+ colorPicker: {
575
+ trigger: "\u0627\u062E\u062A\u064A\u0627\u0631 \u0644\u0648\u0646",
576
+ panelTitle: "\u0627\u0644\u0644\u0648\u0646",
577
+ clear: "\u0645\u0633\u062D",
578
+ hue: "\u062A\u062F\u0631\u062C",
579
+ alpha: "\u0627\u0644\u0634\u0641\u0627\u0641\u064A\u0629",
580
+ value: "\u0642\u064A\u0645\u0629 \u0627\u0644\u0644\u0648\u0646",
581
+ preview: "\u0645\u0639\u0627\u064A\u0646\u0629",
582
+ selectPreset: "\u0627\u062E\u062A\u064A\u0627\u0631 {color}"
447
583
  },
448
584
  inputOtp: {
449
585
  groupLabel: "\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u0644\u0645\u0631\u0629 \u0648\u0627\u062D\u062F\u0629",
@@ -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 deDE = defineLocale({
442
525
  dragHintText: "Zum Verschieben ziehen",
443
526
  boardAriaLabel: "Aufgabenboard"
444
527
  },
528
+ chatWindow: {
529
+ emptyText: "Keine Nachrichten",
530
+ sendText: "Senden",
531
+ placeholder: "Nachricht eingeben",
532
+ sendingText: "Senden...",
533
+ sentText: "Zugestellt",
534
+ failedText: "Senden fehlgeschlagen"
535
+ },
536
+ code: {
537
+ copyLabel: "Kopieren",
538
+ copiedLabel: "Kopiert",
539
+ copyFailedLabel: "Kopieren fehlgeschlagen"
540
+ },
541
+ commentThread: {
542
+ emptyText: "Keine Kommentare",
543
+ replyPlaceholder: "Antwort schreiben...",
544
+ replyButtonText: "Antworten",
545
+ cancelReplyText: "Abbrechen",
546
+ likeText: "Gef\xE4llt mir",
547
+ likedText: "Gef\xE4llt dir",
548
+ replyText: "Antworten",
549
+ moreText: "Mehr",
550
+ loadMoreText: "Mehr laden",
551
+ collapseRepliesText: "\u25BE Antworten ausblenden",
552
+ expandRepliesText: "\u25B8 {count} Antworten anzeigen"
553
+ },
554
+ activityFeed: {
555
+ emptyText: "Keine Aktivit\xE4t",
556
+ loadingText: "Wird geladen..."
557
+ },
558
+ notificationCenter: {
559
+ title: "Benachrichtigungen",
560
+ emptyText: "Keine Benachrichtigungen",
561
+ loadingText: "Wird geladen...",
562
+ allLabel: "Alle",
563
+ unreadLabel: "Ungelesen",
564
+ readLabel: "Gelesen",
565
+ markAllReadText: "Alle als gelesen markieren",
566
+ markReadText: "Als gelesen markieren",
567
+ markUnreadText: "Als ungelesen markieren"
568
+ },
445
569
  select: {
446
- doneText: "Fertigstellen"
570
+ doneText: "Fertigstellen",
571
+ placeholder: "Option ausw\xE4hlen",
572
+ emptyText: "Keine Optionen gefunden"
573
+ },
574
+ colorPicker: {
575
+ trigger: "Farbe w\xE4hlen",
576
+ panelTitle: "Farbe",
577
+ clear: "L\xF6schen",
578
+ hue: "Farbton",
579
+ alpha: "Alpha",
580
+ value: "Farbwert",
581
+ preview: "Vorschau",
582
+ selectPreset: "{color} ausw\xE4hlen"
447
583
  },
448
584
  inputOtp: {
449
585
  groupLabel: "Einmalpasswort",
@@ -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",
@@ -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
  /**