@qin-ui/antd-vue-pro 1.0.10 → 1.0.12
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/form/index.js +6 -6
- package/es/index.d.ts +6 -12
- package/package.json +1 -1
package/es/form/index.js
CHANGED
|
@@ -15734,13 +15734,13 @@ const INJECT_COMPONENT_PROPS_KEYS = {
|
|
|
15734
15734
|
};
|
|
15735
15735
|
const PROPS_KEYS = INJECT_COMPONENT_PROPS_KEYS;
|
|
15736
15736
|
const INIT_COMPONENT_PROPS_MAP = /* @__PURE__ */ new Map([
|
|
15737
|
-
[PROPS_KEYS.input, { maxlength: 100, allowClear: true }],
|
|
15738
|
-
[PROPS_KEYS.textarea, { maxlength: 200, autoSize: { minRows: 3, maxRows: 6 }, showCount: true, allowClear: true }],
|
|
15739
|
-
[PROPS_KEYS["input-password"], { maxlength: 100, allowClear: true }],
|
|
15740
|
-
[PROPS_KEYS["input-number"], { max: 10 ** 15 - 1, min: -(10 ** 15 + 1), controls: false, allowClear: true }],
|
|
15741
|
-
[PROPS_KEYS.select, { allowClear: true }],
|
|
15737
|
+
[PROPS_KEYS.input, { maxlength: 100, allowClear: true, placeholder: "请输入" }],
|
|
15738
|
+
[PROPS_KEYS.textarea, { maxlength: 200, autoSize: { minRows: 3, maxRows: 6 }, showCount: true, allowClear: true, placeholder: "请输入" }],
|
|
15739
|
+
[PROPS_KEYS["input-password"], { maxlength: 100, allowClear: true, placeholder: "请输入" }],
|
|
15740
|
+
[PROPS_KEYS["input-number"], { max: 10 ** 15 - 1, min: -(10 ** 15 + 1), controls: false, allowClear: true, placeholder: "请输入" }],
|
|
15741
|
+
[PROPS_KEYS.select, { allowClear: true, placeholder: "请选择" }],
|
|
15742
15742
|
[PROPS_KEYS.cascader, { allowClear: true }],
|
|
15743
|
-
[PROPS_KEYS["date-picker"], {
|
|
15743
|
+
[PROPS_KEYS["date-picker"], { allowClear: true }],
|
|
15744
15744
|
[PROPS_KEYS["date-picker.week"], { allowClear: true }],
|
|
15745
15745
|
[PROPS_KEYS["date-picker.month"], { allowClear: true }],
|
|
15746
15746
|
[PROPS_KEYS["date-picker.year"], { allowClear: true }],
|
package/es/index.d.ts
CHANGED
|
@@ -730,13 +730,12 @@ export declare type Grid = boolean | RowProps;
|
|
|
730
730
|
export declare const INIT_COMPONENT_PROPS_MAP: Map<symbol, {
|
|
731
731
|
maxlength: number;
|
|
732
732
|
allowClear: boolean;
|
|
733
|
+
placeholder: string;
|
|
733
734
|
autoSize?: undefined;
|
|
734
735
|
showCount?: undefined;
|
|
735
736
|
max?: undefined;
|
|
736
737
|
min?: undefined;
|
|
737
738
|
controls?: undefined;
|
|
738
|
-
format?: undefined;
|
|
739
|
-
valueFormat?: undefined;
|
|
740
739
|
} | {
|
|
741
740
|
maxlength: number;
|
|
742
741
|
autoSize: {
|
|
@@ -745,36 +744,32 @@ export declare const INIT_COMPONENT_PROPS_MAP: Map<symbol, {
|
|
|
745
744
|
};
|
|
746
745
|
showCount: boolean;
|
|
747
746
|
allowClear: boolean;
|
|
747
|
+
placeholder: string;
|
|
748
748
|
max?: undefined;
|
|
749
749
|
min?: undefined;
|
|
750
750
|
controls?: undefined;
|
|
751
|
-
format?: undefined;
|
|
752
|
-
valueFormat?: undefined;
|
|
753
751
|
} | {
|
|
754
752
|
max: number;
|
|
755
753
|
min: number;
|
|
756
754
|
controls: boolean;
|
|
757
755
|
allowClear: boolean;
|
|
756
|
+
placeholder: string;
|
|
758
757
|
maxlength?: undefined;
|
|
759
758
|
autoSize?: undefined;
|
|
760
759
|
showCount?: undefined;
|
|
761
|
-
format?: undefined;
|
|
762
|
-
valueFormat?: undefined;
|
|
763
760
|
} | {
|
|
764
761
|
allowClear: boolean;
|
|
762
|
+
placeholder: string;
|
|
765
763
|
maxlength?: undefined;
|
|
766
764
|
autoSize?: undefined;
|
|
767
765
|
showCount?: undefined;
|
|
768
766
|
max?: undefined;
|
|
769
767
|
min?: undefined;
|
|
770
768
|
controls?: undefined;
|
|
771
|
-
format?: undefined;
|
|
772
|
-
valueFormat?: undefined;
|
|
773
769
|
} | {
|
|
774
|
-
format: string;
|
|
775
|
-
valueFormat: string;
|
|
776
770
|
allowClear: boolean;
|
|
777
771
|
maxlength?: undefined;
|
|
772
|
+
placeholder?: undefined;
|
|
778
773
|
autoSize?: undefined;
|
|
779
774
|
showCount?: undefined;
|
|
780
775
|
max?: undefined;
|
|
@@ -783,13 +778,12 @@ export declare const INIT_COMPONENT_PROPS_MAP: Map<symbol, {
|
|
|
783
778
|
} | {
|
|
784
779
|
maxlength?: undefined;
|
|
785
780
|
allowClear?: undefined;
|
|
781
|
+
placeholder?: undefined;
|
|
786
782
|
autoSize?: undefined;
|
|
787
783
|
showCount?: undefined;
|
|
788
784
|
max?: undefined;
|
|
789
785
|
min?: undefined;
|
|
790
786
|
controls?: undefined;
|
|
791
|
-
format?: undefined;
|
|
792
|
-
valueFormat?: undefined;
|
|
793
787
|
}>;
|
|
794
788
|
|
|
795
789
|
export declare const INJECT_COMPONENT_PROPS_KEYS: {
|