@underverse-ui/underverse 1.0.187 → 1.0.189
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/index.cjs +212 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +42 -0
- package/dist/index.d.ts +42 -0
- package/dist/index.js +225 -21
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2715,6 +2715,8 @@ type DataTableColumn<T> = {
|
|
|
2715
2715
|
render?: (value: any, record: T, index: number) => React__default.ReactNode;
|
|
2716
2716
|
width?: number | string;
|
|
2717
2717
|
align?: "left" | "center" | "right";
|
|
2718
|
+
/** Vị trí của icon sort/filter: "inline" (ngay sát text) hoặc "end" (cuối dòng) */
|
|
2719
|
+
iconPosition?: "inline" | "end";
|
|
2718
2720
|
visible?: boolean;
|
|
2719
2721
|
/** Cố định cột bên trái hoặc phải khi cuộn ngang */
|
|
2720
2722
|
fixed?: "left" | "right";
|
|
@@ -3775,6 +3777,8 @@ declare const underverseMessages: {
|
|
|
3775
3777
|
fileCardDesc: string;
|
|
3776
3778
|
formCheckbox: string;
|
|
3777
3779
|
formCheckboxDesc: string;
|
|
3780
|
+
roundCheckbox: string;
|
|
3781
|
+
roundCheckboxDesc: string;
|
|
3778
3782
|
formRadio: string;
|
|
3779
3783
|
formRadioDesc: string;
|
|
3780
3784
|
};
|
|
@@ -3875,6 +3879,9 @@ declare const underverseMessages: {
|
|
|
3875
3879
|
alignVerticalTop: string;
|
|
3876
3880
|
alignVerticalMiddle: string;
|
|
3877
3881
|
alignVerticalBottom: string;
|
|
3882
|
+
textDirection: string;
|
|
3883
|
+
horizontalText: string;
|
|
3884
|
+
verticalText: string;
|
|
3878
3885
|
};
|
|
3879
3886
|
callout: {
|
|
3880
3887
|
selectEmoji: string;
|
|
@@ -4201,6 +4208,8 @@ declare const underverseMessages: {
|
|
|
4201
4208
|
fileCardDesc: string;
|
|
4202
4209
|
formCheckbox: string;
|
|
4203
4210
|
formCheckboxDesc: string;
|
|
4211
|
+
roundCheckbox: string;
|
|
4212
|
+
roundCheckboxDesc: string;
|
|
4204
4213
|
formRadio: string;
|
|
4205
4214
|
formRadioDesc: string;
|
|
4206
4215
|
};
|
|
@@ -4301,6 +4310,9 @@ declare const underverseMessages: {
|
|
|
4301
4310
|
alignVerticalTop: string;
|
|
4302
4311
|
alignVerticalMiddle: string;
|
|
4303
4312
|
alignVerticalBottom: string;
|
|
4313
|
+
textDirection: string;
|
|
4314
|
+
horizontalText: string;
|
|
4315
|
+
verticalText: string;
|
|
4304
4316
|
};
|
|
4305
4317
|
callout: {
|
|
4306
4318
|
selectEmoji: string;
|
|
@@ -4627,6 +4639,8 @@ declare const underverseMessages: {
|
|
|
4627
4639
|
fileCardDesc: string;
|
|
4628
4640
|
formCheckbox: string;
|
|
4629
4641
|
formCheckboxDesc: string;
|
|
4642
|
+
roundCheckbox: string;
|
|
4643
|
+
roundCheckboxDesc: string;
|
|
4630
4644
|
formRadio: string;
|
|
4631
4645
|
formRadioDesc: string;
|
|
4632
4646
|
};
|
|
@@ -4727,6 +4741,9 @@ declare const underverseMessages: {
|
|
|
4727
4741
|
alignVerticalTop: string;
|
|
4728
4742
|
alignVerticalMiddle: string;
|
|
4729
4743
|
alignVerticalBottom: string;
|
|
4744
|
+
textDirection: string;
|
|
4745
|
+
horizontalText: string;
|
|
4746
|
+
verticalText: string;
|
|
4730
4747
|
};
|
|
4731
4748
|
callout: {
|
|
4732
4749
|
selectEmoji: string;
|
|
@@ -5053,6 +5070,8 @@ declare const underverseMessages: {
|
|
|
5053
5070
|
fileCardDesc: string;
|
|
5054
5071
|
formCheckbox: string;
|
|
5055
5072
|
formCheckboxDesc: string;
|
|
5073
|
+
roundCheckbox: string;
|
|
5074
|
+
roundCheckboxDesc: string;
|
|
5056
5075
|
formRadio: string;
|
|
5057
5076
|
formRadioDesc: string;
|
|
5058
5077
|
};
|
|
@@ -5153,6 +5172,9 @@ declare const underverseMessages: {
|
|
|
5153
5172
|
alignVerticalTop: string;
|
|
5154
5173
|
alignVerticalMiddle: string;
|
|
5155
5174
|
alignVerticalBottom: string;
|
|
5175
|
+
textDirection: string;
|
|
5176
|
+
horizontalText: string;
|
|
5177
|
+
verticalText: string;
|
|
5156
5178
|
};
|
|
5157
5179
|
callout: {
|
|
5158
5180
|
selectEmoji: string;
|
|
@@ -5482,6 +5504,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5482
5504
|
fileCardDesc: string;
|
|
5483
5505
|
formCheckbox: string;
|
|
5484
5506
|
formCheckboxDesc: string;
|
|
5507
|
+
roundCheckbox: string;
|
|
5508
|
+
roundCheckboxDesc: string;
|
|
5485
5509
|
formRadio: string;
|
|
5486
5510
|
formRadioDesc: string;
|
|
5487
5511
|
};
|
|
@@ -5582,6 +5606,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5582
5606
|
alignVerticalTop: string;
|
|
5583
5607
|
alignVerticalMiddle: string;
|
|
5584
5608
|
alignVerticalBottom: string;
|
|
5609
|
+
textDirection: string;
|
|
5610
|
+
horizontalText: string;
|
|
5611
|
+
verticalText: string;
|
|
5585
5612
|
};
|
|
5586
5613
|
callout: {
|
|
5587
5614
|
selectEmoji: string;
|
|
@@ -5907,6 +5934,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5907
5934
|
fileCardDesc: string;
|
|
5908
5935
|
formCheckbox: string;
|
|
5909
5936
|
formCheckboxDesc: string;
|
|
5937
|
+
roundCheckbox: string;
|
|
5938
|
+
roundCheckboxDesc: string;
|
|
5910
5939
|
formRadio: string;
|
|
5911
5940
|
formRadioDesc: string;
|
|
5912
5941
|
};
|
|
@@ -6007,6 +6036,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6007
6036
|
alignVerticalTop: string;
|
|
6008
6037
|
alignVerticalMiddle: string;
|
|
6009
6038
|
alignVerticalBottom: string;
|
|
6039
|
+
textDirection: string;
|
|
6040
|
+
horizontalText: string;
|
|
6041
|
+
verticalText: string;
|
|
6010
6042
|
};
|
|
6011
6043
|
callout: {
|
|
6012
6044
|
selectEmoji: string;
|
|
@@ -6332,6 +6364,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6332
6364
|
fileCardDesc: string;
|
|
6333
6365
|
formCheckbox: string;
|
|
6334
6366
|
formCheckboxDesc: string;
|
|
6367
|
+
roundCheckbox: string;
|
|
6368
|
+
roundCheckboxDesc: string;
|
|
6335
6369
|
formRadio: string;
|
|
6336
6370
|
formRadioDesc: string;
|
|
6337
6371
|
};
|
|
@@ -6432,6 +6466,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6432
6466
|
alignVerticalTop: string;
|
|
6433
6467
|
alignVerticalMiddle: string;
|
|
6434
6468
|
alignVerticalBottom: string;
|
|
6469
|
+
textDirection: string;
|
|
6470
|
+
horizontalText: string;
|
|
6471
|
+
verticalText: string;
|
|
6435
6472
|
};
|
|
6436
6473
|
callout: {
|
|
6437
6474
|
selectEmoji: string;
|
|
@@ -6757,6 +6794,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6757
6794
|
fileCardDesc: string;
|
|
6758
6795
|
formCheckbox: string;
|
|
6759
6796
|
formCheckboxDesc: string;
|
|
6797
|
+
roundCheckbox: string;
|
|
6798
|
+
roundCheckboxDesc: string;
|
|
6760
6799
|
formRadio: string;
|
|
6761
6800
|
formRadioDesc: string;
|
|
6762
6801
|
};
|
|
@@ -6857,6 +6896,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6857
6896
|
alignVerticalTop: string;
|
|
6858
6897
|
alignVerticalMiddle: string;
|
|
6859
6898
|
alignVerticalBottom: string;
|
|
6899
|
+
textDirection: string;
|
|
6900
|
+
horizontalText: string;
|
|
6901
|
+
verticalText: string;
|
|
6860
6902
|
};
|
|
6861
6903
|
callout: {
|
|
6862
6904
|
selectEmoji: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2715,6 +2715,8 @@ type DataTableColumn<T> = {
|
|
|
2715
2715
|
render?: (value: any, record: T, index: number) => React__default.ReactNode;
|
|
2716
2716
|
width?: number | string;
|
|
2717
2717
|
align?: "left" | "center" | "right";
|
|
2718
|
+
/** Vị trí của icon sort/filter: "inline" (ngay sát text) hoặc "end" (cuối dòng) */
|
|
2719
|
+
iconPosition?: "inline" | "end";
|
|
2718
2720
|
visible?: boolean;
|
|
2719
2721
|
/** Cố định cột bên trái hoặc phải khi cuộn ngang */
|
|
2720
2722
|
fixed?: "left" | "right";
|
|
@@ -3775,6 +3777,8 @@ declare const underverseMessages: {
|
|
|
3775
3777
|
fileCardDesc: string;
|
|
3776
3778
|
formCheckbox: string;
|
|
3777
3779
|
formCheckboxDesc: string;
|
|
3780
|
+
roundCheckbox: string;
|
|
3781
|
+
roundCheckboxDesc: string;
|
|
3778
3782
|
formRadio: string;
|
|
3779
3783
|
formRadioDesc: string;
|
|
3780
3784
|
};
|
|
@@ -3875,6 +3879,9 @@ declare const underverseMessages: {
|
|
|
3875
3879
|
alignVerticalTop: string;
|
|
3876
3880
|
alignVerticalMiddle: string;
|
|
3877
3881
|
alignVerticalBottom: string;
|
|
3882
|
+
textDirection: string;
|
|
3883
|
+
horizontalText: string;
|
|
3884
|
+
verticalText: string;
|
|
3878
3885
|
};
|
|
3879
3886
|
callout: {
|
|
3880
3887
|
selectEmoji: string;
|
|
@@ -4201,6 +4208,8 @@ declare const underverseMessages: {
|
|
|
4201
4208
|
fileCardDesc: string;
|
|
4202
4209
|
formCheckbox: string;
|
|
4203
4210
|
formCheckboxDesc: string;
|
|
4211
|
+
roundCheckbox: string;
|
|
4212
|
+
roundCheckboxDesc: string;
|
|
4204
4213
|
formRadio: string;
|
|
4205
4214
|
formRadioDesc: string;
|
|
4206
4215
|
};
|
|
@@ -4301,6 +4310,9 @@ declare const underverseMessages: {
|
|
|
4301
4310
|
alignVerticalTop: string;
|
|
4302
4311
|
alignVerticalMiddle: string;
|
|
4303
4312
|
alignVerticalBottom: string;
|
|
4313
|
+
textDirection: string;
|
|
4314
|
+
horizontalText: string;
|
|
4315
|
+
verticalText: string;
|
|
4304
4316
|
};
|
|
4305
4317
|
callout: {
|
|
4306
4318
|
selectEmoji: string;
|
|
@@ -4627,6 +4639,8 @@ declare const underverseMessages: {
|
|
|
4627
4639
|
fileCardDesc: string;
|
|
4628
4640
|
formCheckbox: string;
|
|
4629
4641
|
formCheckboxDesc: string;
|
|
4642
|
+
roundCheckbox: string;
|
|
4643
|
+
roundCheckboxDesc: string;
|
|
4630
4644
|
formRadio: string;
|
|
4631
4645
|
formRadioDesc: string;
|
|
4632
4646
|
};
|
|
@@ -4727,6 +4741,9 @@ declare const underverseMessages: {
|
|
|
4727
4741
|
alignVerticalTop: string;
|
|
4728
4742
|
alignVerticalMiddle: string;
|
|
4729
4743
|
alignVerticalBottom: string;
|
|
4744
|
+
textDirection: string;
|
|
4745
|
+
horizontalText: string;
|
|
4746
|
+
verticalText: string;
|
|
4730
4747
|
};
|
|
4731
4748
|
callout: {
|
|
4732
4749
|
selectEmoji: string;
|
|
@@ -5053,6 +5070,8 @@ declare const underverseMessages: {
|
|
|
5053
5070
|
fileCardDesc: string;
|
|
5054
5071
|
formCheckbox: string;
|
|
5055
5072
|
formCheckboxDesc: string;
|
|
5073
|
+
roundCheckbox: string;
|
|
5074
|
+
roundCheckboxDesc: string;
|
|
5056
5075
|
formRadio: string;
|
|
5057
5076
|
formRadioDesc: string;
|
|
5058
5077
|
};
|
|
@@ -5153,6 +5172,9 @@ declare const underverseMessages: {
|
|
|
5153
5172
|
alignVerticalTop: string;
|
|
5154
5173
|
alignVerticalMiddle: string;
|
|
5155
5174
|
alignVerticalBottom: string;
|
|
5175
|
+
textDirection: string;
|
|
5176
|
+
horizontalText: string;
|
|
5177
|
+
verticalText: string;
|
|
5156
5178
|
};
|
|
5157
5179
|
callout: {
|
|
5158
5180
|
selectEmoji: string;
|
|
@@ -5482,6 +5504,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5482
5504
|
fileCardDesc: string;
|
|
5483
5505
|
formCheckbox: string;
|
|
5484
5506
|
formCheckboxDesc: string;
|
|
5507
|
+
roundCheckbox: string;
|
|
5508
|
+
roundCheckboxDesc: string;
|
|
5485
5509
|
formRadio: string;
|
|
5486
5510
|
formRadioDesc: string;
|
|
5487
5511
|
};
|
|
@@ -5582,6 +5606,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5582
5606
|
alignVerticalTop: string;
|
|
5583
5607
|
alignVerticalMiddle: string;
|
|
5584
5608
|
alignVerticalBottom: string;
|
|
5609
|
+
textDirection: string;
|
|
5610
|
+
horizontalText: string;
|
|
5611
|
+
verticalText: string;
|
|
5585
5612
|
};
|
|
5586
5613
|
callout: {
|
|
5587
5614
|
selectEmoji: string;
|
|
@@ -5907,6 +5934,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5907
5934
|
fileCardDesc: string;
|
|
5908
5935
|
formCheckbox: string;
|
|
5909
5936
|
formCheckboxDesc: string;
|
|
5937
|
+
roundCheckbox: string;
|
|
5938
|
+
roundCheckboxDesc: string;
|
|
5910
5939
|
formRadio: string;
|
|
5911
5940
|
formRadioDesc: string;
|
|
5912
5941
|
};
|
|
@@ -6007,6 +6036,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6007
6036
|
alignVerticalTop: string;
|
|
6008
6037
|
alignVerticalMiddle: string;
|
|
6009
6038
|
alignVerticalBottom: string;
|
|
6039
|
+
textDirection: string;
|
|
6040
|
+
horizontalText: string;
|
|
6041
|
+
verticalText: string;
|
|
6010
6042
|
};
|
|
6011
6043
|
callout: {
|
|
6012
6044
|
selectEmoji: string;
|
|
@@ -6332,6 +6364,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6332
6364
|
fileCardDesc: string;
|
|
6333
6365
|
formCheckbox: string;
|
|
6334
6366
|
formCheckboxDesc: string;
|
|
6367
|
+
roundCheckbox: string;
|
|
6368
|
+
roundCheckboxDesc: string;
|
|
6335
6369
|
formRadio: string;
|
|
6336
6370
|
formRadioDesc: string;
|
|
6337
6371
|
};
|
|
@@ -6432,6 +6466,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6432
6466
|
alignVerticalTop: string;
|
|
6433
6467
|
alignVerticalMiddle: string;
|
|
6434
6468
|
alignVerticalBottom: string;
|
|
6469
|
+
textDirection: string;
|
|
6470
|
+
horizontalText: string;
|
|
6471
|
+
verticalText: string;
|
|
6435
6472
|
};
|
|
6436
6473
|
callout: {
|
|
6437
6474
|
selectEmoji: string;
|
|
@@ -6757,6 +6794,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6757
6794
|
fileCardDesc: string;
|
|
6758
6795
|
formCheckbox: string;
|
|
6759
6796
|
formCheckboxDesc: string;
|
|
6797
|
+
roundCheckbox: string;
|
|
6798
|
+
roundCheckboxDesc: string;
|
|
6760
6799
|
formRadio: string;
|
|
6761
6800
|
formRadioDesc: string;
|
|
6762
6801
|
};
|
|
@@ -6857,6 +6896,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6857
6896
|
alignVerticalTop: string;
|
|
6858
6897
|
alignVerticalMiddle: string;
|
|
6859
6898
|
alignVerticalBottom: string;
|
|
6899
|
+
textDirection: string;
|
|
6900
|
+
horizontalText: string;
|
|
6901
|
+
verticalText: string;
|
|
6860
6902
|
};
|
|
6861
6903
|
callout: {
|
|
6862
6904
|
selectEmoji: string;
|