@underverse-ui/underverse 2.0.34 → 2.0.36

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/api-reference.json +1 -1
  2. package/dist/DatePicker-FDOTQMNL.js +15 -0
  3. package/dist/{EmojiPicker-6H52Q4YE.js → EmojiPicker-Z7QPW4DA.js} +5 -4
  4. package/dist/EmojiPicker-Z7QPW4DA.js.map +1 -0
  5. package/dist/chunk-5GMQ23IU.js +719 -0
  6. package/dist/chunk-5GMQ23IU.js.map +1 -0
  7. package/dist/{chunk-L73HBI6E.js → chunk-5VCM2Z7M.js} +6 -4
  8. package/dist/{chunk-L73HBI6E.js.map → chunk-5VCM2Z7M.js.map} +1 -1
  9. package/dist/{chunk-6FAHXNDQ.js → chunk-6XQTRIP6.js} +10 -349
  10. package/dist/chunk-6XQTRIP6.js.map +1 -0
  11. package/dist/chunk-EN33T3LJ.js +358 -0
  12. package/dist/chunk-EN33T3LJ.js.map +1 -0
  13. package/dist/{chunk-UHUKUI5S.js → chunk-JABD2ONI.js} +3 -3
  14. package/dist/chunk-JG3U26V6.js +1692 -0
  15. package/dist/chunk-JG3U26V6.js.map +1 -0
  16. package/dist/{chunk-JYAEYUGM.js → chunk-SCW2XGCE.js} +466 -354
  17. package/dist/chunk-SCW2XGCE.js.map +1 -0
  18. package/dist/{chunk-W3QTP2DM.js → chunk-TSBKJELM.js} +2 -2
  19. package/dist/{chunk-OTPC2OTQ.js → chunk-V4VZZHV7.js} +324 -1031
  20. package/dist/chunk-V4VZZHV7.js.map +1 -0
  21. package/dist/index.cjs +13476 -13310
  22. package/dist/index.cjs.map +1 -1
  23. package/dist/index.d.cts +20 -0
  24. package/dist/index.d.ts +20 -0
  25. package/dist/index.js +1942 -3570
  26. package/dist/index.js.map +1 -1
  27. package/dist/{menu-bar-HZBBRX42.js → menu-bar-MX3LXG6T.js} +6 -4
  28. package/dist/{menu-bar-HZBBRX42.js.map → menu-bar-MX3LXG6T.js.map} +1 -1
  29. package/dist/ueditor.cjs +2783 -1101
  30. package/dist/ueditor.cjs.map +1 -1
  31. package/dist/ueditor.d.cts +2 -0
  32. package/dist/ueditor.d.ts +2 -0
  33. package/dist/ueditor.js +6 -4
  34. package/package.json +1 -1
  35. package/dist/chunk-6FAHXNDQ.js.map +0 -1
  36. package/dist/chunk-JYAEYUGM.js.map +0 -1
  37. package/dist/chunk-OTPC2OTQ.js.map +0 -1
  38. /package/dist/{EmojiPicker-6H52Q4YE.js.map → DatePicker-FDOTQMNL.js.map} +0 -0
  39. /package/dist/{chunk-UHUKUI5S.js.map → chunk-JABD2ONI.js.map} +0 -0
  40. /package/dist/{chunk-W3QTP2DM.js.map → chunk-TSBKJELM.js.map} +0 -0
package/dist/index.d.cts CHANGED
@@ -1053,6 +1053,10 @@ interface DatePickerProps {
1053
1053
  /** Maximum selectable date (inclusive). Compared by day in local timezone. */
1054
1054
  maxDate?: Date;
1055
1055
  borderMode?: BorderMode;
1056
+ /** Render a compact calendar-button trigger instead of the editable date input. */
1057
+ iconOnly?: boolean;
1058
+ /** Date format displayed above an icon-only trigger. */
1059
+ iconOnlyDateFormat?: "locale" | "year-month-day";
1056
1060
  /** Resolve the document element that should receive the calendar portal. */
1057
1061
  getPortalContainer?: () => HTMLElement | null;
1058
1062
  }
@@ -3873,6 +3877,8 @@ declare const underverseMessages: {
3873
3877
  codeBlockDesc: string;
3874
3878
  divider: string;
3875
3879
  dividerDesc: string;
3880
+ date: string;
3881
+ dateDesc: string;
3876
3882
  table: string;
3877
3883
  tableDesc: string;
3878
3884
  noResults: string;
@@ -4333,6 +4339,8 @@ declare const underverseMessages: {
4333
4339
  codeBlockDesc: string;
4334
4340
  divider: string;
4335
4341
  dividerDesc: string;
4342
+ date: string;
4343
+ dateDesc: string;
4336
4344
  table: string;
4337
4345
  tableDesc: string;
4338
4346
  noResults: string;
@@ -4793,6 +4801,8 @@ declare const underverseMessages: {
4793
4801
  codeBlockDesc: string;
4794
4802
  divider: string;
4795
4803
  dividerDesc: string;
4804
+ date: string;
4805
+ dateDesc: string;
4796
4806
  table: string;
4797
4807
  tableDesc: string;
4798
4808
  noResults: string;
@@ -5253,6 +5263,8 @@ declare const underverseMessages: {
5253
5263
  codeBlockDesc: string;
5254
5264
  divider: string;
5255
5265
  dividerDesc: string;
5266
+ date: string;
5267
+ dateDesc: string;
5256
5268
  table: string;
5257
5269
  tableDesc: string;
5258
5270
  noResults: string;
@@ -5716,6 +5728,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
5716
5728
  codeBlockDesc: string;
5717
5729
  divider: string;
5718
5730
  dividerDesc: string;
5731
+ date: string;
5732
+ dateDesc: string;
5719
5733
  table: string;
5720
5734
  tableDesc: string;
5721
5735
  noResults: string;
@@ -6175,6 +6189,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
6175
6189
  codeBlockDesc: string;
6176
6190
  divider: string;
6177
6191
  dividerDesc: string;
6192
+ date: string;
6193
+ dateDesc: string;
6178
6194
  table: string;
6179
6195
  tableDesc: string;
6180
6196
  noResults: string;
@@ -6634,6 +6650,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
6634
6650
  codeBlockDesc: string;
6635
6651
  divider: string;
6636
6652
  dividerDesc: string;
6653
+ date: string;
6654
+ dateDesc: string;
6637
6655
  table: string;
6638
6656
  tableDesc: string;
6639
6657
  noResults: string;
@@ -7093,6 +7111,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
7093
7111
  codeBlockDesc: string;
7094
7112
  divider: string;
7095
7113
  dividerDesc: string;
7114
+ date: string;
7115
+ dateDesc: string;
7096
7116
  table: string;
7097
7117
  tableDesc: string;
7098
7118
  noResults: string;
package/dist/index.d.ts CHANGED
@@ -1053,6 +1053,10 @@ interface DatePickerProps {
1053
1053
  /** Maximum selectable date (inclusive). Compared by day in local timezone. */
1054
1054
  maxDate?: Date;
1055
1055
  borderMode?: BorderMode;
1056
+ /** Render a compact calendar-button trigger instead of the editable date input. */
1057
+ iconOnly?: boolean;
1058
+ /** Date format displayed above an icon-only trigger. */
1059
+ iconOnlyDateFormat?: "locale" | "year-month-day";
1056
1060
  /** Resolve the document element that should receive the calendar portal. */
1057
1061
  getPortalContainer?: () => HTMLElement | null;
1058
1062
  }
@@ -3873,6 +3877,8 @@ declare const underverseMessages: {
3873
3877
  codeBlockDesc: string;
3874
3878
  divider: string;
3875
3879
  dividerDesc: string;
3880
+ date: string;
3881
+ dateDesc: string;
3876
3882
  table: string;
3877
3883
  tableDesc: string;
3878
3884
  noResults: string;
@@ -4333,6 +4339,8 @@ declare const underverseMessages: {
4333
4339
  codeBlockDesc: string;
4334
4340
  divider: string;
4335
4341
  dividerDesc: string;
4342
+ date: string;
4343
+ dateDesc: string;
4336
4344
  table: string;
4337
4345
  tableDesc: string;
4338
4346
  noResults: string;
@@ -4793,6 +4801,8 @@ declare const underverseMessages: {
4793
4801
  codeBlockDesc: string;
4794
4802
  divider: string;
4795
4803
  dividerDesc: string;
4804
+ date: string;
4805
+ dateDesc: string;
4796
4806
  table: string;
4797
4807
  tableDesc: string;
4798
4808
  noResults: string;
@@ -5253,6 +5263,8 @@ declare const underverseMessages: {
5253
5263
  codeBlockDesc: string;
5254
5264
  divider: string;
5255
5265
  dividerDesc: string;
5266
+ date: string;
5267
+ dateDesc: string;
5256
5268
  table: string;
5257
5269
  tableDesc: string;
5258
5270
  noResults: string;
@@ -5716,6 +5728,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
5716
5728
  codeBlockDesc: string;
5717
5729
  divider: string;
5718
5730
  dividerDesc: string;
5731
+ date: string;
5732
+ dateDesc: string;
5719
5733
  table: string;
5720
5734
  tableDesc: string;
5721
5735
  noResults: string;
@@ -6175,6 +6189,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
6175
6189
  codeBlockDesc: string;
6176
6190
  divider: string;
6177
6191
  dividerDesc: string;
6192
+ date: string;
6193
+ dateDesc: string;
6178
6194
  table: string;
6179
6195
  tableDesc: string;
6180
6196
  noResults: string;
@@ -6634,6 +6650,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
6634
6650
  codeBlockDesc: string;
6635
6651
  divider: string;
6636
6652
  dividerDesc: string;
6653
+ date: string;
6654
+ dateDesc: string;
6637
6655
  table: string;
6638
6656
  tableDesc: string;
6639
6657
  noResults: string;
@@ -7093,6 +7111,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
7093
7111
  codeBlockDesc: string;
7094
7112
  divider: string;
7095
7113
  dividerDesc: string;
7114
+ date: string;
7115
+ dateDesc: string;
7096
7116
  table: string;
7097
7117
  tableDesc: string;
7098
7118
  noResults: string;