@underverse-ui/underverse 2.0.39 → 2.0.41
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/api-reference.json +1 -1
- package/dist/{DatePicker-FDOTQMNL.js → DatePicker-BYYBKHWH.js} +4 -4
- package/dist/{EmojiPicker-Z7QPW4DA.js → EmojiPicker-NKY2LOGI.js} +5 -5
- package/dist/{chunk-JG3U26V6.js → chunk-C2EHPHWH.js} +3 -3
- package/dist/{chunk-JABD2ONI.js → chunk-CJ6RPCJN.js} +3 -3
- package/dist/{chunk-BGCDAFGB.js → chunk-GKUKLOSO.js} +287 -5392
- package/dist/chunk-GKUKLOSO.js.map +1 -0
- package/dist/{chunk-EN33T3LJ.js → chunk-IW6FSDIT.js} +2 -2
- package/dist/{chunk-5GMQ23IU.js → chunk-PNUDVGMI.js} +2 -2
- package/dist/{chunk-6XQTRIP6.js → chunk-PSWS64LA.js} +55 -7
- package/dist/chunk-PSWS64LA.js.map +1 -0
- package/dist/{chunk-GZ7EDNGF.js → chunk-TVCZXO6G.js} +7308 -1782
- package/dist/chunk-TVCZXO6G.js.map +1 -0
- package/dist/{chunk-5VCM2Z7M.js → chunk-VYTIGF3V.js} +4 -4
- package/dist/{chunk-TSBKJELM.js → chunk-WZH3Y3BL.js} +2 -2
- package/dist/index.cjs +37386 -36852
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +99 -1
- package/dist/index.d.ts +99 -1
- package/dist/index.js +118 -104
- package/dist/index.js.map +1 -1
- package/dist/{menu-bar-VXAMTP3E.js → menu-bar-67LDC7IR.js} +34 -7
- package/dist/menu-bar-67LDC7IR.js.map +1 -0
- package/dist/ueditor.cjs +16951 -16431
- package/dist/ueditor.cjs.map +1 -1
- package/dist/ueditor.js +6 -6
- package/package.json +3 -1
- package/dist/chunk-6XQTRIP6.js.map +0 -1
- package/dist/chunk-BGCDAFGB.js.map +0 -1
- package/dist/chunk-GZ7EDNGF.js.map +0 -1
- package/dist/menu-bar-VXAMTP3E.js.map +0 -1
- /package/dist/{DatePicker-FDOTQMNL.js.map → DatePicker-BYYBKHWH.js.map} +0 -0
- /package/dist/{EmojiPicker-Z7QPW4DA.js.map → EmojiPicker-NKY2LOGI.js.map} +0 -0
- /package/dist/{chunk-JG3U26V6.js.map → chunk-C2EHPHWH.js.map} +0 -0
- /package/dist/{chunk-JABD2ONI.js.map → chunk-CJ6RPCJN.js.map} +0 -0
- /package/dist/{chunk-EN33T3LJ.js.map → chunk-IW6FSDIT.js.map} +0 -0
- /package/dist/{chunk-5GMQ23IU.js.map → chunk-PNUDVGMI.js.map} +0 -0
- /package/dist/{chunk-5VCM2Z7M.js.map → chunk-VYTIGF3V.js.map} +0 -0
- /package/dist/{chunk-TSBKJELM.js.map → chunk-WZH3Y3BL.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -3019,6 +3019,8 @@ interface DataTableProps<T> {
|
|
|
3019
3019
|
/** Double-click leaf headers to auto-fit column width based on visible content. Default: true */
|
|
3020
3020
|
enableHeaderAutoFit?: boolean;
|
|
3021
3021
|
labels?: DataTableLabels;
|
|
3022
|
+
/** Optional override for sort button label prefix across all sortable column headers */
|
|
3023
|
+
sortByLabel?: string;
|
|
3022
3024
|
borderMode?: BorderMode;
|
|
3023
3025
|
/** Resolve the document element that should receive table dropdown portals. */
|
|
3024
3026
|
getPortalContainer?: () => HTMLElement | null;
|
|
@@ -3026,7 +3028,7 @@ interface DataTableProps<T> {
|
|
|
3026
3028
|
paginationVariant?: "default" | "classic";
|
|
3027
3029
|
}
|
|
3028
3030
|
|
|
3029
|
-
declare function DataTable<T extends Record<string, any>>({ columns, data, rowKey, loading, total, page, pageSize, pageSizeOptions, onQueryChange, caption, toolbar, showToolbar, size, enableColumnVisibilityToggle, enableDensityToggle, enableHeaderAlignToggle, uppercaseHeader, striped, columnDividers, className, storageKey, stickyHeader, maxHeight, horizontalMode, overflowHidden, useOverlayScrollbar, virtualizedRows, estimatedRowHeight, overscan, paginationAlign, paginationRange, enableHeaderAutoFit, labels, columnColorGroups, borderMode, getPortalContainer, paginationVariant, }: DataTableProps<T>): React__default.JSX.Element;
|
|
3031
|
+
declare function DataTable<T extends Record<string, any>>({ columns, data, rowKey, loading, total, page, pageSize, pageSizeOptions, onQueryChange, caption, toolbar, showToolbar, size, enableColumnVisibilityToggle, enableDensityToggle, enableHeaderAlignToggle, uppercaseHeader, striped, columnDividers, className, storageKey, stickyHeader, maxHeight, horizontalMode, overflowHidden, useOverlayScrollbar, virtualizedRows, estimatedRowHeight, overscan, paginationAlign, paginationRange, enableHeaderAutoFit, labels, sortByLabel, columnColorGroups, borderMode, getPortalContainer, paginationVariant, }: DataTableProps<T>): React__default.JSX.Element;
|
|
3030
3032
|
|
|
3031
3033
|
/** Public props for the `Table` component. */
|
|
3032
3034
|
interface TableProps extends React__default.HTMLAttributes<HTMLTableElement> {
|
|
@@ -3686,6 +3688,8 @@ declare const underverseMessages: {
|
|
|
3686
3688
|
alignLeft: string;
|
|
3687
3689
|
alignCenter: string;
|
|
3688
3690
|
alignRight: string;
|
|
3691
|
+
sortBy: string;
|
|
3692
|
+
filterBy: string;
|
|
3689
3693
|
};
|
|
3690
3694
|
ValidationInput: {
|
|
3691
3695
|
required: string;
|
|
@@ -3820,6 +3824,10 @@ declare const underverseMessages: {
|
|
|
3820
3824
|
decreaseIndent: string;
|
|
3821
3825
|
increaseIndent: string;
|
|
3822
3826
|
bulletList: string;
|
|
3827
|
+
bulletStyleDisc: string;
|
|
3828
|
+
bulletStyleDash: string;
|
|
3829
|
+
bulletStyleCircle: string;
|
|
3830
|
+
bulletStyleSquare: string;
|
|
3823
3831
|
orderedList: string;
|
|
3824
3832
|
taskList: string;
|
|
3825
3833
|
quote: string;
|
|
@@ -3951,6 +3959,9 @@ declare const underverseMessages: {
|
|
|
3951
3959
|
addRowAfter: string;
|
|
3952
3960
|
duplicateColumn: string;
|
|
3953
3961
|
duplicateRow: string;
|
|
3962
|
+
distributeColumns: string;
|
|
3963
|
+
distributeRows: string;
|
|
3964
|
+
distributeBoth: string;
|
|
3954
3965
|
clearColumnContents: string;
|
|
3955
3966
|
clearRowContents: string;
|
|
3956
3967
|
deleteColumn: string;
|
|
@@ -4105,6 +4116,9 @@ declare const underverseMessages: {
|
|
|
4105
4116
|
addColumnBefore: string;
|
|
4106
4117
|
addColumnAfter: string;
|
|
4107
4118
|
deleteColumn: string;
|
|
4119
|
+
distributeColumns: string;
|
|
4120
|
+
distributeRows: string;
|
|
4121
|
+
distributeBoth: string;
|
|
4108
4122
|
mergeCells: string;
|
|
4109
4123
|
splitCell: string;
|
|
4110
4124
|
imageUpload: string;
|
|
@@ -4148,6 +4162,8 @@ declare const underverseMessages: {
|
|
|
4148
4162
|
alignLeft: string;
|
|
4149
4163
|
alignCenter: string;
|
|
4150
4164
|
alignRight: string;
|
|
4165
|
+
sortBy: string;
|
|
4166
|
+
filterBy: string;
|
|
4151
4167
|
};
|
|
4152
4168
|
ValidationInput: {
|
|
4153
4169
|
required: string;
|
|
@@ -4282,6 +4298,10 @@ declare const underverseMessages: {
|
|
|
4282
4298
|
decreaseIndent: string;
|
|
4283
4299
|
increaseIndent: string;
|
|
4284
4300
|
bulletList: string;
|
|
4301
|
+
bulletStyleDisc: string;
|
|
4302
|
+
bulletStyleDash: string;
|
|
4303
|
+
bulletStyleCircle: string;
|
|
4304
|
+
bulletStyleSquare: string;
|
|
4285
4305
|
orderedList: string;
|
|
4286
4306
|
taskList: string;
|
|
4287
4307
|
quote: string;
|
|
@@ -4413,6 +4433,9 @@ declare const underverseMessages: {
|
|
|
4413
4433
|
addRowAfter: string;
|
|
4414
4434
|
duplicateColumn: string;
|
|
4415
4435
|
duplicateRow: string;
|
|
4436
|
+
distributeColumns: string;
|
|
4437
|
+
distributeRows: string;
|
|
4438
|
+
distributeBoth: string;
|
|
4416
4439
|
clearColumnContents: string;
|
|
4417
4440
|
clearRowContents: string;
|
|
4418
4441
|
deleteColumn: string;
|
|
@@ -4567,6 +4590,9 @@ declare const underverseMessages: {
|
|
|
4567
4590
|
addColumnBefore: string;
|
|
4568
4591
|
addColumnAfter: string;
|
|
4569
4592
|
deleteColumn: string;
|
|
4593
|
+
distributeColumns: string;
|
|
4594
|
+
distributeRows: string;
|
|
4595
|
+
distributeBoth: string;
|
|
4570
4596
|
mergeCells: string;
|
|
4571
4597
|
splitCell: string;
|
|
4572
4598
|
imageUpload: string;
|
|
@@ -4610,6 +4636,8 @@ declare const underverseMessages: {
|
|
|
4610
4636
|
alignLeft: string;
|
|
4611
4637
|
alignCenter: string;
|
|
4612
4638
|
alignRight: string;
|
|
4639
|
+
sortBy: string;
|
|
4640
|
+
filterBy: string;
|
|
4613
4641
|
};
|
|
4614
4642
|
ValidationInput: {
|
|
4615
4643
|
required: string;
|
|
@@ -4744,6 +4772,10 @@ declare const underverseMessages: {
|
|
|
4744
4772
|
decreaseIndent: string;
|
|
4745
4773
|
increaseIndent: string;
|
|
4746
4774
|
bulletList: string;
|
|
4775
|
+
bulletStyleDisc: string;
|
|
4776
|
+
bulletStyleDash: string;
|
|
4777
|
+
bulletStyleCircle: string;
|
|
4778
|
+
bulletStyleSquare: string;
|
|
4747
4779
|
orderedList: string;
|
|
4748
4780
|
taskList: string;
|
|
4749
4781
|
quote: string;
|
|
@@ -4875,6 +4907,9 @@ declare const underverseMessages: {
|
|
|
4875
4907
|
addRowAfter: string;
|
|
4876
4908
|
duplicateColumn: string;
|
|
4877
4909
|
duplicateRow: string;
|
|
4910
|
+
distributeColumns: string;
|
|
4911
|
+
distributeRows: string;
|
|
4912
|
+
distributeBoth: string;
|
|
4878
4913
|
clearColumnContents: string;
|
|
4879
4914
|
clearRowContents: string;
|
|
4880
4915
|
deleteColumn: string;
|
|
@@ -5029,6 +5064,9 @@ declare const underverseMessages: {
|
|
|
5029
5064
|
addColumnBefore: string;
|
|
5030
5065
|
addColumnAfter: string;
|
|
5031
5066
|
deleteColumn: string;
|
|
5067
|
+
distributeColumns: string;
|
|
5068
|
+
distributeRows: string;
|
|
5069
|
+
distributeBoth: string;
|
|
5032
5070
|
mergeCells: string;
|
|
5033
5071
|
splitCell: string;
|
|
5034
5072
|
imageUpload: string;
|
|
@@ -5072,6 +5110,8 @@ declare const underverseMessages: {
|
|
|
5072
5110
|
alignLeft: string;
|
|
5073
5111
|
alignCenter: string;
|
|
5074
5112
|
alignRight: string;
|
|
5113
|
+
sortBy: string;
|
|
5114
|
+
filterBy: string;
|
|
5075
5115
|
};
|
|
5076
5116
|
ValidationInput: {
|
|
5077
5117
|
required: string;
|
|
@@ -5206,6 +5246,10 @@ declare const underverseMessages: {
|
|
|
5206
5246
|
decreaseIndent: string;
|
|
5207
5247
|
increaseIndent: string;
|
|
5208
5248
|
bulletList: string;
|
|
5249
|
+
bulletStyleDisc: string;
|
|
5250
|
+
bulletStyleDash: string;
|
|
5251
|
+
bulletStyleCircle: string;
|
|
5252
|
+
bulletStyleSquare: string;
|
|
5209
5253
|
orderedList: string;
|
|
5210
5254
|
taskList: string;
|
|
5211
5255
|
quote: string;
|
|
@@ -5337,6 +5381,9 @@ declare const underverseMessages: {
|
|
|
5337
5381
|
addRowAfter: string;
|
|
5338
5382
|
duplicateColumn: string;
|
|
5339
5383
|
duplicateRow: string;
|
|
5384
|
+
distributeColumns: string;
|
|
5385
|
+
distributeRows: string;
|
|
5386
|
+
distributeBoth: string;
|
|
5340
5387
|
clearColumnContents: string;
|
|
5341
5388
|
clearRowContents: string;
|
|
5342
5389
|
deleteColumn: string;
|
|
@@ -5491,6 +5538,9 @@ declare const underverseMessages: {
|
|
|
5491
5538
|
addColumnBefore: string;
|
|
5492
5539
|
addColumnAfter: string;
|
|
5493
5540
|
deleteColumn: string;
|
|
5541
|
+
distributeColumns: string;
|
|
5542
|
+
distributeRows: string;
|
|
5543
|
+
distributeBoth: string;
|
|
5494
5544
|
mergeCells: string;
|
|
5495
5545
|
splitCell: string;
|
|
5496
5546
|
imageUpload: string;
|
|
@@ -5537,6 +5587,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5537
5587
|
alignLeft: string;
|
|
5538
5588
|
alignCenter: string;
|
|
5539
5589
|
alignRight: string;
|
|
5590
|
+
sortBy: string;
|
|
5591
|
+
filterBy: string;
|
|
5540
5592
|
};
|
|
5541
5593
|
ValidationInput: {
|
|
5542
5594
|
required: string;
|
|
@@ -5671,6 +5723,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5671
5723
|
decreaseIndent: string;
|
|
5672
5724
|
increaseIndent: string;
|
|
5673
5725
|
bulletList: string;
|
|
5726
|
+
bulletStyleDisc: string;
|
|
5727
|
+
bulletStyleDash: string;
|
|
5728
|
+
bulletStyleCircle: string;
|
|
5729
|
+
bulletStyleSquare: string;
|
|
5674
5730
|
orderedList: string;
|
|
5675
5731
|
taskList: string;
|
|
5676
5732
|
quote: string;
|
|
@@ -5802,6 +5858,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5802
5858
|
addRowAfter: string;
|
|
5803
5859
|
duplicateColumn: string;
|
|
5804
5860
|
duplicateRow: string;
|
|
5861
|
+
distributeColumns: string;
|
|
5862
|
+
distributeRows: string;
|
|
5863
|
+
distributeBoth: string;
|
|
5805
5864
|
clearColumnContents: string;
|
|
5806
5865
|
clearRowContents: string;
|
|
5807
5866
|
deleteColumn: string;
|
|
@@ -5956,6 +6015,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5956
6015
|
addColumnBefore: string;
|
|
5957
6016
|
addColumnAfter: string;
|
|
5958
6017
|
deleteColumn: string;
|
|
6018
|
+
distributeColumns: string;
|
|
6019
|
+
distributeRows: string;
|
|
6020
|
+
distributeBoth: string;
|
|
5959
6021
|
mergeCells: string;
|
|
5960
6022
|
splitCell: string;
|
|
5961
6023
|
imageUpload: string;
|
|
@@ -5998,6 +6060,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5998
6060
|
alignLeft: string;
|
|
5999
6061
|
alignCenter: string;
|
|
6000
6062
|
alignRight: string;
|
|
6063
|
+
sortBy: string;
|
|
6064
|
+
filterBy: string;
|
|
6001
6065
|
};
|
|
6002
6066
|
ValidationInput: {
|
|
6003
6067
|
required: string;
|
|
@@ -6132,6 +6196,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6132
6196
|
decreaseIndent: string;
|
|
6133
6197
|
increaseIndent: string;
|
|
6134
6198
|
bulletList: string;
|
|
6199
|
+
bulletStyleDisc: string;
|
|
6200
|
+
bulletStyleDash: string;
|
|
6201
|
+
bulletStyleCircle: string;
|
|
6202
|
+
bulletStyleSquare: string;
|
|
6135
6203
|
orderedList: string;
|
|
6136
6204
|
taskList: string;
|
|
6137
6205
|
quote: string;
|
|
@@ -6263,6 +6331,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6263
6331
|
addRowAfter: string;
|
|
6264
6332
|
duplicateColumn: string;
|
|
6265
6333
|
duplicateRow: string;
|
|
6334
|
+
distributeColumns: string;
|
|
6335
|
+
distributeRows: string;
|
|
6336
|
+
distributeBoth: string;
|
|
6266
6337
|
clearColumnContents: string;
|
|
6267
6338
|
clearRowContents: string;
|
|
6268
6339
|
deleteColumn: string;
|
|
@@ -6417,6 +6488,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6417
6488
|
addColumnBefore: string;
|
|
6418
6489
|
addColumnAfter: string;
|
|
6419
6490
|
deleteColumn: string;
|
|
6491
|
+
distributeColumns: string;
|
|
6492
|
+
distributeRows: string;
|
|
6493
|
+
distributeBoth: string;
|
|
6420
6494
|
mergeCells: string;
|
|
6421
6495
|
splitCell: string;
|
|
6422
6496
|
imageUpload: string;
|
|
@@ -6459,6 +6533,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6459
6533
|
alignLeft: string;
|
|
6460
6534
|
alignCenter: string;
|
|
6461
6535
|
alignRight: string;
|
|
6536
|
+
sortBy: string;
|
|
6537
|
+
filterBy: string;
|
|
6462
6538
|
};
|
|
6463
6539
|
ValidationInput: {
|
|
6464
6540
|
required: string;
|
|
@@ -6593,6 +6669,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6593
6669
|
decreaseIndent: string;
|
|
6594
6670
|
increaseIndent: string;
|
|
6595
6671
|
bulletList: string;
|
|
6672
|
+
bulletStyleDisc: string;
|
|
6673
|
+
bulletStyleDash: string;
|
|
6674
|
+
bulletStyleCircle: string;
|
|
6675
|
+
bulletStyleSquare: string;
|
|
6596
6676
|
orderedList: string;
|
|
6597
6677
|
taskList: string;
|
|
6598
6678
|
quote: string;
|
|
@@ -6724,6 +6804,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6724
6804
|
addRowAfter: string;
|
|
6725
6805
|
duplicateColumn: string;
|
|
6726
6806
|
duplicateRow: string;
|
|
6807
|
+
distributeColumns: string;
|
|
6808
|
+
distributeRows: string;
|
|
6809
|
+
distributeBoth: string;
|
|
6727
6810
|
clearColumnContents: string;
|
|
6728
6811
|
clearRowContents: string;
|
|
6729
6812
|
deleteColumn: string;
|
|
@@ -6878,6 +6961,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6878
6961
|
addColumnBefore: string;
|
|
6879
6962
|
addColumnAfter: string;
|
|
6880
6963
|
deleteColumn: string;
|
|
6964
|
+
distributeColumns: string;
|
|
6965
|
+
distributeRows: string;
|
|
6966
|
+
distributeBoth: string;
|
|
6881
6967
|
mergeCells: string;
|
|
6882
6968
|
splitCell: string;
|
|
6883
6969
|
imageUpload: string;
|
|
@@ -6920,6 +7006,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6920
7006
|
alignLeft: string;
|
|
6921
7007
|
alignCenter: string;
|
|
6922
7008
|
alignRight: string;
|
|
7009
|
+
sortBy: string;
|
|
7010
|
+
filterBy: string;
|
|
6923
7011
|
};
|
|
6924
7012
|
ValidationInput: {
|
|
6925
7013
|
required: string;
|
|
@@ -7054,6 +7142,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7054
7142
|
decreaseIndent: string;
|
|
7055
7143
|
increaseIndent: string;
|
|
7056
7144
|
bulletList: string;
|
|
7145
|
+
bulletStyleDisc: string;
|
|
7146
|
+
bulletStyleDash: string;
|
|
7147
|
+
bulletStyleCircle: string;
|
|
7148
|
+
bulletStyleSquare: string;
|
|
7057
7149
|
orderedList: string;
|
|
7058
7150
|
taskList: string;
|
|
7059
7151
|
quote: string;
|
|
@@ -7185,6 +7277,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7185
7277
|
addRowAfter: string;
|
|
7186
7278
|
duplicateColumn: string;
|
|
7187
7279
|
duplicateRow: string;
|
|
7280
|
+
distributeColumns: string;
|
|
7281
|
+
distributeRows: string;
|
|
7282
|
+
distributeBoth: string;
|
|
7188
7283
|
clearColumnContents: string;
|
|
7189
7284
|
clearRowContents: string;
|
|
7190
7285
|
deleteColumn: string;
|
|
@@ -7339,6 +7434,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7339
7434
|
addColumnBefore: string;
|
|
7340
7435
|
addColumnAfter: string;
|
|
7341
7436
|
deleteColumn: string;
|
|
7437
|
+
distributeColumns: string;
|
|
7438
|
+
distributeRows: string;
|
|
7439
|
+
distributeBoth: string;
|
|
7342
7440
|
mergeCells: string;
|
|
7343
7441
|
splitCell: string;
|
|
7344
7442
|
imageUpload: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -3019,6 +3019,8 @@ interface DataTableProps<T> {
|
|
|
3019
3019
|
/** Double-click leaf headers to auto-fit column width based on visible content. Default: true */
|
|
3020
3020
|
enableHeaderAutoFit?: boolean;
|
|
3021
3021
|
labels?: DataTableLabels;
|
|
3022
|
+
/** Optional override for sort button label prefix across all sortable column headers */
|
|
3023
|
+
sortByLabel?: string;
|
|
3022
3024
|
borderMode?: BorderMode;
|
|
3023
3025
|
/** Resolve the document element that should receive table dropdown portals. */
|
|
3024
3026
|
getPortalContainer?: () => HTMLElement | null;
|
|
@@ -3026,7 +3028,7 @@ interface DataTableProps<T> {
|
|
|
3026
3028
|
paginationVariant?: "default" | "classic";
|
|
3027
3029
|
}
|
|
3028
3030
|
|
|
3029
|
-
declare function DataTable<T extends Record<string, any>>({ columns, data, rowKey, loading, total, page, pageSize, pageSizeOptions, onQueryChange, caption, toolbar, showToolbar, size, enableColumnVisibilityToggle, enableDensityToggle, enableHeaderAlignToggle, uppercaseHeader, striped, columnDividers, className, storageKey, stickyHeader, maxHeight, horizontalMode, overflowHidden, useOverlayScrollbar, virtualizedRows, estimatedRowHeight, overscan, paginationAlign, paginationRange, enableHeaderAutoFit, labels, columnColorGroups, borderMode, getPortalContainer, paginationVariant, }: DataTableProps<T>): React__default.JSX.Element;
|
|
3031
|
+
declare function DataTable<T extends Record<string, any>>({ columns, data, rowKey, loading, total, page, pageSize, pageSizeOptions, onQueryChange, caption, toolbar, showToolbar, size, enableColumnVisibilityToggle, enableDensityToggle, enableHeaderAlignToggle, uppercaseHeader, striped, columnDividers, className, storageKey, stickyHeader, maxHeight, horizontalMode, overflowHidden, useOverlayScrollbar, virtualizedRows, estimatedRowHeight, overscan, paginationAlign, paginationRange, enableHeaderAutoFit, labels, sortByLabel, columnColorGroups, borderMode, getPortalContainer, paginationVariant, }: DataTableProps<T>): React__default.JSX.Element;
|
|
3030
3032
|
|
|
3031
3033
|
/** Public props for the `Table` component. */
|
|
3032
3034
|
interface TableProps extends React__default.HTMLAttributes<HTMLTableElement> {
|
|
@@ -3686,6 +3688,8 @@ declare const underverseMessages: {
|
|
|
3686
3688
|
alignLeft: string;
|
|
3687
3689
|
alignCenter: string;
|
|
3688
3690
|
alignRight: string;
|
|
3691
|
+
sortBy: string;
|
|
3692
|
+
filterBy: string;
|
|
3689
3693
|
};
|
|
3690
3694
|
ValidationInput: {
|
|
3691
3695
|
required: string;
|
|
@@ -3820,6 +3824,10 @@ declare const underverseMessages: {
|
|
|
3820
3824
|
decreaseIndent: string;
|
|
3821
3825
|
increaseIndent: string;
|
|
3822
3826
|
bulletList: string;
|
|
3827
|
+
bulletStyleDisc: string;
|
|
3828
|
+
bulletStyleDash: string;
|
|
3829
|
+
bulletStyleCircle: string;
|
|
3830
|
+
bulletStyleSquare: string;
|
|
3823
3831
|
orderedList: string;
|
|
3824
3832
|
taskList: string;
|
|
3825
3833
|
quote: string;
|
|
@@ -3951,6 +3959,9 @@ declare const underverseMessages: {
|
|
|
3951
3959
|
addRowAfter: string;
|
|
3952
3960
|
duplicateColumn: string;
|
|
3953
3961
|
duplicateRow: string;
|
|
3962
|
+
distributeColumns: string;
|
|
3963
|
+
distributeRows: string;
|
|
3964
|
+
distributeBoth: string;
|
|
3954
3965
|
clearColumnContents: string;
|
|
3955
3966
|
clearRowContents: string;
|
|
3956
3967
|
deleteColumn: string;
|
|
@@ -4105,6 +4116,9 @@ declare const underverseMessages: {
|
|
|
4105
4116
|
addColumnBefore: string;
|
|
4106
4117
|
addColumnAfter: string;
|
|
4107
4118
|
deleteColumn: string;
|
|
4119
|
+
distributeColumns: string;
|
|
4120
|
+
distributeRows: string;
|
|
4121
|
+
distributeBoth: string;
|
|
4108
4122
|
mergeCells: string;
|
|
4109
4123
|
splitCell: string;
|
|
4110
4124
|
imageUpload: string;
|
|
@@ -4148,6 +4162,8 @@ declare const underverseMessages: {
|
|
|
4148
4162
|
alignLeft: string;
|
|
4149
4163
|
alignCenter: string;
|
|
4150
4164
|
alignRight: string;
|
|
4165
|
+
sortBy: string;
|
|
4166
|
+
filterBy: string;
|
|
4151
4167
|
};
|
|
4152
4168
|
ValidationInput: {
|
|
4153
4169
|
required: string;
|
|
@@ -4282,6 +4298,10 @@ declare const underverseMessages: {
|
|
|
4282
4298
|
decreaseIndent: string;
|
|
4283
4299
|
increaseIndent: string;
|
|
4284
4300
|
bulletList: string;
|
|
4301
|
+
bulletStyleDisc: string;
|
|
4302
|
+
bulletStyleDash: string;
|
|
4303
|
+
bulletStyleCircle: string;
|
|
4304
|
+
bulletStyleSquare: string;
|
|
4285
4305
|
orderedList: string;
|
|
4286
4306
|
taskList: string;
|
|
4287
4307
|
quote: string;
|
|
@@ -4413,6 +4433,9 @@ declare const underverseMessages: {
|
|
|
4413
4433
|
addRowAfter: string;
|
|
4414
4434
|
duplicateColumn: string;
|
|
4415
4435
|
duplicateRow: string;
|
|
4436
|
+
distributeColumns: string;
|
|
4437
|
+
distributeRows: string;
|
|
4438
|
+
distributeBoth: string;
|
|
4416
4439
|
clearColumnContents: string;
|
|
4417
4440
|
clearRowContents: string;
|
|
4418
4441
|
deleteColumn: string;
|
|
@@ -4567,6 +4590,9 @@ declare const underverseMessages: {
|
|
|
4567
4590
|
addColumnBefore: string;
|
|
4568
4591
|
addColumnAfter: string;
|
|
4569
4592
|
deleteColumn: string;
|
|
4593
|
+
distributeColumns: string;
|
|
4594
|
+
distributeRows: string;
|
|
4595
|
+
distributeBoth: string;
|
|
4570
4596
|
mergeCells: string;
|
|
4571
4597
|
splitCell: string;
|
|
4572
4598
|
imageUpload: string;
|
|
@@ -4610,6 +4636,8 @@ declare const underverseMessages: {
|
|
|
4610
4636
|
alignLeft: string;
|
|
4611
4637
|
alignCenter: string;
|
|
4612
4638
|
alignRight: string;
|
|
4639
|
+
sortBy: string;
|
|
4640
|
+
filterBy: string;
|
|
4613
4641
|
};
|
|
4614
4642
|
ValidationInput: {
|
|
4615
4643
|
required: string;
|
|
@@ -4744,6 +4772,10 @@ declare const underverseMessages: {
|
|
|
4744
4772
|
decreaseIndent: string;
|
|
4745
4773
|
increaseIndent: string;
|
|
4746
4774
|
bulletList: string;
|
|
4775
|
+
bulletStyleDisc: string;
|
|
4776
|
+
bulletStyleDash: string;
|
|
4777
|
+
bulletStyleCircle: string;
|
|
4778
|
+
bulletStyleSquare: string;
|
|
4747
4779
|
orderedList: string;
|
|
4748
4780
|
taskList: string;
|
|
4749
4781
|
quote: string;
|
|
@@ -4875,6 +4907,9 @@ declare const underverseMessages: {
|
|
|
4875
4907
|
addRowAfter: string;
|
|
4876
4908
|
duplicateColumn: string;
|
|
4877
4909
|
duplicateRow: string;
|
|
4910
|
+
distributeColumns: string;
|
|
4911
|
+
distributeRows: string;
|
|
4912
|
+
distributeBoth: string;
|
|
4878
4913
|
clearColumnContents: string;
|
|
4879
4914
|
clearRowContents: string;
|
|
4880
4915
|
deleteColumn: string;
|
|
@@ -5029,6 +5064,9 @@ declare const underverseMessages: {
|
|
|
5029
5064
|
addColumnBefore: string;
|
|
5030
5065
|
addColumnAfter: string;
|
|
5031
5066
|
deleteColumn: string;
|
|
5067
|
+
distributeColumns: string;
|
|
5068
|
+
distributeRows: string;
|
|
5069
|
+
distributeBoth: string;
|
|
5032
5070
|
mergeCells: string;
|
|
5033
5071
|
splitCell: string;
|
|
5034
5072
|
imageUpload: string;
|
|
@@ -5072,6 +5110,8 @@ declare const underverseMessages: {
|
|
|
5072
5110
|
alignLeft: string;
|
|
5073
5111
|
alignCenter: string;
|
|
5074
5112
|
alignRight: string;
|
|
5113
|
+
sortBy: string;
|
|
5114
|
+
filterBy: string;
|
|
5075
5115
|
};
|
|
5076
5116
|
ValidationInput: {
|
|
5077
5117
|
required: string;
|
|
@@ -5206,6 +5246,10 @@ declare const underverseMessages: {
|
|
|
5206
5246
|
decreaseIndent: string;
|
|
5207
5247
|
increaseIndent: string;
|
|
5208
5248
|
bulletList: string;
|
|
5249
|
+
bulletStyleDisc: string;
|
|
5250
|
+
bulletStyleDash: string;
|
|
5251
|
+
bulletStyleCircle: string;
|
|
5252
|
+
bulletStyleSquare: string;
|
|
5209
5253
|
orderedList: string;
|
|
5210
5254
|
taskList: string;
|
|
5211
5255
|
quote: string;
|
|
@@ -5337,6 +5381,9 @@ declare const underverseMessages: {
|
|
|
5337
5381
|
addRowAfter: string;
|
|
5338
5382
|
duplicateColumn: string;
|
|
5339
5383
|
duplicateRow: string;
|
|
5384
|
+
distributeColumns: string;
|
|
5385
|
+
distributeRows: string;
|
|
5386
|
+
distributeBoth: string;
|
|
5340
5387
|
clearColumnContents: string;
|
|
5341
5388
|
clearRowContents: string;
|
|
5342
5389
|
deleteColumn: string;
|
|
@@ -5491,6 +5538,9 @@ declare const underverseMessages: {
|
|
|
5491
5538
|
addColumnBefore: string;
|
|
5492
5539
|
addColumnAfter: string;
|
|
5493
5540
|
deleteColumn: string;
|
|
5541
|
+
distributeColumns: string;
|
|
5542
|
+
distributeRows: string;
|
|
5543
|
+
distributeBoth: string;
|
|
5494
5544
|
mergeCells: string;
|
|
5495
5545
|
splitCell: string;
|
|
5496
5546
|
imageUpload: string;
|
|
@@ -5537,6 +5587,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5537
5587
|
alignLeft: string;
|
|
5538
5588
|
alignCenter: string;
|
|
5539
5589
|
alignRight: string;
|
|
5590
|
+
sortBy: string;
|
|
5591
|
+
filterBy: string;
|
|
5540
5592
|
};
|
|
5541
5593
|
ValidationInput: {
|
|
5542
5594
|
required: string;
|
|
@@ -5671,6 +5723,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5671
5723
|
decreaseIndent: string;
|
|
5672
5724
|
increaseIndent: string;
|
|
5673
5725
|
bulletList: string;
|
|
5726
|
+
bulletStyleDisc: string;
|
|
5727
|
+
bulletStyleDash: string;
|
|
5728
|
+
bulletStyleCircle: string;
|
|
5729
|
+
bulletStyleSquare: string;
|
|
5674
5730
|
orderedList: string;
|
|
5675
5731
|
taskList: string;
|
|
5676
5732
|
quote: string;
|
|
@@ -5802,6 +5858,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5802
5858
|
addRowAfter: string;
|
|
5803
5859
|
duplicateColumn: string;
|
|
5804
5860
|
duplicateRow: string;
|
|
5861
|
+
distributeColumns: string;
|
|
5862
|
+
distributeRows: string;
|
|
5863
|
+
distributeBoth: string;
|
|
5805
5864
|
clearColumnContents: string;
|
|
5806
5865
|
clearRowContents: string;
|
|
5807
5866
|
deleteColumn: string;
|
|
@@ -5956,6 +6015,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5956
6015
|
addColumnBefore: string;
|
|
5957
6016
|
addColumnAfter: string;
|
|
5958
6017
|
deleteColumn: string;
|
|
6018
|
+
distributeColumns: string;
|
|
6019
|
+
distributeRows: string;
|
|
6020
|
+
distributeBoth: string;
|
|
5959
6021
|
mergeCells: string;
|
|
5960
6022
|
splitCell: string;
|
|
5961
6023
|
imageUpload: string;
|
|
@@ -5998,6 +6060,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5998
6060
|
alignLeft: string;
|
|
5999
6061
|
alignCenter: string;
|
|
6000
6062
|
alignRight: string;
|
|
6063
|
+
sortBy: string;
|
|
6064
|
+
filterBy: string;
|
|
6001
6065
|
};
|
|
6002
6066
|
ValidationInput: {
|
|
6003
6067
|
required: string;
|
|
@@ -6132,6 +6196,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6132
6196
|
decreaseIndent: string;
|
|
6133
6197
|
increaseIndent: string;
|
|
6134
6198
|
bulletList: string;
|
|
6199
|
+
bulletStyleDisc: string;
|
|
6200
|
+
bulletStyleDash: string;
|
|
6201
|
+
bulletStyleCircle: string;
|
|
6202
|
+
bulletStyleSquare: string;
|
|
6135
6203
|
orderedList: string;
|
|
6136
6204
|
taskList: string;
|
|
6137
6205
|
quote: string;
|
|
@@ -6263,6 +6331,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6263
6331
|
addRowAfter: string;
|
|
6264
6332
|
duplicateColumn: string;
|
|
6265
6333
|
duplicateRow: string;
|
|
6334
|
+
distributeColumns: string;
|
|
6335
|
+
distributeRows: string;
|
|
6336
|
+
distributeBoth: string;
|
|
6266
6337
|
clearColumnContents: string;
|
|
6267
6338
|
clearRowContents: string;
|
|
6268
6339
|
deleteColumn: string;
|
|
@@ -6417,6 +6488,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6417
6488
|
addColumnBefore: string;
|
|
6418
6489
|
addColumnAfter: string;
|
|
6419
6490
|
deleteColumn: string;
|
|
6491
|
+
distributeColumns: string;
|
|
6492
|
+
distributeRows: string;
|
|
6493
|
+
distributeBoth: string;
|
|
6420
6494
|
mergeCells: string;
|
|
6421
6495
|
splitCell: string;
|
|
6422
6496
|
imageUpload: string;
|
|
@@ -6459,6 +6533,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6459
6533
|
alignLeft: string;
|
|
6460
6534
|
alignCenter: string;
|
|
6461
6535
|
alignRight: string;
|
|
6536
|
+
sortBy: string;
|
|
6537
|
+
filterBy: string;
|
|
6462
6538
|
};
|
|
6463
6539
|
ValidationInput: {
|
|
6464
6540
|
required: string;
|
|
@@ -6593,6 +6669,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6593
6669
|
decreaseIndent: string;
|
|
6594
6670
|
increaseIndent: string;
|
|
6595
6671
|
bulletList: string;
|
|
6672
|
+
bulletStyleDisc: string;
|
|
6673
|
+
bulletStyleDash: string;
|
|
6674
|
+
bulletStyleCircle: string;
|
|
6675
|
+
bulletStyleSquare: string;
|
|
6596
6676
|
orderedList: string;
|
|
6597
6677
|
taskList: string;
|
|
6598
6678
|
quote: string;
|
|
@@ -6724,6 +6804,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6724
6804
|
addRowAfter: string;
|
|
6725
6805
|
duplicateColumn: string;
|
|
6726
6806
|
duplicateRow: string;
|
|
6807
|
+
distributeColumns: string;
|
|
6808
|
+
distributeRows: string;
|
|
6809
|
+
distributeBoth: string;
|
|
6727
6810
|
clearColumnContents: string;
|
|
6728
6811
|
clearRowContents: string;
|
|
6729
6812
|
deleteColumn: string;
|
|
@@ -6878,6 +6961,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6878
6961
|
addColumnBefore: string;
|
|
6879
6962
|
addColumnAfter: string;
|
|
6880
6963
|
deleteColumn: string;
|
|
6964
|
+
distributeColumns: string;
|
|
6965
|
+
distributeRows: string;
|
|
6966
|
+
distributeBoth: string;
|
|
6881
6967
|
mergeCells: string;
|
|
6882
6968
|
splitCell: string;
|
|
6883
6969
|
imageUpload: string;
|
|
@@ -6920,6 +7006,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6920
7006
|
alignLeft: string;
|
|
6921
7007
|
alignCenter: string;
|
|
6922
7008
|
alignRight: string;
|
|
7009
|
+
sortBy: string;
|
|
7010
|
+
filterBy: string;
|
|
6923
7011
|
};
|
|
6924
7012
|
ValidationInput: {
|
|
6925
7013
|
required: string;
|
|
@@ -7054,6 +7142,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7054
7142
|
decreaseIndent: string;
|
|
7055
7143
|
increaseIndent: string;
|
|
7056
7144
|
bulletList: string;
|
|
7145
|
+
bulletStyleDisc: string;
|
|
7146
|
+
bulletStyleDash: string;
|
|
7147
|
+
bulletStyleCircle: string;
|
|
7148
|
+
bulletStyleSquare: string;
|
|
7057
7149
|
orderedList: string;
|
|
7058
7150
|
taskList: string;
|
|
7059
7151
|
quote: string;
|
|
@@ -7185,6 +7277,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7185
7277
|
addRowAfter: string;
|
|
7186
7278
|
duplicateColumn: string;
|
|
7187
7279
|
duplicateRow: string;
|
|
7280
|
+
distributeColumns: string;
|
|
7281
|
+
distributeRows: string;
|
|
7282
|
+
distributeBoth: string;
|
|
7188
7283
|
clearColumnContents: string;
|
|
7189
7284
|
clearRowContents: string;
|
|
7190
7285
|
deleteColumn: string;
|
|
@@ -7339,6 +7434,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
7339
7434
|
addColumnBefore: string;
|
|
7340
7435
|
addColumnAfter: string;
|
|
7341
7436
|
deleteColumn: string;
|
|
7437
|
+
distributeColumns: string;
|
|
7438
|
+
distributeRows: string;
|
|
7439
|
+
distributeBoth: string;
|
|
7342
7440
|
mergeCells: string;
|
|
7343
7441
|
splitCell: string;
|
|
7344
7442
|
imageUpload: string;
|