lew-ui 2.4.12 → 2.4.13
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/dist/components/flex/src/LewFlex.vue.d.ts +1 -1
- package/dist/components/form/src/LewFormItem.vue.d.ts +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/input-number/src/LewInputNumber.vue.d.ts +3 -3
- package/dist/components/select-multiple/src/LewSelectMultiple.vue.d.ts +5 -3
- package/dist/components/select-multiple/src/props.d.ts +3 -1
- package/dist/components/slider/src/LewSlider.vue.d.ts +112 -1
- package/dist/components/slider/src/props.d.ts +61 -1
- package/dist/components/slider-range/src/LewSliderRange.vue.d.ts +108 -1
- package/dist/components/slider-range/src/props.d.ts +61 -1
- package/dist/docs/docs/slider/api/index.d.ts +2 -0
- package/dist/docs/docs/slider/api/model.d.ts +12 -0
- package/dist/docs/docs/slider/api/props.d.ts +12 -0
- package/dist/docs/docs/slider/demo/index.d.ts +14 -0
- package/dist/docs/docs/slider/index.d.ts +3 -0
- package/dist/docs/docs/slider-range/api/index.d.ts +2 -0
- package/dist/docs/docs/slider-range/api/model.d.ts +12 -0
- package/dist/docs/docs/slider-range/api/props.d.ts +12 -0
- package/dist/docs/docs/slider-range/demo/index.d.ts +14 -0
- package/dist/docs/docs/slider-range/index.d.ts +3 -0
- package/dist/docs/views/form-engine/schema/compoments-menus.d.ts +122 -1
- package/dist/docs/views/form-engine/schema/components/input-number.d.ts +14 -1
- package/dist/docs/views/form-engine/schema/components/slider-range.d.ts +41 -0
- package/dist/docs/views/form-engine/schema/components/slider.d.ts +41 -0
- package/dist/index.mjs +1068 -240
- package/dist/index.umd.js +3 -3
- package/dist/style.css +1 -1
- package/dist/utils/index.d.ts +16 -0
- package/package.json +1 -1
|
@@ -68,6 +68,7 @@ export declare const componentsMenusSchema: ({
|
|
|
68
68
|
align: string;
|
|
69
69
|
showCount?: undefined;
|
|
70
70
|
maxLength?: undefined;
|
|
71
|
+
step?: undefined;
|
|
71
72
|
width?: undefined;
|
|
72
73
|
round?: undefined;
|
|
73
74
|
direction?: undefined;
|
|
@@ -133,6 +134,7 @@ export declare const componentsMenusSchema: ({
|
|
|
133
134
|
maxLength: number;
|
|
134
135
|
type?: undefined;
|
|
135
136
|
align?: undefined;
|
|
137
|
+
step?: undefined;
|
|
136
138
|
width?: undefined;
|
|
137
139
|
round?: undefined;
|
|
138
140
|
direction?: undefined;
|
|
@@ -168,9 +170,9 @@ export declare const componentsMenusSchema: ({
|
|
|
168
170
|
label: string;
|
|
169
171
|
value: string;
|
|
170
172
|
}[];
|
|
173
|
+
align?: undefined;
|
|
171
174
|
min?: undefined;
|
|
172
175
|
max?: undefined;
|
|
173
|
-
align?: undefined;
|
|
174
176
|
placeholder?: undefined;
|
|
175
177
|
};
|
|
176
178
|
} | {
|
|
@@ -179,6 +181,19 @@ export declare const componentsMenusSchema: ({
|
|
|
179
181
|
componentWidth: number;
|
|
180
182
|
field: string;
|
|
181
183
|
props?: undefined;
|
|
184
|
+
} | {
|
|
185
|
+
label: string;
|
|
186
|
+
as: string;
|
|
187
|
+
componentWidth: number;
|
|
188
|
+
props: {
|
|
189
|
+
align: string;
|
|
190
|
+
itemWidth?: undefined;
|
|
191
|
+
options?: undefined;
|
|
192
|
+
min?: undefined;
|
|
193
|
+
max?: undefined;
|
|
194
|
+
placeholder?: undefined;
|
|
195
|
+
};
|
|
196
|
+
field: string;
|
|
182
197
|
} | {
|
|
183
198
|
label: string;
|
|
184
199
|
as: string;
|
|
@@ -195,6 +210,7 @@ export declare const componentsMenusSchema: ({
|
|
|
195
210
|
})[];
|
|
196
211
|
props: {
|
|
197
212
|
align: string;
|
|
213
|
+
step: number;
|
|
198
214
|
width: number;
|
|
199
215
|
clearable?: undefined;
|
|
200
216
|
type?: undefined;
|
|
@@ -265,6 +281,7 @@ export declare const componentsMenusSchema: ({
|
|
|
265
281
|
align?: undefined;
|
|
266
282
|
showCount?: undefined;
|
|
267
283
|
maxLength?: undefined;
|
|
284
|
+
step?: undefined;
|
|
268
285
|
width?: undefined;
|
|
269
286
|
label?: undefined;
|
|
270
287
|
trigger?: undefined;
|
|
@@ -298,6 +315,7 @@ export declare const componentsMenusSchema: ({
|
|
|
298
315
|
align?: undefined;
|
|
299
316
|
showCount?: undefined;
|
|
300
317
|
maxLength?: undefined;
|
|
318
|
+
step?: undefined;
|
|
301
319
|
width?: undefined;
|
|
302
320
|
round?: undefined;
|
|
303
321
|
direction?: undefined;
|
|
@@ -361,6 +379,7 @@ export declare const componentsMenusSchema: ({
|
|
|
361
379
|
align?: undefined;
|
|
362
380
|
showCount?: undefined;
|
|
363
381
|
maxLength?: undefined;
|
|
382
|
+
step?: undefined;
|
|
364
383
|
width?: undefined;
|
|
365
384
|
round?: undefined;
|
|
366
385
|
label?: undefined;
|
|
@@ -423,6 +442,7 @@ export declare const componentsMenusSchema: ({
|
|
|
423
442
|
type?: undefined;
|
|
424
443
|
showCount?: undefined;
|
|
425
444
|
maxLength?: undefined;
|
|
445
|
+
step?: undefined;
|
|
426
446
|
width?: undefined;
|
|
427
447
|
round?: undefined;
|
|
428
448
|
direction?: undefined;
|
|
@@ -488,6 +508,7 @@ export declare const componentsMenusSchema: ({
|
|
|
488
508
|
type?: undefined;
|
|
489
509
|
showCount?: undefined;
|
|
490
510
|
maxLength?: undefined;
|
|
511
|
+
step?: undefined;
|
|
491
512
|
width?: undefined;
|
|
492
513
|
round?: undefined;
|
|
493
514
|
direction?: undefined;
|
|
@@ -538,6 +559,7 @@ export declare const componentsMenusSchema: ({
|
|
|
538
559
|
align?: undefined;
|
|
539
560
|
showCount?: undefined;
|
|
540
561
|
maxLength?: undefined;
|
|
562
|
+
step?: undefined;
|
|
541
563
|
width?: undefined;
|
|
542
564
|
round?: undefined;
|
|
543
565
|
direction?: undefined;
|
|
@@ -608,6 +630,7 @@ export declare const componentsMenusSchema: ({
|
|
|
608
630
|
align?: undefined;
|
|
609
631
|
showCount?: undefined;
|
|
610
632
|
maxLength?: undefined;
|
|
633
|
+
step?: undefined;
|
|
611
634
|
width?: undefined;
|
|
612
635
|
round?: undefined;
|
|
613
636
|
direction?: undefined;
|
|
@@ -644,6 +667,7 @@ export declare const componentsMenusSchema: ({
|
|
|
644
667
|
align?: undefined;
|
|
645
668
|
showCount?: undefined;
|
|
646
669
|
maxLength?: undefined;
|
|
670
|
+
step?: undefined;
|
|
647
671
|
width?: undefined;
|
|
648
672
|
round?: undefined;
|
|
649
673
|
direction?: undefined;
|
|
@@ -673,6 +697,7 @@ export declare const componentsMenusSchema: ({
|
|
|
673
697
|
align?: undefined;
|
|
674
698
|
showCount?: undefined;
|
|
675
699
|
maxLength?: undefined;
|
|
700
|
+
step?: undefined;
|
|
676
701
|
width?: undefined;
|
|
677
702
|
round?: undefined;
|
|
678
703
|
direction?: undefined;
|
|
@@ -710,6 +735,7 @@ export declare const componentsMenusSchema: ({
|
|
|
710
735
|
align?: undefined;
|
|
711
736
|
showCount?: undefined;
|
|
712
737
|
maxLength?: undefined;
|
|
738
|
+
step?: undefined;
|
|
713
739
|
width?: undefined;
|
|
714
740
|
direction?: undefined;
|
|
715
741
|
iconable?: undefined;
|
|
@@ -771,6 +797,7 @@ export declare const componentsMenusSchema: ({
|
|
|
771
797
|
align?: undefined;
|
|
772
798
|
showCount?: undefined;
|
|
773
799
|
maxLength?: undefined;
|
|
800
|
+
step?: undefined;
|
|
774
801
|
width?: undefined;
|
|
775
802
|
round?: undefined;
|
|
776
803
|
direction?: undefined;
|
|
@@ -784,6 +811,100 @@ export declare const componentsMenusSchema: ({
|
|
|
784
811
|
free?: undefined;
|
|
785
812
|
};
|
|
786
813
|
field?: undefined;
|
|
814
|
+
} | {
|
|
815
|
+
label: string;
|
|
816
|
+
fieldType: string;
|
|
817
|
+
as: string;
|
|
818
|
+
schema: ({
|
|
819
|
+
label: string;
|
|
820
|
+
as: string;
|
|
821
|
+
field: string;
|
|
822
|
+
direction: string;
|
|
823
|
+
componentWidth?: undefined;
|
|
824
|
+
props?: undefined;
|
|
825
|
+
} | {
|
|
826
|
+
label: string;
|
|
827
|
+
as: string;
|
|
828
|
+
componentWidth: number;
|
|
829
|
+
field: string;
|
|
830
|
+
direction?: undefined;
|
|
831
|
+
props?: undefined;
|
|
832
|
+
} | {
|
|
833
|
+
label: string;
|
|
834
|
+
as: string;
|
|
835
|
+
componentWidth: number;
|
|
836
|
+
props: {
|
|
837
|
+
align: string;
|
|
838
|
+
itemWidth?: undefined;
|
|
839
|
+
options?: undefined;
|
|
840
|
+
};
|
|
841
|
+
field: string;
|
|
842
|
+
direction?: undefined;
|
|
843
|
+
} | {
|
|
844
|
+
label: string;
|
|
845
|
+
as: string;
|
|
846
|
+
field: string;
|
|
847
|
+
props: {
|
|
848
|
+
itemWidth: string;
|
|
849
|
+
options: {
|
|
850
|
+
label: string;
|
|
851
|
+
value: string;
|
|
852
|
+
}[];
|
|
853
|
+
align?: undefined;
|
|
854
|
+
};
|
|
855
|
+
direction?: undefined;
|
|
856
|
+
componentWidth?: undefined;
|
|
857
|
+
})[];
|
|
858
|
+
props: {
|
|
859
|
+
step: number;
|
|
860
|
+
options: {
|
|
861
|
+
label: string;
|
|
862
|
+
value: number;
|
|
863
|
+
}[];
|
|
864
|
+
clearable?: undefined;
|
|
865
|
+
type?: undefined;
|
|
866
|
+
align?: undefined;
|
|
867
|
+
showCount?: undefined;
|
|
868
|
+
maxLength?: undefined;
|
|
869
|
+
width?: undefined;
|
|
870
|
+
round?: undefined;
|
|
871
|
+
direction?: undefined;
|
|
872
|
+
iconable?: undefined;
|
|
873
|
+
label?: undefined;
|
|
874
|
+
trigger?: undefined;
|
|
875
|
+
showCheckIcon?: undefined;
|
|
876
|
+
valueTextSplit?: undefined;
|
|
877
|
+
valueLayout?: undefined;
|
|
878
|
+
free?: undefined;
|
|
879
|
+
viewMode?: undefined;
|
|
880
|
+
};
|
|
881
|
+
field?: undefined;
|
|
882
|
+
} | {
|
|
883
|
+
label: string;
|
|
884
|
+
fieldType: never[];
|
|
885
|
+
as: string;
|
|
886
|
+
props: {
|
|
887
|
+
showCount: boolean;
|
|
888
|
+
maxLength: number;
|
|
889
|
+
clearable?: undefined;
|
|
890
|
+
type?: undefined;
|
|
891
|
+
align?: undefined;
|
|
892
|
+
step?: undefined;
|
|
893
|
+
width?: undefined;
|
|
894
|
+
round?: undefined;
|
|
895
|
+
direction?: undefined;
|
|
896
|
+
iconable?: undefined;
|
|
897
|
+
options?: undefined;
|
|
898
|
+
label?: undefined;
|
|
899
|
+
trigger?: undefined;
|
|
900
|
+
showCheckIcon?: undefined;
|
|
901
|
+
valueTextSplit?: undefined;
|
|
902
|
+
valueLayout?: undefined;
|
|
903
|
+
free?: undefined;
|
|
904
|
+
viewMode?: undefined;
|
|
905
|
+
};
|
|
906
|
+
schema?: undefined;
|
|
907
|
+
field?: undefined;
|
|
787
908
|
} | {
|
|
788
909
|
label: string;
|
|
789
910
|
as: string;
|
|
@@ -15,9 +15,9 @@ declare const _default: ({
|
|
|
15
15
|
label: string;
|
|
16
16
|
value: string;
|
|
17
17
|
}[];
|
|
18
|
+
align?: undefined;
|
|
18
19
|
min?: undefined;
|
|
19
20
|
max?: undefined;
|
|
20
|
-
align?: undefined;
|
|
21
21
|
placeholder?: undefined;
|
|
22
22
|
};
|
|
23
23
|
} | {
|
|
@@ -26,6 +26,19 @@ declare const _default: ({
|
|
|
26
26
|
componentWidth: number;
|
|
27
27
|
field: string;
|
|
28
28
|
props?: undefined;
|
|
29
|
+
} | {
|
|
30
|
+
label: string;
|
|
31
|
+
as: string;
|
|
32
|
+
componentWidth: number;
|
|
33
|
+
props: {
|
|
34
|
+
align: string;
|
|
35
|
+
itemWidth?: undefined;
|
|
36
|
+
options?: undefined;
|
|
37
|
+
min?: undefined;
|
|
38
|
+
max?: undefined;
|
|
39
|
+
placeholder?: undefined;
|
|
40
|
+
};
|
|
41
|
+
field: string;
|
|
29
42
|
} | {
|
|
30
43
|
label: string;
|
|
31
44
|
as: string;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
declare const _default: ({
|
|
2
|
+
label: string;
|
|
3
|
+
as: string;
|
|
4
|
+
field: string;
|
|
5
|
+
direction: string;
|
|
6
|
+
componentWidth?: undefined;
|
|
7
|
+
props?: undefined;
|
|
8
|
+
} | {
|
|
9
|
+
label: string;
|
|
10
|
+
as: string;
|
|
11
|
+
componentWidth: number;
|
|
12
|
+
field: string;
|
|
13
|
+
direction?: undefined;
|
|
14
|
+
props?: undefined;
|
|
15
|
+
} | {
|
|
16
|
+
label: string;
|
|
17
|
+
as: string;
|
|
18
|
+
componentWidth: number;
|
|
19
|
+
props: {
|
|
20
|
+
align: string;
|
|
21
|
+
itemWidth?: undefined;
|
|
22
|
+
options?: undefined;
|
|
23
|
+
};
|
|
24
|
+
field: string;
|
|
25
|
+
direction?: undefined;
|
|
26
|
+
} | {
|
|
27
|
+
label: string;
|
|
28
|
+
as: string;
|
|
29
|
+
field: string;
|
|
30
|
+
props: {
|
|
31
|
+
itemWidth: string;
|
|
32
|
+
options: {
|
|
33
|
+
label: string;
|
|
34
|
+
value: string;
|
|
35
|
+
}[];
|
|
36
|
+
align?: undefined;
|
|
37
|
+
};
|
|
38
|
+
direction?: undefined;
|
|
39
|
+
componentWidth?: undefined;
|
|
40
|
+
})[];
|
|
41
|
+
export default _default;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
declare const _default: ({
|
|
2
|
+
label: string;
|
|
3
|
+
as: string;
|
|
4
|
+
field: string;
|
|
5
|
+
direction: string;
|
|
6
|
+
componentWidth?: undefined;
|
|
7
|
+
props?: undefined;
|
|
8
|
+
} | {
|
|
9
|
+
label: string;
|
|
10
|
+
as: string;
|
|
11
|
+
componentWidth: number;
|
|
12
|
+
field: string;
|
|
13
|
+
direction?: undefined;
|
|
14
|
+
props?: undefined;
|
|
15
|
+
} | {
|
|
16
|
+
label: string;
|
|
17
|
+
as: string;
|
|
18
|
+
componentWidth: number;
|
|
19
|
+
props: {
|
|
20
|
+
align: string;
|
|
21
|
+
itemWidth?: undefined;
|
|
22
|
+
options?: undefined;
|
|
23
|
+
};
|
|
24
|
+
field: string;
|
|
25
|
+
direction?: undefined;
|
|
26
|
+
} | {
|
|
27
|
+
label: string;
|
|
28
|
+
as: string;
|
|
29
|
+
field: string;
|
|
30
|
+
props: {
|
|
31
|
+
itemWidth: string;
|
|
32
|
+
options: {
|
|
33
|
+
label: string;
|
|
34
|
+
value: string;
|
|
35
|
+
}[];
|
|
36
|
+
align?: undefined;
|
|
37
|
+
};
|
|
38
|
+
direction?: undefined;
|
|
39
|
+
componentWidth?: undefined;
|
|
40
|
+
})[];
|
|
41
|
+
export default _default;
|