@underverse-ui/underverse 1.0.191 → 1.0.193
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 +576 -166
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +118 -0
- package/dist/index.d.ts +118 -0
- package/dist/index.js +559 -148
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -532,6 +532,7 @@ interface ModalProps {
|
|
|
532
532
|
fullWidth?: boolean;
|
|
533
533
|
width?: string | number;
|
|
534
534
|
height?: string | number;
|
|
535
|
+
borderMode?: BorderMode;
|
|
535
536
|
}
|
|
536
537
|
declare const Modal: React$1.FC<ModalProps>;
|
|
537
538
|
|
|
@@ -597,6 +598,7 @@ interface PopoverProps {
|
|
|
597
598
|
onOpenChange?: (open: boolean) => void;
|
|
598
599
|
matchTriggerWidth?: boolean;
|
|
599
600
|
contentWidth?: number;
|
|
601
|
+
borderMode?: BorderMode;
|
|
600
602
|
}
|
|
601
603
|
declare const Popover: React$1.FC<PopoverProps>;
|
|
602
604
|
|
|
@@ -793,6 +795,7 @@ interface DropdownMenuProps {
|
|
|
793
795
|
disabled?: boolean;
|
|
794
796
|
destructive?: boolean;
|
|
795
797
|
}>;
|
|
798
|
+
borderMode?: BorderMode;
|
|
796
799
|
}
|
|
797
800
|
declare const DropdownMenu: React__default.FC<DropdownMenuProps>;
|
|
798
801
|
/** Public props for the `DropdownMenuItem` component. */
|
|
@@ -810,6 +813,7 @@ interface DropdownMenuItemProps {
|
|
|
810
813
|
shortcut?: string;
|
|
811
814
|
className?: string;
|
|
812
815
|
closeOnSelect?: boolean;
|
|
816
|
+
borderMode?: BorderMode;
|
|
813
817
|
}
|
|
814
818
|
declare const DropdownMenuItem: React__default.FC<DropdownMenuItemProps>;
|
|
815
819
|
declare const DropdownMenuSeparator: React__default.FC<{
|
|
@@ -821,6 +825,7 @@ declare const SelectDropdown: React__default.FC<{
|
|
|
821
825
|
onChange: (value: string) => void;
|
|
822
826
|
placeholder?: string;
|
|
823
827
|
className?: string;
|
|
828
|
+
borderMode?: BorderMode;
|
|
824
829
|
}>;
|
|
825
830
|
|
|
826
831
|
/** Public props for the `Pagination` component. */
|
|
@@ -3407,6 +3412,15 @@ interface UnderverseUIConfig {
|
|
|
3407
3412
|
table?: {
|
|
3408
3413
|
borderMode?: BorderMode;
|
|
3409
3414
|
};
|
|
3415
|
+
popover?: {
|
|
3416
|
+
borderMode?: BorderMode;
|
|
3417
|
+
};
|
|
3418
|
+
dropdownMenu?: {
|
|
3419
|
+
borderMode?: BorderMode;
|
|
3420
|
+
};
|
|
3421
|
+
modal?: {
|
|
3422
|
+
borderMode?: BorderMode;
|
|
3423
|
+
};
|
|
3410
3424
|
}
|
|
3411
3425
|
/** Read the global UI config for Underverse components. */
|
|
3412
3426
|
declare function useUnderverseUIConfig(): UnderverseUIConfig;
|
|
@@ -3889,6 +3903,19 @@ declare const underverseMessages: {
|
|
|
3889
3903
|
borderStyle: string;
|
|
3890
3904
|
borderWidth: string;
|
|
3891
3905
|
borderColor: string;
|
|
3906
|
+
borderPosition: string;
|
|
3907
|
+
borderMode: string;
|
|
3908
|
+
borderDraw: string;
|
|
3909
|
+
borderErase: string;
|
|
3910
|
+
borderAll: string;
|
|
3911
|
+
borderOuter: string;
|
|
3912
|
+
borderInner: string;
|
|
3913
|
+
borderHorizontal: string;
|
|
3914
|
+
borderVertical: string;
|
|
3915
|
+
borderTop: string;
|
|
3916
|
+
borderRight: string;
|
|
3917
|
+
borderBottom: string;
|
|
3918
|
+
borderLeft: string;
|
|
3892
3919
|
clearBorder: string;
|
|
3893
3920
|
formula: string;
|
|
3894
3921
|
formulaBar: string;
|
|
@@ -4320,6 +4347,19 @@ declare const underverseMessages: {
|
|
|
4320
4347
|
borderStyle: string;
|
|
4321
4348
|
borderWidth: string;
|
|
4322
4349
|
borderColor: string;
|
|
4350
|
+
borderPosition: string;
|
|
4351
|
+
borderMode: string;
|
|
4352
|
+
borderDraw: string;
|
|
4353
|
+
borderErase: string;
|
|
4354
|
+
borderAll: string;
|
|
4355
|
+
borderOuter: string;
|
|
4356
|
+
borderInner: string;
|
|
4357
|
+
borderHorizontal: string;
|
|
4358
|
+
borderVertical: string;
|
|
4359
|
+
borderTop: string;
|
|
4360
|
+
borderRight: string;
|
|
4361
|
+
borderBottom: string;
|
|
4362
|
+
borderLeft: string;
|
|
4323
4363
|
clearBorder: string;
|
|
4324
4364
|
formula: string;
|
|
4325
4365
|
formulaBar: string;
|
|
@@ -4751,6 +4791,19 @@ declare const underverseMessages: {
|
|
|
4751
4791
|
borderStyle: string;
|
|
4752
4792
|
borderWidth: string;
|
|
4753
4793
|
borderColor: string;
|
|
4794
|
+
borderPosition: string;
|
|
4795
|
+
borderMode: string;
|
|
4796
|
+
borderDraw: string;
|
|
4797
|
+
borderErase: string;
|
|
4798
|
+
borderAll: string;
|
|
4799
|
+
borderOuter: string;
|
|
4800
|
+
borderInner: string;
|
|
4801
|
+
borderHorizontal: string;
|
|
4802
|
+
borderVertical: string;
|
|
4803
|
+
borderTop: string;
|
|
4804
|
+
borderRight: string;
|
|
4805
|
+
borderBottom: string;
|
|
4806
|
+
borderLeft: string;
|
|
4754
4807
|
clearBorder: string;
|
|
4755
4808
|
formula: string;
|
|
4756
4809
|
formulaBar: string;
|
|
@@ -5182,6 +5235,19 @@ declare const underverseMessages: {
|
|
|
5182
5235
|
borderStyle: string;
|
|
5183
5236
|
borderWidth: string;
|
|
5184
5237
|
borderColor: string;
|
|
5238
|
+
borderPosition: string;
|
|
5239
|
+
borderMode: string;
|
|
5240
|
+
borderDraw: string;
|
|
5241
|
+
borderErase: string;
|
|
5242
|
+
borderAll: string;
|
|
5243
|
+
borderOuter: string;
|
|
5244
|
+
borderInner: string;
|
|
5245
|
+
borderHorizontal: string;
|
|
5246
|
+
borderVertical: string;
|
|
5247
|
+
borderTop: string;
|
|
5248
|
+
borderRight: string;
|
|
5249
|
+
borderBottom: string;
|
|
5250
|
+
borderLeft: string;
|
|
5185
5251
|
clearBorder: string;
|
|
5186
5252
|
formula: string;
|
|
5187
5253
|
formulaBar: string;
|
|
@@ -5616,6 +5682,19 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5616
5682
|
borderStyle: string;
|
|
5617
5683
|
borderWidth: string;
|
|
5618
5684
|
borderColor: string;
|
|
5685
|
+
borderPosition: string;
|
|
5686
|
+
borderMode: string;
|
|
5687
|
+
borderDraw: string;
|
|
5688
|
+
borderErase: string;
|
|
5689
|
+
borderAll: string;
|
|
5690
|
+
borderOuter: string;
|
|
5691
|
+
borderInner: string;
|
|
5692
|
+
borderHorizontal: string;
|
|
5693
|
+
borderVertical: string;
|
|
5694
|
+
borderTop: string;
|
|
5695
|
+
borderRight: string;
|
|
5696
|
+
borderBottom: string;
|
|
5697
|
+
borderLeft: string;
|
|
5619
5698
|
clearBorder: string;
|
|
5620
5699
|
formula: string;
|
|
5621
5700
|
formulaBar: string;
|
|
@@ -6046,6 +6125,19 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6046
6125
|
borderStyle: string;
|
|
6047
6126
|
borderWidth: string;
|
|
6048
6127
|
borderColor: string;
|
|
6128
|
+
borderPosition: string;
|
|
6129
|
+
borderMode: string;
|
|
6130
|
+
borderDraw: string;
|
|
6131
|
+
borderErase: string;
|
|
6132
|
+
borderAll: string;
|
|
6133
|
+
borderOuter: string;
|
|
6134
|
+
borderInner: string;
|
|
6135
|
+
borderHorizontal: string;
|
|
6136
|
+
borderVertical: string;
|
|
6137
|
+
borderTop: string;
|
|
6138
|
+
borderRight: string;
|
|
6139
|
+
borderBottom: string;
|
|
6140
|
+
borderLeft: string;
|
|
6049
6141
|
clearBorder: string;
|
|
6050
6142
|
formula: string;
|
|
6051
6143
|
formulaBar: string;
|
|
@@ -6476,6 +6568,19 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6476
6568
|
borderStyle: string;
|
|
6477
6569
|
borderWidth: string;
|
|
6478
6570
|
borderColor: string;
|
|
6571
|
+
borderPosition: string;
|
|
6572
|
+
borderMode: string;
|
|
6573
|
+
borderDraw: string;
|
|
6574
|
+
borderErase: string;
|
|
6575
|
+
borderAll: string;
|
|
6576
|
+
borderOuter: string;
|
|
6577
|
+
borderInner: string;
|
|
6578
|
+
borderHorizontal: string;
|
|
6579
|
+
borderVertical: string;
|
|
6580
|
+
borderTop: string;
|
|
6581
|
+
borderRight: string;
|
|
6582
|
+
borderBottom: string;
|
|
6583
|
+
borderLeft: string;
|
|
6479
6584
|
clearBorder: string;
|
|
6480
6585
|
formula: string;
|
|
6481
6586
|
formulaBar: string;
|
|
@@ -6906,6 +7011,19 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6906
7011
|
borderStyle: string;
|
|
6907
7012
|
borderWidth: string;
|
|
6908
7013
|
borderColor: string;
|
|
7014
|
+
borderPosition: string;
|
|
7015
|
+
borderMode: string;
|
|
7016
|
+
borderDraw: string;
|
|
7017
|
+
borderErase: string;
|
|
7018
|
+
borderAll: string;
|
|
7019
|
+
borderOuter: string;
|
|
7020
|
+
borderInner: string;
|
|
7021
|
+
borderHorizontal: string;
|
|
7022
|
+
borderVertical: string;
|
|
7023
|
+
borderTop: string;
|
|
7024
|
+
borderRight: string;
|
|
7025
|
+
borderBottom: string;
|
|
7026
|
+
borderLeft: string;
|
|
6909
7027
|
clearBorder: string;
|
|
6910
7028
|
formula: string;
|
|
6911
7029
|
formulaBar: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -532,6 +532,7 @@ interface ModalProps {
|
|
|
532
532
|
fullWidth?: boolean;
|
|
533
533
|
width?: string | number;
|
|
534
534
|
height?: string | number;
|
|
535
|
+
borderMode?: BorderMode;
|
|
535
536
|
}
|
|
536
537
|
declare const Modal: React$1.FC<ModalProps>;
|
|
537
538
|
|
|
@@ -597,6 +598,7 @@ interface PopoverProps {
|
|
|
597
598
|
onOpenChange?: (open: boolean) => void;
|
|
598
599
|
matchTriggerWidth?: boolean;
|
|
599
600
|
contentWidth?: number;
|
|
601
|
+
borderMode?: BorderMode;
|
|
600
602
|
}
|
|
601
603
|
declare const Popover: React$1.FC<PopoverProps>;
|
|
602
604
|
|
|
@@ -793,6 +795,7 @@ interface DropdownMenuProps {
|
|
|
793
795
|
disabled?: boolean;
|
|
794
796
|
destructive?: boolean;
|
|
795
797
|
}>;
|
|
798
|
+
borderMode?: BorderMode;
|
|
796
799
|
}
|
|
797
800
|
declare const DropdownMenu: React__default.FC<DropdownMenuProps>;
|
|
798
801
|
/** Public props for the `DropdownMenuItem` component. */
|
|
@@ -810,6 +813,7 @@ interface DropdownMenuItemProps {
|
|
|
810
813
|
shortcut?: string;
|
|
811
814
|
className?: string;
|
|
812
815
|
closeOnSelect?: boolean;
|
|
816
|
+
borderMode?: BorderMode;
|
|
813
817
|
}
|
|
814
818
|
declare const DropdownMenuItem: React__default.FC<DropdownMenuItemProps>;
|
|
815
819
|
declare const DropdownMenuSeparator: React__default.FC<{
|
|
@@ -821,6 +825,7 @@ declare const SelectDropdown: React__default.FC<{
|
|
|
821
825
|
onChange: (value: string) => void;
|
|
822
826
|
placeholder?: string;
|
|
823
827
|
className?: string;
|
|
828
|
+
borderMode?: BorderMode;
|
|
824
829
|
}>;
|
|
825
830
|
|
|
826
831
|
/** Public props for the `Pagination` component. */
|
|
@@ -3407,6 +3412,15 @@ interface UnderverseUIConfig {
|
|
|
3407
3412
|
table?: {
|
|
3408
3413
|
borderMode?: BorderMode;
|
|
3409
3414
|
};
|
|
3415
|
+
popover?: {
|
|
3416
|
+
borderMode?: BorderMode;
|
|
3417
|
+
};
|
|
3418
|
+
dropdownMenu?: {
|
|
3419
|
+
borderMode?: BorderMode;
|
|
3420
|
+
};
|
|
3421
|
+
modal?: {
|
|
3422
|
+
borderMode?: BorderMode;
|
|
3423
|
+
};
|
|
3410
3424
|
}
|
|
3411
3425
|
/** Read the global UI config for Underverse components. */
|
|
3412
3426
|
declare function useUnderverseUIConfig(): UnderverseUIConfig;
|
|
@@ -3889,6 +3903,19 @@ declare const underverseMessages: {
|
|
|
3889
3903
|
borderStyle: string;
|
|
3890
3904
|
borderWidth: string;
|
|
3891
3905
|
borderColor: string;
|
|
3906
|
+
borderPosition: string;
|
|
3907
|
+
borderMode: string;
|
|
3908
|
+
borderDraw: string;
|
|
3909
|
+
borderErase: string;
|
|
3910
|
+
borderAll: string;
|
|
3911
|
+
borderOuter: string;
|
|
3912
|
+
borderInner: string;
|
|
3913
|
+
borderHorizontal: string;
|
|
3914
|
+
borderVertical: string;
|
|
3915
|
+
borderTop: string;
|
|
3916
|
+
borderRight: string;
|
|
3917
|
+
borderBottom: string;
|
|
3918
|
+
borderLeft: string;
|
|
3892
3919
|
clearBorder: string;
|
|
3893
3920
|
formula: string;
|
|
3894
3921
|
formulaBar: string;
|
|
@@ -4320,6 +4347,19 @@ declare const underverseMessages: {
|
|
|
4320
4347
|
borderStyle: string;
|
|
4321
4348
|
borderWidth: string;
|
|
4322
4349
|
borderColor: string;
|
|
4350
|
+
borderPosition: string;
|
|
4351
|
+
borderMode: string;
|
|
4352
|
+
borderDraw: string;
|
|
4353
|
+
borderErase: string;
|
|
4354
|
+
borderAll: string;
|
|
4355
|
+
borderOuter: string;
|
|
4356
|
+
borderInner: string;
|
|
4357
|
+
borderHorizontal: string;
|
|
4358
|
+
borderVertical: string;
|
|
4359
|
+
borderTop: string;
|
|
4360
|
+
borderRight: string;
|
|
4361
|
+
borderBottom: string;
|
|
4362
|
+
borderLeft: string;
|
|
4323
4363
|
clearBorder: string;
|
|
4324
4364
|
formula: string;
|
|
4325
4365
|
formulaBar: string;
|
|
@@ -4751,6 +4791,19 @@ declare const underverseMessages: {
|
|
|
4751
4791
|
borderStyle: string;
|
|
4752
4792
|
borderWidth: string;
|
|
4753
4793
|
borderColor: string;
|
|
4794
|
+
borderPosition: string;
|
|
4795
|
+
borderMode: string;
|
|
4796
|
+
borderDraw: string;
|
|
4797
|
+
borderErase: string;
|
|
4798
|
+
borderAll: string;
|
|
4799
|
+
borderOuter: string;
|
|
4800
|
+
borderInner: string;
|
|
4801
|
+
borderHorizontal: string;
|
|
4802
|
+
borderVertical: string;
|
|
4803
|
+
borderTop: string;
|
|
4804
|
+
borderRight: string;
|
|
4805
|
+
borderBottom: string;
|
|
4806
|
+
borderLeft: string;
|
|
4754
4807
|
clearBorder: string;
|
|
4755
4808
|
formula: string;
|
|
4756
4809
|
formulaBar: string;
|
|
@@ -5182,6 +5235,19 @@ declare const underverseMessages: {
|
|
|
5182
5235
|
borderStyle: string;
|
|
5183
5236
|
borderWidth: string;
|
|
5184
5237
|
borderColor: string;
|
|
5238
|
+
borderPosition: string;
|
|
5239
|
+
borderMode: string;
|
|
5240
|
+
borderDraw: string;
|
|
5241
|
+
borderErase: string;
|
|
5242
|
+
borderAll: string;
|
|
5243
|
+
borderOuter: string;
|
|
5244
|
+
borderInner: string;
|
|
5245
|
+
borderHorizontal: string;
|
|
5246
|
+
borderVertical: string;
|
|
5247
|
+
borderTop: string;
|
|
5248
|
+
borderRight: string;
|
|
5249
|
+
borderBottom: string;
|
|
5250
|
+
borderLeft: string;
|
|
5185
5251
|
clearBorder: string;
|
|
5186
5252
|
formula: string;
|
|
5187
5253
|
formulaBar: string;
|
|
@@ -5616,6 +5682,19 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5616
5682
|
borderStyle: string;
|
|
5617
5683
|
borderWidth: string;
|
|
5618
5684
|
borderColor: string;
|
|
5685
|
+
borderPosition: string;
|
|
5686
|
+
borderMode: string;
|
|
5687
|
+
borderDraw: string;
|
|
5688
|
+
borderErase: string;
|
|
5689
|
+
borderAll: string;
|
|
5690
|
+
borderOuter: string;
|
|
5691
|
+
borderInner: string;
|
|
5692
|
+
borderHorizontal: string;
|
|
5693
|
+
borderVertical: string;
|
|
5694
|
+
borderTop: string;
|
|
5695
|
+
borderRight: string;
|
|
5696
|
+
borderBottom: string;
|
|
5697
|
+
borderLeft: string;
|
|
5619
5698
|
clearBorder: string;
|
|
5620
5699
|
formula: string;
|
|
5621
5700
|
formulaBar: string;
|
|
@@ -6046,6 +6125,19 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6046
6125
|
borderStyle: string;
|
|
6047
6126
|
borderWidth: string;
|
|
6048
6127
|
borderColor: string;
|
|
6128
|
+
borderPosition: string;
|
|
6129
|
+
borderMode: string;
|
|
6130
|
+
borderDraw: string;
|
|
6131
|
+
borderErase: string;
|
|
6132
|
+
borderAll: string;
|
|
6133
|
+
borderOuter: string;
|
|
6134
|
+
borderInner: string;
|
|
6135
|
+
borderHorizontal: string;
|
|
6136
|
+
borderVertical: string;
|
|
6137
|
+
borderTop: string;
|
|
6138
|
+
borderRight: string;
|
|
6139
|
+
borderBottom: string;
|
|
6140
|
+
borderLeft: string;
|
|
6049
6141
|
clearBorder: string;
|
|
6050
6142
|
formula: string;
|
|
6051
6143
|
formulaBar: string;
|
|
@@ -6476,6 +6568,19 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6476
6568
|
borderStyle: string;
|
|
6477
6569
|
borderWidth: string;
|
|
6478
6570
|
borderColor: string;
|
|
6571
|
+
borderPosition: string;
|
|
6572
|
+
borderMode: string;
|
|
6573
|
+
borderDraw: string;
|
|
6574
|
+
borderErase: string;
|
|
6575
|
+
borderAll: string;
|
|
6576
|
+
borderOuter: string;
|
|
6577
|
+
borderInner: string;
|
|
6578
|
+
borderHorizontal: string;
|
|
6579
|
+
borderVertical: string;
|
|
6580
|
+
borderTop: string;
|
|
6581
|
+
borderRight: string;
|
|
6582
|
+
borderBottom: string;
|
|
6583
|
+
borderLeft: string;
|
|
6479
6584
|
clearBorder: string;
|
|
6480
6585
|
formula: string;
|
|
6481
6586
|
formulaBar: string;
|
|
@@ -6906,6 +7011,19 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6906
7011
|
borderStyle: string;
|
|
6907
7012
|
borderWidth: string;
|
|
6908
7013
|
borderColor: string;
|
|
7014
|
+
borderPosition: string;
|
|
7015
|
+
borderMode: string;
|
|
7016
|
+
borderDraw: string;
|
|
7017
|
+
borderErase: string;
|
|
7018
|
+
borderAll: string;
|
|
7019
|
+
borderOuter: string;
|
|
7020
|
+
borderInner: string;
|
|
7021
|
+
borderHorizontal: string;
|
|
7022
|
+
borderVertical: string;
|
|
7023
|
+
borderTop: string;
|
|
7024
|
+
borderRight: string;
|
|
7025
|
+
borderBottom: string;
|
|
7026
|
+
borderLeft: string;
|
|
6909
7027
|
clearBorder: string;
|
|
6910
7028
|
formula: string;
|
|
6911
7029
|
formulaBar: string;
|