@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.
Files changed (81) hide show
  1. package/es/components/AutoComplete/AutoComplete.vue.d.ts +9 -0
  2. package/es/components/AutoComplete/index.d.ts +18 -0
  3. package/es/components/ColorPicker/ColorPicker.vue.d.ts +9 -0
  4. package/es/components/ColorPicker/index.d.ts +18 -0
  5. package/es/components/Dropdown/DropdownMenu.mjs +0 -1
  6. package/es/components/Dropdown/DropdownMenu.mjs.map +1 -1
  7. package/es/components/Input/Input.d.ts +6 -0
  8. package/es/components/Input/Input.mjs +1 -0
  9. package/es/components/Input/Input.mjs.map +1 -1
  10. package/es/components/Input/Input.type.d.ts +3 -0
  11. package/es/components/Input/Input.type.mjs +3 -0
  12. package/es/components/Input/Input.type.mjs.map +1 -1
  13. package/es/components/Input/index.d.ts +9 -0
  14. package/es/components/Pagination/Options.d.ts +8 -0
  15. package/es/components/Pagination/Options.mjs +6 -1
  16. package/es/components/Pagination/Options.mjs.map +1 -1
  17. package/es/components/Pagination/Pagination.d.ts +8 -0
  18. package/es/components/Pagination/Pagination.mjs +2 -0
  19. package/es/components/Pagination/Pagination.mjs.map +1 -1
  20. package/es/components/Pagination/index.d.ts +16 -0
  21. package/es/components/Table/Table.vue.d.ts +16 -0
  22. package/es/components/Transfer/Transfer.vue.d.ts +27 -0
  23. package/es/components/Transfer/TransferList.vue.d.ts +9 -0
  24. package/es/components/Transfer/index.d.ts +72 -0
  25. package/lib/components/AutoComplete/AutoComplete.vue.d.ts +9 -0
  26. package/lib/components/AutoComplete/index.d.ts +18 -0
  27. package/lib/components/ColorPicker/ColorPicker.vue.d.ts +9 -0
  28. package/lib/components/ColorPicker/index.d.ts +18 -0
  29. package/lib/components/Dropdown/DropdownMenu.js +0 -1
  30. package/lib/components/Dropdown/DropdownMenu.js.map +1 -1
  31. package/lib/components/Input/Input.d.ts +6 -0
  32. package/lib/components/Input/Input.js +1 -0
  33. package/lib/components/Input/Input.js.map +1 -1
  34. package/lib/components/Input/Input.type.d.ts +3 -0
  35. package/lib/components/Input/Input.type.js +3 -0
  36. package/lib/components/Input/Input.type.js.map +1 -1
  37. package/lib/components/Input/index.d.ts +9 -0
  38. package/lib/components/Pagination/Options.d.ts +8 -0
  39. package/lib/components/Pagination/Options.js +6 -1
  40. package/lib/components/Pagination/Options.js.map +1 -1
  41. package/lib/components/Pagination/Pagination.d.ts +8 -0
  42. package/lib/components/Pagination/Pagination.js +2 -0
  43. package/lib/components/Pagination/Pagination.js.map +1 -1
  44. package/lib/components/Pagination/index.d.ts +16 -0
  45. package/lib/components/Table/Table.vue.d.ts +16 -0
  46. package/lib/components/Transfer/Transfer.vue.d.ts +27 -0
  47. package/lib/components/Transfer/TransferList.vue.d.ts +9 -0
  48. package/lib/components/Transfer/index.d.ts +72 -0
  49. package/package.json +1 -1
  50. package/styles/components/cascader/index.css +1 -1
  51. package/styles/components/dropdown/index.css +1 -1
  52. package/styles/components/dropdown/index.less +12 -26
  53. package/styles/components/dropdown/var.less +6 -19
  54. package/styles/components/form/index.css +1 -1
  55. package/styles/components/form/index.less +25 -12
  56. package/styles/components/pagination/index.css +1 -1
  57. package/styles/components/pagination/index.less +41 -178
  58. package/styles/components/pagination/var.less +8 -21
  59. package/styles/components/select/index.css +1 -1
  60. package/styles/components/select/index.less +3 -10
  61. package/styles/components/select/var.less +1 -3
  62. package/styles/index.css +1 -1
  63. package/types/components/AutoComplete/AutoComplete.vue.d.ts +9 -0
  64. package/types/components/AutoComplete/index.d.ts +18 -0
  65. package/types/components/ColorPicker/ColorPicker.vue.d.ts +9 -0
  66. package/types/components/ColorPicker/index.d.ts +18 -0
  67. package/types/components/Input/Input.d.ts +6 -0
  68. package/types/components/Input/Input.type.d.ts +3 -0
  69. package/types/components/Input/index.d.ts +9 -0
  70. package/types/components/Pagination/Options.d.ts +8 -0
  71. package/types/components/Pagination/Pagination.d.ts +8 -0
  72. package/types/components/Pagination/index.d.ts +16 -0
  73. package/types/components/Table/Table.vue.d.ts +16 -0
  74. package/types/components/Transfer/Transfer.vue.d.ts +27 -0
  75. package/types/components/Transfer/TransferList.vue.d.ts +9 -0
  76. package/types/components/Transfer/index.d.ts +72 -0
  77. package/uxd-ui.css +1 -1
  78. package/uxd-ui.esm.min.mjs +3 -3
  79. package/uxd-ui.esm.mjs +13 -3
  80. package/uxd-ui.umd.js +13 -3
  81. package/uxd-ui.umd.min.js +3 -3
@@ -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;