@koi-design/uxd-ui 14.0.1 → 14.0.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.
- package/es/components/AutoComplete/AutoComplete.vue.d.ts +9 -0
- package/es/components/AutoComplete/index.d.ts +18 -0
- package/es/components/ColorPicker/ColorPicker.vue.d.ts +9 -0
- package/es/components/ColorPicker/index.d.ts +18 -0
- package/es/components/Dropdown/DropdownMenu.mjs +0 -1
- package/es/components/Dropdown/DropdownMenu.mjs.map +1 -1
- package/es/components/Input/Input.d.ts +6 -0
- package/es/components/Input/Input.mjs +1 -0
- package/es/components/Input/Input.mjs.map +1 -1
- package/es/components/Input/Input.type.d.ts +3 -0
- package/es/components/Input/Input.type.mjs +3 -0
- package/es/components/Input/Input.type.mjs.map +1 -1
- package/es/components/Input/index.d.ts +9 -0
- package/es/components/Pagination/Options.d.ts +8 -0
- package/es/components/Pagination/Options.mjs +6 -1
- package/es/components/Pagination/Options.mjs.map +1 -1
- package/es/components/Pagination/Pagination.d.ts +8 -0
- package/es/components/Pagination/Pagination.mjs +2 -0
- package/es/components/Pagination/Pagination.mjs.map +1 -1
- package/es/components/Pagination/index.d.ts +16 -0
- package/es/components/Table/Table.vue.d.ts +16 -0
- package/es/components/Transfer/Transfer.vue.d.ts +27 -0
- package/es/components/Transfer/TransferList.vue.d.ts +9 -0
- package/es/components/Transfer/index.d.ts +72 -0
- package/lib/components/AutoComplete/AutoComplete.vue.d.ts +9 -0
- package/lib/components/AutoComplete/index.d.ts +18 -0
- package/lib/components/ColorPicker/ColorPicker.vue.d.ts +9 -0
- package/lib/components/ColorPicker/index.d.ts +18 -0
- package/lib/components/Dropdown/DropdownMenu.js +0 -1
- package/lib/components/Dropdown/DropdownMenu.js.map +1 -1
- package/lib/components/Input/Input.d.ts +6 -0
- package/lib/components/Input/Input.js +1 -0
- package/lib/components/Input/Input.js.map +1 -1
- package/lib/components/Input/Input.type.d.ts +3 -0
- package/lib/components/Input/Input.type.js +3 -0
- package/lib/components/Input/Input.type.js.map +1 -1
- package/lib/components/Input/index.d.ts +9 -0
- package/lib/components/Pagination/Options.d.ts +8 -0
- package/lib/components/Pagination/Options.js +6 -1
- package/lib/components/Pagination/Options.js.map +1 -1
- package/lib/components/Pagination/Pagination.d.ts +8 -0
- package/lib/components/Pagination/Pagination.js +2 -0
- package/lib/components/Pagination/Pagination.js.map +1 -1
- package/lib/components/Pagination/index.d.ts +16 -0
- package/lib/components/Table/Table.vue.d.ts +16 -0
- package/lib/components/Transfer/Transfer.vue.d.ts +27 -0
- package/lib/components/Transfer/TransferList.vue.d.ts +9 -0
- package/lib/components/Transfer/index.d.ts +72 -0
- package/package.json +1 -1
- package/styles/components/cascader/index.css +1 -1
- package/styles/components/dropdown/index.css +1 -1
- package/styles/components/dropdown/index.less +12 -26
- package/styles/components/dropdown/var.less +6 -19
- package/styles/components/form/index.css +1 -1
- package/styles/components/form/index.less +25 -12
- package/styles/components/pagination/index.css +1 -1
- package/styles/components/pagination/index.less +41 -178
- package/styles/components/pagination/var.less +8 -21
- package/styles/components/select/index.css +1 -1
- package/styles/components/select/index.less +3 -10
- package/styles/components/select/var.less +1 -3
- package/styles/index.css +1 -1
- package/types/components/AutoComplete/AutoComplete.vue.d.ts +9 -0
- package/types/components/AutoComplete/index.d.ts +18 -0
- package/types/components/ColorPicker/ColorPicker.vue.d.ts +9 -0
- package/types/components/ColorPicker/index.d.ts +18 -0
- package/types/components/Input/Input.d.ts +6 -0
- package/types/components/Input/Input.type.d.ts +3 -0
- package/types/components/Input/index.d.ts +9 -0
- package/types/components/Pagination/Options.d.ts +8 -0
- package/types/components/Pagination/Pagination.d.ts +8 -0
- package/types/components/Pagination/index.d.ts +16 -0
- package/types/components/Table/Table.vue.d.ts +16 -0
- package/types/components/Transfer/Transfer.vue.d.ts +27 -0
- package/types/components/Transfer/TransferList.vue.d.ts +9 -0
- package/types/components/Transfer/index.d.ts +72 -0
- package/uxd-ui.css +1 -1
- package/uxd-ui.esm.min.mjs +3 -3
- package/uxd-ui.esm.mjs +13 -3
- package/uxd-ui.umd.js +13 -3
- package/uxd-ui.umd.min.js +3 -3
|
@@ -364,6 +364,10 @@ export declare const UPagination: {
|
|
|
364
364
|
type: NumberConstructor;
|
|
365
365
|
default: number;
|
|
366
366
|
};
|
|
367
|
+
totalPage: {
|
|
368
|
+
type: NumberConstructor;
|
|
369
|
+
required: true;
|
|
370
|
+
};
|
|
367
371
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
368
372
|
'change-page-size': (v: number) => boolean;
|
|
369
373
|
'change-page': (v: number) => boolean;
|
|
@@ -410,6 +414,10 @@ export declare const UPagination: {
|
|
|
410
414
|
type: NumberConstructor;
|
|
411
415
|
default: number;
|
|
412
416
|
};
|
|
417
|
+
totalPage: {
|
|
418
|
+
type: NumberConstructor;
|
|
419
|
+
required: true;
|
|
420
|
+
};
|
|
413
421
|
}>> & Readonly<{
|
|
414
422
|
"onChange-page-size"?: (v: number) => any;
|
|
415
423
|
"onChange-page"?: (v: number) => any;
|
|
@@ -1054,6 +1062,10 @@ export declare const UPagination: {
|
|
|
1054
1062
|
type: NumberConstructor;
|
|
1055
1063
|
default: number;
|
|
1056
1064
|
};
|
|
1065
|
+
totalPage: {
|
|
1066
|
+
type: NumberConstructor;
|
|
1067
|
+
required: true;
|
|
1068
|
+
};
|
|
1057
1069
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1058
1070
|
'change-page-size': (v: number) => boolean;
|
|
1059
1071
|
'change-page': (v: number) => boolean;
|
|
@@ -1100,6 +1112,10 @@ export declare const UPagination: {
|
|
|
1100
1112
|
type: NumberConstructor;
|
|
1101
1113
|
default: number;
|
|
1102
1114
|
};
|
|
1115
|
+
totalPage: {
|
|
1116
|
+
type: NumberConstructor;
|
|
1117
|
+
required: true;
|
|
1118
|
+
};
|
|
1103
1119
|
}>> & Readonly<{
|
|
1104
1120
|
"onChange-page-size"?: (v: number) => any;
|
|
1105
1121
|
"onChange-page"?: (v: number) => any;
|
|
@@ -14665,6 +14665,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
14665
14665
|
type: NumberConstructor;
|
|
14666
14666
|
default: number;
|
|
14667
14667
|
};
|
|
14668
|
+
totalPage: {
|
|
14669
|
+
type: NumberConstructor;
|
|
14670
|
+
required: true;
|
|
14671
|
+
};
|
|
14668
14672
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14669
14673
|
'change-page-size': (v: number) => boolean;
|
|
14670
14674
|
'change-page': (v: number) => boolean;
|
|
@@ -14711,6 +14715,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
14711
14715
|
type: NumberConstructor;
|
|
14712
14716
|
default: number;
|
|
14713
14717
|
};
|
|
14718
|
+
totalPage: {
|
|
14719
|
+
type: NumberConstructor;
|
|
14720
|
+
required: true;
|
|
14721
|
+
};
|
|
14714
14722
|
}>> & Readonly<{
|
|
14715
14723
|
"onChange-page-size"?: (v: number) => any;
|
|
14716
14724
|
"onChange-page"?: (v: number) => any;
|
|
@@ -15355,6 +15363,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
15355
15363
|
type: NumberConstructor;
|
|
15356
15364
|
default: number;
|
|
15357
15365
|
};
|
|
15366
|
+
totalPage: {
|
|
15367
|
+
type: NumberConstructor;
|
|
15368
|
+
required: true;
|
|
15369
|
+
};
|
|
15358
15370
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15359
15371
|
'change-page-size': (v: number) => boolean;
|
|
15360
15372
|
'change-page': (v: number) => boolean;
|
|
@@ -15401,6 +15413,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
15401
15413
|
type: NumberConstructor;
|
|
15402
15414
|
default: number;
|
|
15403
15415
|
};
|
|
15416
|
+
totalPage: {
|
|
15417
|
+
type: NumberConstructor;
|
|
15418
|
+
required: true;
|
|
15419
|
+
};
|
|
15404
15420
|
}>> & Readonly<{
|
|
15405
15421
|
"onChange-page-size"?: (v: number) => any;
|
|
15406
15422
|
"onChange-page"?: (v: number) => any;
|
|
@@ -2172,6 +2172,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2172
2172
|
direction: {
|
|
2173
2173
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
2174
2174
|
};
|
|
2175
|
+
inputSize: {
|
|
2176
|
+
type: NumberConstructor;
|
|
2177
|
+
};
|
|
2175
2178
|
}>> & Readonly<{
|
|
2176
2179
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
2177
2180
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -2510,6 +2513,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2510
2513
|
direction: {
|
|
2511
2514
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
2512
2515
|
};
|
|
2516
|
+
inputSize: {
|
|
2517
|
+
type: NumberConstructor;
|
|
2518
|
+
};
|
|
2513
2519
|
}>> & Readonly<{
|
|
2514
2520
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
2515
2521
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -2698,6 +2704,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2698
2704
|
direction: {
|
|
2699
2705
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
2700
2706
|
};
|
|
2707
|
+
inputSize: {
|
|
2708
|
+
type: NumberConstructor;
|
|
2709
|
+
};
|
|
2701
2710
|
}>> & Readonly<{
|
|
2702
2711
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
2703
2712
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -5218,6 +5227,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5218
5227
|
direction: {
|
|
5219
5228
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
5220
5229
|
};
|
|
5230
|
+
inputSize: {
|
|
5231
|
+
type: NumberConstructor;
|
|
5232
|
+
};
|
|
5221
5233
|
}>> & Readonly<{
|
|
5222
5234
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
5223
5235
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -5556,6 +5568,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5556
5568
|
direction: {
|
|
5557
5569
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
5558
5570
|
};
|
|
5571
|
+
inputSize: {
|
|
5572
|
+
type: NumberConstructor;
|
|
5573
|
+
};
|
|
5559
5574
|
}>> & Readonly<{
|
|
5560
5575
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
5561
5576
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -5744,6 +5759,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5744
5759
|
direction: {
|
|
5745
5760
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
5746
5761
|
};
|
|
5762
|
+
inputSize: {
|
|
5763
|
+
type: NumberConstructor;
|
|
5764
|
+
};
|
|
5747
5765
|
}>> & Readonly<{
|
|
5748
5766
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
5749
5767
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -8448,6 +8466,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8448
8466
|
direction: {
|
|
8449
8467
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
8450
8468
|
};
|
|
8469
|
+
inputSize: {
|
|
8470
|
+
type: NumberConstructor;
|
|
8471
|
+
};
|
|
8451
8472
|
}>> & Readonly<{
|
|
8452
8473
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
8453
8474
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -8786,6 +8807,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8786
8807
|
direction: {
|
|
8787
8808
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
8788
8809
|
};
|
|
8810
|
+
inputSize: {
|
|
8811
|
+
type: NumberConstructor;
|
|
8812
|
+
};
|
|
8789
8813
|
}>> & Readonly<{
|
|
8790
8814
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
8791
8815
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -8974,6 +8998,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8974
8998
|
direction: {
|
|
8975
8999
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
8976
9000
|
};
|
|
9001
|
+
inputSize: {
|
|
9002
|
+
type: NumberConstructor;
|
|
9003
|
+
};
|
|
8977
9004
|
}>> & Readonly<{
|
|
8978
9005
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
8979
9006
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -2145,6 +2145,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2145
2145
|
direction: {
|
|
2146
2146
|
type: PropType<"ltr" | "rtl">;
|
|
2147
2147
|
};
|
|
2148
|
+
inputSize: {
|
|
2149
|
+
type: NumberConstructor;
|
|
2150
|
+
};
|
|
2148
2151
|
}>> & Readonly<{
|
|
2149
2152
|
onSearch?: (v: InputValueType) => any;
|
|
2150
2153
|
onChange?: (v: InputValueType) => any;
|
|
@@ -2483,6 +2486,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2483
2486
|
direction: {
|
|
2484
2487
|
type: PropType<"ltr" | "rtl">;
|
|
2485
2488
|
};
|
|
2489
|
+
inputSize: {
|
|
2490
|
+
type: NumberConstructor;
|
|
2491
|
+
};
|
|
2486
2492
|
}>> & Readonly<{
|
|
2487
2493
|
onSearch?: (v: InputValueType) => any;
|
|
2488
2494
|
onChange?: (v: InputValueType) => any;
|
|
@@ -2671,6 +2677,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2671
2677
|
direction: {
|
|
2672
2678
|
type: PropType<"ltr" | "rtl">;
|
|
2673
2679
|
};
|
|
2680
|
+
inputSize: {
|
|
2681
|
+
type: NumberConstructor;
|
|
2682
|
+
};
|
|
2674
2683
|
}>> & Readonly<{
|
|
2675
2684
|
onSearch?: (v: InputValueType) => any;
|
|
2676
2685
|
onChange?: (v: InputValueType) => any;
|
|
@@ -2160,6 +2160,9 @@ export declare const UTransfer: {
|
|
|
2160
2160
|
direction: {
|
|
2161
2161
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
2162
2162
|
};
|
|
2163
|
+
inputSize: {
|
|
2164
|
+
type: NumberConstructor;
|
|
2165
|
+
};
|
|
2163
2166
|
}>> & Readonly<{
|
|
2164
2167
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
2165
2168
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -2498,6 +2501,9 @@ export declare const UTransfer: {
|
|
|
2498
2501
|
direction: {
|
|
2499
2502
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
2500
2503
|
};
|
|
2504
|
+
inputSize: {
|
|
2505
|
+
type: NumberConstructor;
|
|
2506
|
+
};
|
|
2501
2507
|
}>> & Readonly<{
|
|
2502
2508
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
2503
2509
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -2686,6 +2692,9 @@ export declare const UTransfer: {
|
|
|
2686
2692
|
direction: {
|
|
2687
2693
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
2688
2694
|
};
|
|
2695
|
+
inputSize: {
|
|
2696
|
+
type: NumberConstructor;
|
|
2697
|
+
};
|
|
2689
2698
|
}>> & Readonly<{
|
|
2690
2699
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
2691
2700
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -5206,6 +5215,9 @@ export declare const UTransfer: {
|
|
|
5206
5215
|
direction: {
|
|
5207
5216
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
5208
5217
|
};
|
|
5218
|
+
inputSize: {
|
|
5219
|
+
type: NumberConstructor;
|
|
5220
|
+
};
|
|
5209
5221
|
}>> & Readonly<{
|
|
5210
5222
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
5211
5223
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -5544,6 +5556,9 @@ export declare const UTransfer: {
|
|
|
5544
5556
|
direction: {
|
|
5545
5557
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
5546
5558
|
};
|
|
5559
|
+
inputSize: {
|
|
5560
|
+
type: NumberConstructor;
|
|
5561
|
+
};
|
|
5547
5562
|
}>> & Readonly<{
|
|
5548
5563
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
5549
5564
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -5732,6 +5747,9 @@ export declare const UTransfer: {
|
|
|
5732
5747
|
direction: {
|
|
5733
5748
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
5734
5749
|
};
|
|
5750
|
+
inputSize: {
|
|
5751
|
+
type: NumberConstructor;
|
|
5752
|
+
};
|
|
5735
5753
|
}>> & Readonly<{
|
|
5736
5754
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
5737
5755
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -8357,6 +8375,9 @@ export declare const UTransfer: {
|
|
|
8357
8375
|
direction: {
|
|
8358
8376
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
8359
8377
|
};
|
|
8378
|
+
inputSize: {
|
|
8379
|
+
type: NumberConstructor;
|
|
8380
|
+
};
|
|
8360
8381
|
}>> & Readonly<{
|
|
8361
8382
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
8362
8383
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -8695,6 +8716,9 @@ export declare const UTransfer: {
|
|
|
8695
8716
|
direction: {
|
|
8696
8717
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
8697
8718
|
};
|
|
8719
|
+
inputSize: {
|
|
8720
|
+
type: NumberConstructor;
|
|
8721
|
+
};
|
|
8698
8722
|
}>> & Readonly<{
|
|
8699
8723
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
8700
8724
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -8883,6 +8907,9 @@ export declare const UTransfer: {
|
|
|
8883
8907
|
direction: {
|
|
8884
8908
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
8885
8909
|
};
|
|
8910
|
+
inputSize: {
|
|
8911
|
+
type: NumberConstructor;
|
|
8912
|
+
};
|
|
8886
8913
|
}>> & Readonly<{
|
|
8887
8914
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
8888
8915
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -12011,6 +12038,9 @@ export declare const UTransfer: {
|
|
|
12011
12038
|
direction: {
|
|
12012
12039
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
12013
12040
|
};
|
|
12041
|
+
inputSize: {
|
|
12042
|
+
type: NumberConstructor;
|
|
12043
|
+
};
|
|
12014
12044
|
}>> & Readonly<{
|
|
12015
12045
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
12016
12046
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -12349,6 +12379,9 @@ export declare const UTransfer: {
|
|
|
12349
12379
|
direction: {
|
|
12350
12380
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
12351
12381
|
};
|
|
12382
|
+
inputSize: {
|
|
12383
|
+
type: NumberConstructor;
|
|
12384
|
+
};
|
|
12352
12385
|
}>> & Readonly<{
|
|
12353
12386
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
12354
12387
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -12537,6 +12570,9 @@ export declare const UTransfer: {
|
|
|
12537
12570
|
direction: {
|
|
12538
12571
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
12539
12572
|
};
|
|
12573
|
+
inputSize: {
|
|
12574
|
+
type: NumberConstructor;
|
|
12575
|
+
};
|
|
12540
12576
|
}>> & Readonly<{
|
|
12541
12577
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
12542
12578
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -15057,6 +15093,9 @@ export declare const UTransfer: {
|
|
|
15057
15093
|
direction: {
|
|
15058
15094
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
15059
15095
|
};
|
|
15096
|
+
inputSize: {
|
|
15097
|
+
type: NumberConstructor;
|
|
15098
|
+
};
|
|
15060
15099
|
}>> & Readonly<{
|
|
15061
15100
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
15062
15101
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -15395,6 +15434,9 @@ export declare const UTransfer: {
|
|
|
15395
15434
|
direction: {
|
|
15396
15435
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
15397
15436
|
};
|
|
15437
|
+
inputSize: {
|
|
15438
|
+
type: NumberConstructor;
|
|
15439
|
+
};
|
|
15398
15440
|
}>> & Readonly<{
|
|
15399
15441
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
15400
15442
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -15583,6 +15625,9 @@ export declare const UTransfer: {
|
|
|
15583
15625
|
direction: {
|
|
15584
15626
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
15585
15627
|
};
|
|
15628
|
+
inputSize: {
|
|
15629
|
+
type: NumberConstructor;
|
|
15630
|
+
};
|
|
15586
15631
|
}>> & Readonly<{
|
|
15587
15632
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
15588
15633
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -18224,6 +18269,9 @@ export declare const UTransfer: {
|
|
|
18224
18269
|
direction: {
|
|
18225
18270
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
18226
18271
|
};
|
|
18272
|
+
inputSize: {
|
|
18273
|
+
type: NumberConstructor;
|
|
18274
|
+
};
|
|
18227
18275
|
}>> & Readonly<{
|
|
18228
18276
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
18229
18277
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -18562,6 +18610,9 @@ export declare const UTransfer: {
|
|
|
18562
18610
|
direction: {
|
|
18563
18611
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
18564
18612
|
};
|
|
18613
|
+
inputSize: {
|
|
18614
|
+
type: NumberConstructor;
|
|
18615
|
+
};
|
|
18565
18616
|
}>> & Readonly<{
|
|
18566
18617
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
18567
18618
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -18750,6 +18801,9 @@ export declare const UTransfer: {
|
|
|
18750
18801
|
direction: {
|
|
18751
18802
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
18752
18803
|
};
|
|
18804
|
+
inputSize: {
|
|
18805
|
+
type: NumberConstructor;
|
|
18806
|
+
};
|
|
18753
18807
|
}>> & Readonly<{
|
|
18754
18808
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
18755
18809
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -21270,6 +21324,9 @@ export declare const UTransfer: {
|
|
|
21270
21324
|
direction: {
|
|
21271
21325
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
21272
21326
|
};
|
|
21327
|
+
inputSize: {
|
|
21328
|
+
type: NumberConstructor;
|
|
21329
|
+
};
|
|
21273
21330
|
}>> & Readonly<{
|
|
21274
21331
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
21275
21332
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -21608,6 +21665,9 @@ export declare const UTransfer: {
|
|
|
21608
21665
|
direction: {
|
|
21609
21666
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
21610
21667
|
};
|
|
21668
|
+
inputSize: {
|
|
21669
|
+
type: NumberConstructor;
|
|
21670
|
+
};
|
|
21611
21671
|
}>> & Readonly<{
|
|
21612
21672
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
21613
21673
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -21796,6 +21856,9 @@ export declare const UTransfer: {
|
|
|
21796
21856
|
direction: {
|
|
21797
21857
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
21798
21858
|
};
|
|
21859
|
+
inputSize: {
|
|
21860
|
+
type: NumberConstructor;
|
|
21861
|
+
};
|
|
21799
21862
|
}>> & Readonly<{
|
|
21800
21863
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
21801
21864
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -24421,6 +24484,9 @@ export declare const UTransfer: {
|
|
|
24421
24484
|
direction: {
|
|
24422
24485
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
24423
24486
|
};
|
|
24487
|
+
inputSize: {
|
|
24488
|
+
type: NumberConstructor;
|
|
24489
|
+
};
|
|
24424
24490
|
}>> & Readonly<{
|
|
24425
24491
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
24426
24492
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -24759,6 +24825,9 @@ export declare const UTransfer: {
|
|
|
24759
24825
|
direction: {
|
|
24760
24826
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
24761
24827
|
};
|
|
24828
|
+
inputSize: {
|
|
24829
|
+
type: NumberConstructor;
|
|
24830
|
+
};
|
|
24762
24831
|
}>> & Readonly<{
|
|
24763
24832
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
24764
24833
|
onChange?: (v: import("..").InputValueType) => any;
|
|
@@ -24947,6 +25016,9 @@ export declare const UTransfer: {
|
|
|
24947
25016
|
direction: {
|
|
24948
25017
|
type: import("vue").PropType<"ltr" | "rtl">;
|
|
24949
25018
|
};
|
|
25019
|
+
inputSize: {
|
|
25020
|
+
type: NumberConstructor;
|
|
25021
|
+
};
|
|
24950
25022
|
}>> & Readonly<{
|
|
24951
25023
|
onSearch?: (v: import("..").InputValueType) => any;
|
|
24952
25024
|
onChange?: (v: import("..").InputValueType) => any;
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root,[data-theme-color]{--primary-color:var(--primary-9)}.light,.light-theme,:root{--default-font-color:#222;--heading-color:#222;--secondary-font-color:#999;--placeholder-color:#d3d3d3;--color-background:white;--color-background-secondary:#f3f5f7;--color-overlay:rgba(0, 0, 0, 0.6);--color-panel-solid:white;--color-panel-translucent:rgba(255, 255, 255, 0.7);--color-surface:rgba(255, 255, 255, 0.85);--color-border-split:#f2f2f2;--color-border-input:#e0e0e0;--color-border-base:#e0e0e0;--color-disabled-font:#d3d3d3;--color-soft-control-background:#f3f5f7;--scrollbar-thumb-background-color:#d3d3d3;--scrollbar-thumb-background-color-hover:#999;color-scheme:light}.dark,.dark-theme{--default-font-color:#fff;--heading-color:#fff;--secondary-font-color:#eee;--placeholder-color:#d3d3d3;--color-background:var(--gray-2);--color-background-secondary:var(--gray-3);--color-overlay:var(--black-a8);--color-panel-solid:var(--gray-2);--color-panel-translucent:var(--gray-a2);--color-surface:rgba(0, 0, 0, 0.25);--color-border-split:var(--gray-9);--color-border-base:var(--gray-9);--color-border-input:var(--gray-9);--color-disabled-font:var(--gray-8);--color-disabled-background:var(--gray-2);--color-soft-control-background:var(--gray-4);--scrollbar-thumb-background-color:rgba(255, 255, 255, 0.5);--scrollbar-thumb-background-color-hover:rgba(255, 255, 255, 0.7);color-scheme:dark}.dark,.dark-theme,.light,.light-theme,:root,[data-color],[data-theme-color]{--link-color:var(--primary-9);--link-hover-color:var(--primary-10);--link-active-color:var(--primary-11);--dropdown-item-selected-color:var(--default-font-color);--dropdown-item-hover-background-color:var(--color-background-secondary);--dropdown-item-hover-font-color:var(--default-font-color);--highlight-color:var(--primary-10);--primary-color:var(--primary-9);--primary-hover:var(--primary-a90);--primary-active:var(--primary-a90);--primary-soft:var(--primary-4);--primary-soft-hover:var(--primary-5);--primary-soft-active:var(--primary-6)}.dark,.dark-theme,.light,.light-theme,:root{--error-soft:#feebe7;--error-soft-hover:#ffdcd3;--error-8:#ec8e7b;--error-color:#fe3b2f;--error-hover:rgba(254, 59, 47, 0.9);--error-active:rgba(254, 59, 47, 0.9);--error-color-a30:rgba(254, 59, 47, 0.3);--error-color-a50:rgba(254, 59, 47, 0.5);--success-soft:#e9f6e9;--success-soft-hover:#daf1db;--success-7:#94ce9a;--success-8:#65ba74;--success-color:#17c964;--success-hover:rgba(23, 201, 100, 0.9);--success-active:rgba(23, 201, 100, 0.9);--warning-soft:#ffefd6;--warning-soft-hover:#ffdfb5;--warning-8:#ec9455;--warning-color:#ff8200;--warning-hover:rgba(255, 130, 0, 0.9);--warning-active:rgba(255, 130, 0, 0.9);--warning-a11:#ffa057;--color-contrast:white;--transition-colors:color,background-color,border-color,text-decoration-color,fill,stroke 0.15s cubic-bezier(0.4, 0, 0.2, 1);--animation-time:0.3s;--animation-time-fast:0.15s;--animation-time-short:0.2s;--animation-time-long:0.5s;--border-width-base:1px;--border-style-base:solid;--control-disabled-background-color:var(--gray-2);--control-disabled-border-color:var(--color-border-disabled);--control-surface-background-color:var(--color-background);--control-height-small:var(--space-8);--control-height-base:var(--space-9);--control-height-large:var(--space-10);--control-padding-y:0;--control-padding-x:var(--space-3);--control-label-color:var(--secondary-font-color);--control-label-font-weight:var(--font-weight-medium);--control-inner-gap:var(--space-1);--icon-width-base:var(--space-4);--icon-font-size:var(--font-size-base);--icon-button-width:var(--space-8);--icon-button-color:#d3d3d3;--icon-button-padding:var(--space-1);--icon-button-hover-color:#999;--icon-button-hover-background-color:#f3f5f7;--scrollbar-width:6px;--required-color:var(--error-color);--required-font-size:var(--font-size-sm);--required-font-family:'SimSun',sans-serif;--disabled-opacity:0.4;--link-decoration:none;--link-hover-decoration:underline;--zindex-badge:auto;--zindex-table-fixed:10;--zindex-affix:10;--zindex-back-top:10;--zindex-picker-panel:10;--zindex-popup-close:10;--zindex-spin:10;--zindex-modal:1000;--zindex-modal-mask:1000;--zindex-message:1010;--zindex-notice:1010;--zindex-popover:1030;--zindex-dropdown:1050;--zindex-tooltip:1060;--zindex-loading-bar:2000;--dropdown-shadow:var(--shadow-md);--popover-shadow:var(--shadow-md);--modal-shadow:var(--shadow-lg);--message-shadow:var(--shadow-md);--notice-shadow:var(--shadow-md);--card-shadow:var(--shadow-base);--mask-background-color:var(--color-overlay);--ease-base-out:cubic-bezier(0.7, 0.3, 0.1, 1);--ease-base-in:cubic-bezier(0.9, 0, 0.3, 0.7);--ease-out:cubic-bezier(0.215, 0.61, 0.355, 1);--ease-in:cubic-bezier(0.55, 0.055, 0.675, 0.19);--ease-in-out:cubic-bezier(0.645, 0.045, 0.355, 1);--ease-out-back:cubic-bezier(0.12, 0.4, 0.29, 1.46);--ease-in-back:cubic-bezier(0.71, -0.46, 0.88, 0.6);--ease-in-out-back:cubic-bezier(0.71, -0.46, 0.29, 1.46);--ease-out-circ:cubic-bezier(0.08, 0.82, 0.17, 1);--ease-in-circ:cubic-bezier(0.6, 0.04, 0.98, 0.34);--ease-in-out-circ:cubic-bezier(0.78, 0.14, 0.15, 0.86);--ease-out-quint:cubic-bezier(0.23, 1, 0.32, 1);--ease-in-quint:cubic-bezier(0.755, 0.05, 0.855, 0.06);--ease-in-out-quint:cubic-bezier(0.86, 0, 0.07, 1)}[data-color=error]{--link-color:var(--error-color);--link-hover-color:var(--error-hover);--link-active-color:var(--error-active)}[data-color=warning]{--link-color:var(--warning-color);--link-hover-color:var(--warning-hover);--link-active-color:var(--warning-active)}[data-color=success]{--link-color:var(--success-color);--link-hover-color:var(--success-hover);--link-active-color:var(--success-active)}[data-color]{--primary-shadow-3:0 0 0 1px var(--primary-a3),0 2px 3px -2px var(--primary-a3),0 3px 12px -4px var(--primary-a3),0 4px 16px -8px var(--primary-a3)}:root,[data-radius]{--dropdown-border-radius:var(--radius-md);--icon-button-radius:var(--radius-md);--modal-border-radius:var(--radius-lg);--control-radius:var(--radius-md);--control-radius-small:var(--radius-md);--control-radius-large:var(--radius-md)}.uui-select,.uui-select-dropdown,.uui-select-dropdown-tooltip{--select-width:100%;--select-max-width:auto;--select-background-color:var(--color-surface);--select-border-color:var(--color-border-input);--select-height:var(--control-height-base);--select-border-radius:var(--control-radius);--select-focus-border-color:var(--primary-color);--select-dropdown-background-color:var(--color-background);--select-dropdown-padding-vertical:var(--space-1);--select-dropdown-padding-horizontal:var(--space-1);--select-dropdown-item-height:var(--control-height-base);--select-dropdown-item-padding-horizontal:var(--space-2);--select-dropdown-item-padding-vertical:0;--select-dropdown-item-radius:var(--radius-base);--select-dropdown-group-item-color:var(--secondary-font-color);--select-dropdown-group-item-font-weight:var(--font-weight-medium);--select-multiple-selection-vertical-padding:calc(var(--space-1));--select-multiple-item-padding:0 var(--space-1);--select-multiple-item-border-radius:var(--radius-base);--select-multiple-item-background-color:var(--color-soft-control-background)}[data-radius=full]{--select-border-radius:var(--radius-full)}.uui-select{box-sizing:border-box;margin:0;padding:0;color:var(--default-font-color);font-size:var(--default-font-size);font-variant:var(--default-font-variant);line-height:var(--default-line-height);list-style:none;font-feature-settings:var(--default-font-feature-settings);position:relative;display:inline-flex;align-items:center;column-gap:var(--control-inner-gap);border-radius:var(--select-border-radius);background-color:var(--select-background-color);padding:var(--control-padding-y) var(--control-padding-x);outline:0;width:var(--select-width);cursor:pointer;height:var(--select-height);line-height:var(--select-height)}.uui-select-variant-surface{border:1px solid var(--select-border-color);background-color:var(--select-background-color)}.uui-select-variant-surface.uui-select-focused,.uui-select-variant-surface.uui-select-open{--select-border-color:var(--select-focus-border-color)}.has-error .uui-select-variant-surface,.validate-error .uui-select-variant-surface{--select-border-color:var(--error-color)}.uui-select-variant-soft{--select-background-color:var(--color-soft-control-background);--select-hover-background-color:var(--color-soft-control-hover-background);--select-multiple-item-background-color:var(--color-background);transition:background var(--animation-time) linear}.uui-select-variant-soft.uui-select-focused,.uui-select-variant-soft.uui-select-open{border-color:var(--select-focus-border-color);outline:0}.has-error .uui-select-variant-soft,.validate-error .uui-select-variant-soft{border:1px solid var(--error-color)}.uui-select-variant-underline{border-bottom:1px solid var(--select-border-color);border-radius:0}.has-error .uui-select-variant-underline,.validate-error .uui-select-variant-underline{border-bottom:1px solid var(--error-color)}.uui-select-variant-borderless{background-color:transparent}.uui-select-variant-borderless.uui-select-single .uui-select-selection .uui-select-selection-item,.uui-select-variant-borderless.uui-select-single .uui-select-selection .uui-select-selection-placeholder{position:static;transform:none}.uui-select-variant-borderless.uui-select-focused,.uui-select-variant-borderless.uui-select-open{outline:0}.uui-select-disabled{opacity:var(--disabled-opacity)}.uui-select-selection-item{flex:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}@media all and (-ms-high-contrast:none){.uui-select-selection-item,.uui-select-selection-item ::-ms-backdrop{flex:auto}}.uui-select-selection-placeholder{position:absolute;width:100%;top:50%;transform:translateY(-50%);overflow:hidden;color:var(--placeholder-color);white-space:nowrap;text-overflow:ellipsis}@media all and (-ms-high-contrast:none){.uui-select-selection-placeholder,.uui-select-selection-placeholder ::-ms-backdrop{flex:auto}}.uui-select-label{display:inline-flex;align-self:flex-start;align-items:center;font-size:var(--default-font-size);line-height:var(--select-height);color:var(--control-label-color);font-weight:var(--control-label-font-weight);flex-shrink:0}.uui-select-label:where(.uui-select-label-colon)::after{content:':'}.uui-select-label-required::before{display:inline-flex;margin-right:0;color:var(--required-color);font-size:var(--default-font-size);font-family:var(--required-font-family);line-height:1;content:'*'}.uui-select-arrow,.uui-select-clear,.uui-select-prefix{width:var(--icon-width-base);display:inline-flex;align-items:center;justify-content:center}.uui-select-arrow>i,.uui-select-clear>i,.uui-select-prefix>i{font-size:var(--icon-font-size);color:var(--icon-button-color)}.uui-select-arrow{-webkit-user-select:none;user-select:none;transition:transform .3s;pointer-events:none}.uui-select-disabled .uui-select-arrow{cursor:not-allowed}.uui-select-open:not(.uui-select-filterable):not(.uui-select-loading):not(.uui-select-arrow-no-rotate) .uui-select-arrow{transform:rotate(180deg)}.uui-select-prefix{pointer-events:none;transition:transform .3s}.uui-select-clear{text-rendering:auto;display:none}.uui-select-clear>i{width:auto;height:auto;line-height:1;border-radius:var(--icon-button-radius);padding:var(--icon-button-padding);color:var(--icon-button-color);background-color:transparent}.uui-select-clear:hover>i{color:var(--icon-button-hover-color);background-color:var(--icon-button-hover-background-color)}.uui-select-with-clear:hover .uui-select-clear{display:inline-flex}.uui-select-with-clear:hover .uui-select-arrow{display:none}.uui-select-single .uui-select-selection{position:relative;flex:1 1 auto;width:calc(100% - var(--icon-width-base) - var(--control-padding-x));display:block;background-color:transparent;align-items:center;transition:all var(--animation-time) ease-in-out;display:flex;height:calc(var(--select-height) - 2px);padding:0}.uui-select-single .uui-select-selection input{cursor:pointer}.uui-select-disabled.uui-select-single .uui-select-selection{cursor:not-allowed}.uui-select-disabled.uui-select-single .uui-select-selection input{cursor:not-allowed}.uui-select-filterable.uui-select-single .uui-select-selection{cursor:text}.uui-select-filterable.uui-select-single .uui-select-selection input{cursor:auto}.uui-select-single .uui-select-selection .uui-select-selection-search-input{margin:0;padding:0;background:0 0;border:none;outline:0;appearance:none;flex:1}.uui-select-single .uui-select-selection .uui-select-selection-search-input::-webkit-search-cancel-button{display:none;appearance:none}.uui-select-single .uui-select-selection .uui-select-selection-search{position:absolute;inset:0}.uui-select-single .uui-select-selection .uui-select-selection-search-input{height:100%;width:100%}.uui-select-single .uui-select-selection .uui-select-selection-item,.uui-select-single .uui-select-selection .uui-select-selection-placeholder{padding:0;transition:all var(--animation-time)}.uui-select-single .uui-select-selection .uui-select-selection-item{position:absolute;width:100%;top:50%;transform:translateY(-50%);-webkit-user-select:none;user-select:none}.uui-select-single .uui-select-selection .uui-select-selection-placeholder{pointer-events:none}.uui-select-single .uui-select-selection::after{line-height:calc(var(--select-height) - 2px)}.uui-select-single.uui-select-open .uui-select-selection-item{color:var(--placeholder-color)}.uui-select-single.uui-select-small{--select-height:var(--control-height-small)}.uui-select-single.uui-select-small .uui-select-selection .uui-select-selection-item,.uui-select-single.uui-select-small .uui-select-selection .uui-select-selection-placeholder,.uui-select-single.uui-select-small .uui-select-selection .uui-select-selection-search,.uui-select-single.uui-select-small .uui-select-selection::after{font-size:var(--font-size-xs)}.uui-select-single.uui-select-large{--select-height:var(--control-height-large)}.uui-select-multiple{height:auto;min-height:var(--select-height);--select-multiple-item-height:calc(var(--select-height) - var(--select-multiple-selection-vertical-padding) * 2 - 2px)}.uui-select-multiple .uui-select-selection{position:relative;flex:1 1 auto;width:calc(100% - var(--icon-width-base) - var(--control-padding-x));display:block;background-color:transparent;transition:all var(--animation-time) ease-in-out;display:flex;gap:var(--space-1);flex-wrap:wrap;align-items:center;padding:var(--select-multiple-selection-vertical-padding) 0}.uui-select-multiple .uui-select-selection input{cursor:pointer}.uui-select-disabled.uui-select-multiple .uui-select-selection{cursor:not-allowed}.uui-select-disabled.uui-select-multiple .uui-select-selection input{cursor:not-allowed}.uui-select-filterable.uui-select-multiple .uui-select-selection{cursor:text}.uui-select-filterable.uui-select-multiple .uui-select-selection input{cursor:auto}.uui-select-multiple .uui-select-selection .uui-select-selection-search-input{margin:0;padding:0;background:0 0;border:none;outline:0;appearance:none;flex:1}.uui-select-multiple .uui-select-selection .uui-select-selection-search-input::-webkit-search-cancel-button{display:none;appearance:none}.uui-select-filterable.uui-select-multiple .uui-select-selection{cursor:text}.uui-select-multiple:has(.uui-select-selection-item){padding-left:var(--select-multiple-selection-vertical-padding)}.uui-select-multiple .uui-select-selection-item{position:relative;display:inline-flex;align-items:center;flex:none;gap:var(--space-1);box-sizing:border-box;max-width:100%;height:var(--select-multiple-item-height);padding:var(--select-multiple-item-padding);line-height:var(--select-multiple-item-height);background:var(--select-multiple-item-background-color);border:none;border-radius:var(--select-multiple-item-border-radius);cursor:default;transition:font-size .3s,line-height .3s,height .3s;-webkit-user-select:none;user-select:none}.uui-select-multiple .uui-select-selection-item-content{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.uui-select-multiple .uui-select-selection-item-remove{display:flex;align-items:center;color:var(--icon-button-color);font-weight:700;font-size:var(--font-size-sm);line-height:1;height:var(--font-size-sm);width:var(--font-size-sm);cursor:pointer;border-radius:var(--radius-full)}.uui-select-multiple .uui-select-selection-item-remove:hover{color:var(--icon-button-hover-color)}.uui-select-multiple .uui-select-selection-search{position:relative;margin-left:0;display:flex}.uui-select-multiple .uui-select-selection-search-input,.uui-select-multiple .uui-select-selection-search-mirror{font-family:var(--default-font-family);line-height:var(--select-multiple-item-height);transition:all .3s}.uui-select-multiple .uui-select-selection-search-input{width:100%;min-width:4.1px}.uui-select-multiple .uui-select-selection-search-mirror{position:absolute;top:0;left:0;z-index:999;white-space:nowrap;visibility:hidden}.uui-select-multiple .uui-select-selection-placeholder{position:absolute;top:50%;right:0;left:0;transform:translateY(-50%);transition:all .3s}.uui-select-multiple.uui-select-small{--select-height:var(--control-height-small);--select-multiple-item-height:calc(var(--select-height) - var(--select-multiple-selection-vertical-padding) * 2 - 2px)}.uui-select-multiple.uui-select-small .uui-select-selection-search-input,.uui-select-multiple.uui-select-small .uui-select-selection-search-mirror{font-size:var(--font-size-xs)}.uui-select-multiple.uui-select-small .uui-select-selection-item{font-size:var(--font-size-xs)}.uui-select-multiple.uui-select-small .uui-select-selection-placeholder{font-size:var(--font-size-xs)}.uui-select-multiple.uui-select-large{--select-height:var(--control-height-large);--select-multiple-item-height:calc(var(--select-height) - var(--select-multiple-selection-vertical-padding) * 2 - 2px)}.uui-select-selection-tooltip{display:flex;gap:var(--space-1);max-height:calc(var(--select-multiple-item-height) * 5 + var(--space-1) * 4);flex-wrap:wrap;overflow-y:auto;--select-multiple-item-height:calc(var(--select-height) - var(--select-multiple-selection-vertical-padding) * 2 - 2px)}.uui-select-selection-tooltip .uui-select-selection-item{position:relative;display:inline-flex;align-items:center;flex:none;gap:var(--space-1);box-sizing:border-box;max-width:100%;height:var(--select-multiple-item-height);padding:var(--select-multiple-item-padding);line-height:var(--select-multiple-item-height);background:var(--select-multiple-item-background-color);border:none;border-radius:var(--select-multiple-item-border-radius);cursor:default;transition:font-size .3s,line-height .3s,height .3s;-webkit-user-select:none;user-select:none}.uui-select-selection-tooltip .uui-select-selection-item-content{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.uui-select-selection-tooltip .uui-select-selection-item-remove{display:flex;align-items:center;color:var(--icon-button-color);font-weight:700;font-size:var(--font-size-sm);line-height:1;height:var(--font-size-sm);width:var(--font-size-sm);cursor:pointer;border-radius:var(--radius-full)}.uui-select-selection-tooltip .uui-select-selection-item-remove:hover{color:var(--icon-button-hover-color)}.uui-select-disabled .uui-select-selection-item-remove{display:none}.uui-select-large{--select-border-radius:var(--control-radius-large);--select-height:var(--control-height-large)}.uui-select-small{--select-border-radius:var(--control-radius-small);--select-height:var(--control-height-small);--icon-button-padding:calc(var(--space-1) * 0.75)}.uui-select-small .uui-select-label{font-size:var(--font-size-xs)}.uui-select-rtl,[data-direction=rtl] .uui-select,[dir=rtl] .uui-select{direction:rtl}.uui-select-rtl.uui-select-multiple:has(.uui-select-selection-item),[data-direction=rtl] .uui-select.uui-select-multiple:has(.uui-select-selection-item),[dir=rtl] .uui-select.uui-select-multiple:has(.uui-select-selection-item){padding-left:var(--control-padding-x);padding-right:var(--select-multiple-selection-vertical-padding)}.uui-select-rtl:has(.uui-select-label),[data-direction=rtl] .uui-select:has(.uui-select-label),[dir=rtl] .uui-select:has(.uui-select-label){padding-right:0;padding-left:var(--control-padding-r)}.uui-select-dropdown{margin:0;padding:0;color:var(--default-font-color);font-variant:var(--default-font-variant);line-height:var(--default-line-height);list-style:none;font-feature-settings:var(--default-font-feature-settings);position:absolute;top:-9999px;left:-9999px;z-index:var(--zindex-dropdown);box-sizing:border-box;padding:var(--select-dropdown-padding-vertical) 0;overflow:hidden;font-size:var(--default-font-size);font-variant:initial;background-color:var(--select-dropdown-background-color);border-radius:var(--dropdown-border-radius);outline:0;box-shadow:var(--dropdown-shadow);border:1px solid var(--color-border-split)}.uui-select-dropdown-hidden{display:none}.uui-select-dropdown-operate{padding:0 var(--control-padding-x) var(--space-2);border-bottom:1px solid var(--color-border-split)}.uui-select-dropdown-list{padding:0 var(--select-dropdown-padding-horizontal)}.uui-select-dropdown-rtl,[data-direction=rtl] .uui-select-dropdown,[dir=rtl] .uui-select-dropdown{direction:rtl}.uui-select-item-empty{display:flex;justify-content:center;align-items:center;color:var(--color-disabled-font)}.uui-select-item{position:relative;display:flex;align-items:center;min-height:var(--select-dropdown-item-height);padding:var(--select-dropdown-item-padding-vertical) var(--select-dropdown-item-padding-horizontal);color:var(--default-font-color);font-weight:400;font-size:var(--default-font-size);border-radius:var(--select-dropdown-item-radius);line-height:var(--line-height-normal);cursor:pointer}.uui-select-item-group{color:var(--select-dropdown-group-item-color);font-weight:var(--select-dropdown-group-item-font-weight);padding:var(--select-dropdown-item-padding-vertical) var(--select-dropdown-item-state-width);cursor:default}.uui-select-item-option{display:inline-flex}.uui-select-item-option-content{flex:auto;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.uui-select-item-option-state{flex-grow:0;flex-shrink:0;width:var(--icon-font-size)}.uui-select-item-option-selected:not(.uui-select-item-option-disabled){color:var(--dropdown-item-selected-color)}.uui-select-item-option-active:not(.uui-select-item-option-disabled){background-color:var(--dropdown-item-hover-background-color);color:var(--dropdown-item-hover-font-color)}.uui-select-item-option-selected:not(.uui-select-item-option-disabled).uui-select-item-option-active{background-color:var(--dropdown-item-hover-background-color);color:var(--dropdown-item-selected-color)}.uui-select-item-option-selected:not(.uui-select-item-option-disabled).uui-select-item-option-active .uui-select-dropdown-item-option-state{color:var(--dropdown-item-selected-color)}.uui-select-item-option-disabled{opacity:var(--disabled-opacity);cursor:not-allowed}.uui-select-item-small{--select-dropdown-item-height:var(--control-height-small);font-size:var(--font-size-xs)}.uui-cascader{--cascader-width:100%;width:var(--cascader-width);cursor:pointer}.uui-cascader-custom{display:inline;border:none;box-shadow:none}.uui-cascader-custom:hover{border:none;box-shadow:none;background-color:transparent}.uui-cascader-custom .uui-select-arrow{display:none}.uui-cascader-custom .uui-select-clear{display:none}.uui-cascader-menu-wrap{--cascader-dropdown-menu-padding-vertical:var(--space-1);--cascader-dropdown-border-radius:var(--dropdown-border-radius);--cascader-dropdown-menu-min-width:120px;--cascader-dropdown-item-height:var(--space-6);--cascader-dropdown-menu-padding-horizontal:var(--space-1);--cascader-dropdown-item-padding-horizontal:var(--space-6);--cascader-dropdown-item-hover-background-color:var(--dropdown-item-hover-background-color);--cascader-dropdown-item-selected-color:var(--default-font-color);--cascader-dropdown-item-active-color:var(--primary-color);--cascader-dropdown-item-active-background-color:transparent;--cascader-dropdown-item-radius:var(--radius-base);font-size:var(--default-font-size);overflow:hidden;background-color:var(--color-background);border-radius:var(--cascader-dropdown-border-radius);box-shadow:var(--dropdown-shadow);padding:var(--cascader-dropdown-menu-padding-vertical) 0;white-space:nowrap;position:relative;display:flex;align-items:flex-start;z-index:var(--zindex-dropdown)}.uui-cascader-menu{display:block;list-style:none;margin:0;padding:0 var(--cascader-dropdown-menu-padding-horizontal);min-width:var(--cascader-dropdown-menu-min-width);height:calc(var(--cascader-dropdown-item-height) * 6);overflow:auto;-ms-overflow-style:-ms-autohiding-scrollbar;position:relative}.uui-cascader-menu-not-found{position:absolute;top:50%;left:0;width:100%;transform:translateY(-50%);text-align:center;color:var(--color-disabled-font)}.uui-cascader-menu:not(:last-child){border-right:1px solid var(--color-border-split)}.uui-cascader-menu:first-child{border-top-left-radius:var(--dropdown-border-radius);border-bottom-left-radius:var(--dropdown-border-radius)}.uui-cascader-menu:last-child{border-top-right-radius:var(--dropdown-border-radius);border-bottom-right-radius:var(--dropdown-border-radius)}.uui-cascader-menu:only-child{border-radius:var(--dropdown-border-radius)}.uui-cascader-menu-item{display:flex;height:var(--cascader-dropdown-item-height);line-height:var(--cascader-dropdown-item-height);padding:0 var(--cascader-dropdown-item-padding-horizontal);border-radius:var(--cascader-dropdown-item-radius);cursor:pointer;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:all .3s ease;position:relative}.uui-cascader-menu-item:hover{background-color:var(--cascader-dropdown-item-hover-background-color);color:var(--cascader-dropdown-item-hover-font-color)}.uui-cascader-menu-item-disabled{cursor:not-allowed;color:var(--color-disabled-font);background-color:var(--control-disabled-background-color)}.uui-cascader-menu-item-disabled:hover{background-color:var(--control-disabled-background-color);color:var(--color-disabled-font)}.uui-cascader-menu-item-disabled .uui-checkbox-input{cursor:not-allowed}.uui-cascader-menu-item-active:not(.uui-cascader-menu-item-disabled){font-weight:600;color:var(--cascader-dropdown-item-active-color);background-color:var(--cascader-dropdown-item-active-background-color)}.uui-cascader-menu-item-active:not(.uui-cascader-menu-item-disabled):hover{background-color:var(--cascader-dropdown-item-hover-background-color)}.uui-cascader-menu-item-selected{color:var(--cascader-dropdown-item-selected-color)}.uui-cascader-menu-item-checkbox,.uui-cascader-menu-item-checked-icon{font-size:var(--default-font-size);line-height:1;position:absolute;top:50%;transform:translateY(-50%);left:var(--space-1)}.uui-cascader-menu-item-not-found{height:100%;background-color:var(--color-background);cursor:default}.uui-cascader-menu-item-not-found:hover{background-color:var(--color-background)}.uui-cascader-menu-item-suffix{font-size:var(--control-icon-font-size);line-height:1;position:absolute;top:50%;transform:translateY(-50%);right:var(--space-1)}.uui-cascader-menu-item-keyword{color:var(--highlight-color)}
|
|
1
|
+
:root,[data-theme-color]{--primary-color:var(--primary-9)}.light,.light-theme,:root{--default-font-color:#222;--heading-color:#222;--secondary-font-color:#999;--placeholder-color:#d3d3d3;--color-background:white;--color-background-secondary:#f3f5f7;--color-overlay:rgba(0, 0, 0, 0.6);--color-panel-solid:white;--color-panel-translucent:rgba(255, 255, 255, 0.7);--color-surface:rgba(255, 255, 255, 0.85);--color-border-split:#f2f2f2;--color-border-input:#e0e0e0;--color-border-base:#e0e0e0;--color-disabled-font:#d3d3d3;--color-soft-control-background:#f3f5f7;--scrollbar-thumb-background-color:#d3d3d3;--scrollbar-thumb-background-color-hover:#999;color-scheme:light}.dark,.dark-theme{--default-font-color:#fff;--heading-color:#fff;--secondary-font-color:#eee;--placeholder-color:#d3d3d3;--color-background:var(--gray-2);--color-background-secondary:var(--gray-3);--color-overlay:var(--black-a8);--color-panel-solid:var(--gray-2);--color-panel-translucent:var(--gray-a2);--color-surface:rgba(0, 0, 0, 0.25);--color-border-split:var(--gray-9);--color-border-base:var(--gray-9);--color-border-input:var(--gray-9);--color-disabled-font:var(--gray-8);--color-disabled-background:var(--gray-2);--color-soft-control-background:var(--gray-4);--scrollbar-thumb-background-color:rgba(255, 255, 255, 0.5);--scrollbar-thumb-background-color-hover:rgba(255, 255, 255, 0.7);color-scheme:dark}.dark,.dark-theme,.light,.light-theme,:root,[data-color],[data-theme-color]{--link-color:var(--primary-9);--link-hover-color:var(--primary-10);--link-active-color:var(--primary-11);--dropdown-item-selected-color:var(--default-font-color);--dropdown-item-hover-background-color:var(--color-background-secondary);--dropdown-item-hover-font-color:var(--default-font-color);--highlight-color:var(--primary-10);--primary-color:var(--primary-9);--primary-hover:var(--primary-a90);--primary-active:var(--primary-a90);--primary-soft:var(--primary-4);--primary-soft-hover:var(--primary-5);--primary-soft-active:var(--primary-6)}.dark,.dark-theme,.light,.light-theme,:root{--error-soft:#feebe7;--error-soft-hover:#ffdcd3;--error-8:#ec8e7b;--error-color:#fe3b2f;--error-hover:rgba(254, 59, 47, 0.9);--error-active:rgba(254, 59, 47, 0.9);--error-color-a30:rgba(254, 59, 47, 0.3);--error-color-a50:rgba(254, 59, 47, 0.5);--success-soft:#e9f6e9;--success-soft-hover:#daf1db;--success-7:#94ce9a;--success-8:#65ba74;--success-color:#17c964;--success-hover:rgba(23, 201, 100, 0.9);--success-active:rgba(23, 201, 100, 0.9);--warning-soft:#ffefd6;--warning-soft-hover:#ffdfb5;--warning-8:#ec9455;--warning-color:#ff8200;--warning-hover:rgba(255, 130, 0, 0.9);--warning-active:rgba(255, 130, 0, 0.9);--warning-a11:#ffa057;--color-contrast:white;--transition-colors:color,background-color,border-color,text-decoration-color,fill,stroke 0.15s cubic-bezier(0.4, 0, 0.2, 1);--animation-time:0.3s;--animation-time-fast:0.15s;--animation-time-short:0.2s;--animation-time-long:0.5s;--border-width-base:1px;--border-style-base:solid;--control-disabled-background-color:var(--gray-2);--control-disabled-border-color:var(--color-border-disabled);--control-surface-background-color:var(--color-background);--control-height-small:var(--space-8);--control-height-base:var(--space-9);--control-height-large:var(--space-10);--control-padding-y:0;--control-padding-x:var(--space-3);--control-label-color:var(--secondary-font-color);--control-label-font-weight:var(--font-weight-medium);--control-inner-gap:var(--space-1);--icon-width-base:var(--space-4);--icon-font-size:var(--font-size-base);--icon-button-width:var(--space-8);--icon-button-color:#d3d3d3;--icon-button-padding:var(--space-1);--icon-button-hover-color:#999;--icon-button-hover-background-color:#f3f5f7;--scrollbar-width:6px;--required-color:var(--error-color);--required-font-size:var(--font-size-sm);--required-font-family:'SimSun',sans-serif;--disabled-opacity:0.4;--link-decoration:none;--link-hover-decoration:underline;--zindex-badge:auto;--zindex-table-fixed:10;--zindex-affix:10;--zindex-back-top:10;--zindex-picker-panel:10;--zindex-popup-close:10;--zindex-spin:10;--zindex-modal:1000;--zindex-modal-mask:1000;--zindex-message:1010;--zindex-notice:1010;--zindex-popover:1030;--zindex-dropdown:1050;--zindex-tooltip:1060;--zindex-loading-bar:2000;--dropdown-shadow:var(--shadow-md);--popover-shadow:var(--shadow-md);--modal-shadow:var(--shadow-lg);--message-shadow:var(--shadow-md);--notice-shadow:var(--shadow-md);--card-shadow:var(--shadow-base);--mask-background-color:var(--color-overlay);--ease-base-out:cubic-bezier(0.7, 0.3, 0.1, 1);--ease-base-in:cubic-bezier(0.9, 0, 0.3, 0.7);--ease-out:cubic-bezier(0.215, 0.61, 0.355, 1);--ease-in:cubic-bezier(0.55, 0.055, 0.675, 0.19);--ease-in-out:cubic-bezier(0.645, 0.045, 0.355, 1);--ease-out-back:cubic-bezier(0.12, 0.4, 0.29, 1.46);--ease-in-back:cubic-bezier(0.71, -0.46, 0.88, 0.6);--ease-in-out-back:cubic-bezier(0.71, -0.46, 0.29, 1.46);--ease-out-circ:cubic-bezier(0.08, 0.82, 0.17, 1);--ease-in-circ:cubic-bezier(0.6, 0.04, 0.98, 0.34);--ease-in-out-circ:cubic-bezier(0.78, 0.14, 0.15, 0.86);--ease-out-quint:cubic-bezier(0.23, 1, 0.32, 1);--ease-in-quint:cubic-bezier(0.755, 0.05, 0.855, 0.06);--ease-in-out-quint:cubic-bezier(0.86, 0, 0.07, 1)}[data-color=error]{--link-color:var(--error-color);--link-hover-color:var(--error-hover);--link-active-color:var(--error-active)}[data-color=warning]{--link-color:var(--warning-color);--link-hover-color:var(--warning-hover);--link-active-color:var(--warning-active)}[data-color=success]{--link-color:var(--success-color);--link-hover-color:var(--success-hover);--link-active-color:var(--success-active)}[data-color]{--primary-shadow-3:0 0 0 1px var(--primary-a3),0 2px 3px -2px var(--primary-a3),0 3px 12px -4px var(--primary-a3),0 4px 16px -8px var(--primary-a3)}:root,[data-radius]{--dropdown-border-radius:var(--radius-md);--icon-button-radius:var(--radius-md);--modal-border-radius:var(--radius-lg);--control-radius:var(--radius-md);--control-radius-small:var(--radius-md);--control-radius-large:var(--radius-md)}.uui-select,.uui-select-dropdown,.uui-select-dropdown-tooltip{--select-width:100%;--select-max-width:auto;--select-background-color:var(--color-surface);--select-border-color:var(--color-border-input);--select-height:var(--control-height-base);--select-border-radius:var(--control-radius);--select-focus-border-color:var(--primary-color);--select-dropdown-background-color:var(--color-background);--select-dropdown-padding-vertical:var(--space-1);--select-dropdown-padding-horizontal:var(--space-1);--select-dropdown-item-padding:var(--space-1-5) var(--space-2);--select-dropdown-item-radius:var(--radius-base);--select-dropdown-group-item-color:var(--secondary-font-color);--select-dropdown-group-item-font-weight:var(--font-weight-medium);--select-multiple-selection-vertical-padding:calc(var(--space-1));--select-multiple-item-padding:0 var(--space-1);--select-multiple-item-border-radius:var(--radius-base);--select-multiple-item-background-color:var(--color-soft-control-background)}[data-radius=full]{--select-border-radius:var(--radius-full)}.uui-select{box-sizing:border-box;margin:0;padding:0;color:var(--default-font-color);font-size:var(--default-font-size);font-variant:var(--default-font-variant);line-height:var(--default-line-height);list-style:none;font-feature-settings:var(--default-font-feature-settings);position:relative;display:inline-flex;align-items:center;column-gap:var(--control-inner-gap);border-radius:var(--select-border-radius);background-color:var(--select-background-color);padding:var(--control-padding-y) var(--control-padding-x);outline:0;width:var(--select-width);cursor:pointer;height:var(--select-height);line-height:var(--select-height)}.uui-select-variant-surface{border:1px solid var(--select-border-color);background-color:var(--select-background-color)}.uui-select-variant-surface.uui-select-focused,.uui-select-variant-surface.uui-select-open{--select-border-color:var(--select-focus-border-color)}.has-error .uui-select-variant-surface,.validate-error .uui-select-variant-surface{--select-border-color:var(--error-color)}.uui-select-variant-soft{--select-background-color:var(--color-soft-control-background);--select-hover-background-color:var(--color-soft-control-hover-background);--select-multiple-item-background-color:var(--color-background);transition:background var(--animation-time) linear}.uui-select-variant-soft.uui-select-focused,.uui-select-variant-soft.uui-select-open{border-color:var(--select-focus-border-color);outline:0}.has-error .uui-select-variant-soft,.validate-error .uui-select-variant-soft{border:1px solid var(--error-color)}.uui-select-variant-underline{border-bottom:1px solid var(--select-border-color);border-radius:0}.has-error .uui-select-variant-underline,.validate-error .uui-select-variant-underline{border-bottom:1px solid var(--error-color)}.uui-select-variant-borderless{background-color:transparent}.uui-select-variant-borderless.uui-select-single .uui-select-selection .uui-select-selection-item,.uui-select-variant-borderless.uui-select-single .uui-select-selection .uui-select-selection-placeholder{position:static;transform:none}.uui-select-variant-borderless.uui-select-focused,.uui-select-variant-borderless.uui-select-open{outline:0}.uui-select-disabled{opacity:var(--disabled-opacity)}.uui-select-selection-item{flex:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}@media all and (-ms-high-contrast:none){.uui-select-selection-item,.uui-select-selection-item ::-ms-backdrop{flex:auto}}.uui-select-selection-placeholder{position:absolute;width:100%;top:50%;transform:translateY(-50%);overflow:hidden;color:var(--placeholder-color);white-space:nowrap;text-overflow:ellipsis}@media all and (-ms-high-contrast:none){.uui-select-selection-placeholder,.uui-select-selection-placeholder ::-ms-backdrop{flex:auto}}.uui-select-label{display:inline-flex;align-self:flex-start;align-items:center;font-size:var(--default-font-size);line-height:var(--select-height);color:var(--control-label-color);font-weight:var(--control-label-font-weight);flex-shrink:0}.uui-select-label:where(.uui-select-label-colon)::after{content:':'}.uui-select-label-required::before{display:inline-flex;margin-right:0;color:var(--required-color);font-size:var(--default-font-size);font-family:var(--required-font-family);line-height:1;content:'*'}.uui-select-arrow,.uui-select-clear,.uui-select-prefix{width:var(--icon-width-base);display:inline-flex;align-items:center;justify-content:center}.uui-select-arrow>i,.uui-select-clear>i,.uui-select-prefix>i{font-size:var(--icon-font-size);color:var(--icon-button-color)}.uui-select-arrow{-webkit-user-select:none;user-select:none;transition:transform .3s;pointer-events:none}.uui-select-disabled .uui-select-arrow{cursor:not-allowed}.uui-select-open:not(.uui-select-filterable):not(.uui-select-loading):not(.uui-select-arrow-no-rotate) .uui-select-arrow{transform:rotate(180deg)}.uui-select-prefix{pointer-events:none;transition:transform .3s}.uui-select-clear{text-rendering:auto;display:none}.uui-select-clear>i{width:auto;height:auto;line-height:1;border-radius:var(--icon-button-radius);padding:var(--icon-button-padding);color:var(--icon-button-color);background-color:transparent}.uui-select-clear:hover>i{color:var(--icon-button-hover-color);background-color:var(--icon-button-hover-background-color)}.uui-select-with-clear:hover .uui-select-clear{display:inline-flex}.uui-select-with-clear:hover .uui-select-arrow{display:none}.uui-select-single .uui-select-selection{position:relative;flex:1 1 auto;width:calc(100% - var(--icon-width-base) - var(--control-padding-x));display:block;background-color:transparent;align-items:center;transition:all var(--animation-time) ease-in-out;display:flex;height:calc(var(--select-height) - 2px);padding:0}.uui-select-single .uui-select-selection input{cursor:pointer}.uui-select-disabled.uui-select-single .uui-select-selection{cursor:not-allowed}.uui-select-disabled.uui-select-single .uui-select-selection input{cursor:not-allowed}.uui-select-filterable.uui-select-single .uui-select-selection{cursor:text}.uui-select-filterable.uui-select-single .uui-select-selection input{cursor:auto}.uui-select-single .uui-select-selection .uui-select-selection-search-input{margin:0;padding:0;background:0 0;border:none;outline:0;appearance:none;flex:1}.uui-select-single .uui-select-selection .uui-select-selection-search-input::-webkit-search-cancel-button{display:none;appearance:none}.uui-select-single .uui-select-selection .uui-select-selection-search{position:absolute;inset:0}.uui-select-single .uui-select-selection .uui-select-selection-search-input{height:100%;width:100%}.uui-select-single .uui-select-selection .uui-select-selection-item,.uui-select-single .uui-select-selection .uui-select-selection-placeholder{padding:0;transition:all var(--animation-time)}.uui-select-single .uui-select-selection .uui-select-selection-item{position:absolute;width:100%;top:50%;transform:translateY(-50%);-webkit-user-select:none;user-select:none}.uui-select-single .uui-select-selection .uui-select-selection-placeholder{pointer-events:none}.uui-select-single .uui-select-selection::after{line-height:calc(var(--select-height) - 2px)}.uui-select-single.uui-select-open .uui-select-selection-item{color:var(--placeholder-color)}.uui-select-single.uui-select-small{--select-height:var(--control-height-small)}.uui-select-single.uui-select-small .uui-select-selection .uui-select-selection-item,.uui-select-single.uui-select-small .uui-select-selection .uui-select-selection-placeholder,.uui-select-single.uui-select-small .uui-select-selection .uui-select-selection-search,.uui-select-single.uui-select-small .uui-select-selection::after{font-size:var(--font-size-xs)}.uui-select-single.uui-select-large{--select-height:var(--control-height-large)}.uui-select-multiple{height:auto;min-height:var(--select-height);--select-multiple-item-height:calc(var(--select-height) - var(--select-multiple-selection-vertical-padding) * 2 - 2px)}.uui-select-multiple .uui-select-selection{position:relative;flex:1 1 auto;width:calc(100% - var(--icon-width-base) - var(--control-padding-x));display:block;background-color:transparent;transition:all var(--animation-time) ease-in-out;display:flex;gap:var(--space-1);flex-wrap:wrap;align-items:center;padding:var(--select-multiple-selection-vertical-padding) 0}.uui-select-multiple .uui-select-selection input{cursor:pointer}.uui-select-disabled.uui-select-multiple .uui-select-selection{cursor:not-allowed}.uui-select-disabled.uui-select-multiple .uui-select-selection input{cursor:not-allowed}.uui-select-filterable.uui-select-multiple .uui-select-selection{cursor:text}.uui-select-filterable.uui-select-multiple .uui-select-selection input{cursor:auto}.uui-select-multiple .uui-select-selection .uui-select-selection-search-input{margin:0;padding:0;background:0 0;border:none;outline:0;appearance:none;flex:1}.uui-select-multiple .uui-select-selection .uui-select-selection-search-input::-webkit-search-cancel-button{display:none;appearance:none}.uui-select-filterable.uui-select-multiple .uui-select-selection{cursor:text}.uui-select-multiple:has(.uui-select-selection-item){padding-left:var(--select-multiple-selection-vertical-padding)}.uui-select-multiple .uui-select-selection-item{position:relative;display:inline-flex;align-items:center;flex:none;gap:var(--space-1);box-sizing:border-box;max-width:100%;height:var(--select-multiple-item-height);padding:var(--select-multiple-item-padding);line-height:var(--select-multiple-item-height);background:var(--select-multiple-item-background-color);border:none;border-radius:var(--select-multiple-item-border-radius);cursor:default;transition:font-size .3s,line-height .3s,height .3s;-webkit-user-select:none;user-select:none}.uui-select-multiple .uui-select-selection-item-content{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.uui-select-multiple .uui-select-selection-item-remove{display:flex;align-items:center;color:var(--icon-button-color);font-weight:700;font-size:var(--font-size-sm);line-height:1;height:var(--font-size-sm);width:var(--font-size-sm);cursor:pointer;border-radius:var(--radius-full)}.uui-select-multiple .uui-select-selection-item-remove:hover{color:var(--icon-button-hover-color)}.uui-select-multiple .uui-select-selection-search{position:relative;margin-left:0;display:flex}.uui-select-multiple .uui-select-selection-search-input,.uui-select-multiple .uui-select-selection-search-mirror{font-family:var(--default-font-family);line-height:var(--select-multiple-item-height);transition:all .3s}.uui-select-multiple .uui-select-selection-search-input{width:100%;min-width:4.1px}.uui-select-multiple .uui-select-selection-search-mirror{position:absolute;top:0;left:0;z-index:999;white-space:nowrap;visibility:hidden}.uui-select-multiple .uui-select-selection-placeholder{position:absolute;top:50%;right:0;left:0;transform:translateY(-50%);transition:all .3s}.uui-select-multiple.uui-select-small{--select-height:var(--control-height-small);--select-multiple-item-height:calc(var(--select-height) - var(--select-multiple-selection-vertical-padding) * 2 - 2px)}.uui-select-multiple.uui-select-small .uui-select-selection-search-input,.uui-select-multiple.uui-select-small .uui-select-selection-search-mirror{font-size:var(--font-size-xs)}.uui-select-multiple.uui-select-small .uui-select-selection-item{font-size:var(--font-size-xs)}.uui-select-multiple.uui-select-small .uui-select-selection-placeholder{font-size:var(--font-size-xs)}.uui-select-multiple.uui-select-large{--select-height:var(--control-height-large);--select-multiple-item-height:calc(var(--select-height) - var(--select-multiple-selection-vertical-padding) * 2 - 2px)}.uui-select-selection-tooltip{display:flex;gap:var(--space-1);max-height:calc(var(--select-multiple-item-height) * 5 + var(--space-1) * 4);flex-wrap:wrap;overflow-y:auto;--select-multiple-item-height:calc(var(--select-height) - var(--select-multiple-selection-vertical-padding) * 2 - 2px)}.uui-select-selection-tooltip .uui-select-selection-item{position:relative;display:inline-flex;align-items:center;flex:none;gap:var(--space-1);box-sizing:border-box;max-width:100%;height:var(--select-multiple-item-height);padding:var(--select-multiple-item-padding);line-height:var(--select-multiple-item-height);background:var(--select-multiple-item-background-color);border:none;border-radius:var(--select-multiple-item-border-radius);cursor:default;transition:font-size .3s,line-height .3s,height .3s;-webkit-user-select:none;user-select:none}.uui-select-selection-tooltip .uui-select-selection-item-content{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.uui-select-selection-tooltip .uui-select-selection-item-remove{display:flex;align-items:center;color:var(--icon-button-color);font-weight:700;font-size:var(--font-size-sm);line-height:1;height:var(--font-size-sm);width:var(--font-size-sm);cursor:pointer;border-radius:var(--radius-full)}.uui-select-selection-tooltip .uui-select-selection-item-remove:hover{color:var(--icon-button-hover-color)}.uui-select-disabled .uui-select-selection-item-remove{display:none}.uui-select-large{--select-border-radius:var(--control-radius-large);--select-height:var(--control-height-large)}.uui-select-small{--select-border-radius:var(--control-radius-small);--select-height:var(--control-height-small);--icon-button-padding:calc(var(--space-1) * 0.75)}.uui-select-small .uui-select-label{font-size:var(--font-size-xs)}.uui-select-rtl,[data-direction=rtl] .uui-select,[dir=rtl] .uui-select{direction:rtl}.uui-select-rtl.uui-select-multiple:has(.uui-select-selection-item),[data-direction=rtl] .uui-select.uui-select-multiple:has(.uui-select-selection-item),[dir=rtl] .uui-select.uui-select-multiple:has(.uui-select-selection-item){padding-left:var(--control-padding-x);padding-right:var(--select-multiple-selection-vertical-padding)}.uui-select-rtl:has(.uui-select-label),[data-direction=rtl] .uui-select:has(.uui-select-label),[dir=rtl] .uui-select:has(.uui-select-label){padding-right:0;padding-left:var(--control-padding-r)}.uui-select-dropdown{margin:0;padding:0;color:var(--default-font-color);font-variant:var(--default-font-variant);line-height:var(--default-line-height);list-style:none;font-feature-settings:var(--default-font-feature-settings);position:absolute;top:-9999px;left:-9999px;z-index:var(--zindex-dropdown);box-sizing:border-box;padding:var(--select-dropdown-padding-vertical) 0;overflow:hidden;font-size:var(--default-font-size);font-variant:initial;background-color:var(--select-dropdown-background-color);border-radius:var(--dropdown-border-radius);outline:0;box-shadow:var(--dropdown-shadow);border:1px solid var(--color-border-split)}.uui-select-dropdown-hidden{display:none}.uui-select-dropdown-operate{padding:0 var(--control-padding-x) var(--space-2);border-bottom:1px solid var(--color-border-split)}.uui-select-dropdown-list{padding:0 var(--select-dropdown-padding-horizontal)}.uui-select-dropdown-rtl,[data-direction=rtl] .uui-select-dropdown,[dir=rtl] .uui-select-dropdown{direction:rtl}.uui-select-item-empty{display:flex;justify-content:center;align-items:center;color:var(--color-disabled-font)}.uui-select-item{position:relative;display:flex;align-items:center;padding:var(--select-dropdown-item-padding);color:var(--default-font-color);font-weight:400;font-size:var(--default-font-size);border-radius:var(--select-dropdown-item-radius);line-height:var(--line-height-5);cursor:pointer}.uui-select-item-group{color:var(--select-dropdown-group-item-color);font-weight:var(--select-dropdown-group-item-font-weight);padding:var(--select-dropdown-item-padding);cursor:default}.uui-select-item-option{display:inline-flex}.uui-select-item-option-content{flex:auto;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.uui-select-item-option-state{flex-grow:0;flex-shrink:0;width:var(--icon-font-size)}.uui-select-item-option-selected:not(.uui-select-item-option-disabled){color:var(--dropdown-item-selected-color)}.uui-select-item-option-active:not(.uui-select-item-option-disabled){background-color:var(--dropdown-item-hover-background-color);color:var(--dropdown-item-hover-font-color)}.uui-select-item-option-selected:not(.uui-select-item-option-disabled).uui-select-item-option-active{background-color:var(--dropdown-item-hover-background-color);color:var(--dropdown-item-selected-color)}.uui-select-item-option-selected:not(.uui-select-item-option-disabled).uui-select-item-option-active .uui-select-dropdown-item-option-state{color:var(--dropdown-item-selected-color)}.uui-select-item-option-disabled{opacity:var(--disabled-opacity);cursor:not-allowed}.uui-select-item-small{font-size:var(--font-size-xs)}.uui-cascader{--cascader-width:100%;width:var(--cascader-width);cursor:pointer}.uui-cascader-custom{display:inline;border:none;box-shadow:none}.uui-cascader-custom:hover{border:none;box-shadow:none;background-color:transparent}.uui-cascader-custom .uui-select-arrow{display:none}.uui-cascader-custom .uui-select-clear{display:none}.uui-cascader-menu-wrap{--cascader-dropdown-menu-padding-vertical:var(--space-1);--cascader-dropdown-border-radius:var(--dropdown-border-radius);--cascader-dropdown-menu-min-width:120px;--cascader-dropdown-item-height:var(--space-6);--cascader-dropdown-menu-padding-horizontal:var(--space-1);--cascader-dropdown-item-padding-horizontal:var(--space-6);--cascader-dropdown-item-hover-background-color:var(--dropdown-item-hover-background-color);--cascader-dropdown-item-selected-color:var(--default-font-color);--cascader-dropdown-item-active-color:var(--primary-color);--cascader-dropdown-item-active-background-color:transparent;--cascader-dropdown-item-radius:var(--radius-base);font-size:var(--default-font-size);overflow:hidden;background-color:var(--color-background);border-radius:var(--cascader-dropdown-border-radius);box-shadow:var(--dropdown-shadow);padding:var(--cascader-dropdown-menu-padding-vertical) 0;white-space:nowrap;position:relative;display:flex;align-items:flex-start;z-index:var(--zindex-dropdown)}.uui-cascader-menu{display:block;list-style:none;margin:0;padding:0 var(--cascader-dropdown-menu-padding-horizontal);min-width:var(--cascader-dropdown-menu-min-width);height:calc(var(--cascader-dropdown-item-height) * 6);overflow:auto;-ms-overflow-style:-ms-autohiding-scrollbar;position:relative}.uui-cascader-menu-not-found{position:absolute;top:50%;left:0;width:100%;transform:translateY(-50%);text-align:center;color:var(--color-disabled-font)}.uui-cascader-menu:not(:last-child){border-right:1px solid var(--color-border-split)}.uui-cascader-menu:first-child{border-top-left-radius:var(--dropdown-border-radius);border-bottom-left-radius:var(--dropdown-border-radius)}.uui-cascader-menu:last-child{border-top-right-radius:var(--dropdown-border-radius);border-bottom-right-radius:var(--dropdown-border-radius)}.uui-cascader-menu:only-child{border-radius:var(--dropdown-border-radius)}.uui-cascader-menu-item{display:flex;height:var(--cascader-dropdown-item-height);line-height:var(--cascader-dropdown-item-height);padding:0 var(--cascader-dropdown-item-padding-horizontal);border-radius:var(--cascader-dropdown-item-radius);cursor:pointer;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:all .3s ease;position:relative}.uui-cascader-menu-item:hover{background-color:var(--cascader-dropdown-item-hover-background-color);color:var(--cascader-dropdown-item-hover-font-color)}.uui-cascader-menu-item-disabled{cursor:not-allowed;color:var(--color-disabled-font);background-color:var(--control-disabled-background-color)}.uui-cascader-menu-item-disabled:hover{background-color:var(--control-disabled-background-color);color:var(--color-disabled-font)}.uui-cascader-menu-item-disabled .uui-checkbox-input{cursor:not-allowed}.uui-cascader-menu-item-active:not(.uui-cascader-menu-item-disabled){font-weight:600;color:var(--cascader-dropdown-item-active-color);background-color:var(--cascader-dropdown-item-active-background-color)}.uui-cascader-menu-item-active:not(.uui-cascader-menu-item-disabled):hover{background-color:var(--cascader-dropdown-item-hover-background-color)}.uui-cascader-menu-item-selected{color:var(--cascader-dropdown-item-selected-color)}.uui-cascader-menu-item-checkbox,.uui-cascader-menu-item-checked-icon{font-size:var(--default-font-size);line-height:1;position:absolute;top:50%;transform:translateY(-50%);left:var(--space-1)}.uui-cascader-menu-item-not-found{height:100%;background-color:var(--color-background);cursor:default}.uui-cascader-menu-item-not-found:hover{background-color:var(--color-background)}.uui-cascader-menu-item-suffix{font-size:var(--control-icon-font-size);line-height:1;position:absolute;top:50%;transform:translateY(-50%);right:var(--space-1)}.uui-cascader-menu-item-keyword{color:var(--highlight-color)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root,[data-theme-color]{--primary-color:var(--primary-9)}.uui-dropdown{--dropdown-
|
|
1
|
+
:root,[data-theme-color]{--primary-color:var(--primary-9)}.uui-dropdown{--dropdown-trigger-arrow-margin-left:var(--space-1);--dropdown-menu-min-width:128px;--dropdown-menu-padding:var(--space-1);--dropdown-menu-item-padding:var(--space-1-5) var(--space-2);--dropdown-menu-item-font-size:var(--default-font-size);--dropdown-menu-item-line-height:var(--line-height-5);--dropdown-menu-item-color:var(--default-font-color);--dropdown-menu-item-icon-color:var(--default-font-color);--dropdown-menu-group-font-color:var(--secondary-font-color);--dropdown-menu-item-radius:var(--radius-sm)}.uui-dropdown{box-sizing:border-box;margin:0;padding:0;color:var(--default-font-color);font-size:var(--default-font-size);font-variant:var(--default-font-variant);line-height:var(--default-line-height);list-style:none;font-feature-settings:var(--default-font-feature-settings);position:absolute;z-index:var(--zindex-dropdown);width:auto}.uui-dropdown-user-select-none{-webkit-user-select:none;user-select:none}.uui-dropdown-menu{position:relative;margin:0;padding:var(--dropdown-menu-padding);list-style:none;min-width:var(--dropdown-menu-min-width);background:var(--color-background);background-clip:padding-box;box-shadow:var(--dropdown-shadow);border:1px solid var(--color-border-split);border-radius:var(--dropdown-border-radius)}.uui-dropdown-menu-item-group-title{padding:var(--dropdown-menu-item-padding);color:var(--dropdown-menu-group-font-color);transition:all .3s}.uui-dropdown-menu-submenu-popup{position:absolute;z-index:var(--zindex-dropdown)}.uui-dropdown-menu-submenu-popup>.uui-dropdown-menu{list-style:none;padding:var(--dropdown-menu-padding)}.uui-dropdown-menu-item,.uui-dropdown-menu-submenu-title{margin:0;padding:var(--dropdown-menu-item-padding);font-weight:400;font-size:var(--dropdown-menu-item-font-size);line-height:var(--dropdown-menu-item-line-height);display:flex;justify-content:space-between;align-items:center;white-space:nowrap;cursor:pointer;transition:all .3s;border-radius:var(--dropdown-menu-item-radius)}.uui-dropdown-menu-item .uui-icon,.uui-dropdown-menu-submenu-title .uui-icon{font-size:var(--icon-font-size)}.uui-dropdown-menu-item>a,.uui-dropdown-menu-item>span,.uui-dropdown-menu-submenu-title>a,.uui-dropdown-menu-submenu-title>span{color:var(--dropdown-menu-item-color)}.uui-dropdown-menu-item>a:hover,.uui-dropdown-menu-submenu-title>a:hover{text-decoration:none}.uui-dropdown-menu-item-selected,.uui-dropdown-menu-item-selected>a,.uui-dropdown-menu-submenu-title-selected,.uui-dropdown-menu-submenu-title-selected>a{color:var(--primary-color)}.uui-dropdown-menu-item:hover,.uui-dropdown-menu-submenu-title:hover{background-color:var(--dropdown-item-hover-background-color)}.uui-dropdown-menu-item-divider,.uui-dropdown-menu-submenu-title-divider{height:1px;margin:4px 0;overflow:hidden;line-height:0;background-color:var(--color-border-split)}.uui-dropdown-menu-item .uui-dropdown-menu-submenu-arrow,.uui-dropdown-menu-submenu-title .uui-dropdown-menu-submenu-arrow{flex:0 0 var(--icon-width-base);font-size:var(--icon-font-size);line-height:var(--dropdown-menu-item-line-height)}.uui-dropdown-menu-item .uui-dropdown-menu-submenu-arrow .uui-icon,.uui-dropdown-menu-submenu-title .uui-dropdown-menu-submenu-arrow .uui-icon{color:var(--dropdown-menu-item-icon-color);font-style:normal}.uui-dropdown-menu-item[data-color=red]:not(.uui-dropdown-menu-item-disabled),.uui-dropdown-menu-item[data-color=red]:not(.uui-dropdown-menu-submenu-title-disabled),.uui-dropdown-menu-submenu-title[data-color=red]:not(.uui-dropdown-menu-item-disabled),.uui-dropdown-menu-submenu-title[data-color=red]:not(.uui-dropdown-menu-submenu-title-disabled){--dropdown-menu-item-color:var(--error-color);color:var(--error-color)}.uui-dropdown-menu-item-disabled,.uui-dropdown-menu-submenu-title-disabled{opacity:var(--disabled-opacity);cursor:not-allowed}.uui-dropdown-menu-item-disabled:hover,.uui-dropdown-menu-submenu-title-disabled:hover{background-color:transparent}.uui-dropdown-menu-item-group-list{margin:0;padding:0;list-style:none}.uui-dropdown-menu-submenu-vertical{position:relative}.uui-dropdown-menu-submenu-vertical>.uui-dropdown-menu{position:absolute;top:0;left:100%;min-width:100%;margin-left:4px;transform-origin:0 0}.uui-dropdown-container{margin:0;padding:var(--dropdown-menu-padding);background:var(--color-background);background-clip:padding-box;box-shadow:var(--dropdown-shadow);border-radius:var(--dropdown-border-radius);overflow:auto}a.uui-dropdown-trigger{display:inline-flex;align-items:center}.uui-dropdown-trigger-arrow{margin-left:var(--dropdown-trigger-arrow-margin-left);transition:all var(--animation-time) ease-in-out}.uui-dropdown-trigger-open .uui-dropdown-trigger-arrow{transform:rotate(180deg)}
|